
    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_82b23f6532c3482769ba8919.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_74a595f2d676d985714102df.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_065bc6e854709e297928c0b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_5dd2588d9e7bf7f1523e5eca.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5f61caeb8604753b44e9e99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_58b5788f342cd6765626fb4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_a317960588388a88b2f432cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084000;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_6aa6c13d4f80c47ba61ce041.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d47c468827633ca01c0258a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_906a755b9ad629eb8f8d49e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.732000;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_dc977c41e0b9d67af7cf1aff.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_add04ac4d7587520db2b29c8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c29b7abae0a88cfafe258a3f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b9e1a393edb38001bad70f94.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.060000;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_0c30cd47ecb5efb2ef29297c.woff2')format("woff");}.fff{font-family:fff;line-height:0.741000;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_b638b090ed581471bb8ec7fd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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_63d58f7f45e31fd09b407141.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.972000;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);}
.ma{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);}
.mb{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);}
.m8{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m9{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);}
.m7{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);}
.m6{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;}
.ls8c{letter-spacing:-1.434705px;}
.ls58{letter-spacing:-1.422945px;}
.ls8b{letter-spacing:-1.411186px;}
.ls8a{letter-spacing:-1.370026px;}
.ls59{letter-spacing:-1.358266px;}
.ls51{letter-spacing:-1.270067px;}
.ls3f{letter-spacing:-1.223028px;}
.ls10{letter-spacing:-1.206012px;}
.ls8f{letter-spacing:-1.187748px;}
.ls7b{letter-spacing:-1.158348px;}
.lsc{letter-spacing:-1.158012px;}
.ls70{letter-spacing:-1.152468px;}
.lsf{letter-spacing:-1.152006px;}
.ls7a{letter-spacing:-1.146588px;}
.lsa{letter-spacing:-1.146011px;}
.ls11{letter-spacing:-1.140011px;}
.ls66{letter-spacing:-1.134828px;}
.ls8{letter-spacing:-1.134011px;}
.ls6f{letter-spacing:-1.128948px;}
.ls79{letter-spacing:-1.123069px;}
.ls7{letter-spacing:-1.122011px;}
.ls34{letter-spacing:-1.117189px;}
.lsd{letter-spacing:-1.116005px;}
.ls54{letter-spacing:-1.111309px;}
.ls68{letter-spacing:-1.105429px;}
.lsb{letter-spacing:-1.104011px;}
.ls3c{letter-spacing:-1.099549px;}
.lse{letter-spacing:-1.098011px;}
.ls53{letter-spacing:-1.093669px;}
.ls6a{letter-spacing:-1.087789px;}
.ls3b{letter-spacing:-1.081909px;}
.ls32{letter-spacing:-1.076029px;}
.ls3d{letter-spacing:-1.070149px;}
.ls56{letter-spacing:-1.064269px;}
.ls33{letter-spacing:-1.058389px;}
.ls40{letter-spacing:-1.052509px;}
.ls3e{letter-spacing:-1.046629px;}
.ls9{letter-spacing:-1.044010px;}
.ls50{letter-spacing:-1.040749px;}
.ls9c{letter-spacing:-1.034986px;}
.ls3a{letter-spacing:-1.034869px;}
.ls52{letter-spacing:-1.028990px;}
.ls90{letter-spacing:-1.023110px;}
.ls41{letter-spacing:-1.017230px;}
.ls55{letter-spacing:-1.011350px;}
.ls4f{letter-spacing:-1.005470px;}
.ls44{letter-spacing:-0.999590px;}
.ls42{letter-spacing:-0.993710px;}
.ls91{letter-spacing:-0.987830px;}
.ls38{letter-spacing:-0.981950px;}
.ls69{letter-spacing:-0.976070px;}
.ls81{letter-spacing:-0.965986px;}
.ls94{letter-spacing:-0.899631px;}
.ls71{letter-spacing:-0.887871px;}
.ls82{letter-spacing:-0.835788px;}
.lsa4{letter-spacing:-0.823489px;}
.lsa3{letter-spacing:-0.805489px;}
.ls9e{letter-spacing:-0.787489px;}
.ls9b{letter-spacing:-0.751490px;}
.ls87{letter-spacing:-0.023520px;}
.ls31{letter-spacing:-0.011760px;}
.ls5{letter-spacing:0.000000px;}
.lsa2{letter-spacing:0.000120px;}
.ls97{letter-spacing:0.013500px;}
.ls9a{letter-spacing:0.051535px;}
.ls9f{letter-spacing:0.058484px;}
.ls99{letter-spacing:0.058498px;}
.ls98{letter-spacing:0.148498px;}
.ls6{letter-spacing:0.528005px;}
.ls1{letter-spacing:0.552006px;}
.ls2{letter-spacing:0.564006px;}
.ls5a{letter-spacing:0.564474px;}
.ls8d{letter-spacing:0.576234px;}
.ls4b{letter-spacing:0.582114px;}
.ls1c{letter-spacing:0.587994px;}
.ls3{letter-spacing:0.588006px;}
.ls5b{letter-spacing:0.593874px;}
.ls86{letter-spacing:0.599754px;}
.ls4{letter-spacing:0.600006px;}
.ls2d{letter-spacing:0.605634px;}
.ls1b{letter-spacing:0.611514px;}
.ls1e{letter-spacing:0.617394px;}
.ls1a{letter-spacing:0.623274px;}
.ls1f{letter-spacing:0.629154px;}
.ls84{letter-spacing:0.635034px;}
.ls29{letter-spacing:0.640913px;}
.ls20{letter-spacing:0.646793px;}
.ls1d{letter-spacing:0.652673px;}
.ls61{letter-spacing:0.658553px;}
.ls49{letter-spacing:0.664433px;}
.ls4a{letter-spacing:0.670313px;}
.ls89{letter-spacing:0.676193px;}
.ls88{letter-spacing:0.687953px;}
.ls6e{letter-spacing:0.711473px;}
.ls67{letter-spacing:0.752632px;}
.ls28{letter-spacing:0.940790px;}
.ls26{letter-spacing:0.946670px;}
.ls78{letter-spacing:0.970190px;}
.ls27{letter-spacing:0.987830px;}
.ls36{letter-spacing:1.070149px;}
.ls6c{letter-spacing:1.087789px;}
.ls6d{letter-spacing:1.093669px;}
.ls93{letter-spacing:1.117189px;}
.ls2c{letter-spacing:1.134828px;}
.ls72{letter-spacing:1.140708px;}
.ls92{letter-spacing:1.152468px;}
.ls25{letter-spacing:1.158348px;}
.ls30{letter-spacing:1.164228px;}
.ls5d{letter-spacing:1.170108px;}
.ls76{letter-spacing:1.175988px;}
.ls0{letter-spacing:1.182012px;}
.ls47{letter-spacing:1.187748px;}
.ls5f{letter-spacing:1.193628px;}
.ls2b{letter-spacing:1.199508px;}
.ls14{letter-spacing:1.205388px;}
.ls2a{letter-spacing:1.211268px;}
.ls24{letter-spacing:1.217148px;}
.ls21{letter-spacing:1.223028px;}
.ls17{letter-spacing:1.228907px;}
.ls15{letter-spacing:1.234787px;}
.ls13{letter-spacing:1.240667px;}
.ls23{letter-spacing:1.246547px;}
.ls18{letter-spacing:1.252427px;}
.ls22{letter-spacing:1.258307px;}
.ls4c{letter-spacing:1.264187px;}
.ls39{letter-spacing:1.270067px;}
.ls43{letter-spacing:1.275947px;}
.ls83{letter-spacing:1.281827px;}
.ls37{letter-spacing:1.287707px;}
.ls85{letter-spacing:1.293587px;}
.ls48{letter-spacing:1.299467px;}
.ls6b{letter-spacing:1.311227px;}
.ls16{letter-spacing:1.317107px;}
.ls80{letter-spacing:1.334746px;}
.ls46{letter-spacing:1.340626px;}
.ls7f{letter-spacing:1.540544px;}
.ls7d{letter-spacing:1.558184px;}
.ls2e{letter-spacing:1.575824px;}
.ls2f{letter-spacing:1.581704px;}
.ls19{letter-spacing:1.593464px;}
.ls7e{letter-spacing:1.599344px;}
.ls4d{letter-spacing:1.605224px;}
.ls7c{letter-spacing:1.611104px;}
.ls12{letter-spacing:1.616984px;}
.ls4e{letter-spacing:1.687543px;}
.ls57{letter-spacing:1.952140px;}
.ls73{letter-spacing:2.669493px;}
.lsa0{letter-spacing:11.506344px;}
.ls9d{letter-spacing:11.510846px;}
.lsa1{letter-spacing:13.140200px;}
.ls95{letter-spacing:13.243324px;}
.ls96{letter-spacing:13.504320px;}
.ls62{letter-spacing:14.917408px;}
.ls45{letter-spacing:15.599481px;}
.ls77{letter-spacing:16.616712px;}
.ls63{letter-spacing:16.957745px;}
.ls60{letter-spacing:17.639819px;}
.ls5e{letter-spacing:19.339123px;}
.ls5c{letter-spacing:19.680160px;}
.ls75{letter-spacing:20.021194px;}
.ls65{letter-spacing:20.697387px;}
.ls8e{letter-spacing:21.020784px;}
.ls35{letter-spacing:21.156025px;}
.ls64{letter-spacing:21.379462px;}
.ls74{letter-spacing:1315.361146px;}
.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;}
}
.ws73{word-spacing:-21.214824px;}
.ws24e{word-spacing:-21.079584px;}
.ws2cf{word-spacing:-11.555846px;}
.ws2f6{word-spacing:-10.508400px;}
.ws187{word-spacing:-2.728292px;}
.ws1bb{word-spacing:-1.028990px;}
.ws42{word-spacing:-0.061800px;}
.ws96{word-spacing:-0.058799px;}
.ws18b{word-spacing:-0.047999px;}
.ws36{word-spacing:-0.044999px;}
.ws2f5{word-spacing:-0.043801px;}
.ws1b1{word-spacing:-0.041999px;}
.ws41{word-spacing:0.000000px;}
.ws2c7{word-spacing:0.706491px;}
.ws2d0{word-spacing:0.742490px;}
.ws2db{word-spacing:0.778490px;}
.ws208{word-spacing:0.793789px;}
.ws2f{word-spacing:1.056005px;}
.ws204{word-spacing:10.155455px;}
.ws1b0{word-spacing:10.201654px;}
.ws1b2{word-spacing:10.256253px;}
.ws203{word-spacing:10.310852px;}
.ws201{word-spacing:10.319252px;}
.ws207{word-spacing:10.327652px;}
.ws205{word-spacing:10.336052px;}
.ws1b3{word-spacing:10.735047px;}
.ws2d3{word-spacing:10.745856px;}
.ws2c4{word-spacing:10.786356px;}
.ws2c3{word-spacing:10.804356px;}
.ws2ea{word-spacing:10.804362px;}
.ws2c1{word-spacing:10.880855px;}
.ws2d8{word-spacing:10.889855px;}
.ws202{word-spacing:10.932443px;}
.ws2cd{word-spacing:10.943854px;}
.ws2c5{word-spacing:10.957354px;}
.ws2d1{word-spacing:11.087852px;}
.ws2ef{word-spacing:11.096852px;}
.ws2d2{word-spacing:11.101352px;}
.ws2eb{word-spacing:11.105852px;}
.ws2ee{word-spacing:11.114803px;}
.ws2ce{word-spacing:11.281349px;}
.ws2f0{word-spacing:11.461342px;}
.ws2c2{word-spacing:11.461347px;}
.ws2c6{word-spacing:11.465847px;}
.ws2ec{word-spacing:11.470347px;}
.ws2d9{word-spacing:11.492846px;}
.ws2e9{word-spacing:11.506347px;}
.ws2ed{word-spacing:11.546846px;}
.ws2d7{word-spacing:11.708844px;}
.ws2cc{word-spacing:11.821343px;}
.ws35{word-spacing:11.884342px;}
.ws206{word-spacing:12.037028px;}
.ws8b{word-spacing:12.136196px;}
.ws2de{word-spacing:12.275838px;}
.ws1e3{word-spacing:12.402422px;}
.ws2e3{word-spacing:12.415334px;}
.ws1e2{word-spacing:12.436022px;}
.ws3b{word-spacing:12.465422px;}
.ws3d{word-spacing:12.482222px;}
.ws1e1{word-spacing:12.511621px;}
.ws1e5{word-spacing:12.549420px;}
.ws3a{word-spacing:12.570420px;}
.ws3e{word-spacing:12.595620px;}
.ws1e6{word-spacing:12.637619px;}
.ws1df{word-spacing:12.650220px;}
.ws2e2{word-spacing:12.770829px;}
.ws1e7{word-spacing:12.772018px;}
.ws1e0{word-spacing:12.784617px;}
.ws3c{word-spacing:12.860217px;}
.ws2c8{word-spacing:12.968827px;}
.ws1e4{word-spacing:12.977814px;}
.ws2a5{word-spacing:12.995826px;}
.ws2f2{word-spacing:13.008710px;}
.ws2f1{word-spacing:13.030678px;}
.ws2af{word-spacing:13.063325px;}
.ws2cb{word-spacing:13.090325px;}
.ws2e6{word-spacing:13.130824px;}
.ws2ab{word-spacing:13.153324px;}
.ws2d4{word-spacing:13.157824px;}
.ws2b5{word-spacing:13.175824px;}
.ws2f4{word-spacing:13.179600px;}
.ws38{word-spacing:13.184824px;}
.ws2e5{word-spacing:13.193825px;}
.ws27d{word-spacing:13.198323px;}
.ws2bd{word-spacing:13.202823px;}
.ws2b6{word-spacing:13.207324px;}
.ws2f3{word-spacing:13.210261px;}
.ws2c0{word-spacing:13.229823px;}
.ws282{word-spacing:13.234324px;}
.ws29d{word-spacing:13.243323px;}
.ws2be{word-spacing:13.252325px;}
.ws2a2{word-spacing:13.256823px;}
.ws2bb{word-spacing:13.261323px;}
.ws2b1{word-spacing:13.274823px;}
.ws2ca{word-spacing:13.288322px;}
.ws2b2{word-spacing:13.288324px;}
.ws2ae{word-spacing:13.301823px;}
.ws2b8{word-spacing:13.306323px;}
.ws28d{word-spacing:13.310822px;}
.ws2a1{word-spacing:13.315322px;}
.ws2bc{word-spacing:13.319822px;}
.ws188{word-spacing:13.321800px;}
.ws289{word-spacing:13.324322px;}
.ws2dc{word-spacing:13.328809px;}
.ws2a3{word-spacing:13.328821px;}
.ws2df{word-spacing:13.333252px;}
.ws2b9{word-spacing:13.333323px;}
.ws2b3{word-spacing:13.337814px;}
.ws297{word-spacing:13.337822px;}
.ws2b4{word-spacing:13.337827px;}
.ws37{word-spacing:13.342322px;}
.ws2a4{word-spacing:13.346822px;}
.ws2bf{word-spacing:13.355821px;}
.ws29f{word-spacing:13.355824px;}
.ws2c9{word-spacing:13.360321px;}
.ws29e{word-spacing:13.364822px;}
.ws27f{word-spacing:13.369322px;}
.ws2a7{word-spacing:13.382821px;}
.ws295{word-spacing:13.391821px;}
.ws2b0{word-spacing:13.396322px;}
.ws2a9{word-spacing:13.409820px;}
.ws2ad{word-spacing:13.409821px;}
.ws2da{word-spacing:13.414316px;}
.ws2a0{word-spacing:13.414324px;}
.ws39{word-spacing:13.418822px;}
.ws2e7{word-spacing:13.427806px;}
.ws280{word-spacing:13.432321px;}
.ws286{word-spacing:13.436821px;}
.ws2d6{word-spacing:13.450319px;}
.ws298{word-spacing:13.454820px;}
.ws2e1{word-spacing:13.463821px;}
.ws2d5{word-spacing:13.472826px;}
.ws284{word-spacing:13.481820px;}
.ws2aa{word-spacing:13.486320px;}
.ws2b7{word-spacing:13.504320px;}
.ws29b{word-spacing:13.508820px;}
.ws2ac{word-spacing:13.513319px;}
.ws2dd{word-spacing:13.517809px;}
.ws28e{word-spacing:13.517819px;}
.ws27e{word-spacing:13.540319px;}
.ws28a{word-spacing:13.544819px;}
.ws28b{word-spacing:13.549319px;}
.ws29a{word-spacing:13.553820px;}
.ws299{word-spacing:13.567319px;}
.ws283{word-spacing:13.576319px;}
.ws28c{word-spacing:13.580818px;}
.ws2e8{word-spacing:13.589819px;}
.ws292{word-spacing:13.594319px;}
.ws28f{word-spacing:13.625818px;}
.ws296{word-spacing:13.639318px;}
.ws29c{word-spacing:13.652817px;}
.ws2a8{word-spacing:13.666318px;}
.ws53{word-spacing:13.670861px;}
.ws2a6{word-spacing:13.684316px;}
.ws293{word-spacing:13.684318px;}
.ws2e0{word-spacing:13.684325px;}
.ws290{word-spacing:13.706817px;}
.ws285{word-spacing:13.711317px;}
.ws2ba{word-spacing:13.715816px;}
.ws19f{word-spacing:13.727828px;}
.ws281{word-spacing:13.738315px;}
.ws1a6{word-spacing:13.742227px;}
.ws1ab{word-spacing:13.766227px;}
.ws1a7{word-spacing:13.771027px;}
.ws294{word-spacing:13.774316px;}
.ws1f5{word-spacing:13.800219px;}
.ws1a5{word-spacing:13.804627px;}
.ws291{word-spacing:13.814816px;}
.ws288{word-spacing:13.828315px;}
.ws1a0{word-spacing:13.838226px;}
.ws1a8{word-spacing:13.847827px;}
.ws1a2{word-spacing:13.852627px;}
.ws194{word-spacing:13.857427px;}
.ws1a3{word-spacing:13.867026px;}
.ws196{word-spacing:13.871826px;}
.ws1d9{word-spacing:13.881427px;}
.ws287{word-spacing:13.882315px;}
.ws1ac{word-spacing:13.886226px;}
.ws2e4{word-spacing:13.886823px;}
.ws189{word-spacing:13.919826px;}
.ws185{word-spacing:13.923698px;}
.ws200{word-spacing:13.939025px;}
.ws1af{word-spacing:13.943825px;}
.ws190{word-spacing:13.948626px;}
.ws191{word-spacing:13.963025px;}
.ws1de{word-spacing:13.972625px;}
.ws1d8{word-spacing:14.006224px;}
.ws1db{word-spacing:14.030224px;}
.ws193{word-spacing:14.039824px;}
.ws18e{word-spacing:14.044624px;}
.ws1a1{word-spacing:14.054223px;}
.ws40{word-spacing:14.073425px;}
.ws19b{word-spacing:14.078223px;}
.ws192{word-spacing:14.102223px;}
.ws1a9{word-spacing:14.107023px;}
.ws1d7{word-spacing:14.111823px;}
.ws19a{word-spacing:14.116624px;}
.ws1dc{word-spacing:14.131023px;}
.ws18c{word-spacing:14.140623px;}
.ws251{word-spacing:14.164776px;}
.ws18f{word-spacing:14.169423px;}
.ws18d{word-spacing:14.174222px;}
.wsfe{word-spacing:14.176535px;}
.ws1dd{word-spacing:14.183822px;}
.ws1da{word-spacing:14.203022px;}
.ws1ad{word-spacing:14.207822px;}
.ws70{word-spacing:14.235334px;}
.wsb3{word-spacing:14.251021px;}
.ws1aa{word-spacing:14.255822px;}
.ws18a{word-spacing:14.260622px;}
.ws1ae{word-spacing:14.294220px;}
.ws195{word-spacing:14.347020px;}
.wsf3{word-spacing:14.358814px;}
.ws265{word-spacing:14.370574px;}
.ws19e{word-spacing:14.371020px;}
.ws1d5{word-spacing:14.399972px;}
.ws19c{word-spacing:14.404620px;}
.ws27a{word-spacing:14.423493px;}
.wsfd{word-spacing:14.435253px;}
.ws24b{word-spacing:14.447013px;}
.ws80{word-spacing:14.529333px;}
.ws27b{word-spacing:14.541092px;}
.ws16a{word-spacing:14.576372px;}
.ws3f{word-spacing:14.577403px;}
.wsb2{word-spacing:14.577415px;}
.ws8a{word-spacing:14.617531px;}
.ws1cf{word-spacing:14.629291px;}
.ws164{word-spacing:14.641051px;}
.ws173{word-spacing:14.670451px;}
.ws109{word-spacing:14.746890px;}
.ws1f2{word-spacing:14.752770px;}
.ws45{word-spacing:14.835089px;}
.ws277{word-spacing:14.846849px;}
.ws1f{word-spacing:14.856148px;}
.ws52{word-spacing:14.858608px;}
.ws15f{word-spacing:14.905648px;}
.ws117{word-spacing:14.917407px;}
.ws234{word-spacing:14.923288px;}
.wsba{word-spacing:14.958567px;}
.ws1bc{word-spacing:14.982087px;}
.ws1fa{word-spacing:15.017366px;}
.wsae{word-spacing:15.040886px;}
.ws20d{word-spacing:15.064406px;}
.ws9a{word-spacing:15.093806px;}
.wsbb{word-spacing:15.129085px;}
.ws241{word-spacing:15.146725px;}
.wsf1{word-spacing:15.146726px;}
.ws167{word-spacing:15.158485px;}
.ws5a{word-spacing:15.164365px;}
.ws87{word-spacing:15.176126px;}
.wsd8{word-spacing:15.211404px;}
.ws22c{word-spacing:15.229045px;}
.ws116{word-spacing:15.246684px;}
.ws11e{word-spacing:15.252564px;}
.ws108{word-spacing:15.258444px;}
.ws1fc{word-spacing:15.323124px;}
.ws25{word-spacing:15.336153px;}
.ws160{word-spacing:15.352524px;}
.ws22{word-spacing:15.354153px;}
.ws13d{word-spacing:15.358404px;}
.ws210{word-spacing:15.364284px;}
.wsa4{word-spacing:15.399563px;}
.ws12f{word-spacing:15.428963px;}
.wsb8{word-spacing:15.458363px;}
.ws224{word-spacing:15.493642px;}
.ws82{word-spacing:15.499522px;}
.ws105{word-spacing:15.517161px;}
.ws49{word-spacing:15.534802px;}
.ws26{word-spacing:15.546155px;}
.ws24a{word-spacing:15.593601px;}
.ws28{word-spacing:15.636163px;}
.ws24{word-spacing:15.654156px;}
.ws27{word-spacing:15.666156px;}
.ws16c{word-spacing:15.687680px;}
.ws20{word-spacing:15.690157px;}
.ws237{word-spacing:15.693560px;}
.ws23{word-spacing:15.696156px;}
.ws256{word-spacing:15.699440px;}
.ws21{word-spacing:15.702158px;}
.ws1d4{word-spacing:15.711200px;}
.ws44{word-spacing:15.734720px;}
.ws134{word-spacing:15.746479px;}
.ws20b{word-spacing:15.758239px;}
.ws86{word-spacing:15.834678px;}
.ws222{word-spacing:15.838199px;}
.wseb{word-spacing:15.875839px;}
.ws1ce{word-spacing:15.899357px;}
.ws60{word-spacing:15.905238px;}
.ws22f{word-spacing:15.922877px;}
.ws1e9{word-spacing:15.946397px;}
.ws103{word-spacing:15.952277px;}
.ws1d6{word-spacing:15.962400px;}
.ws66{word-spacing:15.975797px;}
.ws14a{word-spacing:16.034597px;}
.ws254{word-spacing:16.040476px;}
.ws15e{word-spacing:16.087516px;}
.ws252{word-spacing:16.093396px;}
.wsed{word-spacing:16.116915px;}
.ws69{word-spacing:16.128675px;}
.ws257{word-spacing:16.169835px;}
.wsca{word-spacing:16.181595px;}
.wsa5{word-spacing:16.193354px;}
.ws13c{word-spacing:16.199235px;}
.ws7d{word-spacing:16.210995px;}
.ws132{word-spacing:16.228635px;}
.ws1f8{word-spacing:16.252154px;}
.ws218{word-spacing:16.275674px;}
.ws231{word-spacing:16.346233px;}
.wsf2{word-spacing:16.389058px;}
.wsff{word-spacing:16.416658px;}
.ws23f{word-spacing:16.440313px;}
.ws79{word-spacing:16.463833px;}
.wsa2{word-spacing:16.469712px;}
.ws211{word-spacing:16.475591px;}
.ws137{word-spacing:16.516751px;}
.wsaf{word-spacing:16.521539px;}
.ws262{word-spacing:16.546151px;}
.ws22a{word-spacing:16.557911px;}
.ws21d{word-spacing:16.575550px;}
.wsc8{word-spacing:16.593190px;}
.ws5d{word-spacing:16.593191px;}
.ws25e{word-spacing:16.604951px;}
.wsd1{word-spacing:16.610830px;}
.ws16b{word-spacing:16.628470px;}
.ws275{word-spacing:16.646111px;}
.ws10b{word-spacing:16.663749px;}
.wsf0{word-spacing:16.681391px;}
.ws68{word-spacing:16.693150px;}
.ws81{word-spacing:16.753382px;}
.ws17e{word-spacing:16.757829px;}
.ws24f{word-spacing:16.763709px;}
.ws155{word-spacing:16.775470px;}
.ws124{word-spacing:16.781349px;}
.ws1cd{word-spacing:16.787229px;}
.ws133{word-spacing:16.793108px;}
.ws16f{word-spacing:16.804868px;}
.ws16e{word-spacing:16.834268px;}
.ws5f{word-spacing:16.840148px;}
.ws233{word-spacing:16.846028px;}
.ws214{word-spacing:16.851908px;}
.ws51{word-spacing:16.857789px;}
.ws17d{word-spacing:16.863669px;}
.ws176{word-spacing:16.875429px;}
.ws65{word-spacing:16.887188px;}
.ws5e{word-spacing:16.910707px;}
.wsd0{word-spacing:16.922467px;}
.ws2b{word-spacing:16.926170px;}
.ws7e{word-spacing:16.934227px;}
.ws16d{word-spacing:16.998907px;}
.ws31{word-spacing:17.004171px;}
.ws177{word-spacing:17.051826px;}
.ws48{word-spacing:17.069465px;}
.ws83{word-spacing:17.069467px;}
.ws4c{word-spacing:17.075347px;}
.wsaa{word-spacing:17.087106px;}
.ws15c{word-spacing:17.104745px;}
.ws32{word-spacing:17.118166px;}
.ws4a{word-spacing:17.122386px;}
.ws123{word-spacing:17.128266px;}
.ws15a{word-spacing:17.181185px;}
.ws2e{word-spacing:17.196171px;}
.ws4d{word-spacing:17.198825px;}
.ws72{word-spacing:17.210584px;}
.wsda{word-spacing:17.216464px;}
.ws6b{word-spacing:17.222344px;}
.ws179{word-spacing:17.239984px;}
.ws6a{word-spacing:17.257624px;}
.ws33{word-spacing:17.274198px;}
.ws2d{word-spacing:17.280155px;}
.ws2a{word-spacing:17.292172px;}
.ws30{word-spacing:17.298173px;}
.wsf5{word-spacing:17.298783px;}
.ws2c{word-spacing:17.316173px;}
.ws1ff{word-spacing:17.316423px;}
.ws29{word-spacing:17.322173px;}
.wsf4{word-spacing:17.322304px;}
.wsbc{word-spacing:17.328184px;}
.ws15b{word-spacing:17.334062px;}
.ws161{word-spacing:17.351703px;}
.ws261{word-spacing:17.375222px;}
.ws20e{word-spacing:17.398742px;}
.wsfa{word-spacing:17.404622px;}
.wsa3{word-spacing:17.416383px;}
.ws34{word-spacing:17.430174px;}
.ws163{word-spacing:17.445783px;}
.ws122{word-spacing:17.475182px;}
.ws55{word-spacing:17.516341px;}
.wsee{word-spacing:17.528102px;}
.ws243{word-spacing:17.539860px;}
.ws112{word-spacing:17.539862px;}
.wsd7{word-spacing:17.557502px;}
.ws1be{word-spacing:17.563381px;}
.ws272{word-spacing:17.569262px;}
.ws175{word-spacing:17.592780px;}
.wsb4{word-spacing:17.663339px;}
.ws1b6{word-spacing:17.692743px;}
.ws13b{word-spacing:17.704500px;}
.ws6f{word-spacing:17.716259px;}
.ws13a{word-spacing:17.733899px;}
.ws209{word-spacing:17.780938px;}
.ws18{word-spacing:17.790178px;}
.ws19{word-spacing:17.796179px;}
.ws11{word-spacing:17.820178px;}
.ws13e{word-spacing:17.833858px;}
.ws263{word-spacing:17.857378px;}
.ws75{word-spacing:17.863257px;}
.wsc3{word-spacing:17.869138px;}
.ws1a{word-spacing:17.880179px;}
.ws236{word-spacing:17.904417px;}
.ws267{word-spacing:17.927938px;}
.ws126{word-spacing:17.951456px;}
.ws12{word-spacing:17.958179px;}
.ws16{word-spacing:17.976180px;}
.ws1b{word-spacing:17.982180px;}
.wsfb{word-spacing:17.986736px;}
.ws1d{word-spacing:17.994179px;}
.ws1fe{word-spacing:18.004377px;}
.ws1ec{word-spacing:18.016136px;}
.ws17{word-spacing:18.018180px;}
.ws186{word-spacing:18.045536px;}
.ws1bd{word-spacing:18.057297px;}
.ws1c1{word-spacing:18.116095px;}
.ws14{word-spacing:18.162182px;}
.ws220{word-spacing:18.169015px;}
.ws15{word-spacing:18.180170px;}
.ws25d{word-spacing:18.210174px;}
.ws1eb{word-spacing:18.216053px;}
.ws17a{word-spacing:18.233694px;}
.ws239{word-spacing:18.239575px;}
.ws6d{word-spacing:18.263083px;}
.wsb9{word-spacing:18.268974px;}
.ws6e{word-spacing:18.280734px;}
.ws1bf{word-spacing:18.316012px;}
.ws76{word-spacing:18.316014px;}
.ws1e{word-spacing:18.318187px;}
.ws13{word-spacing:18.330183px;}
.ws101{word-spacing:18.357173px;}
.ws1b7{word-spacing:18.374813px;}
.ws20f{word-spacing:18.380693px;}
.ws26d{word-spacing:18.386572px;}
.ws1ea{word-spacing:18.398333px;}
.ws10c{word-spacing:18.404212px;}
.ws14d{word-spacing:18.433612px;}
.ws1c{word-spacing:18.438184px;}
.ws1f4{word-spacing:18.480652px;}
.wsec{word-spacing:18.492411px;}
.ws27c{word-spacing:18.496740px;}
.ws136{word-spacing:18.504171px;}
.wsa1{word-spacing:18.515931px;}
.ws245{word-spacing:18.545330px;}
.ws22b{word-spacing:18.545332px;}
.ws238{word-spacing:18.557091px;}
.ws4f{word-spacing:18.568850px;}
.wsc5{word-spacing:18.598251px;}
.ws10{word-spacing:18.600220px;}
.ws23b{word-spacing:18.621771px;}
.wsbf{word-spacing:18.633530px;}
.ws219{word-spacing:18.662930px;}
.ws1cb{word-spacing:18.692330px;}
.ws67{word-spacing:18.709970px;}
.ws21b{word-spacing:18.727609px;}
.ws24c{word-spacing:18.757009px;}
.ws278{word-spacing:18.762889px;}
.ws182{word-spacing:18.786396px;}
.ws74{word-spacing:18.786408px;}
.ws1c2{word-spacing:18.809928px;}
.ws216{word-spacing:18.833448px;}
.ws1c0{word-spacing:18.845207px;}
.ws165{word-spacing:18.886368px;}
.wsdb{word-spacing:18.898127px;}
.ws59{word-spacing:18.915768px;}
.ws6c{word-spacing:18.921646px;}
.ws1ba{word-spacing:18.927527px;}
.ws20c{word-spacing:18.939287px;}
.wsab{word-spacing:19.003966px;}
.ws12a{word-spacing:19.056886px;}
.ws114{word-spacing:19.092165px;}
.ws26c{word-spacing:19.103926px;}
.ws1f6{word-spacing:19.133325px;}
.ws1b8{word-spacing:19.145085px;}
.ws47{word-spacing:19.150965px;}
.ws5b{word-spacing:19.162725px;}
.ws62{word-spacing:19.174484px;}
.ws250{word-spacing:19.180365px;}
.ws61{word-spacing:19.186244px;}
.ws244{word-spacing:19.215644px;}
.wsdc{word-spacing:19.221523px;}
.ws7c{word-spacing:19.239164px;}
.ws235{word-spacing:19.280323px;}
.ws213{word-spacing:19.280324px;}
.ws4b{word-spacing:19.292083px;}
.ws145{word-spacing:19.315603px;}
.wsc9{word-spacing:19.339123px;}
.ws131{word-spacing:19.350883px;}
.ws85{word-spacing:19.386162px;}
.ws21e{word-spacing:19.392042px;}
.ws14b{word-spacing:19.403802px;}
.ws17c{word-spacing:19.409682px;}
.ws5{word-spacing:19.463576px;}
.ws157{word-spacing:19.480241px;}
.ws227{word-spacing:19.568440px;}
.wse{word-spacing:19.569178px;}
.ws54{word-spacing:19.580200px;}
.ws158{word-spacing:19.603720px;}
.wse2{word-spacing:19.627241px;}
.ws8{word-spacing:19.635178px;}
.ws6{word-spacing:19.641779px;}
.wsb{word-spacing:19.654978px;}
.wsd{word-spacing:19.674780px;}
.ws129{word-spacing:19.686039px;}
.ws106{word-spacing:19.691919px;}
.ws84{word-spacing:19.697799px;}
.wsf{word-spacing:19.701179px;}
.ws279{word-spacing:19.703680px;}
.ws1b9{word-spacing:19.744838px;}
.ws4{word-spacing:19.773780px;}
.ws5c{word-spacing:19.785999px;}
.ws1c4{word-spacing:19.797758px;}
.ws215{word-spacing:19.809518px;}
.ws9{word-spacing:19.813381px;}
.wsa{word-spacing:19.819980px;}
.ws58{word-spacing:19.850678px;}
.ws10d{word-spacing:19.868317px;}
.wsc{word-spacing:19.912382px;}
.ws22e{word-spacing:19.921236px;}
.wsdd{word-spacing:19.938877px;}
.ws104{word-spacing:19.944757px;}
.ws1c5{word-spacing:19.956517px;}
.ws3{word-spacing:19.978382px;}
.wsd4{word-spacing:19.985916px;}
.ws7{word-spacing:19.991581px;}
.wsc2{word-spacing:19.997676px;}
.wse8{word-spacing:20.003556px;}
.ws171{word-spacing:20.021195px;}
.ws110{word-spacing:20.044716px;}
.ws1d0{word-spacing:20.050596px;}
.ws1e8{word-spacing:20.062356px;}
.ws170{word-spacing:20.097635px;}
.ws4e{word-spacing:20.115275px;}
.ws57{word-spacing:20.179954px;}
.ws153{word-spacing:20.191714px;}
.wsef{word-spacing:20.226994px;}
.wsb1{word-spacing:20.256393px;}
.ws172{word-spacing:20.332832px;}
.wsb7{word-spacing:20.362232px;}
.ws248{word-spacing:20.368112px;}
.ws12d{word-spacing:20.373993px;}
.ws246{word-spacing:20.391631px;}
.ws249{word-spacing:20.403392px;}
.ws225{word-spacing:20.421031px;}
.ws1ee{word-spacing:20.426911px;}
.ws258{word-spacing:20.444552px;}
.ws14c{word-spacing:20.456311px;}
.ws1b4{word-spacing:20.591549px;}
.ws1cc{word-spacing:20.597429px;}
.ws217{word-spacing:20.626829px;}
.ws102{word-spacing:20.626830px;}
.ws166{word-spacing:20.662109px;}
.ws23e{word-spacing:20.673870px;}
.ws8d{word-spacing:20.679745px;}
.ws118{word-spacing:20.697390px;}
.ws223{word-spacing:20.720908px;}
.ws119{word-spacing:20.756189px;}
.ws1b5{word-spacing:20.779707px;}
.ws64{word-spacing:20.797349px;}
.ws144{word-spacing:20.826747px;}
.wse3{word-spacing:20.838507px;}
.ws259{word-spacing:20.867907px;}
.ws1fb{word-spacing:20.956106px;}
.wsb5{word-spacing:20.967866px;}
.ws77{word-spacing:20.997265px;}
.ws8e{word-spacing:21.038425px;}
.ws1d2{word-spacing:21.056065px;}
.ws150{word-spacing:21.079585px;}
.ws9f{word-spacing:21.091345px;}
.wse5{word-spacing:21.144283px;}
.ws154{word-spacing:21.179545px;}
.ws23c{word-spacing:21.185423px;}
.wsf7{word-spacing:21.191305px;}
.wsac{word-spacing:21.197184px;}
.ws21a{word-spacing:21.250103px;}
.ws78{word-spacing:21.267743px;}
.wsd9{word-spacing:21.279503px;}
.wsb6{word-spacing:21.332422px;}
.ws17f{word-spacing:21.355943px;}
.ws174{word-spacing:21.361821px;}
.ws89{word-spacing:21.420621px;}
.ws240{word-spacing:21.426501px;}
.ws266{word-spacing:21.526461px;}
.wse6{word-spacing:21.532341px;}
.ws25b{word-spacing:21.544101px;}
.ws120{word-spacing:21.591141px;}
.ws1c3{word-spacing:21.602900px;}
.wsa6{word-spacing:21.620540px;}
.ws25c{word-spacing:21.626420px;}
.ws138{word-spacing:21.649940px;}
.wsf6{word-spacing:21.655819px;}
.wsc7{word-spacing:21.661699px;}
.wsfc{word-spacing:21.679340px;}
.ws56{word-spacing:21.708739px;}
.wscf{word-spacing:21.849858px;}
.ws50{word-spacing:21.861616px;}
.wsbd{word-spacing:21.949816px;}
.ws1c8{word-spacing:21.961576px;}
.ws212{word-spacing:22.073295px;}
.ws1f1{word-spacing:22.161494px;}
.ws63{word-spacing:22.167374px;}
.ws121{word-spacing:22.202654px;}
.ws17b{word-spacing:22.237932px;}
.ws264{word-spacing:22.243813px;}
.ws142{word-spacing:22.267333px;}
.ws139{word-spacing:22.320253px;}
.ws9e{word-spacing:22.326133px;}
.wsf9{word-spacing:22.361411px;}
.ws13f{word-spacing:22.373172px;}
.wsa9{word-spacing:22.414331px;}
.wscc{word-spacing:22.484891px;}
.ws1d3{word-spacing:22.561330px;}
.ws140{word-spacing:22.608369px;}
.ws125{word-spacing:22.626009px;}
.wse4{word-spacing:22.690689px;}
.ws7b{word-spacing:22.702449px;}
.wsbe{word-spacing:22.749487px;}
.ws25f{word-spacing:22.761248px;}
.wse9{word-spacing:22.808288px;}
.wscb{word-spacing:22.820048px;}
.ws268{word-spacing:22.867086px;}
.ws184{word-spacing:22.878847px;}
.ws71{word-spacing:22.920006px;}
.wsde{word-spacing:22.978805px;}
.wsea{word-spacing:23.008206px;}
.wsd6{word-spacing:23.014086px;}
.ws260{word-spacing:23.055246px;}
.ws26b{word-spacing:23.067005px;}
.ws12e{word-spacing:23.084644px;}
.ws180{word-spacing:23.090524px;}
.wsdf{word-spacing:23.119925px;}
.ws7f{word-spacing:23.166964px;}
.ws183{word-spacing:23.219887px;}
.ws88{word-spacing:23.243403px;}
.ws100{word-spacing:23.255162px;}
.ws230{word-spacing:23.255164px;}
.ws1c9{word-spacing:23.261043px;}
.ws11a{word-spacing:23.372762px;}
.ws11f{word-spacing:23.384522px;}
.ws26e{word-spacing:23.402161px;}
.ws151{word-spacing:23.437440px;}
.ws24d{word-spacing:23.607960px;}
.ws0{word-spacing:23.649601px;}
.ws130{word-spacing:23.737319px;}
.ws149{word-spacing:23.760837px;}
.wsd3{word-spacing:23.766718px;}
.wsc6{word-spacing:23.784358px;}
.wsa7{word-spacing:23.796117px;}
.ws8f{word-spacing:23.819637px;}
.ws148{word-spacing:23.854917px;}
.wsce{word-spacing:23.925477px;}
.ws99{word-spacing:23.948995px;}
.ws276{word-spacing:24.019555px;}
.ws26a{word-spacing:24.043076px;}
.ws23d{word-spacing:24.290032px;}
.ws14f{word-spacing:24.342952px;}
.ws228{word-spacing:24.378232px;}
.ws91{word-spacing:24.384111px;}
.ws127{word-spacing:24.507589px;}
.ws107{word-spacing:24.531109px;}
.ws1f7{word-spacing:24.542869px;}
.ws26f{word-spacing:24.654588px;}
.ws9c{word-spacing:24.660469px;}
.wse7{word-spacing:24.666348px;}
.ws181{word-spacing:24.754547px;}
.ws143{word-spacing:24.789826px;}
.ws1c6{word-spacing:24.836867px;}
.ws12c{word-spacing:24.983865px;}
.ws1f9{word-spacing:24.989745px;}
.ws232{word-spacing:25.101463px;}
.wsd5{word-spacing:25.119104px;}
.ws10f{word-spacing:25.166143px;}
.ws271{word-spacing:25.201423px;}
.wsb0{word-spacing:25.271983px;}
.ws1ef{word-spacing:25.342542px;}
.wsc1{word-spacing:25.377822px;}
.ws270{word-spacing:25.413100px;}
.ws226{word-spacing:25.436621px;}
.ws169{word-spacing:25.460140px;}
.ws95{word-spacing:25.471900px;}
.ws98{word-spacing:25.518940px;}
.ws229{word-spacing:25.607139px;}
.ws14e{word-spacing:25.701218px;}
.ws97{word-spacing:25.748258px;}
.ws10e{word-spacing:25.771776px;}
.ws1d1{word-spacing:25.836456px;}
.ws7a{word-spacing:25.848216px;}
.ws113{word-spacing:25.901135px;}
.ws25a{word-spacing:25.924655px;}
.ws247{word-spacing:26.036374px;}
.ws1fd{word-spacing:26.054015px;}
.ws255{word-spacing:26.083414px;}
.ws15d{word-spacing:26.130453px;}
.ws115{word-spacing:26.148094px;}
.ws1f3{word-spacing:26.177493px;}
.wse0{word-spacing:26.277435px;}
.ws46{word-spacing:26.353892px;}
.ws152{word-spacing:26.453849px;}
.wse1{word-spacing:26.471490px;}
.ws221{word-spacing:26.583209px;}
.ws242{word-spacing:26.612608px;}
.wsf8{word-spacing:26.647889px;}
.ws1f0{word-spacing:26.689047px;}
.wsa8{word-spacing:26.706688px;}
.wsc0{word-spacing:26.918365px;}
.ws1ca{word-spacing:26.924245px;}
.ws274{word-spacing:27.094763px;}
.ws21c{word-spacing:27.265282px;}
.wsc4{word-spacing:27.441680px;}
.wsa0{word-spacing:27.453440px;}
.ws141{word-spacing:27.459321px;}
.ws135{word-spacing:27.476959px;}
.wsd2{word-spacing:27.500480px;}
.ws90{word-spacing:27.512240px;}
.ws92{word-spacing:27.653358px;}
.ws159{word-spacing:27.712157px;}
.ws22d{word-spacing:27.847395px;}
.ws146{word-spacing:28.029675px;}
.ws43{word-spacing:28.253112px;}
.ws128{word-spacing:28.353072px;}
.ws20a{word-spacing:28.364830px;}
.ws162{word-spacing:28.388350px;}
.ws269{word-spacing:28.441271px;}
.wscd{word-spacing:28.676468px;}
.ws9b{word-spacing:28.899905px;}
.ws11c{word-spacing:28.911642px;}
.ws111{word-spacing:29.046903px;}
.ws168{word-spacing:29.076303px;}
.ws12b{word-spacing:29.240941px;}
.ws11d{word-spacing:29.340902px;}
.ws273{word-spacing:29.593737px;}
.ws23a{word-spacing:30.181731px;}
.ws147{word-spacing:30.563928px;}
.wsad{word-spacing:30.610969px;}
.ws156{word-spacing:30.628609px;}
.ws1c7{word-spacing:31.892796px;}
.ws1ed{word-spacing:32.222071px;}
.ws178{word-spacing:32.786544px;}
.ws10a{word-spacing:33.433339px;}
.ws94{word-spacing:33.927253px;}
.ws11b{word-spacing:34.056613px;}
.ws253{word-spacing:34.403528px;}
.ws21f{word-spacing:35.473680px;}
.ws93{word-spacing:35.973473px;}
.ws8c{word-spacing:37.461098px;}
.ws9d{word-spacing:38.137290px;}
.ws1{word-spacing:42.955378px;}
.ws2{word-spacing:43.300982px;}
.ws19d{word-spacing:1110.730067px;}
.ws198{word-spacing:1359.419753px;}
.ws199{word-spacing:1365.784474px;}
.ws1a4{word-spacing:1375.336354px;}
.ws197{word-spacing:1393.768124px;}
._14{margin-left:-20.321073px;}
._15{margin-left:-19.315599px;}
._7f{margin-left:-12.851829px;}
._7e{margin-left:-10.557183px;}
._17{margin-left:-5.374264px;}
._11{margin-left:-4.020557px;}
._9{margin-left:-2.154022px;}
._8{margin-left:-1.074011px;}
._5{width:1.134012px;}
._12{width:2.137348px;}
._0{width:8.954400px;}
._7d{width:10.479162px;}
._d{width:11.856427px;}
._c{width:13.687582px;}
._a{width:14.700148px;}
._e{width:15.758239px;}
._7{width:17.352174px;}
._6{width:19.068190px;}
._4{width:20.552589px;}
._f{width:21.626421px;}
._10{width:22.965116px;}
._13{width:24.178314px;}
._16{width:25.562880px;}
._1d{width:26.960342px;}
._18{width:28.118690px;}
._19{width:29.199802px;}
._1b{width:31.240152px;}
._1{width:32.876999px;}
._1a{width:34.044856px;}
._7b{width:35.774209px;}
._3{width:44.683392px;}
._7c{width:65.861120px;}
._b{width:105.586492px;}
._5d{width:111.579398px;}
._1f{width:127.126410px;}
._2c{width:128.134402px;}
._2d{width:134.734309px;}
._6e{width:136.356688px;}
._3c{width:165.693922px;}
._4d{width:168.727478px;}
._23{width:175.802604px;}
._2a{width:181.072930px;}
._4b{width:188.661643px;}
._5e{width:190.545069px;}
._64{width:191.853590px;}
._45{width:196.658330px;}
._75{width:197.738340px;}
._4e{width:200.291885px;}
._3f{width:203.709454px;}
._43{width:204.746249px;}
._27{width:206.421428px;}
._24{width:207.443806px;}
._65{width:209.075792px;}
._66{width:219.702842px;}
._79{width:222.189230px;}
._3a{width:226.701167px;}
._32{width:228.913934px;}
._50{width:231.078719px;}
._57{width:241.321775px;}
._70{width:250.124871px;}
._5f{width:251.195251px;}
._6c{width:254.161611px;}
._6f{width:258.017823px;}
._4f{width:261.011123px;}
._21{width:265.974276px;}
._51{width:270.371006px;}
._76{width:276.481344px;}
._60{width:282.102080px;}
._67{width:284.521239px;}
._71{width:289.964366px;}
._58{width:293.314733px;}
._74{width:299.213865px;}
._55{width:302.765819px;}
._56{width:309.749726px;}
._5a{width:312.389687px;}
._61{width:321.912771px;}
._7a{width:327.835877px;}
._54{width:331.306245px;}
._68{width:344.386080px;}
._72{width:350.510803px;}
._52{width:353.913979px;}
._5b{width:359.995494px;}
._6a{width:363.413049px;}
._78{width:379.041646px;}
._63{width:382.329606px;}
._59{width:404.553327px;}
._6b{width:411.018855px;}
._77{width:423.604307px;}
._69{width:455.576688px;}
._36{width:592.377066px;}
._6d{width:672.634761px;}
._62{width:673.657149px;}
._73{width:680.602699px;}
._35{width:685.258632px;}
._48{width:702.802415px;}
._5c{width:716.367032px;}
._39{width:722.630963px;}
._53{width:739.646741px;}
._34{width:860.204110px;}
._47{width:868.354411px;}
._30{width:946.129352px;}
._33{width:957.642891px;}
._3b{width:991.885663px;}
._38{width:1028.257499px;}
._3e{width:1033.145945px;}
._37{width:1037.362984px;}
._31{width:1079.841301px;}
._40{width:1082.852056px;}
._29{width:1157.011127px;}
._3d{width:1167.697862px;}
._26{width:1210.554456px;}
._44{width:1220.787928px;}
._28{width:1235.034149px;}
._41{width:1294.107010px;}
._2b{width:1321.370669px;}
._22{width:1338.712851px;}
._4c{width:1341.386419px;}
._49{width:1351.250295px;}
._46{width:1354.312656px;}
._42{width:1355.335044px;}
._4a{width:1367.579691px;}
._1e{width:1393.777772px;}
._20{width:1415.156695px;}
._2{width:1602.252539px;}
._80{width:1950.508353px;}
._1c{width:1975.002432px;}
._25{width:2210.434699px;}
._2f{width:2251.834181px;}
._2e{width:2286.120152px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:27.996600px;}
.fs7{font-size:29.995200px;}
.fs11{font-size:31.995000px;}
.fsa{font-size:36.180000px;}
.fs18{font-size:37.800000px;}
.fsf{font-size:39.194401px;}
.fs17{font-size:40.800000px;}
.fs8{font-size:41.999400px;}
.fs13{font-size:43.199999px;}
.fs19{font-size:43.800000px;}
.fs15{font-size:43.800600px;}
.fs3{font-size:43.996200px;}
.fs6{font-size:44.999400px;}
.fs14{font-size:45.000000px;}
.fs9{font-size:47.999400px;}
.fsb{font-size:48.000000px;}
.fs16{font-size:53.349000px;}
.fs10{font-size:54.000000px;}
.fse{font-size:55.200600px;}
.fsd{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fsc{font-size:61.800001px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y38{bottom:67.520194px;}
.y37{bottom:79.511014px;}
.y30b{bottom:84.166920px;}
.y295{bottom:91.417454px;}
.ya8{bottom:91.418470px;}
.y1dd{bottom:91.420041px;}
.y23b{bottom:91.420331px;}
.y114{bottom:91.421600px;}
.y2da{bottom:91.421739px;}
.y1fc{bottom:91.424603px;}
.y1a2{bottom:91.425043px;}
.y1ed{bottom:91.427394px;}
.y12d{bottom:91.429315px;}
.y20b{bottom:91.430493px;}
.y1b2{bottom:91.432396px;}
.y72{bottom:91.444236px;}
.ye0{bottom:91.444836px;}
.y163{bottom:91.452836px;}
.y36{bottom:91.501849px;}
.y30a{bottom:94.666815px;}
.y35{bottom:103.492669px;}
.y294{bottom:104.938648px;}
.y2d9{bottom:104.942933px;}
.ya7{bottom:109.446367px;}
.y1dc{bottom:109.447937px;}
.y23a{bottom:109.448228px;}
.y113{bottom:109.449496px;}
.y1fb{bottom:109.452500px;}
.y1a1{bottom:109.452939px;}
.y1ec{bottom:109.455290px;}
.y12c{bottom:109.457211px;}
.y20a{bottom:109.458389px;}
.y1b1{bottom:109.460292px;}
.y71{bottom:109.472132px;}
.ydf{bottom:109.472732px;}
.y162{bottom:109.480732px;}
.y293{bottom:109.956001px;}
.y3a{bottom:115.095004px;}
.y34{bottom:115.483504px;}
.y292{bottom:118.459946px;}
.y2d8{bottom:118.464128px;}
.y291{bottom:123.392097px;}
.y309{bottom:127.200165px;}
.ya6{bottom:127.389004px;}
.y1db{bottom:127.390574px;}
.y239{bottom:127.390865px;}
.y112{bottom:127.392133px;}
.y12b{bottom:127.399848px;}
.y1fa{bottom:127.480396px;}
.y1a0{bottom:127.480835px;}
.y1eb{bottom:127.483186px;}
.y209{bottom:127.486286px;}
.y1b0{bottom:127.488188px;}
.y70{bottom:127.500028px;}
.yde{bottom:127.500629px;}
.y161{bottom:127.508629px;}
.y290{bottom:131.896053px;}
.y2d7{bottom:131.899824px;}
.y28f{bottom:136.913395px;}
.y33{bottom:140.910240px;}
.y192{bottom:143.375618px;}
.y28e{bottom:145.417305px;}
.ya5{bottom:145.417351px;}
.y1da{bottom:145.418470px;}
.y238{bottom:145.418761px;}
.y111{bottom:145.420029px;}
.y2d6{bottom:145.421018px;}
.y1f9{bottom:145.423033px;}
.y19f{bottom:145.423472px;}
.y1ea{bottom:145.425823px;}
.y12a{bottom:145.427744px;}
.y208{bottom:145.428923px;}
.y1af{bottom:145.430825px;}
.y6f{bottom:145.442665px;}
.ydd{bottom:145.443266px;}
.y160{bottom:145.451266px;}
.y308{bottom:145.815015px;}
.y32{bottom:154.431435px;}
.y191{bottom:156.131885px;}
.y28b{bottom:158.938039px;}
.y28d{bottom:158.938499px;}
.y2d5{bottom:158.942213px;}
.y31{bottom:159.448785px;}
.y1d9{bottom:163.446367px;}
.y237{bottom:163.446657px;}
.y110{bottom:163.447926px;}
.y1f8{bottom:163.450929px;}
.y19e{bottom:163.451369px;}
.y1e9{bottom:163.453720px;}
.y129{bottom:163.455641px;}
.y207{bottom:163.456819px;}
.y1ae{bottom:163.458721px;}
.y6e{bottom:163.470562px;}
.ydc{bottom:163.471162px;}
.y15f{bottom:163.479162px;}
.y28c{bottom:163.955853px;}
.y307{bottom:164.429565px;}
.y30{bottom:167.953395px;}
.y190{bottom:168.888153px;}
.y28a{bottom:172.459233px;}
.y2d4{bottom:172.463407px;}
.y1d8{bottom:181.389004px;}
.y236{bottom:181.389294px;}
.y10f{bottom:181.390563px;}
.y128{bottom:181.398278px;}
.ya4{bottom:181.400287px;}
.y2f{bottom:181.474590px;}
.y1f7{bottom:181.478826px;}
.y19d{bottom:181.479265px;}
.y1e8{bottom:181.481616px;}
.y206{bottom:181.484715px;}
.y1ad{bottom:181.486618px;}
.y6d{bottom:181.498458px;}
.ydb{bottom:181.499058px;}
.y15e{bottom:181.507058px;}
.y306{bottom:183.044415px;}
.y287{bottom:185.895996px;}
.y289{bottom:185.896053px;}
.y2d3{bottom:185.900227px;}
.y18f{bottom:188.623501px;}
.y288{bottom:190.913395px;}
.y2e{bottom:194.910285px;}
.y1d7{bottom:199.417191px;}
.y285{bottom:199.417419px;}
.y10e{bottom:199.418459px;}
.y2d2{bottom:199.421422px;}
.y1f6{bottom:199.421463px;}
.y19c{bottom:199.421902px;}
.y1e7{bottom:199.424253px;}
.y127{bottom:199.426174px;}
.y205{bottom:199.427352px;}
.ya3{bottom:199.428184px;}
.y1ac{bottom:199.429255px;}
.y6c{bottom:199.441095px;}
.yda{bottom:199.441695px;}
.y15d{bottom:199.449695px;}
.y2d{bottom:199.927485px;}
.y305{bottom:201.659265px;}
.y286{bottom:204.434555px;}
.y2c{bottom:208.431435px;}
.y18e{bottom:209.628037px;}
.y284{bottom:212.938614px;}
.y2d1{bottom:212.942616px;}
.y235{bottom:217.445709px;}
.y10d{bottom:217.446355px;}
.y1f5{bottom:217.449359px;}
.y19b{bottom:217.449798px;}
.y1e6{bottom:217.452149px;}
.y126{bottom:217.454070px;}
.y204{bottom:217.455248px;}
.ya2{bottom:217.456080px;}
.y1ab{bottom:217.457151px;}
.y6b{bottom:217.468991px;}
.yd9{bottom:217.469591px;}
.y15c{bottom:217.477591px;}
.y304{bottom:220.274265px;}
.y283{bottom:226.459808px;}
.y281{bottom:226.460346px;}
.y2d0{bottom:226.463811px;}
.y18d{bottom:230.632573px;}
.y282{bottom:231.392097px;}
.y10c{bottom:235.388992px;}
.y125{bottom:235.396707px;}
.ya1{bottom:235.398717px;}
.y10a{bottom:235.402343px;}
.y1f4{bottom:235.477255px;}
.y19a{bottom:235.477694px;}
.y1e5{bottom:235.480045px;}
.y203{bottom:235.483145px;}
.y1aa{bottom:235.485047px;}
.y6a{bottom:235.496887px;}
.yd8{bottom:235.497488px;}
.y15b{bottom:235.505488px;}
.y27e{bottom:239.895996px;}
.y280{bottom:239.896042px;}
.y2cf{bottom:239.899507px;}
.y10b{bottom:241.936958px;}
.y27f{bottom:244.913246px;}
.y18c{bottom:251.637110px;}
.y303{bottom:251.663850px;}
.y27d{bottom:253.417191px;}
.y1f3{bottom:253.419892px;}
.y199{bottom:253.420331px;}
.y2ce{bottom:253.420701px;}
.y1e4{bottom:253.422682px;}
.y124{bottom:253.424603px;}
.y202{bottom:253.425782px;}
.ya0{bottom:253.426613px;}
.y1a9{bottom:253.427684px;}
.y109{bottom:253.430239px;}
.y69{bottom:253.439524px;}
.yd7{bottom:253.440125px;}
.y15a{bottom:253.448125px;}
.y234{bottom:253.463646px;}
.y27c{bottom:258.434555px;}
.y2b{bottom:259.789980px;}
.y27b{bottom:266.938499px;}
.y2cd{bottom:266.941896px;}
.y302{bottom:267.668550px;}
.y1f2{bottom:271.447788px;}
.y198{bottom:271.448228px;}
.y1e3{bottom:271.450579px;}
.y123{bottom:271.452500px;}
.y201{bottom:271.453678px;}
.y9f{bottom:271.454509px;}
.y1a8{bottom:271.455581px;}
.y108{bottom:271.458135px;}
.y68{bottom:271.467421px;}
.yd6{bottom:271.468021px;}
.y159{bottom:271.476021px;}
.y233{bottom:271.491542px;}
.y27a{bottom:271.955841px;}
.y18b{bottom:272.641646px;}
.y279{bottom:280.459808px;}
.y2cc{bottom:280.463090px;}
.y2a{bottom:285.302235px;}
.y278{bottom:285.392097px;}
.y122{bottom:289.395137px;}
.y9e{bottom:289.397146px;}
.y107{bottom:289.400772px;}
.y1f1{bottom:289.475685px;}
.y197{bottom:289.476124px;}
.y1e2{bottom:289.478475px;}
.y200{bottom:289.481574px;}
.y1a7{bottom:289.483477px;}
.y67{bottom:289.495317px;}
.yd5{bottom:289.495917px;}
.y158{bottom:289.503917px;}
.y232{bottom:289.519439px;}
.y18a{bottom:293.646182px;}
.y277{bottom:293.896042px;}
.y2cb{bottom:293.898786px;}
.y276{bottom:298.913246px;}
.y29{bottom:303.330915px;}
.y275{bottom:307.417305px;}
.y1f0{bottom:307.418322px;}
.y196{bottom:307.418761px;}
.y2ca{bottom:307.419981px;}
.y1e1{bottom:307.421112px;}
.y121{bottom:307.423033px;}
.y1ff{bottom:307.424211px;}
.y9d{bottom:307.425043px;}
.y1a6{bottom:307.426114px;}
.y106{bottom:307.428669px;}
.y66{bottom:307.437954px;}
.yd4{bottom:307.438554px;}
.y157{bottom:307.446554px;}
.y231{bottom:307.462076px;}
.y189{bottom:314.650719px;}
.y274{bottom:320.938499px;}
.y272{bottom:320.939151px;}
.y2c9{bottom:320.941175px;}
.y1ef{bottom:325.446218px;}
.y195{bottom:325.446657px;}
.y1e0{bottom:325.449008px;}
.y120{bottom:325.450929px;}
.y1fe{bottom:325.452107px;}
.y9c{bottom:325.452939px;}
.y1a5{bottom:325.454010px;}
.y105{bottom:325.456565px;}
.y65{bottom:325.465850px;}
.yd3{bottom:325.466451px;}
.y156{bottom:325.474451px;}
.y230{bottom:325.489972px;}
.y28{bottom:325.781655px;}
.y273{bottom:325.955841px;}
.y271{bottom:334.460346px;}
.y2c8{bottom:334.462370px;}
.y188{bottom:335.655255px;}
.y1ee{bottom:343.388855px;}
.y194{bottom:343.389294px;}
.y1df{bottom:343.391645px;}
.y11f{bottom:343.393566px;}
.y1fd{bottom:343.394744px;}
.y9b{bottom:343.395576px;}
.y1a4{bottom:343.396647px;}
.y104{bottom:343.399202px;}
.y64{bottom:343.408487px;}
.yd2{bottom:343.409088px;}
.y155{bottom:343.417088px;}
.y22f{bottom:343.432609px;}
.y27{bottom:343.810335px;}
.y270{bottom:347.896042px;}
.y26e{bottom:347.896111px;}
.y2c7{bottom:347.898066px;}
.y26f{bottom:352.913246px;}
.y187{bottom:356.659792px;}
.y193{bottom:361.417191px;}
.y26d{bottom:361.417305px;}
.y2c6{bottom:361.419260px;}
.y1de{bottom:361.419542px;}
.y11e{bottom:361.421463px;}
.y9a{bottom:361.423472px;}
.y1a3{bottom:361.424543px;}
.y103{bottom:361.427098px;}
.y63{bottom:361.436384px;}
.yd1{bottom:361.436984px;}
.y154{bottom:361.444984px;}
.y22e{bottom:361.460505px;}
.y26{bottom:366.261060px;}
.y26c{bottom:374.938499px;}
.y26a{bottom:374.938614px;}
.y2c5{bottom:374.940455px;}
.y186{bottom:377.664328px;}
.y11d{bottom:379.449359px;}
.y99{bottom:379.451369px;}
.y102{bottom:379.454995px;}
.y62{bottom:379.464280px;}
.yd0{bottom:379.464880px;}
.y153{bottom:379.472880px;}
.y22d{bottom:379.488401px;}
.y26b{bottom:379.955841px;}
.y25{bottom:384.289740px;}
.y269{bottom:388.459808px;}
.y2c4{bottom:388.461649px;}
.y1d6{bottom:390.158725px;}
.y268{bottom:393.392120px;}
.y11c{bottom:397.391996px;}
.y98{bottom:397.394006px;}
.y101{bottom:397.397632px;}
.y61{bottom:397.406917px;}
.ycf{bottom:397.407517px;}
.y152{bottom:397.415517px;}
.y22c{bottom:397.431038px;}
.y185{bottom:398.668864px;}
.y267{bottom:401.896042px;}
.y2c3{bottom:401.897345px;}
.y24{bottom:402.318420px;}
.y1d5{bottom:402.914993px;}
.y266{bottom:406.913269px;}
.y263{bottom:415.417282px;}
.y265{bottom:415.417328px;}
.y2c2{bottom:415.418540px;}
.y11b{bottom:415.419892px;}
.y97{bottom:415.421902px;}
.y100{bottom:415.425528px;}
.y60{bottom:415.434813px;}
.yce{bottom:415.435413px;}
.y151{bottom:415.443413px;}
.y22b{bottom:415.458935px;}
.y1d4{bottom:415.671261px;}
.y184{bottom:419.588202px;}
.y23{bottom:420.261600px;}
.y264{bottom:420.434555px;}
.y1d3{bottom:428.427528px;}
.y262{bottom:428.938477px;}
.y2c1{bottom:428.939734px;}
.y11a{bottom:433.447788px;}
.y96{bottom:433.449798px;}
.yff{bottom:433.453424px;}
.y5f{bottom:433.462709px;}
.ycd{bottom:433.463310px;}
.y150{bottom:433.471310px;}
.y22a{bottom:433.486831px;}
.y22{bottom:438.290280px;}
.y183{bottom:440.592738px;}
.y1d2{bottom:441.183796px;}
.y261{bottom:442.459671px;}
.y2c0{bottom:442.460929px;}
.y260{bottom:447.392120px;}
.y119{bottom:451.390425px;}
.y95{bottom:451.392435px;}
.yfe{bottom:451.396061px;}
.y5e{bottom:451.405346px;}
.ycc{bottom:451.405947px;}
.y14f{bottom:451.413947px;}
.y229{bottom:451.429468px;}
.y1cf{bottom:453.939381px;}
.y1d1{bottom:453.940063px;}
.y2bf{bottom:455.896625px;}
.y25f{bottom:455.900112px;}
.y21{bottom:456.318960px;}
.y1d0{bottom:458.532166px;}
.y182{bottom:461.597275px;}
.y1ce{bottom:466.610599px;}
.y2be{bottom:469.417819px;}
.y118{bottom:469.418322px;}
.y94{bottom:469.420331px;}
.yfd{bottom:469.423957px;}
.y5d{bottom:469.433243px;}
.ycb{bottom:469.433843px;}
.y14e{bottom:469.441843px;}
.y228{bottom:469.457364px;}
.y20{bottom:474.262140px;}
.y1cd{bottom:479.366867px;}
.y181{bottom:482.601811px;}
.y2bd{bottom:482.939014px;}
.y25e{bottom:482.942501px;}
.y117{bottom:487.446218px;}
.y93{bottom:487.448228px;}
.yfc{bottom:487.451854px;}
.y5c{bottom:487.461139px;}
.yca{bottom:487.461739px;}
.y14d{bottom:487.469739px;}
.y227{bottom:487.485261px;}
.y1f{bottom:492.290820px;}
.y2bc{bottom:496.460208px;}
.y25d{bottom:496.463696px;}
.y1cc{bottom:499.099392px;}
.y180{bottom:503.606347px;}
.y116{bottom:505.388855px;}
.y92{bottom:505.390865px;}
.yfb{bottom:505.394491px;}
.y5b{bottom:505.403776px;}
.yc9{bottom:505.404376px;}
.y14c{bottom:505.412376px;}
.y226{bottom:505.427898px;}
.y25c{bottom:509.899392px;}
.y2bb{bottom:509.900682px;}
.y1e{bottom:514.827045px;}
.y1cb{bottom:520.103928px;}
.y115{bottom:523.417191px;}
.y91{bottom:523.418761px;}
.y25b{bottom:523.420586px;}
.y2ba{bottom:523.421876px;}
.yfa{bottom:523.422387px;}
.y5a{bottom:523.431672px;}
.yc8{bottom:523.432273px;}
.y14b{bottom:523.440272px;}
.y225{bottom:523.455794px;}
.y17f{bottom:524.610884px;}
.y30e{bottom:531.915000px;}
.y301{bottom:532.686660px;}
.y1d{bottom:532.770225px;}
.y25a{bottom:536.941781px;}
.y2b9{bottom:536.943070px;}
.y1ca{bottom:541.108464px;}
.y90{bottom:541.446657px;}
.yf9{bottom:541.450283px;}
.y59{bottom:541.459569px;}
.yc7{bottom:541.460169px;}
.y14a{bottom:541.468169px;}
.y224{bottom:541.483690px;}
.y300{bottom:545.442495px;}
.y17e{bottom:545.615420px;}
.y259{bottom:550.462975px;}
.y2b8{bottom:550.464265px;}
.y1c{bottom:550.798905px;}
.y2ff{bottom:558.198315px;}
.y8f{bottom:559.389294px;}
.yf8{bottom:559.392920px;}
.y58{bottom:559.402206px;}
.yc6{bottom:559.402806px;}
.y149{bottom:559.410806px;}
.y223{bottom:559.426327px;}
.y1c9{bottom:562.113001px;}
.y258{bottom:563.898671px;}
.y2b7{bottom:563.899961px;}
.y17d{bottom:566.619956px;}
.y1b{bottom:568.827585px;}
.y30d{bottom:571.230030px;}
.y8e{bottom:577.417191px;}
.y257{bottom:577.419866px;}
.yf7{bottom:577.420817px;}
.y2b6{bottom:577.421156px;}
.y8c{bottom:577.426961px;}
.y57{bottom:577.430102px;}
.yc5{bottom:577.430702px;}
.y148{bottom:577.438702px;}
.y222{bottom:577.454223px;}
.y1c8{bottom:583.117537px;}
.y8d{bottom:583.965317px;}
.y1a{bottom:586.770765px;}
.y17c{bottom:587.624493px;}
.y256{bottom:590.941060px;}
.y2b5{bottom:590.942350px;}
.yf6{bottom:595.448713px;}
.y8b{bottom:595.454857px;}
.y56{bottom:595.457998px;}
.yc4{bottom:595.458598px;}
.y147{bottom:595.466598px;}
.y221{bottom:595.482120px;}
.y1c7{bottom:596.638967px;}
.y2fe{bottom:599.957625px;}
.y255{bottom:604.462255px;}
.y2b4{bottom:604.463545px;}
.y19{bottom:604.799445px;}
.y17b{bottom:608.629029px;}
.yf5{bottom:613.391350px;}
.y2fd{bottom:613.393320px;}
.y8a{bottom:613.397494px;}
.y55{bottom:613.400635px;}
.yc3{bottom:613.401235px;}
.y146{bottom:613.409235px;}
.y220{bottom:613.424757px;}
.y1c6{bottom:617.643504px;}
.y254{bottom:617.897951px;}
.y2b3{bottom:617.899241px;}
.y18{bottom:622.828125px;}
.y2fc{bottom:626.914515px;}
.y17a{bottom:629.633565px;}
.y253{bottom:631.419145px;}
.yf4{bottom:631.419246px;}
.y2b2{bottom:631.420435px;}
.y89{bottom:631.425390px;}
.y54{bottom:631.428531px;}
.yc2{bottom:631.429132px;}
.y145{bottom:631.437132px;}
.y21f{bottom:631.452653px;}
.y1c5{bottom:638.648040px;}
.y2fb{bottom:640.435710px;}
.y17{bottom:640.771305px;}
.y2b1{bottom:644.941630px;}
.yf3{bottom:649.447142px;}
.y88{bottom:649.453287px;}
.y53{bottom:649.456428px;}
.yc1{bottom:649.457028px;}
.y144{bottom:649.465028px;}
.y21e{bottom:649.480549px;}
.y179{bottom:650.638102px;}
.y2fa{bottom:653.956905px;}
.y2b0{bottom:658.462824px;}
.y16{bottom:658.799985px;}
.y1c4{bottom:659.652576px;}
.y252{bottom:660.502258px;}
.yf2{bottom:667.389779px;}
.y2f9{bottom:667.392600px;}
.y87{bottom:667.395924px;}
.y52{bottom:667.399065px;}
.yc0{bottom:667.399665px;}
.y143{bottom:667.407665px;}
.y21d{bottom:667.423186px;}
.y178{bottom:671.642638px;}
.y2af{bottom:671.898520px;}
.y251{bottom:674.023452px;}
.y1c3{bottom:680.657113px;}
.y2f8{bottom:680.913795px;}
.y15{bottom:681.334710px;}
.yf1{bottom:685.417676px;}
.y2ae{bottom:685.419715px;}
.y86{bottom:685.423820px;}
.y51{bottom:685.426961px;}
.ybf{bottom:685.427561px;}
.y142{bottom:685.435561px;}
.y21c{bottom:685.451082px;}
.y250{bottom:687.459148px;}
.y177{bottom:692.647174px;}
.y2f7{bottom:694.434990px;}
.y2ad{bottom:698.940909px;}
.y14{bottom:699.277890px;}
.y24f{bottom:700.980343px;}
.y1c2{bottom:701.661650px;}
.yf0{bottom:703.445572px;}
.y85{bottom:703.451716px;}
.y50{bottom:703.454857px;}
.ybe{bottom:703.455458px;}
.y141{bottom:703.463457px;}
.y21b{bottom:703.478979px;}
.y2f6{bottom:707.956185px;}
.y2ac{bottom:712.462104px;}
.y176{bottom:713.651711px;}
.y24e{bottom:714.501537px;}
.y1c1{bottom:715.097882px;}
.y13{bottom:717.306570px;}
.yef{bottom:721.388855px;}
.y2f5{bottom:721.391880px;}
.y84{bottom:721.394353px;}
.y4f{bottom:721.397494px;}
.ybd{bottom:721.398095px;}
.y140{bottom:721.406094px;}
.y21a{bottom:721.421616px;}
.y2ab{bottom:725.897800px;}
.y24d{bottom:728.022732px;}
.y175{bottom:734.656247px;}
.y2f4{bottom:734.913075px;}
.y12{bottom:735.335250px;}
.y1c0{bottom:736.102418px;}
.y2aa{bottom:739.418994px;}
.y83{bottom:739.422250px;}
.y4e{bottom:739.425390px;}
.ybc{bottom:739.425991px;}
.y13f{bottom:739.433991px;}
.y219{bottom:739.449512px;}
.y24c{bottom:741.458428px;}
.y2f3{bottom:748.434270px;}
.y2a9{bottom:752.940189px;}
.y24b{bottom:754.979622px;}
.y174{bottom:755.660784px;}
.y1bf{bottom:757.106954px;}
.y82{bottom:757.450146px;}
.yee{bottom:757.450746px;}
.y4d{bottom:757.453287px;}
.ybb{bottom:757.453887px;}
.y13e{bottom:757.461887px;}
.y218{bottom:757.477408px;}
.y2f2{bottom:761.955465px;}
.y11{bottom:762.292770px;}
.y2a8{bottom:766.461383px;}
.y24a{bottom:768.500817px;}
.y2f1{bottom:775.392285px;}
.y81{bottom:775.392783px;}
.yed{bottom:775.393383px;}
.y4c{bottom:775.395924px;}
.yba{bottom:775.396524px;}
.y13d{bottom:775.404524px;}
.y217{bottom:775.420045px;}
.y173{bottom:776.665320px;}
.y1be{bottom:778.111491px;}
.y2a7{bottom:779.897079px;}
.y249{bottom:782.022011px;}
.y2f0{bottom:788.913480px;}
.y2a6{bottom:793.418274px;}
.y80{bottom:793.420679px;}
.yec{bottom:793.421279px;}
.y4b{bottom:793.423820px;}
.yb9{bottom:793.424420px;}
.y13c{bottom:793.432420px;}
.y216{bottom:793.447942px;}
.y248{bottom:795.458831px;}
.y172{bottom:797.584658px;}
.y1bd{bottom:799.116027px;}
.y2ef{bottom:802.434675px;}
.y2a5{bottom:806.939468px;}
.y7f{bottom:811.448575px;}
.yeb{bottom:811.449176px;}
.y4a{bottom:811.451716px;}
.yb8{bottom:811.452317px;}
.y13b{bottom:811.460317px;}
.y215{bottom:811.475838px;}
.y2ee{bottom:815.955870px;}
.y171{bottom:818.589194px;}
.yf{bottom:820.034355px;}
.y1bc{bottom:820.120563px;}
.y2a4{bottom:820.460663px;}
.y247{bottom:824.541944px;}
.y10{bottom:827.347770px;}
.y7e{bottom:829.391212px;}
.y2ed{bottom:829.391565px;}
.yea{bottom:829.391813px;}
.y49{bottom:829.394353px;}
.yb7{bottom:829.394954px;}
.y13a{bottom:829.402954px;}
.y214{bottom:829.418475px;}
.y1bb{bottom:833.641993px;}
.y2a3{bottom:833.897483px;}
.y246{bottom:838.063138px;}
.y170{bottom:839.593730px;}
.yc{bottom:841.039185px;}
.ye{bottom:841.039200px;}
.y2ec{bottom:842.912760px;}
.y2a2{bottom:847.418677px;}
.y7d{bottom:847.419109px;}
.ye9{bottom:847.419709px;}
.y48{bottom:847.422250px;}
.yb6{bottom:847.422850px;}
.y139{bottom:847.430850px;}
.y213{bottom:847.446371px;}
.yd{bottom:848.352615px;}
.y245{bottom:851.584333px;}
.y1ba{bottom:854.646530px;}
.y2eb{bottom:856.433955px;}
.y16f{bottom:860.598267px;}
.y16d{bottom:860.599655px;}
.y2a1{bottom:860.939872px;}
.yb{bottom:862.043865px;}
.y9{bottom:862.043940px;}
.y7c{bottom:865.447005px;}
.ye8{bottom:865.447605px;}
.y47{bottom:865.450146px;}
.yb5{bottom:865.450746px;}
.y138{bottom:865.458746px;}
.y212{bottom:865.474267px;}
.y16e{bottom:865.955658px;}
.ya{bottom:869.357190px;}
.y2ea{bottom:869.955150px;}
.y2a0{bottom:874.461066px;}
.y1b9{bottom:875.651066px;}
.y244{bottom:880.583070px;}
.y16c{bottom:881.604191px;}
.y6{bottom:883.048605px;}
.y8{bottom:883.048635px;}
.y7b{bottom:883.389642px;}
.ye7{bottom:883.390242px;}
.y2e9{bottom:883.390845px;}
.y46{bottom:883.392783px;}
.yb4{bottom:883.393383px;}
.y137{bottom:883.401383px;}
.y211{bottom:883.416904px;}
.y29f{bottom:887.896762px;}
.y7{bottom:890.362050px;}
.y243{bottom:894.104264px;}
.y1b8{bottom:896.655603px;}
.y2e8{bottom:896.912040px;}
.y7a{bottom:901.417538px;}
.y29e{bottom:901.417957px;}
.ye6{bottom:901.418139px;}
.y45{bottom:901.420679px;}
.yb3{bottom:901.421279px;}
.y136{bottom:901.429279px;}
.y210{bottom:901.444801px;}
.y16b{bottom:902.608728px;}
.y4{bottom:904.053300px;}
.y242{bottom:907.625458px;}
.y2e7{bottom:910.433235px;}
.y5{bottom:911.366715px;}
.y29d{bottom:914.939151px;}
.y1b7{bottom:917.660139px;}
.y79{bottom:919.445435px;}
.ye5{bottom:919.446035px;}
.y44{bottom:919.448575px;}
.yb2{bottom:919.449176px;}
.y135{bottom:919.457176px;}
.y20f{bottom:919.472697px;}
.y241{bottom:921.146653px;}
.y16a{bottom:923.613264px;}
.y2e6{bottom:923.954430px;}
.y29c{bottom:928.460346px;}
.y240{bottom:934.582349px;}
.y78{bottom:937.388672px;}
.y2e5{bottom:937.390125px;}
.y43{bottom:937.391212px;}
.yb1{bottom:937.391813px;}
.y134{bottom:937.399813px;}
.y20e{bottom:937.415334px;}
.y1b6{bottom:938.664675px;}
.y3{bottom:940.026600px;}
.y29b{bottom:941.896042px;}
.y169{bottom:944.617800px;}
.y23f{bottom:948.103544px;}
.y2e4{bottom:950.911320px;}
.y77{bottom:955.417236px;}
.y42{bottom:955.419109px;}
.yb0{bottom:955.419709px;}
.y133{bottom:955.427709px;}
.y20d{bottom:955.443230px;}
.y1b5{bottom:959.584013px;}
.y2e3{bottom:964.432515px;}
.y168{bottom:965.622337px;}
.y29a{bottom:968.938431px;}
.y41{bottom:973.447005px;}
.yaf{bottom:973.447605px;}
.y132{bottom:973.455605px;}
.y20c{bottom:973.471127px;}
.y2e2{bottom:977.953710px;}
.y2{bottom:979.057965px;}
.y1b4{bottom:979.312965px;}
.y299{bottom:982.459625px;}
.y23e{bottom:985.010925px;}
.y167{bottom:986.626873px;}
.y2e1{bottom:991.389405px;}
.y40{bottom:991.389642px;}
.yae{bottom:991.390242px;}
.y131{bottom:991.398242px;}
.y76{bottom:991.413163px;}
.ye4{bottom:991.413764px;}
.y1b3{bottom:992.834395px;}
.y298{bottom:995.895252px;}
.y23d{bottom:998.532120px;}
.y2e0{bottom:1004.910600px;}
.y166{bottom:1006.355825px;}
.y3f{bottom:1009.417538px;}
.yad{bottom:1009.418139px;}
.y130{bottom:1009.426139px;}
.y75{bottom:1009.441060px;}
.ye3{bottom:1009.441660px;}
.y2db{bottom:1011.945007px;}
.y23c{bottom:1012.053314px;}
.y2df{bottom:1018.431795px;}
.y165{bottom:1026.084778px;}
.y3e{bottom:1027.445435px;}
.yac{bottom:1027.446035px;}
.y12f{bottom:1027.454035px;}
.y74{bottom:1027.468956px;}
.ye2{bottom:1027.469556px;}
.y297{bottom:1031.952146px;}
.y2de{bottom:1031.952990px;}
.y2dc{bottom:1032.149963px;}
.y1{bottom:1036.034355px;}
.y296{bottom:1045.387842px;}
.y3d{bottom:1045.388672px;}
.y2dd{bottom:1045.388685px;}
.y12e{bottom:1045.396672px;}
.y73{bottom:1045.411593px;}
.ye1{bottom:1045.412193px;}
.y164{bottom:1045.813934px;}
.yab{bottom:1113.929993px;}
.y3c{bottom:1113.930004px;}
.y310{bottom:1113.930015px;}
.yaa{bottom:1128.885040px;}
.y3b{bottom:1128.885049px;}
.y30f{bottom:1128.885060px;}
.ya9{bottom:1129.917938px;}
.y39{bottom:1129.917949px;}
.y30c{bottom:1129.917960px;}
.h15{height:20.185549px;}
.h13{height:23.068395px;}
.h9{height:24.686050px;}
.hc{height:26.664660px;}
.h1e{height:28.350000px;}
.h14{height:30.281567px;}
.h1d{height:31.089600px;}
.h1b{height:31.098426px;}
.h17{height:31.406399px;}
.h1a{height:31.580233px;}
.h1f{height:32.280600px;}
.h16{height:32.444567px;}
.h10{height:32.884102px;}
.h18{height:33.165000px;}
.ha{height:34.565506px;}
.hb{height:34.607567px;}
.hd{height:35.376000px;}
.h19{height:36.047894px;}
.h5{height:36.208873px;}
.h8{height:37.034506px;}
.h11{height:38.934000px;}
.h12{height:39.503506px;}
.hf{height:39.799632px;}
.h1c{height:40.651938px;}
.h6{height:44.557800px;}
.he{height:49.332697px;}
.h7{height:49.380494px;}
.h4{height:54.318494px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x2d{left:89.036250px;}
.x1{left:91.077150px;}
.x4a{left:92.947599px;}
.x2c{left:94.818900px;}
.x31{left:97.030020px;}
.x58{left:107.575770px;}
.x5a{left:136.860030px;}
.x36{left:138.869247px;}
.x37{left:143.631454px;}
.x19{left:163.020450px;}
.x23{left:165.656700px;}
.x4d{left:169.483498px;}
.x49{left:174.415649px;}
.xd{left:179.518050px;}
.x1a{left:181.899150px;}
.x4b{left:187.596748px;}
.x4c{left:191.593655px;}
.xe{left:192.784200px;}
.x3{left:206.815665px;}
.x4e{left:212.683502px;}
.x54{left:215.489708px;}
.x4f{left:216.765289px;}
.x4{left:219.996765px;}
.x2b{left:231.392100px;}
.x55{left:241.681801px;}
.x50{left:244.913406px;}
.x56{left:249.675591px;}
.x51{left:252.992111px;}
.x30{left:256.845000px;}
.xf{left:264.727500px;}
.x2e{left:270.680265px;}
.x38{left:272.465996px;}
.x10{left:277.908600px;}
.x2f{left:279.465000px;}
.x3e{left:285.221992px;}
.x24{left:293.640900px;}
.x5{left:296.192100px;}
.x1b{left:299.423565px;}
.x6{left:301.804635px;}
.x1c{left:318.302265px;}
.x25{left:320.088165px;}
.x43{left:341.603096px;}
.x44{left:345.514961px;}
.x3c{left:351.127510px;}
.x3d{left:355.124405px;}
.x52{left:370.941605px;}
.x53{left:379.020447px;}
.x11{left:380.551050px;}
.x45{left:384.462464px;}
.x3f{left:391.095465px;}
.x12{left:393.817200px;}
.x26{left:398.154285px;}
.x27{left:411.420450px;}
.x1d{left:430.044015px;}
.x1e{left:441.269250px;}
.x32{left:457.085204px;}
.x33{left:469.077124px;}
.x57{left:479.620718px;}
.x59{left:483.219135px;}
.x7{left:485.234535px;}
.x13{left:496.289700px;}
.x8{left:498.500700px;}
.x39{left:503.772709px;}
.x46{left:506.833326px;}
.x14{left:509.470785px;}
.x40{left:511.936352px;}
.x1f{left:523.672350px;}
.x20{left:542.551065px;}
.x28{left:566.957385px;}
.x29{left:585.751050px;}
.x9{left:601.568385px;}
.xa{left:607.265985px;}
.x3a{left:626.909172px;}
.x47{left:629.119000px;}
.x41{left:632.861237px;}
.x15{left:656.333685px;}
.x16{left:675.212400px;}
.xb{left:695.962050px;}
.x2a{left:707.017185px;}
.xc{left:709.228185px;}
.x21{left:713.990385px;}
.x42{left:715.093807px;}
.x48{left:717.473893px;}
.x3b{left:723.428761px;}
.x22{left:725.300715px;}
.x34{left:734.229767px;}
.x35{left:740.097427px;}
.x17{left:752.088000px;}
.x18{left:763.313235px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8c{letter-spacing:-1.275294pt;}
.ls58{letter-spacing:-1.264840pt;}
.ls8b{letter-spacing:-1.254387pt;}
.ls8a{letter-spacing:-1.217801pt;}
.ls59{letter-spacing:-1.207348pt;}
.ls51{letter-spacing:-1.128948pt;}
.ls3f{letter-spacing:-1.087136pt;}
.ls10{letter-spacing:-1.072011pt;}
.ls8f{letter-spacing:-1.055776pt;}
.ls7b{letter-spacing:-1.029643pt;}
.lsc{letter-spacing:-1.029344pt;}
.ls70{letter-spacing:-1.024416pt;}
.lsf{letter-spacing:-1.024005pt;}
.ls7a{letter-spacing:-1.019190pt;}
.lsa{letter-spacing:-1.018677pt;}
.ls11{letter-spacing:-1.013343pt;}
.ls66{letter-spacing:-1.008736pt;}
.ls8{letter-spacing:-1.008010pt;}
.ls6f{letter-spacing:-1.003510pt;}
.ls79{letter-spacing:-0.998283pt;}
.ls7{letter-spacing:-0.997343pt;}
.ls34{letter-spacing:-0.993057pt;}
.lsd{letter-spacing:-0.992005pt;}
.ls54{letter-spacing:-0.987830pt;}
.ls68{letter-spacing:-0.982603pt;}
.lsb{letter-spacing:-0.981343pt;}
.ls3c{letter-spacing:-0.977377pt;}
.lse{letter-spacing:-0.976010pt;}
.ls53{letter-spacing:-0.972150pt;}
.ls6a{letter-spacing:-0.966923pt;}
.ls3b{letter-spacing:-0.961697pt;}
.ls32{letter-spacing:-0.956470pt;}
.ls3d{letter-spacing:-0.951244pt;}
.ls56{letter-spacing:-0.946017pt;}
.ls33{letter-spacing:-0.940790pt;}
.ls40{letter-spacing:-0.935564pt;}
.ls3e{letter-spacing:-0.930337pt;}
.ls9{letter-spacing:-0.928009pt;}
.ls50{letter-spacing:-0.925111pt;}
.ls9c{letter-spacing:-0.919988pt;}
.ls3a{letter-spacing:-0.919884pt;}
.ls52{letter-spacing:-0.914657pt;}
.ls90{letter-spacing:-0.909431pt;}
.ls41{letter-spacing:-0.904204pt;}
.ls55{letter-spacing:-0.898977pt;}
.ls4f{letter-spacing:-0.893751pt;}
.ls44{letter-spacing:-0.888524pt;}
.ls42{letter-spacing:-0.883298pt;}
.ls91{letter-spacing:-0.878071pt;}
.ls38{letter-spacing:-0.872844pt;}
.ls69{letter-spacing:-0.867618pt;}
.ls81{letter-spacing:-0.858654pt;}
.ls94{letter-spacing:-0.799672pt;}
.ls71{letter-spacing:-0.789219pt;}
.ls82{letter-spacing:-0.742923pt;}
.lsa4{letter-spacing:-0.731990pt;}
.lsa3{letter-spacing:-0.715990pt;}
.ls9e{letter-spacing:-0.699991pt;}
.ls9b{letter-spacing:-0.667991pt;}
.ls87{letter-spacing:-0.020906pt;}
.ls31{letter-spacing:-0.010453pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa2{letter-spacing:0.000107pt;}
.ls97{letter-spacing:0.012000pt;}
.ls9a{letter-spacing:0.045809pt;}
.ls9f{letter-spacing:0.051986pt;}
.ls99{letter-spacing:0.051998pt;}
.ls98{letter-spacing:0.131999pt;}
.ls6{letter-spacing:0.469338pt;}
.ls1{letter-spacing:0.490672pt;}
.ls2{letter-spacing:0.501338pt;}
.ls5a{letter-spacing:0.501755pt;}
.ls8d{letter-spacing:0.512208pt;}
.ls4b{letter-spacing:0.517435pt;}
.ls1c{letter-spacing:0.522661pt;}
.ls3{letter-spacing:0.522672pt;}
.ls5b{letter-spacing:0.527888pt;}
.ls86{letter-spacing:0.533115pt;}
.ls4{letter-spacing:0.533339pt;}
.ls2d{letter-spacing:0.538341pt;}
.ls1b{letter-spacing:0.543568pt;}
.ls1e{letter-spacing:0.548794pt;}
.ls1a{letter-spacing:0.554021pt;}
.ls1f{letter-spacing:0.559248pt;}
.ls84{letter-spacing:0.564474pt;}
.ls29{letter-spacing:0.569701pt;}
.ls20{letter-spacing:0.574927pt;}
.ls1d{letter-spacing:0.580154pt;}
.ls61{letter-spacing:0.585381pt;}
.ls49{letter-spacing:0.590607pt;}
.ls4a{letter-spacing:0.595834pt;}
.ls89{letter-spacing:0.601061pt;}
.ls88{letter-spacing:0.611514pt;}
.ls6e{letter-spacing:0.632420pt;}
.ls67{letter-spacing:0.669007pt;}
.ls28{letter-spacing:0.836258pt;}
.ls26{letter-spacing:0.841485pt;}
.ls78{letter-spacing:0.862391pt;}
.ls27{letter-spacing:0.878071pt;}
.ls36{letter-spacing:0.951244pt;}
.ls6c{letter-spacing:0.966923pt;}
.ls6d{letter-spacing:0.972150pt;}
.ls93{letter-spacing:0.993057pt;}
.ls2c{letter-spacing:1.008736pt;}
.ls72{letter-spacing:1.013963pt;}
.ls92{letter-spacing:1.024416pt;}
.ls25{letter-spacing:1.029643pt;}
.ls30{letter-spacing:1.034869pt;}
.ls5d{letter-spacing:1.040096pt;}
.ls76{letter-spacing:1.045323pt;}
.ls0{letter-spacing:1.050677pt;}
.ls47{letter-spacing:1.055776pt;}
.ls5f{letter-spacing:1.061003pt;}
.ls2b{letter-spacing:1.066229pt;}
.ls14{letter-spacing:1.071456pt;}
.ls2a{letter-spacing:1.076682pt;}
.ls24{letter-spacing:1.081909pt;}
.ls21{letter-spacing:1.087136pt;}
.ls17{letter-spacing:1.092362pt;}
.ls15{letter-spacing:1.097589pt;}
.ls13{letter-spacing:1.102815pt;}
.ls23{letter-spacing:1.108042pt;}
.ls18{letter-spacing:1.113269pt;}
.ls22{letter-spacing:1.118495pt;}
.ls4c{letter-spacing:1.123722pt;}
.ls39{letter-spacing:1.128948pt;}
.ls43{letter-spacing:1.134175pt;}
.ls83{letter-spacing:1.139402pt;}
.ls37{letter-spacing:1.144628pt;}
.ls85{letter-spacing:1.149855pt;}
.ls48{letter-spacing:1.155082pt;}
.ls6b{letter-spacing:1.165535pt;}
.ls16{letter-spacing:1.170761pt;}
.ls80{letter-spacing:1.186441pt;}
.ls46{letter-spacing:1.191668pt;}
.ls7f{letter-spacing:1.369373pt;}
.ls7d{letter-spacing:1.385053pt;}
.ls2e{letter-spacing:1.400732pt;}
.ls2f{letter-spacing:1.405959pt;}
.ls19{letter-spacing:1.416412pt;}
.ls7e{letter-spacing:1.421639pt;}
.ls4d{letter-spacing:1.426865pt;}
.ls7c{letter-spacing:1.432092pt;}
.ls12{letter-spacing:1.437319pt;}
.ls4e{letter-spacing:1.500038pt;}
.ls57{letter-spacing:1.735236pt;}
.ls73{letter-spacing:2.372882pt;}
.lsa0{letter-spacing:10.227862pt;}
.ls9d{letter-spacing:10.231863pt;}
.lsa1{letter-spacing:11.680178pt;}
.ls95{letter-spacing:11.771843pt;}
.ls96{letter-spacing:12.003840pt;}
.ls62{letter-spacing:13.259918pt;}
.ls45{letter-spacing:13.866206pt;}
.ls77{letter-spacing:14.770410pt;}
.ls63{letter-spacing:15.073551pt;}
.ls60{letter-spacing:15.679839pt;}
.ls5e{letter-spacing:17.190332pt;}
.ls5c{letter-spacing:17.493476pt;}
.ls75{letter-spacing:17.796617pt;}
.ls65{letter-spacing:18.397677pt;}
.ls8e{letter-spacing:18.685142pt;}
.ls35{letter-spacing:18.805355pt;}
.ls64{letter-spacing:19.003966pt;}
.ls74{letter-spacing:1169.209908pt;}
.ws73{word-spacing:-18.857622pt;}
.ws24e{word-spacing:-18.737408pt;}
.ws2cf{word-spacing:-10.271863pt;}
.ws2f6{word-spacing:-9.340800pt;}
.ws187{word-spacing:-2.425149pt;}
.ws1bb{word-spacing:-0.914657pt;}
.ws42{word-spacing:-0.054933pt;}
.ws96{word-spacing:-0.052266pt;}
.ws18b{word-spacing:-0.042666pt;}
.ws36{word-spacing:-0.039999pt;}
.ws2f5{word-spacing:-0.038934pt;}
.ws1b1{word-spacing:-0.037333pt;}
.ws41{word-spacing:0.000000pt;}
.ws2c7{word-spacing:0.627992pt;}
.ws2d0{word-spacing:0.659991pt;}
.ws2db{word-spacing:0.691991pt;}
.ws208{word-spacing:0.705590pt;}
.ws2f{word-spacing:0.938671pt;}
.ws204{word-spacing:9.027071pt;}
.ws1b0{word-spacing:9.068137pt;}
.ws1b2{word-spacing:9.116669pt;}
.ws203{word-spacing:9.165202pt;}
.ws201{word-spacing:9.172669pt;}
.ws207{word-spacing:9.180135pt;}
.ws205{word-spacing:9.187602pt;}
.ws1b3{word-spacing:9.542264pt;}
.ws2d3{word-spacing:9.551872pt;}
.ws2c4{word-spacing:9.587872pt;}
.ws2c3{word-spacing:9.603872pt;}
.ws2ea{word-spacing:9.603877pt;}
.ws2c1{word-spacing:9.671871pt;}
.ws2d8{word-spacing:9.679871pt;}
.ws202{word-spacing:9.717727pt;}
.ws2cd{word-spacing:9.727870pt;}
.ws2c5{word-spacing:9.739870pt;}
.ws2d1{word-spacing:9.855868pt;}
.ws2ef{word-spacing:9.863869pt;}
.ws2d2{word-spacing:9.867868pt;}
.ws2eb{word-spacing:9.871868pt;}
.ws2ee{word-spacing:9.879825pt;}
.ws2ce{word-spacing:10.027866pt;}
.ws2f0{word-spacing:10.187859pt;}
.ws2c2{word-spacing:10.187864pt;}
.ws2c6{word-spacing:10.191864pt;}
.ws2ec{word-spacing:10.195864pt;}
.ws2d9{word-spacing:10.215863pt;}
.ws2e9{word-spacing:10.227864pt;}
.ws2ed{word-spacing:10.263864pt;}
.ws2d7{word-spacing:10.407862pt;}
.ws2cc{word-spacing:10.507860pt;}
.ws35{word-spacing:10.563860pt;}
.ws206{word-spacing:10.699580pt;}
.ws8b{word-spacing:10.787730pt;}
.ws2de{word-spacing:10.911856pt;}
.ws1e3{word-spacing:11.024375pt;}
.ws2e3{word-spacing:11.035852pt;}
.ws1e2{word-spacing:11.054242pt;}
.ws3b{word-spacing:11.080375pt;}
.ws3d{word-spacing:11.095309pt;}
.ws1e1{word-spacing:11.121441pt;}
.ws1e5{word-spacing:11.155040pt;}
.ws3a{word-spacing:11.173707pt;}
.ws3e{word-spacing:11.196106pt;}
.ws1e6{word-spacing:11.233439pt;}
.ws1df{word-spacing:11.244640pt;}
.ws2e2{word-spacing:11.351848pt;}
.ws1e7{word-spacing:11.352904pt;}
.ws1e0{word-spacing:11.364104pt;}
.ws3c{word-spacing:11.431304pt;}
.ws2c8{word-spacing:11.527847pt;}
.ws1e4{word-spacing:11.535835pt;}
.ws2a5{word-spacing:11.551845pt;}
.ws2f2{word-spacing:11.563298pt;}
.ws2f1{word-spacing:11.582825pt;}
.ws2af{word-spacing:11.611844pt;}
.ws2cb{word-spacing:11.635844pt;}
.ws2e6{word-spacing:11.671844pt;}
.ws2ab{word-spacing:11.691843pt;}
.ws2d4{word-spacing:11.695844pt;}
.ws2b5{word-spacing:11.711843pt;}
.ws2f4{word-spacing:11.715200pt;}
.ws38{word-spacing:11.719844pt;}
.ws2e5{word-spacing:11.727844pt;}
.ws27d{word-spacing:11.731843pt;}
.ws2bd{word-spacing:11.735843pt;}
.ws2b6{word-spacing:11.739843pt;}
.ws2f3{word-spacing:11.742455pt;}
.ws2c0{word-spacing:11.759843pt;}
.ws282{word-spacing:11.763843pt;}
.ws29d{word-spacing:11.771842pt;}
.ws2be{word-spacing:11.779844pt;}
.ws2a2{word-spacing:11.783843pt;}
.ws2bb{word-spacing:11.787843pt;}
.ws2b1{word-spacing:11.799842pt;}
.ws2ca{word-spacing:11.811842pt;}
.ws2b2{word-spacing:11.811844pt;}
.ws2ae{word-spacing:11.823842pt;}
.ws2b8{word-spacing:11.827843pt;}
.ws28d{word-spacing:11.831842pt;}
.ws2a1{word-spacing:11.835842pt;}
.ws2bc{word-spacing:11.839842pt;}
.ws188{word-spacing:11.841600pt;}
.ws289{word-spacing:11.843842pt;}
.ws2dc{word-spacing:11.847830pt;}
.ws2a3{word-spacing:11.847841pt;}
.ws2df{word-spacing:11.851779pt;}
.ws2b9{word-spacing:11.851842pt;}
.ws2b3{word-spacing:11.855835pt;}
.ws297{word-spacing:11.855841pt;}
.ws2b4{word-spacing:11.855846pt;}
.ws37{word-spacing:11.859842pt;}
.ws2a4{word-spacing:11.863842pt;}
.ws2bf{word-spacing:11.871841pt;}
.ws29f{word-spacing:11.871843pt;}
.ws2c9{word-spacing:11.875841pt;}
.ws29e{word-spacing:11.879841pt;}
.ws27f{word-spacing:11.883842pt;}
.ws2a7{word-spacing:11.895841pt;}
.ws295{word-spacing:11.903841pt;}
.ws2b0{word-spacing:11.907841pt;}
.ws2a9{word-spacing:11.919840pt;}
.ws2ad{word-spacing:11.919841pt;}
.ws2da{word-spacing:11.923836pt;}
.ws2a0{word-spacing:11.923843pt;}
.ws39{word-spacing:11.927841pt;}
.ws2e7{word-spacing:11.935828pt;}
.ws280{word-spacing:11.939841pt;}
.ws286{word-spacing:11.943841pt;}
.ws2d6{word-spacing:11.955839pt;}
.ws298{word-spacing:11.959840pt;}
.ws2e1{word-spacing:11.967841pt;}
.ws2d5{word-spacing:11.975845pt;}
.ws284{word-spacing:11.983840pt;}
.ws2aa{word-spacing:11.987840pt;}
.ws2b7{word-spacing:12.003840pt;}
.ws29b{word-spacing:12.007840pt;}
.ws2ac{word-spacing:12.011839pt;}
.ws2dd{word-spacing:12.015830pt;}
.ws28e{word-spacing:12.015839pt;}
.ws27e{word-spacing:12.035839pt;}
.ws28a{word-spacing:12.039839pt;}
.ws28b{word-spacing:12.043839pt;}
.ws29a{word-spacing:12.047840pt;}
.ws299{word-spacing:12.059839pt;}
.ws283{word-spacing:12.067839pt;}
.ws28c{word-spacing:12.071838pt;}
.ws2e8{word-spacing:12.079839pt;}
.ws292{word-spacing:12.083839pt;}
.ws28f{word-spacing:12.111838pt;}
.ws296{word-spacing:12.123838pt;}
.ws29c{word-spacing:12.135838pt;}
.ws2a8{word-spacing:12.147838pt;}
.ws53{word-spacing:12.151876pt;}
.ws2a6{word-spacing:12.163837pt;}
.ws293{word-spacing:12.163838pt;}
.ws2e0{word-spacing:12.163845pt;}
.ws290{word-spacing:12.183838pt;}
.ws285{word-spacing:12.187838pt;}
.ws2ba{word-spacing:12.191837pt;}
.ws19f{word-spacing:12.202514pt;}
.ws281{word-spacing:12.211836pt;}
.ws1a6{word-spacing:12.215313pt;}
.ws1ab{word-spacing:12.236646pt;}
.ws1a7{word-spacing:12.240913pt;}
.ws294{word-spacing:12.243837pt;}
.ws1f5{word-spacing:12.266861pt;}
.ws1a5{word-spacing:12.270780pt;}
.ws291{word-spacing:12.279836pt;}
.ws288{word-spacing:12.291835pt;}
.ws1a0{word-spacing:12.300646pt;}
.ws1a8{word-spacing:12.309179pt;}
.ws1a2{word-spacing:12.313446pt;}
.ws194{word-spacing:12.317713pt;}
.ws1a3{word-spacing:12.326245pt;}
.ws196{word-spacing:12.330512pt;}
.ws1d9{word-spacing:12.339046pt;}
.ws287{word-spacing:12.339835pt;}
.ws1ac{word-spacing:12.343312pt;}
.ws2e4{word-spacing:12.343842pt;}
.ws189{word-spacing:12.373178pt;}
.ws185{word-spacing:12.376621pt;}
.ws200{word-spacing:12.390245pt;}
.ws1af{word-spacing:12.394512pt;}
.ws190{word-spacing:12.398778pt;}
.ws191{word-spacing:12.411578pt;}
.ws1de{word-spacing:12.420111pt;}
.ws1d8{word-spacing:12.449977pt;}
.ws1db{word-spacing:12.471310pt;}
.ws193{word-spacing:12.479844pt;}
.ws18e{word-spacing:12.484111pt;}
.ws1a1{word-spacing:12.492643pt;}
.ws40{word-spacing:12.509711pt;}
.ws19b{word-spacing:12.513976pt;}
.ws192{word-spacing:12.535309pt;}
.ws1a9{word-spacing:12.539576pt;}
.ws1d7{word-spacing:12.543843pt;}
.ws19a{word-spacing:12.548110pt;}
.ws1dc{word-spacing:12.560909pt;}
.ws18c{word-spacing:12.569443pt;}
.ws251{word-spacing:12.590912pt;}
.ws18f{word-spacing:12.595043pt;}
.ws18d{word-spacing:12.599308pt;}
.wsfe{word-spacing:12.601364pt;}
.ws1dd{word-spacing:12.607842pt;}
.ws1da{word-spacing:12.624908pt;}
.ws1ad{word-spacing:12.629175pt;}
.ws70{word-spacing:12.653630pt;}
.wsb3{word-spacing:12.667575pt;}
.ws1aa{word-spacing:12.671841pt;}
.ws18a{word-spacing:12.676108pt;}
.ws1ae{word-spacing:12.705974pt;}
.ws195{word-spacing:12.752907pt;}
.wsf3{word-spacing:12.763390pt;}
.ws265{word-spacing:12.773843pt;}
.ws19e{word-spacing:12.774240pt;}
.ws1d5{word-spacing:12.799975pt;}
.ws19c{word-spacing:12.804107pt;}
.ws27a{word-spacing:12.820883pt;}
.wsfd{word-spacing:12.831336pt;}
.ws24b{word-spacing:12.841789pt;}
.ws80{word-spacing:12.914962pt;}
.ws27b{word-spacing:12.925415pt;}
.ws16a{word-spacing:12.956775pt;}
.ws3f{word-spacing:12.957692pt;}
.wsb2{word-spacing:12.957702pt;}
.ws8a{word-spacing:12.993361pt;}
.ws1cf{word-spacing:13.003814pt;}
.ws164{word-spacing:13.014267pt;}
.ws173{word-spacing:13.040401pt;}
.ws109{word-spacing:13.108346pt;}
.ws1f2{word-spacing:13.113574pt;}
.ws45{word-spacing:13.186746pt;}
.ws277{word-spacing:13.197199pt;}
.ws1f{word-spacing:13.205465pt;}
.ws52{word-spacing:13.207652pt;}
.ws15f{word-spacing:13.249465pt;}
.ws117{word-spacing:13.259918pt;}
.ws234{word-spacing:13.265145pt;}
.wsba{word-spacing:13.296504pt;}
.ws1bc{word-spacing:13.317411pt;}
.ws1fa{word-spacing:13.348770pt;}
.wsae{word-spacing:13.369677pt;}
.ws20d{word-spacing:13.390583pt;}
.ws9a{word-spacing:13.416716pt;}
.wsbb{word-spacing:13.448076pt;}
.ws241{word-spacing:13.463755pt;}
.wsf1{word-spacing:13.463756pt;}
.ws167{word-spacing:13.474209pt;}
.ws5a{word-spacing:13.479436pt;}
.ws87{word-spacing:13.489889pt;}
.wsd8{word-spacing:13.521248pt;}
.ws22c{word-spacing:13.536929pt;}
.ws116{word-spacing:13.552608pt;}
.ws11e{word-spacing:13.557834pt;}
.ws108{word-spacing:13.563062pt;}
.ws1fc{word-spacing:13.620555pt;}
.ws25{word-spacing:13.632136pt;}
.ws160{word-spacing:13.646688pt;}
.ws22{word-spacing:13.648136pt;}
.ws13d{word-spacing:13.651915pt;}
.ws210{word-spacing:13.657141pt;}
.wsa4{word-spacing:13.688500pt;}
.ws12f{word-spacing:13.714633pt;}
.wsb8{word-spacing:13.740767pt;}
.ws224{word-spacing:13.772127pt;}
.ws82{word-spacing:13.777353pt;}
.ws105{word-spacing:13.793032pt;}
.ws49{word-spacing:13.808713pt;}
.ws26{word-spacing:13.818804pt;}
.ws24a{word-spacing:13.860979pt;}
.ws28{word-spacing:13.898812pt;}
.ws24{word-spacing:13.914805pt;}
.ws27{word-spacing:13.925472pt;}
.ws16c{word-spacing:13.944605pt;}
.ws20{word-spacing:13.946806pt;}
.ws237{word-spacing:13.949831pt;}
.ws23{word-spacing:13.952139pt;}
.ws256{word-spacing:13.955058pt;}
.ws21{word-spacing:13.957473pt;}
.ws1d4{word-spacing:13.965511pt;}
.ws44{word-spacing:13.986418pt;}
.ws134{word-spacing:13.996870pt;}
.ws20b{word-spacing:14.007323pt;}
.ws86{word-spacing:14.075269pt;}
.ws222{word-spacing:14.078399pt;}
.wseb{word-spacing:14.111857pt;}
.ws1ce{word-spacing:14.132762pt;}
.ws60{word-spacing:14.137989pt;}
.ws22f{word-spacing:14.153669pt;}
.ws1e9{word-spacing:14.174575pt;}
.ws103{word-spacing:14.179801pt;}
.ws1d6{word-spacing:14.188800pt;}
.ws66{word-spacing:14.200709pt;}
.ws14a{word-spacing:14.252975pt;}
.ws254{word-spacing:14.258201pt;}
.ws15e{word-spacing:14.300014pt;}
.ws252{word-spacing:14.305240pt;}
.wsed{word-spacing:14.326147pt;}
.ws69{word-spacing:14.336600pt;}
.ws257{word-spacing:14.373187pt;}
.wsca{word-spacing:14.383640pt;}
.wsa5{word-spacing:14.394093pt;}
.ws13c{word-spacing:14.399320pt;}
.ws7d{word-spacing:14.409774pt;}
.ws132{word-spacing:14.425453pt;}
.ws1f8{word-spacing:14.446359pt;}
.ws218{word-spacing:14.467266pt;}
.ws231{word-spacing:14.529985pt;}
.wsf2{word-spacing:14.568051pt;}
.wsff{word-spacing:14.592585pt;}
.ws23f{word-spacing:14.613611pt;}
.ws79{word-spacing:14.634518pt;}
.wsa2{word-spacing:14.639744pt;}
.ws211{word-spacing:14.644970pt;}
.ws137{word-spacing:14.681557pt;}
.wsaf{word-spacing:14.685812pt;}
.ws262{word-spacing:14.707690pt;}
.ws22a{word-spacing:14.718143pt;}
.ws21d{word-spacing:14.733822pt;}
.wsc8{word-spacing:14.749503pt;}
.ws5d{word-spacing:14.749504pt;}
.ws25e{word-spacing:14.759956pt;}
.wsd1{word-spacing:14.765182pt;}
.ws16b{word-spacing:14.780862pt;}
.ws275{word-spacing:14.796543pt;}
.ws10b{word-spacing:14.812222pt;}
.wsf0{word-spacing:14.827903pt;}
.ws68{word-spacing:14.838356pt;}
.ws81{word-spacing:14.891895pt;}
.ws17e{word-spacing:14.895848pt;}
.ws24f{word-spacing:14.901075pt;}
.ws155{word-spacing:14.911529pt;}
.ws124{word-spacing:14.916755pt;}
.ws1cd{word-spacing:14.921981pt;}
.ws133{word-spacing:14.927207pt;}
.ws16f{word-spacing:14.937660pt;}
.ws16e{word-spacing:14.963793pt;}
.ws5f{word-spacing:14.969020pt;}
.ws233{word-spacing:14.974247pt;}
.ws214{word-spacing:14.979474pt;}
.ws51{word-spacing:14.984701pt;}
.ws17d{word-spacing:14.989928pt;}
.ws176{word-spacing:15.000381pt;}
.ws65{word-spacing:15.010834pt;}
.ws5e{word-spacing:15.031739pt;}
.wsd0{word-spacing:15.042193pt;}
.ws2b{word-spacing:15.045484pt;}
.ws7e{word-spacing:15.052646pt;}
.ws16d{word-spacing:15.110140pt;}
.ws31{word-spacing:15.114818pt;}
.ws177{word-spacing:15.157179pt;}
.ws48{word-spacing:15.172858pt;}
.ws83{word-spacing:15.172859pt;}
.ws4c{word-spacing:15.178086pt;}
.wsaa{word-spacing:15.188539pt;}
.ws15c{word-spacing:15.204218pt;}
.ws32{word-spacing:15.216147pt;}
.ws4a{word-spacing:15.219898pt;}
.ws123{word-spacing:15.225125pt;}
.ws15a{word-spacing:15.272164pt;}
.ws2e{word-spacing:15.285486pt;}
.ws4d{word-spacing:15.287844pt;}
.ws72{word-spacing:15.298297pt;}
.wsda{word-spacing:15.303523pt;}
.ws6b{word-spacing:15.308750pt;}
.ws179{word-spacing:15.324430pt;}
.ws6a{word-spacing:15.340110pt;}
.ws33{word-spacing:15.354843pt;}
.ws2d{word-spacing:15.360137pt;}
.ws2a{word-spacing:15.370820pt;}
.ws30{word-spacing:15.376154pt;}
.wsf5{word-spacing:15.376696pt;}
.ws2c{word-spacing:15.392154pt;}
.ws1ff{word-spacing:15.392376pt;}
.ws29{word-spacing:15.397487pt;}
.wsf4{word-spacing:15.397604pt;}
.wsbc{word-spacing:15.402830pt;}
.ws15b{word-spacing:15.408056pt;}
.ws161{word-spacing:15.423736pt;}
.ws261{word-spacing:15.444642pt;}
.ws20e{word-spacing:15.465549pt;}
.wsfa{word-spacing:15.470776pt;}
.wsa3{word-spacing:15.481229pt;}
.ws34{word-spacing:15.493488pt;}
.ws163{word-spacing:15.507362pt;}
.ws122{word-spacing:15.533495pt;}
.ws55{word-spacing:15.570081pt;}
.wsee{word-spacing:15.580535pt;}
.ws243{word-spacing:15.590987pt;}
.ws112{word-spacing:15.590988pt;}
.wsd7{word-spacing:15.606668pt;}
.ws1be{word-spacing:15.611894pt;}
.ws272{word-spacing:15.617121pt;}
.ws175{word-spacing:15.638027pt;}
.wsb4{word-spacing:15.700746pt;}
.ws1b6{word-spacing:15.726883pt;}
.ws13b{word-spacing:15.737333pt;}
.ws6f{word-spacing:15.747786pt;}
.ws13a{word-spacing:15.763466pt;}
.ws209{word-spacing:15.805278pt;}
.ws18{word-spacing:15.813491pt;}
.ws19{word-spacing:15.818825pt;}
.ws11{word-spacing:15.840158pt;}
.ws13e{word-spacing:15.852318pt;}
.ws263{word-spacing:15.873225pt;}
.ws75{word-spacing:15.878451pt;}
.wsc3{word-spacing:15.883678pt;}
.ws1a{word-spacing:15.893492pt;}
.ws236{word-spacing:15.915037pt;}
.ws267{word-spacing:15.935944pt;}
.ws126{word-spacing:15.956850pt;}
.ws12{word-spacing:15.962826pt;}
.ws16{word-spacing:15.978827pt;}
.ws1b{word-spacing:15.984160pt;}
.wsfb{word-spacing:15.988210pt;}
.ws1d{word-spacing:15.994826pt;}
.ws1fe{word-spacing:16.003891pt;}
.ws1ec{word-spacing:16.014343pt;}
.ws17{word-spacing:16.016160pt;}
.ws186{word-spacing:16.040476pt;}
.ws1bd{word-spacing:16.050930pt;}
.ws1c1{word-spacing:16.103196pt;}
.ws14{word-spacing:16.144162pt;}
.ws220{word-spacing:16.150235pt;}
.ws15{word-spacing:16.160151pt;}
.ws25d{word-spacing:16.186821pt;}
.ws1eb{word-spacing:16.192048pt;}
.ws17a{word-spacing:16.207728pt;}
.ws239{word-spacing:16.212955pt;}
.ws6d{word-spacing:16.233851pt;}
.wsb9{word-spacing:16.239088pt;}
.ws6e{word-spacing:16.249541pt;}
.ws1bf{word-spacing:16.280900pt;}
.ws76{word-spacing:16.280901pt;}
.ws1e{word-spacing:16.282833pt;}
.ws13{word-spacing:16.293496pt;}
.ws101{word-spacing:16.317487pt;}
.ws1b7{word-spacing:16.333167pt;}
.ws20f{word-spacing:16.338394pt;}
.ws26d{word-spacing:16.343620pt;}
.ws1ea{word-spacing:16.354074pt;}
.ws10c{word-spacing:16.359299pt;}
.ws14d{word-spacing:16.385433pt;}
.ws1c{word-spacing:16.389497pt;}
.ws1f4{word-spacing:16.427246pt;}
.wsec{word-spacing:16.437698pt;}
.ws27c{word-spacing:16.441546pt;}
.ws136{word-spacing:16.448152pt;}
.wsa1{word-spacing:16.458605pt;}
.ws245{word-spacing:16.484738pt;}
.ws22b{word-spacing:16.484739pt;}
.ws238{word-spacing:16.495192pt;}
.ws4f{word-spacing:16.505644pt;}
.wsc5{word-spacing:16.531778pt;}
.ws10{word-spacing:16.533529pt;}
.ws23b{word-spacing:16.552685pt;}
.wsbf{word-spacing:16.563137pt;}
.ws219{word-spacing:16.589271pt;}
.ws1cb{word-spacing:16.615405pt;}
.ws67{word-spacing:16.631084pt;}
.ws21b{word-spacing:16.646764pt;}
.ws24c{word-spacing:16.672897pt;}
.ws278{word-spacing:16.678124pt;}
.ws182{word-spacing:16.699019pt;}
.ws74{word-spacing:16.699029pt;}
.ws1c2{word-spacing:16.719936pt;}
.ws216{word-spacing:16.740843pt;}
.ws1c0{word-spacing:16.751295pt;}
.ws165{word-spacing:16.787883pt;}
.wsdb{word-spacing:16.798335pt;}
.ws59{word-spacing:16.814016pt;}
.ws6c{word-spacing:16.819241pt;}
.ws1ba{word-spacing:16.824468pt;}
.ws20c{word-spacing:16.834922pt;}
.wsab{word-spacing:16.892414pt;}
.ws12a{word-spacing:16.939454pt;}
.ws114{word-spacing:16.970813pt;}
.ws26c{word-spacing:16.981267pt;}
.ws1f6{word-spacing:17.007400pt;}
.ws1b8{word-spacing:17.017853pt;}
.ws47{word-spacing:17.023080pt;}
.ws5b{word-spacing:17.033533pt;}
.ws62{word-spacing:17.043986pt;}
.ws250{word-spacing:17.049213pt;}
.ws61{word-spacing:17.054439pt;}
.ws244{word-spacing:17.080573pt;}
.wsdc{word-spacing:17.085798pt;}
.ws7c{word-spacing:17.101480pt;}
.ws235{word-spacing:17.138065pt;}
.ws213{word-spacing:17.138066pt;}
.ws4b{word-spacing:17.148518pt;}
.ws145{word-spacing:17.169425pt;}
.wsc9{word-spacing:17.190332pt;}
.ws131{word-spacing:17.200785pt;}
.ws85{word-spacing:17.232144pt;}
.ws21e{word-spacing:17.237370pt;}
.ws14b{word-spacing:17.247824pt;}
.ws17c{word-spacing:17.253051pt;}
.ws5{word-spacing:17.300957pt;}
.ws157{word-spacing:17.315769pt;}
.ws227{word-spacing:17.394169pt;}
.wse{word-spacing:17.394825pt;}
.ws54{word-spacing:17.404622pt;}
.ws158{word-spacing:17.425529pt;}
.wse2{word-spacing:17.446436pt;}
.ws8{word-spacing:17.453492pt;}
.ws6{word-spacing:17.459359pt;}
.wsb{word-spacing:17.471092pt;}
.wsd{word-spacing:17.488693pt;}
.ws129{word-spacing:17.498701pt;}
.ws106{word-spacing:17.503928pt;}
.ws84{word-spacing:17.509154pt;}
.wsf{word-spacing:17.512159pt;}
.ws279{word-spacing:17.514382pt;}
.ws1b9{word-spacing:17.550967pt;}
.ws4{word-spacing:17.576694pt;}
.ws5c{word-spacing:17.587554pt;}
.ws1c4{word-spacing:17.598007pt;}
.ws215{word-spacing:17.608461pt;}
.ws9{word-spacing:17.611894pt;}
.wsa{word-spacing:17.617760pt;}
.ws58{word-spacing:17.645047pt;}
.ws10d{word-spacing:17.660726pt;}
.wsc{word-spacing:17.699895pt;}
.ws22e{word-spacing:17.707765pt;}
.wsdd{word-spacing:17.723446pt;}
.ws104{word-spacing:17.728673pt;}
.ws1c5{word-spacing:17.739126pt;}
.ws3{word-spacing:17.758562pt;}
.wsd4{word-spacing:17.765259pt;}
.ws7{word-spacing:17.770294pt;}
.wsc2{word-spacing:17.775712pt;}
.wse8{word-spacing:17.780939pt;}
.ws171{word-spacing:17.796618pt;}
.ws110{word-spacing:17.817526pt;}
.ws1d0{word-spacing:17.822752pt;}
.ws1e8{word-spacing:17.833205pt;}
.ws170{word-spacing:17.864565pt;}
.ws4e{word-spacing:17.880245pt;}
.ws57{word-spacing:17.937737pt;}
.ws153{word-spacing:17.948191pt;}
.wsef{word-spacing:17.979550pt;}
.wsb1{word-spacing:18.005683pt;}
.ws172{word-spacing:18.073628pt;}
.wsb7{word-spacing:18.099762pt;}
.ws248{word-spacing:18.104989pt;}
.ws12d{word-spacing:18.110216pt;}
.ws246{word-spacing:18.125894pt;}
.ws249{word-spacing:18.136348pt;}
.ws225{word-spacing:18.152028pt;}
.ws1ee{word-spacing:18.157254pt;}
.ws258{word-spacing:18.172935pt;}
.ws14c{word-spacing:18.183388pt;}
.ws1b4{word-spacing:18.303599pt;}
.ws1cc{word-spacing:18.308826pt;}
.ws217{word-spacing:18.334959pt;}
.ws102{word-spacing:18.334960pt;}
.ws166{word-spacing:18.366319pt;}
.ws23e{word-spacing:18.376773pt;}
.ws8d{word-spacing:18.381996pt;}
.ws118{word-spacing:18.397680pt;}
.ws223{word-spacing:18.418585pt;}
.ws119{word-spacing:18.449945pt;}
.ws1b5{word-spacing:18.470851pt;}
.ws64{word-spacing:18.486532pt;}
.ws144{word-spacing:18.512664pt;}
.wse3{word-spacing:18.523118pt;}
.ws259{word-spacing:18.549250pt;}
.ws1fb{word-spacing:18.627650pt;}
.wsb5{word-spacing:18.638103pt;}
.ws77{word-spacing:18.664236pt;}
.ws8e{word-spacing:18.700822pt;}
.ws1d2{word-spacing:18.716502pt;}
.ws150{word-spacing:18.737409pt;}
.ws9f{word-spacing:18.747862pt;}
.wse5{word-spacing:18.794918pt;}
.ws154{word-spacing:18.826262pt;}
.ws23c{word-spacing:18.831487pt;}
.wsf7{word-spacing:18.836715pt;}
.wsac{word-spacing:18.841941pt;}
.ws21a{word-spacing:18.888980pt;}
.ws78{word-spacing:18.904660pt;}
.wsd9{word-spacing:18.915113pt;}
.wsb6{word-spacing:18.962153pt;}
.ws17f{word-spacing:18.983060pt;}
.ws174{word-spacing:18.988286pt;}
.ws89{word-spacing:19.040552pt;}
.ws240{word-spacing:19.045779pt;}
.ws266{word-spacing:19.134632pt;}
.wse6{word-spacing:19.139859pt;}
.ws25b{word-spacing:19.150312pt;}
.ws120{word-spacing:19.192125pt;}
.ws1c3{word-spacing:19.202578pt;}
.wsa6{word-spacing:19.218258pt;}
.ws25c{word-spacing:19.223485pt;}
.ws138{word-spacing:19.244391pt;}
.wsf6{word-spacing:19.249617pt;}
.wsc7{word-spacing:19.254844pt;}
.wsfc{word-spacing:19.270524pt;}
.ws56{word-spacing:19.296657pt;}
.wscf{word-spacing:19.422096pt;}
.ws50{word-spacing:19.432548pt;}
.wsbd{word-spacing:19.510948pt;}
.ws1c8{word-spacing:19.521401pt;}
.ws212{word-spacing:19.620707pt;}
.ws1f1{word-spacing:19.699105pt;}
.ws63{word-spacing:19.704332pt;}
.ws121{word-spacing:19.735693pt;}
.ws17b{word-spacing:19.767051pt;}
.ws264{word-spacing:19.772279pt;}
.ws142{word-spacing:19.793185pt;}
.ws139{word-spacing:19.840225pt;}
.ws9e{word-spacing:19.845451pt;}
.wsf9{word-spacing:19.876810pt;}
.ws13f{word-spacing:19.887264pt;}
.wsa9{word-spacing:19.923850pt;}
.wscc{word-spacing:19.986570pt;}
.ws1d3{word-spacing:20.054516pt;}
.ws140{word-spacing:20.096328pt;}
.ws125{word-spacing:20.112008pt;}
.wse4{word-spacing:20.169501pt;}
.ws7b{word-spacing:20.179955pt;}
.wsbe{word-spacing:20.221766pt;}
.ws25f{word-spacing:20.232221pt;}
.wse9{word-spacing:20.274034pt;}
.wscb{word-spacing:20.284487pt;}
.ws268{word-spacing:20.326299pt;}
.ws184{word-spacing:20.336753pt;}
.ws71{word-spacing:20.373338pt;}
.wsde{word-spacing:20.425604pt;}
.wsea{word-spacing:20.451739pt;}
.wsd6{word-spacing:20.456965pt;}
.ws260{word-spacing:20.493552pt;}
.ws26b{word-spacing:20.504004pt;}
.ws12e{word-spacing:20.519683pt;}
.ws180{word-spacing:20.524910pt;}
.wsdf{word-spacing:20.551044pt;}
.ws7f{word-spacing:20.592857pt;}
.ws183{word-spacing:20.639900pt;}
.ws88{word-spacing:20.660803pt;}
.ws100{word-spacing:20.671255pt;}
.ws230{word-spacing:20.671256pt;}
.ws1c9{word-spacing:20.676483pt;}
.ws11a{word-spacing:20.775788pt;}
.ws11f{word-spacing:20.786242pt;}
.ws26e{word-spacing:20.801921pt;}
.ws151{word-spacing:20.833280pt;}
.ws24d{word-spacing:20.984853pt;}
.ws0{word-spacing:21.021867pt;}
.ws130{word-spacing:21.099839pt;}
.ws149{word-spacing:21.120744pt;}
.wsd3{word-spacing:21.125971pt;}
.wsc6{word-spacing:21.141651pt;}
.wsa7{word-spacing:21.152104pt;}
.ws8f{word-spacing:21.173010pt;}
.ws148{word-spacing:21.204370pt;}
.wsce{word-spacing:21.267090pt;}
.ws99{word-spacing:21.287996pt;}
.ws276{word-spacing:21.350716pt;}
.ws26a{word-spacing:21.371623pt;}
.ws23d{word-spacing:21.591139pt;}
.ws14f{word-spacing:21.638179pt;}
.ws228{word-spacing:21.669539pt;}
.ws91{word-spacing:21.674765pt;}
.ws127{word-spacing:21.784524pt;}
.ws107{word-spacing:21.805430pt;}
.ws1f7{word-spacing:21.815884pt;}
.ws26f{word-spacing:21.915189pt;}
.ws9c{word-spacing:21.920417pt;}
.wse7{word-spacing:21.925643pt;}
.ws181{word-spacing:22.004042pt;}
.ws143{word-spacing:22.035401pt;}
.ws1c6{word-spacing:22.077215pt;}
.ws12c{word-spacing:22.207880pt;}
.ws1f9{word-spacing:22.213107pt;}
.ws232{word-spacing:22.312412pt;}
.wsd5{word-spacing:22.328092pt;}
.ws10f{word-spacing:22.369905pt;}
.ws271{word-spacing:22.401265pt;}
.wsb0{word-spacing:22.463985pt;}
.ws1ef{word-spacing:22.526704pt;}
.wsc1{word-spacing:22.558064pt;}
.ws270{word-spacing:22.589423pt;}
.ws226{word-spacing:22.610330pt;}
.ws169{word-spacing:22.631235pt;}
.ws95{word-spacing:22.641689pt;}
.ws98{word-spacing:22.683503pt;}
.ws229{word-spacing:22.761901pt;}
.ws14e{word-spacing:22.845527pt;}
.ws97{word-spacing:22.887341pt;}
.ws10e{word-spacing:22.908246pt;}
.ws1d1{word-spacing:22.965739pt;}
.ws7a{word-spacing:22.976192pt;}
.ws113{word-spacing:23.023232pt;}
.ws25a{word-spacing:23.044138pt;}
.ws247{word-spacing:23.143444pt;}
.ws1fd{word-spacing:23.159124pt;}
.ws255{word-spacing:23.185257pt;}
.ws15d{word-spacing:23.227069pt;}
.ws115{word-spacing:23.242750pt;}
.ws1f3{word-spacing:23.268883pt;}
.wse0{word-spacing:23.357720pt;}
.ws46{word-spacing:23.425682pt;}
.ws152{word-spacing:23.514533pt;}
.wse1{word-spacing:23.530214pt;}
.ws221{word-spacing:23.629519pt;}
.ws242{word-spacing:23.655651pt;}
.wsf8{word-spacing:23.687012pt;}
.ws1f0{word-spacing:23.723598pt;}
.wsa8{word-spacing:23.739278pt;}
.wsc0{word-spacing:23.927435pt;}
.ws1ca{word-spacing:23.932662pt;}
.ws274{word-spacing:24.084234pt;}
.ws21c{word-spacing:24.235806pt;}
.wsc4{word-spacing:24.392605pt;}
.wsa0{word-spacing:24.403058pt;}
.ws141{word-spacing:24.408285pt;}
.ws135{word-spacing:24.423964pt;}
.wsd2{word-spacing:24.444871pt;}
.ws90{word-spacing:24.455325pt;}
.ws92{word-spacing:24.580763pt;}
.ws159{word-spacing:24.633028pt;}
.ws22d{word-spacing:24.753240pt;}
.ws146{word-spacing:24.915267pt;}
.ws43{word-spacing:25.113877pt;}
.ws128{word-spacing:25.202730pt;}
.ws20a{word-spacing:25.213183pt;}
.ws162{word-spacing:25.234089pt;}
.ws269{word-spacing:25.281129pt;}
.wscd{word-spacing:25.490193pt;}
.ws9b{word-spacing:25.688804pt;}
.ws11c{word-spacing:25.699237pt;}
.ws111{word-spacing:25.819470pt;}
.ws168{word-spacing:25.845603pt;}
.ws12b{word-spacing:25.991948pt;}
.ws11d{word-spacing:26.080802pt;}
.ws273{word-spacing:26.305544pt;}
.ws23a{word-spacing:26.828206pt;}
.ws147{word-spacing:27.167936pt;}
.wsad{word-spacing:27.209750pt;}
.ws156{word-spacing:27.225430pt;}
.ws1c7{word-spacing:28.349152pt;}
.ws1ed{word-spacing:28.641841pt;}
.ws178{word-spacing:29.143595pt;}
.ws10a{word-spacing:29.718524pt;}
.ws94{word-spacing:30.157558pt;}
.ws11b{word-spacing:30.272545pt;}
.ws253{word-spacing:30.580913pt;}
.ws21f{word-spacing:31.532160pt;}
.ws93{word-spacing:31.976421pt;}
.ws8c{word-spacing:33.298754pt;}
.ws9d{word-spacing:33.899814pt;}
.ws1{word-spacing:38.182558pt;}
.ws2{word-spacing:38.489762pt;}
.ws19d{word-spacing:987.315615pt;}
.ws198{word-spacing:1208.373114pt;}
.ws199{word-spacing:1214.030643pt;}
.ws1a4{word-spacing:1222.521204pt;}
.ws197{word-spacing:1238.904999pt;}
._14{margin-left:-18.063176pt;}
._15{margin-left:-17.169422pt;}
._7f{margin-left:-11.423848pt;}
._7e{margin-left:-9.384163pt;}
._17{margin-left:-4.777124pt;}
._11{margin-left:-3.573828pt;}
._9{margin-left:-1.914686pt;}
._8{margin-left:-0.954676pt;}
._5{width:1.008011pt;}
._12{width:1.899865pt;}
._0{width:7.959467pt;}
._7d{width:9.314811pt;}
._d{width:10.539046pt;}
._c{width:12.166739pt;}
._a{width:13.066798pt;}
._e{width:14.007323pt;}
._7{width:15.424155pt;}
._6{width:16.949502pt;}
._4{width:18.268968pt;}
._f{width:19.223485pt;}
._10{width:20.413436pt;}
._13{width:21.491835pt;}
._16{width:22.722560pt;}
._1d{width:23.964749pt;}
._18{width:24.994392pt;}
._19{width:25.955380pt;}
._1b{width:27.769024pt;}
._1{width:29.223999pt;}
._1a{width:30.262095pt;}
._7b{width:31.799297pt;}
._3{width:39.718571pt;}
._7c{width:58.543217pt;}
._b{width:93.854659pt;}
._5d{width:99.181687pt;}
._1f{width:113.001253pt;}
._2c{width:113.897246pt;}
._2d{width:119.763830pt;}
._6e{width:121.205945pt;}
._3c{width:147.283486pt;}
._4d{width:149.979981pt;}
._23{width:156.268981pt;}
._2a{width:160.953716pt;}
._4b{width:167.699238pt;}
._5e{width:169.373394pt;}
._64{width:170.536525pt;}
._45{width:174.807404pt;}
._75{width:175.767413pt;}
._4e{width:178.037231pt;}
._3f{width:181.075071pt;}
._43{width:181.996666pt;}
._27{width:183.485714pt;}
._24{width:184.394494pt;}
._65{width:185.845148pt;}
._66{width:195.291416pt;}
._79{width:197.501537pt;}
._3a{width:201.512148pt;}
._32{width:203.479053pt;}
._50{width:205.403306pt;}
._57{width:214.508244pt;}
._70{width:222.333219pt;}
._5f{width:223.284667pt;}
._6c{width:225.921432pt;}
._6f{width:229.349176pt;}
._4f{width:232.009887pt;}
._21{width:236.421578pt;}
._51{width:240.329783pt;}
._76{width:245.761194pt;}
._60{width:250.757405pt;}
._67{width:252.907768pt;}
._71{width:257.746103pt;}
._58{width:260.724207pt;}
._74{width:265.967880pt;}
._55{width:269.125173pt;}
._56{width:275.333090pt;}
._5a{width:277.679722pt;}
._61{width:286.144685pt;}
._7a{width:291.409669pt;}
._54{width:294.494440pt;}
._68{width:306.120960pt;}
._72{width:311.565159pt;}
._52{width:314.590204pt;}
._5b{width:319.995994pt;}
._6a{width:323.033821pt;}
._78{width:336.925907pt;}
._63{width:339.848539pt;}
._59{width:359.602957pt;}
._6b{width:365.350093pt;}
._77{width:376.537162pt;}
._69{width:404.957056pt;}
._36{width:526.557392pt;}
._6d{width:597.897565pt;}
._62{width:598.806355pt;}
._73{width:604.980177pt;}
._35{width:609.118784pt;}
._48{width:624.713258pt;}
._5c{width:636.770695pt;}
._39{width:642.338634pt;}
._53{width:657.463770pt;}
._34{width:764.625876pt;}
._47{width:771.870587pt;}
._30{width:841.003868pt;}
._33{width:851.238125pt;}
._3b{width:881.676145pt;}
._38{width:914.006666pt;}
._3e{width:918.351951pt;}
._37{width:922.100430pt;}
._31{width:959.858935pt;}
._40{width:962.535161pt;}
._29{width:1028.454335pt;}
._3d{width:1037.953655pt;}
._26{width:1076.048405pt;}
._44{width:1085.144825pt;}
._28{width:1097.808133pt;}
._41{width:1150.317343pt;}
._2b{width:1174.551706pt;}
._22{width:1189.966979pt;}
._4c{width:1192.343483pt;}
._49{width:1201.111373pt;}
._46{width:1203.833472pt;}
._42{width:1204.742262pt;}
._4a{width:1215.626392pt;}
._1e{width:1238.913575pt;}
._20{width:1257.917062pt;}
._2{width:1424.224479pt;}
._80{width:1733.785203pt;}
._1c{width:1755.557718pt;}
._25{width:1964.830844pt;}
._2f{width:2001.630383pt;}
._2e{width:2032.106802pt;}
.fs12{font-size:24.885867pt;}
.fs7{font-size:26.662400pt;}
.fs11{font-size:28.440000pt;}
.fsa{font-size:32.160000pt;}
.fs18{font-size:33.600000pt;}
.fsf{font-size:34.839467pt;}
.fs17{font-size:36.266667pt;}
.fs8{font-size:37.332800pt;}
.fs13{font-size:38.399999pt;}
.fs19{font-size:38.933333pt;}
.fs15{font-size:38.933867pt;}
.fs3{font-size:39.107733pt;}
.fs6{font-size:39.999467pt;}
.fs14{font-size:40.000000pt;}
.fs9{font-size:42.666133pt;}
.fsb{font-size:42.666667pt;}
.fs16{font-size:47.421333pt;}
.fs10{font-size:48.000000pt;}
.fse{font-size:49.067200pt;}
.fsd{font-size:52.266134pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fsc{font-size:54.933334pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:60.017950pt;}
.y37{bottom:70.676457pt;}
.y30b{bottom:74.815040pt;}
.y295{bottom:81.259959pt;}
.ya8{bottom:81.260863pt;}
.y1dd{bottom:81.262259pt;}
.y23b{bottom:81.262517pt;}
.y114{bottom:81.263644pt;}
.y2da{bottom:81.263768pt;}
.y1fc{bottom:81.266314pt;}
.y1a2{bottom:81.266705pt;}
.y1ed{bottom:81.268794pt;}
.y12d{bottom:81.270502pt;}
.y20b{bottom:81.271549pt;}
.y1b2{bottom:81.273241pt;}
.y72{bottom:81.283765pt;}
.ye0{bottom:81.284299pt;}
.y163{bottom:81.291410pt;}
.y36{bottom:81.334977pt;}
.y30a{bottom:84.148280pt;}
.y35{bottom:91.993483pt;}
.y294{bottom:93.278798pt;}
.y2d9{bottom:93.282607pt;}
.ya7{bottom:97.285659pt;}
.y1dc{bottom:97.287055pt;}
.y23a{bottom:97.287314pt;}
.y113{bottom:97.288441pt;}
.y1fb{bottom:97.291111pt;}
.y1a1{bottom:97.291501pt;}
.y1ec{bottom:97.293591pt;}
.y12c{bottom:97.295299pt;}
.y20a{bottom:97.296346pt;}
.y1b1{bottom:97.298037pt;}
.y71{bottom:97.308562pt;}
.ydf{bottom:97.309095pt;}
.y162{bottom:97.316206pt;}
.y293{bottom:97.738668pt;}
.y3a{bottom:102.306670pt;}
.y34{bottom:102.652003pt;}
.y292{bottom:105.297729pt;}
.y2d8{bottom:105.301447pt;}
.y291{bottom:109.681864pt;}
.y309{bottom:113.066813pt;}
.ya6{bottom:113.234670pt;}
.y1db{bottom:113.236066pt;}
.y239{bottom:113.236324pt;}
.y112{bottom:113.237452pt;}
.y12b{bottom:113.244309pt;}
.y1fa{bottom:113.315908pt;}
.y1a0{bottom:113.316298pt;}
.y1eb{bottom:113.318388pt;}
.y209{bottom:113.321143pt;}
.y1b0{bottom:113.322834pt;}
.y70{bottom:113.333359pt;}
.yde{bottom:113.333892pt;}
.y161{bottom:113.341003pt;}
.y290{bottom:117.240936pt;}
.y2d7{bottom:117.244288pt;}
.y28f{bottom:121.700795pt;}
.y33{bottom:125.253547pt;}
.y192{bottom:127.444994pt;}
.y28e{bottom:129.259827pt;}
.ya5{bottom:129.259867pt;}
.y1da{bottom:129.260863pt;}
.y238{bottom:129.261121pt;}
.y111{bottom:129.262248pt;}
.y2d6{bottom:129.263127pt;}
.y1f9{bottom:129.264918pt;}
.y19f{bottom:129.265309pt;}
.y1ea{bottom:129.267399pt;}
.y12a{bottom:129.269106pt;}
.y208{bottom:129.270153pt;}
.y1af{bottom:129.271845pt;}
.y6f{bottom:129.282369pt;}
.ydd{bottom:129.282903pt;}
.y160{bottom:129.290014pt;}
.y308{bottom:129.613347pt;}
.y32{bottom:137.272387pt;}
.y191{bottom:138.783898pt;}
.y28b{bottom:141.278257pt;}
.y28d{bottom:141.278666pt;}
.y2d5{bottom:141.281967pt;}
.y31{bottom:141.732253pt;}
.y1d9{bottom:145.285659pt;}
.y237{bottom:145.285918pt;}
.y110{bottom:145.287045pt;}
.y1f8{bottom:145.289715pt;}
.y19e{bottom:145.290105pt;}
.y1e9{bottom:145.292195pt;}
.y129{bottom:145.293903pt;}
.y207{bottom:145.294950pt;}
.y1ae{bottom:145.296641pt;}
.y6e{bottom:145.307166pt;}
.ydc{bottom:145.307699pt;}
.y15f{bottom:145.314811pt;}
.y28c{bottom:145.738536pt;}
.y307{bottom:146.159613pt;}
.y30{bottom:149.291907pt;}
.y190{bottom:150.122803pt;}
.y28a{bottom:153.297096pt;}
.y2d4{bottom:153.300806pt;}
.y1d8{bottom:161.234670pt;}
.y236{bottom:161.234928pt;}
.y10f{bottom:161.236056pt;}
.y128{bottom:161.242913pt;}
.ya4{bottom:161.244700pt;}
.y2f{bottom:161.310747pt;}
.y1f7{bottom:161.314512pt;}
.y19d{bottom:161.314902pt;}
.y1e8{bottom:161.316992pt;}
.y206{bottom:161.319747pt;}
.y1ad{bottom:161.321438pt;}
.y6d{bottom:161.331963pt;}
.ydb{bottom:161.332496pt;}
.y15e{bottom:161.339607pt;}
.y306{bottom:162.706147pt;}
.y287{bottom:165.240885pt;}
.y289{bottom:165.240936pt;}
.y2d3{bottom:165.244646pt;}
.y18f{bottom:167.665334pt;}
.y288{bottom:169.700795pt;}
.y2e{bottom:173.253587pt;}
.y1d7{bottom:177.259725pt;}
.y285{bottom:177.259928pt;}
.y10e{bottom:177.260852pt;}
.y2d2{bottom:177.263486pt;}
.y1f6{bottom:177.263522pt;}
.y19c{bottom:177.263913pt;}
.y1e7{bottom:177.266003pt;}
.y127{bottom:177.267710pt;}
.y205{bottom:177.268757pt;}
.ya3{bottom:177.269497pt;}
.y1ac{bottom:177.270449pt;}
.y6c{bottom:177.280973pt;}
.yda{bottom:177.281507pt;}
.y15d{bottom:177.288618pt;}
.y2d{bottom:177.713320pt;}
.y305{bottom:179.252680pt;}
.y286{bottom:181.719604pt;}
.y2c{bottom:185.272387pt;}
.y18e{bottom:186.336033pt;}
.y284{bottom:189.278768pt;}
.y2d1{bottom:189.282325pt;}
.y235{bottom:193.285075pt;}
.y10d{bottom:193.285649pt;}
.y1f5{bottom:193.288319pt;}
.y19b{bottom:193.288709pt;}
.y1e6{bottom:193.290799pt;}
.y126{bottom:193.292507pt;}
.y204{bottom:193.293554pt;}
.ya2{bottom:193.294293pt;}
.y1ab{bottom:193.295245pt;}
.y6b{bottom:193.305770pt;}
.yd9{bottom:193.306304pt;}
.y15c{bottom:193.313415pt;}
.y304{bottom:195.799347pt;}
.y283{bottom:201.297607pt;}
.y281{bottom:201.298085pt;}
.y2d0{bottom:201.301165pt;}
.y18d{bottom:205.006732pt;}
.y282{bottom:205.681864pt;}
.y10c{bottom:209.234660pt;}
.y125{bottom:209.241517pt;}
.ya1{bottom:209.243304pt;}
.y10a{bottom:209.246527pt;}
.y1f4{bottom:209.313116pt;}
.y19a{bottom:209.313506pt;}
.y1e5{bottom:209.315596pt;}
.y203{bottom:209.318351pt;}
.y1aa{bottom:209.320042pt;}
.y6a{bottom:209.330567pt;}
.yd8{bottom:209.331100pt;}
.y15b{bottom:209.338211pt;}
.y27e{bottom:213.240885pt;}
.y280{bottom:213.240926pt;}
.y2cf{bottom:213.244006pt;}
.y10b{bottom:215.055074pt;}
.y27f{bottom:217.700663pt;}
.y18c{bottom:223.677431pt;}
.y303{bottom:223.701200pt;}
.y27d{bottom:225.259725pt;}
.y1f3{bottom:225.262126pt;}
.y199{bottom:225.262517pt;}
.y2ce{bottom:225.262846pt;}
.y1e4{bottom:225.264607pt;}
.y124{bottom:225.266314pt;}
.y202{bottom:225.267361pt;}
.ya0{bottom:225.268101pt;}
.y1a9{bottom:225.269053pt;}
.y109{bottom:225.271324pt;}
.y69{bottom:225.279577pt;}
.yd7{bottom:225.280111pt;}
.y15a{bottom:225.287222pt;}
.y234{bottom:225.301019pt;}
.y27c{bottom:229.719604pt;}
.y2b{bottom:230.924427pt;}
.y27b{bottom:237.278666pt;}
.y2cd{bottom:237.281685pt;}
.y302{bottom:237.927600pt;}
.y1f2{bottom:241.286923pt;}
.y198{bottom:241.287314pt;}
.y1e3{bottom:241.289403pt;}
.y123{bottom:241.291111pt;}
.y201{bottom:241.292158pt;}
.y9f{bottom:241.292897pt;}
.y1a8{bottom:241.293849pt;}
.y108{bottom:241.296120pt;}
.y68{bottom:241.304374pt;}
.yd6{bottom:241.304908pt;}
.y159{bottom:241.312019pt;}
.y233{bottom:241.325815pt;}
.y27a{bottom:241.738525pt;}
.y18b{bottom:242.348130pt;}
.y279{bottom:249.297607pt;}
.y2cc{bottom:249.300525pt;}
.y2a{bottom:253.601987pt;}
.y278{bottom:253.681864pt;}
.y122{bottom:257.240122pt;}
.y9e{bottom:257.241908pt;}
.y107{bottom:257.245131pt;}
.y1f1{bottom:257.311720pt;}
.y197{bottom:257.312110pt;}
.y1e2{bottom:257.314200pt;}
.y200{bottom:257.316955pt;}
.y1a7{bottom:257.318646pt;}
.y67{bottom:257.329171pt;}
.yd5{bottom:257.329704pt;}
.y158{bottom:257.336815pt;}
.y232{bottom:257.350612pt;}
.y18a{bottom:261.018829pt;}
.y277{bottom:261.240926pt;}
.y2cb{bottom:261.243366pt;}
.y276{bottom:265.700663pt;}
.y29{bottom:269.627480pt;}
.y275{bottom:273.259827pt;}
.y1f0{bottom:273.260730pt;}
.y196{bottom:273.261121pt;}
.y2ca{bottom:273.262205pt;}
.y1e1{bottom:273.263211pt;}
.y121{bottom:273.264918pt;}
.y1ff{bottom:273.265966pt;}
.y9d{bottom:273.266705pt;}
.y1a6{bottom:273.267657pt;}
.y106{bottom:273.269928pt;}
.y66{bottom:273.278181pt;}
.yd4{bottom:273.278715pt;}
.y157{bottom:273.285826pt;}
.y231{bottom:273.299623pt;}
.y189{bottom:279.689528pt;}
.y274{bottom:285.278666pt;}
.y272{bottom:285.279246pt;}
.y2c9{bottom:285.281045pt;}
.y1ef{bottom:289.285527pt;}
.y195{bottom:289.285918pt;}
.y1e0{bottom:289.288007pt;}
.y120{bottom:289.289715pt;}
.y1fe{bottom:289.290762pt;}
.y9c{bottom:289.291501pt;}
.y1a5{bottom:289.292453pt;}
.y105{bottom:289.294724pt;}
.y65{bottom:289.302978pt;}
.yd3{bottom:289.303512pt;}
.y156{bottom:289.310623pt;}
.y230{bottom:289.324419pt;}
.y28{bottom:289.583693pt;}
.y273{bottom:289.738525pt;}
.y271{bottom:297.298085pt;}
.y2c8{bottom:297.299884pt;}
.y188{bottom:298.360227pt;}
.y1ee{bottom:305.234538pt;}
.y194{bottom:305.234928pt;}
.y1df{bottom:305.237018pt;}
.y11f{bottom:305.238726pt;}
.y1fd{bottom:305.239773pt;}
.y9b{bottom:305.240512pt;}
.y1a4{bottom:305.241464pt;}
.y104{bottom:305.243735pt;}
.y64{bottom:305.251989pt;}
.yd2{bottom:305.252522pt;}
.y155{bottom:305.259633pt;}
.y22f{bottom:305.273430pt;}
.y27{bottom:305.609187pt;}
.y270{bottom:309.240926pt;}
.y26e{bottom:309.240987pt;}
.y2c7{bottom:309.242725pt;}
.y26f{bottom:313.700663pt;}
.y187{bottom:317.030926pt;}
.y193{bottom:321.259725pt;}
.y26d{bottom:321.259827pt;}
.y2c6{bottom:321.261565pt;}
.y1de{bottom:321.261815pt;}
.y11e{bottom:321.263522pt;}
.y9a{bottom:321.265309pt;}
.y1a3{bottom:321.266261pt;}
.y103{bottom:321.268532pt;}
.y63{bottom:321.276785pt;}
.yd1{bottom:321.277319pt;}
.y154{bottom:321.284430pt;}
.y22e{bottom:321.298227pt;}
.y26{bottom:325.565387pt;}
.y26c{bottom:333.278666pt;}
.y26a{bottom:333.278768pt;}
.y2c5{bottom:333.280404pt;}
.y186{bottom:335.701625pt;}
.y11d{bottom:337.288319pt;}
.y99{bottom:337.290105pt;}
.y102{bottom:337.293328pt;}
.y62{bottom:337.301582pt;}
.yd0{bottom:337.302116pt;}
.y153{bottom:337.309227pt;}
.y22d{bottom:337.323023pt;}
.y26b{bottom:337.738525pt;}
.y25{bottom:341.590880pt;}
.y269{bottom:345.297607pt;}
.y2c4{bottom:345.299244pt;}
.y1d6{bottom:346.807756pt;}
.y268{bottom:349.681885pt;}
.y11c{bottom:353.237330pt;}
.y98{bottom:353.239116pt;}
.y101{bottom:353.242339pt;}
.y61{bottom:353.250593pt;}
.ycf{bottom:353.251126pt;}
.y152{bottom:353.258237pt;}
.y22c{bottom:353.272034pt;}
.y185{bottom:354.372324pt;}
.y267{bottom:357.240926pt;}
.y2c3{bottom:357.242085pt;}
.y24{bottom:357.616373pt;}
.y1d5{bottom:358.146660pt;}
.y266{bottom:361.700684pt;}
.y263{bottom:369.259806pt;}
.y265{bottom:369.259847pt;}
.y2c2{bottom:369.260924pt;}
.y11b{bottom:369.262126pt;}
.y97{bottom:369.263913pt;}
.y100{bottom:369.267136pt;}
.y60{bottom:369.275389pt;}
.yce{bottom:369.275923pt;}
.y151{bottom:369.283034pt;}
.y22b{bottom:369.296831pt;}
.y1d4{bottom:369.485565pt;}
.y184{bottom:372.967291pt;}
.y23{bottom:373.565867pt;}
.y264{bottom:373.719604pt;}
.y1d3{bottom:380.824470pt;}
.y262{bottom:381.278646pt;}
.y2c1{bottom:381.279764pt;}
.y11a{bottom:385.286923pt;}
.y96{bottom:385.288709pt;}
.yff{bottom:385.291933pt;}
.y5f{bottom:385.300186pt;}
.ycd{bottom:385.300720pt;}
.y150{bottom:385.307831pt;}
.y22a{bottom:385.321628pt;}
.y22{bottom:389.591360pt;}
.y183{bottom:391.637990pt;}
.y1d2{bottom:392.163374pt;}
.y261{bottom:393.297485pt;}
.y2c0{bottom:393.298603pt;}
.y260{bottom:397.681885pt;}
.y119{bottom:401.235934pt;}
.y95{bottom:401.237720pt;}
.yfe{bottom:401.240943pt;}
.y5e{bottom:401.249197pt;}
.ycc{bottom:401.249730pt;}
.y14f{bottom:401.256841pt;}
.y229{bottom:401.270638pt;}
.y1cf{bottom:403.501672pt;}
.y1d1{bottom:403.502279pt;}
.y2bf{bottom:405.241444pt;}
.y25f{bottom:405.244544pt;}
.y21{bottom:405.616853pt;}
.y1d0{bottom:407.584147pt;}
.y182{bottom:410.308689pt;}
.y1ce{bottom:414.764977pt;}
.y2be{bottom:417.260284pt;}
.y118{bottom:417.260730pt;}
.y94{bottom:417.262517pt;}
.yfd{bottom:417.265740pt;}
.y5d{bottom:417.273993pt;}
.ycb{bottom:417.274527pt;}
.y14e{bottom:417.281638pt;}
.y228{bottom:417.295435pt;}
.y20{bottom:421.566347pt;}
.y1cd{bottom:426.103882pt;}
.y181{bottom:428.979388pt;}
.y2bd{bottom:429.279123pt;}
.y25e{bottom:429.282223pt;}
.y117{bottom:433.285527pt;}
.y93{bottom:433.287314pt;}
.yfc{bottom:433.290537pt;}
.y5c{bottom:433.298790pt;}
.yca{bottom:433.299324pt;}
.y14d{bottom:433.306435pt;}
.y227{bottom:433.320232pt;}
.y1f{bottom:437.591840pt;}
.y2bc{bottom:441.297963pt;}
.y25d{bottom:441.301063pt;}
.y1cc{bottom:443.643904pt;}
.y180{bottom:447.650086pt;}
.y116{bottom:449.234538pt;}
.y92{bottom:449.236324pt;}
.yfb{bottom:449.239547pt;}
.y5b{bottom:449.247801pt;}
.yc9{bottom:449.248334pt;}
.y14c{bottom:449.255446pt;}
.y226{bottom:449.269242pt;}
.y25c{bottom:453.243904pt;}
.y2bb{bottom:453.245050pt;}
.y1e{bottom:457.624040pt;}
.y1cb{bottom:462.314603pt;}
.y115{bottom:465.259725pt;}
.y91{bottom:465.261121pt;}
.y25b{bottom:465.262743pt;}
.y2ba{bottom:465.263890pt;}
.yfa{bottom:465.264344pt;}
.y5a{bottom:465.272598pt;}
.yc8{bottom:465.273131pt;}
.y14b{bottom:465.280242pt;}
.y225{bottom:465.294039pt;}
.y17f{bottom:466.320785pt;}
.y30e{bottom:472.813333pt;}
.y301{bottom:473.499253pt;}
.y1d{bottom:473.573533pt;}
.y25a{bottom:477.281583pt;}
.y2b9{bottom:477.282729pt;}
.y1ca{bottom:480.985302pt;}
.y90{bottom:481.285918pt;}
.yf9{bottom:481.289141pt;}
.y59{bottom:481.297394pt;}
.yc7{bottom:481.297928pt;}
.y14a{bottom:481.305039pt;}
.y224{bottom:481.318836pt;}
.y300{bottom:484.837773pt;}
.y17e{bottom:484.991484pt;}
.y259{bottom:489.300422pt;}
.y2b8{bottom:489.301569pt;}
.y1c{bottom:489.599027pt;}
.y2ff{bottom:496.176280pt;}
.y8f{bottom:497.234928pt;}
.yf8{bottom:497.238151pt;}
.y58{bottom:497.246405pt;}
.yc6{bottom:497.246939pt;}
.y149{bottom:497.254050pt;}
.y223{bottom:497.267846pt;}
.y1c9{bottom:499.656001pt;}
.y258{bottom:501.243263pt;}
.y2b7{bottom:501.244410pt;}
.y17d{bottom:503.662183pt;}
.y1b{bottom:505.624520pt;}
.y30d{bottom:507.760027pt;}
.y8e{bottom:513.259725pt;}
.y257{bottom:513.262103pt;}
.yf7{bottom:513.262948pt;}
.y2b6{bottom:513.263249pt;}
.y8c{bottom:513.268410pt;}
.y57{bottom:513.271202pt;}
.yc5{bottom:513.271735pt;}
.y148{bottom:513.278846pt;}
.y222{bottom:513.292643pt;}
.y1c8{bottom:518.326700pt;}
.y8d{bottom:519.080282pt;}
.y1a{bottom:521.574013pt;}
.y17c{bottom:522.332882pt;}
.y256{bottom:525.280942pt;}
.y2b5{bottom:525.282089pt;}
.yf6{bottom:529.287745pt;}
.y8b{bottom:529.293206pt;}
.y56{bottom:529.295998pt;}
.yc4{bottom:529.296532pt;}
.y147{bottom:529.303643pt;}
.y221{bottom:529.317440pt;}
.y1c7{bottom:530.345749pt;}
.y2fe{bottom:533.295667pt;}
.y255{bottom:537.299782pt;}
.y2b4{bottom:537.300928pt;}
.y19{bottom:537.599507pt;}
.y17b{bottom:541.003581pt;}
.yf5{bottom:545.236755pt;}
.y2fd{bottom:545.238507pt;}
.y8a{bottom:545.242217pt;}
.y55{bottom:545.245009pt;}
.yc3{bottom:545.245543pt;}
.y146{bottom:545.252654pt;}
.y220{bottom:545.266450pt;}
.y1c6{bottom:549.016448pt;}
.y254{bottom:549.242623pt;}
.y2b3{bottom:549.243769pt;}
.y18{bottom:553.625000pt;}
.y2fc{bottom:557.257347pt;}
.y17a{bottom:559.674280pt;}
.y253{bottom:561.261463pt;}
.yf4{bottom:561.261552pt;}
.y2b2{bottom:561.262609pt;}
.y89{bottom:561.267014pt;}
.y54{bottom:561.269806pt;}
.yc2{bottom:561.270339pt;}
.y145{bottom:561.277450pt;}
.y21f{bottom:561.291247pt;}
.y1c5{bottom:567.687147pt;}
.y2fb{bottom:569.276187pt;}
.y17{bottom:569.574493pt;}
.y2b1{bottom:573.281449pt;}
.yf3{bottom:577.286349pt;}
.y88{bottom:577.291810pt;}
.y53{bottom:577.294602pt;}
.yc1{bottom:577.295136pt;}
.y144{bottom:577.302247pt;}
.y21e{bottom:577.316044pt;}
.y179{bottom:578.344979pt;}
.y2fa{bottom:581.295027pt;}
.y2b0{bottom:585.300288pt;}
.y16{bottom:585.599987pt;}
.y1c4{bottom:586.357846pt;}
.y252{bottom:587.113118pt;}
.yf2{bottom:593.235359pt;}
.y2f9{bottom:593.237867pt;}
.y87{bottom:593.240821pt;}
.y52{bottom:593.243613pt;}
.yc0{bottom:593.244147pt;}
.y143{bottom:593.251258pt;}
.y21d{bottom:593.265054pt;}
.y178{bottom:597.015678pt;}
.y2af{bottom:597.243129pt;}
.y251{bottom:599.131958pt;}
.y1c3{bottom:605.028545pt;}
.y2f8{bottom:605.256707pt;}
.y15{bottom:605.630853pt;}
.yf1{bottom:609.260156pt;}
.y2ae{bottom:609.261969pt;}
.y86{bottom:609.265618pt;}
.y51{bottom:609.268410pt;}
.ybf{bottom:609.268943pt;}
.y142{bottom:609.276054pt;}
.y21c{bottom:609.289851pt;}
.y250{bottom:611.074799pt;}
.y177{bottom:615.686377pt;}
.y2f7{bottom:617.275547pt;}
.y2ad{bottom:621.280808pt;}
.y14{bottom:621.580347pt;}
.y24f{bottom:623.093638pt;}
.y1c2{bottom:623.699245pt;}
.yf0{bottom:625.284953pt;}
.y85{bottom:625.290415pt;}
.y50{bottom:625.293206pt;}
.ybe{bottom:625.293740pt;}
.y141{bottom:625.300851pt;}
.y21b{bottom:625.314648pt;}
.y2f6{bottom:629.294387pt;}
.y2ac{bottom:633.299648pt;}
.y176{bottom:634.357076pt;}
.y24e{bottom:635.112478pt;}
.y1c1{bottom:635.642562pt;}
.y13{bottom:637.605840pt;}
.yef{bottom:641.234538pt;}
.y2f5{bottom:641.237227pt;}
.y84{bottom:641.239425pt;}
.y4f{bottom:641.242217pt;}
.ybd{bottom:641.242751pt;}
.y140{bottom:641.249862pt;}
.y21a{bottom:641.263658pt;}
.y2ab{bottom:645.242489pt;}
.y24d{bottom:647.131317pt;}
.y175{bottom:653.027775pt;}
.y2f4{bottom:653.256067pt;}
.y12{bottom:653.631333pt;}
.y1c0{bottom:654.313260pt;}
.y2aa{bottom:657.261328pt;}
.y83{bottom:657.264222pt;}
.y4e{bottom:657.267014pt;}
.ybc{bottom:657.267547pt;}
.y13f{bottom:657.274658pt;}
.y219{bottom:657.288455pt;}
.y24c{bottom:659.074158pt;}
.y2f3{bottom:665.274907pt;}
.y2a9{bottom:669.280168pt;}
.y24b{bottom:671.092998pt;}
.y174{bottom:671.698474pt;}
.y1bf{bottom:672.983959pt;}
.y82{bottom:673.289019pt;}
.yee{bottom:673.289552pt;}
.y4d{bottom:673.291810pt;}
.ybb{bottom:673.292344pt;}
.y13e{bottom:673.299455pt;}
.y218{bottom:673.313252pt;}
.y2f2{bottom:677.293747pt;}
.y11{bottom:677.593573pt;}
.y2a8{bottom:681.299007pt;}
.y24a{bottom:683.111837pt;}
.y2f1{bottom:689.237587pt;}
.y81{bottom:689.238029pt;}
.yed{bottom:689.238563pt;}
.y4c{bottom:689.240821pt;}
.yba{bottom:689.241355pt;}
.y13d{bottom:689.248466pt;}
.y217{bottom:689.262262pt;}
.y173{bottom:690.369173pt;}
.y1be{bottom:691.654658pt;}
.y2a7{bottom:693.241848pt;}
.y249{bottom:695.130677pt;}
.y2f0{bottom:701.256427pt;}
.y2a6{bottom:705.260688pt;}
.y80{bottom:705.262826pt;}
.yec{bottom:705.263360pt;}
.y4b{bottom:705.265618pt;}
.yb9{bottom:705.266151pt;}
.y13c{bottom:705.273262pt;}
.y216{bottom:705.287059pt;}
.y248{bottom:707.074517pt;}
.y172{bottom:708.964140pt;}
.y1bd{bottom:710.325357pt;}
.y2ef{bottom:713.275267pt;}
.y2a5{bottom:717.279527pt;}
.y7f{bottom:721.287623pt;}
.yeb{bottom:721.288156pt;}
.y4a{bottom:721.290415pt;}
.yb8{bottom:721.290948pt;}
.y13b{bottom:721.298059pt;}
.y215{bottom:721.311856pt;}
.y2ee{bottom:725.294107pt;}
.y171{bottom:727.634839pt;}
.yf{bottom:728.919427pt;}
.y1bc{bottom:728.996056pt;}
.y2a4{bottom:729.298367pt;}
.y247{bottom:732.926172pt;}
.y10{bottom:735.420240pt;}
.y7e{bottom:737.236633pt;}
.y2ed{bottom:737.236947pt;}
.yea{bottom:737.237167pt;}
.y49{bottom:737.239425pt;}
.yb7{bottom:737.239959pt;}
.y13a{bottom:737.247070pt;}
.y214{bottom:737.260867pt;}
.y1bb{bottom:741.015105pt;}
.y2a3{bottom:741.242207pt;}
.y246{bottom:744.945012pt;}
.y170{bottom:746.305538pt;}
.yc{bottom:747.590387pt;}
.ye{bottom:747.590400pt;}
.y2ec{bottom:749.255787pt;}
.y2a2{bottom:753.261046pt;}
.y7d{bottom:753.261430pt;}
.ye9{bottom:753.261964pt;}
.y48{bottom:753.264222pt;}
.yb6{bottom:753.264755pt;}
.y139{bottom:753.271867pt;}
.y213{bottom:753.285663pt;}
.yd{bottom:754.091213pt;}
.y245{bottom:756.963851pt;}
.y1ba{bottom:759.685804pt;}
.y2eb{bottom:761.274627pt;}
.y16f{bottom:764.976237pt;}
.y16d{bottom:764.977471pt;}
.y2a1{bottom:765.279886pt;}
.yb{bottom:766.261213pt;}
.y9{bottom:766.261280pt;}
.y7c{bottom:769.286227pt;}
.ye8{bottom:769.286760pt;}
.y47{bottom:769.289019pt;}
.yb5{bottom:769.289552pt;}
.y138{bottom:769.296663pt;}
.y212{bottom:769.310460pt;}
.y16e{bottom:769.738363pt;}
.ya{bottom:772.761947pt;}
.y2ea{bottom:773.293467pt;}
.y2a0{bottom:777.298725pt;}
.y1b9{bottom:778.356503pt;}
.y244{bottom:782.740506pt;}
.y16c{bottom:783.648170pt;}
.y6{bottom:784.932093pt;}
.y8{bottom:784.932120pt;}
.y7b{bottom:785.235237pt;}
.ye7{bottom:785.235771pt;}
.y2e9{bottom:785.236307pt;}
.y46{bottom:785.238029pt;}
.yb4{bottom:785.238563pt;}
.y137{bottom:785.245674pt;}
.y211{bottom:785.259471pt;}
.y29f{bottom:789.241566pt;}
.y7{bottom:791.432933pt;}
.y243{bottom:794.759346pt;}
.y1b8{bottom:797.027202pt;}
.y2e8{bottom:797.255147pt;}
.y7a{bottom:801.260034pt;}
.y29e{bottom:801.260406pt;}
.ye6{bottom:801.260568pt;}
.y45{bottom:801.262826pt;}
.yb3{bottom:801.263360pt;}
.y136{bottom:801.270471pt;}
.y210{bottom:801.284267pt;}
.y16b{bottom:802.318869pt;}
.y4{bottom:803.602933pt;}
.y242{bottom:806.778185pt;}
.y2e7{bottom:809.273987pt;}
.y5{bottom:810.103747pt;}
.y29d{bottom:813.279246pt;}
.y1b7{bottom:815.697901pt;}
.y79{bottom:817.284831pt;}
.ye5{bottom:817.285364pt;}
.y44{bottom:817.287623pt;}
.yb2{bottom:817.288156pt;}
.y135{bottom:817.295267pt;}
.y20f{bottom:817.309064pt;}
.y241{bottom:818.797025pt;}
.y16a{bottom:820.989568pt;}
.y2e6{bottom:821.292827pt;}
.y29c{bottom:825.298085pt;}
.y240{bottom:830.739866pt;}
.y78{bottom:833.234375pt;}
.y2e5{bottom:833.235667pt;}
.y43{bottom:833.236633pt;}
.yb1{bottom:833.237167pt;}
.y134{bottom:833.244278pt;}
.y20e{bottom:833.258075pt;}
.y1b6{bottom:834.368600pt;}
.y3{bottom:835.579200pt;}
.y29b{bottom:837.240926pt;}
.y169{bottom:839.660267pt;}
.y23f{bottom:842.758705pt;}
.y2e4{bottom:845.254507pt;}
.y77{bottom:849.259766pt;}
.y42{bottom:849.261430pt;}
.yb0{bottom:849.261964pt;}
.y133{bottom:849.269075pt;}
.y20d{bottom:849.282871pt;}
.y1b5{bottom:852.963567pt;}
.y2e3{bottom:857.273347pt;}
.y168{bottom:858.330966pt;}
.y29a{bottom:861.278605pt;}
.y41{bottom:865.286227pt;}
.yaf{bottom:865.286760pt;}
.y132{bottom:865.293871pt;}
.y20c{bottom:865.307668pt;}
.y2e2{bottom:869.292187pt;}
.y2{bottom:870.273747pt;}
.y1b4{bottom:870.500414pt;}
.y299{bottom:873.297445pt;}
.y23e{bottom:875.565267pt;}
.y167{bottom:877.001665pt;}
.y2e1{bottom:881.235027pt;}
.y40{bottom:881.235237pt;}
.yae{bottom:881.235771pt;}
.y131{bottom:881.242882pt;}
.y76{bottom:881.256145pt;}
.ye4{bottom:881.256679pt;}
.y1b3{bottom:882.519463pt;}
.y298{bottom:885.240224pt;}
.y23d{bottom:887.584106pt;}
.y2e0{bottom:893.253867pt;}
.y166{bottom:894.538511pt;}
.y3f{bottom:897.260034pt;}
.yad{bottom:897.260568pt;}
.y130{bottom:897.267679pt;}
.y75{bottom:897.280942pt;}
.ye3{bottom:897.281475pt;}
.y2db{bottom:899.506673pt;}
.y23c{bottom:899.602946pt;}
.y2df{bottom:905.272707pt;}
.y165{bottom:912.075358pt;}
.y3e{bottom:913.284831pt;}
.yac{bottom:913.285364pt;}
.y12f{bottom:913.292475pt;}
.y74{bottom:913.305738pt;}
.ye2{bottom:913.306272pt;}
.y297{bottom:917.290796pt;}
.y2de{bottom:917.291547pt;}
.y2dc{bottom:917.466634pt;}
.y1{bottom:920.919427pt;}
.y296{bottom:929.233637pt;}
.y3d{bottom:929.234375pt;}
.y2dd{bottom:929.234387pt;}
.y12e{bottom:929.241486pt;}
.y73{bottom:929.254749pt;}
.ye1{bottom:929.255283pt;}
.y164{bottom:929.612386pt;}
.yab{bottom:990.159993pt;}
.y3c{bottom:990.160003pt;}
.y310{bottom:990.160013pt;}
.yaa{bottom:1003.453369pt;}
.y3b{bottom:1003.453377pt;}
.y30f{bottom:1003.453387pt;}
.ya9{bottom:1004.371501pt;}
.y39{bottom:1004.371510pt;}
.y30c{bottom:1004.371520pt;}
.h15{height:17.942710pt;}
.h13{height:20.505240pt;}
.h9{height:21.943155pt;}
.hc{height:23.701920pt;}
.h1e{height:25.200000pt;}
.h14{height:26.916948pt;}
.h1d{height:27.635200pt;}
.h1b{height:27.643045pt;}
.h17{height:27.916799pt;}
.h1a{height:28.071318pt;}
.h1f{height:28.693867pt;}
.h16{height:28.839615pt;}
.h10{height:29.230313pt;}
.h18{height:29.480000pt;}
.ha{height:30.724894pt;}
.hb{height:30.762282pt;}
.hd{height:31.445333pt;}
.h19{height:32.042572pt;}
.h5{height:32.185665pt;}
.h8{height:32.919561pt;}
.h11{height:34.608000pt;}
.h12{height:35.114227pt;}
.hf{height:35.377451pt;}
.h1c{height:36.135056pt;}
.h6{height:39.606933pt;}
.he{height:43.851286pt;}
.h7{height:43.893772pt;}
.h4{height:48.283106pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x2d{left:79.143333pt;}
.x1{left:80.957467pt;}
.x4a{left:82.620088pt;}
.x2c{left:84.283467pt;}
.x31{left:86.248907pt;}
.x58{left:95.622907pt;}
.x5a{left:121.653360pt;}
.x36{left:123.439331pt;}
.x37{left:127.672404pt;}
.x19{left:144.907067pt;}
.x23{left:147.250400pt;}
.x4d{left:150.651998pt;}
.x49{left:155.036133pt;}
.xd{left:159.571600pt;}
.x1a{left:161.688133pt;}
.x4b{left:166.752665pt;}
.x4c{left:170.305471pt;}
.xe{left:171.363733pt;}
.x3{left:183.836147pt;}
.x4e{left:189.052002pt;}
.x54{left:191.546407pt;}
.x4f{left:192.680257pt;}
.x4{left:195.552680pt;}
.x2b{left:205.681867pt;}
.x55{left:214.828267pt;}
.x50{left:217.700806pt;}
.x56{left:221.933858pt;}
.x51{left:224.881877pt;}
.x30{left:228.306667pt;}
.xf{left:235.313333pt;}
.x2e{left:240.604680pt;}
.x38{left:242.191996pt;}
.x10{left:247.029867pt;}
.x2f{left:248.413333pt;}
.x3e{left:253.530660pt;}
.x24{left:261.014133pt;}
.x5{left:263.281867pt;}
.x1b{left:266.154280pt;}
.x6{left:268.270787pt;}
.x1c{left:282.935347pt;}
.x25{left:284.522813pt;}
.x43{left:303.647196pt;}
.x44{left:307.124410pt;}
.x3c{left:312.113342pt;}
.x3d{left:315.666138pt;}
.x52{left:329.725871pt;}
.x53{left:336.907064pt;}
.x11{left:338.267600pt;}
.x45{left:341.744412pt;}
.x3f{left:347.640413pt;}
.x12{left:350.059733pt;}
.x26{left:353.914920pt;}
.x27{left:365.707067pt;}
.x1d{left:382.261347pt;}
.x1e{left:392.239333pt;}
.x32{left:406.297959pt;}
.x33{left:416.957444pt;}
.x57{left:426.329527pt;}
.x59{left:429.528120pt;}
.x7{left:431.319587pt;}
.x13{left:441.146400pt;}
.x8{left:443.111733pt;}
.x39{left:447.797963pt;}
.x46{left:450.518512pt;}
.x14{left:452.862920pt;}
.x40{left:455.054535pt;}
.x1f{left:465.486533pt;}
.x20{left:482.267613pt;}
.x28{left:503.962120pt;}
.x29{left:520.667600pt;}
.x9{left:534.727453pt;}
.xa{left:539.791987pt;}
.x3a{left:557.252597pt;}
.x47{left:559.216889pt;}
.x41{left:562.543322pt;}
.x15{left:583.407720pt;}
.x16{left:600.188800pt;}
.xb{left:618.632933pt;}
.x2a{left:628.459720pt;}
.xc{left:630.425053pt;}
.x21{left:634.658120pt;}
.x42{left:635.638939pt;}
.x48{left:637.754572pt;}
.x3b{left:643.047788pt;}
.x22{left:644.711747pt;}
.x34{left:652.648682pt;}
.x35{left:657.864380pt;}
.x17{left:668.522667pt;}
.x18{left:678.500653pt;}
}




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