
    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_f464cf44dd3b014cdd518ea4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_550a5026410c593d365a545f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052000;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_31d2cbd45b9afae17df6fd28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_7d9c2e28cc1ef9f5906fedf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_440d52e61fb89d247e3c01f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.673340;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_f4ffbfcfe91269053036aed0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_c56090d38d98f65b92061129.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_90ac4cab0476ee8855982802.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104000;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_d9ea3ded578d9c213f364dd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1ac1eb8e41f6545333b118ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.674000;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_01898dbcaadfffc1de9d3a51.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_5894e97d2a308c528158413e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_27c1d049c868a93b6c787191.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58f070627b2aa6181f9676e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.535000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_700f366b493abf0b048b48f8.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_70351fa6a21662f1916c2e0d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.671387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_89eae9f95ce7aef68144e482.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_506e26c11de1a701d258bdb0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b81f0b7639bc685e82d8040e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ae09a5fb61326fa8d44375a3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_804c29eeb2a375bde991c5a8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.908203;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:ff16;src:url('chunks/assets/font_1db2dbdf6ce04752f10b3149.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.908203;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:ff17;src:url('chunks/assets/font_804c29eeb2a375bde991c5a8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.908203;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:ff18;src:url('chunks/assets/font_4079eb690c98b05c72b81be0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.908203;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:ff19;src:url('chunks/assets/font_804c29eeb2a375bde991c5a8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.908203;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:ff1a;src:url('chunks/assets/font_4079eb690c98b05c72b81be0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.908203;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:ff1b;src:url('chunks/assets/font_65ba65307daf4289f7ea05de.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.904000;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:ff1c;src:url('chunks/assets/font_804c29eeb2a375bde991c5a8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.908203;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:ff1d;src:url('chunks/assets/font_1db2dbdf6ce04752f10b3149.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908203;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;}
.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);}
.v4{vertical-align:-26.432258px;}
.v2{vertical-align:-16.880524px;}
.v6{vertical-align:-12.197470px;}
.v3{vertical-align:-8.965288px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.354754px;}
.v8{vertical-align:16.878184px;}
.v1{vertical-align:21.697205px;}
.v7{vertical-align:40.436382px;}
.ls0{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000643px;}
.ls1{letter-spacing:0.002545px;}
.ls53{letter-spacing:0.003035px;}
.ls1b{letter-spacing:0.003193px;}
.ls56{letter-spacing:0.004380px;}
.ls26{letter-spacing:0.005323px;}
.ls3e{letter-spacing:0.010349px;}
.ls9{letter-spacing:0.011537px;}
.ls37{letter-spacing:0.012781px;}
.ls16{letter-spacing:0.013837px;}
.ls1e{letter-spacing:0.015121px;}
.ls6{letter-spacing:0.018577px;}
.ls3{letter-spacing:0.020917px;}
.ls41{letter-spacing:0.021363px;}
.ls24{letter-spacing:0.030734px;}
.lsb{letter-spacing:0.030904px;}
.ls10{letter-spacing:0.040264px;}
.ls5e{letter-spacing:0.042961px;}
.ls35{letter-spacing:0.044541px;}
.ls36{letter-spacing:0.045301px;}
.ls1c{letter-spacing:0.049981px;}
.ls63{letter-spacing:0.052321px;}
.ls21{letter-spacing:0.052390px;}
.ls31{letter-spacing:0.057070px;}
.ls34{letter-spacing:0.255722px;}
.ls1d{letter-spacing:1.201771px;}
.ls42{letter-spacing:2.998799px;}
.ls33{letter-spacing:3.004097px;}
.ls4{letter-spacing:3.006437px;}
.ls32{letter-spacing:3.011117px;}
.ls20{letter-spacing:3.241771px;}
.ls1f{letter-spacing:3.244111px;}
.ls30{letter-spacing:3.519910px;}
.lsf{letter-spacing:4.502936px;}
.lsa{letter-spacing:4.530615px;}
.ls4b{letter-spacing:5.975159px;}
.ls23{letter-spacing:6.678084px;}
.ls22{letter-spacing:7.841943px;}
.ls43{letter-spacing:10.009039px;}
.ls48{letter-spacing:10.011379px;}
.ls51{letter-spacing:10.460888px;}
.ls2{letter-spacing:11.952958px;}
.ls2b{letter-spacing:12.296354px;}
.ls64{letter-spacing:13.017531px;}
.ls40{letter-spacing:13.332365px;}
.ls62{letter-spacing:13.420691px;}
.ls52{letter-spacing:13.452733px;}
.ls57{letter-spacing:14.152128px;}
.ls55{letter-spacing:14.311496px;}
.ls2f{letter-spacing:14.944167px;}
.ls2a{letter-spacing:15.273480px;}
.ls25{letter-spacing:15.576586px;}
.ls5f{letter-spacing:15.934311px;}
.ls44{letter-spacing:15.957871px;}
.ls3f{letter-spacing:16.283823px;}
.ls4e{letter-spacing:16.342134px;}
.ls4f{letter-spacing:16.345057px;}
.ls2d{letter-spacing:16.605830px;}
.ls3c{letter-spacing:16.644163px;}
.ls28{letter-spacing:16.646171px;}
.ls29{letter-spacing:16.653951px;}
.ls18{letter-spacing:16.739144px;}
.ls19{letter-spacing:16.741484px;}
.ls14{letter-spacing:16.917534px;}
.ls17{letter-spacing:17.261830px;}
.ls27{letter-spacing:17.388436px;}
.ls5c{letter-spacing:17.389864px;}
.ls15{letter-spacing:17.501183px;}
.ls4d{letter-spacing:17.733270px;}
.ls50{letter-spacing:17.734383px;}
.ls45{letter-spacing:18.118328px;}
.ls2e{letter-spacing:18.459757px;}
.ls3b{letter-spacing:18.772301px;}
.ls5b{letter-spacing:18.859458px;}
.ls5a{letter-spacing:18.938267px;}
.ls2c{letter-spacing:19.623698px;}
.ls54{letter-spacing:19.654017px;}
.ls3d{letter-spacing:20.502184px;}
.ls58{letter-spacing:21.897110px;}
.ls1a{letter-spacing:22.033166px;}
.ls59{letter-spacing:23.635422px;}
.ls5{letter-spacing:24.173935px;}
.lsc{letter-spacing:24.191906px;}
.ls11{letter-spacing:24.358295px;}
.ls60{letter-spacing:24.596370px;}
.ls47{letter-spacing:24.913296px;}
.ls46{letter-spacing:24.923153px;}
.ls5d{letter-spacing:25.054287px;}
.ls61{letter-spacing:26.019101px;}
.ls13{letter-spacing:27.865861px;}
.ls12{letter-spacing:27.889588px;}
.ls8{letter-spacing:28.176259px;}
.lse{letter-spacing:28.487675px;}
.ls39{letter-spacing:28.973362px;}
.ls3a{letter-spacing:29.010301px;}
.ls7{letter-spacing:31.142204px;}
.lsd{letter-spacing:31.461000px;}
.ls4c{letter-spacing:223.109429px;}
.ls49{letter-spacing:235.895468px;}
.ls4a{letter-spacing:249.349067px;}
.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;}
}
.ws80{word-spacing:-35.867153px;}
.wsdd{word-spacing:-29.889294px;}
.ws90{word-spacing:-28.693795px;}
.wsd6{word-spacing:-23.650902px;}
.ws242{word-spacing:-22.850582px;}
.ws21f{word-spacing:-22.682094px;}
.ws141{word-spacing:-22.569288px;}
.ws1ca{word-spacing:-21.558478px;}
.ws131{word-spacing:-21.546597px;}
.ws137{word-spacing:-20.958808px;}
.ws1b3{word-spacing:-20.924486px;}
.wsf3{word-spacing:-20.922446px;}
.ws1a1{word-spacing:-20.920646px;}
.ws236{word-spacing:-20.919206px;}
.ws1af{word-spacing:-20.627831px;}
.ws13a{word-spacing:-19.915116px;}
.wseb{word-spacing:-19.875622px;}
.ws1f7{word-spacing:-19.588459px;}
.ws220{word-spacing:-19.562538px;}
.ws185{word-spacing:-17.592280px;}
.ws1cc{word-spacing:-17.099655px;}
.ws186{word-spacing:-16.927086px;}
.ws106{word-spacing:-16.742877px;}
.ws108{word-spacing:-16.736037px;}
.wsf5{word-spacing:-16.632780px;}
.ws212{word-spacing:-16.405180px;}
.ws214{word-spacing:-16.400980px;}
.ws16d{word-spacing:-16.209090px;}
.ws170{word-spacing:-15.732787px;}
.ws5{word-spacing:-14.944647px;}
.ws132{word-spacing:-14.576289px;}
.ws144{word-spacing:-14.093625px;}
.ws1e6{word-spacing:-13.956098px;}
.ws13d{word-spacing:-13.692805px;}
.ws1b9{word-spacing:-13.677564px;}
.wsdf{word-spacing:-13.271743px;}
.wsea{word-spacing:-13.216568px;}
.ws1fa{word-spacing:-12.626791px;}
.ws1c8{word-spacing:-12.414621px;}
.ws19f{word-spacing:-12.412821px;}
.wscf{word-spacing:-12.387200px;}
.ws1fd{word-spacing:-12.370218px;}
.wsc6{word-spacing:-12.368463px;}
.ws12c{word-spacing:-12.092885px;}
.ws30{word-spacing:-11.955748px;}
.ws1bd{word-spacing:-11.026751px;}
.wsc4{word-spacing:-10.843577px;}
.ws13e{word-spacing:-9.687244px;}
.ws11e{word-spacing:-3.048349px;}
.ws2b9{word-spacing:-2.928374px;}
.ws292{word-spacing:-2.630676px;}
.ws282{word-spacing:-2.033548px;}
.ws1d5{word-spacing:-2.032592px;}
.ws1d4{word-spacing:-2.026994px;}
.ws1d3{word-spacing:-2.023725px;}
.ws10c{word-spacing:-1.614022px;}
.ws260{word-spacing:-1.553705px;}
.ws2a8{word-spacing:-1.374848px;}
.ws2ca{word-spacing:-1.256008px;}
.ws121{word-spacing:-0.537768px;}
.ws286{word-spacing:-0.239951px;}
.ws2b6{word-spacing:-0.120155px;}
.ws81{word-spacing:-0.059779px;}
.ws18e{word-spacing:-0.049452px;}
.ws22d{word-spacing:-0.048527px;}
.ws18d{word-spacing:-0.047392px;}
.ws22c{word-spacing:-0.046505px;}
.ws25b{word-spacing:-0.002794px;}
.ws28a{word-spacing:-0.001196px;}
.ws261{word-spacing:-0.001136px;}
.wsfc{word-spacing:-0.001076px;}
.ws1{word-spacing:-0.001033px;}
.ws2cb{word-spacing:-0.001016px;}
.ws204{word-spacing:-0.000897px;}
.ws0{word-spacing:-0.000861px;}
.wsb8{word-spacing:-0.000717px;}
.ws154{word-spacing:-0.000598px;}
.ws71{word-spacing:-0.000239px;}
.ws4{word-spacing:-0.000161px;}
.ws59{word-spacing:0.000000px;}
.wscb{word-spacing:0.000120px;}
.ws275{word-spacing:0.000299px;}
.ws271{word-spacing:0.000359px;}
.ws6d{word-spacing:0.000418px;}
.ws116{word-spacing:0.000897px;}
.ws285{word-spacing:0.118660px;}
.ws25a{word-spacing:0.119079px;}
.ws2c6{word-spacing:1.135554px;}
.ws19c{word-spacing:1.195452px;}
.ws1c5{word-spacing:1.195572px;}
.ws51{word-spacing:1.265847px;}
.ws2c0{word-spacing:1.614022px;}
.ws27c{word-spacing:1.732563px;}
.ws31{word-spacing:2.055432px;}
.ws26a{word-spacing:2.748739px;}
.ws2a4{word-spacing:2.868476px;}
.ws2d{word-spacing:3.002138px;}
.ws199{word-spacing:3.706093px;}
.ws25d{word-spacing:4.184681px;}
.ws29f{word-spacing:4.303461px;}
.ws270{word-spacing:4.482557px;}
.ws2b3{word-spacing:4.482796px;}
.ws274{word-spacing:5.199661px;}
.ws2a9{word-spacing:5.260097px;}
.ws157{word-spacing:5.319338px;}
.ws1d6{word-spacing:5.488304px;}
.ws1d7{word-spacing:5.517834px;}
.ws156{word-spacing:5.558632px;}
.ws27b{word-spacing:5.917662px;}
.ws2bd{word-spacing:6.395831px;}
.ws50{word-spacing:6.455729px;}
.ws2cf{word-spacing:6.754024px;}
.ws278{word-spacing:7.113473px;}
.ws34{word-spacing:7.411469px;}
.ws1f2{word-spacing:7.581473px;}
.ws266{word-spacing:8.069213px;}
.ws2d0{word-spacing:8.966549px;}
.ws26f{word-spacing:9.147260px;}
.ws2ac{word-spacing:9.384282px;}
.ws1a3{word-spacing:9.863587px;}
.ws7f{word-spacing:9.864424px;}
.wsf8{word-spacing:9.922289px;}
.ws118{word-spacing:9.922469px;}
.ws211{word-spacing:9.923066px;}
.wsf4{word-spacing:9.969933px;}
.wsde{word-spacing:9.970351px;}
.wsbf{word-spacing:9.970531px;}
.ws6c{word-spacing:10.374325px;}
.ws166{word-spacing:10.394542px;}
.ws289{word-spacing:11.117682px;}
.ws18f{word-spacing:11.178058px;}
.ws18c{word-spacing:11.287278px;}
.ws19a{word-spacing:11.298452px;}
.ws119{word-spacing:11.418009px;}
.ws1ac{word-spacing:11.595970px;}
.ws148{word-spacing:11.621274px;}
.ws2c1{word-spacing:11.656406px;}
.ws265{word-spacing:11.715946px;}
.ws20a{word-spacing:11.716663px;}
.ws7e{word-spacing:11.775426px;}
.ws15f{word-spacing:11.776023px;}
.ws74{word-spacing:11.776442px;}
.ws11d{word-spacing:11.835623px;}
.wsfd{word-spacing:11.837237px;}
.ws149{word-spacing:11.907064px;}
.ws32{word-spacing:11.907781px;}
.ws105{word-spacing:11.908833px;}
.ws2e{word-spacing:11.952783px;}
.ws2c8{word-spacing:11.954761px;}
.ws11a{word-spacing:11.955180px;}
.ws2ba{word-spacing:12.014958px;}
.ws153{word-spacing:12.076411px;}
.wsd7{word-spacing:12.135233px;}
.wsd5{word-spacing:12.153849px;}
.ws1dd{word-spacing:12.193935px;}
.ws293{word-spacing:12.254013px;}
.ws101{word-spacing:12.254073px;}
.ws102{word-spacing:12.254910px;}
.ws16a{word-spacing:12.373869px;}
.ws201{word-spacing:12.374467px;}
.ws11f{word-spacing:12.433050px;}
.wse0{word-spacing:12.472376px;}
.wse1{word-spacing:12.493486px;}
.wse2{word-spacing:12.493725px;}
.ws6e{word-spacing:12.493845px;}
.ws26{word-spacing:12.552846px;}
.ws17{word-spacing:12.554161px;}
.ws2b8{word-spacing:12.576473px;}
.ws103{word-spacing:12.612146px;}
.ws104{word-spacing:12.613163px;}
.ws147{word-spacing:12.624744px;}
.ws28e{word-spacing:12.672583px;}
.ws92{word-spacing:12.672702px;}
.ws1cd{word-spacing:12.725694px;}
.ws1ce{word-spacing:12.731584px;}
.ws180{word-spacing:12.792259px;}
.ws14c{word-spacing:12.852157px;}
.ws6a{word-spacing:12.852277px;}
.ws281{word-spacing:12.884528px;}
.ws26b{word-spacing:12.911099px;}
.ws243{word-spacing:12.943103px;}
.ws244{word-spacing:12.953722px;}
.ws11c{word-spacing:12.970938px;}
.ws1de{word-spacing:12.972731px;}
.ws1a8{word-spacing:13.090554px;}
.ws21e{word-spacing:13.090913px;}
.wsa4{word-spacing:13.091092px;}
.ws91{word-spacing:13.091511px;}
.ws2b1{word-spacing:13.091690px;}
.ws183{word-spacing:13.092707px;}
.ws2b{word-spacing:13.103930px;}
.ws45{word-spacing:13.150572px;}
.ws283{word-spacing:13.151290px;}
.ws42{word-spacing:13.152007px;}
.ws142{word-spacing:13.210052px;}
.ws10d{word-spacing:13.269771px;}
.ws61{word-spacing:13.271684px;}
.ws241{word-spacing:13.330147px;}
.ws18a{word-spacing:13.330267px;}
.ws25f{word-spacing:13.389388px;}
.ws15{word-spacing:13.389567px;}
.ws291{word-spacing:13.449106px;}
.wsb7{word-spacing:13.450242px;}
.ws181{word-spacing:13.450541px;}
.ws2a7{word-spacing:13.470799px;}
.ws219{word-spacing:13.509901px;}
.wsa0{word-spacing:13.510320px;}
.ws98{word-spacing:13.510798px;}
.ws299{word-spacing:13.510918px;}
.ws128{word-spacing:13.569202px;}
.ws87{word-spacing:13.628562px;}
.wsd9{word-spacing:13.653554px;}
.wsdc{word-spacing:13.657368px;}
.ws2c9{word-spacing:13.658090px;}
.wsda{word-spacing:13.674942px;}
.wsdb{word-spacing:13.675233px;}
.ws9d{word-spacing:13.747940px;}
.ws208{word-spacing:13.748597px;}
.ws198{word-spacing:13.749673px;}
.ws120{word-spacing:13.808316px;}
.ws89{word-spacing:13.808734px;}
.ws155{word-spacing:13.867796px;}
.ws93{word-spacing:13.868931px;}
.ws97{word-spacing:13.927515px;}
.ws8c{word-spacing:13.928292px;}
.ws2b5{word-spacing:14.046773px;}
.ws9e{word-spacing:14.047072px;}
.ws14e{word-spacing:14.047251px;}
.ws171{word-spacing:14.077732px;}
.ws172{word-spacing:14.082629px;}
.ws173{word-spacing:14.108763px;}
.ws16f{word-spacing:14.113139px;}
.ws86{word-spacing:14.166808px;}
.wsd1{word-spacing:14.167047px;}
.wsd0{word-spacing:14.192768px;}
.ws1cb{word-spacing:14.226706px;}
.ws130{word-spacing:14.228141px;}
.wse4{word-spacing:14.286306px;}
.ws254{word-spacing:14.286425px;}
.ws11b{word-spacing:14.286604px;}
.wse3{word-spacing:14.302580px;}
.ws191{word-spacing:14.345905px;}
.ws49{word-spacing:14.347399px;}
.ws122{word-spacing:14.406580px;}
.ws24{word-spacing:14.467076px;}
.ws1ab{word-spacing:14.525002px;}
.ws276{word-spacing:14.525061px;}
.ws2f{word-spacing:14.537902px;}
.wse5{word-spacing:14.585019px;}
.ws159{word-spacing:14.585737px;}
.ws40{word-spacing:14.586454px;}
.ws3a{word-spacing:14.645037px;}
.wse6{word-spacing:14.645515px;}
.ws10e{word-spacing:14.646352px;}
.ws10f{word-spacing:14.706310px;}
.ws15b{word-spacing:14.764714px;}
.ws2c{word-spacing:14.776252px;}
.ws138{word-spacing:14.825508px;}
.ws136{word-spacing:14.826106px;}
.ws1b4{word-spacing:14.881668px;}
.wse7{word-spacing:14.882208px;}
.wse8{word-spacing:14.883607px;}
.wsab{word-spacing:14.883673px;}
.ws5e{word-spacing:14.883793px;}
.ws70{word-spacing:14.883852px;}
.ws4c{word-spacing:14.883972px;}
.ws1b2{word-spacing:14.884022px;}
.ws65{word-spacing:14.884032px;}
.ws36{word-spacing:14.884151px;}
.ws27e{word-spacing:14.884211px;}
.ws7a{word-spacing:14.884271px;}
.wsfe{word-spacing:14.884331px;}
.ws10{word-spacing:14.884450px;}
.wsa2{word-spacing:14.884570px;}
.ws1b{word-spacing:14.884629px;}
.ws3f{word-spacing:14.884689px;}
.ws169{word-spacing:14.884869px;}
.ws192{word-spacing:14.884988px;}
.ws22b{word-spacing:14.885466px;}
.wsb9{word-spacing:14.885586px;}
.ws2ae{word-spacing:14.885765px;}
.ws1b5{word-spacing:14.887002px;}
.wse9{word-spacing:14.888802px;}
.ws41{word-spacing:14.943930px;}
.ws284{word-spacing:15.003948px;}
.ws205{word-spacing:15.004127px;}
.ws1a9{word-spacing:15.063128px;}
.wsaf{word-spacing:15.064742px;}
.ws38{word-spacing:15.064922px;}
.ws1d2{word-spacing:15.065221px;}
.ws5f{word-spacing:15.065340px;}
.ws1b0{word-spacing:15.172584px;}
.ws1ae{word-spacing:15.174878px;}
.ws94{word-spacing:15.183881px;}
.ws99{word-spacing:15.184419px;}
.ws1b1{word-spacing:15.184598px;}
.ws2a{word-spacing:15.242524px;}
.ws146{word-spacing:15.243062px;}
.ws24c{word-spacing:15.244497px;}
.ws145{word-spacing:15.302243px;}
.wsce{word-spacing:15.303438px;}
.ws5d{word-spacing:15.363097px;}
.ws14f{word-spacing:15.421680px;}
.wsbb{word-spacing:15.423354px;}
.ws57{word-spacing:15.483013px;}
.ws24b{word-spacing:15.541596px;}
.ws6f{word-spacing:15.601375px;}
.ws174{word-spacing:15.602032px;}
.ws66{word-spacing:15.602750px;}
.ws1ff{word-spacing:15.650424px;}
.ws2be{word-spacing:15.661273px;}
.ws200{word-spacing:15.663186px;}
.ws134{word-spacing:15.721171px;}
.ws8a{word-spacing:15.721769px;}
.ws14d{word-spacing:15.781607px;}
.ws1e1{word-spacing:15.781846px;}
.ws17d{word-spacing:15.837241px;}
.ws1dc{word-spacing:15.840310px;}
.ws17f{word-spacing:15.840549px;}
.ws176{word-spacing:15.840848px;}
.ws13b{word-spacing:15.841027px;}
.ws1e4{word-spacing:15.841326px;}
.ws17c{word-spacing:15.859651px;}
.ws139{word-spacing:15.868479px;}
.ws1e7{word-spacing:15.871052px;}
.ws1e5{word-spacing:15.871343px;}
.wsf6{word-spacing:15.889036px;}
.wsf7{word-spacing:15.889652px;}
.ws255{word-spacing:15.900208px;}
.ws1e8{word-spacing:15.900626px;}
.ws73{word-spacing:15.900686px;}
.ws43{word-spacing:15.901105px;}
.ws117{word-spacing:15.901344px;}
.ws256{word-spacing:15.960405px;}
.ws9b{word-spacing:15.960883px;}
.ws21a{word-spacing:16.019765px;}
.ws19d{word-spacing:16.079484px;}
.ws224{word-spacing:16.079723px;}
.ws1a{word-spacing:16.080261px;}
.ws76{word-spacing:16.080440px;}
.ws52{word-spacing:16.139263px;}
.ws1f8{word-spacing:16.198922px;}
.ws221{word-spacing:16.199161px;}
.ws1f6{word-spacing:16.199758px;}
.ws182{word-spacing:16.199938px;}
.ws222{word-spacing:16.200775px;}
.ws85{word-spacing:16.259836px;}
.ws248{word-spacing:16.318598px;}
.ws20f{word-spacing:16.319435px;}
.ws60{word-spacing:16.379333px;}
.ws227{word-spacing:16.437976px;}
.wsa8{word-spacing:16.438275px;}
.ws26c{word-spacing:16.498592px;}
.wsa1{word-spacing:16.557653px;}
.ws15c{word-spacing:16.557713px;}
.ws15a{word-spacing:16.557892px;}
.ws4d{word-spacing:16.559685px;}
.ws15d{word-spacing:16.617252px;}
.ws27d{word-spacing:16.618328px;}
.ws188{word-spacing:16.619464px;}
.ws7c{word-spacing:16.677330px;}
.ws29b{word-spacing:16.736809px;}
.ws4b{word-spacing:16.737826px;}
.wscd{word-spacing:16.796887px;}
.wscc{word-spacing:16.797006px;}
.ws2c4{word-spacing:16.916265px;}
.ws258{word-spacing:16.917161px;}
.ws5c{word-spacing:16.918237px;}
.ws28{word-spacing:16.977358px;}
.wsa7{word-spacing:16.977478px;}
.wsb2{word-spacing:17.035822px;}
.ws167{word-spacing:17.036121px;}
.ws1f5{word-spacing:17.037256px;}
.ws25{word-spacing:17.095720px;}
.ws259{word-spacing:17.095839px;}
.ws37{word-spacing:17.096138px;}
.ws2b0{word-spacing:17.097035px;}
.ws16b{word-spacing:17.097155px;}
.ws228{word-spacing:17.155319px;}
.ws12{word-spacing:17.156455px;}
.ws1f0{word-spacing:17.215815px;}
.ws24e{word-spacing:17.215994px;}
.ws1e0{word-spacing:17.274876px;}
.ws1c1{word-spacing:17.331816px;}
.ws129{word-spacing:17.335791px;}
.ws1c0{word-spacing:17.336269px;}
.ws14b{word-spacing:17.336687px;}
.ws127{word-spacing:17.394434px;}
.ws8d{word-spacing:17.394553px;}
.wsac{word-spacing:17.394972px;}
.wsa9{word-spacing:17.396346px;}
.ws246{word-spacing:17.396466px;}
.ws82{word-spacing:17.396765px;}
.ws245{word-spacing:17.437130px;}
.ws5a{word-spacing:17.455228px;}
.ws161{word-spacing:17.574427px;}
.ws218{word-spacing:17.574546px;}
.ws162{word-spacing:17.574726px;}
.ws1b6{word-spacing:17.633608px;}
.ws164{word-spacing:17.633907px;}
.ws269{word-spacing:17.635102px;}
.ws8b{word-spacing:17.635700px;}
.ws140{word-spacing:17.693267px;}
.ws1ea{word-spacing:17.694821px;}
.ws124{word-spacing:17.695299px;}
.ws88{word-spacing:17.755197px;}
.ws2a3{word-spacing:17.788054px;}
.ws58{word-spacing:17.813661px;}
.wsb6{word-spacing:17.814259px;}
.ws229{word-spacing:17.845658px;}
.ws3{word-spacing:17.861173px;}
.ws22a{word-spacing:17.872722px;}
.ws2a5{word-spacing:17.874635px;}
.ws1aa{word-spacing:17.874934px;}
.ws20b{word-spacing:17.932501px;}
.ws1f4{word-spacing:17.932800px;}
.ws247{word-spacing:17.932919px;}
.wsb5{word-spacing:17.933517px;}
.ws29{word-spacing:17.933636px;}
.ws175{word-spacing:17.939674px;}
.ws6{word-spacing:17.992219px;}
.wsaa{word-spacing:17.993415px;}
.wsb{word-spacing:17.993714px;}
.ws226{word-spacing:18.052297px;}
.ws18{word-spacing:18.052536px;}
.ws21b{word-spacing:18.112195px;}
.ws21d{word-spacing:18.112912px;}
.ws210{word-spacing:18.113809px;}
.ws3e{word-spacing:18.171555px;}
.ws184{word-spacing:18.171675px;}
.ws77{word-spacing:18.172870px;}
.ws6b{word-spacing:18.231633px;}
.ws9f{word-spacing:18.351011px;}
.ws193{word-spacing:18.352744px;}
.ws17e{word-spacing:18.359200px;}
.ws2ab{word-spacing:18.412224px;}
.ws2cc{word-spacing:18.531363px;}
.ws64{word-spacing:18.531721px;}
.wsa5{word-spacing:18.590065px;}
.ws19b{word-spacing:18.592157px;}
.ws2af{word-spacing:18.709622px;}
.ws21c{word-spacing:18.709742px;}
.ws5b{word-spacing:18.769520px;}
.ws1bb{word-spacing:18.769580px;}
.ws1be{word-spacing:18.770357px;}
.ws16{word-spacing:18.770836px;}
.ws1bc{word-spacing:18.801290px;}
.ws1bf{word-spacing:18.829299px;}
.ws177{word-spacing:18.829419px;}
.ws18b{word-spacing:18.888886px;}
.ws187{word-spacing:18.890692px;}
.ws84{word-spacing:19.009472px;}
.ws2cd{word-spacing:19.010010px;}
.ws272{word-spacing:19.068234px;}
.ws20c{word-spacing:19.068294px;}
.ws25e{word-spacing:19.068354px;}
.ws4a{word-spacing:19.069968px;}
.ws25c{word-spacing:19.070087px;}
.ws55{word-spacing:19.128850px;}
.ws3b{word-spacing:19.129746px;}
.ws7{word-spacing:19.187851px;}
.ws2a0{word-spacing:19.189525px;}
.ws240{word-spacing:19.248706px;}
.ws8e{word-spacing:19.248945px;}
.wsfa{word-spacing:19.307468px;}
.ws216{word-spacing:19.368083px;}
.ws14{word-spacing:19.369279px;}
.ws215{word-spacing:19.401028px;}
.ws213{word-spacing:19.401095px;}
.ws1c4{word-spacing:19.426965px;}
.ws62{word-spacing:19.427264px;}
.ws165{word-spacing:19.546523px;}
.ws16e{word-spacing:19.546642px;}
.ws23c{word-spacing:19.547599px;}
.ws16c{word-spacing:19.596593px;}
.ws11{word-spacing:19.606540px;}
.ws14a{word-spacing:19.666080px;}
.ws202{word-spacing:19.666139px;}
.ws194{word-spacing:19.666199px;}
.ws1a2{word-spacing:19.726695px;}
.ws72{word-spacing:19.727054px;}
.ws44{word-spacing:19.787789px;}
.ws1e3{word-spacing:19.846372px;}
.ws163{word-spacing:19.905971px;}
.ws24d{word-spacing:19.907047px;}
.ws69{word-spacing:20.024691px;}
.ws206{word-spacing:20.025050px;}
.wsb3{word-spacing:20.085486px;}
.ws1ad{word-spacing:20.144488px;}
.ws19{word-spacing:20.145743px;}
.ws1a7{word-spacing:20.146281px;}
.ws150{word-spacing:20.204685px;}
.ws158{word-spacing:20.205462px;}
.ws21{word-spacing:20.264164px;}
.ws29e{word-spacing:20.294723px;}
.ws12f{word-spacing:20.323644px;}
.ws2bb{word-spacing:20.323883px;}
.ws232{word-spacing:20.340177px;}
.ws234{word-spacing:20.343057px;}
.ws1e{word-spacing:20.383423px;}
.ws1d0{word-spacing:20.384021px;}
.ws1da{word-spacing:20.385216px;}
.ws1d9{word-spacing:20.385455px;}
.ws2bc{word-spacing:20.443201px;}
.ws47{word-spacing:20.444397px;}
.wsf9{word-spacing:20.464906px;}
.ws2b2{word-spacing:20.519357px;}
.ws257{word-spacing:20.563476px;}
.wsa3{word-spacing:20.564193px;}
.wsd{word-spacing:20.623374px;}
.ws197{word-spacing:20.623972px;}
.ws207{word-spacing:20.682734px;}
.ws67{word-spacing:20.683153px;}
.wsae{word-spacing:20.742333px;}
.ws54{word-spacing:20.801813px;}
.ws1cf{word-spacing:20.802411px;}
.ws152{word-spacing:20.802530px;}
.ws27a{word-spacing:20.861651px;}
.wsb0{word-spacing:20.863325px;}
.wsff{word-spacing:20.922805px;}
.ws1c{word-spacing:20.923104px;}
.ws2a6{word-spacing:20.981089px;}
.ws1df{word-spacing:20.981687px;}
.ws2c7{word-spacing:21.041346px;}
.ws203{word-spacing:21.041645px;}
.wsbc{word-spacing:21.041764px;}
.wsbe{word-spacing:21.083863px;}
.wsba{word-spacing:21.101543px;}
.ws279{word-spacing:21.101663px;}
.ws290{word-spacing:21.102679px;}
.wsc0{word-spacing:21.112689px;}
.ws133{word-spacing:21.221100px;}
.ws15e{word-spacing:21.221937px;}
.wsc1{word-spacing:21.279672px;}
.wsd8{word-spacing:21.280102px;}
.ws126{word-spacing:21.280520px;}
.ws63{word-spacing:21.280938px;}
.ws2bf{word-spacing:21.281417px;}
.wsc3{word-spacing:21.282313px;}
.wsc2{word-spacing:21.283322px;}
.ws27{word-spacing:21.339940px;}
.ws4f{word-spacing:21.341315px;}
.ws223{word-spacing:21.341614px;}
.wsad{word-spacing:21.400376px;}
.ws273{word-spacing:21.459975px;}
.ws13{word-spacing:21.519336px;}
.ws160{word-spacing:21.519814px;}
.ws22{word-spacing:21.519933px;}
.ws2a2{word-spacing:21.579413px;}
.wsf2{word-spacing:21.580728px;}
.ws12e{word-spacing:21.638893px;}
.ws2ce{word-spacing:21.640566px;}
.ws249{word-spacing:21.698910px;}
.wsb4{word-spacing:21.700106px;}
.ws143{word-spacing:21.704526px;}
.ws53{word-spacing:21.758689px;}
.ws1e9{word-spacing:21.813502px;}
.ws17a{word-spacing:21.818228px;}
.ws1ec{word-spacing:21.819424px;}
.ws179{word-spacing:21.819783px;}
.ws17b{word-spacing:21.820082px;}
.ws196{word-spacing:21.877947px;}
.ws79{word-spacing:21.878007px;}
.ws23{word-spacing:21.878067px;}
.ws178{word-spacing:21.878545px;}
.ws39{word-spacing:21.937726px;}
.ws277{word-spacing:21.998222px;}
.ws1ed{word-spacing:22.057104px;}
.ws1eb{word-spacing:22.057403px;}
.wsd3{word-spacing:22.057582px;}
.ws2c5{word-spacing:22.116942px;}
.ws1b8{word-spacing:22.117002px;}
.ws1ba{word-spacing:22.117181px;}
.ws268{word-spacing:22.117719px;}
.ws13c{word-spacing:22.118496px;}
.wsa6{word-spacing:22.176780px;}
.ws1ef{word-spacing:22.177856px;}
.ws168{word-spacing:22.236977px;}
.ws35{word-spacing:22.296935px;}
.ws96{word-spacing:22.297473px;}
.ws1f1{word-spacing:22.398002px;}
.ws1f3{word-spacing:22.417329px;}
.ws298{word-spacing:22.476211px;}
.ws1a4{word-spacing:22.476630px;}
.ws8{word-spacing:22.535691px;}
.ws1c3{word-spacing:22.537604px;}
.ws239{word-spacing:22.581841px;}
.ws1db{word-spacing:22.595470px;}
.wse{word-spacing:22.595589px;}
.ws238{word-spacing:22.596067px;}
.ws56{word-spacing:22.596605px;}
.wsd4{word-spacing:22.715565px;}
.wsfb{word-spacing:22.715864px;}
.ws75{word-spacing:22.716342px;}
.wsa{word-spacing:22.775224px;}
.ws253{word-spacing:22.775642px;}
.ws1d1{word-spacing:22.775941px;}
.ws217{word-spacing:22.834704px;}
.ws1f{word-spacing:22.895738px;}
.ws263{word-spacing:22.895917px;}
.ws2a1{word-spacing:22.954380px;}
.ws209{word-spacing:23.015056px;}
.ws46{word-spacing:23.073758px;}
.ws1ee{word-spacing:23.134314px;}
.ws1a6{word-spacing:23.134374px;}
.ws1fb{word-spacing:23.134553px;}
.ws1f9{word-spacing:23.162618px;}
.ws78{word-spacing:23.254947px;}
.wsc8{word-spacing:23.280831px;}
.ws1c6{word-spacing:23.372472px;}
.ws19e{word-spacing:23.372532px;}
.ws1a0{word-spacing:23.373847px;}
.ws1c7{word-spacing:23.373906px;}
.ws1c9{word-spacing:23.374205px;}
.ws3c{word-spacing:23.374325px;}
.ws1fe{word-spacing:23.432071px;}
.ws1b7{word-spacing:23.432191px;}
.wsf0{word-spacing:23.432370px;}
.ws1fc{word-spacing:23.434223px;}
.wsf{word-spacing:23.551927px;}
.ws151{word-spacing:23.611407px;}
.ws12b{word-spacing:23.671424px;}
.ws189{word-spacing:23.671723px;}
.ws12d{word-spacing:23.706843px;}
.ws123{word-spacing:23.731382px;}
.ws23f{word-spacing:23.731920px;}
.ws23d{word-spacing:23.744337px;}
.ws23e{word-spacing:23.760716px;}
.ws68{word-spacing:23.790982px;}
.ws1d{word-spacing:23.850641px;}
.ws2d1{word-spacing:23.851478px;}
.ws20e{word-spacing:23.851657px;}
.ws9c{word-spacing:23.910658px;}
.ws12a{word-spacing:23.970736px;}
.ws26e{word-spacing:24.030514px;}
.ws9{word-spacing:24.031650px;}
.ws27f{word-spacing:24.149653px;}
.ws295{word-spacing:24.150610px;}
.ws2ad{word-spacing:24.271004px;}
.ws251{word-spacing:24.449144px;}
.ws23a{word-spacing:24.508325px;}
.ws7b{word-spacing:24.687959px;}
.ws100{word-spacing:24.807756px;}
.ws24a{word-spacing:24.868730px;}
.wsc{word-spacing:24.926715px;}
.wsf1{word-spacing:25.166786px;}
.ws95{word-spacing:25.286522px;}
.ws28c{word-spacing:25.286821px;}
.ws280{word-spacing:25.345105px;}
.ws2b4{word-spacing:25.464663px;}
.ws7d{word-spacing:25.466695px;}
.ws20{word-spacing:25.525457px;}
.ws250{word-spacing:25.526474px;}
.ws83{word-spacing:25.584758px;}
.wsd2{word-spacing:25.765110px;}
.ws1c2{word-spacing:25.823394px;}
.wsc9{word-spacing:25.915542px;}
.ws48{word-spacing:25.944864px;}
.ws20d{word-spacing:26.004344px;}
.ws190{word-spacing:26.064660px;}
.ws13f{word-spacing:26.122705px;}
.ws287{word-spacing:26.242502px;}
.ws4e{word-spacing:26.363195px;}
.ws296{word-spacing:26.541813px;}
.wsed{word-spacing:26.542650px;}
.ws2c2{word-spacing:26.601592px;}
.ws264{word-spacing:26.662267px;}
.ws195{word-spacing:26.899229px;}
.wsee{word-spacing:26.899289px;}
.wsef{word-spacing:26.900126px;}
.ws135{word-spacing:27.019205px;}
.ws3d{word-spacing:27.020699px;}
.ws294{word-spacing:27.437595px;}
.ws28d{word-spacing:27.498988px;}
.ws288{word-spacing:27.557152px;}
.ws237{word-spacing:27.736428px;}
.ws1e2{word-spacing:28.274675px;}
.wsbd{word-spacing:28.335888px;}
.wsec{word-spacing:28.455565px;}
.ws1a5{word-spacing:28.573568px;}
.ws8f{word-spacing:28.644920px;}
.ws29d{word-spacing:28.692706px;}
.ws125{word-spacing:29.113189px;}
.ws267{word-spacing:29.230654px;}
.ws9a{word-spacing:29.350211px;}
.ws2b7{word-spacing:29.828978px;}
.ws29c{word-spacing:29.829097px;}
.ws24f{word-spacing:29.948176px;}
.ws252{word-spacing:30.067733px;}
.ws225{word-spacing:30.605502px;}
.ws2c3{word-spacing:30.965847px;}
.ws262{word-spacing:31.204902px;}
.ws29a{word-spacing:31.622156px;}
.ws23b{word-spacing:34.015093px;}
.ws2aa{word-spacing:35.747178px;}
.ws230{word-spacing:36.464401px;}
.ws26d{word-spacing:37.540177px;}
.wsc7{word-spacing:37.698013px;}
.ws28f{word-spacing:38.318554px;}
.wsb1{word-spacing:40.529285px;}
.ws297{word-spacing:41.426383px;}
.ws1d8{word-spacing:44.834233px;}
.ws28b{word-spacing:46.926850px;}
.ws22e{word-spacing:48.480436px;}
.ws235{word-spacing:56.131796px;}
.ws231{word-spacing:56.146916px;}
.ws233{word-spacing:56.148682px;}
.ws22f{word-spacing:63.364706px;}
.wsca{word-spacing:126.854099px;}
.ws113{word-spacing:135.294404px;}
.ws33{word-spacing:157.018800px;}
.ws10b{word-spacing:164.463266px;}
.ws109{word-spacing:165.468984px;}
.ws2{word-spacing:188.016158px;}
.ws107{word-spacing:197.652422px;}
.ws10a{word-spacing:235.478973px;}
.ws112{word-spacing:273.981378px;}
.ws115{word-spacing:278.763377px;}
.ws111{word-spacing:336.150967px;}
.ws110{word-spacing:364.844761px;}
.ws114{word-spacing:417.450351px;}
.wsc5{word-spacing:974.124270px;}
._0{margin-left:-11.620314px;}
._2{margin-left:-8.178630px;}
._10{margin-left:-7.008840px;}
._1{margin-left:-5.163909px;}
._f{margin-left:-3.636001px;}
._3{margin-left:-2.582359px;}
._5{margin-left:-1.495421px;}
._24{width:1.002943px;}
._1f{width:3.011796px;}
._25{width:6.751157px;}
._1c{width:7.773369px;}
._17{width:10.588294px;}
._2f{width:11.655689px;}
._1b{width:12.674047px;}
._20{width:14.192206px;}
._11{width:15.492276px;}
._26{width:16.819269px;}
._4{width:17.863511px;}
._c{width:19.131946px;}
._b{width:21.105293px;}
._e{width:22.120082px;}
._6{width:23.674515px;}
._a{width:24.806321px;}
._2d{width:25.999023px;}
._30{width:27.023736px;}
._8{width:28.157114px;}
._19{width:30.066837px;}
._23{width:31.923380px;}
._15{width:33.852547px;}
._d{width:35.033541px;}
._31{width:36.812836px;}
._22{width:38.080695px;}
._16{width:39.515919px;}
._21{width:40.554755px;}
._1a{width:41.904611px;}
._9{width:43.833094px;}
._37{width:45.132111px;}
._7{width:46.150481px;}
._1e{width:48.792571px;}
._1d{width:50.392394px;}
._2c{width:52.116592px;}
._18{width:54.816846px;}
._36{width:55.882410px;}
._32{width:58.586640px;}
._2e{width:60.214029px;}
._38{width:61.992586px;}
._28{width:71.794692px;}
._35{width:73.336185px;}
._34{width:76.273295px;}
._33{width:115.836635px;}
._27{width:134.716409px;}
._13{width:165.389285px;}
._14{width:171.053568px;}
._12{width:239.366984px;}
._2a{width:241.554884px;}
._29{width:272.208465px;}
._2b{width:377.275098px;}
.fc2{color:rgb(21,96,130);}
.fc3{color:rgb(233,113,50);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:25.543397px;}
.fs7{font-size:33.317506px;}
.fsa{font-size:35.867393px;}
.fs9{font-size:41.844892px;}
.fsd{font-size:43.374309px;}
.fs11{font-size:46.504605px;}
.fsf{font-size:47.391689px;}
.fs4{font-size:47.822991px;}
.fs12{font-size:48.526526px;}
.fs10{font-size:49.452192px;}
.fse{font-size:49.473854px;}
.fs2{font-size:53.801090px;}
.fsc{font-size:56.251072px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:59.778589px;}
.fsb{font-size:60.003000px;}
.fs1{font-size:71.734787px;}
.fs0{font-size:86.081504px;}
.fs5{font-size:152.705235px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.739187px;}
.yd9{bottom:16.251634px;}
.ycd{bottom:16.251813px;}
.y36{bottom:24.953748px;}
.y33{bottom:40.917546px;}
.yda{bottom:52.678855px;}
.y5b{bottom:52.839000px;}
.ycf{bottom:59.456073px;}
.y35{bottom:62.019101px;}
.ycc{bottom:62.167608px;}
.yd4{bottom:74.366218px;}
.yd8{bottom:74.535398px;}
.y1c5{bottom:88.474863px;}
.y1f8{bottom:88.475013px;}
.y21f{bottom:88.475163px;}
.y1a7{bottom:88.475463px;}
.y10a{bottom:88.475673px;}
.y188{bottom:88.475763px;}
.y141{bottom:88.475928px;}
.y92{bottom:88.475943px;}
.y5a{bottom:88.476213px;}
.yc8{bottom:88.476843px;}
.y27d{bottom:88.476963px;}
.y24e{bottom:88.477113px;}
.y31{bottom:91.549222px;}
.yd3{bottom:96.052802px;}
.yd6{bottom:96.561899px;}
.y140{bottom:101.927386px;}
.yd1{bottom:102.660867px;}
.yd0{bottom:103.508175px;}
.y91{bottom:106.146947px;}
.y30{bottom:106.344881px;}
.y1c4{bottom:106.708425px;}
.y1f7{bottom:106.708575px;}
.y21e{bottom:106.708725px;}
.y1a6{bottom:106.709025px;}
.yc7{bottom:106.709205px;}
.y109{bottom:106.709235px;}
.y187{bottom:106.709325px;}
.y24d{bottom:106.709475px;}
.y59{bottom:106.709775px;}
.yd2{bottom:117.910395px;}
.yd7{bottom:118.249084px;}
.y13f{bottom:119.596619px;}
.y2f{bottom:121.139956px;}
.y1fc{bottom:122.959198px;}
.y1c3{bottom:124.940186px;}
.y1f6{bottom:124.940336px;}
.y21d{bottom:124.940486px;}
.yc6{bottom:124.940966px;}
.y108{bottom:124.940996px;}
.y186{bottom:124.941086px;}
.y24c{bottom:124.941236px;}
.y58{bottom:124.941536px;}
.y1a5{bottom:127.029191px;}
.y90{bottom:131.376288px;}
.y175{bottom:133.474293px;}
.y2e{bottom:135.935031px;}
.yce{bottom:139.596980px;}
.y1c2{bottom:143.173748px;}
.y1f5{bottom:143.173898px;}
.y21c{bottom:143.174048px;}
.yc5{bottom:143.174528px;}
.y24b{bottom:143.174798px;}
.y57{bottom:143.175098px;}
.yd5{bottom:143.663683px;}
.y13e{bottom:144.054142px;}
.y1a4{bottom:145.262152px;}
.ycb{bottom:148.915445px;}
.y8f{bottom:149.608650px;}
.y2d{bottom:150.730691px;}
.y174{bottom:151.706054px;}
.y107{bottom:152.395369px;}
.y1f4{bottom:161.405659px;}
.y21b{bottom:161.405809px;}
.yc4{bottom:161.406289px;}
.y56{bottom:161.406859px;}
.y13d{bottom:162.285903px;}
.y1c1{bottom:163.097744px;}
.y1a3{bottom:163.494514px;}
.ydb{bottom:163.826191px;}
.y185{bottom:163.932536px;}
.y2c{bottom:165.525765px;}
.y8e{bottom:167.841011px;}
.y173{bottom:169.937816px;}
.y34{bottom:176.965348px;}
.y24a{bottom:177.830581px;}
.y1f3{bottom:179.639221px;}
.y21a{bottom:179.639371px;}
.y55{bottom:179.640421px;}
.y13c{bottom:180.519465px;}
.yc3{bottom:181.177428px;}
.y1c0{bottom:181.329506px;}
.y1a2{bottom:181.727475px;}
.y184{bottom:182.166097px;}
.y8d{bottom:186.074573px;}
.y172{bottom:188.171378px;}
.y106{bottom:188.178008px;}
.y27c{bottom:192.313805px;}
.y249{bottom:196.062942px;}
.y1f2{bottom:197.870983px;}
.y219{bottom:197.871133px;}
.y54{bottom:197.872183px;}
.y13b{bottom:198.751227px;}
.yc2{bottom:199.409189px;}
.y1bf{bottom:199.561267px;}
.y1a1{bottom:199.959837px;}
.y183{bottom:200.397859px;}
.y8c{bottom:204.306334px;}
.y171{bottom:206.403139px;}
.y105{bottom:206.411570px;}
.y27b{bottom:210.545566px;}
.y2b{bottom:213.458712px;}
.y248{bottom:214.296504px;}
.y1f1{bottom:216.102744px;}
.y218{bottom:216.104094px;}
.y53{bottom:216.104544px;}
.y13a{bottom:216.984788px;}
.yc1{bottom:217.642751px;}
.y1be{bottom:217.794829px;}
.y1a0{bottom:218.191599px;}
.y182{bottom:218.631421px;}
.y8b{bottom:222.538096px;}
.y170{bottom:224.636701px;}
.y27a{bottom:228.779128px;}
.y2a{bottom:231.690473px;}
.y247{bottom:232.528865px;}
.y104{bottom:233.865942px;}
.y1f0{bottom:234.336306px;}
.y52{bottom:234.336906px;}
.y217{bottom:234.337056px;}
.y139{bottom:235.216550px;}
.yc0{bottom:235.874513px;}
.y1bd{bottom:236.026590px;}
.y19f{bottom:236.425160px;}
.y181{bottom:236.863182px;}
.y8a{bottom:241.388038px;}
.y16f{bottom:242.868462px;}
.y179{bottom:246.036301px;}
.y279{bottom:247.010889px;}
.y1aa{bottom:248.334416px;}
.y18b{bottom:248.742437px;}
.y29{bottom:249.924035px;}
.y51{bottom:252.569267px;}
.y216{bottom:252.570017px;}
.y1ef{bottom:253.103594px;}
.y138{bottom:253.448311px;}
.y1bc{bottom:254.260152px;}
.y19e{bottom:254.656922px;}
.y180{bottom:255.094944px;}
.y1fb{bottom:258.428871px;}
.y89{bottom:259.619800px;}
.y16e{bottom:261.102024px;}
.y278{bottom:265.244451px;}
.ybf{bottom:265.997369px;}
.y246{bottom:267.184648px;}
.y28{bottom:268.155797px;}
.y50{bottom:270.802229px;}
.y215{bottom:270.802979px;}
.y1ee{bottom:271.337156px;}
.y137{bottom:271.681873px;}
.y1bb{bottom:272.492513px;}
.y17f{bottom:273.328505px;}
.y19d{bottom:274.978288px;}
.y103{bottom:276.373717px;}
.y88{bottom:277.851561px;}
.y16d{bottom:279.333785px;}
.y245{bottom:285.418210px;}
.y27{bottom:286.389358px;}
.y214{bottom:289.034741px;}
.y1ed{bottom:289.568917px;}
.y136{bottom:289.913634px;}
.y1ba{bottom:290.724875px;}
.y4f{bottom:291.223200px;}
.y17e{bottom:291.560267px;}
.y19c{bottom:293.210649px;}
.y102{bottom:294.605479px;}
.y87{bottom:296.085123px;}
.y277{bottom:296.150046px;}
.y16c{bottom:297.565547px;}
.y244{bottom:303.649971px;}
.y26{bottom:304.621120px;}
.y1ec{bottom:307.802479px;}
.y135{bottom:308.147196px;}
.y1b9{bottom:308.958437px;}
.y4e{bottom:309.456762px;}
.y17d{bottom:310.754176px;}
.y19b{bottom:311.442411px;}
.y213{bottom:311.981238px;}
.y101{bottom:312.839041px;}
.y86{bottom:314.317485px;}
.y276{bottom:314.383608px;}
.y16b{bottom:315.799109px;}
.ybe{bottom:316.227680px;}
.y243{bottom:321.883533px;}
.y25{bottom:322.854681px;}
.y1eb{bottom:326.034840px;}
.y134{bottom:326.378958px;}
.y1b8{bottom:327.190198px;}
.y4d{bottom:327.688523px;}
.y212{bottom:328.071342px;}
.y17c{bottom:328.985938px;}
.y19a{bottom:329.675972px;}
.y100{bottom:331.070802px;}
.y85{bottom:332.551046px;}
.y275{bottom:332.615369px;}
.y16a{bottom:334.031470px;}
.ybd{bottom:334.461242px;}
.y242{bottom:340.115294px;}
.y24{bottom:341.086443px;}
.y1ea{bottom:344.267202px;}
.y133{bottom:344.611919px;}
.y1b7{bottom:345.423760px;}
.y4c{bottom:345.922085px;}
.y211{bottom:346.303104px;}
.y199{bottom:347.907734px;}
.y84{bottom:350.783408px;}
.y274{bottom:350.848931px;}
.ybc{bottom:352.693003px;}
.y169{bottom:353.404639px;}
.y23{bottom:359.318205px;}
.yfe{bottom:359.405869px;}
.y1e9{bottom:362.499564px;}
.y132{bottom:362.843681px;}
.y1b6{bottom:363.655521px;}
.y4b{bottom:364.153846px;}
.y210{bottom:364.536665px;}
.y198{bottom:366.141296px;}
.yfb{bottom:366.787828px;}
.y83{bottom:369.015169px;}
.y273{bottom:369.081293px;}
.ybb{bottom:370.926565px;}
.y168{bottom:371.638200px;}
.y17b{bottom:372.705474px;}
.y241{bottom:374.771677px;}
.yff{bottom:377.037600px;}
.yfa{bottom:377.038245px;}
.y22{bottom:377.551766px;}
.y1e8{bottom:380.731925px;}
.y131{bottom:381.076042px;}
.y1b5{bottom:381.889083px;}
.y4a{bottom:382.387408px;}
.y20f{bottom:382.768427px;}
.y197{bottom:384.373657px;}
.y82{bottom:387.248731px;}
.yba{bottom:389.158326px;}
.y167{bottom:389.869962px;}
.y17a{bottom:390.939035px;}
.yfd{bottom:391.236110px;}
.y240{bottom:393.005239px;}
.y1fa{bottom:394.404219px;}
.yfc{bottom:395.719925px;}
.y21{bottom:395.783528px;}
.y176{bottom:398.608919px;}
.y1e7{bottom:398.964287px;}
.y130{bottom:399.309004px;}
.y272{bottom:399.988688px;}
.y49{bottom:400.619169px;}
.y20e{bottom:401.001989px;}
.y196{bottom:402.605419px;}
.y81{bottom:405.480493px;}
.yb9{bottom:407.390088px;}
.y166{bottom:408.101724px;}
.y23f{bottom:411.237000px;}
.y20{bottom:414.017089px;}
.y1e6{bottom:417.196648px;}
.y12f{bottom:417.540765px;}
.y271{bottom:418.220449px;}
.y48{bottom:418.850931px;}
.y20d{bottom:419.233750px;}
.y195{bottom:422.926785px;}
.y80{bottom:423.714054px;}
.yf9{bottom:423.899238px;}
.y1b4{bottom:424.900733px;}
.yb8{bottom:425.623650px;}
.y165{bottom:426.335285px;}
.y23e{bottom:429.468762px;}
.y1f{bottom:432.249451px;}
.y1e5{bottom:435.428410px;}
.y12e{bottom:435.773727px;}
.y270{bottom:436.454011px;}
.y47{bottom:437.084493px;}
.y20c{bottom:437.467312px;}
.y194{bottom:441.159146px;}
.y7f{bottom:441.945816px;}
.yf8{bottom:442.131555px;}
.y1b3{bottom:443.132495px;}
.yb7{bottom:443.855411px;}
.y164{bottom:444.567647px;}
.y1e{bottom:450.481812px;}
.y1e4{bottom:453.661971px;}
.y12d{bottom:454.005489px;}
.y26f{bottom:454.685773px;}
.y46{bottom:455.316254px;}
.y20b{bottom:455.699073px;}
.y193{bottom:459.391508px;}
.yf7{bottom:460.363917px;}
.y7e{bottom:460.793958px;}
.y1b2{bottom:461.366057px;}
.y163{bottom:462.801208px;}
.yb6{bottom:463.626550px;}
.y23d{bottom:464.126945px;}
.y1e3{bottom:471.893733px;}
.y12c{bottom:472.237250px;}
.y26e{bottom:472.917534px;}
.y45{bottom:473.549816px;}
.y20a{bottom:473.930835px;}
.y192{bottom:477.623870px;}
.y1d{bottom:477.695873px;}
.yf6{bottom:478.596278px;}
.y7d{bottom:479.027520px;}
.y1b1{bottom:479.597818px;}
.yb5{bottom:481.858311px;}
.y162{bottom:482.174377px;}
.y23c{bottom:482.358706px;}
.y1e2{bottom:490.127295px;}
.y12b{bottom:490.470812px;}
.y44{bottom:491.781577px;}
.y209{bottom:492.164396px;}
.y178{bottom:495.615780px;}
.y191{bottom:495.857431px;}
.yf5{bottom:496.829240px;}
.y7c{bottom:497.259881px;}
.y1b0{bottom:497.831380px;}
.yb4{bottom:500.091873px;}
.y161{bottom:500.406739px;}
.y23b{bottom:500.592268px;}
.y26d{bottom:503.825530px;}
.y1a9{bottom:507.700384px;}
.y18a{bottom:508.108404px;}
.y1e1{bottom:508.359056px;}
.y12a{bottom:508.702573px;}
.y43{bottom:510.013339px;}
.y208{bottom:510.396158px;}
.y190{bottom:514.089193px;}
.yf4{bottom:515.194658px;}
.y7b{bottom:515.492243px;}
.y1af{bottom:516.063141px;}
.yb3{bottom:518.323634px;}
.y160{bottom:518.638500px;}
.y23a{bottom:518.824029px;}
.y1c{bottom:519.505813px;}
.y26c{bottom:522.057291px;}
.y129{bottom:526.936135px;}
.y1e0{bottom:527.128145px;}
.y207{bottom:528.629720px;}
.y42{bottom:530.435510px;}
.y18f{bottom:532.320954px;}
.yf3{bottom:533.428220px;}
.y7a{bottom:533.724604px;}
.yb2{bottom:536.557196px;}
.y1b{bottom:537.739375px;}
.y15f{bottom:538.011789px;}
.y26b{bottom:540.290853px;}
.y128{bottom:545.167897px;}
.y1df{bottom:545.359906px;}
.y206{bottom:546.861481px;}
.y41{bottom:548.669072px;}
.yf2{bottom:551.659981px;}
.y79{bottom:551.956966px;}
.y1ae{bottom:552.741175px;}
.y239{bottom:553.479812px;}
.y1a{bottom:555.971137px;}
.y15e{bottom:556.245350px;}
.yb1{bottom:556.328335px;}
.y26a{bottom:558.522614px;}
.y127{bottom:563.401458px;}
.y1de{bottom:563.591668px;}
.y205{bottom:565.093243px;}
.y40{bottom:566.900833px;}
.y18e{bottom:569.792978px;}
.yf1{bottom:569.893543px;}
.y78{bottom:570.189328px;}
.y1ad{bottom:570.973537px;}
.y238{bottom:571.713374px;}
.y19{bottom:574.204098px;}
.y15d{bottom:574.477112px;}
.yb0{bottom:574.560096px;}
.y295{bottom:574.791378px;}
.y126{bottom:581.633220px;}
.y1dd{bottom:581.825229px;}
.y204{bottom:583.326804px;}
.y3f{bottom:585.132595px;}
.y18d{bottom:588.026539px;}
.y77{bottom:588.421689px;}
.y1ac{bottom:589.206498px;}
.y269{bottom:589.430010px;}
.y237{bottom:589.945735px;}
.y18{bottom:592.437060px;}
.y15c{bottom:592.710674px;}
.yaf{bottom:592.791858px;}
.y294{bottom:593.024939px;}
.yef{bottom:598.362116px;}
.y1dc{bottom:600.056991px;}
.y203{bottom:601.558566px;}
.y3e{bottom:603.366156px;}
.yec{bottom:606.085792px;}
.y18c{bottom:606.258301px;}
.y76{bottom:606.654051px;}
.y1ab{bottom:607.438860px;}
.y268{bottom:607.661771px;}
.y236{bottom:608.177497px;}
.y125{bottom:609.634820px;}
.y17{bottom:610.670021px;}
.y15b{bottom:610.942435px;}
.yae{bottom:611.025419px;}
.y293{bottom:611.256701px;}
.yeb{bottom:616.336405px;}
.yf0{bottom:616.337215px;}
.y189{bottom:618.180897px;}
.y1db{bottom:618.290552px;}
.y1a8{bottom:619.361456px;}
.y202{bottom:619.792128px;}
.y3d{bottom:621.597918px;}
.y75{bottom:624.886412px;}
.y267{bottom:625.895333px;}
.y235{bottom:626.411058px;}
.y16{bottom:628.902983px;}
.y15a{bottom:629.174797px;}
.yad{bottom:629.257181px;}
.y292{bottom:629.488462px;}
.yee{bottom:630.534075px;}
.yed{bottom:635.017889px;}
.y1da{bottom:636.522314px;}
.y201{bottom:638.023889px;}
.y3c{bottom:639.831479px;}
.y266{bottom:644.127094px;}
.y124{bottom:644.879532px;}
.y15{bottom:647.134745px;}
.y159{bottom:647.408358px;}
.yac{bottom:647.490742px;}
.y291{bottom:647.721424px;}
.y74{bottom:653.255381px;}
.y1d9{bottom:655.291402px;}
.y3b{bottom:658.063241px;}
.y234{bottom:661.066841px;}
.y265{bottom:662.360656px;}
.y123{bottom:663.111293px;}
.yea{bottom:663.602268px;}
.y14{bottom:665.366506px;}
.y158{bottom:665.640720px;}
.yab{bottom:665.722504px;}
.y1d8{bottom:673.523164px;}
.y3a{bottom:676.296803px;}
.y290{bottom:677.909233px;}
.y200{bottom:679.079592px;}
.y233{bottom:679.298603px;}
.y122{bottom:681.344855px;}
.ye9{bottom:681.835830px;}
.y13{bottom:683.600068px;}
.yaa{bottom:683.956066px;}
.y157{bottom:685.013888px;}
.y73{bottom:687.437740px;}
.y1d7{bottom:691.754926px;}
.y264{bottom:693.266851px;}
.y28f{bottom:696.142795px;}
.y1ff{bottom:697.311353px;}
.y232{bottom:697.532164px;}
.y121{bottom:699.576617px;}
.ye8{bottom:700.201248px;}
.y12{bottom:701.831829px;}
.ya9{bottom:702.187827px;}
.y156{bottom:703.247450px;}
.y72{bottom:705.669501px;}
.y1d6{bottom:709.988487px;}
.y263{bottom:711.500413px;}
.y28e{bottom:714.374556px;}
.y1fe{bottom:715.544915px;}
.y231{bottom:715.763926px;}
.y120{bottom:717.810178px;}
.ye7{bottom:718.434809px;}
.y11{bottom:720.065391px;}
.y155{bottom:721.479212px;}
.ya8{bottom:721.958966px;}
.y71{bottom:723.901263px;}
.y1d5{bottom:728.220249px;}
.y262{bottom:729.732174px;}
.y39{bottom:730.979187px;}
.y28d{bottom:732.608118px;}
.y1fd{bottom:733.776677px;}
.y230{bottom:733.997488px;}
.y11f{bottom:736.041940px;}
.ye6{bottom:736.666571px;}
.y10{bottom:738.297153px;}
.y154{bottom:739.710973px;}
.ya7{bottom:740.190727px;}
.y177{bottom:745.195258px;}
.y1d4{bottom:746.453810px;}
.y261{bottom:747.965736px;}
.y38{bottom:749.210948px;}
.y1f9{bottom:749.951985px;}
.y22f{bottom:752.229249px;}
.y70{bottom:752.272631px;}
.y11e{bottom:754.273701px;}
.ye5{bottom:754.900133px;}
.yf{bottom:756.530714px;}
.y153{bottom:757.944535px;}
.ya6{bottom:758.423689px;}
.y28c{bottom:762.795327px;}
.y32{bottom:765.386257px;}
.y11d{bottom:772.930284px;}
.ye4{bottom:773.131894px;}
.y1d3{bottom:774.670521px;}
.ye{bottom:774.762476px;}
.y152{bottom:776.176296px;}
.ya5{bottom:776.656650px;}
.y260{bottom:778.871331px;}
.y28b{bottom:781.028889px;}
.y22e{bottom:786.885632px;}
.y11c{bottom:791.162046px;}
.ye3{bottom:791.364256px;}
.yd{bottom:792.994237px;}
.y151{bottom:794.409858px;}
.ya4{bottom:794.889612px;}
.y25f{bottom:797.104893px;}
.y6f{bottom:797.430709px;}
.y28a{bottom:799.260651px;}
.y22d{bottom:805.119193px;}
.y11b{bottom:809.393807px;}
.ye2{bottom:809.597817px;}
.yc{bottom:811.227799px;}
.y150{bottom:812.641620px;}
.ya3{bottom:813.121374px;}
.y25e{bottom:815.336654px;}
.y6e{bottom:815.664271px;}
.y1d2{bottom:816.359105px;}
.y289{bottom:817.492412px;}
.y22c{bottom:823.350955px;}
.y11a{bottom:827.627369px;}
.ye1{bottom:827.829579px;}
.yb{bottom:829.459560px;}
.ya2{bottom:831.353135px;}
.y25d{bottom:833.570216px;}
.y6d{bottom:833.896032px;}
.y1d1{bottom:834.590867px;}
.y288{bottom:835.725974px;}
.y22b{bottom:841.582717px;}
.ye0{bottom:846.196197px;}
.ya{bottom:847.693122px;}
.y14f{bottom:848.375056px;}
.ya1{bottom:849.586697px;}
.y25c{bottom:851.801977px;}
.y6c{bottom:852.127794px;}
.y1d0{bottom:852.824429px;}
.y22a{bottom:859.815678px;}
.ydf{bottom:864.429759px;}
.y287{bottom:865.913783px;}
.y9{bottom:865.925484px;}
.y14e{bottom:866.608618px;}
.ya0{bottom:867.818458px;}
.y6b{bottom:870.361355px;}
.y1cf{bottom:871.056190px;}
.y119{bottom:878.776926px;}
.yde{bottom:882.662120px;}
.y25b{bottom:882.709973px;}
.y286{bottom:884.147345px;}
.y8{bottom:884.157845px;}
.y9f{bottom:887.589597px;}
.y6a{bottom:888.593117px;}
.y1ce{bottom:889.289752px;}
.y229{bottom:894.472061px;}
.y14d{bottom:895.975586px;}
.ydd{bottom:900.893882px;}
.y25a{bottom:900.941734px;}
.y285{bottom:902.379106px;}
.y7{bottom:902.391407px;}
.y118{bottom:905.782701px;}
.y9e{bottom:905.821358px;}
.y69{bottom:906.826679px;}
.y1cd{bottom:907.521513px;}
.y228{bottom:912.703822px;}
.y259{bottom:919.173496px;}
.y117{bottom:919.233574px;}
.y284{bottom:920.612668px;}
.y9d{bottom:924.054920px;}
.y68{bottom:925.675421px;}
.y1cc{bottom:925.753275px;}
.y116{bottom:932.683276px;}
.y14c{bottom:933.388957px;}
.y6{bottom:935.596917px;}
.y258{bottom:937.407058px;}
.y283{bottom:938.844429px;}
.y9c{bottom:942.286681px;}
.y67{bottom:943.907183px;}
.y1cb{bottom:943.986836px;}
.y115{bottom:946.132979px;}
.y227{bottom:947.362005px;}
.ydc{bottom:951.467561px;}
.y14b{bottom:951.622518px;}
.y257{bottom:955.638819px;}
.y114{bottom:959.584436px;}
.y9b{bottom:960.520243px;}
.y66{bottom:962.140744px;}
.y1ca{bottom:962.219198px;}
.y226{bottom:965.593767px;}
.y282{bottom:969.033439px;}
.yca{bottom:969.768476px;}
.y14a{bottom:969.854280px;}
.y113{bottom:973.034139px;}
.y9a{bottom:978.752005px;}
.y65{bottom:980.372506px;}
.y1c9{bottom:980.452760px;}
.y256{bottom:986.546814px;}
.y281{bottom:987.265200px;}
.y149{bottom:988.087841px;}
.y112{bottom:993.985686px;}
.y225{bottom:994.915583px;}
.y99{bottom:996.985566px;}
.y64{bottom:998.604267px;}
.y1c8{bottom:998.684521px;}
.y5{bottom:1001.652420px;}
.y255{bottom:1004.778576px;}
.y280{bottom:1005.496962px;}
.y148{bottom:1006.319603px;}
.y98{bottom:1016.754905px;}
.y63{bottom:1016.837829px;}
.y1c7{bottom:1017.453610px;}
.y4{bottom:1022.575466px;}
.y254{bottom:1023.012138px;}
.y27f{bottom:1023.730523px;}
.y147{bottom:1024.551365px;}
.y111{bottom:1033.026638px;}
.y97{bottom:1034.988466px;}
.y62{bottom:1035.069590px;}
.y1c6{bottom:1035.685971px;}
.y253{bottom:1041.243899px;}
.y27e{bottom:1041.962885px;}
.y146{bottom:1042.784326px;}
.y224{bottom:1042.829478px;}
.y3{bottom:1043.498512px;}
.y110{bottom:1051.258400px;}
.y61{bottom:1053.918333px;}
.y252{bottom:1059.477461px;}
.y145{bottom:1061.017288px;}
.y223{bottom:1061.061240px;}
.y96{bottom:1065.110122px;}
.y10f{bottom:1069.491961px;}
.y60{bottom:1072.151894px;}
.y144{bottom:1079.250249px;}
.y222{bottom:1079.294802px;}
.y251{bottom:1090.383056px;}
.y5f{bottom:1090.383656px;}
.y10e{bottom:1096.497407px;}
.y2{bottom:1097.258050px;}
.y143{bottom:1097.482011px;}
.y221{bottom:1097.526563px;}
.y250{bottom:1108.616618px;}
.y95{bottom:1108.616948px;}
.y5e{bottom:1108.617218px;}
.y10d{bottom:1110.832498px;}
.y142{bottom:1115.713772px;}
.y220{bottom:1115.760125px;}
.y1{bottom:1121.169545px;}
.y10c{bottom:1124.282201px;}
.y94{bottom:1126.848709px;}
.y5d{bottom:1126.848979px;}
.y5c{bottom:1145.080741px;}
.y24f{bottom:1145.081941px;}
.y93{bottom:1145.082271px;}
.y10b{bottom:1145.233748px;}
.yc9{bottom:1195.604767px;}
.h1e{height:0.000000px;}
.hc{height:17.024774px;}
.hd{height:23.084737px;}
.h23{height:28.203457px;}
.h1d{height:29.040355px;}
.h10{height:29.913406px;}
.h17{height:30.116341px;}
.h11{height:31.945758px;}
.h2e{height:32.289819px;}
.h28{height:32.905753px;}
.h18{height:33.433503px;}
.h2f{height:33.693711px;}
.h19{height:34.105536px;}
.h29{height:34.336434px;}
.h1a{height:34.788256px;}
.h6{height:35.939128px;}
.h16{height:37.491559px;}
.h9{height:39.884375px;}
.h30{height:41.008112px;}
.h14{height:41.282064px;}
.h7{height:41.366783px;}
.h1c{height:41.486341px;}
.h2c{height:41.785234px;}
.h1f{height:44.833942px;}
.h24{height:46.791590px;}
.h25{height:46.793930px;}
.h4{height:49.640472px;}
.h8{height:49.855343px;}
.h21{height:49.895922px;}
.h20{height:49.898322px;}
.h12{height:50.730480px;}
.h13{height:50.732820px;}
.he{height:52.961182px;}
.h26{height:56.588764px;}
.hf{height:56.595845px;}
.h3{height:59.568401px;}
.h5{height:59.826812px;}
.h1b{height:85.270323px;}
.h22{height:85.277344px;}
.hb{height:101.778636px;}
.ha{height:185.154257px;}
.h15{height:190.256012px;}
.h2d{height:410.074003px;}
.h2b{height:540.669032px;}
.h2a{height:541.848091px;}
.h27{height:761.421569px;}
.h2{height:1233.106642px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:348.674433px;}
.w2{width:348.675933px;}
.w5{width:348.678933px;}
.w4{width:376.578828px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:8.801210px;}
.x30{left:13.164313px;}
.xd{left:14.552228px;}
.x18{left:17.883744px;}
.x19{left:28.640632px;}
.x37{left:72.516327px;}
.xc{left:74.645232px;}
.x35{left:79.988350px;}
.x7{left:82.469984px;}
.x32{left:85.139653px;}
.x17{left:95.023451px;}
.x13{left:96.517827px;}
.x11{left:100.402871px;}
.x36{left:104.887045px;}
.x2f{left:106.526177px;}
.x1f{left:108.633933px;}
.x16{left:119.930696px;}
.x1{left:131.692935px;}
.x4{left:136.697636px;}
.x20{left:145.223792px;}
.x9{left:146.252963px;}
.x2a{left:160.415634px;}
.x25{left:166.487885px;}
.xe{left:175.292764px;}
.x12{left:185.022552px;}
.x8{left:187.167569px;}
.x34{left:196.485525px;}
.x5{left:206.053303px;}
.x2{left:208.142908px;}
.x6{left:216.532737px;}
.x21{left:222.014101px;}
.x1d{left:226.789589px;}
.xb{left:233.539176px;}
.x22{left:236.468794px;}
.x23{left:237.774914px;}
.x3{left:242.566629px;}
.x1e{left:249.724686px;}
.x1c{left:253.419370px;}
.x24{left:260.546142px;}
.x27{left:265.700605px;}
.x28{left:266.813943px;}
.x26{left:270.537177px;}
.x1a{left:273.158857px;}
.x29{left:289.778501px;}
.x1b{left:316.880043px;}
.x10{left:426.745500px;}
.x15{left:443.752500px;}
.x38{left:455.212161px;}
.xa{left:465.165758px;}
.x2e{left:479.213961px;}
.xf{left:483.098705px;}
.x2d{left:486.046802px;}
.x39{left:487.582129px;}
.x2b{left:494.471223px;}
.x14{left:536.214651px;}
.x2c{left:551.756088px;}
.x33{left:578.771433px;}
@media print{
.v4{vertical-align:-23.495340pt;}
.v2{vertical-align:-15.004910pt;}
.v6{vertical-align:-10.842195pt;}
.v3{vertical-align:-7.969145pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.204226pt;}
.v8{vertical-align:15.002830pt;}
.v1{vertical-align:19.286404pt;}
.v7{vertical-align:35.943450pt;}
.ls0{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000572pt;}
.ls1{letter-spacing:0.002263pt;}
.ls53{letter-spacing:0.002698pt;}
.ls1b{letter-spacing:0.002839pt;}
.ls56{letter-spacing:0.003894pt;}
.ls26{letter-spacing:0.004732pt;}
.ls3e{letter-spacing:0.009199pt;}
.ls9{letter-spacing:0.010255pt;}
.ls37{letter-spacing:0.011361pt;}
.ls16{letter-spacing:0.012299pt;}
.ls1e{letter-spacing:0.013441pt;}
.ls6{letter-spacing:0.016513pt;}
.ls3{letter-spacing:0.018593pt;}
.ls41{letter-spacing:0.018990pt;}
.ls24{letter-spacing:0.027319pt;}
.lsb{letter-spacing:0.027470pt;}
.ls10{letter-spacing:0.035791pt;}
.ls5e{letter-spacing:0.038188pt;}
.ls35{letter-spacing:0.039592pt;}
.ls36{letter-spacing:0.040268pt;}
.ls1c{letter-spacing:0.044428pt;}
.ls63{letter-spacing:0.046508pt;}
.ls21{letter-spacing:0.046569pt;}
.ls31{letter-spacing:0.050729pt;}
.ls34{letter-spacing:0.227308pt;}
.ls1d{letter-spacing:1.068241pt;}
.ls42{letter-spacing:2.665599pt;}
.ls33{letter-spacing:2.670308pt;}
.ls4{letter-spacing:2.672389pt;}
.ls32{letter-spacing:2.676549pt;}
.ls20{letter-spacing:2.881574pt;}
.ls1f{letter-spacing:2.883655pt;}
.ls30{letter-spacing:3.128809pt;}
.lsf{letter-spacing:4.002610pt;}
.lsa{letter-spacing:4.027214pt;}
.ls4b{letter-spacing:5.311252pt;}
.ls23{letter-spacing:5.936075pt;}
.ls22{letter-spacing:6.970616pt;}
.ls43{letter-spacing:8.896924pt;}
.ls48{letter-spacing:8.899004pt;}
.ls51{letter-spacing:9.298567pt;}
.ls2{letter-spacing:10.624851pt;}
.ls2b{letter-spacing:10.930092pt;}
.ls64{letter-spacing:11.571139pt;}
.ls40{letter-spacing:11.850991pt;}
.ls62{letter-spacing:11.929503pt;}
.ls52{letter-spacing:11.957985pt;}
.ls57{letter-spacing:12.579669pt;}
.ls55{letter-spacing:12.721329pt;}
.ls2f{letter-spacing:13.283704pt;}
.ls2a{letter-spacing:13.576427pt;}
.ls25{letter-spacing:13.845854pt;}
.ls5f{letter-spacing:14.163832pt;}
.ls44{letter-spacing:14.184774pt;}
.ls3f{letter-spacing:14.474509pt;}
.ls4e{letter-spacing:14.526341pt;}
.ls4f{letter-spacing:14.528940pt;}
.ls2d{letter-spacing:14.760738pt;}
.ls3c{letter-spacing:14.794811pt;}
.ls28{letter-spacing:14.796597pt;}
.ls29{letter-spacing:14.803512pt;}
.ls18{letter-spacing:14.879239pt;}
.ls19{letter-spacing:14.881319pt;}
.ls14{letter-spacing:15.037808pt;}
.ls17{letter-spacing:15.343849pt;}
.ls27{letter-spacing:15.456388pt;}
.ls5c{letter-spacing:15.457657pt;}
.ls15{letter-spacing:15.556607pt;}
.ls4d{letter-spacing:15.762907pt;}
.ls50{letter-spacing:15.763896pt;}
.ls45{letter-spacing:16.105181pt;}
.ls2e{letter-spacing:16.408673pt;}
.ls3b{letter-spacing:16.686490pt;}
.ls5b{letter-spacing:16.763962pt;}
.ls5a{letter-spacing:16.834015pt;}
.ls2c{letter-spacing:17.443287pt;}
.ls54{letter-spacing:17.470238pt;}
.ls3d{letter-spacing:18.224163pt;}
.ls58{letter-spacing:19.464097pt;}
.ls1a{letter-spacing:19.585037pt;}
.ls59{letter-spacing:21.009264pt;}
.ls5{letter-spacing:21.487943pt;}
.lsc{letter-spacing:21.503917pt;}
.ls11{letter-spacing:21.651817pt;}
.ls60{letter-spacing:21.863440pt;}
.ls47{letter-spacing:22.145152pt;}
.ls46{letter-spacing:22.153914pt;}
.ls5d{letter-spacing:22.270478pt;}
.ls61{letter-spacing:23.128090pt;}
.ls13{letter-spacing:24.769654pt;}
.ls12{letter-spacing:24.790745pt;}
.ls8{letter-spacing:25.045564pt;}
.lse{letter-spacing:25.322378pt;}
.ls39{letter-spacing:25.754099pt;}
.ls3a{letter-spacing:25.786934pt;}
.ls7{letter-spacing:27.681959pt;}
.lsd{letter-spacing:27.965333pt;}
.ls4c{letter-spacing:198.319492pt;}
.ls49{letter-spacing:209.684860pt;}
.ls4a{letter-spacing:221.643615pt;}
.ws80{word-spacing:-31.881914pt;}
.wsdd{word-spacing:-26.568262pt;}
.ws90{word-spacing:-25.505595pt;}
.wsd6{word-spacing:-21.023024pt;}
.ws242{word-spacing:-20.311629pt;}
.ws21f{word-spacing:-20.161861pt;}
.ws141{word-spacing:-20.061590pt;}
.ws1ca{word-spacing:-19.163091pt;}
.ws131{word-spacing:-19.152531pt;}
.ws137{word-spacing:-18.630051pt;}
.ws1b3{word-spacing:-18.599543pt;}
.wsf3{word-spacing:-18.597730pt;}
.ws1a1{word-spacing:-18.596130pt;}
.ws236{word-spacing:-18.594850pt;}
.ws1af{word-spacing:-18.335850pt;}
.ws13a{word-spacing:-17.702325pt;}
.wseb{word-spacing:-17.667219pt;}
.ws1f7{word-spacing:-17.411964pt;}
.ws220{word-spacing:-17.388923pt;}
.ws185{word-spacing:-15.637582pt;}
.ws1cc{word-spacing:-15.199693pt;}
.ws186{word-spacing:-15.046299pt;}
.ws106{word-spacing:-14.882557pt;}
.ws108{word-spacing:-14.876477pt;}
.wsf5{word-spacing:-14.784693pt;}
.ws212{word-spacing:-14.582382pt;}
.ws214{word-spacing:-14.578649pt;}
.ws16d{word-spacing:-14.408080pt;}
.ws170{word-spacing:-13.984699pt;}
.ws5{word-spacing:-13.284131pt;}
.ws132{word-spacing:-12.956701pt;}
.ws144{word-spacing:-12.527666pt;}
.ws1e6{word-spacing:-12.405420pt;}
.ws13d{word-spacing:-12.171382pt;}
.ws1b9{word-spacing:-12.157835pt;}
.wsdf{word-spacing:-11.797105pt;}
.wsea{word-spacing:-11.748060pt;}
.ws1fa{word-spacing:-11.223814pt;}
.ws1c8{word-spacing:-11.035218pt;}
.ws19f{word-spacing:-11.033618pt;}
.wscf{word-spacing:-11.010844pt;}
.ws1fd{word-spacing:-10.995750pt;}
.wsc6{word-spacing:-10.994190pt;}
.ws12c{word-spacing:-10.749231pt;}
.ws30{word-spacing:-10.627331pt;}
.ws1bd{word-spacing:-9.801557pt;}
.wsc4{word-spacing:-9.638735pt;}
.ws13e{word-spacing:-8.610884pt;}
.ws11e{word-spacing:-2.709644pt;}
.ws2b9{word-spacing:-2.602999pt;}
.ws292{word-spacing:-2.338379pt;}
.ws282{word-spacing:-1.807598pt;}
.ws1d5{word-spacing:-1.806748pt;}
.ws1d4{word-spacing:-1.801772pt;}
.ws1d3{word-spacing:-1.798867pt;}
.ws10c{word-spacing:-1.434686pt;}
.ws260{word-spacing:-1.381071pt;}
.ws2a8{word-spacing:-1.222087pt;}
.ws2ca{word-spacing:-1.116451pt;}
.ws121{word-spacing:-0.478016pt;}
.ws286{word-spacing:-0.213290pt;}
.ws2b6{word-spacing:-0.106804pt;}
.ws81{word-spacing:-0.053137pt;}
.ws18e{word-spacing:-0.043958pt;}
.ws22d{word-spacing:-0.043135pt;}
.ws18d{word-spacing:-0.042126pt;}
.ws22c{word-spacing:-0.041337pt;}
.ws25b{word-spacing:-0.002483pt;}
.ws28a{word-spacing:-0.001063pt;}
.ws261{word-spacing:-0.001010pt;}
.wsfc{word-spacing:-0.000956pt;}
.ws1{word-spacing:-0.000918pt;}
.ws2cb{word-spacing:-0.000903pt;}
.ws204{word-spacing:-0.000797pt;}
.ws0{word-spacing:-0.000765pt;}
.wsb8{word-spacing:-0.000638pt;}
.ws154{word-spacing:-0.000531pt;}
.ws71{word-spacing:-0.000213pt;}
.ws4{word-spacing:-0.000143pt;}
.ws59{word-spacing:0.000000pt;}
.wscb{word-spacing:0.000106pt;}
.ws275{word-spacing:0.000266pt;}
.ws271{word-spacing:0.000319pt;}
.ws6d{word-spacing:0.000372pt;}
.ws116{word-spacing:0.000797pt;}
.ws285{word-spacing:0.105476pt;}
.ws25a{word-spacing:0.105848pt;}
.ws2c6{word-spacing:1.009381pt;}
.ws19c{word-spacing:1.062624pt;}
.ws1c5{word-spacing:1.062730pt;}
.ws51{word-spacing:1.125198pt;}
.ws2c0{word-spacing:1.434686pt;}
.ws27c{word-spacing:1.540056pt;}
.ws31{word-spacing:1.827051pt;}
.ws26a{word-spacing:2.443324pt;}
.ws2a4{word-spacing:2.549756pt;}
.ws2d{word-spacing:2.668567pt;}
.ws199{word-spacing:3.294305pt;}
.ws25d{word-spacing:3.719716pt;}
.ws29f{word-spacing:3.825298pt;}
.ws270{word-spacing:3.984495pt;}
.ws2b3{word-spacing:3.984708pt;}
.ws274{word-spacing:4.621921pt;}
.ws2a9{word-spacing:4.675642pt;}
.ws157{word-spacing:4.728300pt;}
.ws1d6{word-spacing:4.878492pt;}
.ws1d7{word-spacing:4.904741pt;}
.ws156{word-spacing:4.941006pt;}
.ws27b{word-spacing:5.260144pt;}
.ws2bd{word-spacing:5.685183pt;}
.ws50{word-spacing:5.738426pt;}
.ws2cf{word-spacing:6.003577pt;}
.ws278{word-spacing:6.323087pt;}
.ws34{word-spacing:6.587972pt;}
.ws1f2{word-spacing:6.739087pt;}
.ws266{word-spacing:7.172634pt;}
.ws2d0{word-spacing:7.970266pt;}
.ws26f{word-spacing:8.130898pt;}
.ws2ac{word-spacing:8.341584pt;}
.ws1a3{word-spacing:8.767633pt;}
.ws7f{word-spacing:8.768377pt;}
.wsf8{word-spacing:8.819813pt;}
.ws118{word-spacing:8.819972pt;}
.ws211{word-spacing:8.820503pt;}
.wsf4{word-spacing:8.862163pt;}
.wsde{word-spacing:8.862534pt;}
.wsbf{word-spacing:8.862694pt;}
.ws6c{word-spacing:9.221622pt;}
.ws166{word-spacing:9.239593pt;}
.ws289{word-spacing:9.882384pt;}
.ws18f{word-spacing:9.936052pt;}
.ws18c{word-spacing:10.033136pt;}
.ws19a{word-spacing:10.043069pt;}
.ws119{word-spacing:10.149342pt;}
.ws1ac{word-spacing:10.307529pt;}
.ws148{word-spacing:10.330021pt;}
.ws2c1{word-spacing:10.361250pt;}
.ws265{word-spacing:10.414174pt;}
.ws20a{word-spacing:10.414812pt;}
.ws7e{word-spacing:10.467045pt;}
.ws15f{word-spacing:10.467576pt;}
.ws74{word-spacing:10.467948pt;}
.ws11d{word-spacing:10.520553pt;}
.wsfd{word-spacing:10.521988pt;}
.ws149{word-spacing:10.584057pt;}
.ws32{word-spacing:10.584694pt;}
.ws105{word-spacing:10.585630pt;}
.ws2e{word-spacing:10.624696pt;}
.ws2c8{word-spacing:10.626454pt;}
.ws11a{word-spacing:10.626826pt;}
.ws2ba{word-spacing:10.679963pt;}
.ws153{word-spacing:10.734587pt;}
.wsd7{word-spacing:10.786874pt;}
.wsd5{word-spacing:10.803421pt;}
.ws1dd{word-spacing:10.839054pt;}
.ws293{word-spacing:10.892456pt;}
.ws101{word-spacing:10.892509pt;}
.ws102{word-spacing:10.893253pt;}
.ws16a{word-spacing:10.998995pt;}
.ws201{word-spacing:10.999526pt;}
.ws11f{word-spacing:11.051600pt;}
.wse0{word-spacing:11.086556pt;}
.wse1{word-spacing:11.105321pt;}
.wse2{word-spacing:11.105533pt;}
.ws6e{word-spacing:11.105640pt;}
.ws26{word-spacing:11.158085pt;}
.ws17{word-spacing:11.159254pt;}
.ws2b8{word-spacing:11.179087pt;}
.ws103{word-spacing:11.210797pt;}
.ws104{word-spacing:11.211700pt;}
.ws147{word-spacing:11.221994pt;}
.ws28e{word-spacing:11.264518pt;}
.ws92{word-spacing:11.264624pt;}
.ws1cd{word-spacing:11.311728pt;}
.ws1ce{word-spacing:11.316964pt;}
.ws180{word-spacing:11.370897pt;}
.ws14c{word-spacing:11.424140pt;}
.ws6a{word-spacing:11.424246pt;}
.ws281{word-spacing:11.452914pt;}
.ws26b{word-spacing:11.476533pt;}
.ws243{word-spacing:11.504980pt;}
.ws244{word-spacing:11.514420pt;}
.ws11c{word-spacing:11.529722pt;}
.ws1de{word-spacing:11.531316pt;}
.ws1a8{word-spacing:11.636048pt;}
.ws21e{word-spacing:11.636367pt;}
.wsa4{word-spacing:11.636527pt;}
.ws91{word-spacing:11.636899pt;}
.ws2b1{word-spacing:11.637058pt;}
.ws183{word-spacing:11.637961pt;}
.ws2b{word-spacing:11.647938pt;}
.ws45{word-spacing:11.689398pt;}
.ws283{word-spacing:11.690035pt;}
.ws42{word-spacing:11.690673pt;}
.ws142{word-spacing:11.742268pt;}
.ws10d{word-spacing:11.795352pt;}
.ws61{word-spacing:11.797052pt;}
.ws241{word-spacing:11.849020pt;}
.ws18a{word-spacing:11.849126pt;}
.ws25f{word-spacing:11.901678pt;}
.ws15{word-spacing:11.901837pt;}
.ws291{word-spacing:11.954761pt;}
.wsb7{word-spacing:11.955771pt;}
.ws181{word-spacing:11.956037pt;}
.ws2a7{word-spacing:11.974044pt;}
.ws219{word-spacing:12.008801pt;}
.wsa0{word-spacing:12.009173pt;}
.ws98{word-spacing:12.009598pt;}
.ws299{word-spacing:12.009704pt;}
.ws128{word-spacing:12.061513pt;}
.ws87{word-spacing:12.114277pt;}
.wsd9{word-spacing:12.136492pt;}
.wsdc{word-spacing:12.139883pt;}
.ws2c9{word-spacing:12.140525pt;}
.wsda{word-spacing:12.155504pt;}
.wsdb{word-spacing:12.155763pt;}
.ws9d{word-spacing:12.220391pt;}
.ws208{word-spacing:12.220975pt;}
.ws198{word-spacing:12.221932pt;}
.ws120{word-spacing:12.274059pt;}
.ws89{word-spacing:12.274431pt;}
.ws155{word-spacing:12.326930pt;}
.ws93{word-spacing:12.327939pt;}
.ws97{word-spacing:12.380013pt;}
.ws8c{word-spacing:12.380704pt;}
.ws2b5{word-spacing:12.486020pt;}
.ws9e{word-spacing:12.486286pt;}
.ws14e{word-spacing:12.486445pt;}
.ws171{word-spacing:12.513539pt;}
.ws172{word-spacing:12.517892pt;}
.ws173{word-spacing:12.541123pt;}
.ws16f{word-spacing:12.545012pt;}
.ws86{word-spacing:12.592718pt;}
.wsd1{word-spacing:12.592931pt;}
.wsd0{word-spacing:12.615793pt;}
.ws1cb{word-spacing:12.645961pt;}
.ws130{word-spacing:12.647236pt;}
.wse4{word-spacing:12.698938pt;}
.ws254{word-spacing:12.699045pt;}
.ws11b{word-spacing:12.699204pt;}
.wse3{word-spacing:12.713404pt;}
.ws191{word-spacing:12.751915pt;}
.ws49{word-spacing:12.753244pt;}
.ws122{word-spacing:12.805849pt;}
.ws24{word-spacing:12.859623pt;}
.ws1ab{word-spacing:12.911112pt;}
.ws276{word-spacing:12.911166pt;}
.ws2f{word-spacing:12.922580pt;}
.wse5{word-spacing:12.964462pt;}
.ws159{word-spacing:12.965099pt;}
.ws40{word-spacing:12.965737pt;}
.ws3a{word-spacing:13.017811pt;}
.wse6{word-spacing:13.018236pt;}
.ws10e{word-spacing:13.018980pt;}
.ws10f{word-spacing:13.072276pt;}
.ws15b{word-spacing:13.124190pt;}
.ws2c{word-spacing:13.134446pt;}
.ws138{word-spacing:13.178230pt;}
.ws136{word-spacing:13.178761pt;}
.ws1b4{word-spacing:13.228149pt;}
.wse7{word-spacing:13.228629pt;}
.wse8{word-spacing:13.229872pt;}
.wsab{word-spacing:13.229932pt;}
.ws5e{word-spacing:13.230038pt;}
.ws70{word-spacing:13.230091pt;}
.ws4c{word-spacing:13.230197pt;}
.ws1b2{word-spacing:13.230242pt;}
.ws65{word-spacing:13.230250pt;}
.ws36{word-spacing:13.230357pt;}
.ws27e{word-spacing:13.230410pt;}
.ws7a{word-spacing:13.230463pt;}
.wsfe{word-spacing:13.230516pt;}
.ws10{word-spacing:13.230622pt;}
.wsa2{word-spacing:13.230729pt;}
.ws1b{word-spacing:13.230782pt;}
.ws3f{word-spacing:13.230835pt;}
.ws169{word-spacing:13.230994pt;}
.ws192{word-spacing:13.231101pt;}
.ws22b{word-spacing:13.231526pt;}
.wsb9{word-spacing:13.231632pt;}
.ws2ae{word-spacing:13.231791pt;}
.ws1b5{word-spacing:13.232891pt;}
.wse9{word-spacing:13.234491pt;}
.ws41{word-spacing:13.283493pt;}
.ws284{word-spacing:13.336842pt;}
.ws205{word-spacing:13.337002pt;}
.ws1a9{word-spacing:13.389447pt;}
.wsaf{word-spacing:13.390882pt;}
.ws38{word-spacing:13.391042pt;}
.ws1d2{word-spacing:13.391307pt;}
.ws5f{word-spacing:13.391413pt;}
.ws1b0{word-spacing:13.486741pt;}
.ws1ae{word-spacing:13.488780pt;}
.ws94{word-spacing:13.496783pt;}
.ws99{word-spacing:13.497261pt;}
.ws1b1{word-spacing:13.497421pt;}
.ws2a{word-spacing:13.548910pt;}
.ws146{word-spacing:13.549388pt;}
.ws24c{word-spacing:13.550664pt;}
.ws145{word-spacing:13.601994pt;}
.wsce{word-spacing:13.603056pt;}
.ws5d{word-spacing:13.656087pt;}
.ws14f{word-spacing:13.708160pt;}
.wsbb{word-spacing:13.709648pt;}
.ws57{word-spacing:13.762678pt;}
.ws24b{word-spacing:13.814752pt;}
.ws6f{word-spacing:13.867889pt;}
.ws174{word-spacing:13.868473pt;}
.ws66{word-spacing:13.869111pt;}
.ws1ff{word-spacing:13.911488pt;}
.ws2be{word-spacing:13.921131pt;}
.ws200{word-spacing:13.922832pt;}
.ws134{word-spacing:13.974374pt;}
.ws8a{word-spacing:13.974906pt;}
.ws14d{word-spacing:14.028095pt;}
.ws1e1{word-spacing:14.028308pt;}
.ws17d{word-spacing:14.077548pt;}
.ws1dc{word-spacing:14.080275pt;}
.ws17f{word-spacing:14.080488pt;}
.ws176{word-spacing:14.080754pt;}
.ws13b{word-spacing:14.080913pt;}
.ws1e4{word-spacing:14.081179pt;}
.ws17c{word-spacing:14.097468pt;}
.ws139{word-spacing:14.105314pt;}
.ws1e7{word-spacing:14.107601pt;}
.ws1e5{word-spacing:14.107861pt;}
.wsf6{word-spacing:14.123587pt;}
.wsf7{word-spacing:14.124136pt;}
.ws255{word-spacing:14.133518pt;}
.ws1e8{word-spacing:14.133890pt;}
.ws73{word-spacing:14.133943pt;}
.ws43{word-spacing:14.134315pt;}
.ws117{word-spacing:14.134528pt;}
.ws256{word-spacing:14.187027pt;}
.ws9b{word-spacing:14.187452pt;}
.ws21a{word-spacing:14.239791pt;}
.ws19d{word-spacing:14.292875pt;}
.ws224{word-spacing:14.293087pt;}
.ws1a{word-spacing:14.293565pt;}
.ws76{word-spacing:14.293725pt;}
.ws52{word-spacing:14.346011pt;}
.ws1f8{word-spacing:14.399041pt;}
.ws221{word-spacing:14.399254pt;}
.ws1f6{word-spacing:14.399785pt;}
.ws182{word-spacing:14.399945pt;}
.ws222{word-spacing:14.400689pt;}
.ws85{word-spacing:14.453187pt;}
.ws248{word-spacing:14.505421pt;}
.ws20f{word-spacing:14.506165pt;}
.ws60{word-spacing:14.559407pt;}
.ws227{word-spacing:14.611534pt;}
.wsa8{word-spacing:14.611800pt;}
.ws26c{word-spacing:14.665415pt;}
.wsa1{word-spacing:14.717914pt;}
.ws15c{word-spacing:14.717967pt;}
.ws15a{word-spacing:14.718126pt;}
.ws4d{word-spacing:14.719720pt;}
.ws15d{word-spacing:14.770891pt;}
.ws27d{word-spacing:14.771847pt;}
.ws188{word-spacing:14.772857pt;}
.ws7c{word-spacing:14.824293pt;}
.ws29b{word-spacing:14.877164pt;}
.ws4b{word-spacing:14.878067pt;}
.wscd{word-spacing:14.930566pt;}
.wscc{word-spacing:14.930672pt;}
.ws2c4{word-spacing:15.036680pt;}
.ws258{word-spacing:15.037477pt;}
.ws5c{word-spacing:15.038433pt;}
.ws28{word-spacing:15.090985pt;}
.wsa7{word-spacing:15.091091pt;}
.wsb2{word-spacing:15.142953pt;}
.ws167{word-spacing:15.143218pt;}
.ws1f5{word-spacing:15.144228pt;}
.ws25{word-spacing:15.196195pt;}
.ws259{word-spacing:15.196302pt;}
.ws37{word-spacing:15.196567pt;}
.ws2b0{word-spacing:15.197365pt;}
.ws16b{word-spacing:15.197471pt;}
.ws228{word-spacing:15.249173pt;}
.ws12{word-spacing:15.250182pt;}
.ws1f0{word-spacing:15.302947pt;}
.ws24e{word-spacing:15.303106pt;}
.ws1e0{word-spacing:15.355446pt;}
.ws1c1{word-spacing:15.406059pt;}
.ws129{word-spacing:15.409592pt;}
.ws1c0{word-spacing:15.410017pt;}
.ws14b{word-spacing:15.410389pt;}
.ws127{word-spacing:15.461719pt;}
.ws8d{word-spacing:15.461825pt;}
.wsac{word-spacing:15.462197pt;}
.wsa9{word-spacing:15.463419pt;}
.ws246{word-spacing:15.463525pt;}
.ws82{word-spacing:15.463791pt;}
.ws245{word-spacing:15.499671pt;}
.ws5a{word-spacing:15.515759pt;}
.ws161{word-spacing:15.621713pt;}
.ws218{word-spacing:15.621819pt;}
.ws162{word-spacing:15.621978pt;}
.ws1b6{word-spacing:15.674318pt;}
.ws164{word-spacing:15.674584pt;}
.ws269{word-spacing:15.675646pt;}
.ws8b{word-spacing:15.676178pt;}
.ws140{word-spacing:15.727348pt;}
.ws1ea{word-spacing:15.728730pt;}
.ws124{word-spacing:15.729155pt;}
.ws88{word-spacing:15.782398pt;}
.ws2a3{word-spacing:15.811603pt;}
.ws58{word-spacing:15.834365pt;}
.wsb6{word-spacing:15.834897pt;}
.ws229{word-spacing:15.862807pt;}
.ws3{word-spacing:15.876598pt;}
.ws22a{word-spacing:15.886864pt;}
.ws2a5{word-spacing:15.888564pt;}
.ws1aa{word-spacing:15.888830pt;}
.ws20b{word-spacing:15.940001pt;}
.ws1f4{word-spacing:15.940266pt;}
.ws247{word-spacing:15.940373pt;}
.wsb5{word-spacing:15.940904pt;}
.ws29{word-spacing:15.941010pt;}
.ws175{word-spacing:15.946377pt;}
.ws6{word-spacing:15.993084pt;}
.wsaa{word-spacing:15.994147pt;}
.wsb{word-spacing:15.994412pt;}
.ws226{word-spacing:16.046486pt;}
.ws18{word-spacing:16.046699pt;}
.ws21b{word-spacing:16.099729pt;}
.ws21d{word-spacing:16.100367pt;}
.ws210{word-spacing:16.101164pt;}
.ws3e{word-spacing:16.152494pt;}
.ws184{word-spacing:16.152600pt;}
.ws77{word-spacing:16.153663pt;}
.ws6b{word-spacing:16.205896pt;}
.ws9f{word-spacing:16.312009pt;}
.ws193{word-spacing:16.313550pt;}
.ws17e{word-spacing:16.319289pt;}
.ws2ab{word-spacing:16.366421pt;}
.ws2cc{word-spacing:16.472322pt;}
.ws64{word-spacing:16.472641pt;}
.wsa5{word-spacing:16.524502pt;}
.ws19b{word-spacing:16.526362pt;}
.ws2af{word-spacing:16.630775pt;}
.ws21c{word-spacing:16.630882pt;}
.ws5b{word-spacing:16.684018pt;}
.ws1bb{word-spacing:16.684071pt;}
.ws1be{word-spacing:16.684762pt;}
.ws16{word-spacing:16.685187pt;}
.ws1bc{word-spacing:16.712257pt;}
.ws1bf{word-spacing:16.737155pt;}
.ws177{word-spacing:16.737261pt;}
.ws18b{word-spacing:16.790121pt;}
.ws187{word-spacing:16.791726pt;}
.ws84{word-spacing:16.897308pt;}
.ws2cd{word-spacing:16.897786pt;}
.ws272{word-spacing:16.949541pt;}
.ws20c{word-spacing:16.949594pt;}
.ws25e{word-spacing:16.949648pt;}
.ws4a{word-spacing:16.951082pt;}
.ws25c{word-spacing:16.951189pt;}
.ws55{word-spacing:17.003422pt;}
.ws3b{word-spacing:17.004219pt;}
.ws7{word-spacing:17.055868pt;}
.ws2a0{word-spacing:17.057355pt;}
.ws240{word-spacing:17.109961pt;}
.ws8e{word-spacing:17.110173pt;}
.wsfa{word-spacing:17.162194pt;}
.ws216{word-spacing:17.216074pt;}
.ws14{word-spacing:17.217137pt;}
.ws215{word-spacing:17.245358pt;}
.ws213{word-spacing:17.245418pt;}
.ws1c4{word-spacing:17.268414pt;}
.ws62{word-spacing:17.268679pt;}
.ws165{word-spacing:17.374687pt;}
.ws16e{word-spacing:17.374793pt;}
.ws23c{word-spacing:17.375643pt;}
.ws16c{word-spacing:17.419194pt;}
.ws11{word-spacing:17.428036pt;}
.ws14a{word-spacing:17.480960pt;}
.ws202{word-spacing:17.481013pt;}
.ws194{word-spacing:17.481066pt;}
.ws1a2{word-spacing:17.534840pt;}
.ws72{word-spacing:17.535159pt;}
.ws44{word-spacing:17.589146pt;}
.ws1e3{word-spacing:17.641219pt;}
.ws163{word-spacing:17.694197pt;}
.ws24d{word-spacing:17.695153pt;}
.ws69{word-spacing:17.799726pt;}
.ws206{word-spacing:17.800045pt;}
.wsb3{word-spacing:17.853766pt;}
.ws1ad{word-spacing:17.906211pt;}
.ws19{word-spacing:17.907327pt;}
.ws1a7{word-spacing:17.907805pt;}
.ws150{word-spacing:17.959720pt;}
.ws158{word-spacing:17.960411pt;}
.ws21{word-spacing:18.012591pt;}
.ws29e{word-spacing:18.039753pt;}
.ws12f{word-spacing:18.065461pt;}
.ws2bb{word-spacing:18.065674pt;}
.ws232{word-spacing:18.080157pt;}
.ws234{word-spacing:18.082717pt;}
.ws1e{word-spacing:18.118598pt;}
.ws1d0{word-spacing:18.119129pt;}
.ws1da{word-spacing:18.120192pt;}
.ws1d9{word-spacing:18.120405pt;}
.ws2bc{word-spacing:18.171735pt;}
.ws47{word-spacing:18.172797pt;}
.wsf9{word-spacing:18.191028pt;}
.ws2b2{word-spacing:18.239428pt;}
.ws257{word-spacing:18.278645pt;}
.wsa3{word-spacing:18.279283pt;}
.wsd{word-spacing:18.331888pt;}
.ws197{word-spacing:18.332419pt;}
.ws207{word-spacing:18.384653pt;}
.ws67{word-spacing:18.385025pt;}
.wsae{word-spacing:18.437630pt;}
.ws54{word-spacing:18.490501pt;}
.ws1cf{word-spacing:18.491032pt;}
.ws152{word-spacing:18.491138pt;}
.ws27a{word-spacing:18.543690pt;}
.wsb0{word-spacing:18.545178pt;}
.wsff{word-spacing:18.598049pt;}
.ws1c{word-spacing:18.598315pt;}
.ws2a6{word-spacing:18.649857pt;}
.ws1df{word-spacing:18.650388pt;}
.ws2c7{word-spacing:18.703419pt;}
.ws203{word-spacing:18.703684pt;}
.wsbc{word-spacing:18.703791pt;}
.wsbe{word-spacing:18.741211pt;}
.wsba{word-spacing:18.756927pt;}
.ws279{word-spacing:18.757033pt;}
.ws290{word-spacing:18.757937pt;}
.wsc0{word-spacing:18.766835pt;}
.ws133{word-spacing:18.863200pt;}
.ws15e{word-spacing:18.863944pt;}
.wsc1{word-spacing:18.915264pt;}
.wsd8{word-spacing:18.915646pt;}
.ws126{word-spacing:18.916018pt;}
.ws63{word-spacing:18.916390pt;}
.ws2bf{word-spacing:18.916815pt;}
.wsc3{word-spacing:18.917612pt;}
.wsc2{word-spacing:18.918509pt;}
.ws27{word-spacing:18.968836pt;}
.ws4f{word-spacing:18.970058pt;}
.ws223{word-spacing:18.970323pt;}
.wsad{word-spacing:19.022557pt;}
.ws273{word-spacing:19.075534pt;}
.ws13{word-spacing:19.128298pt;}
.ws160{word-spacing:19.128723pt;}
.ws22{word-spacing:19.128830pt;}
.ws2a2{word-spacing:19.181700pt;}
.wsf2{word-spacing:19.182869pt;}
.ws12e{word-spacing:19.234571pt;}
.ws2ce{word-spacing:19.236059pt;}
.ws249{word-spacing:19.287920pt;}
.wsb4{word-spacing:19.288983pt;}
.ws143{word-spacing:19.292912pt;}
.ws53{word-spacing:19.341057pt;}
.ws1e9{word-spacing:19.389780pt;}
.ws17a{word-spacing:19.393981pt;}
.ws1ec{word-spacing:19.395044pt;}
.ws179{word-spacing:19.395362pt;}
.ws17b{word-spacing:19.395628pt;}
.ws196{word-spacing:19.447064pt;}
.ws79{word-spacing:19.447117pt;}
.ws23{word-spacing:19.447171pt;}
.ws178{word-spacing:19.447596pt;}
.ws39{word-spacing:19.500201pt;}
.ws277{word-spacing:19.553975pt;}
.ws1ed{word-spacing:19.606314pt;}
.ws1eb{word-spacing:19.606580pt;}
.wsd3{word-spacing:19.606739pt;}
.ws2c5{word-spacing:19.659504pt;}
.ws1b8{word-spacing:19.659557pt;}
.ws1ba{word-spacing:19.659717pt;}
.ws268{word-spacing:19.660195pt;}
.ws13c{word-spacing:19.660886pt;}
.wsa6{word-spacing:19.712694pt;}
.ws1ef{word-spacing:19.713650pt;}
.ws168{word-spacing:19.766202pt;}
.ws35{word-spacing:19.819498pt;}
.ws96{word-spacing:19.819976pt;}
.ws1f1{word-spacing:19.909336pt;}
.ws1f3{word-spacing:19.926515pt;}
.ws298{word-spacing:19.978855pt;}
.ws1a4{word-spacing:19.979227pt;}
.ws8{word-spacing:20.031725pt;}
.ws1c3{word-spacing:20.033426pt;}
.ws239{word-spacing:20.072748pt;}
.ws1db{word-spacing:20.084862pt;}
.wse{word-spacing:20.084968pt;}
.ws238{word-spacing:20.085393pt;}
.ws56{word-spacing:20.085872pt;}
.wsd4{word-spacing:20.191613pt;}
.wsfb{word-spacing:20.191879pt;}
.ws75{word-spacing:20.192304pt;}
.wsa{word-spacing:20.244643pt;}
.ws253{word-spacing:20.245015pt;}
.ws1d1{word-spacing:20.245281pt;}
.ws217{word-spacing:20.297514pt;}
.ws1f{word-spacing:20.351767pt;}
.ws263{word-spacing:20.351926pt;}
.ws2a1{word-spacing:20.403894pt;}
.ws209{word-spacing:20.457827pt;}
.ws46{word-spacing:20.510007pt;}
.ws1ee{word-spacing:20.563835pt;}
.ws1a6{word-spacing:20.563888pt;}
.ws1fb{word-spacing:20.564047pt;}
.ws1f9{word-spacing:20.588994pt;}
.ws78{word-spacing:20.671064pt;}
.wsc8{word-spacing:20.694072pt;}
.ws1c6{word-spacing:20.775530pt;}
.ws19e{word-spacing:20.775584pt;}
.ws1a0{word-spacing:20.776753pt;}
.ws1c7{word-spacing:20.776806pt;}
.ws1c9{word-spacing:20.777071pt;}
.ws3c{word-spacing:20.777178pt;}
.ws1fe{word-spacing:20.828508pt;}
.ws1b7{word-spacing:20.828614pt;}
.wsf0{word-spacing:20.828773pt;}
.ws1fc{word-spacing:20.830420pt;}
.wsf{word-spacing:20.935046pt;}
.ws151{word-spacing:20.987917pt;}
.ws12b{word-spacing:21.041266pt;}
.ws189{word-spacing:21.041532pt;}
.ws12d{word-spacing:21.072750pt;}
.ws123{word-spacing:21.094562pt;}
.ws23f{word-spacing:21.095040pt;}
.ws23d{word-spacing:21.106077pt;}
.ws23e{word-spacing:21.120637pt;}
.ws68{word-spacing:21.147539pt;}
.ws1d{word-spacing:21.200569pt;}
.ws2d1{word-spacing:21.201313pt;}
.ws20e{word-spacing:21.201473pt;}
.ws9c{word-spacing:21.253919pt;}
.ws12a{word-spacing:21.307321pt;}
.ws26e{word-spacing:21.360457pt;}
.ws9{word-spacing:21.361467pt;}
.ws27f{word-spacing:21.466358pt;}
.ws295{word-spacing:21.467209pt;}
.ws2ad{word-spacing:21.574226pt;}
.ws251{word-spacing:21.732572pt;}
.ws23a{word-spacing:21.785178pt;}
.ws7b{word-spacing:21.944853pt;}
.ws100{word-spacing:22.051338pt;}
.ws24a{word-spacing:22.105538pt;}
.wsc{word-spacing:22.157080pt;}
.wsf1{word-spacing:22.370476pt;}
.ws95{word-spacing:22.476909pt;}
.ws28c{word-spacing:22.477174pt;}
.ws280{word-spacing:22.528983pt;}
.ws2b4{word-spacing:22.635256pt;}
.ws7d{word-spacing:22.637062pt;}
.ws20{word-spacing:22.689295pt;}
.ws250{word-spacing:22.690199pt;}
.ws83{word-spacing:22.742007pt;}
.wsd2{word-spacing:22.902320pt;}
.ws1c2{word-spacing:22.954128pt;}
.wsc9{word-spacing:23.036038pt;}
.ws48{word-spacing:23.062101pt;}
.ws20d{word-spacing:23.114972pt;}
.ws190{word-spacing:23.168587pt;}
.ws13f{word-spacing:23.220182pt;}
.ws287{word-spacing:23.326668pt;}
.ws4e{word-spacing:23.433951pt;}
.ws296{word-spacing:23.592723pt;}
.wsed{word-spacing:23.593467pt;}
.ws2c2{word-spacing:23.645859pt;}
.ws264{word-spacing:23.699793pt;}
.ws195{word-spacing:23.910426pt;}
.wsee{word-spacing:23.910479pt;}
.wsef{word-spacing:23.911223pt;}
.ws135{word-spacing:24.017071pt;}
.ws3d{word-spacing:24.018399pt;}
.ws294{word-spacing:24.388973pt;}
.ws28d{word-spacing:24.443545pt;}
.ws288{word-spacing:24.495246pt;}
.ws237{word-spacing:24.654603pt;}
.ws1e2{word-spacing:25.133044pt;}
.wsbd{word-spacing:25.187456pt;}
.wsec{word-spacing:25.293835pt;}
.ws1a5{word-spacing:25.398727pt;}
.ws8f{word-spacing:25.462151pt;}
.ws29d{word-spacing:25.504628pt;}
.ws125{word-spacing:25.878390pt;}
.ws267{word-spacing:25.982803pt;}
.ws9a{word-spacing:26.089077pt;}
.ws2b7{word-spacing:26.514647pt;}
.ws29c{word-spacing:26.514753pt;}
.ws24f{word-spacing:26.620601pt;}
.ws252{word-spacing:26.726874pt;}
.ws225{word-spacing:27.204890pt;}
.ws2c3{word-spacing:27.525197pt;}
.ws262{word-spacing:27.737690pt;}
.ws29a{word-spacing:28.108583pt;}
.ws23b{word-spacing:30.235638pt;}
.ws2aa{word-spacing:31.775269pt;}
.ws230{word-spacing:32.412801pt;}
.ws26d{word-spacing:33.369046pt;}
.wsc7{word-spacing:33.509345pt;}
.ws28f{word-spacing:34.060937pt;}
.wsb1{word-spacing:36.026031pt;}
.ws297{word-spacing:36.823451pt;}
.ws1d8{word-spacing:39.852652pt;}
.ws28b{word-spacing:41.712755pt;}
.ws22e{word-spacing:43.093720pt;}
.ws235{word-spacing:49.894930pt;}
.ws231{word-spacing:49.908369pt;}
.ws233{word-spacing:49.909940pt;}
.ws22f{word-spacing:56.324183pt;}
.wsca{word-spacing:112.759199pt;}
.ws113{word-spacing:120.261693pt;}
.ws33{word-spacing:139.572267pt;}
.ws10b{word-spacing:146.189570pt;}
.ws109{word-spacing:147.083541pt;}
.ws2{word-spacing:167.125474pt;}
.ws107{word-spacing:175.691042pt;}
.ws10a{word-spacing:209.314643pt;}
.ws112{word-spacing:243.539003pt;}
.ws115{word-spacing:247.789669pt;}
.ws111{word-spacing:298.800859pt;}
.ws110{word-spacing:324.306455pt;}
.ws114{word-spacing:371.066979pt;}
.wsc5{word-spacing:865.888240pt;}
._0{margin-left:-10.329168pt;}
._2{margin-left:-7.269893pt;}
._10{margin-left:-6.230080pt;}
._1{margin-left:-4.590141pt;}
._f{margin-left:-3.232001pt;}
._3{margin-left:-2.295430pt;}
._5{margin-left:-1.329263pt;}
._24{width:0.891505pt;}
._1f{width:2.677152pt;}
._25{width:6.001028pt;}
._1c{width:6.909661pt;}
._17{width:9.411817pt;}
._2f{width:10.360612pt;}
._1b{width:11.265820pt;}
._20{width:12.615294pt;}
._11{width:13.770912pt;}
._26{width:14.950461pt;}
._4{width:15.878677pt;}
._c{width:17.006174pt;}
._b{width:18.760260pt;}
._e{width:19.662295pt;}
._6{width:21.044013pt;}
._a{width:22.050063pt;}
._2d{width:23.110243pt;}
._30{width:24.021099pt;}
._8{width:25.028546pt;}
._19{width:26.726077pt;}
._23{width:28.376338pt;}
._15{width:30.091153pt;}
._d{width:31.140925pt;}
._31{width:32.722521pt;}
._22{width:33.849506pt;}
._16{width:35.125261pt;}
._21{width:36.048671pt;}
._1a{width:37.248543pt;}
._9{width:38.962750pt;}
._37{width:40.117432pt;}
._7{width:41.022650pt;}
._1e{width:43.371174pt;}
._1d{width:44.793239pt;}
._2c{width:46.325860pt;}
._18{width:48.726086pt;}
._36{width:49.673253pt;}
._32{width:52.077013pt;}
._2e{width:53.523582pt;}
._38{width:55.104521pt;}
._28{width:63.817504pt;}
._35{width:65.187720pt;}
._34{width:67.798484pt;}
._33{width:102.965898pt;}
._27{width:119.747919pt;}
._13{width:147.012698pt;}
._14{width:152.047616pt;}
._12{width:212.770652pt;}
._2a{width:214.715453pt;}
._29{width:241.963080pt;}
._2b{width:335.355643pt;}
.fs6{font-size:22.705242pt;}
.fs7{font-size:29.615561pt;}
.fsa{font-size:31.882127pt;}
.fs9{font-size:37.195460pt;}
.fsd{font-size:38.554941pt;}
.fs11{font-size:41.337427pt;}
.fsf{font-size:42.125946pt;}
.fs4{font-size:42.509325pt;}
.fs12{font-size:43.134690pt;}
.fs10{font-size:43.957504pt;}
.fse{font-size:43.976759pt;}
.fs2{font-size:47.823191pt;}
.fsc{font-size:50.000953pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.136523pt;}
.fsb{font-size:53.336000pt;}
.fs1{font-size:63.764255pt;}
.fs0{font-size:76.516892pt;}
.fs5{font-size:135.737987pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.879277pt;}
.yd9{bottom:14.445897pt;}
.ycd{bottom:14.446056pt;}
.y36{bottom:22.181109pt;}
.y33{bottom:36.371152pt;}
.yda{bottom:46.825649pt;}
.y5b{bottom:46.968000pt;}
.ycf{bottom:52.849842pt;}
.y35{bottom:55.128090pt;}
.ycc{bottom:55.260096pt;}
.yd4{bottom:66.103305pt;}
.yd8{bottom:66.253687pt;}
.y1c5{bottom:78.644323pt;}
.y1f8{bottom:78.644456pt;}
.y21f{bottom:78.644589pt;}
.y1a7{bottom:78.644856pt;}
.y10a{bottom:78.645043pt;}
.y188{bottom:78.645123pt;}
.y141{bottom:78.645269pt;}
.y92{bottom:78.645283pt;}
.y5a{bottom:78.645523pt;}
.yc8{bottom:78.646083pt;}
.y27d{bottom:78.646189pt;}
.y24e{bottom:78.646323pt;}
.y31{bottom:81.377086pt;}
.yd3{bottom:85.380269pt;}
.yd6{bottom:85.832799pt;}
.y140{bottom:90.602121pt;}
.yd1{bottom:91.254104pt;}
.yd0{bottom:92.007267pt;}
.y91{bottom:94.352841pt;}
.y30{bottom:94.528784pt;}
.y1c4{bottom:94.851933pt;}
.y1f7{bottom:94.852066pt;}
.y21e{bottom:94.852200pt;}
.y1a6{bottom:94.852466pt;}
.yc7{bottom:94.852626pt;}
.y109{bottom:94.852653pt;}
.y187{bottom:94.852733pt;}
.y24d{bottom:94.852866pt;}
.y59{bottom:94.853133pt;}
.yd2{bottom:104.809240pt;}
.yd7{bottom:105.110297pt;}
.y13f{bottom:106.308106pt;}
.y2f{bottom:107.679961pt;}
.y1fc{bottom:109.297065pt;}
.y1c3{bottom:111.057943pt;}
.y1f6{bottom:111.058077pt;}
.y21d{bottom:111.058210pt;}
.yc6{bottom:111.058637pt;}
.y108{bottom:111.058663pt;}
.y186{bottom:111.058743pt;}
.y24c{bottom:111.058877pt;}
.y58{bottom:111.059143pt;}
.y1a5{bottom:112.914836pt;}
.y90{bottom:116.778923pt;}
.y175{bottom:118.643816pt;}
.y2e{bottom:120.831139pt;}
.yce{bottom:124.086204pt;}
.y1c2{bottom:127.265554pt;}
.y1f5{bottom:127.265687pt;}
.y21c{bottom:127.265820pt;}
.yc5{bottom:127.266247pt;}
.y24b{bottom:127.266487pt;}
.y57{bottom:127.266754pt;}
.yd5{bottom:127.701051pt;}
.y13e{bottom:128.048126pt;}
.y1a4{bottom:129.121913pt;}
.ycb{bottom:132.369285pt;}
.y8f{bottom:132.985466pt;}
.y2d{bottom:133.982836pt;}
.y174{bottom:134.849826pt;}
.y107{bottom:135.462550pt;}
.y1f4{bottom:143.471697pt;}
.y21b{bottom:143.471831pt;}
.yc4{bottom:143.472257pt;}
.y56{bottom:143.472764pt;}
.y13d{bottom:144.254136pt;}
.y1c1{bottom:144.975772pt;}
.y1a3{bottom:145.328457pt;}
.ydb{bottom:145.623281pt;}
.y185{bottom:145.717810pt;}
.y2c{bottom:147.134014pt;}
.y8e{bottom:149.192010pt;}
.y173{bottom:151.055836pt;}
.y34{bottom:157.302531pt;}
.y24a{bottom:158.071627pt;}
.y1f3{bottom:159.679308pt;}
.y21a{bottom:159.679441pt;}
.y55{bottom:159.680374pt;}
.y13c{bottom:160.461747pt;}
.yc3{bottom:161.046603pt;}
.y1c0{bottom:161.181783pt;}
.y1a2{bottom:161.535534pt;}
.y184{bottom:161.925420pt;}
.y8d{bottom:165.399620pt;}
.y172{bottom:167.263447pt;}
.y106{bottom:167.269340pt;}
.y27c{bottom:170.945604pt;}
.y249{bottom:174.278171pt;}
.y1f2{bottom:175.885318pt;}
.y219{bottom:175.885451pt;}
.y54{bottom:175.886385pt;}
.y13b{bottom:176.667757pt;}
.yc2{bottom:177.252613pt;}
.y1bf{bottom:177.387793pt;}
.y1a1{bottom:177.742077pt;}
.y183{bottom:178.131430pt;}
.y8c{bottom:181.605630pt;}
.y171{bottom:183.469457pt;}
.y105{bottom:183.476951pt;}
.y27b{bottom:187.151614pt;}
.y2b{bottom:189.741077pt;}
.y248{bottom:190.485781pt;}
.y1f1{bottom:192.091328pt;}
.y218{bottom:192.092528pt;}
.y53{bottom:192.092928pt;}
.y13a{bottom:192.875367pt;}
.yc1{bottom:193.460223pt;}
.y1be{bottom:193.595403pt;}
.y1a0{bottom:193.948088pt;}
.y182{bottom:194.339040pt;}
.y8b{bottom:197.811641pt;}
.y170{bottom:199.677067pt;}
.y27a{bottom:203.359225pt;}
.y2a{bottom:205.947088pt;}
.y247{bottom:206.692325pt;}
.y104{bottom:207.880838pt;}
.y1f0{bottom:208.298938pt;}
.y52{bottom:208.299472pt;}
.y217{bottom:208.299605pt;}
.y139{bottom:209.081378pt;}
.yc0{bottom:209.666233pt;}
.y1bd{bottom:209.801414pt;}
.y19f{bottom:210.155698pt;}
.y181{bottom:210.545051pt;}
.y8a{bottom:214.567145pt;}
.y16f{bottom:215.883078pt;}
.y179{bottom:218.698934pt;}
.y279{bottom:219.565235pt;}
.y1aa{bottom:220.741703pt;}
.y18b{bottom:221.104388pt;}
.y29{bottom:222.154698pt;}
.y51{bottom:224.506015pt;}
.y216{bottom:224.506682pt;}
.y1ef{bottom:224.980972pt;}
.y138{bottom:225.287388pt;}
.y1bc{bottom:226.009024pt;}
.y19e{bottom:226.361708pt;}
.y180{bottom:226.751061pt;}
.y1fb{bottom:229.714552pt;}
.y89{bottom:230.773155pt;}
.y16e{bottom:232.090688pt;}
.y278{bottom:235.772845pt;}
.ybf{bottom:236.442106pt;}
.y246{bottom:237.497465pt;}
.y28{bottom:238.360708pt;}
.y50{bottom:240.713092pt;}
.y215{bottom:240.713759pt;}
.y1ee{bottom:241.188583pt;}
.y137{bottom:241.494998pt;}
.y1bb{bottom:242.215568pt;}
.y17f{bottom:242.958671pt;}
.y19d{bottom:244.425145pt;}
.y103{bottom:245.665527pt;}
.y88{bottom:246.979166pt;}
.y16d{bottom:248.296698pt;}
.y245{bottom:253.705075pt;}
.y27{bottom:254.568318pt;}
.y214{bottom:256.919769pt;}
.y1ed{bottom:257.394593pt;}
.y136{bottom:257.701008pt;}
.y1ba{bottom:258.422111pt;}
.y4f{bottom:258.865067pt;}
.y17e{bottom:259.164682pt;}
.y19c{bottom:260.631688pt;}
.y102{bottom:261.871537pt;}
.y87{bottom:263.186776pt;}
.y277{bottom:263.244486pt;}
.y16c{bottom:264.502708pt;}
.y244{bottom:269.911086pt;}
.y26{bottom:270.774329pt;}
.y1ec{bottom:273.602203pt;}
.y135{bottom:273.908619pt;}
.y1b9{bottom:274.629721pt;}
.y4e{bottom:275.072677pt;}
.y17d{bottom:276.225935pt;}
.y19b{bottom:276.837699pt;}
.y213{bottom:277.316656pt;}
.y101{bottom:278.079147pt;}
.y86{bottom:279.393320pt;}
.y276{bottom:279.452096pt;}
.y16b{bottom:280.710319pt;}
.ybe{bottom:281.091271pt;}
.y243{bottom:286.118696pt;}
.y25{bottom:286.981939pt;}
.y1eb{bottom:289.808747pt;}
.y134{bottom:290.114629pt;}
.y1b8{bottom:290.835732pt;}
.y4d{bottom:291.278687pt;}
.y212{bottom:291.618971pt;}
.y17c{bottom:292.431945pt;}
.y19a{bottom:293.045309pt;}
.y100{bottom:294.285158pt;}
.y85{bottom:295.600930pt;}
.y275{bottom:295.658106pt;}
.y16a{bottom:296.916862pt;}
.ybd{bottom:297.298882pt;}
.y242{bottom:302.324706pt;}
.y24{bottom:303.187949pt;}
.y1ea{bottom:306.015291pt;}
.y133{bottom:306.321706pt;}
.y1b7{bottom:307.043342pt;}
.y4c{bottom:307.486298pt;}
.y211{bottom:307.824981pt;}
.y199{bottom:309.251319pt;}
.y84{bottom:311.807474pt;}
.y274{bottom:311.865717pt;}
.ybc{bottom:313.504892pt;}
.y169{bottom:314.137457pt;}
.y23{bottom:319.393960pt;}
.yfe{bottom:319.471883pt;}
.y1e9{bottom:322.221834pt;}
.y132{bottom:322.527716pt;}
.y1b6{bottom:323.249352pt;}
.y4b{bottom:323.692308pt;}
.y210{bottom:324.032591pt;}
.y198{bottom:325.458929pt;}
.yfb{bottom:326.033625pt;}
.y83{bottom:328.013484pt;}
.y273{bottom:328.072260pt;}
.ybb{bottom:329.712502pt;}
.y168{bottom:330.345067pt;}
.y17b{bottom:331.293755pt;}
.y241{bottom:333.130380pt;}
.yff{bottom:335.144534pt;}
.yfa{bottom:335.145107pt;}
.y22{bottom:335.601570pt;}
.y1e8{bottom:338.428378pt;}
.y131{bottom:338.734260pt;}
.y1b5{bottom:339.456963pt;}
.y4a{bottom:339.899918pt;}
.y20f{bottom:340.238602pt;}
.y197{bottom:341.665473pt;}
.y82{bottom:344.221094pt;}
.yba{bottom:345.918512pt;}
.y167{bottom:346.551077pt;}
.y17a{bottom:347.501365pt;}
.yfd{bottom:347.765431pt;}
.y240{bottom:349.337990pt;}
.y1fa{bottom:350.581528pt;}
.yfc{bottom:351.751044pt;}
.y21{bottom:351.807580pt;}
.y176{bottom:354.319039pt;}
.y1e7{bottom:354.634922pt;}
.y130{bottom:354.941337pt;}
.y272{bottom:355.545500pt;}
.y49{bottom:356.105928pt;}
.y20e{bottom:356.446212pt;}
.y196{bottom:357.871483pt;}
.y81{bottom:360.427104pt;}
.yb9{bottom:362.124523pt;}
.y166{bottom:362.757088pt;}
.y23f{bottom:365.544000pt;}
.y20{bottom:368.015191pt;}
.y1e6{bottom:370.841465pt;}
.y12f{bottom:371.147347pt;}
.y271{bottom:371.751511pt;}
.y48{bottom:372.311939pt;}
.y20d{bottom:372.652222pt;}
.y195{bottom:375.934920pt;}
.y80{bottom:376.634715pt;}
.yf9{bottom:376.799323pt;}
.y1b4{bottom:377.689541pt;}
.yb8{bottom:378.332133pt;}
.y165{bottom:378.964698pt;}
.y23e{bottom:381.750011pt;}
.y1f{bottom:384.221734pt;}
.y1e5{bottom:387.047475pt;}
.y12e{bottom:387.354424pt;}
.y270{bottom:387.959121pt;}
.y47{bottom:388.519549pt;}
.y20c{bottom:388.859833pt;}
.y194{bottom:392.141463pt;}
.y7f{bottom:392.840725pt;}
.yf8{bottom:393.005827pt;}
.y1b3{bottom:393.895551pt;}
.yb7{bottom:394.538143pt;}
.y164{bottom:395.171242pt;}
.y1e{bottom:400.428278pt;}
.y1e4{bottom:403.255086pt;}
.y12d{bottom:403.560434pt;}
.y26f{bottom:404.165131pt;}
.y46{bottom:404.725559pt;}
.y20b{bottom:405.065843pt;}
.y193{bottom:408.348007pt;}
.yf7{bottom:409.212370pt;}
.y7e{bottom:409.594629pt;}
.y1b2{bottom:410.103161pt;}
.y163{bottom:411.378852pt;}
.yb6{bottom:412.112489pt;}
.y23d{bottom:412.557284pt;}
.y1e3{bottom:419.461096pt;}
.y12c{bottom:419.766445pt;}
.y26e{bottom:420.371142pt;}
.y45{bottom:420.933170pt;}
.y20a{bottom:421.271853pt;}
.y192{bottom:424.554551pt;}
.y1d{bottom:424.618554pt;}
.yf6{bottom:425.418914pt;}
.y7d{bottom:425.802240pt;}
.y1b1{bottom:426.309172pt;}
.yb5{bottom:428.318499pt;}
.y162{bottom:428.599446pt;}
.y23c{bottom:428.763294pt;}
.y1e2{bottom:435.668706pt;}
.y12b{bottom:435.974055pt;}
.y44{bottom:437.139180pt;}
.y209{bottom:437.479464pt;}
.y178{bottom:440.547360pt;}
.y191{bottom:440.762161pt;}
.yf5{bottom:441.625991pt;}
.y7c{bottom:442.008783pt;}
.y1b0{bottom:442.516782pt;}
.yb4{bottom:444.526109pt;}
.y161{bottom:444.805990pt;}
.y23b{bottom:444.970905pt;}
.y26d{bottom:447.844915pt;}
.y1a9{bottom:451.289230pt;}
.y18a{bottom:451.651915pt;}
.y1e1{bottom:451.874717pt;}
.y12a{bottom:452.180065pt;}
.y43{bottom:453.345190pt;}
.y208{bottom:453.685474pt;}
.y190{bottom:456.968171pt;}
.yf4{bottom:457.950807pt;}
.y7b{bottom:458.215327pt;}
.y1af{bottom:458.722792pt;}
.yb3{bottom:460.732119pt;}
.y160{bottom:461.012000pt;}
.y23a{bottom:461.176915pt;}
.y1c{bottom:461.782945pt;}
.y26c{bottom:464.050925pt;}
.y129{bottom:468.387676pt;}
.y1e0{bottom:468.558351pt;}
.y207{bottom:469.893084pt;}
.y42{bottom:471.498231pt;}
.y18f{bottom:473.174182pt;}
.yf3{bottom:474.158417pt;}
.y7a{bottom:474.421871pt;}
.yb2{bottom:476.939730pt;}
.y1b{bottom:477.990556pt;}
.y15f{bottom:478.232701pt;}
.y26b{bottom:480.258536pt;}
.y128{bottom:484.593686pt;}
.y1df{bottom:484.764361pt;}
.y206{bottom:486.099094pt;}
.y41{bottom:487.705841pt;}
.yf2{bottom:490.364428pt;}
.y79{bottom:490.628414pt;}
.y1ae{bottom:491.325489pt;}
.y239{bottom:491.982055pt;}
.y1a{bottom:494.196566pt;}
.y15e{bottom:494.440311pt;}
.yb1{bottom:494.514075pt;}
.y26a{bottom:496.464546pt;}
.y127{bottom:500.801296pt;}
.y1de{bottom:500.970371pt;}
.y205{bottom:502.305105pt;}
.y40{bottom:503.911852pt;}
.y18e{bottom:506.482647pt;}
.yf1{bottom:506.572038pt;}
.y78{bottom:506.834958pt;}
.y1ad{bottom:507.532033pt;}
.y238{bottom:508.189666pt;}
.y19{bottom:510.403643pt;}
.y15d{bottom:510.646322pt;}
.yb0{bottom:510.720085pt;}
.y295{bottom:510.925669pt;}
.y126{bottom:517.007306pt;}
.y1dd{bottom:517.177982pt;}
.y204{bottom:518.512715pt;}
.y3f{bottom:520.117862pt;}
.y18d{bottom:522.690257pt;}
.y77{bottom:523.041501pt;}
.y1ac{bottom:523.739110pt;}
.y269{bottom:523.937786pt;}
.y237{bottom:524.396209pt;}
.y18{bottom:526.610720pt;}
.y15c{bottom:526.853932pt;}
.yaf{bottom:526.926096pt;}
.y294{bottom:527.133279pt;}
.yef{bottom:531.877437pt;}
.y1dc{bottom:533.383992pt;}
.y203{bottom:534.718725pt;}
.y3e{bottom:536.325472pt;}
.yec{bottom:538.742926pt;}
.y18c{bottom:538.896267pt;}
.y76{bottom:539.248045pt;}
.y1ab{bottom:539.945653pt;}
.y268{bottom:540.143797pt;}
.y236{bottom:540.602219pt;}
.y125{bottom:541.897618pt;}
.y17{bottom:542.817797pt;}
.y15b{bottom:543.059942pt;}
.yae{bottom:543.133706pt;}
.y293{bottom:543.339290pt;}
.yeb{bottom:547.854582pt;}
.yf0{bottom:547.855302pt;}
.y189{bottom:549.494131pt;}
.y1db{bottom:549.591602pt;}
.y1a8{bottom:550.543516pt;}
.y202{bottom:550.926336pt;}
.y3d{bottom:552.531483pt;}
.y75{bottom:555.454589pt;}
.y267{bottom:556.351407pt;}
.y235{bottom:556.809830pt;}
.y16{bottom:559.024874pt;}
.y15a{bottom:559.266486pt;}
.yad{bottom:559.339716pt;}
.y292{bottom:559.545300pt;}
.yee{bottom:560.474733pt;}
.yed{bottom:564.460346pt;}
.y1da{bottom:565.797612pt;}
.y201{bottom:567.132346pt;}
.y3c{bottom:568.739093pt;}
.y266{bottom:572.557417pt;}
.y124{bottom:573.226251pt;}
.y15{bottom:575.230884pt;}
.y159{bottom:575.474096pt;}
.yac{bottom:575.547327pt;}
.y291{bottom:575.752377pt;}
.y74{bottom:580.671449pt;}
.y1d9{bottom:582.481247pt;}
.y3b{bottom:584.945103pt;}
.y234{bottom:587.614970pt;}
.y265{bottom:588.765027pt;}
.y123{bottom:589.432261pt;}
.yea{bottom:589.868683pt;}
.y14{bottom:591.436894pt;}
.y158{bottom:591.680640pt;}
.yab{bottom:591.753337pt;}
.y1d8{bottom:598.687257pt;}
.y3a{bottom:601.152713pt;}
.y290{bottom:602.585985pt;}
.y200{bottom:603.626304pt;}
.y233{bottom:603.820980pt;}
.y122{bottom:605.639871pt;}
.ye9{bottom:606.076293pt;}
.y13{bottom:607.644505pt;}
.yaa{bottom:607.960947pt;}
.y157{bottom:608.901234pt;}
.y73{bottom:611.055769pt;}
.y1d7{bottom:614.893267pt;}
.y264{bottom:616.237201pt;}
.y28f{bottom:618.793595pt;}
.y1ff{bottom:619.832314pt;}
.y232{bottom:620.028591pt;}
.y121{bottom:621.845881pt;}
.ye8{bottom:622.401109pt;}
.y12{bottom:623.850515pt;}
.ya9{bottom:624.166957pt;}
.y156{bottom:625.108845pt;}
.y72{bottom:627.261779pt;}
.y1d6{bottom:631.100877pt;}
.y263{bottom:632.444811pt;}
.y28e{bottom:634.999606pt;}
.y1fe{bottom:636.039924pt;}
.y231{bottom:636.234601pt;}
.y120{bottom:638.053492pt;}
.ye7{bottom:638.608720pt;}
.y11{bottom:640.058125pt;}
.y155{bottom:641.314855pt;}
.ya8{bottom:641.741303pt;}
.y71{bottom:643.467789pt;}
.y1d5{bottom:647.306888pt;}
.y262{bottom:648.650822pt;}
.y39{bottom:649.759277pt;}
.y28d{bottom:651.207216pt;}
.y1fd{bottom:652.245935pt;}
.y230{bottom:652.442211pt;}
.y11f{bottom:654.259502pt;}
.ye6{bottom:654.814730pt;}
.y10{bottom:656.264136pt;}
.y154{bottom:657.520865pt;}
.ya7{bottom:657.947313pt;}
.y177{bottom:662.395785pt;}
.y1d4{bottom:663.514498pt;}
.y261{bottom:664.858432pt;}
.y38{bottom:665.965287pt;}
.y1f9{bottom:666.623987pt;}
.y22f{bottom:668.648221pt;}
.y70{bottom:668.686783pt;}
.y11e{bottom:670.465512pt;}
.ye5{bottom:671.022340pt;}
.yf{bottom:672.471746pt;}
.y153{bottom:673.728475pt;}
.ya6{bottom:674.154390pt;}
.y28c{bottom:678.040291pt;}
.y32{bottom:680.343339pt;}
.y11d{bottom:687.049141pt;}
.ye4{bottom:687.228350pt;}
.y1d3{bottom:688.596019pt;}
.ye{bottom:688.677756pt;}
.y152{bottom:689.934486pt;}
.ya5{bottom:690.361467pt;}
.y260{bottom:692.330072pt;}
.y28b{bottom:694.247901pt;}
.y22e{bottom:699.453895pt;}
.y11c{bottom:703.255152pt;}
.ye3{bottom:703.434894pt;}
.yd{bottom:704.883766pt;}
.y151{bottom:706.142096pt;}
.ya4{bottom:706.568544pt;}
.y25f{bottom:708.537682pt;}
.y6f{bottom:708.827297pt;}
.y28a{bottom:710.453912pt;}
.y22d{bottom:715.661505pt;}
.y11b{bottom:719.461162pt;}
.ye2{bottom:719.642504pt;}
.yc{bottom:721.091377pt;}
.y150{bottom:722.348106pt;}
.ya3{bottom:722.774554pt;}
.y25e{bottom:724.743693pt;}
.y6e{bottom:725.034907pt;}
.y1d2{bottom:725.652538pt;}
.y289{bottom:726.659922pt;}
.y22c{bottom:731.867516pt;}
.y11a{bottom:735.668772pt;}
.ye1{bottom:735.848515pt;}
.yb{bottom:737.297387pt;}
.ya2{bottom:738.980565pt;}
.y25d{bottom:740.951303pt;}
.y6d{bottom:741.240918pt;}
.y1d1{bottom:741.858548pt;}
.y288{bottom:742.867532pt;}
.y22b{bottom:748.073526pt;}
.ye0{bottom:752.174398pt;}
.ya{bottom:753.504997pt;}
.y14f{bottom:754.111161pt;}
.ya1{bottom:755.188175pt;}
.y25c{bottom:757.157313pt;}
.y6c{bottom:757.446928pt;}
.y1d0{bottom:758.066159pt;}
.y22a{bottom:764.280603pt;}
.ydf{bottom:768.382008pt;}
.y287{bottom:769.701140pt;}
.y9{bottom:769.711541pt;}
.y14e{bottom:770.318771pt;}
.ya0{bottom:771.394185pt;}
.y6b{bottom:773.654538pt;}
.y1cf{bottom:774.272169pt;}
.y119{bottom:781.135045pt;}
.yde{bottom:784.588551pt;}
.y25b{bottom:784.631087pt;}
.y286{bottom:785.908751pt;}
.y8{bottom:785.918085pt;}
.y9f{bottom:788.968530pt;}
.y6a{bottom:789.860548pt;}
.y1ce{bottom:790.479779pt;}
.y229{bottom:795.086276pt;}
.y14d{bottom:796.422743pt;}
.ydd{bottom:800.794562pt;}
.y25a{bottom:800.837097pt;}
.y285{bottom:802.114761pt;}
.y7{bottom:802.125695pt;}
.y118{bottom:805.140179pt;}
.y9e{bottom:805.174541pt;}
.y69{bottom:806.068159pt;}
.y1cd{bottom:806.685790pt;}
.y228{bottom:811.292287pt;}
.y259{bottom:817.043107pt;}
.y117{bottom:817.096510pt;}
.y284{bottom:818.322371pt;}
.y9d{bottom:821.382151pt;}
.y68{bottom:822.822596pt;}
.y1cc{bottom:822.891800pt;}
.y116{bottom:829.051801pt;}
.y14c{bottom:829.679073pt;}
.y6{bottom:831.641704pt;}
.y258{bottom:833.250718pt;}
.y283{bottom:834.528382pt;}
.y9c{bottom:837.588161pt;}
.y67{bottom:839.028607pt;}
.y1cb{bottom:839.099410pt;}
.y115{bottom:841.007092pt;}
.y227{bottom:842.099560pt;}
.ydc{bottom:845.748943pt;}
.y14b{bottom:845.886683pt;}
.y257{bottom:849.456728pt;}
.y114{bottom:852.963943pt;}
.y9b{bottom:853.795772pt;}
.y66{bottom:855.236217pt;}
.y1ca{bottom:855.305954pt;}
.y226{bottom:858.305570pt;}
.y282{bottom:861.363057pt;}
.yca{bottom:862.016423pt;}
.y14a{bottom:862.092693pt;}
.y113{bottom:864.919234pt;}
.y9a{bottom:870.001782pt;}
.y65{bottom:871.442227pt;}
.y1c9{bottom:871.513564pt;}
.y256{bottom:876.930502pt;}
.y281{bottom:877.569067pt;}
.y149{bottom:878.300303pt;}
.y112{bottom:883.542832pt;}
.y225{bottom:884.369407pt;}
.y99{bottom:886.209392pt;}
.y64{bottom:887.648238pt;}
.y1c8{bottom:887.719574pt;}
.y5{bottom:890.357706pt;}
.y255{bottom:893.136512pt;}
.y280{bottom:893.775077pt;}
.y148{bottom:894.506314pt;}
.y98{bottom:903.782138pt;}
.y63{bottom:903.855848pt;}
.y1c7{bottom:904.403209pt;}
.y4{bottom:908.955970pt;}
.y254{bottom:909.344122pt;}
.y27f{bottom:909.982688pt;}
.y147{bottom:910.712324pt;}
.y111{bottom:918.245901pt;}
.y97{bottom:919.989748pt;}
.y62{bottom:920.061858pt;}
.y1c6{bottom:920.609752pt;}
.y253{bottom:925.550133pt;}
.y27e{bottom:926.189231pt;}
.y146{bottom:926.919401pt;}
.y224{bottom:926.959536pt;}
.y3{bottom:927.554233pt;}
.y110{bottom:934.451911pt;}
.y61{bottom:936.816296pt;}
.y252{bottom:941.757743pt;}
.y145{bottom:943.126478pt;}
.y223{bottom:943.165547pt;}
.y96{bottom:946.764553pt;}
.y10f{bottom:950.659521pt;}
.y60{bottom:953.023906pt;}
.y144{bottom:959.333555pt;}
.y222{bottom:959.373157pt;}
.y251{bottom:969.229383pt;}
.y5f{bottom:969.229916pt;}
.y10e{bottom:974.664361pt;}
.y2{bottom:975.340489pt;}
.y143{bottom:975.539565pt;}
.y221{bottom:975.579167pt;}
.y250{bottom:985.436993pt;}
.y95{bottom:985.437287pt;}
.y5e{bottom:985.437527pt;}
.y10d{bottom:987.406665pt;}
.y142{bottom:991.745575pt;}
.y220{bottom:991.786778pt;}
.y1{bottom:996.595151pt;}
.y10c{bottom:999.361956pt;}
.y94{bottom:1001.643297pt;}
.y5d{bottom:1001.643537pt;}
.y5c{bottom:1017.849547pt;}
.y24f{bottom:1017.850614pt;}
.y93{bottom:1017.850907pt;}
.y10b{bottom:1017.985554pt;}
.yc9{bottom:1062.759793pt;}
.h1e{height:0.000000pt;}
.hc{height:15.133132pt;}
.hd{height:20.519766pt;}
.h23{height:25.069740pt;}
.h1d{height:25.813649pt;}
.h10{height:26.589694pt;}
.h17{height:26.770081pt;}
.h11{height:28.396229pt;}
.h2e{height:28.702061pt;}
.h28{height:29.249558pt;}
.h18{height:29.718669pt;}
.h2f{height:29.949965pt;}
.h19{height:30.316032pt;}
.h29{height:30.521275pt;}
.h1a{height:30.922895pt;}
.h6{height:31.945892pt;}
.h16{height:33.325831pt;}
.h9{height:35.452777pt;}
.h30{height:36.451655pt;}
.h14{height:36.695168pt;}
.h7{height:36.770474pt;}
.h1c{height:36.876747pt;}
.h2c{height:37.142430pt;}
.h1f{height:39.852393pt;}
.h24{height:41.592524pt;}
.h25{height:41.594604pt;}
.h4{height:44.124864pt;}
.h8{height:44.315860pt;}
.h21{height:44.351931pt;}
.h20{height:44.354064pt;}
.h12{height:45.093760pt;}
.h13{height:45.095840pt;}
.he{height:47.076606pt;}
.h26{height:50.301124pt;}
.hf{height:50.307418pt;}
.h3{height:52.949689pt;}
.h5{height:53.179388pt;}
.h1b{height:75.795843pt;}
.h22{height:75.802083pt;}
.hb{height:90.469898pt;}
.ha{height:164.581562pt;}
.h15{height:169.116455pt;}
.h2d{height:364.510225pt;}
.h2b{height:480.594695pt;}
.h2a{height:481.642748pt;}
.h27{height:676.819173pt;}
.h2{height:1096.094793pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:309.932829pt;}
.w2{width:309.934163pt;}
.w5{width:309.936829pt;}
.w4{width:334.736736pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:7.823298pt;}
.x30{left:11.701612pt;}
.xd{left:12.935313pt;}
.x18{left:15.896661pt;}
.x19{left:25.458340pt;}
.x37{left:64.458957pt;}
.xc{left:66.351317pt;}
.x35{left:71.100756pt;}
.x7{left:73.306653pt;}
.x32{left:75.679691pt;}
.x17{left:84.465290pt;}
.x13{left:85.793624pt;}
.x11{left:89.246996pt;}
.x36{left:93.232929pt;}
.x2f{left:94.689935pt;}
.x1f{left:96.563496pt;}
.x16{left:106.605063pt;}
.x1{left:117.060387pt;}
.x4{left:121.509009pt;}
.x20{left:129.087815pt;}
.x9{left:130.002634pt;}
.x2a{left:142.591674pt;}
.x25{left:147.989231pt;}
.xe{left:155.815790pt;}
.x12{left:164.464490pt;}
.x8{left:166.371172pt;}
.x34{left:174.653800pt;}
.x5{left:183.158492pt;}
.x2{left:185.015918pt;}
.x6{left:192.473544pt;}
.x21{left:197.345868pt;}
.x1d{left:201.590746pt;}
.xb{left:207.590379pt;}
.x22{left:210.194484pt;}
.x23{left:211.355479pt;}
.x3{left:215.614781pt;}
.x1e{left:221.977498pt;}
.x1c{left:225.261663pt;}
.x24{left:231.596571pt;}
.x27{left:236.178316pt;}
.x28{left:237.167949pt;}
.x26{left:240.477491pt;}
.x1a{left:242.807873pt;}
.x29{left:257.580890pt;}
.x1b{left:281.671150pt;}
.x10{left:379.329333pt;}
.x15{left:394.446667pt;}
.x38{left:404.633032pt;}
.xa{left:413.480674pt;}
.x2e{left:425.967965pt;}
.xf{left:429.421071pt;}
.x2d{left:432.041602pt;}
.x39{left:433.406337pt;}
.x2b{left:439.529976pt;}
.x14{left:476.635245pt;}
.x2c{left:490.449856pt;}
.x33{left:514.463496pt;}
}




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