
    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_87a480e83e368ac6918d47f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927000;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_0845cbf0cc86e8b813fa0f30.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3d6144158e625be08efe9a86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_092dc63f7d0fb74e778e847f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.142000;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_b70e84a466503bb968c37979.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1f68c53d66d16cafb2a3b7bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.590000;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_53b586fe79211d25ba2c5d0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967000;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_9cc5abb813a33a3f4d639562.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695000;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_773d557fd82d6d84a175e662.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_6cb394f2e6cbb5450a7551a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.286000;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_8dfcbd607a07df7882afe7d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.774000;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_12cd46d5a6714113b51c9222.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239993,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247585,0.000000,-0.034662,0.247585,0,0);-ms-transform:matrix(0.247585,0.000000,-0.034662,0.247585,0,0);-webkit-transform:matrix(0.247585,0.000000,-0.034662,0.247585,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.253742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-21.769800px;}
.v2{vertical-align:-16.668000px;}
.v4{vertical-align:-10.916082px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.664088px;}
.v3{vertical-align:18.692318px;}
.v5{vertical-align:21.770400px;}
.lsb{letter-spacing:-0.014346px;}
.lsa{letter-spacing:-0.009564px;}
.ls9{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.003604px;}
.ls65{letter-spacing:0.004782px;}
.ls37{letter-spacing:0.010760px;}
.ls28{letter-spacing:0.021519px;}
.ls1d{letter-spacing:0.028781px;}
.ls43{letter-spacing:0.029381px;}
.ls24{letter-spacing:0.033802px;}
.ls2e{letter-spacing:0.044110px;}
.ls1b{letter-spacing:0.044710px;}
.ls10{letter-spacing:0.047064px;}
.ls12{letter-spacing:0.047664px;}
.ls1c{letter-spacing:0.056956px;}
.ls1f{letter-spacing:0.060180px;}
.ls5{letter-spacing:0.069937px;}
.ls23{letter-spacing:0.075317px;}
.ls7{letter-spacing:0.088014px;}
.ls14{letter-spacing:0.112975px;}
.ls25{letter-spacing:0.123735px;}
.ls6{letter-spacing:0.133899px;}
.ls19{letter-spacing:0.166765px;}
.ls2c{letter-spacing:0.169520px;}
.ls3c{letter-spacing:0.220614px;}
.ls38{letter-spacing:0.224710px;}
.ls35{letter-spacing:0.224839px;}
.ls4{letter-spacing:0.225951px;}
.ls2{letter-spacing:0.236710px;}
.ls48{letter-spacing:0.285128px;}
.lsf{letter-spacing:0.312027px;}
.ls1e{letter-spacing:0.338926px;}
.ls4e{letter-spacing:0.365825px;}
.ls22{letter-spacing:0.374002px;}
.ls3e{letter-spacing:0.384910px;}
.lse{letter-spacing:8.844358px;}
.ls36{letter-spacing:8.851200px;}
.ls34{letter-spacing:8.855118px;}
.ls3{letter-spacing:9.183284px;}
.ls5b{letter-spacing:10.941182px;}
.ls5c{letter-spacing:10.996270px;}
.ls4a{letter-spacing:11.270110px;}
.ls5a{letter-spacing:11.598802px;}
.ls57{letter-spacing:11.939602px;}
.ls58{letter-spacing:11.961782px;}
.ls59{letter-spacing:12.018429px;}
.ls2d{letter-spacing:12.619402px;}
.ls4f{letter-spacing:12.630310px;}
.ls61{letter-spacing:13.239639px;}
.ls60{letter-spacing:13.266537px;}
.ls39{letter-spacing:13.273200px;}
.ls63{letter-spacing:13.288057px;}
.ls44{letter-spacing:13.310710px;}
.ls11{letter-spacing:13.313664px;}
.ls62{letter-spacing:13.325715px;}
.ls3b{letter-spacing:13.341854px;}
.ls2b{letter-spacing:13.450812px;}
.ls3a{letter-spacing:13.605464px;}
.ls3d{letter-spacing:13.613400px;}
.ls51{letter-spacing:13.643122px;}
.ls33{letter-spacing:13.650910px;}
.ls55{letter-spacing:13.718439px;}
.ls53{letter-spacing:13.980202px;}
.ls54{letter-spacing:14.002382px;}
.lsd{letter-spacing:14.283316px;}
.ls21{letter-spacing:14.299455px;}
.ls52{letter-spacing:14.310215px;}
.lsc{letter-spacing:14.627622px;}
.ls50{letter-spacing:14.670910px;}
.ls5e{letter-spacing:14.671510px;}
.ls4c{letter-spacing:15.011110px;}
.ls8{letter-spacing:15.026076px;}
.ls66{letter-spacing:15.278873px;}
.ls30{letter-spacing:15.491412px;}
.ls15{letter-spacing:15.669823px;}
.ls2f{letter-spacing:15.692110px;}
.ls2a{letter-spacing:15.831612px;}
.ls16{letter-spacing:16.032310px;}
.ls31{letter-spacing:16.327632px;}
.ls32{letter-spacing:16.371910px;}
.ls17{letter-spacing:16.712710px;}
.ls5f{letter-spacing:18.072910px;}
.ls3f{letter-spacing:18.753310px;}
.ls4d{letter-spacing:18.753910px;}
.ls56{letter-spacing:19.071320px;}
.ls13{letter-spacing:19.421006px;}
.ls4b{letter-spacing:20.454310px;}
.ls42{letter-spacing:20.749811px;}
.ls5d{letter-spacing:21.134110px;}
.ls46{letter-spacing:21.454563px;}
.ls45{letter-spacing:21.766590px;}
.ls20{letter-spacing:21.799181px;}
.ls29{letter-spacing:22.083997px;}
.ls27{letter-spacing:22.110896px;}
.ls26{letter-spacing:22.573557px;}
.ls47{letter-spacing:22.818509px;}
.ls49{letter-spacing:23.158709px;}
.ls1{letter-spacing:24.535510px;}
.ls0{letter-spacing:24.536110px;}
.ls41{letter-spacing:25.556110px;}
.ls1a{letter-spacing:28.607002px;}
.ls18{letter-spacing:36.410351px;}
.ls40{letter-spacing:38.142310px;}
.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;}
}
.wsa3{word-spacing:-36.464149px;}
.ws179{word-spacing:-21.508360px;}
.wsd0{word-spacing:-19.474804px;}
.ws26e{word-spacing:-15.326695px;}
.ws1ef{word-spacing:-13.696920px;}
.wsd{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.wsa2{word-spacing:-0.037657px;}
.ws101{word-spacing:-0.036043px;}
.ws67{word-spacing:0.000000px;}
.ws102{word-spacing:5.547048px;}
.ws125{word-spacing:8.629167px;}
.ws107{word-spacing:8.643504px;}
.wsa6{word-spacing:8.849738px;}
.ws9e{word-spacing:8.855118px;}
.ws99{word-spacing:9.194044px;}
.wsab{word-spacing:9.199424px;}
.ws17{word-spacing:9.204804px;}
.wsb4{word-spacing:9.210183px;}
.ws202{word-spacing:9.656705px;}
.ws95{word-spacing:9.732022px;}
.ws12b{word-spacing:9.861137px;}
.ws275{word-spacing:9.870296px;}
.ws1d7{word-spacing:9.882656px;}
.ws1df{word-spacing:9.931074px;}
.ws1bf{word-spacing:9.957973px;}
.ws1b9{word-spacing:10.216202px;}
.wsb6{word-spacing:10.404495px;}
.ws12c{word-spacing:10.415254px;}
.ws203{word-spacing:10.426014px;}
.ws276{word-spacing:10.468061px;}
.ws1a0{word-spacing:10.474432px;}
.ws258{word-spacing:10.501536px;}
.wsec{word-spacing:10.533609px;}
.wsb7{word-spacing:10.555128px;}
.ws12{word-spacing:10.625066px;}
.ws1d1{word-spacing:10.668104px;}
.ws205{word-spacing:10.738041px;}
.ws24d{word-spacing:10.793245px;}
.ws27d{word-spacing:10.903234px;}
.ws250{word-spacing:10.922362px;}
.ws285{word-spacing:10.936708px;}
.ws1fa{word-spacing:10.937093px;}
.ws27e{word-spacing:10.960619px;}
.ws84{word-spacing:10.963992px;}
.ws15b{word-spacing:11.028549px;}
.ws270{word-spacing:11.137557px;}
.wsdc{word-spacing:11.195322px;}
.ws111{word-spacing:11.216841px;}
.ws3a{word-spacing:11.222221px;}
.ws15d{word-spacing:11.238360px;}
.ws288{word-spacing:11.261893px;}
.ws6f{word-spacing:11.276019px;}
.ws1e5{word-spacing:11.292158px;}
.ws24a{word-spacing:11.300150px;}
.ws134{word-spacing:11.308298px;}
.ws263{word-spacing:11.357535px;}
.ws23b{word-spacing:11.371881px;}
.ws126{word-spacing:11.372855px;}
.ws273{word-spacing:11.381446px;}
.ws267{word-spacing:11.391010px;}
.ws235{word-spacing:11.405134px;}
.ws3c{word-spacing:11.421273px;}
.ws24f{word-spacing:11.424485px;}
.ws24e{word-spacing:11.434049px;}
.ws17b{word-spacing:11.469691px;}
.ws4f{word-spacing:11.515345px;}
.ws280{word-spacing:11.520127px;}
.ws201{word-spacing:11.523489px;}
.ws286{word-spacing:11.548820px;}
.ws177{word-spacing:11.555767px;}
.ws272{word-spacing:11.558384px;}
.ws1e7{word-spacing:11.561147px;}
.ws27c{word-spacing:11.582295px;}
.ws200{word-spacing:11.598806px;}
.ws183{word-spacing:11.609565px;}
.ws133{word-spacing:11.631084px;}
.ws213{word-spacing:11.636464px;}
.ws1cf{word-spacing:11.657983px;}
.ws25b{word-spacing:11.768797px;}
.ws27b{word-spacing:11.773579px;}
.ws26f{word-spacing:11.792708px;}
.ws251{word-spacing:11.807054px;}
.ws1e8{word-spacing:11.830136px;}
.ws25c{word-spacing:11.830965px;}
.ws17d{word-spacing:11.851655px;}
.ws15e{word-spacing:11.862415px;}
.ws268{word-spacing:11.888350px;}
.wsbd{word-spacing:11.900073px;}
.ws1f{word-spacing:11.921825px;}
.ws168{word-spacing:11.926972px;}
.ws50{word-spacing:11.979211px;}
.ws4e{word-spacing:11.983993px;}
.ws232{word-spacing:11.986150px;}
.ws264{word-spacing:11.998339px;}
.ws2c{word-spacing:12.034568px;}
.ws4d{word-spacing:12.050942px;}
.ws15a{word-spacing:12.061467px;}
.ws21{word-spacing:12.117892px;}
.ws257{word-spacing:12.141803px;}
.ws186{word-spacing:12.147543px;}
.ws60{word-spacing:12.170495px;}
.ws127{word-spacing:12.179822px;}
.ws25a{word-spacing:12.180060px;}
.ws1b1{word-spacing:12.217480px;}
.wsc3{word-spacing:12.228240px;}
.ws176{word-spacing:12.244379px;}
.ws191{word-spacing:12.255139px;}
.ws1e6{word-spacing:12.265898px;}
.wsbc{word-spacing:12.271278px;}
.wsb5{word-spacing:12.298177px;}
.wsf8{word-spacing:12.308937px;}
.ws140{word-spacing:12.335836px;}
.ws1d{word-spacing:12.432672px;}
.ws208{word-spacing:12.443431px;}
.ws128{word-spacing:12.448811px;}
.ws271{word-spacing:12.462205px;}
.wsb2{word-spacing:12.470330px;}
.ws215{word-spacing:12.481090px;}
.ws259{word-spacing:12.519590px;}
.wsb3{word-spacing:12.534887px;}
.ws21c{word-spacing:12.551027px;}
.ws22a{word-spacing:12.556407px;}
.wsfb{word-spacing:12.583305px;}
.ws167{word-spacing:12.599445px;}
.ws65{word-spacing:12.615584px;}
.ws1ec{word-spacing:12.620964px;}
.ws246{word-spacing:12.626344px;}
.ws63{word-spacing:12.631723px;}
.ws32{word-spacing:12.647863px;}
.wsb9{word-spacing:12.653243px;}
.ws1fc{word-spacing:12.658622px;}
.ws194{word-spacing:12.690901px;}
.ws146{word-spacing:12.771598px;}
.ws20f{word-spacing:12.857674px;}
.ws13d{word-spacing:12.879193px;}
.ws13f{word-spacing:12.895333px;}
.ws214{word-spacing:12.900712px;}
.ws234{word-spacing:12.911472px;}
.ws142{word-spacing:12.916852px;}
.ws15c{word-spacing:12.922232px;}
.wsf4{word-spacing:12.932991px;}
.ws17a{word-spacing:12.938371px;}
.ws206{word-spacing:12.949130px;}
.ws6b{word-spacing:12.954510px;}
.ws2d{word-spacing:12.965270px;}
.ws38{word-spacing:12.976029px;}
.wsc5{word-spacing:12.981409px;}
.ws157{word-spacing:12.992169px;}
.ws14{word-spacing:13.008308px;}
.ws13a{word-spacing:13.013688px;}
.ws11d{word-spacing:13.035207px;}
.ws23d{word-spacing:13.045966px;}
.ws23f{word-spacing:13.062106px;}
.ws1e{word-spacing:13.064752px;}
.wsc4{word-spacing:13.067486px;}
.ws1{word-spacing:13.083625px;}
.ws1ee{word-spacing:13.115904px;}
.ws7a{word-spacing:13.121283px;}
.ws1ad{word-spacing:13.137423px;}
.ws245{word-spacing:13.148182px;}
.ws68{word-spacing:13.164322px;}
.ws236{word-spacing:13.180461px;}
.ws144{word-spacing:13.191221px;}
.ws31{word-spacing:13.196600px;}
.ws1cb{word-spacing:13.223499px;}
.wsc6{word-spacing:13.228879px;}
.ws88{word-spacing:13.245018px;}
.ws64{word-spacing:13.266537px;}
.ws148{word-spacing:13.271917px;}
.wsda{word-spacing:13.277297px;}
.wsd9{word-spacing:13.288057px;}
.ws2{word-spacing:13.293436px;}
.wsdb{word-spacing:13.304196px;}
.ws35{word-spacing:13.314955px;}
.ws86{word-spacing:13.320335px;}
.ws6{word-spacing:13.336475px;}
.ws1e2{word-spacing:13.341854px;}
.wsb8{word-spacing:13.347234px;}
.ws143{word-spacing:13.368753px;}
.ws242{word-spacing:13.390272px;}
.ws108{word-spacing:13.405704px;}
.ws241{word-spacing:13.406412px;}
.ws3{word-spacing:13.411792px;}
.ws5{word-spacing:13.433311px;}
.ws11c{word-spacing:13.449450px;}
.ws1f1{word-spacing:13.481729px;}
.ws42{word-spacing:13.492488px;}
.ws62{word-spacing:13.503248px;}
.ws0{word-spacing:13.519387px;}
.ws13b{word-spacing:13.530147px;}
.ws7{word-spacing:13.551666px;}
.ws147{word-spacing:13.583945px;}
.ws1c3{word-spacing:13.589324px;}
.ws1f3{word-spacing:13.594704px;}
.wse2{word-spacing:13.610843px;}
.ws1e9{word-spacing:13.616223px;}
.ws109{word-spacing:13.621603px;}
.ws9a{word-spacing:13.626983px;}
.ws12d{word-spacing:13.637742px;}
.ws4{word-spacing:13.648502px;}
.ws1b{word-spacing:13.670021px;}
.ws120{word-spacing:13.686160px;}
.ws9b{word-spacing:13.702300px;}
.ws116{word-spacing:13.707679px;}
.ws23e{word-spacing:13.739958px;}
.wse4{word-spacing:13.788376px;}
.ws20e{word-spacing:13.793756px;}
.ws1dd{word-spacing:13.804515px;}
.wsf5{word-spacing:13.874453px;}
.ws1eb{word-spacing:13.917491px;}
.ws1ea{word-spacing:13.933630px;}
.ws1a9{word-spacing:13.944390px;}
.ws1f2{word-spacing:13.955149px;}
.ws19a{word-spacing:13.960529px;}
.ws240{word-spacing:13.982048px;}
.ws26d{word-spacing:13.987701px;}
.ws1c0{word-spacing:13.998188px;}
.ws106{word-spacing:14.014327px;}
.ws198{word-spacing:14.030466px;}
.ws26b{word-spacing:14.073779px;}
.ws1fb{word-spacing:14.089644px;}
.ws207{word-spacing:14.143442px;}
.ws18f{word-spacing:14.202619px;}
.ws24b{word-spacing:14.212461px;}
.ws199{word-spacing:14.213379px;}
.wsc1{word-spacing:14.229518px;}
.ws6c{word-spacing:14.240278px;}
.ws43{word-spacing:14.245657px;}
.wsbf{word-spacing:14.256417px;}
.ws1cd{word-spacing:14.277936px;}
.ws19{word-spacing:14.299455px;}
.ws22e{word-spacing:14.315595px;}
.ws44{word-spacing:14.337114px;}
.ws10{word-spacing:14.353253px;}
.ws85{word-spacing:14.369392px;}
.ws252{word-spacing:14.370271px;}
.ws23{word-spacing:14.455469px;}
.ws7f{word-spacing:14.460849px;}
.ws7e{word-spacing:14.482368px;}
.ws6d{word-spacing:14.530786px;}
.ws1bc{word-spacing:14.557685px;}
.ws9f{word-spacing:14.606103px;}
.ws90{word-spacing:14.702939px;}
.ws192{word-spacing:14.708319px;}
.ws1ab{word-spacing:14.751357px;}
.ws1c9{word-spacing:14.810534px;}
.ws24c{word-spacing:14.815008px;}
.ws1f6{word-spacing:14.821294px;}
.ws6a{word-spacing:14.848193px;}
.ws150{word-spacing:14.875092px;}
.ws1bd{word-spacing:14.934269px;}
.ws225{word-spacing:14.939649px;}
.wsfd{word-spacing:14.955788px;}
.wsfc{word-spacing:14.967810px;}
.ws16f{word-spacing:14.988067px;}
.ws26c{word-spacing:15.006293px;}
.ws170{word-spacing:15.020346px;}
.wsef{word-spacing:15.031105px;}
.ws1c{word-spacing:15.047245px;}
.ws1ca{word-spacing:15.084903px;}
.ws8a{word-spacing:15.093339px;}
.ws136{word-spacing:15.101042px;}
.ws11f{word-spacing:15.123227px;}
.ws11b{word-spacing:15.154840px;}
.ws1e0{word-spacing:15.160220px;}
.ws1f5{word-spacing:15.273195px;}
.ws2b{word-spacing:15.278575px;}
.wsfe{word-spacing:15.305474px;}
.ws100{word-spacing:15.332373px;}
.ws69{word-spacing:15.337753px;}
.ws149{word-spacing:15.359272px;}
.ws8c{word-spacing:15.370031px;}
.ws229{word-spacing:15.391551px;}
.ws1c6{word-spacing:15.439969px;}
.ws2a{word-spacing:15.450728px;}
.wsde{word-spacing:15.558324px;}
.wsf{word-spacing:15.579843px;}
.ws137{word-spacing:15.585223px;}
.wsdd{word-spacing:15.639020px;}
.ws21b{word-spacing:15.644400px;}
.ws1b3{word-spacing:15.660540px;}
.ws11a{word-spacing:15.671299px;}
.ws2f{word-spacing:15.692818px;}
.ws153{word-spacing:15.698198px;}
.wse1{word-spacing:15.725097px;}
.ws13c{word-spacing:15.730477px;}
.ws138{word-spacing:15.735856px;}
.ws14e{word-spacing:15.762755px;}
.ws1d0{word-spacing:15.918769px;}
.wsdf{word-spacing:15.956427px;}
.ws77{word-spacing:15.983326px;}
.wsd4{word-spacing:15.988706px;}
.ws222{word-spacing:16.037124px;}
.ws2e{word-spacing:16.042504px;}
.wse5{word-spacing:16.053264px;}
.ws14d{word-spacing:16.069403px;}
.wse{word-spacing:16.085542px;}
.ws141{word-spacing:16.090922px;}
.wse0{word-spacing:16.096302px;}
.wsff{word-spacing:16.133960px;}
.wsbe{word-spacing:16.203897px;}
.ws89{word-spacing:16.267540px;}
.ws193{word-spacing:16.284594px;}
.ws14c{word-spacing:16.295354px;}
.ws103{word-spacing:16.300733px;}
.ws11e{word-spacing:16.366171px;}
.ws8b{word-spacing:16.370671px;}
.ws156{word-spacing:16.392190px;}
.wsf2{word-spacing:16.397569px;}
.wsf7{word-spacing:16.419089px;}
.ws54{word-spacing:16.460057px;}
.ws139{word-spacing:16.472886px;}
.ws1d8{word-spacing:16.521304px;}
.ws274{word-spacing:16.613085px;}
.ws1f8{word-spacing:16.628900px;}
.ws1f9{word-spacing:16.688078px;}
.ws3b{word-spacing:16.720356px;}
.wscd{word-spacing:16.768774px;}
.ws37{word-spacing:16.784914px;}
.wsd3{word-spacing:16.795673px;}
.ws56{word-spacing:16.876101px;}
.ws224{word-spacing:16.892203px;}
.ws1e3{word-spacing:16.897889px;}
.ws152{word-spacing:16.940927px;}
.ws55{word-spacing:16.952615px;}
.ws21e{word-spacing:16.962446px;}
.ws155{word-spacing:16.989345px;}
.ws1db{word-spacing:17.000105px;}
.ws135{word-spacing:17.059282px;}
.wsd8{word-spacing:17.091561px;}
.ws39{word-spacing:17.204536px;}
.ws211{word-spacing:17.355170px;}
.ws48{word-spacing:17.360550px;}
.ws22b{word-spacing:17.371310px;}
.ws41{word-spacing:17.376689px;}
.ws279{word-spacing:17.387788px;}
.ws223{word-spacing:17.398209px;}
.ws184{word-spacing:17.430487px;}
.ws19f{word-spacing:17.462766px;}
.ws1fd{word-spacing:17.602640px;}
.ws18a{word-spacing:17.613400px;}
.ws66{word-spacing:17.645728px;}
.ws189{word-spacing:17.651058px;}
.ws154{word-spacing:17.688717px;}
.wsf0{word-spacing:17.699476px;}
.ws46{word-spacing:17.715616px;}
.ws16c{word-spacing:17.753274px;}
.ws82{word-spacing:17.769413px;}
.ws219{word-spacing:17.860870px;}
.ws4b{word-spacing:17.866000px;}
.ws15f{word-spacing:17.877009px;}
.ws163{word-spacing:17.893148px;}
.ws47{word-spacing:17.920047px;}
.wsa7{word-spacing:18.016883px;}
.ws1c2{word-spacing:18.059921px;}
.ws256{word-spacing:18.090760px;}
.wsa8{word-spacing:18.124479px;}
.ws20a{word-spacing:18.145998px;}
.ws1e4{word-spacing:18.221315px;}
.ws277{word-spacing:18.291609px;}
.wsc0{word-spacing:18.296632px;}
.ws36{word-spacing:18.328910px;}
.ws26{word-spacing:18.339670px;}
.ws14f{word-spacing:18.345050px;}
.ws7b{word-spacing:18.382708px;}
.wsd1{word-spacing:18.388088px;}
.ws1be{word-spacing:18.398848px;}
.ws17f{word-spacing:18.409607px;}
.ws1a1{word-spacing:18.420367px;}
.ws283{word-spacing:18.435073px;}
.ws1de{word-spacing:18.452645px;}
.ws196{word-spacing:18.484924px;}
.wsd2{word-spacing:18.517203px;}
.wscf{word-spacing:18.533342px;}
.ws4a{word-spacing:18.540279px;}
.ws1ce{word-spacing:18.554861px;}
.ws260{word-spacing:18.564190px;}
.ws287{word-spacing:18.602447px;}
.ws1ff{word-spacing:18.630178px;}
.ws27a{word-spacing:18.631140px;}
.ws233{word-spacing:18.640938px;}
.ws278{word-spacing:18.645486px;}
.wsb1{word-spacing:18.700115px;}
.ws262{word-spacing:18.745910px;}
.wse6{word-spacing:18.759293px;}
.ws14b{word-spacing:18.791572px;}
.wsb0{word-spacing:18.807711px;}
.ws1fe{word-spacing:18.850749px;}
.ws269{word-spacing:18.875028px;}
.ws27f{word-spacing:18.951542px;}
.ws122{word-spacing:18.979864px;}
.ws123{word-spacing:19.006763px;}
.wseb{word-spacing:19.114358px;}
.ws3d{word-spacing:19.130498px;}
.ws26a{word-spacing:19.138044px;}
.ws16e{word-spacing:19.162776px;}
.wsaf{word-spacing:19.227334px;}
.ws1b7{word-spacing:19.243473px;}
.ws131{word-spacing:19.313410px;}
.ws12f{word-spacing:19.324170px;}
.ws180{word-spacing:19.345689px;}
.wsba{word-spacing:19.361828px;}
.ws1a7{word-spacing:19.388727px;}
.wse9{word-spacing:19.426386px;}
.ws182{word-spacing:19.431765px;}
.ws130{word-spacing:19.453284px;}
.ws282{word-spacing:19.477575px;}
.ws281{word-spacing:19.496703px;}
.ws284{word-spacing:19.654513px;}
.ws12e{word-spacing:19.663096px;}
.ws18b{word-spacing:19.684615px;}
.ws261{word-spacing:19.697552px;}
.wsea{word-spacing:19.706134px;}
.ws161{word-spacing:19.781451px;}
.ws1aa{word-spacing:19.856768px;}
.wse3{word-spacing:19.926705px;}
.ws1d4{word-spacing:19.991262px;}
.ws1d6{word-spacing:19.996642px;}
.ws1ae{word-spacing:20.061200px;}
.ws124{word-spacing:20.098858px;}
.ws1f4{word-spacing:20.114997px;}
.ws114{word-spacing:20.120377px;}
.ws129{word-spacing:20.163415px;}
.ws76{word-spacing:20.184935px;}
.ws10c{word-spacing:20.201074px;}
.ws1b0{word-spacing:20.254872px;}
.ws18c{word-spacing:20.265631px;}
.ws204{word-spacing:20.324809px;}
.ws220{word-spacing:20.340948px;}
.ws1c7{word-spacing:20.378607px;}
.ws20d{word-spacing:20.400126px;}
.wsd6{word-spacing:20.416265px;}
.ws265{word-spacing:20.462691px;}
.wsee{word-spacing:20.475443px;}
.ws3e{word-spacing:20.604557px;}
.ws266{word-spacing:20.673105px;}
.wsa{word-spacing:20.678712px;}
.ws113{word-spacing:20.685254px;}
.ws112{word-spacing:20.717533px;}
.ws91{word-spacing:20.739052px;}
.ws1a3{word-spacing:20.749811px;}
.ws8{word-spacing:20.812609px;}
.ws178{word-spacing:20.814369px;}
.ws18d{word-spacing:20.846648px;}
.ws9{word-spacing:20.921400px;}
.ws226{word-spacing:20.943484px;}
.ws105{word-spacing:21.013421px;}
.wsd5{word-spacing:21.061839px;}
.ws1c5{word-spacing:21.207093px;}
.ws195{word-spacing:21.293169px;}
.ws8f{word-spacing:21.309309px;}
.ws255{word-spacing:21.318691px;}
.ws49{word-spacing:21.390005px;}
.ws160{word-spacing:21.400765px;}
.ws3f{word-spacing:21.449183px;}
.ws22c{word-spacing:21.459942px;}
.ws1ac{word-spacing:21.481462px;}
.ws1c1{word-spacing:21.615956px;}
.ws1e1{word-spacing:21.626716px;}
.ws18e{word-spacing:21.734311px;}
.ws187{word-spacing:21.782729px;}
.ws119{word-spacing:21.820388px;}
.ws104{word-spacing:21.836527px;}
.ws132{word-spacing:21.938743px;}
.ws231{word-spacing:21.965642px;}
.ws25e{word-spacing:22.002534px;}
.ws1cc{word-spacing:22.105516px;}
.ws25f{word-spacing:22.150780px;}
.ws254{word-spacing:22.155562px;}
.ws74{word-spacing:22.159314px;}
.ws21a{word-spacing:22.196972px;}
.ws21f{word-spacing:22.331467px;}
.ws117{word-spacing:22.396024px;}
.ws118{word-spacing:22.422923px;}
.ws159{word-spacing:22.439062px;}
.ws151{word-spacing:22.465961px;}
.ws25d{word-spacing:22.609863px;}
.ws1b5{word-spacing:22.788748px;}
.ws212{word-spacing:22.794128px;}
.wsc8{word-spacing:22.831786px;}
.wsc2{word-spacing:22.842546px;}
.ws110{word-spacing:22.874825px;}
.ws14a{word-spacing:22.912483px;}
.ws30{word-spacing:22.977040px;}
.ws289{word-spacing:23.030690px;}
.ws227{word-spacing:23.143814px;}
.ws1f7{word-spacing:23.165333px;}
.ws121{word-spacing:23.181472px;}
.wscb{word-spacing:23.202991px;}
.ws1a4{word-spacing:23.219130px;}
.ws171{word-spacing:23.246029px;}
.wsc9{word-spacing:23.261525px;}
.ws1c8{word-spacing:23.272928px;}
.ws78{word-spacing:23.326726px;}
.ws237{word-spacing:23.418182px;}
.ws15{word-spacing:23.466600px;}
.wsca{word-spacing:23.477360px;}
.ws16{word-spacing:23.498879px;}
.ws10f{word-spacing:23.520398px;}
.ws1c4{word-spacing:23.525778px;}
.ws1a2{word-spacing:23.595715px;}
.ws79{word-spacing:23.708690px;}
.ws247{word-spacing:23.767136px;}
.ws10e{word-spacing:23.767868px;}
.ws18{word-spacing:23.821666px;}
.wsf1{word-spacing:23.875464px;}
.ws1b6{word-spacing:24.122934px;}
.ws1af{word-spacing:24.257428px;}
.ws1a5{word-spacing:24.268188px;}
.ws10d{word-spacing:24.273567px;}
.ws81{word-spacing:24.574835px;}
.wsb{word-spacing:24.623253px;}
.ws188{word-spacing:24.687810px;}
.ws1d9{word-spacing:24.746988px;}
.ws87{word-spacing:24.763127px;}
.ws22d{word-spacing:24.790026px;}
.ws172{word-spacing:24.859963px;}
.ws13{word-spacing:24.881482px;}
.ws34{word-spacing:24.897622px;}
.ws1d2{word-spacing:24.935280px;}
.ws1a6{word-spacing:24.978319px;}
.ws115{word-spacing:25.069775px;}
.ws173{word-spacing:25.096674px;}
.wsd7{word-spacing:25.139712px;}
.ws244{word-spacing:25.155851px;}
.ws12a{word-spacing:25.204269px;}
.ws11{word-spacing:25.225788px;}
.ws8d{word-spacing:25.247308px;}
.wsed{word-spacing:25.252687px;}
.ws45{word-spacing:25.258067px;}
.ws13e{word-spacing:25.365663px;}
.ws1a{word-spacing:25.467879px;}
.ws10b{word-spacing:25.478638px;}
.ws24{word-spacing:25.553955px;}
.ws17e{word-spacing:25.564715px;}
.wsf9{word-spacing:25.570094px;}
.ws16d{word-spacing:25.613133px;}
.ws1da{word-spacing:25.882122px;}
.ws71{word-spacing:25.903641px;}
.ws27{word-spacing:25.919780px;}
.ws7d{word-spacing:25.935919px;}
.ws9d{word-spacing:25.946679px;}
.ws9c{word-spacing:25.952059px;}
.ws210{word-spacing:26.091933px;}
.ws5f{word-spacing:26.148632px;}
.ws7c{word-spacing:26.156490px;}
.wsfa{word-spacing:26.161870px;}
.ws1dc{word-spacing:26.231807px;}
.ws10a{word-spacing:26.274846px;}
.ws70{word-spacing:26.500796px;}
.ws4c{word-spacing:26.531202px;}
.ws5e{word-spacing:26.741615px;}
.ws5d{word-spacing:26.760744px;}
.ws248{word-spacing:27.066799px;}
.ws23c{word-spacing:27.130231px;}
.ws162{word-spacing:27.189408px;}
.ws228{word-spacing:27.264725px;}
.ws169{word-spacing:27.275485px;}
.ws217{word-spacing:27.323903px;}
.ws75{word-spacing:27.528334px;}
.ws1ed{word-spacing:27.603651px;}
.ws216{word-spacing:27.700487px;}
.ws1b8{word-spacing:27.748905px;}
.ws20b{word-spacing:27.775804px;}
.ws158{word-spacing:27.861881px;}
.ws1d5{word-spacing:27.958717px;}
.wse8{word-spacing:27.974856px;}
.ws238{word-spacing:27.996375px;}
.ws1a8{word-spacing:28.071692px;}
.ws190{word-spacing:28.082452px;}
.ws253{word-spacing:28.128430px;}
.ws164{word-spacing:28.152389px;}
.wscc{word-spacing:28.227706px;}
.ws19e{word-spacing:28.243845px;}
.wse7{word-spacing:28.286883px;}
.ws19d{word-spacing:28.394479px;}
.ws23a{word-spacing:28.507454px;}
.ws19b{word-spacing:28.593531px;}
.ws19c{word-spacing:28.625809px;}
.ws40{word-spacing:28.797962px;}
.ws53{word-spacing:29.060943px;}
.ws52{word-spacing:29.175714px;}
.ws239{word-spacing:29.212205px;}
.wsbb{word-spacing:29.319801px;}
.ws29{word-spacing:29.368219px;}
.ws96{word-spacing:29.481194px;}
.ws51{word-spacing:29.687401px;}
.wsc7{word-spacing:29.786181px;}
.ws197{word-spacing:29.895437px;}
.ws218{word-spacing:30.261263px;}
.ws1b4{word-spacing:30.325820px;}
.ws28{word-spacing:30.384997px;}
.wsf6{word-spacing:30.643227px;}
.ws73{word-spacing:30.949874px;}
.ws209{word-spacing:31.148926px;}
.ws6e{word-spacing:31.455574px;}
.ws72{word-spacing:31.907475px;}
.ws22f{word-spacing:31.934374px;}
.ws20c{word-spacing:32.246401px;}
.wsce{word-spacing:32.305579px;}
.ws22{word-spacing:32.429873px;}
.ws21d{word-spacing:32.978051px;}
.ws80{word-spacing:34.409073px;}
.wsaa{word-spacing:34.452111px;}
.ws181{word-spacing:34.575846px;}
.wsa9{word-spacing:34.688821px;}
.ws59{word-spacing:34.880783px;}
.ws58{word-spacing:35.244224px;}
.ws57{word-spacing:35.301610px;}
.wsf3{word-spacing:35.662562px;}
.wsa5{word-spacing:36.152122px;}
.wsa4{word-spacing:36.388832px;}
.ws5b{word-spacing:36.607129px;}
.ws5a{word-spacing:36.659732px;}
.ws17c{word-spacing:36.786936px;}
.ws25{word-spacing:36.964468px;}
.ws5c{word-spacing:36.999262px;}
.wsae{word-spacing:37.405610px;}
.ws165{word-spacing:37.427129px;}
.wsad{word-spacing:37.513206px;}
.ws221{word-spacing:37.604662px;}
.ws174{word-spacing:37.615422px;}
.ws166{word-spacing:37.900550px;}
.wsac{word-spacing:38.298654px;}
.ws175{word-spacing:38.330933px;}
.ws1b2{word-spacing:38.486946px;}
.wsc{word-spacing:40.816391px;}
.ws16a{word-spacing:41.026202px;}
.ws16b{word-spacing:41.661016px;}
.ws185{word-spacing:42.268931px;}
.ws93{word-spacing:45.932562px;}
.ws94{word-spacing:46.131613px;}
.ws83{word-spacing:46.244589px;}
.ws92{word-spacing:46.626553px;}
.ws1bb{word-spacing:47.519597px;}
.ws8e{word-spacing:47.820864px;}
.ws1ba{word-spacing:47.982258px;}
.ws249{word-spacing:49.021512px;}
.wsa1{word-spacing:49.079733px;}
.wsa0{word-spacing:49.370241px;}
.ws230{word-spacing:50.284804px;}
.ws1d3{word-spacing:52.237664px;}
.ws97{word-spacing:55.131985px;}
.ws98{word-spacing:55.540849px;}
.ws33{word-spacing:66.768450px;}
.ws145{word-spacing:126.882111px;}
.ws243{word-spacing:176.225453px;}
.ws1f0{word-spacing:197.647737px;}
.ws61{word-spacing:1886.215425px;}
._1e{margin-left:-36.427321px;}
._1f{margin-left:-27.167889px;}
._37{margin-left:-22.176748px;}
._38{margin-left:-21.153295px;}
._23{margin-left:-18.845369px;}
._45{margin-left:-15.596558px;}
._3c{margin-left:-13.643122px;}
._44{margin-left:-8.661218px;}
._3e{margin-left:-7.542452px;}
._d{margin-left:-6.172591px;}
._3{margin-left:-4.171134px;}
._a{margin-left:-2.731333px;}
._0{margin-left:-1.479440px;}
._15{width:1.775327px;}
._1c{width:8.908916px;}
._b{width:10.657070px;}
._8{width:11.900073px;}
._11{width:13.300621px;}
._1{width:14.396291px;}
._9{width:15.633641px;}
._6{width:16.655799px;}
._12{width:18.145998px;}
._13{width:20.012782px;}
._1b{width:21.336101px;}
._2{width:22.344055px;}
._7{width:23.907742px;}
._16{width:24.913474px;}
._4{width:26.134971px;}
._26{width:27.187813px;}
._f{width:28.265364px;}
._3a{width:29.346700px;}
._14{width:30.368858px;}
._10{width:31.622347px;}
._19{width:32.682163px;}
._1a{width:33.767283px;}
._20{width:35.178381px;}
._39{width:36.473313px;}
._e{width:38.373971px;}
._5{width:41.897727px;}
._36{width:43.156595px;}
._1d{width:47.826244px;}
._3b{width:53.738622px;}
._30{width:61.700697px;}
._28{width:66.472562px;}
._24{width:135.129314px;}
._18{width:136.377423px;}
._22{width:185.457156px;}
._21{width:186.479314px;}
._34{width:208.052232px;}
._2c{width:217.014945px;}
._33{width:219.005464px;}
._35{width:221.700734px;}
._2d{width:226.967538px;}
._2f{width:229.662808px;}
._3d{width:234.084987px;}
._31{width:248.814825px;}
._3f{width:255.136066px;}
._32{width:285.897649px;}
._2a{width:308.143039px;}
._41{width:313.678832px;}
._2e{width:314.679472px;}
._2b{width:331.060902px;}
._43{width:333.062180px;}
._42{width:335.052698px;}
._27{width:336.741949px;}
._40{width:351.778434px;}
._29{width:392.524888px;}
._c{width:745.396053px;}
._17{width:818.538907px;}
._25{width:1251.777970px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:33.473400px;}
.fs9{font-size:36.043200px;}
.fs8{font-size:37.657200px;}
.fs2{font-size:39.002400px;}
.fs3{font-size:47.821200px;}
.fs0{font-size:53.797800px;}
.fsa{font-size:54.322475px;}
.fs6{font-size:59.775600px;}
.fs4{font-size:65.754000px;}
.fs7{font-size:71.730600px;}
.fs1{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y4f{bottom:143.376300px;}
.y1a6{bottom:184.535131px;}
.y14a{bottom:184.535489px;}
.y158{bottom:184.535516px;}
.y127{bottom:184.535605px;}
.y1ff{bottom:184.535611px;}
.y4d{bottom:184.535935px;}
.yae{bottom:184.536248px;}
.yd8{bottom:184.536707px;}
.y106{bottom:184.537188px;}
.y1ba{bottom:184.538189px;}
.y80{bottom:184.539471px;}
.y41{bottom:184.539553px;}
.y18b{bottom:184.545662px;}
.y4c{bottom:198.907401px;}
.y149{bottom:200.522850px;}
.y157{bottom:200.522878px;}
.y126{bottom:200.522966px;}
.y1a5{bottom:202.478042px;}
.yad{bottom:202.479159px;}
.yd7{bottom:202.479618px;}
.y105{bottom:202.480099px;}
.y1b9{bottom:202.481100px;}
.y7f{bottom:202.482382px;}
.y40{bottom:202.482464px;}
.y18a{bottom:202.488573px;}
.y4b{bottom:213.364728px;}
.y1fe{bottom:213.958972px;}
.y148{bottom:216.510239px;}
.y125{bottom:216.510328px;}
.y1a4{bottom:220.336222px;}
.yac{bottom:220.337339px;}
.yd6{bottom:220.337798px;}
.y104{bottom:220.338279px;}
.y1b8{bottom:220.339280px;}
.y7e{bottom:220.340561px;}
.y3f{bottom:220.340644px;}
.y189{bottom:220.346753px;}
.y4a{bottom:227.736194px;}
.y1fd{bottom:229.946334px;}
.y147{bottom:232.497600px;}
.y124{bottom:232.497689px;}
.yab{bottom:238.280709px;}
.y103{bottom:238.281190px;}
.y1b7{bottom:238.282191px;}
.y7d{bottom:238.283473px;}
.y3e{bottom:238.283555px;}
.y49{bottom:242.107660px;}
.y1fc{bottom:245.933695px;}
.y156{bottom:248.484989px;}
.y123{bottom:248.485078px;}
.y188{bottom:251.471470px;}
.yaa{bottom:256.223620px;}
.y102{bottom:256.224102px;}
.y1b6{bottom:256.225103px;}
.y7c{bottom:256.226384px;}
.y3d{bottom:256.226466px;}
.y48{bottom:256.479126px;}
.y155{bottom:264.472350px;}
.y122{bottom:264.472439px;}
.y187{bottom:269.329650px;}
.y1a3{bottom:272.976024px;}
.y1fb{bottom:273.741778px;}
.yd5{bottom:274.081800px;}
.ya9{bottom:274.082189px;}
.y101{bottom:274.082281px;}
.y1b5{bottom:274.083282px;}
.y7b{bottom:274.084564px;}
.y3c{bottom:274.084646px;}
.y121{bottom:280.459800px;}
.y47{bottom:285.308137px;}
.y186{bottom:287.272561px;}
.y1fa{bottom:289.729139px;}
.ya8{bottom:292.025100px;}
.y100{bottom:292.025193px;}
.y7a{bottom:292.027475px;}
.y3b{bottom:292.027557px;}
.y46{bottom:299.679603px;}
.y185{bottom:305.215473px;}
.yd4{bottom:305.376300px;}
.y1f9{bottom:305.716500px;}
.yff{bottom:309.883372px;}
.y79{bottom:309.885655px;}
.y3a{bottom:309.885737px;}
.y1a2{bottom:310.393739px;}
.y1b4{bottom:310.905187px;}
.y45{bottom:314.051069px;}
.ya7{bottom:322.979400px;}
.y184{bottom:323.073652px;}
.y19f{bottom:326.380946px;}
.y1a0{bottom:326.381100px;}
.yfe{bottom:327.826284px;}
.y78{bottom:327.828566px;}
.y39{bottom:327.828648px;}
.y44{bottom:328.507418px;}
.y1b3{bottom:328.848098px;}
.y1f8{bottom:336.500789px;}
.y183{bottom:341.016564px;}
.yd3{bottom:341.603100px;}
.y19e{bottom:342.368307px;}
.y1a1{bottom:342.368461px;}
.y43{bottom:342.878884px;}
.yfd{bottom:345.769195px;}
.y77{bottom:345.771477px;}
.y38{bottom:345.771560px;}
.y1b2{bottom:346.791009px;}
.y1f7{bottom:352.488150px;}
.y42{bottom:357.250350px;}
.y182{bottom:358.959475px;}
.y76{bottom:363.629657px;}
.y37{bottom:363.629739px;}
.y1b1{bottom:364.649189px;}
.y19b{bottom:367.965146px;}
.y19c{bottom:367.965300px;}
.ya6{bottom:375.537382px;}
.y181{bottom:376.817654px;}
.y75{bottom:381.572568px;}
.y36{bottom:381.572650px;}
.y1b0{bottom:382.592489px;}
.y19a{bottom:383.952507px;}
.y19d{bottom:383.952661px;}
.ya5{bottom:393.395561px;}
.y180{bottom:394.760566px;}
.y2a{bottom:398.752652px;}
.y74{bottom:399.515479px;}
.y35{bottom:399.515562px;}
.y1af{bottom:400.535470px;}
.yfc{bottom:401.640613px;}
.yd2{bottom:402.831520px;}
.y198{bottom:409.549500px;}
.y197{bottom:409.550454px;}
.ya4{bottom:411.338473px;}
.y1f6{bottom:412.440900px;}
.y1d2{bottom:412.446355px;}
.y17f{bottom:412.703477px;}
.y29{bottom:416.695564px;}
.y73{bottom:417.373659px;}
.y34{bottom:417.373741px;}
.y1ae{bottom:418.394109px;}
.yd1{bottom:420.692243px;}
.y199{bottom:425.536861px;}
.y196{bottom:425.537815px;}
.ya3{bottom:429.196652px;}
.y1d1{bottom:430.389266px;}
.y17e{bottom:430.561657px;}
.y28{bottom:434.638475px;}
.y72{bottom:435.316570px;}
.y33{bottom:435.316653px;}
.y1ad{bottom:436.337020px;}
.yd0{bottom:438.635155px;}
.yfb{bottom:439.058328px;}
.ya2{bottom:447.139564px;}
.y1d0{bottom:448.247446px;}
.y17d{bottom:448.504568px;}
.y27{bottom:452.496655px;}
.y1f5{bottom:452.579859px;}
.y71{bottom:453.174750px;}
.y1ac{bottom:454.197948px;}
.y195{bottom:454.961177px;}
.yfa{bottom:455.045689px;}
.ycf{bottom:456.493334px;}
.y193{bottom:463.634728px;}
.y32{bottom:464.145549px;}
.ya1{bottom:465.082475px;}
.y1cf{bottom:466.190357px;}
.y17c{bottom:466.362748px;}
.y1f4{bottom:470.438039px;}
.y26{bottom:470.439566px;}
.y194{bottom:470.948538px;}
.yf9{bottom:471.033051px;}
.y1ab{bottom:472.140859px;}
.yce{bottom:474.436246px;}
.y192{bottom:479.622089px;}
.y31{bottom:482.088460px;}
.ya0{bottom:482.940655px;}
.y17b{bottom:484.305659px;}
.y70{bottom:484.554150px;}
.yf8{bottom:487.020412px;}
.y25{bottom:488.382477px;}
.y1f3{bottom:488.385507px;}
.y1aa{bottom:490.083771px;}
.ycd{bottom:492.379157px;}
.y1ce{bottom:494.508174px;}
.y191{bottom:495.609450px;}
.y30{bottom:499.946640px;}
.y9f{bottom:500.883566px;}
.y17a{bottom:502.248570px;}
.yf7{bottom:503.007773px;}
.y24{bottom:506.240657px;}
.y1f2{bottom:506.328418px;}
.y1a9{bottom:507.941950px;}
.ycc{bottom:510.237337px;}
.y1cd{bottom:512.451085px;}
.y9e{bottom:518.826477px;}
.y179{bottom:520.106750px;}
.y6f{bottom:521.036100px;}
.y23{bottom:524.183568px;}
.y1f1{bottom:524.186598px;}
.y1a8{bottom:525.884862px;}
.y190{bottom:527.839289px;}
.ycb{bottom:528.180248px;}
.yf6{bottom:528.604766px;}
.y1cc{bottom:530.393996px;}
.y9d{bottom:536.684657px;}
.y178{bottom:538.049661px;}
.y22{bottom:542.041748px;}
.y1f0{bottom:542.129509px;}
.y18f{bottom:543.826650px;}
.y1a7{bottom:543.827773px;}
.yf5{bottom:544.592128px;}
.yca{bottom:546.123159px;}
.y1cb{bottom:548.252176px;}
.y2f{bottom:552.755905px;}
.y9c{bottom:554.627568px;}
.y177{bottom:555.992572px;}
.y21{bottom:559.984659px;}
.y1ef{bottom:559.987689px;}
.yf4{bottom:560.579489px;}
.yc9{bottom:563.981339px;}
.y1ca{bottom:566.195087px;}
.y2e{bottom:568.743266px;}
.y9b{bottom:572.570479px;}
.y176{bottom:573.850752px;}
.yf3{bottom:576.566747px;}
.y20{bottom:577.927570px;}
.y1ee{bottom:577.930600px;}
.yc8{bottom:581.924320px;}
.y6e{bottom:582.868138px;}
.y1c9{bottom:584.137999px;}
.y2d{bottom:584.730628px;}
.y9a{bottom:590.428659px;}
.y175{bottom:591.793663px;}
.yf2{bottom:592.554108px;}
.y1f{bottom:595.785750px;}
.y1ed{bottom:595.873512px;}
.y154{bottom:596.636170px;}
.y146{bottom:596.637407px;}
.yc7{bottom:599.782889px;}
.y2c{bottom:600.717989px;}
.y6d{bottom:600.811049px;}
.y1c8{bottom:601.996178px;}
.y18e{bottom:603.354239px;}
.y99{bottom:608.371570px;}
.yf1{bottom:608.541469px;}
.y145{bottom:614.495587px;}
.y153{bottom:614.500964px;}
.y2b{bottom:616.705350px;}
.yc6{bottom:617.726189px;}
.y6c{bottom:618.753960px;}
.y18d{bottom:619.341689px;}
.y1c7{bottom:619.939089px;}
.y174{bottom:622.833649px;}
.yf0{bottom:624.528831px;}
.y98{bottom:626.229750px;}
.y1e{bottom:626.825100px;}
.y1ec{bottom:627.763502px;}
.y50{bottom:630.481800px;}
.y144{bottom:632.438498px;}
.y152{bottom:632.443875px;}
.y120{bottom:632.694746px;}
.y18c{bottom:635.329050px;}
.yc5{bottom:635.669170px;}
.y6b{bottom:636.612140px;}
.y1c6{bottom:637.797269px;}
.yef{bottom:640.516192px;}
.y173{bottom:640.776560px;}
.y1eb{bottom:645.706414px;}
.y143{bottom:650.381409px;}
.y151{bottom:650.386786px;}
.y11f{bottom:650.637658px;}
.yc4{bottom:653.527350px;}
.y6a{bottom:654.555051px;}
.y1c5{bottom:655.740180px;}
.y97{bottom:657.184050px;}
.y172{bottom:658.719471px;}
.y1ea{bottom:663.649325px;}
.y142{bottom:668.239589px;}
.y150{bottom:668.244966px;}
.y11e{bottom:668.495837px;}
.yee{bottom:669.939554px;}
.yc3{bottom:671.471039px;}
.y69{bottom:672.413231px;}
.y1c4{bottom:673.683092px;}
.y171{bottom:676.577651px;}
.y1e9{bottom:681.507505px;}
.y141{bottom:686.182570px;}
.y14f{bottom:686.187877px;}
.y11d{bottom:686.438749px;}
.yc2{bottom:689.413950px;}
.y68{bottom:690.356142px;}
.y1c3{bottom:691.541271px;}
.y170{bottom:694.520562px;}
.y1e8{bottom:699.450416px;}
.y140{bottom:704.043055px;}
.y14e{bottom:704.046057px;}
.y11c{bottom:704.296928px;}
.yed{bottom:705.486392px;}
.y67{bottom:708.299054px;}
.y1c2{bottom:709.484183px;}
.y16f{bottom:712.463474px;}
.y96{bottom:717.051750px;}
.y1e7{bottom:717.393327px;}
.y21b{bottom:718.750533px;}
.y235{bottom:718.756511px;}
.yc1{bottom:720.623400px;}
.yec{bottom:721.473753px;}
.y13f{bottom:721.985966px;}
.y14d{bottom:721.988968px;}
.y11b{bottom:722.239839px;}
.y66{bottom:726.157233px;}
.y1c1{bottom:727.427094px;}
.y16e{bottom:730.321653px;}
.y234{bottom:732.362838px;}
.y1d{bottom:732.443477px;}
.y95{bottom:733.039200px;}
.y1e6{bottom:735.251507px;}
.y21a{bottom:735.588378px;}
.yeb{bottom:737.461114px;}
.y13e{bottom:739.928877px;}
.y14c{bottom:739.931880px;}
.y65{bottom:744.100145px;}
.y1c0{bottom:745.285274px;}
.y16d{bottom:748.264565px;}
.y1c{bottom:748.431300px;}
.y94{bottom:749.034370px;}
.y219{bottom:749.109822px;}
.y233{bottom:751.411217px;}
.y1e5{bottom:753.194418px;}
.y13d{bottom:757.787057px;}
.y14b{bottom:757.790059px;}
.y64{bottom:762.043056px;}
.y218{bottom:765.947666px;}
.y16c{bottom:766.122744px;}
.y11a{bottom:766.885289px;}
.y232{bottom:770.459597px;}
.y1e4{bottom:771.052598px;}
.y13c{bottom:775.729968px;}
.yc0{bottom:775.732971px;}
.y93{bottom:778.457732px;}
.yea{bottom:779.641279px;}
.y63{bottom:779.901235px;}
.y217{bottom:782.700628px;}
.y1b{bottom:784.064207px;}
.y16b{bottom:784.065656px;}
.y231{bottom:784.065924px;}
.y119{bottom:784.829118px;}
.y1e3{bottom:788.995509px;}
.y1bf{bottom:793.332089px;}
.y13b{bottom:793.672879px;}
.ybf{bottom:793.675882px;}
.y92{bottom:794.445093px;}
.ye9{bottom:797.499459px;}
.y62{bottom:797.844147px;}
.y216{bottom:799.538473px;}
.y1a{bottom:802.007118px;}
.y118{bottom:802.687298px;}
.y230{bottom:803.114303px;}
.y1e2{bottom:806.938420px;}
.y1be{bottom:809.319539px;}
.y13a{bottom:811.531059px;}
.ybe{bottom:811.534061px;}
.y215{bottom:813.144800px;}
.y16a{bottom:815.190373px;}
.ye8{bottom:815.442370px;}
.y61{bottom:815.702326px;}
.y19{bottom:819.865298px;}
.y117{bottom:820.630209px;}
.y22f{bottom:822.162683px;}
.y1e1{bottom:824.797139px;}
.y1bd{bottom:825.306928px;}
.y91{bottom:827.525361px;}
.y139{bottom:829.473970px;}
.ybd{bottom:829.476973px;}
.y214{bottom:829.897762px;}
.y169{bottom:833.048552px;}
.ye7{bottom:833.301398px;}
.y60{bottom:833.645238px;}
.y22e{bottom:835.769010px;}
.y18{bottom:837.808209px;}
.y116{bottom:838.573120px;}
.y1bc{bottom:841.294289px;}
.y1e0{bottom:842.741746px;}
.y213{bottom:843.504089px;}
.y90{bottom:843.512722px;}
.ybc{bottom:847.335152px;}
.y138{bottom:847.340640px;}
.y168{bottom:850.991464px;}
.ye6{bottom:851.244309px;}
.y5f{bottom:851.588149px;}
.y22d{bottom:854.817389px;}
.y17{bottom:855.751120px;}
.y115{bottom:856.432078px;}
.y1bb{bottom:857.281650px;}
.y212{bottom:860.257051px;}
.y1df{bottom:860.684657px;}
.ybb{bottom:865.278064px;}
.y137{bottom:865.283552px;}
.y22c{bottom:868.338833px;}
.y167{bottom:868.934375px;}
.ye5{bottom:869.187220px;}
.y5e{bottom:869.446329px;}
.y16{bottom:873.611455px;}
.y211{bottom:873.863377px;}
.y114{bottom:874.374989px;}
.y1de{bottom:878.542837px;}
.yba{bottom:883.220975px;}
.y8f{bottom:883.226258px;}
.y136{bottom:883.226463px;}
.y166{bottom:886.792555px;}
.ye4{bottom:887.046178px;}
.y22b{bottom:887.387213px;}
.y5d{bottom:887.389240px;}
.y210{bottom:890.701222px;}
.y15{bottom:891.554366px;}
.y113{bottom:892.317970px;}
.y1dd{bottom:896.485748px;}
.yb9{bottom:901.079155px;}
.y8e{bottom:901.084438px;}
.y135{bottom:901.084643px;}
.y20f{bottom:904.307549px;}
.y165{bottom:904.735466px;}
.ye3{bottom:904.989089px;}
.y5c{bottom:905.332151px;}
.y22a{bottom:906.435592px;}
.y14{bottom:909.412546px;}
.y112{bottom:910.177484px;}
.y1dc{bottom:914.343928px;}
.yb8{bottom:919.022066px;}
.y8d{bottom:919.027349px;}
.y134{bottom:919.027554px;}
.y20e{bottom:921.060511px;}
.y164{bottom:922.593646px;}
.ye2{bottom:922.933555px;}
.y229{bottom:925.483972px;}
.y13{bottom:927.355457px;}
.y111{bottom:928.120395px;}
.y1db{bottom:932.286839px;}
.y20d{bottom:934.666838px;}
.yb7{bottom:936.964977px;}
.y5b{bottom:936.966602px;}
.y8c{bottom:936.970260px;}
.y133{bottom:936.970465px;}
.y228{bottom:939.090299px;}
.y163{bottom:940.536557px;}
.ye1{bottom:940.791734px;}
.y12{bottom:945.298368px;}
.y110{bottom:945.978575px;}
.y20c{bottom:948.273165px;}
.y1da{bottom:950.229750px;}
.yb6{bottom:954.823157px;}
.y5a{bottom:954.824782px;}
.y8b{bottom:954.828440px;}
.y132{bottom:954.828645px;}
.y227{bottom:958.138678px;}
.y162{bottom:958.479468px;}
.ye0{bottom:958.734646px;}
.y20b{bottom:961.879492px;}
.y11{bottom:963.156548px;}
.y226{bottom:971.745005px;}
.yb5{bottom:972.766068px;}
.y59{bottom:972.767693px;}
.y8a{bottom:972.771351px;}
.y131{bottom:972.771556px;}
.y161{bottom:976.337648px;}
.ydf{bottom:976.592825px;}
.y20a{bottom:978.632453px;}
.y10{bottom:981.099459px;}
.y1d9{bottom:981.949350px;}
.y225{bottom:985.351332px;}
.y9{bottom:988.412094px;}
.yb4{bottom:990.708979px;}
.y10f{bottom:990.710100px;}
.y58{bottom:990.710605px;}
.y89{bottom:990.714262px;}
.y130{bottom:990.714467px;}
.y209{bottom:992.238780px;}
.y160{bottom:994.280559px;}
.yf{bottom:999.042370px;}
.y8{bottom:1004.399455px;}
.y224{bottom:1004.399712px;}
.y208{bottom:1005.845107px;}
.yb3{bottom:1008.567159px;}
.yde{bottom:1008.567548px;}
.y10e{bottom:1008.568280px;}
.y57{bottom:1008.568784px;}
.y88{bottom:1008.572442px;}
.y12f{bottom:1008.572647px;}
.y15f{bottom:1012.223470px;}
.ye{bottom:1016.900550px;}
.y223{bottom:1018.006038px;}
.y207{bottom:1019.451434px;}
.y7{bottom:1020.386816px;}
.yb2{bottom:1026.510070px;}
.ydd{bottom:1026.510459px;}
.y10d{bottom:1026.511191px;}
.y56{bottom:1026.511696px;}
.y87{bottom:1026.515353px;}
.y12e{bottom:1026.515558px;}
.y15e{bottom:1030.082887px;}
.y206{bottom:1033.057761px;}
.y6{bottom:1036.374177px;}
.y222{bottom:1037.055613px;}
.ydc{bottom:1044.368639px;}
.yb1{bottom:1044.369098px;}
.y10c{bottom:1044.369371px;}
.y55{bottom:1044.369875px;}
.y86{bottom:1044.373533px;}
.y12d{bottom:1044.373738px;}
.y1d8{bottom:1044.378178px;}
.y15d{bottom:1048.025798px;}
.y205{bottom:1049.810723px;}
.y221{bottom:1050.661940px;}
.y5{bottom:1052.361539px;}
.yd{bottom:1054.316451px;}
.yb0{bottom:1062.312009px;}
.y10b{bottom:1062.312282px;}
.y54{bottom:1062.312787px;}
.y85{bottom:1062.316444px;}
.y12c{bottom:1062.316649px;}
.y1d7{bottom:1062.321089px;}
.y204{bottom:1063.417050px;}
.y15c{bottom:1065.883978px;}
.y220{bottom:1069.710320px;}
.y203{bottom:1077.023400px;}
.yc{bottom:1079.913784px;}
.yaf{bottom:1080.254920px;}
.y10a{bottom:1080.255194px;}
.y53{bottom:1080.255698px;}
.y84{bottom:1080.259355px;}
.y12b{bottom:1080.259561px;}
.y1d6{bottom:1080.264000px;}
.y15b{bottom:1083.826889px;}
.y4{bottom:1085.952885px;}
.y21f{bottom:1088.758699px;}
.y202{bottom:1090.629456px;}
.ydb{bottom:1098.113100px;}
.y109{bottom:1098.113373px;}
.y52{bottom:1098.113878px;}
.y83{bottom:1098.117535px;}
.y12a{bottom:1098.117740px;}
.y1d5{bottom:1098.122180px;}
.y15a{bottom:1101.769800px;}
.y3{bottom:1101.940246px;}
.y21e{bottom:1102.280144px;}
.y201{bottom:1104.150900px;}
.yb{bottom:1105.511117px;}
.y108{bottom:1116.056285px;}
.y51{bottom:1116.056789px;}
.y82{bottom:1116.060446px;}
.y129{bottom:1116.060651px;}
.yda{bottom:1116.061753px;}
.y1d4{bottom:1116.065091px;}
.y2{bottom:1118.012339px;}
.y21d{bottom:1121.328523px;}
.ya{bottom:1131.108450px;}
.y200{bottom:1131.958800px;}
.y159{bottom:1132.979250px;}
.y107{bottom:1133.999196px;}
.y1{bottom:1133.999700px;}
.y81{bottom:1134.003358px;}
.y128{bottom:1134.003563px;}
.yd9{bottom:1134.004664px;}
.y1d3{bottom:1134.008002px;}
.y21c{bottom:1134.934850px;}
.y4e{bottom:1166.910000px;}
.h3{height:34.957297px;}
.h5{height:35.100761px;}
.hb{height:39.164798px;}
.h6{height:39.258633px;}
.h1{height:39.326192px;}
.h10{height:39.326425px;}
.h15{height:39.326437px;}
.h12{height:39.327338px;}
.h19{height:39.487585px;}
.h17{height:39.546762px;}
.h7{height:40.348530px;}
.h9{height:43.695964px;}
.h18{height:44.108981px;}
.ha{height:44.110928px;}
.he{height:44.126929px;}
.hd{height:44.457236px;}
.hf{height:44.464900px;}
.h11{height:44.467822px;}
.h1a{height:47.776824px;}
.h16{height:47.777424px;}
.h4{height:48.066174px;}
.h13{height:48.083417px;}
.h14{height:48.112895px;}
.h1b{height:48.117269px;}
.hc{height:48.117979px;}
.h8{height:52.435069px;}
.h2{height:61.174174px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x18{left:90.992100px;}
.xf{left:97.793523px;}
.x10{left:101.026800px;}
.x11{left:110.551200px;}
.xa{left:140.399976px;}
.x13{left:218.636772px;}
.xb{left:224.418750px;}
.x12{left:230.797353px;}
.x2{left:297.637650px;}
.xd{left:302.229198px;}
.xc{left:319.152641px;}
.x14{left:352.318050px;}
.xe{left:367.795267px;}
.x5{left:467.713648px;}
.x19{left:493.051148px;}
.x15{left:510.236100px;}
.x7{left:523.079410px;}
.x8{left:554.969401px;}
.x9{left:556.837108px;}
.x3{left:616.535250px;}
.x16{left:631.757250px;}
.x4{left:675.042300px;}
.x17{left:728.873039px;}
.x6{left:877.606050px;}
@media print{
.v6{vertical-align:-19.350933pt;}
.v2{vertical-align:-14.816000pt;}
.v4{vertical-align:-9.703184pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.812523pt;}
.v3{vertical-align:16.615394pt;}
.v5{vertical-align:19.351467pt;}
.lsb{letter-spacing:-0.012752pt;}
.lsa{letter-spacing:-0.008502pt;}
.ls9{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.003204pt;}
.ls65{letter-spacing:0.004251pt;}
.ls37{letter-spacing:0.009564pt;}
.ls28{letter-spacing:0.019128pt;}
.ls1d{letter-spacing:0.025583pt;}
.ls43{letter-spacing:0.026116pt;}
.ls24{letter-spacing:0.030046pt;}
.ls2e{letter-spacing:0.039209pt;}
.ls1b{letter-spacing:0.039742pt;}
.ls10{letter-spacing:0.041835pt;}
.ls12{letter-spacing:0.042368pt;}
.ls1c{letter-spacing:0.050628pt;}
.ls1f{letter-spacing:0.053494pt;}
.ls5{letter-spacing:0.062166pt;}
.ls23{letter-spacing:0.066948pt;}
.ls7{letter-spacing:0.078235pt;}
.ls14{letter-spacing:0.100423pt;}
.ls25{letter-spacing:0.109987pt;}
.ls6{letter-spacing:0.119022pt;}
.ls19{letter-spacing:0.148235pt;}
.ls2c{letter-spacing:0.150685pt;}
.ls3c{letter-spacing:0.196102pt;}
.ls38{letter-spacing:0.199742pt;}
.ls35{letter-spacing:0.199857pt;}
.ls4{letter-spacing:0.200845pt;}
.ls2{letter-spacing:0.210409pt;}
.ls48{letter-spacing:0.253447pt;}
.lsf{letter-spacing:0.277358pt;}
.ls1e{letter-spacing:0.301268pt;}
.ls4e{letter-spacing:0.325178pt;}
.ls22{letter-spacing:0.332446pt;}
.ls3e{letter-spacing:0.342142pt;}
.lse{letter-spacing:7.861652pt;}
.ls36{letter-spacing:7.867733pt;}
.ls34{letter-spacing:7.871216pt;}
.ls3{letter-spacing:8.162920pt;}
.ls5b{letter-spacing:9.725495pt;}
.ls5c{letter-spacing:9.774463pt;}
.ls4a{letter-spacing:10.017875pt;}
.ls5a{letter-spacing:10.310046pt;}
.ls57{letter-spacing:10.612979pt;}
.ls58{letter-spacing:10.632695pt;}
.ls59{letter-spacing:10.683048pt;}
.ls2d{letter-spacing:11.217246pt;}
.ls4f{letter-spacing:11.226942pt;}
.ls61{letter-spacing:11.768568pt;}
.ls60{letter-spacing:11.792478pt;}
.ls39{letter-spacing:11.798400pt;}
.ls63{letter-spacing:11.811606pt;}
.ls44{letter-spacing:11.831742pt;}
.ls11{letter-spacing:11.834368pt;}
.ls62{letter-spacing:11.845080pt;}
.ls3b{letter-spacing:11.859426pt;}
.ls2b{letter-spacing:11.956277pt;}
.ls3a{letter-spacing:12.093745pt;}
.ls3d{letter-spacing:12.100800pt;}
.ls51{letter-spacing:12.127220pt;}
.ls33{letter-spacing:12.134142pt;}
.ls55{letter-spacing:12.194168pt;}
.ls53{letter-spacing:12.426846pt;}
.ls54{letter-spacing:12.446562pt;}
.lsd{letter-spacing:12.696281pt;}
.ls21{letter-spacing:12.710627pt;}
.ls52{letter-spacing:12.720191pt;}
.lsc{letter-spacing:13.002331pt;}
.ls50{letter-spacing:13.040809pt;}
.ls5e{letter-spacing:13.041342pt;}
.ls4c{letter-spacing:13.343209pt;}
.ls8{letter-spacing:13.356512pt;}
.ls66{letter-spacing:13.581221pt;}
.ls30{letter-spacing:13.770144pt;}
.ls15{letter-spacing:13.928732pt;}
.ls2f{letter-spacing:13.948542pt;}
.ls2a{letter-spacing:14.072544pt;}
.ls16{letter-spacing:14.250942pt;}
.ls31{letter-spacing:14.513451pt;}
.ls32{letter-spacing:14.552809pt;}
.ls17{letter-spacing:14.855742pt;}
.ls5f{letter-spacing:16.064809pt;}
.ls3f{letter-spacing:16.669609pt;}
.ls4d{letter-spacing:16.670142pt;}
.ls56{letter-spacing:16.952285pt;}
.ls13{letter-spacing:17.263116pt;}
.ls4b{letter-spacing:18.181609pt;}
.ls42{letter-spacing:18.444277pt;}
.ls5d{letter-spacing:18.785875pt;}
.ls46{letter-spacing:19.070722pt;}
.ls45{letter-spacing:19.348080pt;}
.ls20{letter-spacing:19.377050pt;}
.ls29{letter-spacing:19.630219pt;}
.ls27{letter-spacing:19.654130pt;}
.ls26{letter-spacing:20.065384pt;}
.ls47{letter-spacing:20.283119pt;}
.ls49{letter-spacing:20.585519pt;}
.ls1{letter-spacing:21.809342pt;}
.ls0{letter-spacing:21.809875pt;}
.ls41{letter-spacing:22.716542pt;}
.ls1a{letter-spacing:25.428446pt;}
.ls18{letter-spacing:32.364756pt;}
.ls40{letter-spacing:33.904275pt;}
.wsa3{word-spacing:-32.412577pt;}
.ws179{word-spacing:-19.118543pt;}
.wsd0{word-spacing:-17.310937pt;}
.ws26e{word-spacing:-13.623729pt;}
.ws1ef{word-spacing:-12.175040pt;}
.wsd{word-spacing:-0.047820pt;}
.ws20{word-spacing:-0.042508pt;}
.wsa2{word-spacing:-0.033473pt;}
.ws101{word-spacing:-0.032038pt;}
.ws67{word-spacing:0.000000pt;}
.ws102{word-spacing:4.930710pt;}
.ws125{word-spacing:7.670371pt;}
.ws107{word-spacing:7.683115pt;}
.wsa6{word-spacing:7.866434pt;}
.ws9e{word-spacing:7.871216pt;}
.ws99{word-spacing:8.172484pt;}
.wsab{word-spacing:8.177266pt;}
.ws17{word-spacing:8.182048pt;}
.wsb4{word-spacing:8.186830pt;}
.ws202{word-spacing:8.583738pt;}
.ws95{word-spacing:8.650686pt;}
.ws12b{word-spacing:8.765455pt;}
.ws275{word-spacing:8.773596pt;}
.ws1d7{word-spacing:8.784583pt;}
.ws1df{word-spacing:8.827621pt;}
.ws1bf{word-spacing:8.851531pt;}
.ws1b9{word-spacing:9.081069pt;}
.wsb6{word-spacing:9.248440pt;}
.ws12c{word-spacing:9.258004pt;}
.ws203{word-spacing:9.267568pt;}
.ws276{word-spacing:9.304943pt;}
.ws1a0{word-spacing:9.310606pt;}
.ws258{word-spacing:9.334698pt;}
.wsec{word-spacing:9.363208pt;}
.wsb7{word-spacing:9.382336pt;}
.ws12{word-spacing:9.444503pt;}
.ws1d1{word-spacing:9.482759pt;}
.ws205{word-spacing:9.544925pt;}
.ws24d{word-spacing:9.593995pt;}
.ws27d{word-spacing:9.691763pt;}
.ws250{word-spacing:9.708766pt;}
.ws285{word-spacing:9.721519pt;}
.ws1fa{word-spacing:9.721860pt;}
.ws27e{word-spacing:9.742772pt;}
.ws84{word-spacing:9.745770pt;}
.ws15b{word-spacing:9.803155pt;}
.ws270{word-spacing:9.900051pt;}
.wsdc{word-spacing:9.951397pt;}
.ws111{word-spacing:9.970526pt;}
.ws3a{word-spacing:9.975308pt;}
.ws15d{word-spacing:9.989654pt;}
.ws288{word-spacing:10.010571pt;}
.ws6f{word-spacing:10.023128pt;}
.ws1e5{word-spacing:10.037474pt;}
.ws24a{word-spacing:10.044577pt;}
.ws134{word-spacing:10.051820pt;}
.ws263{word-spacing:10.095587pt;}
.ws23b{word-spacing:10.108339pt;}
.ws126{word-spacing:10.109204pt;}
.ws273{word-spacing:10.116841pt;}
.ws267{word-spacing:10.125342pt;}
.ws235{word-spacing:10.137897pt;}
.ws3c{word-spacing:10.152243pt;}
.ws24f{word-spacing:10.155097pt;}
.ws24e{word-spacing:10.163599pt;}
.ws17b{word-spacing:10.195281pt;}
.ws4f{word-spacing:10.235862pt;}
.ws280{word-spacing:10.240113pt;}
.ws201{word-spacing:10.243101pt;}
.ws286{word-spacing:10.265618pt;}
.ws177{word-spacing:10.271793pt;}
.ws272{word-spacing:10.274119pt;}
.ws1e7{word-spacing:10.276575pt;}
.ws27c{word-spacing:10.295373pt;}
.ws200{word-spacing:10.310049pt;}
.ws183{word-spacing:10.319614pt;}
.ws133{word-spacing:10.338742pt;}
.ws213{word-spacing:10.343524pt;}
.ws1cf{word-spacing:10.362652pt;}
.ws25b{word-spacing:10.461153pt;}
.ws27b{word-spacing:10.465404pt;}
.ws26f{word-spacing:10.482407pt;}
.ws251{word-spacing:10.495159pt;}
.ws1e8{word-spacing:10.515677pt;}
.ws25c{word-spacing:10.516413pt;}
.ws17d{word-spacing:10.534805pt;}
.ws15e{word-spacing:10.544369pt;}
.ws268{word-spacing:10.567423pt;}
.wsbd{word-spacing:10.577843pt;}
.ws1f{word-spacing:10.597178pt;}
.ws168{word-spacing:10.601753pt;}
.ws50{word-spacing:10.648187pt;}
.ws4e{word-spacing:10.652438pt;}
.ws232{word-spacing:10.654355pt;}
.ws264{word-spacing:10.665190pt;}
.ws2c{word-spacing:10.697394pt;}
.ws4d{word-spacing:10.711949pt;}
.ws15a{word-spacing:10.721304pt;}
.ws21{word-spacing:10.771460pt;}
.ws257{word-spacing:10.792713pt;}
.ws186{word-spacing:10.797816pt;}
.ws60{word-spacing:10.818218pt;}
.ws127{word-spacing:10.826508pt;}
.ws25a{word-spacing:10.826720pt;}
.ws1b1{word-spacing:10.859983pt;}
.wsc3{word-spacing:10.869547pt;}
.ws176{word-spacing:10.883893pt;}
.ws191{word-spacing:10.893457pt;}
.ws1e6{word-spacing:10.903021pt;}
.wsbc{word-spacing:10.907803pt;}
.wsb5{word-spacing:10.931713pt;}
.wsf8{word-spacing:10.941277pt;}
.ws140{word-spacing:10.965187pt;}
.ws1d{word-spacing:11.051264pt;}
.ws208{word-spacing:11.060828pt;}
.ws128{word-spacing:11.065610pt;}
.ws271{word-spacing:11.077515pt;}
.wsb2{word-spacing:11.084738pt;}
.ws215{word-spacing:11.094302pt;}
.ws259{word-spacing:11.128525pt;}
.wsb3{word-spacing:11.142122pt;}
.ws21c{word-spacing:11.156468pt;}
.ws22a{word-spacing:11.161250pt;}
.wsfb{word-spacing:11.185160pt;}
.ws167{word-spacing:11.199506pt;}
.ws65{word-spacing:11.213853pt;}
.ws1ec{word-spacing:11.218635pt;}
.ws246{word-spacing:11.223417pt;}
.ws63{word-spacing:11.228199pt;}
.ws32{word-spacing:11.242545pt;}
.wsb9{word-spacing:11.247327pt;}
.ws1fc{word-spacing:11.252109pt;}
.ws194{word-spacing:11.280801pt;}
.ws146{word-spacing:11.352531pt;}
.ws20f{word-spacing:11.429044pt;}
.ws13d{word-spacing:11.448172pt;}
.ws13f{word-spacing:11.462518pt;}
.ws214{word-spacing:11.467300pt;}
.ws234{word-spacing:11.476864pt;}
.ws142{word-spacing:11.481646pt;}
.ws15c{word-spacing:11.486428pt;}
.wsf4{word-spacing:11.495992pt;}
.ws17a{word-spacing:11.500774pt;}
.ws206{word-spacing:11.510338pt;}
.ws6b{word-spacing:11.515120pt;}
.ws2d{word-spacing:11.524684pt;}
.ws38{word-spacing:11.534248pt;}
.wsc5{word-spacing:11.539030pt;}
.ws157{word-spacing:11.548594pt;}
.ws14{word-spacing:11.562940pt;}
.ws13a{word-spacing:11.567723pt;}
.ws11d{word-spacing:11.586851pt;}
.ws23d{word-spacing:11.596415pt;}
.ws23f{word-spacing:11.610761pt;}
.ws1e{word-spacing:11.613113pt;}
.wsc4{word-spacing:11.615543pt;}
.ws1{word-spacing:11.629889pt;}
.ws1ee{word-spacing:11.658581pt;}
.ws7a{word-spacing:11.663363pt;}
.ws1ad{word-spacing:11.677709pt;}
.ws245{word-spacing:11.687273pt;}
.ws68{word-spacing:11.701619pt;}
.ws236{word-spacing:11.715965pt;}
.ws144{word-spacing:11.725529pt;}
.ws31{word-spacing:11.730311pt;}
.ws1cb{word-spacing:11.754222pt;}
.wsc6{word-spacing:11.759004pt;}
.ws88{word-spacing:11.773350pt;}
.ws64{word-spacing:11.792478pt;}
.ws148{word-spacing:11.797260pt;}
.wsda{word-spacing:11.802042pt;}
.wsd9{word-spacing:11.811606pt;}
.ws2{word-spacing:11.816388pt;}
.wsdb{word-spacing:11.825952pt;}
.ws35{word-spacing:11.835516pt;}
.ws86{word-spacing:11.840298pt;}
.ws6{word-spacing:11.854644pt;}
.ws1e2{word-spacing:11.859426pt;}
.wsb8{word-spacing:11.864208pt;}
.ws143{word-spacing:11.883336pt;}
.ws242{word-spacing:11.902464pt;}
.ws108{word-spacing:11.916181pt;}
.ws241{word-spacing:11.916810pt;}
.ws3{word-spacing:11.921592pt;}
.ws5{word-spacing:11.940721pt;}
.ws11c{word-spacing:11.955067pt;}
.ws1f1{word-spacing:11.983759pt;}
.ws42{word-spacing:11.993323pt;}
.ws62{word-spacing:12.002887pt;}
.ws0{word-spacing:12.017233pt;}
.ws13b{word-spacing:12.026797pt;}
.ws7{word-spacing:12.045925pt;}
.ws147{word-spacing:12.074617pt;}
.ws1c3{word-spacing:12.079399pt;}
.ws1f3{word-spacing:12.084181pt;}
.wse2{word-spacing:12.098527pt;}
.ws1e9{word-spacing:12.103309pt;}
.ws109{word-spacing:12.108092pt;}
.ws9a{word-spacing:12.112874pt;}
.ws12d{word-spacing:12.122438pt;}
.ws4{word-spacing:12.132002pt;}
.ws1b{word-spacing:12.151130pt;}
.ws120{word-spacing:12.165476pt;}
.ws9b{word-spacing:12.179822pt;}
.ws116{word-spacing:12.184604pt;}
.ws23e{word-spacing:12.213296pt;}
.wse4{word-spacing:12.256334pt;}
.ws20e{word-spacing:12.261116pt;}
.ws1dd{word-spacing:12.270680pt;}
.wsf5{word-spacing:12.332847pt;}
.ws1eb{word-spacing:12.371103pt;}
.ws1ea{word-spacing:12.385449pt;}
.ws1a9{word-spacing:12.395013pt;}
.ws1f2{word-spacing:12.404577pt;}
.ws19a{word-spacing:12.409359pt;}
.ws240{word-spacing:12.428487pt;}
.ws26d{word-spacing:12.433512pt;}
.ws1c0{word-spacing:12.442833pt;}
.ws106{word-spacing:12.457179pt;}
.ws198{word-spacing:12.471526pt;}
.ws26b{word-spacing:12.510026pt;}
.ws1fb{word-spacing:12.524128pt;}
.ws207{word-spacing:12.571948pt;}
.ws18f{word-spacing:12.624550pt;}
.ws24b{word-spacing:12.633298pt;}
.ws199{word-spacing:12.634114pt;}
.wsc1{word-spacing:12.648461pt;}
.ws6c{word-spacing:12.658025pt;}
.ws43{word-spacing:12.662807pt;}
.wsbf{word-spacing:12.672371pt;}
.ws1cd{word-spacing:12.691499pt;}
.ws19{word-spacing:12.710627pt;}
.ws22e{word-spacing:12.724973pt;}
.ws44{word-spacing:12.744101pt;}
.ws10{word-spacing:12.758447pt;}
.ws85{word-spacing:12.772793pt;}
.ws252{word-spacing:12.773574pt;}
.ws23{word-spacing:12.849306pt;}
.ws7f{word-spacing:12.854088pt;}
.ws7e{word-spacing:12.873216pt;}
.ws6d{word-spacing:12.916254pt;}
.ws1bc{word-spacing:12.940164pt;}
.ws9f{word-spacing:12.983202pt;}
.ws90{word-spacing:13.069279pt;}
.ws192{word-spacing:13.074061pt;}
.ws1ab{word-spacing:13.112317pt;}
.ws1c9{word-spacing:13.164919pt;}
.ws24c{word-spacing:13.168896pt;}
.ws1f6{word-spacing:13.174483pt;}
.ws6a{word-spacing:13.198394pt;}
.ws150{word-spacing:13.222304pt;}
.ws1bd{word-spacing:13.274906pt;}
.ws225{word-spacing:13.279688pt;}
.wsfd{word-spacing:13.294034pt;}
.wsfc{word-spacing:13.304720pt;}
.ws16f{word-spacing:13.322726pt;}
.ws26c{word-spacing:13.338927pt;}
.ws170{word-spacing:13.351418pt;}
.wsef{word-spacing:13.360983pt;}
.ws1c{word-spacing:13.375329pt;}
.ws1ca{word-spacing:13.408803pt;}
.ws8a{word-spacing:13.416301pt;}
.ws136{word-spacing:13.423149pt;}
.ws11f{word-spacing:13.442868pt;}
.ws11b{word-spacing:13.470969pt;}
.ws1e0{word-spacing:13.475751pt;}
.ws1f5{word-spacing:13.576174pt;}
.ws2b{word-spacing:13.580956pt;}
.wsfe{word-spacing:13.604866pt;}
.ws100{word-spacing:13.628776pt;}
.ws69{word-spacing:13.633558pt;}
.ws149{word-spacing:13.652686pt;}
.ws8c{word-spacing:13.662250pt;}
.ws229{word-spacing:13.681378pt;}
.ws1c6{word-spacing:13.724417pt;}
.ws2a{word-spacing:13.733981pt;}
.wsde{word-spacing:13.829621pt;}
.wsf{word-spacing:13.848749pt;}
.ws137{word-spacing:13.853531pt;}
.wsdd{word-spacing:13.901352pt;}
.ws21b{word-spacing:13.906134pt;}
.ws1b3{word-spacing:13.920480pt;}
.ws11a{word-spacing:13.930044pt;}
.ws2f{word-spacing:13.949172pt;}
.ws153{word-spacing:13.953954pt;}
.wse1{word-spacing:13.977864pt;}
.ws13c{word-spacing:13.982646pt;}
.ws138{word-spacing:13.987428pt;}
.ws14e{word-spacing:14.011338pt;}
.ws1d0{word-spacing:14.150017pt;}
.wsdf{word-spacing:14.183491pt;}
.ws77{word-spacing:14.207401pt;}
.wsd4{word-spacing:14.212183pt;}
.ws222{word-spacing:14.255221pt;}
.ws2e{word-spacing:14.260004pt;}
.wse5{word-spacing:14.269568pt;}
.ws14d{word-spacing:14.283914pt;}
.wse{word-spacing:14.298260pt;}
.ws141{word-spacing:14.303042pt;}
.wse0{word-spacing:14.307824pt;}
.wsff{word-spacing:14.341298pt;}
.wsbe{word-spacing:14.403464pt;}
.ws89{word-spacing:14.460035pt;}
.ws193{word-spacing:14.475195pt;}
.ws14c{word-spacing:14.484759pt;}
.ws103{word-spacing:14.489541pt;}
.ws11e{word-spacing:14.547707pt;}
.ws8b{word-spacing:14.551707pt;}
.ws156{word-spacing:14.570835pt;}
.wsf2{word-spacing:14.575617pt;}
.wsf7{word-spacing:14.594745pt;}
.ws54{word-spacing:14.631162pt;}
.ws139{word-spacing:14.642566pt;}
.ws1d8{word-spacing:14.685604pt;}
.ws274{word-spacing:14.767187pt;}
.ws1f8{word-spacing:14.781244pt;}
.ws1f9{word-spacing:14.833847pt;}
.ws3b{word-spacing:14.862539pt;}
.wscd{word-spacing:14.905577pt;}
.ws37{word-spacing:14.919923pt;}
.wsd3{word-spacing:14.929487pt;}
.ws56{word-spacing:15.000979pt;}
.ws224{word-spacing:15.015291pt;}
.ws1e3{word-spacing:15.020346pt;}
.ws152{word-spacing:15.058602pt;}
.ws55{word-spacing:15.068991pt;}
.ws21e{word-spacing:15.077730pt;}
.ws155{word-spacing:15.101640pt;}
.ws1db{word-spacing:15.111204pt;}
.ws135{word-spacing:15.163807pt;}
.wsd8{word-spacing:15.192499pt;}
.ws39{word-spacing:15.292921pt;}
.ws211{word-spacing:15.426818pt;}
.ws48{word-spacing:15.431600pt;}
.ws22b{word-spacing:15.441164pt;}
.ws41{word-spacing:15.445946pt;}
.ws279{word-spacing:15.455812pt;}
.ws223{word-spacing:15.465074pt;}
.ws184{word-spacing:15.493766pt;}
.ws19f{word-spacing:15.522459pt;}
.ws1fd{word-spacing:15.646791pt;}
.ws18a{word-spacing:15.656355pt;}
.ws66{word-spacing:15.685091pt;}
.ws189{word-spacing:15.689829pt;}
.ws154{word-spacing:15.723304pt;}
.wsf0{word-spacing:15.732868pt;}
.ws46{word-spacing:15.747214pt;}
.ws16c{word-spacing:15.780688pt;}
.ws82{word-spacing:15.795034pt;}
.ws219{word-spacing:15.876329pt;}
.ws4b{word-spacing:15.880889pt;}
.ws15f{word-spacing:15.890675pt;}
.ws163{word-spacing:15.905021pt;}
.ws47{word-spacing:15.928931pt;}
.wsa7{word-spacing:16.015007pt;}
.ws1c2{word-spacing:16.053264pt;}
.ws256{word-spacing:16.080676pt;}
.wsa8{word-spacing:16.110648pt;}
.ws20a{word-spacing:16.129776pt;}
.ws1e4{word-spacing:16.196724pt;}
.ws277{word-spacing:16.259208pt;}
.wsc0{word-spacing:16.263673pt;}
.ws36{word-spacing:16.292365pt;}
.ws26{word-spacing:16.301929pt;}
.ws14f{word-spacing:16.306711pt;}
.ws7b{word-spacing:16.340185pt;}
.wsd1{word-spacing:16.344967pt;}
.ws1be{word-spacing:16.354531pt;}
.ws17f{word-spacing:16.364095pt;}
.ws1a1{word-spacing:16.373659pt;}
.ws283{word-spacing:16.386731pt;}
.ws1de{word-spacing:16.402351pt;}
.ws196{word-spacing:16.431044pt;}
.wsd2{word-spacing:16.459736pt;}
.wscf{word-spacing:16.474082pt;}
.ws4a{word-spacing:16.480248pt;}
.ws1ce{word-spacing:16.493210pt;}
.ws260{word-spacing:16.501502pt;}
.ws287{word-spacing:16.535508pt;}
.ws1ff{word-spacing:16.560158pt;}
.ws27a{word-spacing:16.561013pt;}
.ws233{word-spacing:16.569722pt;}
.ws278{word-spacing:16.573765pt;}
.wsb1{word-spacing:16.622325pt;}
.ws262{word-spacing:16.663031pt;}
.wse6{word-spacing:16.674927pt;}
.ws14b{word-spacing:16.703619pt;}
.wsb0{word-spacing:16.717965pt;}
.ws1fe{word-spacing:16.756221pt;}
.ws269{word-spacing:16.777802pt;}
.ws27f{word-spacing:16.845815pt;}
.ws122{word-spacing:16.870990pt;}
.ws123{word-spacing:16.894900pt;}
.wseb{word-spacing:16.990541pt;}
.ws3d{word-spacing:17.004887pt;}
.ws26a{word-spacing:17.011595pt;}
.ws16e{word-spacing:17.033579pt;}
.wsaf{word-spacing:17.090963pt;}
.ws1b7{word-spacing:17.105309pt;}
.ws131{word-spacing:17.167476pt;}
.ws12f{word-spacing:17.177040pt;}
.ws180{word-spacing:17.196168pt;}
.wsba{word-spacing:17.210514pt;}
.ws1a7{word-spacing:17.234424pt;}
.wse9{word-spacing:17.267898pt;}
.ws182{word-spacing:17.272680pt;}
.ws130{word-spacing:17.291808pt;}
.ws282{word-spacing:17.313400pt;}
.ws281{word-spacing:17.330403pt;}
.ws284{word-spacing:17.470678pt;}
.ws12e{word-spacing:17.478307pt;}
.ws18b{word-spacing:17.497436pt;}
.ws261{word-spacing:17.508935pt;}
.wsea{word-spacing:17.516564pt;}
.ws161{word-spacing:17.583512pt;}
.ws1aa{word-spacing:17.650460pt;}
.wse3{word-spacing:17.712627pt;}
.ws1d4{word-spacing:17.770011pt;}
.ws1d6{word-spacing:17.774793pt;}
.ws1ae{word-spacing:17.832177pt;}
.ws124{word-spacing:17.865652pt;}
.ws1f4{word-spacing:17.879998pt;}
.ws114{word-spacing:17.884780pt;}
.ws129{word-spacing:17.923036pt;}
.ws76{word-spacing:17.942164pt;}
.ws10c{word-spacing:17.956510pt;}
.ws1b0{word-spacing:18.004330pt;}
.ws18c{word-spacing:18.013894pt;}
.ws204{word-spacing:18.066497pt;}
.ws220{word-spacing:18.080843pt;}
.ws1c7{word-spacing:18.114317pt;}
.ws20d{word-spacing:18.133445pt;}
.wsd6{word-spacing:18.147791pt;}
.ws265{word-spacing:18.189059pt;}
.wsee{word-spacing:18.200393pt;}
.ws3e{word-spacing:18.315162pt;}
.ws266{word-spacing:18.376093pt;}
.wsa{word-spacing:18.381077pt;}
.ws113{word-spacing:18.386893pt;}
.ws112{word-spacing:18.415585pt;}
.ws91{word-spacing:18.434713pt;}
.ws1a3{word-spacing:18.444277pt;}
.ws8{word-spacing:18.500097pt;}
.ws178{word-spacing:18.501661pt;}
.ws18d{word-spacing:18.530353pt;}
.ws9{word-spacing:18.596800pt;}
.ws226{word-spacing:18.616430pt;}
.ws105{word-spacing:18.678596pt;}
.wsd5{word-spacing:18.721634pt;}
.ws1c5{word-spacing:18.850749pt;}
.ws195{word-spacing:18.927262pt;}
.ws8f{word-spacing:18.941608pt;}
.ws255{word-spacing:18.949948pt;}
.ws49{word-spacing:19.013338pt;}
.ws160{word-spacing:19.022902pt;}
.ws3f{word-spacing:19.065940pt;}
.ws22c{word-spacing:19.075504pt;}
.ws1ac{word-spacing:19.094632pt;}
.ws1c1{word-spacing:19.214183pt;}
.ws1e1{word-spacing:19.223747pt;}
.ws18e{word-spacing:19.319388pt;}
.ws187{word-spacing:19.362426pt;}
.ws119{word-spacing:19.395900pt;}
.ws104{word-spacing:19.410246pt;}
.ws132{word-spacing:19.501105pt;}
.ws231{word-spacing:19.525015pt;}
.ws25e{word-spacing:19.557808pt;}
.ws1cc{word-spacing:19.649348pt;}
.ws25f{word-spacing:19.689582pt;}
.ws254{word-spacing:19.693833pt;}
.ws74{word-spacing:19.697168pt;}
.ws21a{word-spacing:19.730642pt;}
.ws21f{word-spacing:19.850193pt;}
.ws117{word-spacing:19.907577pt;}
.ws118{word-spacing:19.931487pt;}
.ws159{word-spacing:19.945833pt;}
.ws151{word-spacing:19.969743pt;}
.ws25d{word-spacing:20.097656pt;}
.ws1b5{word-spacing:20.256665pt;}
.ws212{word-spacing:20.261447pt;}
.wsc8{word-spacing:20.294921pt;}
.wsc2{word-spacing:20.304485pt;}
.ws110{word-spacing:20.333177pt;}
.ws14a{word-spacing:20.366652pt;}
.ws30{word-spacing:20.424036pt;}
.ws289{word-spacing:20.471724pt;}
.ws227{word-spacing:20.572279pt;}
.ws1f7{word-spacing:20.591407pt;}
.ws121{word-spacing:20.605753pt;}
.wscb{word-spacing:20.624881pt;}
.ws1a4{word-spacing:20.639227pt;}
.ws171{word-spacing:20.663137pt;}
.wsc9{word-spacing:20.676911pt;}
.ws1c8{word-spacing:20.687047pt;}
.ws78{word-spacing:20.734868pt;}
.ws237{word-spacing:20.816162pt;}
.ws15{word-spacing:20.859200pt;}
.wsca{word-spacing:20.868764pt;}
.ws16{word-spacing:20.887892pt;}
.ws10f{word-spacing:20.907021pt;}
.ws1c4{word-spacing:20.911803pt;}
.ws1a2{word-spacing:20.973969pt;}
.ws79{word-spacing:21.074392pt;}
.ws247{word-spacing:21.126343pt;}
.ws10e{word-spacing:21.126994pt;}
.ws18{word-spacing:21.174814pt;}
.wsf1{word-spacing:21.222634pt;}
.ws1b6{word-spacing:21.442608pt;}
.ws1af{word-spacing:21.562158pt;}
.ws1a5{word-spacing:21.571722pt;}
.ws10d{word-spacing:21.576504pt;}
.ws81{word-spacing:21.844298pt;}
.wsb{word-spacing:21.887336pt;}
.ws188{word-spacing:21.944720pt;}
.ws1d9{word-spacing:21.997323pt;}
.ws87{word-spacing:22.011669pt;}
.ws22d{word-spacing:22.035579pt;}
.ws172{word-spacing:22.097745pt;}
.ws13{word-spacing:22.116873pt;}
.ws34{word-spacing:22.131219pt;}
.ws1d2{word-spacing:22.164694pt;}
.ws1a6{word-spacing:22.202950pt;}
.ws115{word-spacing:22.284244pt;}
.ws173{word-spacing:22.308154pt;}
.wsd7{word-spacing:22.346411pt;}
.ws244{word-spacing:22.360757pt;}
.ws12a{word-spacing:22.403795pt;}
.ws11{word-spacing:22.422923pt;}
.ws8d{word-spacing:22.442051pt;}
.wsed{word-spacing:22.446833pt;}
.ws45{word-spacing:22.451615pt;}
.ws13e{word-spacing:22.547256pt;}
.ws1a{word-spacing:22.638114pt;}
.ws10b{word-spacing:22.647678pt;}
.ws24{word-spacing:22.714627pt;}
.ws17e{word-spacing:22.724191pt;}
.wsf9{word-spacing:22.728973pt;}
.ws16d{word-spacing:22.767229pt;}
.ws1da{word-spacing:23.006330pt;}
.ws71{word-spacing:23.025458pt;}
.ws27{word-spacing:23.039804pt;}
.ws7d{word-spacing:23.054151pt;}
.ws9d{word-spacing:23.063715pt;}
.ws9c{word-spacing:23.068497pt;}
.ws210{word-spacing:23.192829pt;}
.ws5f{word-spacing:23.243229pt;}
.ws7c{word-spacing:23.250214pt;}
.wsfa{word-spacing:23.254996pt;}
.ws1dc{word-spacing:23.317162pt;}
.ws10a{word-spacing:23.355418pt;}
.ws70{word-spacing:23.556263pt;}
.ws4c{word-spacing:23.583290pt;}
.ws5e{word-spacing:23.770324pt;}
.ws5d{word-spacing:23.787328pt;}
.ws248{word-spacing:24.059377pt;}
.ws23c{word-spacing:24.115760pt;}
.ws162{word-spacing:24.168363pt;}
.ws228{word-spacing:24.235311pt;}
.ws169{word-spacing:24.244875pt;}
.ws217{word-spacing:24.287913pt;}
.ws75{word-spacing:24.469630pt;}
.ws1ed{word-spacing:24.536579pt;}
.ws216{word-spacing:24.622655pt;}
.ws1b8{word-spacing:24.665694pt;}
.ws20b{word-spacing:24.689604pt;}
.ws158{word-spacing:24.766116pt;}
.ws1d5{word-spacing:24.852193pt;}
.wse8{word-spacing:24.866539pt;}
.ws238{word-spacing:24.885667pt;}
.ws1a8{word-spacing:24.952615pt;}
.ws190{word-spacing:24.962179pt;}
.ws253{word-spacing:25.003049pt;}
.ws164{word-spacing:25.024346pt;}
.wscc{word-spacing:25.091294pt;}
.ws19e{word-spacing:25.105640pt;}
.wse7{word-spacing:25.143896pt;}
.ws19d{word-spacing:25.239537pt;}
.ws23a{word-spacing:25.339959pt;}
.ws19b{word-spacing:25.416472pt;}
.ws19c{word-spacing:25.445164pt;}
.ws40{word-spacing:25.598189pt;}
.ws53{word-spacing:25.831950pt;}
.ws52{word-spacing:25.933968pt;}
.ws239{word-spacing:25.966405pt;}
.wsbb{word-spacing:26.062045pt;}
.ws29{word-spacing:26.105084pt;}
.ws96{word-spacing:26.205506pt;}
.ws51{word-spacing:26.388801pt;}
.wsc7{word-spacing:26.476606pt;}
.ws197{word-spacing:26.573722pt;}
.ws218{word-spacing:26.898900pt;}
.ws1b4{word-spacing:26.956284pt;}
.ws28{word-spacing:27.008887pt;}
.wsf6{word-spacing:27.238424pt;}
.ws73{word-spacing:27.510999pt;}
.ws209{word-spacing:27.687934pt;}
.ws6e{word-spacing:27.960510pt;}
.ws72{word-spacing:28.362200pt;}
.ws22f{word-spacing:28.386110pt;}
.ws20c{word-spacing:28.663468pt;}
.wsce{word-spacing:28.716070pt;}
.ws22{word-spacing:28.826554pt;}
.ws21d{word-spacing:29.313823pt;}
.ws80{word-spacing:30.585843pt;}
.wsaa{word-spacing:30.624099pt;}
.ws181{word-spacing:30.734085pt;}
.wsa9{word-spacing:30.834508pt;}
.ws59{word-spacing:31.005141pt;}
.ws58{word-spacing:31.328199pt;}
.ws57{word-spacing:31.379209pt;}
.wsf3{word-spacing:31.700055pt;}
.wsa5{word-spacing:32.135219pt;}
.wsa4{word-spacing:32.345628pt;}
.ws5b{word-spacing:32.539670pt;}
.ws5a{word-spacing:32.586428pt;}
.ws17c{word-spacing:32.699498pt;}
.ws25{word-spacing:32.857305pt;}
.ws5c{word-spacing:32.888233pt;}
.wsae{word-spacing:33.249431pt;}
.ws165{word-spacing:33.268560pt;}
.wsad{word-spacing:33.345072pt;}
.ws221{word-spacing:33.426366pt;}
.ws174{word-spacing:33.435930pt;}
.ws166{word-spacing:33.689378pt;}
.wsac{word-spacing:34.043248pt;}
.ws175{word-spacing:34.071940pt;}
.ws1b2{word-spacing:34.210619pt;}
.wsc{word-spacing:36.281236pt;}
.ws16a{word-spacing:36.467735pt;}
.ws16b{word-spacing:37.032015pt;}
.ws185{word-spacing:37.572384pt;}
.ws93{word-spacing:40.828944pt;}
.ws94{word-spacing:41.005879pt;}
.ws83{word-spacing:41.106301pt;}
.ws92{word-spacing:41.445825pt;}
.ws1bb{word-spacing:42.239642pt;}
.ws8e{word-spacing:42.507435pt;}
.ws1ba{word-spacing:42.650896pt;}
.ws249{word-spacing:43.574677pt;}
.wsa1{word-spacing:43.626429pt;}
.wsa0{word-spacing:43.884659pt;}
.ws230{word-spacing:44.697603pt;}
.ws1d3{word-spacing:46.433479pt;}
.ws97{word-spacing:49.006209pt;}
.ws98{word-spacing:49.369643pt;}
.ws33{word-spacing:59.349733pt;}
.ws145{word-spacing:112.784099pt;}
.ws243{word-spacing:156.644848pt;}
.ws1f0{word-spacing:175.686878pt;}
.ws61{word-spacing:1676.635934pt;}
._1e{margin-left:-32.379841pt;}
._1f{margin-left:-24.149235pt;}
._37{margin-left:-19.712665pt;}
._38{margin-left:-18.802929pt;}
._23{margin-left:-16.751439pt;}
._45{margin-left:-13.863607pt;}
._3c{margin-left:-12.127220pt;}
._44{margin-left:-7.698861pt;}
._3e{margin-left:-6.704401pt;}
._d{margin-left:-5.486748pt;}
._3{margin-left:-3.707675pt;}
._a{margin-left:-2.427851pt;}
._0{margin-left:-1.315057pt;}
._15{width:1.578069pt;}
._1c{width:7.919036pt;}
._b{width:9.472951pt;}
._8{width:10.577843pt;}
._11{width:11.822774pt;}
._1{width:12.796703pt;}
._9{width:13.896569pt;}
._6{width:14.805155pt;}
._12{width:16.129776pt;}
._13{width:17.789139pt;}
._1b{width:18.965423pt;}
._2{width:19.861382pt;}
._7{width:21.251327pt;}
._16{width:22.145311pt;}
._4{width:23.231086pt;}
._26{width:24.166944pt;}
._f{width:25.124768pt;}
._3a{width:26.085955pt;}
._14{width:26.994541pt;}
._10{width:28.108753pt;}
._19{width:29.050812pt;}
._1a{width:30.015363pt;}
._20{width:31.269672pt;}
._39{width:32.420723pt;}
._e{width:34.110196pt;}
._5{width:37.242424pt;}
._36{width:38.361418pt;}
._1d{width:42.512217pt;}
._3b{width:47.767664pt;}
._30{width:54.845064pt;}
._28{width:59.086721pt;}
._24{width:120.114946pt;}
._18{width:121.224376pt;}
._22{width:164.850805pt;}
._21{width:165.759390pt;}
._34{width:184.935317pt;}
._2c{width:192.902174pt;}
._33{width:194.671524pt;}
._35{width:197.067319pt;}
._2d{width:201.748923pt;}
._2f{width:204.144718pt;}
._3d{width:208.075544pt;}
._31{width:221.168733pt;}
._3f{width:226.787615pt;}
._32{width:254.131243pt;}
._2a{width:273.904923pt;}
._41{width:278.825629pt;}
._2e{width:279.715086pt;}
._2b{width:294.276357pt;}
._43{width:296.055271pt;}
._42{width:297.824621pt;}
._27{width:299.326177pt;}
._40{width:312.691942pt;}
._29{width:348.911012pt;}
._c{width:662.574269pt;}
._17{width:727.590139pt;}
._25{width:1112.691529pt;}
.fs5{font-size:29.754133pt;}
.fs9{font-size:32.038400pt;}
.fs8{font-size:33.473067pt;}
.fs2{font-size:34.668800pt;}
.fs3{font-size:42.507733pt;}
.fs0{font-size:47.820267pt;}
.fsa{font-size:48.286644pt;}
.fs6{font-size:53.133867pt;}
.fs4{font-size:58.448000pt;}
.fs7{font-size:63.760533pt;}
.fs1{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:127.445600pt;}
.y1a6{bottom:164.031227pt;}
.y14a{bottom:164.031546pt;}
.y158{bottom:164.031570pt;}
.y127{bottom:164.031649pt;}
.y1ff{bottom:164.031654pt;}
.y4d{bottom:164.031942pt;}
.yae{bottom:164.032220pt;}
.yd8{bottom:164.032628pt;}
.y106{bottom:164.033056pt;}
.y1ba{bottom:164.033946pt;}
.y80{bottom:164.035085pt;}
.y41{bottom:164.035158pt;}
.y18b{bottom:164.040589pt;}
.y4c{bottom:176.806579pt;}
.y149{bottom:178.242533pt;}
.y157{bottom:178.242558pt;}
.y126{bottom:178.242637pt;}
.y1a5{bottom:179.980482pt;}
.yad{bottom:179.981475pt;}
.yd7{bottom:179.981883pt;}
.y105{bottom:179.982311pt;}
.y1b9{bottom:179.983200pt;}
.y7f{bottom:179.984339pt;}
.y40{bottom:179.984413pt;}
.y18a{bottom:179.989843pt;}
.y4b{bottom:189.657536pt;}
.y1fe{bottom:190.185753pt;}
.y148{bottom:192.453546pt;}
.y125{bottom:192.453625pt;}
.y1a4{bottom:195.854419pt;}
.yac{bottom:195.855412pt;}
.yd6{bottom:195.855820pt;}
.y104{bottom:195.856248pt;}
.y1b8{bottom:195.857138pt;}
.y7e{bottom:195.858277pt;}
.y3f{bottom:195.858350pt;}
.y189{bottom:195.863781pt;}
.y4a{bottom:202.432172pt;}
.y1fd{bottom:204.396741pt;}
.y147{bottom:206.664533pt;}
.y124{bottom:206.664612pt;}
.yab{bottom:211.805075pt;}
.y103{bottom:211.805503pt;}
.y1b7{bottom:211.806392pt;}
.y7d{bottom:211.807531pt;}
.y3e{bottom:211.807605pt;}
.y49{bottom:215.206809pt;}
.y1fc{bottom:218.607729pt;}
.y156{bottom:220.875546pt;}
.y123{bottom:220.875625pt;}
.y188{bottom:223.530196pt;}
.yaa{bottom:227.754329pt;}
.y102{bottom:227.754757pt;}
.y1b6{bottom:227.755647pt;}
.y7c{bottom:227.756786pt;}
.y3d{bottom:227.756859pt;}
.y48{bottom:227.981446pt;}
.y155{bottom:235.086533pt;}
.y122{bottom:235.086612pt;}
.y187{bottom:239.404133pt;}
.y1a3{bottom:242.645355pt;}
.y1fb{bottom:243.326025pt;}
.yd5{bottom:243.628267pt;}
.ya9{bottom:243.628612pt;}
.y101{bottom:243.628695pt;}
.y1b5{bottom:243.629584pt;}
.y7b{bottom:243.630723pt;}
.y3c{bottom:243.630797pt;}
.y121{bottom:249.297600pt;}
.y47{bottom:253.607233pt;}
.y186{bottom:255.353388pt;}
.y1fa{bottom:257.537012pt;}
.ya8{bottom:259.577867pt;}
.y100{bottom:259.577949pt;}
.y7a{bottom:259.579978pt;}
.y3b{bottom:259.580051pt;}
.y46{bottom:266.381869pt;}
.y185{bottom:271.302642pt;}
.yd4{bottom:271.445600pt;}
.y1f9{bottom:271.748000pt;}
.yff{bottom:275.451887pt;}
.y79{bottom:275.453915pt;}
.y3a{bottom:275.453988pt;}
.y1a2{bottom:275.905546pt;}
.y1b4{bottom:276.360166pt;}
.y45{bottom:279.156506pt;}
.ya7{bottom:287.092800pt;}
.y184{bottom:287.176580pt;}
.y19f{bottom:290.116396pt;}
.y1a0{bottom:290.116533pt;}
.yfe{bottom:291.401141pt;}
.y78{bottom:291.403170pt;}
.y39{bottom:291.403243pt;}
.y44{bottom:292.006594pt;}
.y1b3{bottom:292.309420pt;}
.y1f8{bottom:299.111812pt;}
.y183{bottom:303.125834pt;}
.yd3{bottom:303.647200pt;}
.y19e{bottom:304.327384pt;}
.y1a1{bottom:304.327521pt;}
.y43{bottom:304.781230pt;}
.yfd{bottom:307.350395pt;}
.y77{bottom:307.352424pt;}
.y38{bottom:307.352497pt;}
.y1b2{bottom:308.258675pt;}
.y1f7{bottom:313.322800pt;}
.y42{bottom:317.555867pt;}
.y182{bottom:319.075089pt;}
.y76{bottom:323.226362pt;}
.y37{bottom:323.226435pt;}
.y1b1{bottom:324.132612pt;}
.y19b{bottom:327.080129pt;}
.y19c{bottom:327.080267pt;}
.ya6{bottom:333.811006pt;}
.y181{bottom:334.949026pt;}
.y75{bottom:339.175616pt;}
.y36{bottom:339.175689pt;}
.y1b0{bottom:340.082212pt;}
.y19a{bottom:341.291117pt;}
.y19d{bottom:341.291254pt;}
.ya5{bottom:349.684944pt;}
.y180{bottom:350.898281pt;}
.y2a{bottom:354.446802pt;}
.y74{bottom:355.124871pt;}
.y35{bottom:355.124944pt;}
.y1af{bottom:356.031529pt;}
.yfc{bottom:357.013879pt;}
.yd2{bottom:358.072462pt;}
.y198{bottom:364.044000pt;}
.y197{bottom:364.044848pt;}
.ya4{bottom:365.634198pt;}
.y1f6{bottom:366.614133pt;}
.y1d2{bottom:366.618982pt;}
.y17f{bottom:366.847535pt;}
.y29{bottom:370.396057pt;}
.y73{bottom:370.998808pt;}
.y34{bottom:370.998881pt;}
.y1ae{bottom:371.905875pt;}
.yd1{bottom:373.948661pt;}
.y199{bottom:378.254988pt;}
.y196{bottom:378.255836pt;}
.ya3{bottom:381.508136pt;}
.y1d1{bottom:382.568236pt;}
.y17e{bottom:382.721473pt;}
.y28{bottom:386.345311pt;}
.y72{bottom:386.948062pt;}
.y33{bottom:386.948136pt;}
.y1ad{bottom:387.855129pt;}
.yd0{bottom:389.897915pt;}
.yfb{bottom:390.274070pt;}
.ya2{bottom:397.457390pt;}
.y1d0{bottom:398.442174pt;}
.y17d{bottom:398.670727pt;}
.y27{bottom:402.219249pt;}
.y1f5{bottom:402.293208pt;}
.y71{bottom:402.822000pt;}
.y1ac{bottom:403.731509pt;}
.y195{bottom:404.409935pt;}
.yfa{bottom:404.485057pt;}
.ycf{bottom:405.771853pt;}
.y193{bottom:412.119758pt;}
.y32{bottom:412.573821pt;}
.ya1{bottom:413.406644pt;}
.y1cf{bottom:414.391428pt;}
.y17c{bottom:414.544665pt;}
.y1f4{bottom:418.167146pt;}
.y26{bottom:418.168503pt;}
.y194{bottom:418.620923pt;}
.yf9{bottom:418.696045pt;}
.y1ab{bottom:419.680764pt;}
.yce{bottom:421.721107pt;}
.y192{bottom:426.330746pt;}
.y31{bottom:428.523076pt;}
.ya0{bottom:429.280582pt;}
.y17b{bottom:430.493919pt;}
.y70{bottom:430.714800pt;}
.yf8{bottom:432.907033pt;}
.y25{bottom:434.117757pt;}
.y1f3{bottom:434.120451pt;}
.y1aa{bottom:435.630018pt;}
.ycd{bottom:437.670362pt;}
.y1ce{bottom:439.562821pt;}
.y191{bottom:440.541733pt;}
.y30{bottom:444.397013pt;}
.y9f{bottom:445.229836pt;}
.y17a{bottom:446.443173pt;}
.yf7{bottom:447.118021pt;}
.y24{bottom:449.991695pt;}
.y1f2{bottom:450.069705pt;}
.y1a9{bottom:451.503956pt;}
.ycc{bottom:453.544299pt;}
.y1cd{bottom:455.512076pt;}
.y9e{bottom:461.179091pt;}
.y179{bottom:462.317111pt;}
.y6f{bottom:463.143200pt;}
.y23{bottom:465.940949pt;}
.y1f1{bottom:465.943643pt;}
.y1a8{bottom:467.453210pt;}
.y190{bottom:469.190479pt;}
.ycb{bottom:469.493554pt;}
.yf6{bottom:469.870903pt;}
.y1cc{bottom:471.461330pt;}
.y9d{bottom:477.053028pt;}
.y178{bottom:478.266365pt;}
.y22{bottom:481.814887pt;}
.y1f0{bottom:481.892897pt;}
.y18f{bottom:483.401467pt;}
.y1a7{bottom:483.402465pt;}
.yf5{bottom:484.081891pt;}
.yca{bottom:485.442808pt;}
.y1cb{bottom:487.335268pt;}
.y2f{bottom:491.338582pt;}
.y9c{bottom:493.002283pt;}
.y177{bottom:494.215620pt;}
.y21{bottom:497.764141pt;}
.y1ef{bottom:497.766835pt;}
.yf4{bottom:498.292879pt;}
.yc9{bottom:501.316746pt;}
.y1ca{bottom:503.284522pt;}
.y2e{bottom:505.549570pt;}
.y9b{bottom:508.951537pt;}
.y176{bottom:510.089557pt;}
.yf3{bottom:512.503775pt;}
.y20{bottom:513.713396pt;}
.y1ee{bottom:513.716089pt;}
.yc8{bottom:517.266062pt;}
.y6e{bottom:518.105011pt;}
.y1c9{bottom:519.233776pt;}
.y2d{bottom:519.760558pt;}
.y9a{bottom:524.825475pt;}
.y175{bottom:526.038812pt;}
.yf2{bottom:526.714763pt;}
.y1f{bottom:529.587333pt;}
.y1ed{bottom:529.665344pt;}
.y154{bottom:530.343262pt;}
.y146{bottom:530.344362pt;}
.yc7{bottom:533.140346pt;}
.y2c{bottom:533.971546pt;}
.y6d{bottom:534.054266pt;}
.y1c8{bottom:535.107714pt;}
.y18e{bottom:536.314879pt;}
.y99{bottom:540.774729pt;}
.yf1{bottom:540.925751pt;}
.y145{bottom:546.218299pt;}
.y153{bottom:546.223079pt;}
.y2b{bottom:548.182533pt;}
.yc6{bottom:549.089946pt;}
.y6c{bottom:550.003520pt;}
.y18d{bottom:550.525946pt;}
.y1c7{bottom:551.056968pt;}
.y174{bottom:553.629910pt;}
.yf0{bottom:555.136738pt;}
.y98{bottom:556.648667pt;}
.y1e{bottom:557.177867pt;}
.y1ec{bottom:558.012002pt;}
.y50{bottom:560.428267pt;}
.y144{bottom:562.167554pt;}
.y152{bottom:562.172333pt;}
.y120{bottom:562.395330pt;}
.y18c{bottom:564.736933pt;}
.yc5{bottom:565.039262pt;}
.y6b{bottom:565.877458pt;}
.y1c6{bottom:566.930906pt;}
.yef{bottom:569.347726pt;}
.y173{bottom:569.579165pt;}
.y1eb{bottom:573.961257pt;}
.y143{bottom:578.116808pt;}
.y151{bottom:578.121588pt;}
.y11f{bottom:578.344585pt;}
.yc4{bottom:580.913200pt;}
.y6a{bottom:581.826712pt;}
.y1c5{bottom:582.880160pt;}
.y97{bottom:584.163600pt;}
.y172{bottom:585.528419pt;}
.y1ea{bottom:589.910511pt;}
.y142{bottom:593.990746pt;}
.y150{bottom:593.995525pt;}
.y11e{bottom:594.218522pt;}
.yee{bottom:595.501825pt;}
.yc3{bottom:596.863146pt;}
.y69{bottom:597.700650pt;}
.y1c4{bottom:598.829415pt;}
.y171{bottom:601.402357pt;}
.y1e9{bottom:605.784449pt;}
.y141{bottom:609.940062pt;}
.y14f{bottom:609.944780pt;}
.y11d{bottom:610.167776pt;}
.yc2{bottom:612.812400pt;}
.y68{bottom:613.649904pt;}
.y1c3{bottom:614.703352pt;}
.y170{bottom:617.351611pt;}
.y1e8{bottom:621.733703pt;}
.y140{bottom:625.816049pt;}
.y14e{bottom:625.818717pt;}
.y11c{bottom:626.041714pt;}
.yed{bottom:627.099015pt;}
.y67{bottom:629.599159pt;}
.y1c2{bottom:630.652607pt;}
.y16f{bottom:633.300865pt;}
.y96{bottom:637.379333pt;}
.y1e7{bottom:637.682957pt;}
.y21b{bottom:638.889363pt;}
.y235{bottom:638.894676pt;}
.yc1{bottom:640.554133pt;}
.yec{bottom:641.310003pt;}
.y13f{bottom:641.765303pt;}
.y14d{bottom:641.767972pt;}
.y11b{bottom:641.990968pt;}
.y66{bottom:645.473096pt;}
.y1c1{bottom:646.601861pt;}
.y16e{bottom:649.174803pt;}
.y234{bottom:650.989189pt;}
.y1d{bottom:651.060869pt;}
.y95{bottom:651.590400pt;}
.y1e6{bottom:653.556895pt;}
.y21a{bottom:653.856336pt;}
.yeb{bottom:655.520990pt;}
.y13e{bottom:657.714557pt;}
.y14c{bottom:657.717226pt;}
.y65{bottom:661.422351pt;}
.y1c0{bottom:662.475799pt;}
.y16d{bottom:665.124057pt;}
.y1c{bottom:665.272267pt;}
.y94{bottom:665.808329pt;}
.y219{bottom:665.875397pt;}
.y233{bottom:667.921082pt;}
.y1e5{bottom:669.506149pt;}
.y13d{bottom:673.588495pt;}
.y14b{bottom:673.591164pt;}
.y64{bottom:677.371605pt;}
.y218{bottom:680.842370pt;}
.y16c{bottom:680.997995pt;}
.y11a{bottom:681.675812pt;}
.y232{bottom:684.852975pt;}
.y1e4{bottom:685.380087pt;}
.y13c{bottom:689.537749pt;}
.yc0{bottom:689.540418pt;}
.y93{bottom:691.962429pt;}
.yea{bottom:693.014471pt;}
.y63{bottom:693.245543pt;}
.y217{bottom:695.733892pt;}
.y1b{bottom:696.945962pt;}
.y16b{bottom:696.947249pt;}
.y231{bottom:696.947488pt;}
.y119{bottom:697.625883pt;}
.y1e3{bottom:701.329341pt;}
.y1bf{bottom:705.184079pt;}
.y13b{bottom:705.487004pt;}
.ybf{bottom:705.489673pt;}
.y92{bottom:706.173416pt;}
.ye9{bottom:708.888408pt;}
.y62{bottom:709.194797pt;}
.y216{bottom:710.700865pt;}
.y1a{bottom:712.895216pt;}
.y118{bottom:713.499820pt;}
.y230{bottom:713.879381pt;}
.y1e2{bottom:717.278596pt;}
.y1be{bottom:719.395146pt;}
.y13a{bottom:721.360941pt;}
.ybe{bottom:721.363610pt;}
.y215{bottom:722.795378pt;}
.y16a{bottom:724.613665pt;}
.ye8{bottom:724.837662pt;}
.y61{bottom:725.068735pt;}
.y19{bottom:728.769154pt;}
.y117{bottom:729.449075pt;}
.y22f{bottom:730.811273pt;}
.y1e1{bottom:733.153012pt;}
.y1bd{bottom:733.606158pt;}
.y91{bottom:735.578098pt;}
.y139{bottom:737.310196pt;}
.ybd{bottom:737.312865pt;}
.y214{bottom:737.686899pt;}
.y169{bottom:740.487602pt;}
.ye7{bottom:740.712354pt;}
.y60{bottom:741.017989pt;}
.y22e{bottom:742.905786pt;}
.y18{bottom:744.718408pt;}
.y116{bottom:745.398329pt;}
.y1bc{bottom:747.817146pt;}
.y1e0{bottom:749.103774pt;}
.y213{bottom:749.781412pt;}
.y90{bottom:749.789086pt;}
.ybc{bottom:753.186802pt;}
.y138{bottom:753.191680pt;}
.y168{bottom:756.436857pt;}
.ye6{bottom:756.661608pt;}
.y5f{bottom:756.967243pt;}
.y22d{bottom:759.837679pt;}
.y17{bottom:760.667662pt;}
.y115{bottom:761.272958pt;}
.y1bb{bottom:762.028133pt;}
.y212{bottom:764.672934pt;}
.y1df{bottom:765.053028pt;}
.ybb{bottom:769.136057pt;}
.y137{bottom:769.140935pt;}
.y22c{bottom:771.856741pt;}
.y167{bottom:772.386111pt;}
.ye5{bottom:772.610862pt;}
.y5e{bottom:772.841181pt;}
.y16{bottom:776.543515pt;}
.y211{bottom:776.767447pt;}
.y114{bottom:777.222212pt;}
.y1de{bottom:780.926966pt;}
.yba{bottom:785.085311pt;}
.y8f{bottom:785.090007pt;}
.y136{bottom:785.090189pt;}
.y166{bottom:788.260049pt;}
.ye4{bottom:788.485491pt;}
.y22b{bottom:788.788634pt;}
.y5d{bottom:788.790435pt;}
.y210{bottom:791.734420pt;}
.y15{bottom:792.492770pt;}
.y113{bottom:793.171529pt;}
.y1dd{bottom:796.876220pt;}
.yb9{bottom:800.959249pt;}
.y8e{bottom:800.963944pt;}
.y135{bottom:800.964127pt;}
.y20f{bottom:803.828932pt;}
.y165{bottom:804.209303pt;}
.ye3{bottom:804.434746pt;}
.y5c{bottom:804.739690pt;}
.y22a{bottom:805.720526pt;}
.y14{bottom:808.366707pt;}
.y112{bottom:809.046652pt;}
.y1dc{bottom:812.750158pt;}
.yb8{bottom:816.908503pt;}
.y8d{bottom:816.913199pt;}
.y134{bottom:816.913381pt;}
.y20e{bottom:818.720454pt;}
.y164{bottom:820.083241pt;}
.ye2{bottom:820.385382pt;}
.y229{bottom:822.652419pt;}
.y13{bottom:824.315962pt;}
.y111{bottom:824.995907pt;}
.y1db{bottom:828.699412pt;}
.y20d{bottom:830.814967pt;}
.yb7{bottom:832.857757pt;}
.y5b{bottom:832.859202pt;}
.y8c{bottom:832.862453pt;}
.y133{bottom:832.862636pt;}
.y228{bottom:834.746932pt;}
.y163{bottom:836.032495pt;}
.ye1{bottom:836.259319pt;}
.y12{bottom:840.265216pt;}
.y110{bottom:840.869844pt;}
.y20c{bottom:842.909480pt;}
.y1da{bottom:844.648667pt;}
.yb6{bottom:848.731695pt;}
.y5a{bottom:848.733140pt;}
.y8b{bottom:848.736391pt;}
.y132{bottom:848.736573pt;}
.y227{bottom:851.678825pt;}
.y162{bottom:851.981749pt;}
.ye0{bottom:852.208574pt;}
.y20b{bottom:855.003993pt;}
.y11{bottom:856.139154pt;}
.y226{bottom:863.773338pt;}
.yb5{bottom:864.680949pt;}
.y59{bottom:864.682394pt;}
.y8a{bottom:864.685645pt;}
.y131{bottom:864.685828pt;}
.y161{bottom:867.855687pt;}
.ydf{bottom:868.082511pt;}
.y20a{bottom:869.895514pt;}
.y10{bottom:872.088408pt;}
.y1d9{bottom:872.843867pt;}
.y225{bottom:875.867851pt;}
.y9{bottom:878.588528pt;}
.yb4{bottom:880.630204pt;}
.y10f{bottom:880.631200pt;}
.y58{bottom:880.631649pt;}
.y89{bottom:880.634900pt;}
.y130{bottom:880.635082pt;}
.y209{bottom:881.990027pt;}
.y160{bottom:883.804941pt;}
.yf{bottom:888.037662pt;}
.y8{bottom:892.799515pt;}
.y224{bottom:892.799744pt;}
.y208{bottom:894.084540pt;}
.yb3{bottom:896.504141pt;}
.yde{bottom:896.504487pt;}
.y10e{bottom:896.505138pt;}
.y57{bottom:896.505586pt;}
.y88{bottom:896.508837pt;}
.y12f{bottom:896.509020pt;}
.y15f{bottom:899.754196pt;}
.ye{bottom:903.911600pt;}
.y223{bottom:904.894256pt;}
.y207{bottom:906.179053pt;}
.y7{bottom:907.010503pt;}
.yb2{bottom:912.453396pt;}
.ydd{bottom:912.453741pt;}
.y10d{bottom:912.454392pt;}
.y56{bottom:912.454841pt;}
.y87{bottom:912.458092pt;}
.y12e{bottom:912.458274pt;}
.y15e{bottom:915.629232pt;}
.y206{bottom:918.273565pt;}
.y6{bottom:921.221491pt;}
.y222{bottom:921.827212pt;}
.ydc{bottom:928.327679pt;}
.yb1{bottom:928.328087pt;}
.y10c{bottom:928.328330pt;}
.y55{bottom:928.328778pt;}
.y86{bottom:928.332029pt;}
.y12d{bottom:928.332212pt;}
.y1d8{bottom:928.336158pt;}
.y15d{bottom:931.578487pt;}
.y205{bottom:933.165087pt;}
.y221{bottom:933.921725pt;}
.y5{bottom:935.432479pt;}
.yd{bottom:937.170179pt;}
.yb0{bottom:944.277341pt;}
.y10b{bottom:944.277584pt;}
.y54{bottom:944.278032pt;}
.y85{bottom:944.281284pt;}
.y12c{bottom:944.281466pt;}
.y1d7{bottom:944.285412pt;}
.y204{bottom:945.259600pt;}
.y15c{bottom:947.452424pt;}
.y220{bottom:950.853618pt;}
.y203{bottom:957.354133pt;}
.yc{bottom:959.923364pt;}
.yaf{bottom:960.226596pt;}
.y10a{bottom:960.226839pt;}
.y53{bottom:960.227287pt;}
.y84{bottom:960.230538pt;}
.y12b{bottom:960.230720pt;}
.y1d6{bottom:960.234667pt;}
.y15b{bottom:963.401679pt;}
.y4{bottom:965.291453pt;}
.y21f{bottom:967.785511pt;}
.y202{bottom:969.448405pt;}
.ydb{bottom:976.100533pt;}
.y109{bottom:976.100776pt;}
.y52{bottom:976.101224pt;}
.y83{bottom:976.104476pt;}
.y12a{bottom:976.104658pt;}
.y1d5{bottom:976.108604pt;}
.y15a{bottom:979.350933pt;}
.y3{bottom:979.502441pt;}
.y21e{bottom:979.804572pt;}
.y201{bottom:981.467467pt;}
.yb{bottom:982.676549pt;}
.y108{bottom:992.050031pt;}
.y51{bottom:992.050479pt;}
.y82{bottom:992.053730pt;}
.y129{bottom:992.053912pt;}
.yda{bottom:992.054892pt;}
.y1d4{bottom:992.057859pt;}
.y2{bottom:993.788746pt;}
.y21d{bottom:996.736465pt;}
.ya{bottom:1005.429733pt;}
.y200{bottom:1006.185600pt;}
.y159{bottom:1007.092667pt;}
.y107{bottom:1007.999285pt;}
.y1{bottom:1007.999733pt;}
.y81{bottom:1008.002985pt;}
.y128{bottom:1008.003167pt;}
.yd9{bottom:1008.004146pt;}
.y1d3{bottom:1008.007113pt;}
.y21c{bottom:1008.830978pt;}
.y4e{bottom:1037.253333pt;}
.h3{height:31.073153pt;}
.h5{height:31.200676pt;}
.hb{height:34.813154pt;}
.h6{height:34.896563pt;}
.h1{height:34.956615pt;}
.h10{height:34.956822pt;}
.h15{height:34.956833pt;}
.h12{height:34.957634pt;}
.h19{height:35.100076pt;}
.h17{height:35.152677pt;}
.h7{height:35.865360pt;}
.h9{height:38.840857pt;}
.h18{height:39.207983pt;}
.ha{height:39.209714pt;}
.he{height:39.223937pt;}
.hd{height:39.517543pt;}
.hf{height:39.524356pt;}
.h11{height:39.526953pt;}
.h1a{height:42.468288pt;}
.h16{height:42.468821pt;}
.h4{height:42.725488pt;}
.h13{height:42.740815pt;}
.h14{height:42.767017pt;}
.h1b{height:42.770906pt;}
.hc{height:42.771537pt;}
.h8{height:46.608950pt;}
.h2{height:54.377043pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x18{left:80.881867pt;}
.xf{left:86.927576pt;}
.x10{left:89.801600pt;}
.x11{left:98.267733pt;}
.xa{left:124.799979pt;}
.x13{left:194.343797pt;}
.xb{left:199.483333pt;}
.x12{left:205.153202pt;}
.x2{left:264.566800pt;}
.xd{left:268.648176pt;}
.xc{left:283.691236pt;}
.x14{left:313.171600pt;}
.xe{left:326.929126pt;}
.x5{left:415.745465pt;}
.x19{left:438.267688pt;}
.x15{left:453.543200pt;}
.x7{left:464.959476pt;}
.x8{left:493.306134pt;}
.x9{left:494.966318pt;}
.x3{left:548.031333pt;}
.x16{left:561.562000pt;}
.x4{left:600.037600pt;}
.x17{left:647.887145pt;}
.x6{left:780.094267pt;}
}




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