
    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_69dff1b8c5284b87664d05a2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_ddb7f49bedc6885decce4198.woff')format("woff");}.ff2{font-family:ff2;line-height:0.894000;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_738372d26b5cbbfa8450f999.woff')format("woff");}.ff3{font-family:ff3;line-height:0.245000;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_e71b0fcbb40f2b4c5485a216.woff')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_5abf156ae0e7f7dbbd208263.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_97e840b9afe33405b411b840.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_c40cbd0397d49d5203d65142.woff')format("woff");}.ff7{font-family:ff7;line-height:0.105000;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_e0953d2469335707fc1a52c6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722000;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_2ac694a09647c57e76299762.woff')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_6c819564648618459538f0d8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5684e4b80fe0632df8a2043f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.041000;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_11a3e884e69548572ea2c676.woff')format("woff");}.ffc{font-family:ffc;line-height:0.636000;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_514718737d297e2a4baa7687.woff')format("woff");}.ffd{font-family:ffd;line-height:0.891000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,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);}
.m4{transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-5.101135px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.907349px;}
.v3{vertical-align:13.946411px;}
.ls52{letter-spacing:-4.923411px;}
.ls76{letter-spacing:-4.166354px;}
.ls7a{letter-spacing:-3.145089px;}
.ls45{letter-spacing:-2.337226px;}
.lsa3{letter-spacing:-2.276252px;}
.lsa4{letter-spacing:-1.935830px;}
.ls7c{letter-spacing:-1.371848px;}
.ls9d{letter-spacing:-1.219421px;}
.ls9c{letter-spacing:-1.183854px;}
.ls90{letter-spacing:-1.163531px;}
.ls57{letter-spacing:-1.158450px;}
.lsa5{letter-spacing:-1.148288px;}
.ls9e{letter-spacing:-1.133045px;}
.lsa1{letter-spacing:-1.122883px;}
.ls54{letter-spacing:-1.107641px;}
.lsa0{letter-spacing:-1.097479px;}
.ls53{letter-spacing:-1.087317px;}
.ls9f{letter-spacing:-1.072074px;}
.ls87{letter-spacing:-1.046669px;}
.ls8e{letter-spacing:-1.034118px;}
.ls86{letter-spacing:-1.016184px;}
.ls79{letter-spacing:-1.011103px;}
.ls77{letter-spacing:-1.000941px;}
.ls56{letter-spacing:-0.995860px;}
.ls58{letter-spacing:-0.990779px;}
.ls1f{letter-spacing:-0.980320px;}
.ls7d{letter-spacing:-0.960294px;}
.ls7f{letter-spacing:-0.873918px;}
.ls24{letter-spacing:-0.864767px;}
.ls78{letter-spacing:-0.858675px;}
.ls92{letter-spacing:-0.853595px;}
.ls80{letter-spacing:-0.843433px;}
.ls55{letter-spacing:-0.833271px;}
.ls7b{letter-spacing:-0.823109px;}
.ls71{letter-spacing:-0.795015px;}
.ls8f{letter-spacing:-0.765128px;}
.ls95{letter-spacing:-0.757057px;}
.ls6f{letter-spacing:-0.741217px;}
.ls6a{letter-spacing:-0.735240px;}
.ls20{letter-spacing:-0.681442px;}
.ls1b{letter-spacing:-0.640195px;}
.ls94{letter-spacing:-0.592714px;}
.ls91{letter-spacing:-0.589328px;}
.ls1c{letter-spacing:0.000000px;}
.ls9a{letter-spacing:0.106699px;}
.ls2e{letter-spacing:0.376586px;}
.ls21{letter-spacing:0.388541px;}
.ls26{letter-spacing:0.430384px;}
.ls59{letter-spacing:0.460272px;}
.ls73{letter-spacing:0.466250px;}
.ls66{letter-spacing:0.472227px;}
.ls4b{letter-spacing:0.484182px;}
.ls14{letter-spacing:0.526025px;}
.ls11{letter-spacing:0.555912px;}
.ls34{letter-spacing:0.597756px;}
.ls65{letter-spacing:0.603734px;}
.ls32{letter-spacing:0.609711px;}
.ls85{letter-spacing:0.645576px;}
.ls36{letter-spacing:0.657532px;}
.ls30{letter-spacing:0.663509px;}
.ls84{letter-spacing:0.669487px;}
.ls31{letter-spacing:0.675464px;}
.ls1e{letter-spacing:0.681442px;}
.ls12{letter-spacing:0.687419px;}
.lsb{letter-spacing:0.699375px;}
.ls3d{letter-spacing:0.705352px;}
.ls7{letter-spacing:0.711330px;}
.ls4{letter-spacing:0.717307px;}
.ls41{letter-spacing:0.721213px;}
.ls3a{letter-spacing:0.723284px;}
.ls8{letter-spacing:0.723285px;}
.lsa{letter-spacing:0.729262px;}
.ls99{letter-spacing:0.731652px;}
.ls2c{letter-spacing:0.735240px;}
.ls6{letter-spacing:0.741217px;}
.ls38{letter-spacing:0.747195px;}
.ls98{letter-spacing:0.751976px;}
.ls2f{letter-spacing:0.753173px;}
.ls3b{letter-spacing:0.765128px;}
.lsc{letter-spacing:0.771105px;}
.ls4a{letter-spacing:0.777083px;}
.ls4c{letter-spacing:0.783060px;}
.ls33{letter-spacing:0.789038px;}
.ls39{letter-spacing:0.795015px;}
.ls1d{letter-spacing:0.806971px;}
.ls15{letter-spacing:0.818969px;}
.ls6b{letter-spacing:0.842836px;}
.ls3f{letter-spacing:0.902612px;}
.ls40{letter-spacing:0.974342px;}
.ls81{letter-spacing:1.010208px;}
.ls5{letter-spacing:1.081938px;}
.ls83{letter-spacing:1.087916px;}
.ls25{letter-spacing:1.099871px;}
.ls29{letter-spacing:1.141714px;}
.ls9{letter-spacing:1.159647px;}
.ls97{letter-spacing:1.229583px;}
.ls64{letter-spacing:1.279198px;}
.ls5d{letter-spacing:1.350929px;}
.ls60{letter-spacing:1.356906px;}
.ls3e{letter-spacing:1.392771px;}
.ls5e{letter-spacing:1.404727px;}
.ls5f{letter-spacing:1.416682px;}
.ls17{letter-spacing:1.440592px;}
.ls2d{letter-spacing:1.446569px;}
.ls5b{letter-spacing:1.452547px;}
.ls3c{letter-spacing:1.560143px;}
.lsd{letter-spacing:1.739470px;}
.ls89{letter-spacing:1.745448px;}
.ls4d{letter-spacing:1.799246px;}
.ls8d{letter-spacing:1.841088px;}
.ls8a{letter-spacing:1.930752px;}
.ls8b{letter-spacing:2.139966px;}
.ls9b{letter-spacing:2.393113px;}
.ls82{letter-spacing:2.438844px;}
.ls4e{letter-spacing:2.689902px;}
.ls69{letter-spacing:3.795751px;}
.ls43{letter-spacing:4.411437px;}
.ls61{letter-spacing:4.465237px;}
.ls6d{letter-spacing:4.501103px;}
.ls42{letter-spacing:4.560878px;}
.ls47{letter-spacing:5.893874px;}
.ls48{letter-spacing:6.031358px;}
.ls2a{letter-spacing:6.192752px;}
.ls19{letter-spacing:10.128428px;}
.ls93{letter-spacing:10.426047px;}
.ls18{letter-spacing:10.467951px;}
.ls1a{letter-spacing:10.468592px;}
.lsf{letter-spacing:10.568185px;}
.ls7e{letter-spacing:10.766469px;}
.lse{letter-spacing:10.908945px;}
.ls96{letter-spacing:12.153559px;}
.ls88{letter-spacing:12.265952px;}
.lsa2{letter-spacing:12.580358px;}
.ls75{letter-spacing:12.808999px;}
.ls8c{letter-spacing:12.834403px;}
.ls44{letter-spacing:12.875665px;}
.ls3{letter-spacing:13.820097px;}
.ls27{letter-spacing:14.991721px;}
.ls10{letter-spacing:15.039624px;}
.ls70{letter-spacing:15.667185px;}
.ls2{letter-spacing:16.065894px;}
.ls1{letter-spacing:16.066534px;}
.ls0{letter-spacing:16.067084px;}
.ls51{letter-spacing:16.103546px;}
.ls49{letter-spacing:17.053977px;}
.ls72{letter-spacing:17.394699px;}
.ls62{letter-spacing:18.076141px;}
.ls37{letter-spacing:19.409137px;}
.ls6e{letter-spacing:19.684103px;}
.ls35{letter-spacing:19.749858px;}
.ls28{letter-spacing:20.090577px;}
.ls46{letter-spacing:20.090579px;}
.ls16{letter-spacing:21.112680px;}
.ls23{letter-spacing:21.112740px;}
.ls5a{letter-spacing:21.112742px;}
.ls50{letter-spacing:21.453463px;}
.ls67{letter-spacing:21.477373px;}
.ls63{letter-spacing:21.794183px;}
.ls2b{letter-spacing:21.842004px;}
.ls74{letter-spacing:22.134904px;}
.ls68{letter-spacing:22.475624px;}
.ls13{letter-spacing:23.491769px;}
.ls22{letter-spacing:23.832531px;}
.ls6c{letter-spacing:25.536134px;}
.ls5c{letter-spacing:25.536136px;}
.ls4f{letter-spacing:160.435121px;}
.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;}
}
.ws17d{word-spacing:-30.069721px;}
.ws17c{word-spacing:-29.459520px;}
.ws115{word-spacing:-25.595910px;}
.ws33{word-spacing:-23.892307px;}
.wsc1{word-spacing:-21.513238px;}
.ws36{word-spacing:-21.172516px;}
.ws8b{word-spacing:-20.150355px;}
.ws120{word-spacing:-19.743879px;}
.ws9d{word-spacing:-17.113753px;}
.wsc7{word-spacing:-16.163322px;}
.ws14b{word-spacing:-15.726961px;}
.ws182{word-spacing:-12.859808px;}
.ws203{word-spacing:-12.631167px;}
.ws17f{word-spacing:-10.817278px;}
.ws1d0{word-spacing:-10.476857px;}
.wsbb{word-spacing:-4.620654px;}
.wsd7{word-spacing:-2.749678px;}
.wsd6{word-spacing:-1.859021px;}
.ws113{word-spacing:-1.512323px;}
.ws116{word-spacing:-1.500368px;}
.ws11a{word-spacing:-1.416682px;}
.ws114{word-spacing:-1.410704px;}
.wsac{word-spacing:-0.854791px;}
.wsa7{word-spacing:-0.836858px;}
.wsab{word-spacing:-0.806971px;}
.wsa4{word-spacing:-0.783060px;}
.wsba{word-spacing:-0.761059px;}
.ws30{word-spacing:-0.747195px;}
.wsad{word-spacing:-0.735240px;}
.wsaa{word-spacing:-0.717307px;}
.ws192{word-spacing:-0.705352px;}
.wsa9{word-spacing:-0.657532px;}
.ws31{word-spacing:-0.585801px;}
.ws32{word-spacing:-0.448317px;}
.ws1e{word-spacing:-0.059776px;}
.ws47{word-spacing:-0.050809px;}
.ws59{word-spacing:0.000000px;}
.ws1cd{word-spacing:0.555458px;}
.ws1d5{word-spacing:0.558845px;}
.ws58{word-spacing:0.760578px;}
.ws183{word-spacing:0.792623px;}
.ws1cf{word-spacing:0.802785px;}
.wsee{word-spacing:0.945051px;}
.ws1e5{word-spacing:1.036508px;}
.ws1fe{word-spacing:1.046669px;}
.ws201{word-spacing:1.072074px;}
.ws1f1{word-spacing:1.082236px;}
.ws1c7{word-spacing:1.112721px;}
.ws1e6{word-spacing:1.133045px;}
.ws217{word-spacing:1.885021px;}
.ws208{word-spacing:2.225443px;}
.ws6f{word-spacing:2.277450px;}
.ws44{word-spacing:7.991950px;}
.ws45{word-spacing:8.109417px;}
.ws4f{word-spacing:8.124016px;}
.ws212{word-spacing:9.038956px;}
.ws48{word-spacing:9.130413px;}
.wsec{word-spacing:9.155817px;}
.ws200{word-spacing:9.186303px;}
.ws221{word-spacing:9.359054px;}
.ws15a{word-spacing:9.806175px;}
.ws1ce{word-spacing:9.867146px;}
.ws21e{word-spacing:9.923037px;}
.ws1fa{word-spacing:10.029735px;}
.ws121{word-spacing:10.078166px;}
.ws224{word-spacing:10.146597px;}
.ws1cc{word-spacing:10.166921px;}
.ws15b{word-spacing:10.263458px;}
.ws1bf{word-spacing:10.263470px;}
.ws1b6{word-spacing:10.329224px;}
.ws8f{word-spacing:10.353133px;}
.ws8c{word-spacing:10.377044px;}
.ws1c{word-spacing:10.520505px;}
.wsa2{word-spacing:10.538438px;}
.wsd3{word-spacing:10.556371px;}
.ws223{word-spacing:10.568313px;}
.ws1b1{word-spacing:10.598214px;}
.ws17e{word-spacing:10.598799px;}
.ws1d1{word-spacing:10.603883px;}
.ws205{word-spacing:10.629284px;}
.ws1bd{word-spacing:10.646034px;}
.ws1f9{word-spacing:10.659770px;}
.ws1ad{word-spacing:10.669945px;}
.ws7{word-spacing:10.710579px;}
.ws1ab{word-spacing:10.717765px;}
.ws24{word-spacing:10.741675px;}
.ws1b{word-spacing:10.873181px;}
.wsa1{word-spacing:10.879159px;}
.ws1b0{word-spacing:10.891112px;}
.ws84{word-spacing:10.915025px;}
.ws1ae{word-spacing:10.998716px;}
.ws23{word-spacing:11.010665px;}
.ws6a{word-spacing:11.058486px;}
.wsd5{word-spacing:11.082396px;}
.wsf{word-spacing:11.148149px;}
.ws1af{word-spacing:11.207922px;}
.ws14e{word-spacing:11.237813px;}
.ws1c9{word-spacing:11.249156px;}
.wsfd{word-spacing:11.255745px;}
.ws1db{word-spacing:11.279642px;}
.wsdc{word-spacing:11.279655px;}
.ws6b{word-spacing:11.327476px;}
.ws46{word-spacing:11.340613px;}
.ws1bc{word-spacing:11.351386px;}
.ws170{word-spacing:11.355856px;}
.ws1be{word-spacing:11.399206px;}
.ws21{word-spacing:11.548645px;}
.ws8e{word-spacing:11.596466px;}
.wsfb{word-spacing:11.596473px;}
.ws19a{word-spacing:11.644287px;}
.wsd0{word-spacing:11.739927px;}
.ws11d{word-spacing:11.781770px;}
.ws7c{word-spacing:11.787748px;}
.ws1d{word-spacing:11.823613px;}
.wsfc{word-spacing:11.913280px;}
.ws1c8{word-spacing:11.960485px;}
.ws1ff{word-spacing:12.006214px;}
.ws185{word-spacing:12.032828px;}
.ws20b{word-spacing:12.102751px;}
.wsbd{word-spacing:12.104559px;}
.ws1f8{word-spacing:12.184046px;}
.ws21f{word-spacing:12.189126px;}
.ws7a{word-spacing:12.230088px;}
.ws146{word-spacing:12.253994px;}
.wsbc{word-spacing:12.253998px;}
.ws52{word-spacing:12.270421px;}
.ws1da{word-spacing:12.300907px;}
.wscf{word-spacing:12.301818px;}
.ws4b{word-spacing:12.351716px;}
.ws180{word-spacing:12.407606px;}
.ws1ba{word-spacing:12.421370px;}
.wse0{word-spacing:12.468577px;}
.ws53{word-spacing:12.524467px;}
.wsde{word-spacing:12.529549px;}
.ws49{word-spacing:12.549872px;}
.ws4e{word-spacing:12.560034px;}
.wseb{word-spacing:12.565113px;}
.wse5{word-spacing:12.590519px;}
.ws105{word-spacing:12.594718px;}
.ws4c{word-spacing:12.610843px;}
.ws94{word-spacing:12.618629px;}
.ws4a{word-spacing:12.651490px;}
.ws4d{word-spacing:12.666733px;}
.ws1d7{word-spacing:12.671814px;}
.ws50{word-spacing:12.676895px;}
.ws175{word-spacing:12.687057px;}
.wsbe{word-spacing:12.692138px;}
.ws8d{word-spacing:12.714270px;}
.ws1d2{word-spacing:12.748028px;}
.wsdf{word-spacing:12.758190px;}
.ws174{word-spacing:12.783595px;}
.ws176{word-spacing:12.808999px;}
.wsb{word-spacing:12.839799px;}
.wsf1{word-spacing:12.959350px;}
.ws8{word-spacing:12.981750px;}
.ws184{word-spacing:12.983260px;}
.wsf2{word-spacing:13.031080px;}
.wsed{word-spacing:13.037638px;}
.wse8{word-spacing:13.042722px;}
.wse7{word-spacing:13.042728px;}
.ws51{word-spacing:13.098611px;}
.ws54{word-spacing:13.103692px;}
.ws9f{word-spacing:13.108788px;}
.wse3{word-spacing:13.124015px;}
.wse1{word-spacing:13.129097px;}
.wsd1{word-spacing:13.168565px;}
.ws55{word-spacing:13.179906px;}
.ws13{word-spacing:13.198452px;}
.wsdb{word-spacing:13.252250px;}
.wse4{word-spacing:13.322172px;}
.ws151{word-spacing:13.323981px;}
.wsd2{word-spacing:13.371801px;}
.wse6{word-spacing:13.383143px;}
.ws150{word-spacing:13.395716px;}
.ws222{word-spacing:13.428870px;}
.ws1a6{word-spacing:13.437555px;}
.ws1ed{word-spacing:13.520328px;}
.ws21d{word-spacing:13.571137px;}
.ws169{word-spacing:13.616874px;}
.ws16a{word-spacing:13.616882px;}
.ws4{word-spacing:13.619423px;}
.ws1e8{word-spacing:13.632107px;}
.ws5c{word-spacing:13.664702px;}
.ws1e2{word-spacing:13.672756px;}
.wscb{word-spacing:13.688612px;}
.ws95{word-spacing:13.736433px;}
.ws2{word-spacing:13.784019px;}
.ws165{word-spacing:13.802189px;}
.wsae{word-spacing:13.832074px;}
.ws214{word-spacing:13.911558px;}
.wsa0{word-spacing:13.927714px;}
.ws1{word-spacing:13.933570px;}
.ws145{word-spacing:13.933692px;}
.ws3f{word-spacing:13.957602px;}
.ws5e{word-spacing:13.975535px;}
.ws1d9{word-spacing:13.982691px;}
.ws7e{word-spacing:13.999445px;}
.ws3{word-spacing:14.000103px;}
.wsa{word-spacing:14.017378px;}
.ws1fd{word-spacing:14.028420px;}
.ws5d{word-spacing:14.071176px;}
.ws166{word-spacing:14.077153px;}
.ws1bb{word-spacing:14.118996px;}
.wsea{word-spacing:14.135118px;}
.ws218{word-spacing:14.140199px;}
.ws15{word-spacing:14.232570px;}
.wsb6{word-spacing:14.250502px;}
.ws1ec{word-spacing:14.251980px;}
.ws172{word-spacing:14.267223px;}
.ws158{word-spacing:14.274413px;}
.ws143{word-spacing:14.298323px;}
.ws209{word-spacing:14.307871px;}
.ws139{word-spacing:14.370054px;}
.ws168{word-spacing:14.411897px;}
.ws181{word-spacing:14.450137px;}
.ws73{word-spacing:14.459717px;}
.ws1e1{word-spacing:14.460298px;}
.ws1f3{word-spacing:14.465379px;}
.ws1ca{word-spacing:14.480622px;}
.ws22{word-spacing:14.483628px;}
.ws82{word-spacing:14.531448px;}
.ws5{word-spacing:14.566944px;}
.ws71{word-spacing:14.615134px;}
.ws1c4{word-spacing:14.633049px;}
.ws80{word-spacing:14.639044px;}
.ws1f5{word-spacing:14.668616px;}
.wsf7{word-spacing:14.680887px;}
.wsf0{word-spacing:14.683858px;}
.ws1c1{word-spacing:14.710775px;}
.ws12c{word-spacing:14.728707px;}
.wsf8{word-spacing:14.740663px;}
.wse9{word-spacing:14.744829px;}
.ws6d{word-spacing:14.752618px;}
.ws186{word-spacing:14.776528px;}
.ws93{word-spacing:14.800439px;}
.ws1f2{word-spacing:14.800719px;}
.ws1b8{word-spacing:14.824348px;}
.ws156{word-spacing:14.872169px;}
.ws14f{word-spacing:14.896070px;}
.ws3b{word-spacing:14.955855px;}
.ws178{word-spacing:14.968390px;}
.ws12b{word-spacing:14.973785px;}
.wsf5{word-spacing:14.979765px;}
.ws97{word-spacing:14.997697px;}
.ws90{word-spacing:15.021608px;}
.ws20a{word-spacing:15.024281px;}
.ws96{word-spacing:15.045518px;}
.ws14c{word-spacing:15.069429px;}
.ws2a{word-spacing:15.093339px;}
.ws204{word-spacing:15.141141px;}
.ws41{word-spacing:15.141159px;}
.ws210{word-spacing:15.161464px;}
.ws2b{word-spacing:15.165069px;}
.ws14a{word-spacing:15.212890px;}
.ws1c6{word-spacing:15.252922px;}
.ws1c5{word-spacing:15.268164px;}
.ws5a{word-spacing:15.290597px;}
.wse2{word-spacing:15.303730px;}
.wsf9{word-spacing:15.314509px;}
.ws1b2{word-spacing:15.314514px;}
.wsef{word-spacing:15.359621px;}
.ws6{word-spacing:15.362329px;}
.wsc6{word-spacing:15.386239px;}
.ws1c2{word-spacing:15.434060px;}
.wse{word-spacing:15.511767px;}
.ws91{word-spacing:15.529700px;}
.ws106{word-spacing:15.559588px;}
.ws1e9{word-spacing:15.567938px;}
.ws92{word-spacing:15.589475px;}
.ws1b3{word-spacing:15.631317px;}
.wsb5{word-spacing:15.631319px;}
.ws6e{word-spacing:15.655229px;}
.ws3a{word-spacing:15.679139px;}
.ws144{word-spacing:15.703050px;}
.ws40{word-spacing:15.774780px;}
.wsb0{word-spacing:15.804669px;}
.ws219{word-spacing:15.842309px;}
.ws20e{word-spacing:15.933765px;}
.ws88{word-spacing:15.948129px;}
.ws1a2{word-spacing:15.972041px;}
.ws159{word-spacing:15.995951px;}
.ws21a{word-spacing:16.009979px;}
.ws64{word-spacing:16.019860px;}
.ws43{word-spacing:16.043770px;}
.wsd8{word-spacing:16.067680px;}
.ws74{word-spacing:16.115502px;}
.wsc3{word-spacing:16.163321px;}
.ws1df{word-spacing:16.182730px;}
.ws1f{word-spacing:16.235053px;}
.ws199{word-spacing:16.336670px;}
.ws157{word-spacing:16.384492px;}
.ws79{word-spacing:16.456222px;}
.ws15d{word-spacing:16.504043px;}
.ws9e{word-spacing:16.569796px;}
.ws12d{word-spacing:16.629572px;}
.ws123{word-spacing:16.641526px;}
.ws108{word-spacing:16.725212px;}
.ws12e{word-spacing:16.796943px;}
.ws7d{word-spacing:16.994202px;}
.ws20c{word-spacing:17.010919px;}
.wsc4{word-spacing:17.042023px;}
.ws63{word-spacing:17.065933px;}
.ws1b4{word-spacing:17.107782px;}
.wsfa{word-spacing:17.179507px;}
.ws1e4{word-spacing:17.290370px;}
.ws104{word-spacing:17.311014px;}
.ws1fb{word-spacing:17.320855px;}
.ws19e{word-spacing:17.334924px;}
.ws101{word-spacing:17.334926px;}
.wsc5{word-spacing:17.376767px;}
.ws213{word-spacing:17.402150px;}
.ws75{word-spacing:17.406655px;}
.ws86{word-spacing:17.472407px;}
.ws17{word-spacing:17.472408px;}
.ws1dd{word-spacing:17.513931px;}
.ws20d{word-spacing:17.544416px;}
.ws102{word-spacing:17.580010px;}
.ws12{word-spacing:17.609891px;}
.ws16{word-spacing:17.633802px;}
.ws124{word-spacing:17.699555px;}
.ws7b{word-spacing:17.717487px;}
.ws0{word-spacing:17.724611px;}
.ws100{word-spacing:17.741393px;}
.ws12f{word-spacing:17.741397px;}
.ws1e3{word-spacing:17.742573px;}
.wsa8{word-spacing:17.765308px;}
.ws1fc{word-spacing:17.773057px;}
.wsa6{word-spacing:17.777263px;}
.ws164{word-spacing:17.813128px;}
.ws83{word-spacing:17.860948px;}
.ws10{word-spacing:17.926702px;}
.ws69{word-spacing:18.016365px;}
.wsa3{word-spacing:18.022342px;}
.ws220{word-spacing:18.077912px;}
.ws1e0{word-spacing:18.082993px;}
.ws1e7{word-spacing:18.113479px;}
.ws1b9{word-spacing:18.201670px;}
.wsc{word-spacing:18.279377px;}
.wsc8{word-spacing:18.333177px;}
.ws81{word-spacing:18.357087px;}
.ws1a0{word-spacing:18.398928px;}
.ws1f4{word-spacing:18.413253px;}
.wsa5{word-spacing:18.494571px;}
.ws202{word-spacing:18.499629px;}
.ws216{word-spacing:18.540276px;}
.ws15c{word-spacing:18.555520px;}
.ws215{word-spacing:18.560600px;}
.ws65{word-spacing:18.566301px;}
.ws14{word-spacing:18.596188px;}
.wsd9{word-spacing:18.614121px;}
.ws1a9{word-spacing:18.721718px;}
.ws138{word-spacing:18.739650px;}
.ws136{word-spacing:18.745625px;}
.ws107{word-spacing:18.781496px;}
.ws147{word-spacing:18.823336px;}
.ws207{word-spacing:18.880698px;}
.ws1dc{word-spacing:18.906103px;}
.ws1a5{word-spacing:19.032550px;}
.ws132{word-spacing:19.056460px;}
.ws21b{word-spacing:19.063612px;}
.ws162{word-spacing:19.080372px;}
.ws6c{word-spacing:19.104282px;}
.ws122{word-spacing:19.152101px;}
.ws1ee{word-spacing:19.160148px;}
.ws11e{word-spacing:19.164063px;}
.ws1de{word-spacing:19.165229px;}
.ws1ef{word-spacing:19.200795px;}
.ws21c{word-spacing:19.205877px;}
.ws20f{word-spacing:19.221119px;}
.ws3d{word-spacing:19.223833px;}
.ws1f7{word-spacing:19.251605px;}
.ws1eb{word-spacing:19.302415px;}
.ws1a1{word-spacing:19.367294px;}
.ws11f{word-spacing:19.373270px;}
.ws137{word-spacing:19.373272px;}
.ws77{word-spacing:19.397182px;}
.ws206{word-spacing:19.419275px;}
.ws167{word-spacing:19.421092px;}
.ws28{word-spacing:19.445001px;}
.ws1f6{word-spacing:19.475165px;}
.ws1a3{word-spacing:19.516733px;}
.ws1f0{word-spacing:19.561541px;}
.ws177{word-spacing:19.673321px;}
.ws29{word-spacing:19.713992px;}
.ws135{word-spacing:19.737901px;}
.ws42{word-spacing:19.737903px;}
.ws8a{word-spacing:19.761813px;}
.ws211{word-spacing:19.785102px;}
.ws133{word-spacing:19.785717px;}
.ws3c{word-spacing:19.785723px;}
.ws1cb{word-spacing:19.795264px;}
.ws13a{word-spacing:19.809633px;}
.ws198{word-spacing:19.857455px;}
.ws1ea{word-spacing:19.901964px;}
.ws9a{word-spacing:19.923207px;}
.ws190{word-spacing:19.953099px;}
.ws13b{word-spacing:19.971028px;}
.ws163{word-spacing:20.030799px;}
.ws1c0{word-spacing:20.054713px;}
.wsb4{word-spacing:20.066669px;}
.ws11{word-spacing:20.114489px;}
.ws191{word-spacing:20.144371px;}
.ws98{word-spacing:20.180243px;}
.ws9c{word-spacing:20.198175px;}
.wsd{word-spacing:20.269906px;}
.ws18f{word-spacing:20.305772px;}
.ws9b{word-spacing:20.311748px;}
.ws18{word-spacing:20.317726px;}
.ws34{word-spacing:20.395419px;}
.ws14d{word-spacing:20.395435px;}
.ws13c{word-spacing:20.419345px;}
.ws11c{word-spacing:20.443249px;}
.ws11b{word-spacing:20.467165px;}
.ws99{word-spacing:20.514985px;}
.ws18a{word-spacing:20.640514px;}
.ws1a{word-spacing:20.688387px;}
.ws18c{word-spacing:20.742132px;}
.wsd4{word-spacing:20.760065px;}
.ws134{word-spacing:20.760067px;}
.ws10e{word-spacing:20.778008px;}
.ws10b{word-spacing:20.783977px;}
.ws35{word-spacing:20.795951px;}
.ws10a{word-spacing:20.831796px;}
.wscc{word-spacing:20.921459px;}
.ws125{word-spacing:20.945363px;}
.ws1a4{word-spacing:20.993191px;}
.wsb2{word-spacing:21.023078px;}
.ws16c{word-spacing:21.023084px;}
.wsc2{word-spacing:21.029053px;}
.ws37{word-spacing:21.076838px;}
.ws16d{word-spacing:21.100786px;}
.ws127{word-spacing:21.142638px;}
.ws13e{word-spacing:21.184469px;}
.ws7f{word-spacing:21.190450px;}
.ws128{word-spacing:21.190457px;}
.ws16b{word-spacing:21.214357px;}
.ws70{word-spacing:21.214360px;}
.ws140{word-spacing:21.310001px;}
.ws10d{word-spacing:21.321942px;}
.ws15e{word-spacing:21.333911px;}
.wscd{word-spacing:21.393686px;}
.wsc0{word-spacing:21.393688px;}
.ws10c{word-spacing:21.411622px;}
.wsbf{word-spacing:21.417596px;}
.ws78{word-spacing:21.441508px;}
.ws1d4{word-spacing:21.456724px;}
.ws189{word-spacing:21.471395px;}
.ws126{word-spacing:21.489328px;}
.ws5b{word-spacing:21.507260px;}
.ws153{word-spacing:21.519190px;}
.wsff{word-spacing:21.531171px;}
.ws160{word-spacing:21.531174px;}
.ws13d{word-spacing:21.543120px;}
.ws154{word-spacing:21.555081px;}
.ws25{word-spacing:21.638767px;}
.ws89{word-spacing:21.656699px;}
.ws19b{word-spacing:21.698542px;}
.ws109{word-spacing:21.746362px;}
.ws16e{word-spacing:21.752341px;}
.wsfe{word-spacing:21.776247px;}
.ws26{word-spacing:21.776250px;}
.ws161{word-spacing:21.782228px;}
.wsf3{word-spacing:21.824071px;}
.ws5f{word-spacing:21.830049px;}
.ws1a7{word-spacing:21.847965px;}
.ws19c{word-spacing:21.871892px;}
.ws76{word-spacing:21.895801px;}
.ws13f{word-spacing:22.009368px;}
.wsf6{word-spacing:22.015352px;}
.ws18e{word-spacing:22.027308px;}
.ws85{word-spacing:22.045240px;}
.ws60{word-spacing:22.051218px;}
.wsca{word-spacing:22.093062px;}
.ws152{word-spacing:22.122947px;}
.wsce{word-spacing:22.140881px;}
.ws1ac{word-spacing:22.188703px;}
.ws38{word-spacing:22.212613px;}
.wsf4{word-spacing:22.218590px;}
.ws19d{word-spacing:22.236523px;}
.ws130{word-spacing:22.248477px;}
.ws112{word-spacing:22.254455px;}
.ws39{word-spacing:22.278365px;}
.ws20{word-spacing:22.284342px;}
.ws149{word-spacing:22.314230px;}
.ws117{word-spacing:22.326186px;}
.ws111{word-spacing:22.350097px;}
.wsb8{word-spacing:22.356074px;}
.ws1a8{word-spacing:22.385961px;}
.ws110{word-spacing:22.397911px;}
.ws148{word-spacing:22.409872px;}
.ws68{word-spacing:22.433781px;}
.ws10f{word-spacing:22.451713px;}
.ws141{word-spacing:22.457693px;}
.ws131{word-spacing:22.487581px;}
.ws19f{word-spacing:22.499535px;}
.ws1b5{word-spacing:22.505513px;}
.wsdd{word-spacing:22.518636px;}
.ws118{word-spacing:22.529428px;}
.ws103{word-spacing:22.541379px;}
.ws3e{word-spacing:22.553333px;}
.ws72{word-spacing:22.571265px;}
.wsb9{word-spacing:22.571267px;}
.ws1aa{word-spacing:22.583220px;}
.ws2c{word-spacing:22.583270px;}
.ws12a{word-spacing:22.601154px;}
.ws61{word-spacing:22.642997px;}
.ws2f{word-spacing:22.660930px;}
.ws119{word-spacing:22.666903px;}
.ws155{word-spacing:22.666908px;}
.ws1b7{word-spacing:22.720705px;}
.wsda{word-spacing:22.726683px;}
.ws66{word-spacing:22.756571px;}
.ws87{word-spacing:22.774503px;}
.wsc9{word-spacing:22.798413px;}
.ws129{word-spacing:22.816345px;}
.ws142{word-spacing:22.894054px;}
.ws67{word-spacing:22.917964px;}
.ws15f{word-spacing:22.935897px;}
.ws2e{word-spacing:22.959808px;}
.ws27{word-spacing:22.965786px;}
.wsb7{word-spacing:22.995672px;}
.ws62{word-spacing:23.031537px;}
.ws18d{word-spacing:23.055449px;}
.ws2d{word-spacing:23.222771px;}
.ws19{word-spacing:24.890576px;}
.ws187{word-spacing:25.858924px;}
.ws188{word-spacing:26.062160px;}
.ws18b{word-spacing:26.068138px;}
.wsaf{word-spacing:26.080093px;}
.wsb1{word-spacing:26.121937px;}
.wsb3{word-spacing:26.139870px;}
.ws56{word-spacing:27.182857px;}
.ws57{word-spacing:27.422493px;}
.ws9{word-spacing:28.722145px;}
.ws1c3{word-spacing:50.113101px;}
.ws193{word-spacing:148.149463px;}
.ws194{word-spacing:149.831240px;}
.ws16f{word-spacing:151.010023px;}
.ws196{word-spacing:151.863608px;}
.ws17a{word-spacing:155.349129px;}
.ws195{word-spacing:164.012092px;}
.ws17b{word-spacing:165.592256px;}
.ws171{word-spacing:165.673553px;}
.ws173{word-spacing:165.693874px;}
.ws179{word-spacing:166.415370px;}
.ws1d8{word-spacing:167.523013px;}
.ws197{word-spacing:176.755037px;}
.ws1d6{word-spacing:192.353465px;}
.ws1d3{word-spacing:679.334216px;}
._53{margin-left:-24.501955px;}
._d{margin-left:-22.989415px;}
._f{margin-left:-21.471221px;}
._12{margin-left:-19.199910px;}
._13{margin-left:-16.432312px;}
._14{margin-left:-15.218877px;}
._7d{margin-left:-13.284218px;}
._7b{margin-left:-11.918941px;}
._7c{margin-left:-10.766469px;}
._54{margin-left:-6.082377px;}
._0{margin-left:-4.989754px;}
._3{margin-left:-3.401232px;}
._1{margin-left:-2.008460px;}
._4{margin-left:-1.003859px;}
._9{width:1.428638px;}
._55{width:2.869239px;}
._10{width:3.942494px;}
._6{width:5.352295px;}
._9c{width:7.634536px;}
._57{width:9.240422px;}
._b{width:10.592237px;}
._92{width:11.632023px;}
._5{width:12.654484px;}
._7{width:13.687407px;}
._2{width:15.691095px;}
._11{width:16.976270px;}
._a{width:18.207649px;}
._9b{width:19.250349px;}
._8{width:20.281858px;}
._e{width:21.859958px;}
._52{width:22.862668px;}
._c{width:24.059674px;}
._91{width:25.464405px;}
._15{width:28.405364px;}
._56{width:32.199284px;}
._3f{width:37.482860px;}
._2c{width:46.528401px;}
._9a{width:50.332496px;}
._2a{width:54.332693px;}
._31{width:59.123104px;}
._78{width:60.145066px;}
._2e{width:63.029714px;}
._4d{width:66.418705px;}
._4a{width:67.587316px;}
._17{width:68.758596px;}
._2b{width:70.828943px;}
._23{width:74.502449px;}
._95{width:75.699069px;}
._32{width:78.054011px;}
._36{width:82.403267px;}
._1b{width:86.989839px;}
._4e{width:93.088453px;}
._26{width:94.306360px;}
._40{width:96.680663px;}
._3b{width:100.098611px;}
._3a{width:101.512617px;}
._44{width:102.523721px;}
._1a{width:104.617060px;}
._93{width:110.419413px;}
._35{width:111.835541px;}
._21{width:113.976691px;}
._3c{width:115.804023px;}
._1c{width:117.471787px;}
._49{width:122.095414px;}
._1f{width:124.263480px;}
._37{width:125.554017px;}
._20{width:127.581306px;}
._33{width:137.235057px;}
._34{width:139.130251px;}
._29{width:140.436039px;}
._41{width:142.468402px;}
._98{width:143.972332px;}
._75{width:147.292710px;}
._79{width:150.347899px;}
._3e{width:151.512444px;}
._59{width:152.765929px;}
._7f{width:154.666181px;}
._45{width:156.081696px;}
._73{width:163.784950px;}
._6d{width:165.154138px;}
._2d{width:167.725668px;}
._1d{width:169.280430px;}
._38{width:170.867099px;}
._4c{width:171.946408px;}
._27{width:172.959016px;}
._67{width:174.032878px;}
._85{width:175.572719px;}
._28{width:177.555732px;}
._2f{width:181.017355px;}
._42{width:186.869967px;}
._24{width:188.627057px;}
._72{width:190.596014px;}
._5c{width:192.768876px;}
._5d{width:195.984524px;}
._4b{width:197.909917px;}
._5b{width:199.333752px;}
._64{width:200.687065px;}
._39{width:202.909532px;}
._30{width:205.038435px;}
._18{width:206.858899px;}
._99{width:208.035828px;}
._1e{width:210.276861px;}
._4f{width:211.658572px;}
._43{width:213.265032px;}
._46{width:218.711183px;}
._50{width:223.355758px;}
._66{width:226.452674px;}
._22{width:231.030931px;}
._48{width:232.429671px;}
._87{width:243.849187px;}
._80{width:244.990981px;}
._88{width:246.425348px;}
._19{width:252.335223px;}
._3d{width:260.231273px;}
._89{width:268.603140px;}
._25{width:269.950782px;}
._47{width:271.602081px;}
._5e{width:273.205246px;}
._97{width:282.096808px;}
._8d{width:283.432188px;}
._6c{width:287.507071px;}
._86{width:293.267418px;}
._65{width:297.327093px;}
._76{width:324.049828px;}
._7a{width:330.772553px;}
._5a{width:334.101267px;}
._8e{width:340.945270px;}
._81{width:342.775913px;}
._6e{width:345.020153px;}
._5f{width:346.835563px;}
._8f{width:368.949821px;}
._6f{width:373.009471px;}
._74{width:382.968867px;}
._8c{width:388.838895px;}
._77{width:390.911995px;}
._6b{width:393.269468px;}
._69{width:396.832695px;}
._8b{width:406.218351px;}
._6a{width:410.283087px;}
._83{width:458.327386px;}
._61{width:462.392122px;}
._62{width:466.628972px;}
._84{width:519.199795px;}
._63{width:523.269592px;}
._8a{width:546.704545px;}
._68{width:550.764171px;}
._82{width:582.737849px;}
._60{width:586.812756px;}
._71{width:608.401850px;}
._7e{width:734.510944px;}
._58{width:737.574684px;}
._96{width:768.393157px;}
._90{width:814.005792px;}
._70{width:818.562767px;}
._94{width:865.270515px;}
._51{width:1996.041836px;}
._16{width:2463.810681px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(58,42,151);}
.fc0{color:rgb(19,20,19);}
.fsa{font-size:33.869399px;}
.fs7{font-size:39.000000px;}
.fs6{font-size:39.845999px;}
.fs2{font-size:47.821200px;}
.fs8{font-size:49.099199px;}
.fs9{font-size:50.116201px;}
.fs3{font-size:50.809198px;}
.fs1{font-size:59.775599px;}
.fs0{font-size:62.764200px;}
.fs4{font-size:70.834202px;}
.fs5{font-size:104.188797px;}
.y0{bottom:0.000000px;}
.y192{bottom:53.117237px;}
.y42{bottom:115.481838px;}
.y206{bottom:115.482505px;}
.y166{bottom:115.483111px;}
.ya8{bottom:115.484781px;}
.y15c{bottom:115.487823px;}
.y1e8{bottom:115.494624px;}
.ycf{bottom:115.497015px;}
.y31{bottom:115.500046px;}
.y7c{bottom:115.506265px;}
.y1cb{bottom:115.663219px;}
.y191{bottom:120.670509px;}
.y197{bottom:123.670348px;}
.y104{bottom:124.087646px;}
.y41{bottom:130.448959px;}
.y205{bottom:130.449624px;}
.y165{bottom:130.450231px;}
.ya7{bottom:134.193048px;}
.y15b{bottom:134.196090px;}
.y1e7{bottom:134.202891px;}
.yce{bottom:134.205283px;}
.y30{bottom:134.208321px;}
.y7b{bottom:134.214532px;}
.y196{bottom:136.199854px;}
.y103{bottom:143.136015px;}
.y40{bottom:145.330959px;}
.y204{bottom:145.331638px;}
.y164{bottom:145.417351px;}
.y1ca{bottom:146.106819px;}
.y195{bottom:148.729350px;}
.ya6{bottom:152.816135px;}
.y15a{bottom:152.819177px;}
.y1e6{bottom:152.825979px;}
.ycd{bottom:152.828370px;}
.y2f{bottom:152.831406px;}
.y7a{bottom:152.837619px;}
.y3f{bottom:160.298080px;}
.y203{bottom:160.298758px;}
.y194{bottom:161.258696px;}
.y102{bottom:162.184384px;}
.y1c9{bottom:165.155188px;}
.ya4{bottom:169.058247px;}
.ya5{bottom:171.524403px;}
.ya3{bottom:171.528972px;}
.y1e5{bottom:171.534246px;}
.ycc{bottom:171.536637px;}
.y2e{bottom:171.539669px;}
.y79{bottom:171.545886px;}
.y193{bottom:173.787746px;}
.y3e{bottom:175.265202px;}
.y202{bottom:175.265878px;}
.y163{bottom:176.411168px;}
.y101{bottom:181.232753px;}
.y1c8{bottom:184.203557px;}
.y190{bottom:186.316050px;}
.y201{bottom:190.232998px;}
.y159{bottom:190.235712px;}
.ya2{bottom:190.237239px;}
.y1e4{bottom:190.242513px;}
.ycb{bottom:190.244904px;}
.y2d{bottom:190.247944px;}
.y78{bottom:190.254154px;}
.y18f{bottom:198.845545px;}
.y100{bottom:200.281122px;}
.y1c7{bottom:203.251926px;}
.y3d{bottom:205.114357px;}
.y162{bottom:208.093793px;}
.y1e3{bottom:208.865600px;}
.yca{bottom:208.867991px;}
.y2c{bottom:208.871017px;}
.y77{bottom:208.877241px;}
.y18e{bottom:211.374445px;}
.yff{bottom:215.248242px;}
.y3c{bottom:220.081467px;}
.y1c6{bottom:222.300295px;}
.y18d{bottom:223.903496px;}
.y158{bottom:227.567068px;}
.ya1{bottom:227.568596px;}
.y1e2{bottom:227.573867px;}
.yc9{bottom:227.576258px;}
.y2b{bottom:227.579292px;}
.y200{bottom:227.584324px;}
.y76{bottom:227.585508px;}
.yfe{bottom:230.215362px;}
.y3b{bottom:235.048599px;}
.y161{bottom:239.890493px;}
.y1c5{bottom:241.348664px;}
.y157{bottom:246.275335px;}
.y1e1{bottom:246.282134px;}
.yc8{bottom:246.284526px;}
.y2a{bottom:246.287567px;}
.y1ff{bottom:246.292591px;}
.y75{bottom:246.293775px;}
.yfd{bottom:249.263731px;}
.y3a{bottom:249.928894px;}
.y19f{bottom:251.460172px;}
.y18c{bottom:259.446442px;}
.y1c4{bottom:260.397034px;}
.y156{bottom:264.898422px;}
.y1e0{bottom:264.905222px;}
.y29{bottom:264.910652px;}
.y1fe{bottom:264.915678px;}
.y74{bottom:264.916862px;}
.y19e{bottom:266.427292px;}
.yfc{bottom:268.312100px;}
.y18b{bottom:271.721393px;}
.y160{bottom:271.855869px;}
.y1c3{bottom:279.445403px;}
.y39{bottom:279.863136px;}
.y19d{bottom:281.309306px;}
.y155{bottom:283.606689px;}
.ya0{bottom:283.609712px;}
.y1df{bottom:283.613489px;}
.yc7{bottom:283.617375px;}
.y28{bottom:283.618927px;}
.y1fd{bottom:283.623945px;}
.y73{bottom:283.625129px;}
.y18a{bottom:283.996212px;}
.yfb{bottom:287.360469px;}
.y38{bottom:294.830269px;}
.y189{bottom:296.270710px;}
.y19c{bottom:296.276426px;}
.y1c2{bottom:298.493772px;}
.y27{bottom:302.242012px;}
.y154{bottom:302.314957px;}
.y9f{bottom:302.317979px;}
.y1de{bottom:302.321756px;}
.y152{bottom:302.325444px;}
.y1fc{bottom:302.332213px;}
.y72{bottom:302.333397px;}
.y15f{bottom:303.685719px;}
.yfa{bottom:306.408838px;}
.y188{bottom:308.545345px;}
.y153{bottom:308.947952px;}
.y37{bottom:309.712280px;}
.y19b{bottom:311.243546px;}
.y1c1{bottom:317.542141px;}
.y187{bottom:320.820598px;}
.y9e{bottom:320.941066px;}
.y1dd{bottom:320.944843px;}
.y151{bottom:320.948531px;}
.y26{bottom:320.950264px;}
.y1fb{bottom:320.955300px;}
.y71{bottom:320.956484px;}
.y36{bottom:324.679413px;}
.yf9{bottom:325.457207px;}
.y19a{bottom:326.210665px;}
.y186{bottom:333.095256px;}
.y15e{bottom:335.554569px;}
.y1c0{bottom:336.590510px;}
.y9d{bottom:339.649334px;}
.y1dc{bottom:339.653110px;}
.y150{bottom:339.656798px;}
.y25{bottom:339.658539px;}
.y1fa{bottom:339.663567px;}
.y70{bottom:339.664751px;}
.yf8{bottom:340.424327px;}
.y199{bottom:341.092679px;}
.y185{bottom:345.369754px;}
.y24c{bottom:349.334922px;}
.y27d{bottom:350.104539px;}
.y35{bottom:354.613655px;}
.y1bf{bottom:355.638879px;}
.y198{bottom:356.059799px;}
.y184{bottom:357.644554px;}
.y1db{bottom:358.276197px;}
.y24{bottom:358.281624px;}
.y1f9{bottom:358.286654px;}
.y9c{bottom:358.357601px;}
.y14f{bottom:358.365065px;}
.y6f{bottom:358.373018px;}
.yf7{bottom:359.472696px;}
.y24b{bottom:364.387146px;}
.y27c{bottom:365.156763px;}
.y15d{bottom:367.377594px;}
.y34{bottom:369.495666px;}
.yc6{bottom:370.272563px;}
.y1be{bottom:374.687248px;}
.y9b{bottom:376.980688px;}
.y1da{bottom:376.984465px;}
.y14e{bottom:376.988152px;}
.y23{bottom:376.989899px;}
.y1f8{bottom:376.994921px;}
.y6e{bottom:376.996105px;}
.yf6{bottom:378.521066px;}
.y24a{bottom:379.354266px;}
.y27b{bottom:380.123883px;}
.y33{bottom:384.462799px;}
.yc5{bottom:388.895650px;}
.y1bd{bottom:393.735617px;}
.y249{bottom:394.321386px;}
.y127{bottom:394.937745px;}
.y9a{bottom:395.688955px;}
.y1d9{bottom:395.692732px;}
.y14d{bottom:395.696420px;}
.y22{bottom:395.698151px;}
.y1f7{bottom:395.703188px;}
.y6d{bottom:395.704372px;}
.y27a{bottom:396.621630px;}
.yf5{bottom:397.569435px;}
.y32{bottom:399.429886px;}
.yc4{bottom:407.603917px;}
.y248{bottom:409.288506px;}
.y279{bottom:411.588750px;}
.y1bc{bottom:412.783986px;}
.y126{bottom:413.646013px;}
.y16e{bottom:414.059612px;}
.y176{bottom:414.062606px;}
.y1d8{bottom:414.315819px;}
.y21{bottom:414.321259px;}
.y1f6{bottom:414.326275px;}
.y99{bottom:414.397222px;}
.y14c{bottom:414.404687px;}
.y6c{bottom:414.412640px;}
.yf4{bottom:416.617804px;}
.y247{bottom:424.340730px;}
.yc3{bottom:426.312185px;}
.y278{bottom:426.555869px;}
.y1bb{bottom:431.832355px;}
.y125{bottom:432.354280px;}
.y16d{bottom:432.767879px;}
.y175{bottom:432.770873px;}
.y98{bottom:433.020309px;}
.y1d7{bottom:433.024086px;}
.y14b{bottom:433.027774px;}
.y20{bottom:433.029510px;}
.y1f5{bottom:433.034543px;}
.y6b{bottom:433.035727px;}
.yf3{bottom:435.666173px;}
.y246{bottom:439.307850px;}
.y277{bottom:443.053616px;}
.yc2{bottom:444.935272px;}
.yf2{bottom:450.633293px;}
.y1ba{bottom:450.880724px;}
.y124{bottom:450.977367px;}
.y16c{bottom:451.390966px;}
.y174{bottom:451.393960px;}
.y1d6{bottom:451.732353px;}
.y14a{bottom:451.736041px;}
.y1f{bottom:451.737808px;}
.y1f4{bottom:451.742810px;}
.y6a{bottom:451.743994px;}
.y97{bottom:451.758934px;}
.y245{bottom:454.274970px;}
.y276{bottom:458.020736px;}
.yc1{bottom:463.643539px;}
.yf1{bottom:465.600412px;}
.y15{bottom:466.361893px;}
.y244{bottom:469.242090px;}
.y123{bottom:469.685634px;}
.y1b9{bottom:470.014198px;}
.y16b{bottom:470.099234px;}
.y173{bottom:470.102227px;}
.y1d5{bottom:470.355440px;}
.y1e{bottom:470.360870px;}
.y1f3{bottom:470.365897px;}
.y149{bottom:470.444308px;}
.y69{bottom:470.452261px;}
.y96{bottom:470.467201px;}
.y275{bottom:474.518483px;}
.yf0{bottom:480.482426px;}
.yc0{bottom:482.351806px;}
.y243{bottom:484.294314px;}
.y14{bottom:484.985001px;}
.y122{bottom:488.393901px;}
.y16a{bottom:488.807501px;}
.y172{bottom:488.810494px;}
.y1b8{bottom:489.062567px;}
.y1d4{bottom:489.063708px;}
.y148{bottom:489.067395px;}
.y1d{bottom:489.069168px;}
.y1f2{bottom:489.074164px;}
.y68{bottom:489.075348px;}
.y95{bottom:489.090288px;}
.y274{bottom:489.485602px;}
.y242{bottom:499.261434px;}
.yef{bottom:499.530795px;}
.ybf{bottom:500.974893px;}
.y13{bottom:503.693253px;}
.y273{bottom:504.537827px;}
.y121{bottom:507.016988px;}
.y169{bottom:507.430588px;}
.y171{bottom:507.433582px;}
.y1d3{bottom:507.771975px;}
.y147{bottom:507.775663px;}
.y1c{bottom:507.777420px;}
.y1f1{bottom:507.782431px;}
.y67{bottom:507.783615px;}
.y94{bottom:507.798555px;}
.y1b7{bottom:508.110936px;}
.y241{bottom:514.228554px;}
.yee{bottom:518.664269px;}
.ybe{bottom:519.683160px;}
.y272{bottom:521.035573px;}
.y12{bottom:522.401505px;}
.y120{bottom:525.725256px;}
.y168{bottom:526.138855px;}
.y170{bottom:526.141849px;}
.y1d2{bottom:526.395062px;}
.y1b{bottom:526.400482px;}
.y1f0{bottom:526.405518px;}
.y146{bottom:526.483930px;}
.y66{bottom:526.491883px;}
.y93{bottom:526.506822px;}
.y1b6{bottom:527.159305px;}
.y240{bottom:529.195674px;}
.y271{bottom:536.002693px;}
.yed{bottom:537.712638px;}
.ybd{bottom:538.391428px;}
.y11{bottom:541.024612px;}
.y23f{bottom:544.247898px;}
.y11f{bottom:544.433523px;}
.y167{bottom:544.847122px;}
.y16f{bottom:544.850116px;}
.y1d1{bottom:545.103329px;}
.y145{bottom:545.107017px;}
.y1a{bottom:545.108780px;}
.y1ef{bottom:545.113786px;}
.y65{bottom:545.114970px;}
.y92{bottom:545.129910px;}
.y1b5{bottom:546.207674px;}
.y270{bottom:550.969813px;}
.yec{bottom:556.761007px;}
.ybc{bottom:557.014515px;}
.y23e{bottom:559.215018px;}
.y10{bottom:559.732864px;}
.y1d0{bottom:563.811596px;}
.y144{bottom:563.815284px;}
.y19{bottom:563.817032px;}
.y1ee{bottom:563.822053px;}
.y64{bottom:563.823237px;}
.y91{bottom:563.838177px;}
.y26f{bottom:567.467560px;}
.y23d{bottom:574.182138px;}
.ybb{bottom:575.722782px;}
.yeb{bottom:575.809376px;}
.y1b4{bottom:576.906592px;}
.yf{bottom:578.441162px;}
.y11e{bottom:581.764879px;}
.y26e{bottom:582.419579px;}
.y1cf{bottom:582.434683px;}
.y1ed{bottom:582.445140px;}
.y143{bottom:582.523551px;}
.y63{bottom:582.531504px;}
.y90{bottom:582.546444px;}
.y23c{bottom:589.149257px;}
.yba{bottom:594.345869px;}
.yea{bottom:594.857745px;}
.ye{bottom:597.064224px;}
.y26d{bottom:597.386699px;}
.y11d{bottom:600.473146px;}
.y183{bottom:600.982796px;}
.y1ce{bottom:601.142951px;}
.y142{bottom:601.146638px;}
.y18{bottom:601.148392px;}
.y1ec{bottom:601.153407px;}
.y62{bottom:601.154591px;}
.y8f{bottom:601.169531px;}
.y23b{bottom:604.201482px;}
.y1b3{bottom:605.225098px;}
.yb9{bottom:613.054136px;}
.y26c{bottom:613.884446px;}
.ye9{bottom:613.906114px;}
.yd{bottom:615.772522px;}
.y23a{bottom:619.168601px;}
.y1cd{bottom:619.851218px;}
.y141{bottom:619.854906px;}
.y1eb{bottom:619.861674px;}
.y61{bottom:619.862858px;}
.y8e{bottom:619.877798px;}
.y26b{bottom:628.851565px;}
.y182{bottom:631.426396px;}
.yb8{bottom:631.762403px;}
.ye8{bottom:632.954483px;}
.y239{bottom:634.135721px;}
.yc{bottom:634.480774px;}
.y11c{bottom:638.145223px;}
.y1ea{bottom:638.484761px;}
.y140{bottom:638.563173px;}
.y60{bottom:638.571126px;}
.y1a7{bottom:642.220058px;}
.y1af{bottom:642.223052px;}
.y26a{bottom:643.903790px;}
.y238{bottom:649.102841px;}
.yb7{bottom:650.385491px;}
.y181{bottom:650.474765px;}
.ye7{bottom:652.002853px;}
.yb{bottom:653.103836px;}
.y11b{bottom:656.853490px;}
.y1cc{bottom:657.184067px;}
.y13f{bottom:657.186260px;}
.y1e9{bottom:657.193029px;}
.y5f{bottom:657.194213px;}
.y8d{bottom:657.210647px;}
.y269{bottom:660.401536px;}
.y1a6{bottom:660.928325px;}
.y1ae{bottom:660.931319px;}
.y237{bottom:664.155065px;}
.ye6{bottom:666.969972px;}
.yb6{bottom:669.093758px;}
.y180{bottom:669.523134px;}
.ya{bottom:671.812134px;}
.y268{bottom:675.368656px;}
.y11a{bottom:675.476577px;}
.y13e{bottom:675.894527px;}
.y5e{bottom:675.902480px;}
.y236{bottom:679.122185px;}
.y1a5{bottom:679.636593px;}
.y1ad{bottom:679.639586px;}
.ye5{bottom:686.018341px;}
.yb5{bottom:687.802025px;}
.y17f{bottom:688.571503px;}
.y267{bottom:690.335776px;}
.y9{bottom:690.520386px;}
.y235{bottom:694.089305px;}
.y119{bottom:694.184844px;}
.y13d{bottom:694.517614px;}
.y5d{bottom:694.525567px;}
.y1a4{bottom:698.259680px;}
.y1ac{bottom:698.262673px;}
.ye4{bottom:705.066711px;}
.y266{bottom:705.302896px;}
.yb4{bottom:706.425112px;}
.y17e{bottom:707.619872px;}
.y234{bottom:709.056425px;}
.y8{bottom:709.143494px;}
.y17{bottom:709.147980px;}
.y118{bottom:712.893112px;}
.y13c{bottom:713.225881px;}
.y5c{bottom:713.233834px;}
.y8c{bottom:713.251764px;}
.y1a3{bottom:716.967947px;}
.y1ab{bottom:716.970941px;}
.y265{bottom:721.800643px;}
.y233{bottom:724.108649px;}
.ye3{bottom:724.115080px;}
.yb3{bottom:725.133379px;}
.y17d{bottom:726.753346px;}
.y7{bottom:727.851746px;}
.y16{bottom:727.856232px;}
.y117{bottom:731.516199px;}
.y13b{bottom:731.934149px;}
.y5b{bottom:731.942101px;}
.y8b{bottom:731.960031px;}
.y1a2{bottom:735.676214px;}
.y1aa{bottom:735.679208px;}
.y264{bottom:736.767762px;}
.y220{bottom:738.653049px;}
.y232{bottom:739.075769px;}
.ye2{bottom:743.163449px;}
.yb2{bottom:743.841646px;}
.y17c{bottom:745.801715px;}
.y116{bottom:750.224466px;}
.y13a{bottom:750.557236px;}
.y5a{bottom:750.565188px;}
.y8a{bottom:750.583118px;}
.y263{bottom:751.819987px;}
.y231{bottom:754.042889px;}
.y1a1{bottom:754.299301px;}
.y1a9{bottom:754.302295px;}
.y21f{bottom:757.701419px;}
.ye1{bottom:762.211818px;}
.yb1{bottom:762.464734px;}
.y17b{bottom:764.850084px;}
.y6{bottom:765.438629px;}
.y262{bottom:766.787107px;}
.y115{bottom:768.932733px;}
.y230{bottom:769.010009px;}
.y59{bottom:769.273456px;}
.y139{bottom:769.285457px;}
.y1a0{bottom:773.007568px;}
.y1a8{bottom:773.010562px;}
.y21e{bottom:776.749788px;}
.y5{bottom:779.130432px;}
.yb0{bottom:781.173001px;}
.ye0{bottom:781.260187px;}
.y261{bottom:783.284853px;}
.y17a{bottom:783.898453px;}
.y22f{bottom:784.062233px;}
.y114{bottom:787.555820px;}
.y58{bottom:787.981723px;}
.y138{bottom:787.993724px;}
.y89{bottom:787.999653px;}
.y21c{bottom:793.672211px;}
.y21d{bottom:795.798157px;}
.y21b{bottom:795.800452px;}
.y260{bottom:798.251973px;}
.y22e{bottom:799.029353px;}
.yaf{bottom:799.881268px;}
.ydf{bottom:800.308556px;}
.y179{bottom:802.946822px;}
.y113{bottom:806.264087px;}
.y57{bottom:806.604810px;}
.y137{bottom:806.616811px;}
.y25f{bottom:813.219093px;}
.y22d{bottom:813.996473px;}
.y21a{bottom:814.848821px;}
.yde{bottom:815.275676px;}
.yae{bottom:818.504355px;}
.y178{bottom:821.995191px;}
.y112{bottom:824.972355px;}
.y56{bottom:825.313077px;}
.y136{bottom:825.325078px;}
.y88{bottom:825.331009px;}
.y22c{bottom:828.963593px;}
.y25e{bottom:829.716840px;}
.ydd{bottom:830.157690px;}
.y219{bottom:833.897190px;}
.yad{bottom:837.212622px;}
.y177{bottom:841.043560px;}
.y111{bottom:843.595442px;}
.y55{bottom:844.021344px;}
.y135{bottom:844.033346px;}
.y25d{bottom:844.683959px;}
.ydc{bottom:845.124810px;}
.y218{bottom:852.945559px;}
.y25c{bottom:859.736184px;}
.ydb{bottom:860.091929px;}
.y110{bottom:862.303709px;}
.y54{bottom:862.644431px;}
.y134{bottom:862.656433px;}
.y4{bottom:863.574554px;}
.y22b{bottom:870.122589px;}
.y217{bottom:871.993928px;}
.yac{bottom:874.545471px;}
.y25b{bottom:876.148824px;}
.yda{bottom:879.140299px;}
.y10f{bottom:881.011976px;}
.y53{bottom:881.352699px;}
.y133{bottom:881.364700px;}
.y3{bottom:882.198120px;}
.y215{bottom:888.916168px;}
.y216{bottom:891.042297px;}
.y214{bottom:891.044358px;}
.y25a{bottom:891.201049px;}
.yab{bottom:893.253738px;}
.yd9{bottom:898.188668px;}
.y10e{bottom:899.635063px;}
.y52{bottom:900.060966px;}
.y132{bottom:900.072967px;}
.y87{bottom:900.080392px;}
.y2{bottom:900.906921px;}
.y259{bottom:906.168168px;}
.y213{bottom:910.092727px;}
.yaa{bottom:911.962006px;}
.yd8{bottom:917.237037px;}
.y10d{bottom:918.343330px;}
.y51{bottom:918.684053px;}
.y131{bottom:918.696054px;}
.y86{bottom:918.703480px;}
.y258{bottom:921.135288px;}
.y22a{bottom:926.161677px;}
.y212{bottom:929.141096px;}
.yd7{bottom:936.285406px;}
.y10c{bottom:937.051598px;}
.y50{bottom:937.392320px;}
.y130{bottom:937.404321px;}
.y85{bottom:937.411747px;}
.y257{bottom:937.633035px;}
.y229{bottom:941.128797px;}
.y47{bottom:945.381592px;}
.y211{bottom:948.189465px;}
.y256{bottom:952.600155px;}
.yd6{bottom:955.333775px;}
.y228{bottom:956.095917px;}
.y4f{bottom:956.100587px;}
.y12f{bottom:956.112589px;}
.y84{bottom:956.120014px;}
.y10a{bottom:963.666485px;}
.y210{bottom:967.237834px;}
.y255{bottom:967.652379px;}
.y227{bottom:970.977931px;}
.yd5{bottom:974.382144px;}
.y10b{bottom:974.382954px;}
.y4e{bottom:974.723674px;}
.y12e{bottom:974.735676px;}
.y83{bottom:974.743101px;}
.y46{bottom:975.231720px;}
.y109{bottom:982.714854px;}
.y254{bottom:984.065020px;}
.y20e{bottom:984.245361px;}
.y226{bottom:985.945051px;}
.y20f{bottom:986.371307px;}
.y20d{bottom:986.371761px;}
.yd4{bottom:993.430513px;}
.y4d{bottom:993.431942px;}
.y12d{bottom:993.443943px;}
.y82{bottom:993.451368px;}
.y253{bottom:999.117244px;}
.y225{bottom:1000.912170px;}
.y108{bottom:1001.763223px;}
.y45{bottom:1005.165161px;}
.y4c{bottom:1012.140209px;}
.y12c{bottom:1012.152210px;}
.y81{bottom:1012.159635px;}
.yd3{bottom:1012.478882px;}
.y252{bottom:1014.084364px;}
.y20b{bottom:1014.944733px;}
.y224{bottom:1015.879290px;}
.y107{bottom:1016.730343px;}
.y20c{bottom:1017.070679px;}
.y20a{bottom:1017.070767px;}
.y251{bottom:1029.051484px;}
.y223{bottom:1030.761304px;}
.y4b{bottom:1030.763296px;}
.y12b{bottom:1030.775297px;}
.y80{bottom:1030.782723px;}
.yd2{bottom:1031.527251px;}
.y106{bottom:1031.697463px;}
.y250{bottom:1044.018604px;}
.y222{bottom:1045.728424px;}
.y209{bottom:1047.344158px;}
.y4a{bottom:1049.471563px;}
.y12a{bottom:1049.483564px;}
.y7f{bottom:1049.490990px;}
.y24f{bottom:1060.516350px;}
.y221{bottom:1060.695544px;}
.y1b2{bottom:1062.141017px;}
.yd1{bottom:1062.311275px;}
.y105{bottom:1062.396381px;}
.y49{bottom:1068.179830px;}
.y129{bottom:1068.191832px;}
.y7e{bottom:1068.199257px;}
.y24e{bottom:1075.483470px;}
.y208{bottom:1075.662664px;}
.y1b1{bottom:1077.108137px;}
.y1{bottom:1077.278595px;}
.y48{bottom:1086.802917px;}
.y128{bottom:1086.814919px;}
.y7d{bottom:1086.822344px;}
.y207{bottom:1088.418640px;}
.y24d{bottom:1090.535694px;}
.yd0{bottom:1090.544678px;}
.y1b0{bottom:1092.075256px;}
.y44{bottom:1109.590485px;}
.ya9{bottom:1126.516388px;}
.y43{bottom:1126.767792px;}
.h17{height:23.539232px;}
.hf{height:24.648000px;}
.hc{height:27.653123px;}
.he{height:27.692969px;}
.h10{height:31.521686px;}
.h12{height:31.522252px;}
.h13{height:31.522344px;}
.h11{height:31.522893px;}
.h14{height:32.174601px;}
.h15{height:32.175202px;}
.h5{height:34.245400px;}
.hd{height:35.261584px;}
.h4{height:35.312393px;}
.ha{height:35.319259px;}
.h9{height:36.684241px;}
.h3{height:40.527856px;}
.h6{height:41.544041px;}
.h2{height:43.621119px;}
.h7{height:53.451390px;}
.h8{height:53.791966px;}
.hb{height:70.640004px;}
.h16{height:246.622490px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:467.712021px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1b{left:82.998447px;}
.x1{left:85.039352px;}
.x8{left:89.291052px;}
.x5{left:93.546051px;}
.xe{left:96.994045px;}
.x19{left:144.566849px;}
.x1a{left:157.662895px;}
.x9{left:192.443886px;}
.x14{left:286.157410px;}
.x15{left:295.936958px;}
.xa{left:302.909429px;}
.x16{left:347.045964px;}
.x11{left:348.503700px;}
.xf{left:354.713860px;}
.x12{left:356.046890px;}
.x3{left:459.211304px;}
.xb{left:471.968189px;}
.x4{left:476.223450px;}
.x1c{left:479.959258px;}
.x13{left:499.374077px;}
.x10{left:501.486008px;}
.xc{left:575.121024px;}
.xd{left:585.155869px;}
.x17{left:633.883347px;}
.x18{left:647.064468px;}
.x6{left:780.406219px;}
.x7{left:806.683319px;}
@media print{
.v1{vertical-align:-4.534342pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.584310pt;}
.v3{vertical-align:12.396810pt;}
.ls52{letter-spacing:-4.376366pt;}
.ls76{letter-spacing:-3.703426pt;}
.ls7a{letter-spacing:-2.795635pt;}
.ls45{letter-spacing:-2.077534pt;}
.lsa3{letter-spacing:-2.023335pt;}
.lsa4{letter-spacing:-1.720738pt;}
.ls7c{letter-spacing:-1.219421pt;}
.ls9d{letter-spacing:-1.083930pt;}
.ls9c{letter-spacing:-1.052315pt;}
.ls90{letter-spacing:-1.034249pt;}
.ls57{letter-spacing:-1.029733pt;}
.lsa5{letter-spacing:-1.020700pt;}
.ls9e{letter-spacing:-1.007151pt;}
.lsa1{letter-spacing:-0.998118pt;}
.ls54{letter-spacing:-0.984569pt;}
.lsa0{letter-spacing:-0.975537pt;}
.ls53{letter-spacing:-0.966504pt;}
.ls9f{letter-spacing:-0.952955pt;}
.ls87{letter-spacing:-0.930373pt;}
.ls8e{letter-spacing:-0.919216pt;}
.ls86{letter-spacing:-0.903275pt;}
.ls79{letter-spacing:-0.898758pt;}
.ls77{letter-spacing:-0.889726pt;}
.ls56{letter-spacing:-0.885209pt;}
.ls58{letter-spacing:-0.880693pt;}
.ls1f{letter-spacing:-0.871395pt;}
.ls7d{letter-spacing:-0.853595pt;}
.ls7f{letter-spacing:-0.776816pt;}
.ls24{letter-spacing:-0.768682pt;}
.ls78{letter-spacing:-0.763267pt;}
.ls92{letter-spacing:-0.758751pt;}
.ls80{letter-spacing:-0.749718pt;}
.ls55{letter-spacing:-0.740685pt;}
.ls7b{letter-spacing:-0.731652pt;}
.ls71{letter-spacing:-0.706680pt;}
.ls8f{letter-spacing:-0.680113pt;}
.ls95{letter-spacing:-0.672940pt;}
.ls6f{letter-spacing:-0.658860pt;}
.ls6a{letter-spacing:-0.653547pt;}
.ls20{letter-spacing:-0.605726pt;}
.ls1b{letter-spacing:-0.569062pt;}
.ls94{letter-spacing:-0.526857pt;}
.ls91{letter-spacing:-0.523847pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls9a{letter-spacing:0.094844pt;}
.ls2e{letter-spacing:0.334743pt;}
.ls21{letter-spacing:0.345370pt;}
.ls26{letter-spacing:0.382564pt;}
.ls59{letter-spacing:0.409131pt;}
.ls73{letter-spacing:0.414444pt;}
.ls66{letter-spacing:0.419758pt;}
.ls4b{letter-spacing:0.430384pt;}
.ls14{letter-spacing:0.467578pt;}
.ls11{letter-spacing:0.494144pt;}
.ls34{letter-spacing:0.531339pt;}
.ls65{letter-spacing:0.536652pt;}
.ls32{letter-spacing:0.541965pt;}
.ls85{letter-spacing:0.573846pt;}
.ls36{letter-spacing:0.584473pt;}
.ls30{letter-spacing:0.589786pt;}
.ls84{letter-spacing:0.595099pt;}
.ls31{letter-spacing:0.600413pt;}
.ls1e{letter-spacing:0.605726pt;}
.ls12{letter-spacing:0.611039pt;}
.lsb{letter-spacing:0.621666pt;}
.ls3d{letter-spacing:0.626980pt;}
.ls7{letter-spacing:0.632293pt;}
.ls4{letter-spacing:0.637606pt;}
.ls41{letter-spacing:0.641078pt;}
.ls3a{letter-spacing:0.642919pt;}
.ls8{letter-spacing:0.642920pt;}
.lsa{letter-spacing:0.648233pt;}
.ls99{letter-spacing:0.650358pt;}
.ls2c{letter-spacing:0.653547pt;}
.ls6{letter-spacing:0.658860pt;}
.ls38{letter-spacing:0.664173pt;}
.ls98{letter-spacing:0.668423pt;}
.ls2f{letter-spacing:0.669487pt;}
.ls3b{letter-spacing:0.680113pt;}
.lsc{letter-spacing:0.685427pt;}
.ls4a{letter-spacing:0.690740pt;}
.ls4c{letter-spacing:0.696054pt;}
.ls33{letter-spacing:0.701367pt;}
.ls39{letter-spacing:0.706680pt;}
.ls1d{letter-spacing:0.717307pt;}
.ls15{letter-spacing:0.727972pt;}
.ls6b{letter-spacing:0.749188pt;}
.ls3f{letter-spacing:0.802321pt;}
.ls40{letter-spacing:0.866082pt;}
.ls81{letter-spacing:0.897962pt;}
.ls5{letter-spacing:0.961723pt;}
.ls83{letter-spacing:0.967036pt;}
.ls25{letter-spacing:0.977663pt;}
.ls29{letter-spacing:1.014857pt;}
.ls9{letter-spacing:1.030797pt;}
.ls97{letter-spacing:1.092962pt;}
.ls64{letter-spacing:1.137065pt;}
.ls5d{letter-spacing:1.200825pt;}
.ls60{letter-spacing:1.206139pt;}
.ls3e{letter-spacing:1.238019pt;}
.ls5e{letter-spacing:1.248646pt;}
.ls5f{letter-spacing:1.259273pt;}
.ls17{letter-spacing:1.280526pt;}
.ls2d{letter-spacing:1.285840pt;}
.ls5b{letter-spacing:1.291153pt;}
.ls3c{letter-spacing:1.386794pt;}
.lsd{letter-spacing:1.546195pt;}
.ls89{letter-spacing:1.551509pt;}
.ls4d{letter-spacing:1.599329pt;}
.ls8d{letter-spacing:1.636523pt;}
.ls8a{letter-spacing:1.716224pt;}
.ls8b{letter-spacing:1.902192pt;}
.ls9b{letter-spacing:2.127212pt;}
.ls82{letter-spacing:2.167862pt;}
.ls4e{letter-spacing:2.391024pt;}
.ls69{letter-spacing:3.374000pt;}
.ls43{letter-spacing:3.921278pt;}
.ls61{letter-spacing:3.969100pt;}
.ls6d{letter-spacing:4.000980pt;}
.ls42{letter-spacing:4.054114pt;}
.ls47{letter-spacing:5.238999pt;}
.ls48{letter-spacing:5.361207pt;}
.ls2a{letter-spacing:5.504668pt;}
.ls19{letter-spacing:9.003047pt;}
.ls93{letter-spacing:9.267598pt;}
.ls18{letter-spacing:9.304845pt;}
.ls1a{letter-spacing:9.305415pt;}
.lsf{letter-spacing:9.393943pt;}
.ls7e{letter-spacing:9.570195pt;}
.lse{letter-spacing:9.696840pt;}
.ls96{letter-spacing:10.803163pt;}
.ls88{letter-spacing:10.903068pt;}
.lsa2{letter-spacing:11.182540pt;}
.ls75{letter-spacing:11.385777pt;}
.ls8c{letter-spacing:11.408359pt;}
.ls44{letter-spacing:11.445035pt;}
.ls3{letter-spacing:12.284531pt;}
.ls27{letter-spacing:13.325974pt;}
.ls10{letter-spacing:13.368554pt;}
.ls70{letter-spacing:13.926387pt;}
.ls2{letter-spacing:14.280794pt;}
.ls1{letter-spacing:14.281364pt;}
.ls0{letter-spacing:14.281852pt;}
.ls51{letter-spacing:14.314263pt;}
.ls49{letter-spacing:15.159091pt;}
.ls72{letter-spacing:15.461955pt;}
.ls62{letter-spacing:16.067681pt;}
.ls37{letter-spacing:17.252566pt;}
.ls6e{letter-spacing:17.496981pt;}
.ls35{letter-spacing:17.555429pt;}
.ls28{letter-spacing:17.858291pt;}
.ls46{letter-spacing:17.858293pt;}
.ls16{letter-spacing:18.766827pt;}
.ls23{letter-spacing:18.766880pt;}
.ls5a{letter-spacing:18.766882pt;}
.ls50{letter-spacing:19.069745pt;}
.ls67{letter-spacing:19.090998pt;}
.ls63{letter-spacing:19.372607pt;}
.ls2b{letter-spacing:19.415114pt;}
.ls74{letter-spacing:19.675470pt;}
.ls68{letter-spacing:19.978332pt;}
.ls13{letter-spacing:20.881573pt;}
.ls22{letter-spacing:21.184472pt;}
.ls6c{letter-spacing:22.698786pt;}
.ls5c{letter-spacing:22.698788pt;}
.ls4f{letter-spacing:142.608996pt;}
.ws17d{word-spacing:-26.728641pt;}
.ws17c{word-spacing:-26.186240pt;}
.ws115{word-spacing:-22.751920pt;}
.ws33{word-spacing:-21.237606pt;}
.wsc1{word-spacing:-19.122879pt;}
.ws36{word-spacing:-18.820014pt;}
.ws8b{word-spacing:-17.911427pt;}
.ws120{word-spacing:-17.550115pt;}
.ws9d{word-spacing:-15.212225pt;}
.wsc7{word-spacing:-14.367397pt;}
.ws14b{word-spacing:-13.979521pt;}
.ws182{word-spacing:-11.430941pt;}
.ws203{word-spacing:-11.227704pt;}
.ws17f{word-spacing:-9.615359pt;}
.ws1d0{word-spacing:-9.312762pt;}
.wsbb{word-spacing:-4.107248pt;}
.wsd7{word-spacing:-2.444158pt;}
.wsd6{word-spacing:-1.652463pt;}
.ws113{word-spacing:-1.344287pt;}
.ws116{word-spacing:-1.333660pt;}
.ws11a{word-spacing:-1.259273pt;}
.ws114{word-spacing:-1.253959pt;}
.wsac{word-spacing:-0.759814pt;}
.wsa7{word-spacing:-0.743874pt;}
.wsab{word-spacing:-0.717307pt;}
.wsa4{word-spacing:-0.696054pt;}
.wsba{word-spacing:-0.676497pt;}
.ws30{word-spacing:-0.664173pt;}
.wsad{word-spacing:-0.653547pt;}
.wsaa{word-spacing:-0.637606pt;}
.ws192{word-spacing:-0.626980pt;}
.wsa9{word-spacing:-0.584473pt;}
.ws31{word-spacing:-0.520712pt;}
.ws32{word-spacing:-0.398504pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws47{word-spacing:-0.045164pt;}
.ws59{word-spacing:0.000000pt;}
.ws1cd{word-spacing:0.493741pt;}
.ws1d5{word-spacing:0.496751pt;}
.ws58{word-spacing:0.676070pt;}
.ws183{word-spacing:0.704554pt;}
.ws1cf{word-spacing:0.713587pt;}
.wsee{word-spacing:0.840045pt;}
.ws1e5{word-spacing:0.921340pt;}
.ws1fe{word-spacing:0.930373pt;}
.ws201{word-spacing:0.952955pt;}
.ws1f1{word-spacing:0.961987pt;}
.ws1c7{word-spacing:0.989086pt;}
.ws1e6{word-spacing:1.007151pt;}
.ws217{word-spacing:1.675574pt;}
.ws208{word-spacing:1.978171pt;}
.ws6f{word-spacing:2.024400pt;}
.ws44{word-spacing:7.103956pt;}
.ws45{word-spacing:7.208371pt;}
.ws4f{word-spacing:7.221348pt;}
.ws212{word-spacing:8.034628pt;}
.ws48{word-spacing:8.115922pt;}
.wsec{word-spacing:8.138504pt;}
.ws200{word-spacing:8.165603pt;}
.ws221{word-spacing:8.319159pt;}
.ws15a{word-spacing:8.716600pt;}
.ws1ce{word-spacing:8.770797pt;}
.ws21e{word-spacing:8.820477pt;}
.ws1fa{word-spacing:8.915320pt;}
.ws121{word-spacing:8.958369pt;}
.ws224{word-spacing:9.019197pt;}
.ws1cc{word-spacing:9.037263pt;}
.ws15b{word-spacing:9.123074pt;}
.ws1bf{word-spacing:9.123085pt;}
.ws1b6{word-spacing:9.181532pt;}
.ws8f{word-spacing:9.202785pt;}
.ws8c{word-spacing:9.224039pt;}
.ws1c{word-spacing:9.351560pt;}
.wsa2{word-spacing:9.367500pt;}
.wsd3{word-spacing:9.383441pt;}
.ws223{word-spacing:9.394056pt;}
.ws1b1{word-spacing:9.420634pt;}
.ws17e{word-spacing:9.421155pt;}
.ws1d1{word-spacing:9.425674pt;}
.ws205{word-spacing:9.448253pt;}
.ws1bd{word-spacing:9.463142pt;}
.ws1f9{word-spacing:9.475351pt;}
.ws1ad{word-spacing:9.484395pt;}
.ws7{word-spacing:9.520515pt;}
.ws1ab{word-spacing:9.526902pt;}
.ws24{word-spacing:9.548155pt;}
.ws1b{word-spacing:9.665050pt;}
.wsa1{word-spacing:9.670364pt;}
.ws1b0{word-spacing:9.680989pt;}
.ws84{word-spacing:9.702244pt;}
.ws1ae{word-spacing:9.776636pt;}
.ws23{word-spacing:9.787258pt;}
.ws6a{word-spacing:9.829765pt;}
.wsd5{word-spacing:9.851018pt;}
.wsf{word-spacing:9.909466pt;}
.ws1af{word-spacing:9.962598pt;}
.ws14e{word-spacing:9.989167pt;}
.ws1c9{word-spacing:9.999250pt;}
.wsfd{word-spacing:10.005107pt;}
.ws1db{word-spacing:10.026348pt;}
.wsdc{word-spacing:10.026360pt;}
.ws6b{word-spacing:10.068867pt;}
.ws46{word-spacing:10.080545pt;}
.ws1bc{word-spacing:10.090121pt;}
.ws170{word-spacing:10.094094pt;}
.ws1be{word-spacing:10.132628pt;}
.ws21{word-spacing:10.265463pt;}
.ws8e{word-spacing:10.307970pt;}
.wsfb{word-spacing:10.307976pt;}
.ws19a{word-spacing:10.350477pt;}
.wsd0{word-spacing:10.435491pt;}
.ws11d{word-spacing:10.472685pt;}
.ws7c{word-spacing:10.477998pt;}
.ws1d{word-spacing:10.509878pt;}
.wsfc{word-spacing:10.589583pt;}
.ws1c8{word-spacing:10.631542pt;}
.ws1ff{word-spacing:10.672190pt;}
.ws185{word-spacing:10.695847pt;}
.ws20b{word-spacing:10.758001pt;}
.wsbd{word-spacing:10.759608pt;}
.ws1f8{word-spacing:10.830263pt;}
.ws21f{word-spacing:10.834779pt;}
.ws7a{word-spacing:10.871189pt;}
.ws146{word-spacing:10.892439pt;}
.wsbc{word-spacing:10.892442pt;}
.ws52{word-spacing:10.907041pt;}
.ws1da{word-spacing:10.934140pt;}
.wscf{word-spacing:10.934950pt;}
.ws4b{word-spacing:10.979303pt;}
.ws180{word-spacing:11.028983pt;}
.ws1ba{word-spacing:11.041217pt;}
.wse0{word-spacing:11.083180pt;}
.ws53{word-spacing:11.132860pt;}
.wsde{word-spacing:11.137377pt;}
.ws49{word-spacing:11.155442pt;}
.ws4e{word-spacing:11.164474pt;}
.wseb{word-spacing:11.168990pt;}
.wse5{word-spacing:11.191573pt;}
.ws105{word-spacing:11.195305pt;}
.ws4c{word-spacing:11.209638pt;}
.ws94{word-spacing:11.216559pt;}
.ws4a{word-spacing:11.245769pt;}
.ws4d{word-spacing:11.259318pt;}
.ws1d7{word-spacing:11.263834pt;}
.ws50{word-spacing:11.268351pt;}
.ws175{word-spacing:11.277384pt;}
.wsbe{word-spacing:11.281900pt;}
.ws8d{word-spacing:11.301573pt;}
.ws1d2{word-spacing:11.331580pt;}
.wsdf{word-spacing:11.340613pt;}
.ws174{word-spacing:11.363195pt;}
.ws176{word-spacing:11.385777pt;}
.wsb{word-spacing:11.413154pt;}
.wsf1{word-spacing:11.519422pt;}
.ws8{word-spacing:11.539333pt;}
.ws184{word-spacing:11.540675pt;}
.wsf2{word-spacing:11.583183pt;}
.wsed{word-spacing:11.589012pt;}
.wse8{word-spacing:11.593531pt;}
.wse7{word-spacing:11.593536pt;}
.ws51{word-spacing:11.643210pt;}
.ws54{word-spacing:11.647726pt;}
.ws9f{word-spacing:11.652256pt;}
.wse3{word-spacing:11.665791pt;}
.wse1{word-spacing:11.670308pt;}
.wsd1{word-spacing:11.705391pt;}
.ws55{word-spacing:11.715472pt;}
.ws13{word-spacing:11.731957pt;}
.wsdb{word-spacing:11.779778pt;}
.wse4{word-spacing:11.841931pt;}
.ws151{word-spacing:11.843538pt;}
.wsd2{word-spacing:11.886046pt;}
.wse6{word-spacing:11.896127pt;}
.ws150{word-spacing:11.907303pt;}
.ws222{word-spacing:11.936774pt;}
.ws1a6{word-spacing:11.944493pt;}
.ws1ed{word-spacing:12.018069pt;}
.ws21d{word-spacing:12.063233pt;}
.ws169{word-spacing:12.103888pt;}
.ws16a{word-spacing:12.103895pt;}
.ws4{word-spacing:12.106154pt;}
.ws1e8{word-spacing:12.117429pt;}
.ws5c{word-spacing:12.146402pt;}
.ws1e2{word-spacing:12.153561pt;}
.wscb{word-spacing:12.167655pt;}
.ws95{word-spacing:12.210162pt;}
.ws2{word-spacing:12.252461pt;}
.ws165{word-spacing:12.268613pt;}
.wsae{word-spacing:12.295177pt;}
.ws214{word-spacing:12.365829pt;}
.wsa0{word-spacing:12.380191pt;}
.ws1{word-spacing:12.385395pt;}
.ws145{word-spacing:12.385504pt;}
.ws3f{word-spacing:12.406758pt;}
.ws5e{word-spacing:12.422698pt;}
.ws1d9{word-spacing:12.429058pt;}
.ws7e{word-spacing:12.443951pt;}
.ws3{word-spacing:12.444536pt;}
.wsa{word-spacing:12.459891pt;}
.ws1fd{word-spacing:12.469707pt;}
.ws5d{word-spacing:12.507712pt;}
.ws166{word-spacing:12.513025pt;}
.ws1bb{word-spacing:12.550219pt;}
.wsea{word-spacing:12.564550pt;}
.ws218{word-spacing:12.569066pt;}
.ws15{word-spacing:12.651173pt;}
.wsb6{word-spacing:12.667113pt;}
.ws1ec{word-spacing:12.668427pt;}
.ws172{word-spacing:12.681976pt;}
.ws158{word-spacing:12.688367pt;}
.ws143{word-spacing:12.709620pt;}
.ws209{word-spacing:12.718107pt;}
.ws139{word-spacing:12.773381pt;}
.ws168{word-spacing:12.810575pt;}
.ws181{word-spacing:12.844566pt;}
.ws73{word-spacing:12.853082pt;}
.ws1e1{word-spacing:12.853598pt;}
.ws1f3{word-spacing:12.858115pt;}
.ws1ca{word-spacing:12.871664pt;}
.ws22{word-spacing:12.874336pt;}
.ws82{word-spacing:12.916843pt;}
.ws5{word-spacing:12.948394pt;}
.ws71{word-spacing:12.991230pt;}
.ws1c4{word-spacing:13.007155pt;}
.ws80{word-spacing:13.012483pt;}
.ws1f5{word-spacing:13.038770pt;}
.wsf7{word-spacing:13.049678pt;}
.wsf0{word-spacing:13.052319pt;}
.ws1c1{word-spacing:13.076244pt;}
.ws12c{word-spacing:13.092184pt;}
.wsf8{word-spacing:13.102811pt;}
.wse9{word-spacing:13.106515pt;}
.ws6d{word-spacing:13.113438pt;}
.ws186{word-spacing:13.134691pt;}
.ws93{word-spacing:13.155945pt;}
.ws1f2{word-spacing:13.156195pt;}
.ws1b8{word-spacing:13.177199pt;}
.ws156{word-spacing:13.219706pt;}
.ws14f{word-spacing:13.240952pt;}
.ws3b{word-spacing:13.294093pt;}
.ws178{word-spacing:13.305235pt;}
.ws12b{word-spacing:13.310031pt;}
.wsf5{word-spacing:13.315347pt;}
.ws97{word-spacing:13.331286pt;}
.ws90{word-spacing:13.352541pt;}
.ws20a{word-spacing:13.354916pt;}
.ws96{word-spacing:13.373794pt;}
.ws14c{word-spacing:13.395048pt;}
.ws2a{word-spacing:13.416301pt;}
.ws204{word-spacing:13.458792pt;}
.ws41{word-spacing:13.458808pt;}
.ws210{word-spacing:13.476857pt;}
.ws2b{word-spacing:13.480061pt;}
.ws14a{word-spacing:13.522569pt;}
.ws1c6{word-spacing:13.558153pt;}
.ws1c5{word-spacing:13.571701pt;}
.ws5a{word-spacing:13.591642pt;}
.wse2{word-spacing:13.603315pt;}
.wsf9{word-spacing:13.612897pt;}
.ws1b2{word-spacing:13.612902pt;}
.wsef{word-spacing:13.652996pt;}
.ws6{word-spacing:13.655403pt;}
.wsc6{word-spacing:13.676657pt;}
.ws1c2{word-spacing:13.719165pt;}
.wse{word-spacing:13.788238pt;}
.ws91{word-spacing:13.804178pt;}
.ws106{word-spacing:13.830744pt;}
.ws1e9{word-spacing:13.838167pt;}
.ws92{word-spacing:13.857311pt;}
.ws1b3{word-spacing:13.894504pt;}
.wsb5{word-spacing:13.894506pt;}
.ws6e{word-spacing:13.915759pt;}
.ws3a{word-spacing:13.937012pt;}
.ws144{word-spacing:13.958267pt;}
.ws40{word-spacing:14.022027pt;}
.wsb0{word-spacing:14.048595pt;}
.ws219{word-spacing:14.082052pt;}
.ws20e{word-spacing:14.163347pt;}
.ws88{word-spacing:14.176115pt;}
.ws1a2{word-spacing:14.197369pt;}
.ws159{word-spacing:14.218623pt;}
.ws21a{word-spacing:14.231092pt;}
.ws64{word-spacing:14.239876pt;}
.ws43{word-spacing:14.261129pt;}
.wsd8{word-spacing:14.282382pt;}
.ws74{word-spacing:14.324890pt;}
.wsc3{word-spacing:14.367397pt;}
.ws1df{word-spacing:14.384649pt;}
.ws1f{word-spacing:14.431158pt;}
.ws199{word-spacing:14.521485pt;}
.ws157{word-spacing:14.563993pt;}
.ws79{word-spacing:14.627752pt;}
.ws15d{word-spacing:14.670261pt;}
.ws9e{word-spacing:14.728707pt;}
.ws12d{word-spacing:14.781842pt;}
.ws123{word-spacing:14.792468pt;}
.ws108{word-spacing:14.866855pt;}
.ws12e{word-spacing:14.930616pt;}
.ws7d{word-spacing:15.105957pt;}
.ws20c{word-spacing:15.120817pt;}
.wsc4{word-spacing:15.148465pt;}
.ws63{word-spacing:15.169719pt;}
.ws1b4{word-spacing:15.206918pt;}
.wsfa{word-spacing:15.270673pt;}
.ws1e4{word-spacing:15.369217pt;}
.ws104{word-spacing:15.387568pt;}
.ws1fb{word-spacing:15.396316pt;}
.ws19e{word-spacing:15.408821pt;}
.ws101{word-spacing:15.408823pt;}
.wsc5{word-spacing:15.446015pt;}
.ws213{word-spacing:15.468578pt;}
.ws75{word-spacing:15.472582pt;}
.ws86{word-spacing:15.531028pt;}
.ws17{word-spacing:15.531029pt;}
.ws1dd{word-spacing:15.567939pt;}
.ws20d{word-spacing:15.595036pt;}
.ws102{word-spacing:15.626676pt;}
.ws12{word-spacing:15.653237pt;}
.ws16{word-spacing:15.674491pt;}
.ws124{word-spacing:15.732938pt;}
.ws7b{word-spacing:15.748877pt;}
.ws0{word-spacing:15.755210pt;}
.ws100{word-spacing:15.770128pt;}
.ws12f{word-spacing:15.770131pt;}
.ws1e3{word-spacing:15.771176pt;}
.wsa8{word-spacing:15.791385pt;}
.ws1fc{word-spacing:15.798273pt;}
.wsa6{word-spacing:15.802012pt;}
.ws164{word-spacing:15.833892pt;}
.ws83{word-spacing:15.876398pt;}
.ws10{word-spacing:15.934846pt;}
.ws69{word-spacing:16.014547pt;}
.wsa3{word-spacing:16.019860pt;}
.ws220{word-spacing:16.069255pt;}
.ws1e0{word-spacing:16.073772pt;}
.ws1e7{word-spacing:16.100870pt;}
.ws1b9{word-spacing:16.179262pt;}
.wsc{word-spacing:16.248335pt;}
.wsc8{word-spacing:16.296157pt;}
.ws81{word-spacing:16.317410pt;}
.ws1a0{word-spacing:16.354603pt;}
.ws1f4{word-spacing:16.367336pt;}
.wsa5{word-spacing:16.439618pt;}
.ws202{word-spacing:16.444115pt;}
.ws216{word-spacing:16.480245pt;}
.ws15c{word-spacing:16.493795pt;}
.ws215{word-spacing:16.498311pt;}
.ws65{word-spacing:16.503379pt;}
.ws14{word-spacing:16.529945pt;}
.wsd9{word-spacing:16.545885pt;}
.ws1a9{word-spacing:16.641527pt;}
.ws138{word-spacing:16.657467pt;}
.ws136{word-spacing:16.662778pt;}
.ws107{word-spacing:16.694663pt;}
.ws147{word-spacing:16.731854pt;}
.ws207{word-spacing:16.782843pt;}
.ws1dc{word-spacing:16.805425pt;}
.ws1a5{word-spacing:16.917822pt;}
.ws132{word-spacing:16.939076pt;}
.ws21b{word-spacing:16.945433pt;}
.ws162{word-spacing:16.960330pt;}
.ws6c{word-spacing:16.981584pt;}
.ws122{word-spacing:17.024090pt;}
.ws1ee{word-spacing:17.031243pt;}
.ws11e{word-spacing:17.034723pt;}
.ws1de{word-spacing:17.035759pt;}
.ws1ef{word-spacing:17.067374pt;}
.ws21c{word-spacing:17.071891pt;}
.ws20f{word-spacing:17.085439pt;}
.ws3d{word-spacing:17.087851pt;}
.ws1f7{word-spacing:17.112538pt;}
.ws1eb{word-spacing:17.157702pt;}
.ws1a1{word-spacing:17.215372pt;}
.ws11f{word-spacing:17.220684pt;}
.ws137{word-spacing:17.220686pt;}
.ws77{word-spacing:17.241939pt;}
.ws206{word-spacing:17.261578pt;}
.ws167{word-spacing:17.263193pt;}
.ws28{word-spacing:17.284446pt;}
.ws1f6{word-spacing:17.311258pt;}
.ws1a3{word-spacing:17.348207pt;}
.ws1f0{word-spacing:17.388037pt;}
.ws177{word-spacing:17.487396pt;}
.ws29{word-spacing:17.523548pt;}
.ws135{word-spacing:17.544801pt;}
.ws42{word-spacing:17.544803pt;}
.ws8a{word-spacing:17.566056pt;}
.ws211{word-spacing:17.586757pt;}
.ws133{word-spacing:17.587304pt;}
.ws3c{word-spacing:17.587309pt;}
.ws1cb{word-spacing:17.595790pt;}
.ws13a{word-spacing:17.608563pt;}
.ws198{word-spacing:17.651071pt;}
.ws1ea{word-spacing:17.690634pt;}
.ws9a{word-spacing:17.709518pt;}
.ws190{word-spacing:17.736088pt;}
.ws13b{word-spacing:17.752025pt;}
.ws163{word-spacing:17.805155pt;}
.ws1c0{word-spacing:17.826412pt;}
.wsb4{word-spacing:17.837039pt;}
.ws11{word-spacing:17.879545pt;}
.ws191{word-spacing:17.906107pt;}
.ws98{word-spacing:17.937994pt;}
.ws9c{word-spacing:17.953933pt;}
.wsd{word-spacing:18.017694pt;}
.ws18f{word-spacing:18.049575pt;}
.ws9b{word-spacing:18.054887pt;}
.ws18{word-spacing:18.060201pt;}
.ws34{word-spacing:18.129262pt;}
.ws14d{word-spacing:18.129275pt;}
.ws13c{word-spacing:18.150529pt;}
.ws11c{word-spacing:18.171777pt;}
.ws11b{word-spacing:18.193035pt;}
.ws99{word-spacing:18.235542pt;}
.ws18a{word-spacing:18.347124pt;}
.ws1a{word-spacing:18.389678pt;}
.ws18c{word-spacing:18.437451pt;}
.wsd4{word-spacing:18.453391pt;}
.ws134{word-spacing:18.453393pt;}
.ws10e{word-spacing:18.469341pt;}
.ws10b{word-spacing:18.474646pt;}
.ws35{word-spacing:18.485290pt;}
.ws10a{word-spacing:18.517152pt;}
.wscc{word-spacing:18.596853pt;}
.ws125{word-spacing:18.618100pt;}
.ws1a4{word-spacing:18.660614pt;}
.wsb2{word-spacing:18.687180pt;}
.ws16c{word-spacing:18.687186pt;}
.wsc2{word-spacing:18.692492pt;}
.ws37{word-spacing:18.734967pt;}
.ws16d{word-spacing:18.756254pt;}
.ws127{word-spacing:18.793456pt;}
.ws13e{word-spacing:18.830639pt;}
.ws7f{word-spacing:18.835955pt;}
.ws128{word-spacing:18.835962pt;}
.ws16b{word-spacing:18.857206pt;}
.ws70{word-spacing:18.857208pt;}
.ws140{word-spacing:18.942223pt;}
.ws10d{word-spacing:18.952838pt;}
.ws15e{word-spacing:18.963476pt;}
.wscd{word-spacing:19.016610pt;}
.wsc0{word-spacing:19.016612pt;}
.ws10c{word-spacing:19.032553pt;}
.wsbf{word-spacing:19.037863pt;}
.ws78{word-spacing:19.059118pt;}
.ws1d4{word-spacing:19.072643pt;}
.ws189{word-spacing:19.085684pt;}
.ws126{word-spacing:19.101625pt;}
.ws5b{word-spacing:19.117564pt;}
.ws153{word-spacing:19.128169pt;}
.wsff{word-spacing:19.138819pt;}
.ws160{word-spacing:19.138822pt;}
.ws13d{word-spacing:19.149440pt;}
.ws154{word-spacing:19.160072pt;}
.ws25{word-spacing:19.234459pt;}
.ws89{word-spacing:19.250399pt;}
.ws19b{word-spacing:19.287593pt;}
.ws109{word-spacing:19.330100pt;}
.ws16e{word-spacing:19.335414pt;}
.wsfe{word-spacing:19.356664pt;}
.ws26{word-spacing:19.356666pt;}
.ws161{word-spacing:19.361980pt;}
.wsf3{word-spacing:19.399175pt;}
.ws5f{word-spacing:19.404488pt;}
.ws1a7{word-spacing:19.420414pt;}
.ws19c{word-spacing:19.441682pt;}
.ws76{word-spacing:19.462934pt;}
.ws13f{word-spacing:19.563883pt;}
.wsf6{word-spacing:19.569202pt;}
.ws18e{word-spacing:19.579829pt;}
.ws85{word-spacing:19.595769pt;}
.ws60{word-spacing:19.601083pt;}
.wsca{word-spacing:19.638277pt;}
.ws152{word-spacing:19.664841pt;}
.wsce{word-spacing:19.680783pt;}
.ws1ac{word-spacing:19.723291pt;}
.ws38{word-spacing:19.744545pt;}
.wsf4{word-spacing:19.749857pt;}
.ws19d{word-spacing:19.765798pt;}
.ws130{word-spacing:19.776424pt;}
.ws112{word-spacing:19.781738pt;}
.ws39{word-spacing:19.802991pt;}
.ws20{word-spacing:19.808304pt;}
.ws149{word-spacing:19.834871pt;}
.ws117{word-spacing:19.845499pt;}
.ws111{word-spacing:19.866753pt;}
.wsb8{word-spacing:19.872066pt;}
.ws1a8{word-spacing:19.898632pt;}
.ws110{word-spacing:19.909254pt;}
.ws148{word-spacing:19.919886pt;}
.ws68{word-spacing:19.941139pt;}
.ws10f{word-spacing:19.957078pt;}
.ws141{word-spacing:19.962394pt;}
.ws131{word-spacing:19.988960pt;}
.ws19f{word-spacing:19.999587pt;}
.ws1b5{word-spacing:20.004900pt;}
.wsdd{word-spacing:20.016565pt;}
.ws118{word-spacing:20.026158pt;}
.ws103{word-spacing:20.036781pt;}
.ws3e{word-spacing:20.047407pt;}
.ws72{word-spacing:20.063347pt;}
.wsb9{word-spacing:20.063348pt;}
.ws1aa{word-spacing:20.073974pt;}
.ws2c{word-spacing:20.074018pt;}
.ws12a{word-spacing:20.089914pt;}
.ws61{word-spacing:20.127109pt;}
.ws2f{word-spacing:20.143049pt;}
.ws119{word-spacing:20.148359pt;}
.ws155{word-spacing:20.148362pt;}
.ws1b7{word-spacing:20.196183pt;}
.wsda{word-spacing:20.201496pt;}
.ws66{word-spacing:20.228063pt;}
.ws87{word-spacing:20.244003pt;}
.wsc9{word-spacing:20.265256pt;}
.ws129{word-spacing:20.281196pt;}
.ws142{word-spacing:20.350270pt;}
.ws67{word-spacing:20.371524pt;}
.ws15f{word-spacing:20.387464pt;}
.ws2e{word-spacing:20.408718pt;}
.ws27{word-spacing:20.414032pt;}
.wsb7{word-spacing:20.440597pt;}
.ws62{word-spacing:20.472478pt;}
.ws18d{word-spacing:20.493732pt;}
.ws2d{word-spacing:20.642463pt;}
.ws19{word-spacing:22.124957pt;}
.ws187{word-spacing:22.985710pt;}
.ws188{word-spacing:23.166365pt;}
.ws18b{word-spacing:23.171678pt;}
.wsaf{word-spacing:23.182305pt;}
.wsb1{word-spacing:23.219499pt;}
.wsb3{word-spacing:23.235440pt;}
.ws56{word-spacing:24.162539pt;}
.ws57{word-spacing:24.375549pt;}
.ws9{word-spacing:25.530796pt;}
.ws1c3{word-spacing:44.544978pt;}
.ws193{word-spacing:131.688412pt;}
.ws194{word-spacing:133.183324pt;}
.ws16f{word-spacing:134.231132pt;}
.ws196{word-spacing:134.989874pt;}
.ws17a{word-spacing:138.088115pt;}
.ws195{word-spacing:145.788526pt;}
.ws17b{word-spacing:147.193116pt;}
.ws171{word-spacing:147.265380pt;}
.ws173{word-spacing:147.283444pt;}
.ws179{word-spacing:147.924773pt;}
.ws1d8{word-spacing:148.909345pt;}
.ws197{word-spacing:157.115588pt;}
.ws1d6{word-spacing:170.980858pt;}
.ws1d3{word-spacing:603.852637pt;}
._53{margin-left:-21.779516pt;}
._d{margin-left:-20.435036pt;}
._f{margin-left:-19.085530pt;}
._12{margin-left:-17.066587pt;}
._13{margin-left:-14.606499pt;}
._14{margin-left:-13.527891pt;}
._7d{margin-left:-11.808194pt;}
._7b{margin-left:-10.594614pt;}
._7c{margin-left:-9.570195pt;}
._54{margin-left:-5.406557pt;}
._0{margin-left:-4.435337pt;}
._3{margin-left:-3.023317pt;}
._1{margin-left:-1.785298pt;}
._4{margin-left:-0.892320pt;}
._9{width:1.269900pt;}
._55{width:2.550435pt;}
._10{width:3.504440pt;}
._6{width:4.757596pt;}
._9c{width:6.786254pt;}
._57{width:8.213708pt;}
._b{width:9.415321pt;}
._92{width:10.339576pt;}
._5{width:11.248430pt;}
._7{width:12.166584pt;}
._2{width:13.947640pt;}
._11{width:15.090018pt;}
._a{width:16.184577pt;}
._9b{width:17.111421pt;}
._8{width:18.028318pt;}
._e{width:19.431074pt;}
._52{width:20.322372pt;}
._c{width:21.386377pt;}
._91{width:22.635027pt;}
._15{width:25.249212pt;}
._56{width:28.621586pt;}
._3f{width:33.318097pt;}
._2c{width:41.358578pt;}
._9a{width:44.739997pt;}
._2a{width:48.295727pt;}
._31{width:52.553870pt;}
._78{width:53.462280pt;}
._2e{width:56.026413pt;}
._4d{width:59.038849pt;}
._4a{width:60.077615pt;}
._17{width:61.118752pt;}
._2b{width:62.959060pt;}
._23{width:66.224399pt;}
._95{width:67.288062pt;}
._32{width:69.381343pt;}
._36{width:73.247348pt;}
._1b{width:77.324302pt;}
._4e{width:82.745291pt;}
._26{width:83.827876pt;}
._40{width:85.938367pt;}
._3b{width:88.976543pt;}
._3a{width:90.233438pt;}
._44{width:91.132196pt;}
._1a{width:92.992942pt;}
._93{width:98.150589pt;}
._35{width:99.409370pt;}
._21{width:101.312615pt;}
._3c{width:102.936910pt;}
._1c{width:104.419366pt;}
._49{width:108.529257pt;}
._1f{width:110.456427pt;}
._37{width:111.603571pt;}
._20{width:113.405606pt;}
._33{width:121.986717pt;}
._34{width:123.671334pt;}
._29{width:124.832034pt;}
._41{width:126.638579pt;}
._98{width:127.975406pt;}
._75{width:130.926853pt;}
._79{width:133.642577pt;}
._3e{width:134.677728pt;}
._59{width:135.791937pt;}
._7f{width:137.481050pt;}
._45{width:138.739286pt;}
._73{width:145.586622pt;}
._6d{width:146.803678pt;}
._2d{width:149.089483pt;}
._1d{width:150.471493pt;}
._38{width:151.881865pt;}
._4c{width:152.841252pt;}
._27{width:153.741347pt;}
._67{width:154.695892pt;}
._85{width:156.064639pt;}
._28{width:157.827317pt;}
._2f{width:160.904315pt;}
._42{width:166.106638pt;}
._24{width:167.668495pt;}
._72{width:169.418679pt;}
._5c{width:171.350112pt;}
._5d{width:174.208466pt;}
._4b{width:175.919926pt;}
._5b{width:177.185558pt;}
._64{width:178.388502pt;}
._39{width:180.364029pt;}
._30{width:182.256387pt;}
._18{width:183.874577pt;}
._99{width:184.920736pt;}
._1e{width:186.912765pt;}
._4f{width:188.140953pt;}
._43{width:189.568917pt;}
._46{width:194.409940pt;}
._50{width:198.538452pt;}
._66{width:201.291266pt;}
._22{width:205.360828pt;}
._48{width:206.604152pt;}
._87{width:216.754833pt;}
._80{width:217.769761pt;}
._88{width:219.044754pt;}
._19{width:224.297976pt;}
._3d{width:231.316687pt;}
._89{width:238.758347pt;}
._25{width:239.956250pt;}
._47{width:241.424072pt;}
._5e{width:242.849107pt;}
._97{width:250.752718pt;}
._8d{width:251.939723pt;}
._6c{width:255.561841pt;}
._86{width:260.682149pt;}
._65{width:264.290749pt;}
._76{width:288.044291pt;}
._7a{width:294.020047pt;}
._5a{width:296.978904pt;}
._8e{width:303.062463pt;}
._81{width:304.689700pt;}
._6e{width:306.684581pt;}
._5f{width:308.298278pt;}
._8f{width:327.955397pt;}
._6f{width:331.563974pt;}
._74{width:340.416770pt;}
._8c{width:345.634574pt;}
._77{width:347.477329pt;}
._6b{width:349.572860pt;}
._69{width:352.740174pt;}
._8b{width:361.082979pt;}
._6a{width:364.696077pt;}
._83{width:407.402121pt;}
._61{width:411.015219pt;}
._62{width:414.781309pt;}
._84{width:461.510929pt;}
._63{width:465.128526pt;}
._8a{width:485.959596pt;}
._68{width:489.568152pt;}
._82{width:517.989199pt;}
._60{width:521.611339pt;}
._71{width:540.801645pt;}
._7e{width:652.898617pt;}
._58{width:655.621941pt;}
._96{width:683.016140pt;}
._90{width:723.560704pt;}
._70{width:727.611348pt;}
._94{width:769.129347pt;}
._51{width:1774.259410pt;}
._16{width:2190.053938pt;}
.fsa{font-size:30.106132pt;}
.fs7{font-size:34.666667pt;}
.fs6{font-size:35.418666pt;}
.fs2{font-size:42.507734pt;}
.fs8{font-size:43.643733pt;}
.fs9{font-size:44.547735pt;}
.fs3{font-size:45.163732pt;}
.fs1{font-size:53.133865pt;}
.fs0{font-size:55.790400pt;}
.fs4{font-size:62.963735pt;}
.fs5{font-size:92.612264pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:47.215322pt;}
.y42{bottom:102.650523pt;}
.y206{bottom:102.651115pt;}
.y166{bottom:102.651654pt;}
.ya8{bottom:102.653139pt;}
.y15c{bottom:102.655843pt;}
.y1e8{bottom:102.661888pt;}
.ycf{bottom:102.664014pt;}
.y31{bottom:102.666707pt;}
.y7c{bottom:102.672235pt;}
.y1cb{bottom:102.811750pt;}
.y191{bottom:107.262675pt;}
.y197{bottom:109.929198pt;}
.y104{bottom:110.300130pt;}
.y41{bottom:115.954631pt;}
.y205{bottom:115.955222pt;}
.y165{bottom:115.955761pt;}
.ya7{bottom:119.282710pt;}
.y15b{bottom:119.285413pt;}
.y1e7{bottom:119.291459pt;}
.yce{bottom:119.293585pt;}
.y30{bottom:119.296285pt;}
.y7b{bottom:119.301806pt;}
.y196{bottom:121.066537pt;}
.y103{bottom:127.232013pt;}
.y40{bottom:129.183075pt;}
.y204{bottom:129.183679pt;}
.y164{bottom:129.259867pt;}
.y1ca{bottom:129.872728pt;}
.y195{bottom:132.203866pt;}
.ya6{bottom:135.836565pt;}
.y15a{bottom:135.839269pt;}
.y1e6{bottom:135.845314pt;}
.ycd{bottom:135.847440pt;}
.y2f{bottom:135.850138pt;}
.y7a{bottom:135.855661pt;}
.y3f{bottom:142.487183pt;}
.y203{bottom:142.487785pt;}
.y194{bottom:143.341063pt;}
.y102{bottom:144.163897pt;}
.y1c9{bottom:146.804612pt;}
.ya4{bottom:150.273997pt;}
.ya5{bottom:152.466136pt;}
.ya3{bottom:152.470198pt;}
.y1e5{bottom:152.474885pt;}
.ycc{bottom:152.477011pt;}
.y2e{bottom:152.479706pt;}
.y79{bottom:152.485232pt;}
.y193{bottom:154.477997pt;}
.y3e{bottom:155.791290pt;}
.y202{bottom:155.791892pt;}
.y163{bottom:156.809927pt;}
.y101{bottom:161.095781pt;}
.y1c8{bottom:163.736495pt;}
.y190{bottom:165.614267pt;}
.y201{bottom:169.095998pt;}
.y159{bottom:169.098410pt;}
.ya2{bottom:169.099768pt;}
.y1e4{bottom:169.104456pt;}
.ycb{bottom:169.106581pt;}
.y2d{bottom:169.109283pt;}
.y78{bottom:169.114803pt;}
.y18f{bottom:176.751596pt;}
.y100{bottom:178.027664pt;}
.y1c7{bottom:180.668379pt;}
.y3d{bottom:182.323873pt;}
.y162{bottom:184.972261pt;}
.y1e3{bottom:185.658311pt;}
.yca{bottom:185.660437pt;}
.y2c{bottom:185.663127pt;}
.y77{bottom:185.668658pt;}
.y18e{bottom:187.888396pt;}
.yff{bottom:191.331771pt;}
.y3c{bottom:195.627970pt;}
.y1c6{bottom:197.600263pt;}
.y18d{bottom:199.025330pt;}
.y158{bottom:202.281838pt;}
.ya1{bottom:202.283196pt;}
.y1e2{bottom:202.287882pt;}
.yc9{bottom:202.290007pt;}
.y2b{bottom:202.292704pt;}
.y200{bottom:202.297177pt;}
.y76{bottom:202.298229pt;}
.yfe{bottom:204.635877pt;}
.y3b{bottom:208.932088pt;}
.y161{bottom:213.235994pt;}
.y1c5{bottom:214.532146pt;}
.y157{bottom:218.911409pt;}
.y1e1{bottom:218.917453pt;}
.yc8{bottom:218.919578pt;}
.y2a{bottom:218.922282pt;}
.y1ff{bottom:218.926748pt;}
.y75{bottom:218.927800pt;}
.yfd{bottom:221.567761pt;}
.y3a{bottom:222.159017pt;}
.y19f{bottom:223.520153pt;}
.y18c{bottom:230.619059pt;}
.y1c4{bottom:231.464030pt;}
.y156{bottom:235.465264pt;}
.y1e0{bottom:235.471308pt;}
.y29{bottom:235.476135pt;}
.y1fe{bottom:235.480603pt;}
.y74{bottom:235.481655pt;}
.y19e{bottom:236.824259pt;}
.yfc{bottom:238.499645pt;}
.y18b{bottom:241.530127pt;}
.y160{bottom:241.649661pt;}
.y1c3{bottom:248.395913pt;}
.y39{bottom:248.767232pt;}
.y19d{bottom:250.052716pt;}
.y155{bottom:252.094835pt;}
.ya0{bottom:252.097522pt;}
.y1df{bottom:252.100879pt;}
.yc7{bottom:252.104333pt;}
.y28{bottom:252.105713pt;}
.y1fd{bottom:252.110174pt;}
.y73{bottom:252.111226pt;}
.y18a{bottom:252.441077pt;}
.yfb{bottom:255.431528pt;}
.y38{bottom:262.071350pt;}
.y189{bottom:263.351742pt;}
.y19c{bottom:263.356823pt;}
.y1c2{bottom:265.327797pt;}
.y27{bottom:268.659566pt;}
.y154{bottom:268.724406pt;}
.y9f{bottom:268.727093pt;}
.y1de{bottom:268.730450pt;}
.y152{bottom:268.733728pt;}
.y1fc{bottom:268.739744pt;}
.y72{bottom:268.740797pt;}
.y15f{bottom:269.942861pt;}
.yfa{bottom:272.363412pt;}
.y188{bottom:274.262529pt;}
.y153{bottom:274.620402pt;}
.y37{bottom:275.299805pt;}
.y19b{bottom:276.660929pt;}
.y1c1{bottom:282.259681pt;}
.y187{bottom:285.173865pt;}
.y9e{bottom:285.280948pt;}
.y1dd{bottom:285.284305pt;}
.y151{bottom:285.287583pt;}
.y26{bottom:285.289124pt;}
.y1fb{bottom:285.293600pt;}
.y71{bottom:285.294652pt;}
.y36{bottom:288.603923pt;}
.yf9{bottom:289.295296pt;}
.y19a{bottom:289.965036pt;}
.y186{bottom:296.084672pt;}
.y15e{bottom:298.270728pt;}
.y1c0{bottom:299.191564pt;}
.y9d{bottom:301.910519pt;}
.y1dc{bottom:301.913876pt;}
.y150{bottom:301.917154pt;}
.y25{bottom:301.918701pt;}
.y1fa{bottom:301.923170pt;}
.y70{bottom:301.924223pt;}
.yf8{bottom:302.599402pt;}
.y199{bottom:303.193493pt;}
.y185{bottom:306.995337pt;}
.y24c{bottom:310.519931pt;}
.y27d{bottom:311.204035pt;}
.y35{bottom:315.212138pt;}
.y1bf{bottom:316.123448pt;}
.y198{bottom:316.497599pt;}
.y184{bottom:317.906270pt;}
.y1db{bottom:318.467731pt;}
.y24{bottom:318.472555pt;}
.y1f9{bottom:318.477026pt;}
.y9c{bottom:318.540090pt;}
.y14f{bottom:318.546725pt;}
.y6f{bottom:318.553794pt;}
.yf7{bottom:319.531286pt;}
.y24b{bottom:323.899686pt;}
.y27c{bottom:324.583789pt;}
.y15d{bottom:326.557861pt;}
.y34{bottom:328.440592pt;}
.yc6{bottom:329.131167pt;}
.y1be{bottom:333.055332pt;}
.y9b{bottom:335.093945pt;}
.y1da{bottom:335.097302pt;}
.y14e{bottom:335.100580pt;}
.y23{bottom:335.102132pt;}
.y1f8{bottom:335.106597pt;}
.y6e{bottom:335.107649pt;}
.yf6{bottom:336.463169pt;}
.y24a{bottom:337.203792pt;}
.y27b{bottom:337.887896pt;}
.y33{bottom:341.744710pt;}
.yc5{bottom:345.685022pt;}
.y1bd{bottom:349.987215pt;}
.y249{bottom:350.507899pt;}
.y127{bottom:351.055774pt;}
.y9a{bottom:351.723516pt;}
.y1d9{bottom:351.726873pt;}
.y14d{bottom:351.730151pt;}
.y22{bottom:351.731689pt;}
.y1f7{bottom:351.736167pt;}
.y6d{bottom:351.737220pt;}
.y27a{bottom:352.552560pt;}
.yf5{bottom:353.395053pt;}
.y32{bottom:355.048787pt;}
.yc4{bottom:362.314593pt;}
.y248{bottom:363.812005pt;}
.y279{bottom:365.856666pt;}
.y1bc{bottom:366.919099pt;}
.y126{bottom:367.685344pt;}
.y16e{bottom:368.052988pt;}
.y176{bottom:368.055650pt;}
.y1d8{bottom:368.280728pt;}
.y21{bottom:368.285563pt;}
.y1f6{bottom:368.290023pt;}
.y99{bottom:368.353087pt;}
.y14c{bottom:368.359722pt;}
.y6c{bottom:368.366791pt;}
.yf4{bottom:370.326937pt;}
.y247{bottom:377.191760pt;}
.yc3{bottom:378.944164pt;}
.y278{bottom:379.160773pt;}
.y1bb{bottom:383.850983pt;}
.y125{bottom:384.314915pt;}
.y16d{bottom:384.682559pt;}
.y175{bottom:384.685220pt;}
.y98{bottom:384.906942pt;}
.y1d7{bottom:384.910299pt;}
.y14b{bottom:384.913577pt;}
.y20{bottom:384.915120pt;}
.y1f5{bottom:384.919593pt;}
.y6b{bottom:384.920646pt;}
.yf3{bottom:387.258820pt;}
.y246{bottom:390.495867pt;}
.y277{bottom:393.825437pt;}
.yc2{bottom:395.498019pt;}
.yf2{bottom:400.562927pt;}
.y1ba{bottom:400.782866pt;}
.y124{bottom:400.868771pt;}
.y16c{bottom:401.236414pt;}
.y174{bottom:401.239076pt;}
.y1d6{bottom:401.539870pt;}
.y14a{bottom:401.543148pt;}
.y1f{bottom:401.544718pt;}
.y1f4{bottom:401.549164pt;}
.y6a{bottom:401.550217pt;}
.y97{bottom:401.563497pt;}
.y245{bottom:403.799973pt;}
.y276{bottom:407.129543pt;}
.yc1{bottom:412.127590pt;}
.yf1{bottom:413.867033pt;}
.y15{bottom:414.543905pt;}
.y244{bottom:417.104080pt;}
.y123{bottom:417.498341pt;}
.y1b9{bottom:417.790398pt;}
.y16b{bottom:417.865985pt;}
.y173{bottom:417.868646pt;}
.y1d5{bottom:418.093725pt;}
.y1e{bottom:418.098551pt;}
.y1f3{bottom:418.103019pt;}
.y149{bottom:418.172718pt;}
.y69{bottom:418.179788pt;}
.y96{bottom:418.193067pt;}
.y275{bottom:421.794207pt;}
.yf0{bottom:427.095490pt;}
.yc0{bottom:428.757161pt;}
.y243{bottom:430.483835pt;}
.y14{bottom:431.097778pt;}
.y122{bottom:434.127912pt;}
.y16a{bottom:434.495556pt;}
.y172{bottom:434.498217pt;}
.y1b8{bottom:434.722282pt;}
.y1d4{bottom:434.723296pt;}
.y148{bottom:434.726574pt;}
.y1d{bottom:434.728149pt;}
.y1f2{bottom:434.732590pt;}
.y68{bottom:434.733643pt;}
.y95{bottom:434.746923pt;}
.y274{bottom:435.098313pt;}
.y242{bottom:443.787941pt;}
.yef{bottom:444.027374pt;}
.ybf{bottom:445.311016pt;}
.y13{bottom:447.727336pt;}
.y273{bottom:448.478068pt;}
.y121{bottom:450.681767pt;}
.y169{bottom:451.049411pt;}
.y171{bottom:451.052072pt;}
.y1d3{bottom:451.352866pt;}
.y147{bottom:451.356145pt;}
.y1c{bottom:451.357707pt;}
.y1f1{bottom:451.362161pt;}
.y67{bottom:451.363214pt;}
.y94{bottom:451.376494pt;}
.y1b7{bottom:451.654165pt;}
.y241{bottom:457.092048pt;}
.yee{bottom:461.034906pt;}
.ybe{bottom:461.940587pt;}
.y272{bottom:463.142732pt;}
.y12{bottom:464.356893pt;}
.y120{bottom:467.311338pt;}
.y168{bottom:467.678982pt;}
.y170{bottom:467.681643pt;}
.y1d2{bottom:467.906722pt;}
.y1b{bottom:467.911540pt;}
.y1f0{bottom:467.916016pt;}
.y146{bottom:467.985715pt;}
.y66{bottom:467.992784pt;}
.y93{bottom:468.006064pt;}
.y1b6{bottom:468.586049pt;}
.y240{bottom:470.396154pt;}
.y271{bottom:476.446838pt;}
.yed{bottom:477.966789pt;}
.ybd{bottom:478.570158pt;}
.y11{bottom:480.910767pt;}
.y23f{bottom:483.775909pt;}
.y11f{bottom:483.940909pt;}
.y167{bottom:484.308553pt;}
.y16f{bottom:484.311214pt;}
.y1d1{bottom:484.536293pt;}
.y145{bottom:484.539571pt;}
.y1a{bottom:484.541138pt;}
.y1ef{bottom:484.545587pt;}
.y65{bottom:484.546640pt;}
.y92{bottom:484.559920pt;}
.y1b5{bottom:485.517933pt;}
.y270{bottom:489.750945pt;}
.yec{bottom:494.898673pt;}
.ybc{bottom:495.124013pt;}
.y23e{bottom:497.080016pt;}
.y10{bottom:497.540324pt;}
.y1d0{bottom:501.165863pt;}
.y144{bottom:501.169141pt;}
.y19{bottom:501.170695pt;}
.y1ee{bottom:501.175158pt;}
.y64{bottom:501.176211pt;}
.y91{bottom:501.189490pt;}
.y26f{bottom:504.415609pt;}
.y23d{bottom:510.384122pt;}
.ybb{bottom:511.753584pt;}
.yeb{bottom:511.830557pt;}
.y1b4{bottom:512.805860pt;}
.yf{bottom:514.169922pt;}
.y11e{bottom:517.124337pt;}
.y26e{bottom:517.706292pt;}
.y1cf{bottom:517.719719pt;}
.y1ed{bottom:517.729013pt;}
.y143{bottom:517.798712pt;}
.y63{bottom:517.805781pt;}
.y90{bottom:517.819061pt;}
.y23c{bottom:523.688229pt;}
.yba{bottom:528.307439pt;}
.yea{bottom:528.762440pt;}
.ye{bottom:530.723755pt;}
.y26d{bottom:531.010399pt;}
.y11d{bottom:533.753908pt;}
.y183{bottom:534.206930pt;}
.y1ce{bottom:534.349289pt;}
.y142{bottom:534.352567pt;}
.y18{bottom:534.354126pt;}
.y1ec{bottom:534.358584pt;}
.y62{bottom:534.359637pt;}
.y8f{bottom:534.372916pt;}
.y23b{bottom:537.067984pt;}
.y1b3{bottom:537.977865pt;}
.yb9{bottom:544.937010pt;}
.y26c{bottom:545.675063pt;}
.ye9{bottom:545.694324pt;}
.yd{bottom:547.353353pt;}
.y23a{bottom:550.372090pt;}
.y1cd{bottom:550.978860pt;}
.y141{bottom:550.982138pt;}
.y1eb{bottom:550.988155pt;}
.y61{bottom:550.989207pt;}
.y8e{bottom:551.002487pt;}
.y26b{bottom:558.979169pt;}
.y182{bottom:561.267908pt;}
.yb8{bottom:561.566581pt;}
.ye8{bottom:562.626208pt;}
.y239{bottom:563.676197pt;}
.yc{bottom:563.982910pt;}
.y11c{bottom:567.240198pt;}
.y1ea{bottom:567.542010pt;}
.y140{bottom:567.611709pt;}
.y60{bottom:567.618778pt;}
.y1a7{bottom:570.862274pt;}
.y1af{bottom:570.864935pt;}
.y26a{bottom:572.358924pt;}
.y238{bottom:576.980303pt;}
.yb7{bottom:578.120436pt;}
.y181{bottom:578.199791pt;}
.ye7{bottom:579.558091pt;}
.yb{bottom:580.536743pt;}
.y11b{bottom:583.869769pt;}
.y1cc{bottom:584.163615pt;}
.y13f{bottom:584.165564pt;}
.y1e9{bottom:584.171581pt;}
.y5f{bottom:584.172633pt;}
.y8d{bottom:584.187242pt;}
.y269{bottom:587.023588pt;}
.y1a6{bottom:587.491845pt;}
.y1ae{bottom:587.494506pt;}
.y237{bottom:590.360058pt;}
.ye6{bottom:592.862198pt;}
.yb6{bottom:594.750007pt;}
.y180{bottom:595.131675pt;}
.ya{bottom:597.166341pt;}
.y268{bottom:600.327694pt;}
.y11a{bottom:600.423624pt;}
.y13e{bottom:600.795135pt;}
.y5e{bottom:600.802204pt;}
.y236{bottom:603.664165pt;}
.y1a5{bottom:604.121416pt;}
.y1ad{bottom:604.124077pt;}
.ye5{bottom:609.794081pt;}
.yb5{bottom:611.379578pt;}
.y17f{bottom:612.063559pt;}
.y267{bottom:613.631801pt;}
.y9{bottom:613.795898pt;}
.y235{bottom:616.968271pt;}
.y119{bottom:617.053195pt;}
.y13d{bottom:617.348990pt;}
.y5d{bottom:617.356060pt;}
.y1a4{bottom:620.675271pt;}
.y1ac{bottom:620.677932pt;}
.ye4{bottom:626.725965pt;}
.y266{bottom:626.935907pt;}
.yb4{bottom:627.933433pt;}
.y17e{bottom:628.995442pt;}
.y234{bottom:630.272378pt;}
.y8{bottom:630.349772pt;}
.y17{bottom:630.353760pt;}
.y118{bottom:633.682766pt;}
.y13c{bottom:633.978561pt;}
.y5c{bottom:633.985630pt;}
.y8c{bottom:634.001568pt;}
.y1a3{bottom:637.304842pt;}
.y1ab{bottom:637.307503pt;}
.y265{bottom:641.600571pt;}
.y233{bottom:643.652133pt;}
.ye3{bottom:643.657849pt;}
.yb3{bottom:644.563004pt;}
.y17d{bottom:646.002974pt;}
.y7{bottom:646.979329pt;}
.y16{bottom:646.983317pt;}
.y117{bottom:650.236621pt;}
.y13b{bottom:650.608132pt;}
.y5b{bottom:650.615201pt;}
.y8b{bottom:650.631139pt;}
.y1a2{bottom:653.934412pt;}
.y1aa{bottom:653.937074pt;}
.y264{bottom:654.904678pt;}
.y220{bottom:656.580488pt;}
.y232{bottom:656.956239pt;}
.ye2{bottom:660.589732pt;}
.yb2{bottom:661.192575pt;}
.y17c{bottom:662.934858pt;}
.y116{bottom:666.866192pt;}
.y13a{bottom:667.161987pt;}
.y5a{bottom:667.169056pt;}
.y8a{bottom:667.184994pt;}
.y263{bottom:668.284433pt;}
.y231{bottom:670.260346pt;}
.y1a1{bottom:670.488268pt;}
.y1a9{bottom:670.490929pt;}
.y21f{bottom:673.512372pt;}
.ye1{bottom:677.521616pt;}
.yb1{bottom:677.746430pt;}
.y17b{bottom:679.866741pt;}
.y6{bottom:680.389893pt;}
.y262{bottom:681.588539pt;}
.y115{bottom:683.495763pt;}
.y230{bottom:683.564452pt;}
.y59{bottom:683.798627pt;}
.y139{bottom:683.809295pt;}
.y1a0{bottom:687.117839pt;}
.y1a8{bottom:687.120500pt;}
.y21e{bottom:690.444256pt;}
.y5{bottom:692.560384pt;}
.yb0{bottom:694.376001pt;}
.ye0{bottom:694.453499pt;}
.y261{bottom:696.253203pt;}
.y17a{bottom:696.798625pt;}
.y22f{bottom:696.944207pt;}
.y114{bottom:700.049618pt;}
.y58{bottom:700.428198pt;}
.y138{bottom:700.438866pt;}
.y89{bottom:700.444136pt;}
.y21c{bottom:705.486409pt;}
.y21d{bottom:707.376139pt;}
.y21b{bottom:707.378179pt;}
.y260{bottom:709.557309pt;}
.y22e{bottom:710.248314pt;}
.yaf{bottom:711.005571pt;}
.ydf{bottom:711.385383pt;}
.y179{bottom:713.730509pt;}
.y113{bottom:716.679189pt;}
.y57{bottom:716.982053pt;}
.y137{bottom:716.992721pt;}
.y25f{bottom:722.861416pt;}
.y22d{bottom:723.552420pt;}
.y21a{bottom:724.310063pt;}
.yde{bottom:724.689490pt;}
.yae{bottom:727.559427pt;}
.y178{bottom:730.662392pt;}
.y112{bottom:733.308760pt;}
.y56{bottom:733.611624pt;}
.y136{bottom:733.622292pt;}
.y88{bottom:733.627563pt;}
.y22c{bottom:736.856527pt;}
.y25e{bottom:737.526080pt;}
.ydd{bottom:737.917946pt;}
.y219{bottom:741.241947pt;}
.yad{bottom:744.188998pt;}
.y177{bottom:747.594276pt;}
.y111{bottom:749.862615pt;}
.y55{bottom:750.241195pt;}
.y135{bottom:750.251863pt;}
.y25d{bottom:750.830186pt;}
.ydc{bottom:751.222053pt;}
.y218{bottom:758.173830pt;}
.y25c{bottom:764.209941pt;}
.ydb{bottom:764.526160pt;}
.y110{bottom:766.492186pt;}
.y54{bottom:766.795050pt;}
.y134{bottom:766.805718pt;}
.y4{bottom:767.621826pt;}
.y22b{bottom:773.442301pt;}
.y217{bottom:775.105714pt;}
.yac{bottom:777.373752pt;}
.y25b{bottom:778.798955pt;}
.yda{bottom:781.458043pt;}
.y10f{bottom:783.121757pt;}
.y53{bottom:783.424621pt;}
.y133{bottom:783.435289pt;}
.y3{bottom:784.176107pt;}
.y215{bottom:790.147705pt;}
.y216{bottom:792.037598pt;}
.y214{bottom:792.039429pt;}
.y25a{bottom:792.178710pt;}
.yab{bottom:794.003323pt;}
.yd9{bottom:798.389927pt;}
.y10e{bottom:799.675612pt;}
.y52{bottom:800.054192pt;}
.y132{bottom:800.064860pt;}
.y87{bottom:800.071460pt;}
.y2{bottom:800.806152pt;}
.y259{bottom:805.482816pt;}
.y213{bottom:808.971313pt;}
.yaa{bottom:810.632894pt;}
.yd8{bottom:815.321810pt;}
.y10d{bottom:816.305183pt;}
.y51{bottom:816.608047pt;}
.y131{bottom:816.618715pt;}
.y86{bottom:816.625315pt;}
.y258{bottom:818.786923pt;}
.y22a{bottom:823.254824pt;}
.y212{bottom:825.903196pt;}
.yd7{bottom:832.253694pt;}
.y10c{bottom:832.934753pt;}
.y50{bottom:833.237618pt;}
.y130{bottom:833.248286pt;}
.y85{bottom:833.254886pt;}
.y257{bottom:833.451587pt;}
.y229{bottom:836.558931pt;}
.y47{bottom:840.339193pt;}
.y211{bottom:842.835080pt;}
.y256{bottom:846.755693pt;}
.yd6{bottom:849.185578pt;}
.y228{bottom:849.863037pt;}
.y4f{bottom:849.867189pt;}
.y12f{bottom:849.877857pt;}
.y84{bottom:849.884457pt;}
.y10a{bottom:856.592431pt;}
.y210{bottom:859.766963pt;}
.y255{bottom:860.135448pt;}
.y227{bottom:863.091494pt;}
.yd5{bottom:866.117461pt;}
.y10b{bottom:866.118181pt;}
.y4e{bottom:866.421044pt;}
.y12e{bottom:866.431712pt;}
.y83{bottom:866.438312pt;}
.y46{bottom:866.872640pt;}
.y109{bottom:873.524315pt;}
.y254{bottom:874.724462pt;}
.y20e{bottom:874.884766pt;}
.y226{bottom:876.395601pt;}
.y20f{bottom:876.774495pt;}
.y20d{bottom:876.774899pt;}
.yd4{bottom:883.049345pt;}
.y4d{bottom:883.050615pt;}
.y12d{bottom:883.061283pt;}
.y82{bottom:883.067883pt;}
.y253{bottom:888.104217pt;}
.y225{bottom:889.699707pt;}
.y108{bottom:890.456198pt;}
.y45{bottom:893.480143pt;}
.y4c{bottom:899.680186pt;}
.y12c{bottom:899.690853pt;}
.y81{bottom:899.697454pt;}
.yd3{bottom:899.981229pt;}
.y252{bottom:901.408323pt;}
.y20b{bottom:902.173096pt;}
.y224{bottom:903.003814pt;}
.y107{bottom:903.760305pt;}
.y20c{bottom:904.062826pt;}
.y20a{bottom:904.062904pt;}
.y251{bottom:914.712430pt;}
.y223{bottom:916.232270pt;}
.y4b{bottom:916.234041pt;}
.y12b{bottom:916.244709pt;}
.y80{bottom:916.251309pt;}
.yd2{bottom:916.913112pt;}
.y106{bottom:917.064412pt;}
.y250{bottom:928.016536pt;}
.y222{bottom:929.536377pt;}
.y209{bottom:930.972585pt;}
.y4a{bottom:932.863612pt;}
.y12a{bottom:932.874280pt;}
.y7f{bottom:932.880880pt;}
.y24f{bottom:942.681200pt;}
.y221{bottom:942.840484pt;}
.y1b2{bottom:944.125348pt;}
.yd1{bottom:944.276689pt;}
.y105{bottom:944.352339pt;}
.y49{bottom:949.493183pt;}
.y129{bottom:949.503850pt;}
.y7e{bottom:949.510451pt;}
.y24e{bottom:955.985307pt;}
.y208{bottom:956.144590pt;}
.y1b1{bottom:957.429455pt;}
.y1{bottom:957.580973pt;}
.y48{bottom:966.047038pt;}
.y128{bottom:966.057706pt;}
.y7d{bottom:966.064306pt;}
.y207{bottom:967.483236pt;}
.y24d{bottom:969.365062pt;}
.yd0{bottom:969.373047pt;}
.y1b0{bottom:970.733561pt;}
.y44{bottom:986.302653pt;}
.ya9{bottom:1001.347900pt;}
.y43{bottom:1001.571370pt;}
.h17{height:20.923762pt;}
.hf{height:21.909333pt;}
.hc{height:24.580554pt;}
.he{height:24.615973pt;}
.h10{height:28.019276pt;}
.h12{height:28.019780pt;}
.h13{height:28.019861pt;}
.h11{height:28.020350pt;}
.h14{height:28.599646pt;}
.h15{height:28.600180pt;}
.h5{height:30.440355pt;}
.hd{height:31.343630pt;}
.h4{height:31.388794pt;}
.ha{height:31.394897pt;}
.h9{height:32.608214pt;}
.h3{height:36.024761pt;}
.h6{height:36.928036pt;}
.h2{height:38.774328pt;}
.h7{height:47.512346pt;}
.h8{height:47.815081pt;}
.hb{height:62.791115pt;}
.h16{height:219.219991pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:415.744019pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1b{left:73.776398pt;}
.x1{left:75.590535pt;}
.x8{left:79.369824pt;}
.x5{left:83.152046pt;}
.xe{left:86.216929pt;}
.x19{left:128.503866pt;}
.x1a{left:140.144796pt;}
.x9{left:171.061232pt;}
.x14{left:254.362142pt;}
.x15{left:263.055074pt;}
.xa{left:269.252826pt;}
.x16{left:308.485301pt;}
.x11{left:309.781067pt;}
.xf{left:315.301208pt;}
.x12{left:316.486125pt;}
.x3{left:408.187826pt;}
.xb{left:419.527279pt;}
.x4{left:423.309733pt;}
.x1c{left:426.630451pt;}
.x13{left:443.888069pt;}
.x10{left:445.765340pt;}
.xc{left:511.218688pt;}
.xd{left:520.138550pt;}
.x17{left:563.451864pt;}
.x18{left:575.168416pt;}
.x6{left:693.694417pt;}
.x7{left:717.051839pt;}
}




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