
    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_6c31bd7621c1d2c0f6db236a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_eb6d0a32b9f3c8097198200e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_7f4f73e904b8008a1de4b888.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_bab1361dc7392787ced46392.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_190fe4e26592a6fe6170bb24.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.078000;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_304460ab1f7d9788d1e080ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ce6b6337dec8605b31ff155.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_567e52b2670e94a3287e7c85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.188000;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_3da256f1558fa7e5861ba1e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.484000;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_8ddf4bf88a95c4696080de20.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_8b6b269af33d93e33d3fb8bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.579000;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_24e31fc5162402b1d076594a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.468000;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_00e31eb5ab919b2c10ed6f3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_008e7a690d9513d3568fe577.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710000;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_d8f31522dc6813518263a728.woff2')format("woff");}.fff{font-family:fff;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0fd4e43ecadb500051d98c87.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d4d98be7be250709753066f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.728000;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_0aad8ffd8f3ddef2d50f19de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.155000;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_077d59dbad9673162acb84e7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.463000;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_1c207615a17da70f2452941f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1849b1428377c28780ebc670.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.970000;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_0383c75a36893d9716a35891.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.461000;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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.020610px;}
.v1{vertical-align:2.721600px;}
.v3{vertical-align:36.057149px;}
.ls22{letter-spacing:-1.140311px;}
.ls27{letter-spacing:-1.134011px;}
.lsd{letter-spacing:-1.127711px;}
.ls1b{letter-spacing:-1.026910px;}
.ls24{letter-spacing:-1.014310px;}
.ls19{letter-spacing:-0.995409px;}
.ls10{letter-spacing:-0.989109px;}
.ls15{letter-spacing:-0.982809px;}
.ls1d{letter-spacing:-0.976509px;}
.ls18{letter-spacing:-0.970209px;}
.ls20{letter-spacing:-0.963909px;}
.ls25{letter-spacing:-0.938709px;}
.ls14{letter-spacing:-0.926109px;}
.lse{letter-spacing:-0.919809px;}
.lsb{letter-spacing:-0.913509px;}
.ls1a{letter-spacing:-0.907209px;}
.lsc{letter-spacing:-0.844208px;}
.ls17{letter-spacing:-0.837908px;}
.ls11{letter-spacing:-0.800108px;}
.ls12{letter-spacing:-0.793808px;}
.lsf{letter-spacing:-0.787508px;}
.ls21{letter-spacing:-0.705607px;}
.ls38{letter-spacing:-0.006300px;}
.ls0{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.022800px;}
.ls59{letter-spacing:0.028500px;}
.ls2{letter-spacing:0.081000px;}
.ls33{letter-spacing:0.094501px;}
.ls45{letter-spacing:0.100801px;}
.ls9{letter-spacing:0.239402px;}
.ls40{letter-spacing:0.245702px;}
.ls5{letter-spacing:0.275400px;}
.ls5d{letter-spacing:0.296400px;}
.ls63{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.371704px;}
.ls4c{letter-spacing:0.441004px;}
.ls41{letter-spacing:0.453604px;}
.ls48{letter-spacing:0.522905px;}
.ls4b{letter-spacing:0.567005px;}
.ls43{letter-spacing:0.573305px;}
.ls4d{letter-spacing:0.585906px;}
.ls4f{letter-spacing:0.686707px;}
.ls47{letter-spacing:0.774907px;}
.ls4a{letter-spacing:0.800108px;}
.lsa{letter-spacing:5.852756px;}
.ls65{letter-spacing:6.024900px;}
.ls3f{letter-spacing:8.297179px;}
.ls2b{letter-spacing:8.977586px;}
.ls3{letter-spacing:9.104400px;}
.ls3d{letter-spacing:10.319498px;}
.ls2c{letter-spacing:10.338398px;}
.ls37{letter-spacing:10.678602px;}
.ls8{letter-spacing:14.262996px;}
.ls2e{letter-spacing:15.796603px;}
.ls69{letter-spacing:18.924000px;}
.ls5a{letter-spacing:18.981000px;}
.ls28{letter-spacing:19.624687px;}
.ls7{letter-spacing:20.001600px;}
.ls2d{letter-spacing:20.007000px;}
.ls62{letter-spacing:20.360400px;}
.ls23{letter-spacing:20.380694px;}
.ls35{letter-spacing:20.657897px;}
.ls5e{letter-spacing:20.679600px;}
.ls57{letter-spacing:20.702400px;}
.ls52{letter-spacing:20.884699px;}
.ls34{letter-spacing:20.985500px;}
.ls36{letter-spacing:20.998100px;}
.ls49{letter-spacing:22.031310px;}
.ls3c{letter-spacing:22.047600px;}
.ls66{letter-spacing:22.064700px;}
.ls53{letter-spacing:22.358913px;}
.ls4{letter-spacing:22.383000px;}
.ls54{letter-spacing:23.039319px;}
.ls1f{letter-spacing:23.051920px;}
.ls1e{letter-spacing:23.140120px;}
.ls29{letter-spacing:23.707126px;}
.ls32{letter-spacing:23.719726px;}
.ls39{letter-spacing:24.059929px;}
.ls13{letter-spacing:24.072529px;}
.ls42{letter-spacing:24.400132px;}
.ls6{letter-spacing:24.424200px;}
.ls3a{letter-spacing:25.420742px;}
.ls3b{letter-spacing:25.760945px;}
.ls26{letter-spacing:26.075948px;}
.ls55{letter-spacing:26.101149px;}
.ls1{letter-spacing:27.728400px;}
.ls3e{letter-spacing:28.129768px;}
.ls56{letter-spacing:28.810174px;}
.ls5c{letter-spacing:28.842000px;}
.ls1c{letter-spacing:29.018076px;}
.ls58{letter-spacing:29.184000px;}
.ls67{letter-spacing:29.862300px;}
.ls31{letter-spacing:30.170987px;}
.ls46{letter-spacing:30.863994px;}
.ls4e{letter-spacing:31.393199px;}
.ls60{letter-spacing:32.923200px;}
.ls64{letter-spacing:34.285500px;}
.ls50{letter-spacing:35.507138px;}
.ls51{letter-spacing:37.208154px;}
.ls68{letter-spacing:40.749300px;}
.ls5f{letter-spacing:41.769600px;}
.ls16{letter-spacing:42.783707px;}
.ls44{letter-spacing:43.791717px;}
.ls30{letter-spacing:51.156487px;}
.ls2a{letter-spacing:52.309398px;}
.ls5b{letter-spacing:53.027100px;}
.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;}
}
.wsc0{word-spacing:-52.372399px;}
.ws5c{word-spacing:-42.846708px;}
.ws188{word-spacing:-31.456200px;}
.ws6f{word-spacing:-29.081077px;}
.wsa1{word-spacing:-26.138949px;}
.ws53{word-spacing:-24.135530px;}
.ws74{word-spacing:-23.203121px;}
.ws78{word-spacing:-23.114920px;}
.ws180{word-spacing:-22.094310px;}
.ws8a{word-spacing:-20.443695px;}
.ws0{word-spacing:-13.986000px;}
.ws17b{word-spacing:-0.516605px;}
.ws107{word-spacing:-0.434704px;}
.ws49{word-spacing:-0.063001px;}
.ws1d6{word-spacing:-0.057000px;}
.wsc{word-spacing:-0.054000px;}
.ws46{word-spacing:-0.044999px;}
.ws41{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.wsc2{word-spacing:0.919809px;}
.ws4f{word-spacing:0.926109px;}
.ws17{word-spacing:8.305200px;}
.ws191{word-spacing:10.155697px;}
.ws19e{word-spacing:10.407699px;}
.ws123{word-spacing:10.413999px;}
.ws18e{word-spacing:10.489600px;}
.ws194{word-spacing:10.502200px;}
.ws195{word-spacing:10.527400px;}
.ws154{word-spacing:10.546300px;}
.ws193{word-spacing:10.577801px;}
.ws190{word-spacing:10.584101px;}
.ws37{word-spacing:10.948663px;}
.ws106{word-spacing:11.100706px;}
.ws3f{word-spacing:13.733804px;}
.ws43{word-spacing:14.191597px;}
.ws40{word-spacing:14.498193px;}
.ws82{word-spacing:14.687804px;}
.wsb8{word-spacing:14.782303px;}
.ws45{word-spacing:14.836302px;}
.ws35{word-spacing:14.858802px;}
.ws44{word-spacing:14.966800px;}
.ws3c{word-spacing:15.047799px;}
.wsff{word-spacing:15.681404px;}
.ws100{word-spacing:15.758203px;}
.ws38{word-spacing:15.863802px;}
.wsfd{word-spacing:15.868602px;}
.ws39{word-spacing:15.873402px;}
.ws3a{word-spacing:15.892601px;}
.ws36{word-spacing:15.921401px;}
.ws3b{word-spacing:15.940601px;}
.ws3d{word-spacing:15.959801px;}
.ws101{word-spacing:15.969400px;}
.ws1bc{word-spacing:16.036600px;}
.wsfc{word-spacing:16.041399px;}
.wsfe{word-spacing:16.046199px;}
.ws3e{word-spacing:16.060599px;}
.ws1be{word-spacing:16.094199px;}
.ws18{word-spacing:17.037000px;}
.ws34{word-spacing:17.544600px;}
.ws21{word-spacing:17.582400px;}
.wsf{word-spacing:17.668800px;}
.wsa{word-spacing:17.712000px;}
.wse{word-spacing:17.717400px;}
.wsd{word-spacing:17.787600px;}
.wsb{word-spacing:17.911800px;}
.ws10{word-spacing:17.971200px;}
.ws15{word-spacing:18.181800px;}
.ws139{word-spacing:18.604800px;}
.ws217{word-spacing:18.610500px;}
.ws265{word-spacing:18.621900px;}
.ws212{word-spacing:18.633300px;}
.ws18c{word-spacing:18.644700px;}
.ws246{word-spacing:18.678900px;}
.ws1ed{word-spacing:18.696000px;}
.ws259{word-spacing:18.701700px;}
.ws26c{word-spacing:18.707400px;}
.ws26d{word-spacing:18.718800px;}
.ws26a{word-spacing:18.724500px;}
.ws1fd{word-spacing:18.735900px;}
.ws1e2{word-spacing:18.747300px;}
.ws251{word-spacing:18.753000px;}
.ws22b{word-spacing:18.758700px;}
.ws233{word-spacing:18.770100px;}
.ws263{word-spacing:18.787200px;}
.ws1f3{word-spacing:18.792900px;}
.ws260{word-spacing:18.798600px;}
.ws1df{word-spacing:18.804300px;}
.ws262{word-spacing:18.815700px;}
.ws1ee{word-spacing:18.821400px;}
.ws253{word-spacing:18.827100px;}
.ws249{word-spacing:18.832800px;}
.ws252{word-spacing:18.838500px;}
.ws25d{word-spacing:18.844200px;}
.ws1e1{word-spacing:18.867000px;}
.ws1b{word-spacing:18.883800px;}
.ws25f{word-spacing:18.889800px;}
.ws25a{word-spacing:18.912600px;}
.ws1d8{word-spacing:18.918300px;}
.ws1d9{word-spacing:18.924000px;}
.ws1e0{word-spacing:18.929700px;}
.ws225{word-spacing:18.935400px;}
.ws250{word-spacing:18.941100px;}
.ws218{word-spacing:18.952500px;}
.ws21a{word-spacing:18.969600px;}
.ws264{word-spacing:18.975300px;}
.ws254{word-spacing:18.981000px;}
.ws1de{word-spacing:18.986700px;}
.ws24e{word-spacing:19.009500px;}
.wsf7{word-spacing:19.038000px;}
.ws267{word-spacing:19.049400px;}
.ws24f{word-spacing:19.055100px;}
.ws1bb{word-spacing:19.072200px;}
.ws269{word-spacing:19.083600px;}
.ws26b{word-spacing:19.095000px;}
.ws270{word-spacing:19.106400px;}
.ws219{word-spacing:19.129200px;}
.ws213{word-spacing:19.134900px;}
.ws207{word-spacing:19.209000px;}
.ws205{word-spacing:19.271700px;}
.ws206{word-spacing:19.305900px;}
.ws1b9{word-spacing:19.391400px;}
.ws204{word-spacing:19.476900px;}
.ws1ba{word-spacing:19.482600px;}
.ws32{word-spacing:19.494000px;}
.ws2b{word-spacing:19.753200px;}
.ws1fe{word-spacing:19.841700px;}
.ws1a{word-spacing:19.845000px;}
.wsf5{word-spacing:19.887300px;}
.ws1ff{word-spacing:19.932900px;}
.ws25e{word-spacing:19.995600px;}
.ws18a{word-spacing:20.058300px;}
.wsf4{word-spacing:20.075400px;}
.wsf6{word-spacing:20.081100px;}
.ws261{word-spacing:20.103900px;}
.ws186{word-spacing:20.116092px;}
.ws1e5{word-spacing:20.149500px;}
.ws1e6{word-spacing:20.229300px;}
.ws211{word-spacing:20.292000px;}
.ws189{word-spacing:20.330294px;}
.ws1fc{word-spacing:20.331900px;}
.ws201{word-spacing:20.349000px;}
.ws19b{word-spacing:20.355494px;}
.ws200{word-spacing:20.394600px;}
.ws202{word-spacing:20.400300px;}
.ws17f{word-spacing:20.418494px;}
.ws1db{word-spacing:20.457300px;}
.ws1fb{word-spacing:20.514300px;}
.ws11{word-spacing:20.514600px;}
.ws22d{word-spacing:20.599800px;}
.ws151{word-spacing:20.613796px;}
.ws1da{word-spacing:20.628300px;}
.ws10a{word-spacing:20.651597px;}
.ws1d4{word-spacing:20.657897px;}
.ws164{word-spacing:20.683097px;}
.ws22e{word-spacing:20.685300px;}
.ws144{word-spacing:20.689397px;}
.ws111{word-spacing:20.695697px;}
.ws113{word-spacing:20.708297px;}
.ws115{word-spacing:20.714597px;}
.ws22f{word-spacing:20.719500px;}
.ws11c{word-spacing:20.733497px;}
.ws1ce{word-spacing:20.758698px;}
.ws16f{word-spacing:20.764998px;}
.ws147{word-spacing:20.790198px;}
.ws15a{word-spacing:20.796498px;}
.ws120{word-spacing:20.802798px;}
.ws103{word-spacing:20.821698px;}
.ws203{word-spacing:20.833500px;}
.ws149{word-spacing:20.840598px;}
.ws11f{word-spacing:20.846899px;}
.ws9{word-spacing:20.853199px;}
.wsbd{word-spacing:20.872099px;}
.ws18b{word-spacing:20.873400px;}
.ws11d{word-spacing:20.890999px;}
.ws8{word-spacing:20.909899px;}
.wsd4{word-spacing:20.935099px;}
.wse1{word-spacing:20.941399px;}
.ws140{word-spacing:20.954000px;}
.ws126{word-spacing:20.966600px;}
.ws20{word-spacing:20.973600px;}
.ws237{word-spacing:20.981700px;}
.ws19a{word-spacing:20.991800px;}
.ws108{word-spacing:20.998100px;}
.ws11e{word-spacing:21.010700px;}
.ws15b{word-spacing:21.017000px;}
.ws14d{word-spacing:21.029600px;}
.ws238{word-spacing:21.033000px;}
.ws10f{word-spacing:21.035900px;}
.ws109{word-spacing:21.042200px;}
.ws196{word-spacing:21.098901px;}
.ws12e{word-spacing:21.130401px;}
.ws129{word-spacing:21.143001px;}
.wsb0{word-spacing:21.161902px;}
.ws1d3{word-spacing:21.174502px;}
.ws7{word-spacing:21.224902px;}
.wsc5{word-spacing:21.275303px;}
.ws6b{word-spacing:21.300503px;}
.ws198{word-spacing:21.319403px;}
.ws1ca{word-spacing:21.338303px;}
.ws168{word-spacing:21.350903px;}
.ws1c0{word-spacing:21.376104px;}
.wsad{word-spacing:21.413904px;}
.ws23{word-spacing:21.508200px;}
.ws54{word-spacing:21.539905px;}
.wsbe{word-spacing:21.590306px;}
.ws1c3{word-spacing:21.615506px;}
.ws23c{word-spacing:21.642900px;}
.ws2c{word-spacing:21.659400px;}
.ws26{word-spacing:21.664800px;}
.ws125{word-spacing:21.722607px;}
.ws23b{word-spacing:21.722700px;}
.ws24{word-spacing:21.724200px;}
.ws162{word-spacing:21.747807px;}
.wsc4{word-spacing:21.766998px;}
.ws25{word-spacing:21.767400px;}
.wsc3{word-spacing:21.779307px;}
.ws23d{word-spacing:21.779700px;}
.ws1b6{word-spacing:21.785607px;}
.wsbc{word-spacing:21.817108px;}
.ws1bf{word-spacing:21.848608px;}
.wsce{word-spacing:21.880108px;}
.ws1d{word-spacing:21.880800px;}
.wsc1{word-spacing:21.892709px;}
.wsa8{word-spacing:21.943109px;}
.ws7d{word-spacing:21.949409px;}
.wse2{word-spacing:21.955709px;}
.ws47{word-spacing:21.998000px;}
.ws25b{word-spacing:22.036200px;}
.ws27{word-spacing:22.075200px;}
.ws1aa{word-spacing:22.081710px;}
.ws122{word-spacing:22.088010px;}
.ws17a{word-spacing:22.106911px;}
.ws136{word-spacing:22.116000px;}
.ws138{word-spacing:22.121700px;}
.ws1a8{word-spacing:22.144711px;}
.ws10b{word-spacing:22.151011px;}
.ws33{word-spacing:22.226400px;}
.ws1a9{word-spacing:22.245512px;}
.ws137{word-spacing:22.269900px;}
.ws175{word-spacing:22.358913px;}
.ws156{word-spacing:22.409313px;}
.wse0{word-spacing:22.453414px;}
.wsd1{word-spacing:22.484914px;}
.ws226{word-spacing:22.492200px;}
.ws1eb{word-spacing:22.497900px;}
.wsa3{word-spacing:22.573115px;}
.ws25c{word-spacing:22.583400px;}
.ws9d{word-spacing:22.585715px;}
.ws227{word-spacing:22.594800px;}
.ws239{word-spacing:22.606200px;}
.ws93{word-spacing:22.610915px;}
.ws1ea{word-spacing:22.617600px;}
.wsb5{word-spacing:22.623515px;}
.wsf0{word-spacing:22.636116px;}
.wsee{word-spacing:22.648716px;}
.wsef{word-spacing:22.655016px;}
.ws89{word-spacing:22.661316px;}
.ws1ae{word-spacing:22.667616px;}
.ws23a{word-spacing:22.668900px;}
.ws179{word-spacing:22.749517px;}
.ws1d7{word-spacing:22.777200px;}
.ws7e{word-spacing:22.862918px;}
.ws1d5{word-spacing:22.874100px;}
.ws22{word-spacing:22.896000px;}
.wsdf{word-spacing:22.907018px;}
.wsb4{word-spacing:22.963719px;}
.ws9e{word-spacing:22.976319px;}
.ws14e{word-spacing:23.007819px;}
.ws9c{word-spacing:23.026719px;}
.ws1b0{word-spacing:23.039319px;}
.ws7b{word-spacing:23.051920px;}
.ws92{word-spacing:23.089720px;}
.ws1c1{word-spacing:23.096020px;}
.ws55{word-spacing:23.102320px;}
.ws1a1{word-spacing:23.108620px;}
.wscd{word-spacing:23.114920px;}
.ws15f{word-spacing:23.140120px;}
.ws24a{word-spacing:23.176200px;}
.ws1a5{word-spacing:23.196821px;}
.ws61{word-spacing:23.215721px;}
.ws7c{word-spacing:23.228321px;}
.ws1af{word-spacing:23.266122px;}
.ws24b{word-spacing:23.278800px;}
.wsde{word-spacing:23.303922px;}
.ws17c{word-spacing:23.316522px;}
.wsdd{word-spacing:23.341722px;}
.ws42{word-spacing:23.364266px;}
.ws1c2{word-spacing:23.417323px;}
.ws1cb{word-spacing:23.429923px;}
.wsa7{word-spacing:23.442523px;}
.wsba{word-spacing:23.448823px;}
.wsd7{word-spacing:23.474024px;}
.ws1b4{word-spacing:23.530724px;}
.ws21b{word-spacing:23.541000px;}
.ws1a2{word-spacing:23.612625px;}
.ws8e{word-spacing:23.631525px;}
.wsc8{word-spacing:23.656725px;}
.ws2f{word-spacing:23.700600px;}
.ws30{word-spacing:23.711400px;}
.ws131{word-spacing:23.757526px;}
.ws1c8{word-spacing:23.770126px;}
.ws11a{word-spacing:23.776426px;}
.ws160{word-spacing:23.814227px;}
.ws21c{word-spacing:23.820300px;}
.ws17e{word-spacing:23.820527px;}
.ws11b{word-spacing:23.845727px;}
.ws65{word-spacing:23.858327px;}
.wscf{word-spacing:23.915028px;}
.ws119{word-spacing:23.927628px;}
.ws12a{word-spacing:23.965428px;}
.ws51{word-spacing:23.971728px;}
.ws7a{word-spacing:23.984328px;}
.ws161{word-spacing:23.996929px;}
.ws17d{word-spacing:24.034729px;}
.ws165{word-spacing:24.059929px;}
.ws67{word-spacing:24.072529px;}
.ws26e{word-spacing:24.076800px;}
.ws19f{word-spacing:24.091429px;}
.ws14f{word-spacing:24.097730px;}
.ws1d0{word-spacing:24.110330px;}
.ws8c{word-spacing:24.160730px;}
.wscc{word-spacing:24.211131px;}
.wse5{word-spacing:24.337132px;}
.wse6{word-spacing:24.362332px;}
.ws1f4{word-spacing:24.367500px;}
.ws4a{word-spacing:24.425333px;}
.ws9a{word-spacing:24.437933px;}
.ws63{word-spacing:24.450533px;}
.ws142{word-spacing:24.482033px;}
.ws1f6{word-spacing:24.487200px;}
.ws1b3{word-spacing:24.519834px;}
.ws79{word-spacing:24.551334px;}
.ws91{word-spacing:24.557634px;}
.ws1f5{word-spacing:24.561300px;}
.ws73{word-spacing:24.576534px;}
.ws9b{word-spacing:24.614334px;}
.ws48{word-spacing:24.652135px;}
.ws14b{word-spacing:24.784436px;}
.ws52{word-spacing:24.790736px;}
.wse3{word-spacing:24.809636px;}
.wsa0{word-spacing:24.841137px;}
.wsf1{word-spacing:24.904137px;}
.ws8d{word-spacing:24.916737px;}
.ws247{word-spacing:24.943200px;}
.ws77{word-spacing:25.017538px;}
.ws248{word-spacing:25.051500px;}
.ws20c{word-spacing:25.062900px;}
.ws20b{word-spacing:25.068600px;}
.ws182{word-spacing:25.093139px;}
.ws1f0{word-spacing:25.188300px;}
.ws12c{word-spacing:25.193940px;}
.ws1d2{word-spacing:25.263241px;}
.ws150{word-spacing:25.269541px;}
.ws16c{word-spacing:25.364042px;}
.wsec{word-spacing:25.414442px;}
.ws81{word-spacing:25.420742px;}
.ws57{word-spacing:25.433342px;}
.ws1ef{word-spacing:25.456200px;}
.ws10d{word-spacing:25.477443px;}
.wseb{word-spacing:25.490043px;}
.ws60{word-spacing:25.515243px;}
.ws12b{word-spacing:25.559343px;}
.ws12d{word-spacing:25.647544px;}
.ws90{word-spacing:25.666444px;}
.ws215{word-spacing:25.667100px;}
.ws216{word-spacing:25.684200px;}
.ws155{word-spacing:25.697945px;}
.ws174{word-spacing:25.735745px;}
.ws1b7{word-spacing:25.798746px;}
.ws1c4{word-spacing:25.811346px;}
.ws1b2{word-spacing:25.830246px;}
.ws1b1{word-spacing:25.842846px;}
.ws4e{word-spacing:25.886947px;}
.ws130{word-spacing:25.905847px;}
.ws50{word-spacing:25.924747px;}
.ws1cc{word-spacing:25.956247px;}
.ws1c{word-spacing:25.957800px;}
.ws22c{word-spacing:25.974900px;}
.ws1dd{word-spacing:25.986300px;}
.wse9{word-spacing:26.038148px;}
.wse8{word-spacing:26.057048px;}
.ws1e{word-spacing:26.087400px;}
.ws148{word-spacing:26.094849px;}
.ws146{word-spacing:26.113749px;}
.ws1dc{word-spacing:26.117400px;}
.ws64{word-spacing:26.126349px;}
.ws13{word-spacing:26.130600px;}
.ws112{word-spacing:26.157849px;}
.ws62{word-spacing:26.170449px;}
.ws1f{word-spacing:26.184600px;}
.ws86{word-spacing:26.214550px;}
.ws56{word-spacing:26.290150px;}
.ws242{word-spacing:26.351100px;}
.ws10e{word-spacing:26.359451px;}
.ws68{word-spacing:26.378351px;}
.ws241{word-spacing:26.379600px;}
.ws163{word-spacing:26.435052px;}
.wse7{word-spacing:26.485452px;}
.wsd3{word-spacing:26.529553px;}
.ws9f{word-spacing:26.617754px;}
.ws172{word-spacing:26.661854px;}
.wscb{word-spacing:26.680754px;}
.ws171{word-spacing:26.838256px;}
.ws1f1{word-spacing:26.915400px;}
.ws176{word-spacing:26.951657px;}
.ws6c{word-spacing:26.970557px;}
.ws1cd{word-spacing:26.976857px;}
.ws4c{word-spacing:26.983157px;}
.wsa2{word-spacing:27.033557px;}
.ws1f2{word-spacing:27.046500px;}
.ws14{word-spacing:27.048600px;}
.ws12{word-spacing:27.097200px;}
.ws94{word-spacing:27.134358px;}
.ws6d{word-spacing:27.184759px;}
.ws1c6{word-spacing:27.209959px;}
.ws7f{word-spacing:27.222559px;}
.ws197{word-spacing:27.304460px;}
.ws6e{word-spacing:27.323360px;}
.ws4b{word-spacing:27.373761px;}
.ws16a{word-spacing:27.398961px;}
.wsa9{word-spacing:27.474562px;}
.ws152{word-spacing:27.550162px;}
.wsd0{word-spacing:27.713964px;}
.wsd6{word-spacing:27.739164px;}
.ws76{word-spacing:27.751764px;}
.ws2{word-spacing:27.778800px;}
.ws102{word-spacing:27.795865px;}
.ws4{word-spacing:27.829200px;}
.ws141{word-spacing:27.833665px;}
.ws16{word-spacing:27.847800px;}
.ws159{word-spacing:27.865165px;}
.ws3{word-spacing:27.888000px;}
.ws1e4{word-spacing:27.901500px;}
.wsd9{word-spacing:27.909266px;}
.ws167{word-spacing:27.947066px;}
.ws6{word-spacing:27.972000px;}
.ws5a{word-spacing:27.991167px;}
.ws166{word-spacing:28.003767px;}
.ws1e3{word-spacing:28.049700px;}
.ws158{word-spacing:28.091968px;}
.ws5{word-spacing:28.173600px;}
.ws16d{word-spacing:28.192768px;}
.ws19c{word-spacing:28.274669px;}
.ws96{word-spacing:28.293569px;}
.ws1c7{word-spacing:28.394370px;}
.ws133{word-spacing:28.419571px;}
.ws84{word-spacing:28.482571px;}
.ws1f9{word-spacing:28.653900px;}
.ws1f7{word-spacing:28.671000px;}
.wsc6{word-spacing:28.671573px;}
.ws1fa{word-spacing:28.688100px;}
.ws1b8{word-spacing:28.715673px;}
.ws10c{word-spacing:28.759774px;}
.ws214{word-spacing:28.779300px;}
.ws1e7{word-spacing:28.807800px;}
.ws1b5{word-spacing:28.854275px;}
.ws1e9{word-spacing:28.881900px;}
.ws169{word-spacing:28.892075px;}
.ws1f8{word-spacing:28.904700px;}
.ws1e8{word-spacing:28.995900px;}
.wsa4{word-spacing:29.087377px;}
.ws72{word-spacing:29.225978px;}
.ws178{word-spacing:29.232278px;}
.ws104{word-spacing:29.288979px;}
.ws181{word-spacing:29.389780px;}
.ws23e{word-spacing:29.400600px;}
.ws23f{word-spacing:29.474700px;}
.ws240{word-spacing:29.674200px;}
.ws95{word-spacing:29.692183px;}
.ws70{word-spacing:29.698483px;}
.ws71{word-spacing:29.704783px;}
.ws1d1{word-spacing:29.799284px;}
.ws153{word-spacing:29.849684px;}
.ws58{word-spacing:29.868584px;}
.ws114{word-spacing:29.887485px;}
.ws15e{word-spacing:29.906385px;}
.ws15c{word-spacing:29.912685px;}
.ws116{word-spacing:29.925285px;}
.ws97{word-spacing:29.944185px;}
.wsea{word-spacing:29.988286px;}
.ws66{word-spacing:30.032386px;}
.ws5e{word-spacing:30.120587px;}
.ws1a7{word-spacing:30.152087px;}
.ws187{word-spacing:30.158387px;}
.ws117{word-spacing:30.189888px;}
.ws118{word-spacing:30.196188px;}
.ws59{word-spacing:30.233988px;}
.ws15d{word-spacing:30.252888px;}
.ws1a6{word-spacing:30.278088px;}
.ws5f{word-spacing:30.397789px;}
.ws16b{word-spacing:30.467090px;}
.ws268{word-spacing:30.540600px;}
.ws258{word-spacing:30.569100px;}
.ws98{word-spacing:30.574191px;}
.ws19d{word-spacing:30.593091px;}
.ws231{word-spacing:30.666000px;}
.ws5d{word-spacing:30.687592px;}
.wsb1{word-spacing:30.700192px;}
.ws12f{word-spacing:30.706492px;}
.wsc7{word-spacing:30.719093px;}
.ws235{word-spacing:30.768600px;}
.ws236{word-spacing:30.837000px;}
.ws232{word-spacing:30.848400px;}
.ws234{word-spacing:30.859800px;}
.ws99{word-spacing:30.863994px;}
.ws105{word-spacing:30.901794px;}
.ws75{word-spacing:30.952195px;}
.ws230{word-spacing:31.025100px;}
.ws80{word-spacing:31.027795px;}
.ws157{word-spacing:31.141197px;}
.wsaa{word-spacing:31.317598px;}
.wsaf{word-spacing:31.374299px;}
.wsab{word-spacing:31.380599px;}
.wsac{word-spacing:31.430999px;}
.ws14a{word-spacing:31.512900px;}
.wsd8{word-spacing:31.701902px;}
.ws85{word-spacing:31.809003px;}
.ws110{word-spacing:31.821603px;}
.wsa5{word-spacing:31.834203px;}
.ws1c9{word-spacing:31.916104px;}
.ws1a4{word-spacing:31.922404px;}
.ws132{word-spacing:31.928704px;}
.ws14c{word-spacing:32.250007px;}
.ws143{word-spacing:32.268907px;}
.ws31{word-spacing:32.308200px;}
.ws170{word-spacing:32.420109px;}
.wsb9{word-spacing:32.527210px;}
.ws134{word-spacing:32.609111px;}
.ws20d{word-spacing:32.775000px;}
.ws20e{word-spacing:32.803500px;}
.ws6a{word-spacing:32.980814px;}
.ws1a3{word-spacing:33.050115px;}
.ws1ac{word-spacing:33.087915px;}
.ws1ab{word-spacing:33.276917px;}
.ws1cf{word-spacing:33.289517px;}
.wsa6{word-spacing:33.447019px;}
.ws8f{word-spacing:33.497419px;}
.ws121{word-spacing:33.862822px;}
.wsed{word-spacing:33.919523px;}
.ws21d{word-spacing:34.040400px;}
.wsb6{word-spacing:34.102225px;}
.ws21e{word-spacing:34.131600px;}
.wsb7{word-spacing:34.177826px;}
.wsd2{word-spacing:34.203026px;}
.ws135{word-spacing:34.329027px;}
.ws24c{word-spacing:34.365300px;}
.ws21f{word-spacing:34.439400px;}
.ws24d{word-spacing:34.633200px;}
.ws229{word-spacing:34.724400px;}
.ws88{word-spacing:34.795231px;}
.ws22a{word-spacing:34.809900px;}
.ws224{word-spacing:34.952400px;}
.ws1c5{word-spacing:34.990533px;}
.ws1ad{word-spacing:35.223635px;}
.wsb2{word-spacing:35.362237px;}
.ws18f{word-spacing:35.387437px;}
.ws210{word-spacing:35.419800px;}
.ws18d{word-spacing:35.582739px;}
.ws20f{word-spacing:35.590800px;}
.ws16e{word-spacing:35.664640px;}
.ws26f{word-spacing:35.927100px;}
.wsf2{word-spacing:35.960742px;}
.wsf3{word-spacing:36.118244px;}
.wsc9{word-spacing:36.156044px;}
.ws8b{word-spacing:36.231645px;}
.ws28{word-spacing:36.282600px;}
.wsb3{word-spacing:36.445847px;}
.ws177{word-spacing:36.905751px;}
.wsd5{word-spacing:37.031753px;}
.ws87{word-spacing:37.088453px;}
.ws192{word-spacing:37.428656px;}
.ws19{word-spacing:37.611000px;}
.wsae{word-spacing:37.907461px;}
.ws2a{word-spacing:38.070000px;}
.ws29{word-spacing:38.080800px;}
.wsca{word-spacing:38.367365px;}
.ws173{word-spacing:38.386266px;}
.ws266{word-spacing:38.668800px;}
.ws1a0{word-spacing:38.827270px;}
.wsbb{word-spacing:39.621077px;}
.ws127{word-spacing:40.175483px;}
.ws243{word-spacing:40.321800px;}
.ws228{word-spacing:40.401600px;}
.ws245{word-spacing:40.435800px;}
.ws244{word-spacing:40.669500px;}
.wsda{word-spacing:41.227593px;}
.ws208{word-spacing:41.798100px;}
.ws209{word-spacing:41.923500px;}
.ws20a{word-spacing:41.952000px;}
.ws69{word-spacing:42.777407px;}
.wse4{word-spacing:42.859308px;}
.ws185{word-spacing:43.079810px;}
.ws184{word-spacing:43.086110px;}
.ws199{word-spacing:43.136511px;}
.ws183{word-spacing:43.287712px;}
.ws145{word-spacing:43.426314px;}
.ws255{word-spacing:44.049600px;}
.ws128{word-spacing:44.106720px;}
.ws5b{word-spacing:44.226421px;}
.ws256{word-spacing:44.824800px;}
.wsdc{word-spacing:47.275650px;}
.wsdb{word-spacing:47.420552px;}
.ws221{word-spacing:50.564700px;}
.ws223{word-spacing:50.627400px;}
.ws222{word-spacing:50.707200px;}
.ws220{word-spacing:50.724300px;}
.ws257{word-spacing:51.835800px;}
.ws1ec{word-spacing:53.152500px;}
.wsbf{word-spacing:54.508119px;}
.ws4d{word-spacing:56.952542px;}
.ws124{word-spacing:57.790450px;}
.ws13f{word-spacing:60.584843px;}
.ws2d{word-spacing:73.229400px;}
.ws2e{word-spacing:73.332000px;}
.ws13e{word-spacing:81.690179px;}
.ws83{word-spacing:137.887861px;}
.ws13c{word-spacing:180.799340px;}
.wsfb{word-spacing:213.995725px;}
.wsfa{word-spacing:235.101061px;}
.ws13d{word-spacing:332.861439px;}
.ws1bd{word-spacing:528.866989px;}
.wsf8{word-spacing:535.769303px;}
.ws13a{word-spacing:573.511231px;}
.wsf9{word-spacing:858.526868px;}
.ws13b{word-spacing:1005.813027px;}
._2a{margin-left:-2204.242847px;}
._26{margin-left:-53.385788px;}
._18{margin-left:-44.780826px;}
._17{margin-left:-43.275112px;}
._3c{margin-left:-31.644281px;}
._1d{margin-left:-29.918985px;}
._23{margin-left:-27.128058px;}
._15{margin-left:-24.953402px;}
._1c{margin-left:-23.203121px;}
._21{margin-left:-21.621350px;}
._20{margin-left:-20.519752px;}
._28{margin-left:-15.038243px;}
._4{margin-left:-6.642000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._12{width:1.177191px;}
._19{width:4.201219px;}
._3a{width:10.029696px;}
._29{width:11.176306px;}
._f{width:12.417499px;}
._11{width:14.968586px;}
._7{width:16.470000px;}
._a{width:17.679600px;}
._3{width:18.792000px;}
._31{width:20.008991px;}
._9{width:21.238200px;}
._c{width:23.203800px;}
._b{width:24.975000px;}
._14{width:26.212059px;}
._5{width:27.345600px;}
._6{width:28.468800px;}
._1e{width:29.831705px;}
._e{width:31.303800px;}
._1b{width:33.247258px;}
._1f{width:35.185835px;}
._22{width:36.489948px;}
._d{width:37.648800px;}
._8{width:38.669400px;}
._3b{width:39.747079px;}
._1a{width:43.079810px;}
._16{width:44.661125px;}
._27{width:48.415961px;}
._25{width:54.810666px;}
._13{width:56.892304px;}
._32{width:59.031562px;}
._38{width:91.007902px;}
._10{width:92.081009px;}
._34{width:102.661117px;}
._35{width:123.694454px;}
._37{width:126.195223px;}
._33{width:132.982338px;}
._24{width:138.288031px;}
._39{width:149.954926px;}
._2f{width:217.451682px;}
._2c{width:255.731203px;}
._2e{width:259.196760px;}
._2b{width:266.324671px;}
._2d{width:277.105336px;}
._30{width:282.956463px;}
._36{width:284.929238px;}
._44{width:483.267559px;}
._45{width:485.307534px;}
._3d{width:504.641692px;}
._3f{width:506.283271px;}
._3e{width:550.389920px;}
._41{width:553.745078px;}
._43{width:701.895226px;}
._40{width:812.653842px;}
._42{width:815.485806px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(133,31,41);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.995200px;}
.fs8{font-size:41.995800px;}
.fsc{font-size:41.999400px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000600px;}
.fsd{font-size:66.000600px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:67.597501px;}
.y50{bottom:71.687315px;}
.y4f{bottom:83.763193px;}
.y1{bottom:84.097501px;}
.yd7{bottom:90.057519px;}
.y246{bottom:90.060825px;}
.y211{bottom:90.061125px;}
.y142{bottom:90.061327px;}
.y80{bottom:90.063674px;}
.y1e3{bottom:90.068387px;}
.y194{bottom:90.071174px;}
.y1bd{bottom:90.074324px;}
.y279{bottom:90.075300px;}
.yaf{bottom:90.077475px;}
.y4e{bottom:95.754021px;}
.y1bf{bottom:104.939025px;}
.y138{bottom:106.319029px;}
.y278{bottom:106.572525px;}
.y245{bottom:107.068200px;}
.y4d{bottom:107.744850px;}
.y210{bottom:108.088800px;}
.ye1{bottom:109.535378px;}
.y141{bottom:109.619863px;}
.y7f{bottom:109.792312px;}
.yae{bottom:109.976214px;}
.yd6{bottom:110.041309px;}
.y1bc{bottom:110.058115px;}
.y1e2{bottom:110.137228px;}
.y193{bottom:110.225066px;}
.y1be{bottom:121.436250px;}
.y277{bottom:123.069750px;}
.y4c{bottom:123.817350px;}
.y244{bottom:124.075575px;}
.y137{bottom:125.792515px;}
.y20f{bottom:126.032400px;}
.y140{bottom:129.093349px;}
.ye0{bottom:129.093915px;}
.y7e{bottom:129.435899px;}
.yad{bottom:129.874954px;}
.y1bb{bottom:129.956854px;}
.yd5{bottom:130.110150px;}
.y1e1{bottom:130.206069px;}
.y192{bottom:130.293908px;}
.y276{bottom:139.566975px;}
.y243{bottom:140.572800px;}
.y20e{bottom:142.615125px;}
.y136{bottom:145.266000px;}
.ydf{bottom:148.567400px;}
.y13f{bottom:148.651885px;}
.y7d{bottom:149.164537px;}
.yac{bottom:149.688642px;}
.y1ba{bottom:149.855594px;}
.y1e0{bottom:150.189860px;}
.y191{bottom:150.447799px;}
.y275{bottom:156.064200px;}
.y242{bottom:157.580175px;}
.yd4{bottom:158.598300px;}
.y20d{bottom:160.558725px;}
.y135{bottom:164.824536px;}
.yde{bottom:168.040886px;}
.y13e{bottom:168.210421px;}
.y7c{bottom:168.808124px;}
.yab{bottom:169.587382px;}
.y1b9{bottom:169.839384px;}
.y1df{bottom:170.258701px;}
.y190{bottom:170.601691px;}
.y274{bottom:172.561425px;}
.y241{bottom:174.077400px;}
.y20c{bottom:178.586400px;}
.y134{bottom:184.298022px;}
.ydd{bottom:187.599422px;}
.y13d{bottom:187.683907px;}
.y7b{bottom:188.536762px;}
.y273{bottom:189.058650px;}
.yaa{bottom:189.401070px;}
.y1b8{bottom:189.738124px;}
.y1de{bottom:190.327542px;}
.y18f{bottom:190.670533px;}
.y240{bottom:191.084775px;}
.y20b{bottom:195.083625px;}
.y133{bottom:203.771507px;}
.y272{bottom:205.555875px;}
.ydc{bottom:207.072907px;}
.y13c{bottom:207.242443px;}
.yd3{bottom:207.338770px;}
.y23f{bottom:208.092150px;}
.y7a{bottom:208.265400px;}
.ya9{bottom:209.299810px;}
.y1b7{bottom:209.636863px;}
.y1dd{bottom:210.311332px;}
.y18e{bottom:210.824424px;}
.y20a{bottom:213.111300px;}
.y41{bottom:218.790900px;}
.y271{bottom:222.053100px;}
.y132{bottom:223.244993px;}
.y23e{bottom:224.589375px;}
.ydb{bottom:226.546393px;}
.y13b{bottom:226.715928px;}
.yd2{bottom:227.322561px;}
.y79{bottom:227.908987px;}
.ya8{bottom:229.198549px;}
.y1b6{bottom:229.535603px;}
.y1dc{bottom:230.380173px;}
.y18d{bottom:230.978316px;}
.y209{bottom:231.054900px;}
.y40{bottom:233.843400px;}
.y270{bottom:238.550325px;}
.y23d{bottom:241.596750px;}
.y23c{bottom:241.607475px;}
.y131{bottom:242.803529px;}
.yda{bottom:246.104929px;}
.y13a{bottom:246.274465px;}
.yd1{bottom:247.391402px;}
.y78{bottom:247.637625px;}
.y3f{bottom:248.810850px;}
.ya7{bottom:249.012238px;}
.y208{bottom:249.082575px;}
.y1b5{bottom:249.519393px;}
.y1db{bottom:250.449015px;}
.y18c{bottom:251.047158px;}
.y26f{bottom:255.388125px;}
.y23b{bottom:258.614850px;}
.y130{bottom:262.277014px;}
.y3e{bottom:263.778300px;}
.yd9{bottom:265.578415px;}
.y207{bottom:265.579800px;}
.y139{bottom:265.747950px;}
.y77{bottom:267.281212px;}
.yd0{bottom:267.375192px;}
.ya6{bottom:268.910978px;}
.y1da{bottom:270.432805px;}
.y18b{bottom:271.201049px;}
.y26e{bottom:271.885350px;}
.y16{bottom:273.712501px;}
.y23a{bottom:275.112075px;}
.y3d{bottom:278.830800px;}
.y12f{bottom:281.750500px;}
.y206{bottom:282.077025px;}
.yd8{bottom:285.051900px;}
.y76{bottom:287.009850px;}
.ycf{bottom:287.358982px;}
.y26d{bottom:288.382575px;}
.y1b4{bottom:288.467939px;}
.ya5{bottom:288.809717px;}
.y1d9{bottom:290.501646px;}
.y18a{bottom:291.269891px;}
.y239{bottom:292.119450px;}
.y3c{bottom:293.798250px;}
.y205{bottom:300.104700px;}
.y12e{bottom:301.309036px;}
.y26c{bottom:304.879800px;}
.y75{bottom:306.653437px;}
.yce{bottom:307.342773px;}
.y1b3{bottom:308.451729px;}
.ya4{bottom:308.623406px;}
.y3b{bottom:308.850750px;}
.y238{bottom:309.126825px;}
.y1d8{bottom:310.570487px;}
.y189{bottom:311.423783px;}
.y204{bottom:318.048300px;}
.y12d{bottom:320.782522px;}
.y16d{bottom:321.443236px;}
.y26b{bottom:321.632100px;}
.y3a{bottom:323.818200px;}
.y237{bottom:325.624050px;}
.y73{bottom:326.382075px;}
.y74{bottom:326.722278px;}
.ycd{bottom:327.411614px;}
.y1b2{bottom:328.350469px;}
.ya3{bottom:328.522145px;}
.y1d7{bottom:330.639328px;}
.y188{bottom:331.577674px;}
.y203{bottom:334.545525px;}
.y16c{bottom:334.879468px;}
.y15{bottom:338.062501px;}
.y26a{bottom:338.129325px;}
.y39{bottom:338.785650px;}
.y12c{bottom:340.256007px;}
.y236{bottom:342.631425px;}
.y10e{bottom:343.893755px;}
.y72{bottom:346.025662px;}
.ycc{bottom:347.395404px;}
.y1b1{bottom:348.249208px;}
.ya2{bottom:348.420885px;}
.y1d6{bottom:350.623119px;}
.y187{bottom:351.646516px;}
.y202{bottom:352.573200px;}
.y16b{bottom:353.247638px;}
.y38{bottom:353.838150px;}
.y269{bottom:354.712050px;}
.y10d{bottom:357.415186px;}
.y235{bottom:359.638800px;}
.y12b{bottom:359.814543px;}
.y71{bottom:365.754300px;}
.y16a{bottom:366.769069px;}
.ycb{bottom:367.379194px;}
.y1b0{bottom:368.232999px;}
.ya1{bottom:368.234574px;}
.y37{bottom:368.805600px;}
.y1d5{bottom:370.691960px;}
.y268{bottom:371.209275px;}
.y10c{bottom:375.783356px;}
.y234{bottom:376.136025px;}
.y201{bottom:379.615650px;}
.y169{bottom:380.290500px;}
.y36{bottom:383.858100px;}
.yca{bottom:387.362985px;}
.y267{bottom:387.706500px;}
.y1af{bottom:388.131738px;}
.ya0{bottom:388.133313px;}
.y10b{bottom:389.304787px;}
.y186{bottom:390.680112px;}
.y1d4{bottom:390.760801px;}
.y233{bottom:393.143400px;}
.y168{bottom:393.811931px;}
.y70{bottom:394.242450px;}
.y12a{bottom:398.763089px;}
.y35{bottom:398.825550px;}
.y10a{bottom:402.741020px;}
.y266{bottom:404.203725px;}
.y14{bottom:405.343500px;}
.y167{bottom:407.248163px;}
.yc9{bottom:407.431826px;}
.y9f{bottom:407.947002px;}
.y1ae{bottom:408.030478px;}
.y232{bottom:409.640625px;}
.y185{bottom:410.153598px;}
.y1d3{bottom:410.744591px;}
.y34{bottom:413.793000px;}
.y109{bottom:416.262450px;}
.y129{bottom:418.321626px;}
.y265{bottom:420.700950px;}
.y166{bottom:420.769594px;}
.y231{bottom:426.648000px;}
.yc8{bottom:427.415616px;}
.y9e{bottom:427.845741px;}
.y1ad{bottom:428.014268px;}
.y200{bottom:428.343557px;}
.y33{bottom:428.845500px;}
.y108{bottom:429.783881px;}
.y184{bottom:430.307490px;}
.y1d2{bottom:430.813432px;}
.y165{bottom:434.291025px;}
.y264{bottom:437.198175px;}
.y128{bottom:437.795111px;}
.y6f{bottom:442.982362px;}
.y107{bottom:443.305312px;}
.y230{bottom:443.655375px;}
.y32{bottom:443.812950px;}
.yc7{bottom:447.399406px;}
.y9d{bottom:447.744481px;}
.y164{bottom:447.812456px;}
.y1ac{bottom:447.913007px;}
.y1ff{bottom:448.582500px;}
.y183{bottom:449.780975px;}
.y1d1{bottom:450.882273px;}
.y263{bottom:453.695400px;}
.y106{bottom:456.741544px;}
.y127{bottom:457.268597px;}
.y31{bottom:458.865450px;}
.y22f{bottom:460.152600px;}
.y163{bottom:461.248688px;}
.y6e{bottom:462.711000px;}
.y13{bottom:466.762501px;}
.yc6{bottom:467.383197px;}
.y9c{bottom:467.558170px;}
.y1ab{bottom:467.811747px;}
.y182{bottom:469.934867px;}
.y105{bottom:470.262975px;}
.y262{bottom:470.447700px;}
.y1d0{bottom:470.866064px;}
.y30{bottom:473.832900px;}
.y162{bottom:474.770119px;}
.y126{bottom:476.742082px;}
.y1fe{bottom:477.070800px;}
.y22e{bottom:477.159975px;}
.y6d{bottom:482.354587px;}
.y104{bottom:483.784406px;}
.y261{bottom:486.944925px;}
.yc5{bottom:487.452038px;}
.y9b{bottom:487.456909px;}
.y1aa{bottom:487.795537px;}
.y161{bottom:488.291550px;}
.y2f{bottom:488.800350px;}
.y181{bottom:489.408353px;}
.y1cf{bottom:490.934905px;}
.y22d{bottom:494.167350px;}
.y125{bottom:496.300618px;}
.y103{bottom:497.305837px;}
.y160{bottom:501.812981px;}
.y6c{bottom:502.083225px;}
.y260{bottom:503.442150px;}
.y2e{bottom:503.852850px;}
.y1a9{bottom:507.269023px;}
.y9a{bottom:507.355649px;}
.yc4{bottom:507.435828px;}
.y102{bottom:510.742069px;}
.y1ce{bottom:511.003746px;}
.y22c{bottom:511.174725px;}
.y15f{bottom:515.249213px;}
.y4b{bottom:515.593650px;}
.y124{bottom:515.774104px;}
.y2d{bottom:518.820300px;}
.y25f{bottom:520.279950px;}
.y6b{bottom:521.726812px;}
.y101{bottom:524.263500px;}
.y1a8{bottom:527.167762px;}
.y99{bottom:527.169337px;}
.yc3{bottom:527.419619px;}
.y22b{bottom:527.671950px;}
.y180{bottom:528.441949px;}
.y15e{bottom:528.770644px;}
.y4a{bottom:529.114800px;}
.y1cd{bottom:530.987536px;}
.y2c{bottom:533.787750px;}
.y12{bottom:534.043500px;}
.y123{bottom:535.247589px;}
.y25e{bottom:536.777175px;}
.y100{bottom:537.784931px;}
.y1fd{bottom:539.753707px;}
.y6a{bottom:541.455449px;}
.y15d{bottom:542.292075px;}
.y22a{bottom:544.679325px;}
.y1a7{bottom:547.066502px;}
.y98{bottom:547.068077px;}
.yc2{bottom:547.403409px;}
.y17f{bottom:548.510791px;}
.y2b{bottom:548.840250px;}
.y1cc{bottom:551.056377px;}
.yff{bottom:551.306362px;}
.y25d{bottom:553.274400px;}
.y122{bottom:554.806125px;}
.y15c{bottom:555.813506px;}
.y1fc{bottom:559.992650px;}
.y49{bottom:560.493807px;}
.y69{bottom:561.184087px;}
.y229{bottom:561.686700px;}
.y2a{bottom:563.807700px;}
.yfe{bottom:564.742594px;}
.y97{bottom:566.881765px;}
.yc1{bottom:566.961945px;}
.y1a6{bottom:567.050292px;}
.y11{bottom:568.393501px;}
.y17e{bottom:568.664682px;}
.y15b{bottom:569.249738px;}
.y25c{bottom:570.026700px;}
.y1cb{bottom:571.125219px;}
.y48{bottom:574.015238px;}
.y121{bottom:574.279611px;}
.y228{bottom:578.183925px;}
.yfd{bottom:578.264025px;}
.y29{bottom:578.860200px;}
.y1fb{bottom:580.316643px;}
.y68{bottom:580.827674px;}
.y15a{bottom:582.771169px;}
.y10{bottom:583.393501px;}
.y25b{bottom:586.523925px;}
.y96{bottom:586.780505px;}
.yc0{bottom:586.945735px;}
.y1a5{bottom:586.949032px;}
.y47{bottom:587.536669px;}
.y17d{bottom:588.818574px;}
.y1ca{bottom:591.109009px;}
.yfc{bottom:591.785456px;}
.y120{bottom:593.753096px;}
.y28{bottom:593.827650px;}
.y227{bottom:595.191300px;}
.y159{bottom:596.292600px;}
.yf{bottom:598.393500px;}
.y1fa{bottom:600.555586px;}
.y67{bottom:600.556312px;}
.y46{bottom:601.058100px;}
.y25a{bottom:603.361725px;}
.yfb{bottom:605.306887px;}
.y95{bottom:606.679244px;}
.y1a4{bottom:606.847771px;}
.ybf{bottom:606.929526px;}
.y17c{bottom:608.292060px;}
.y27{bottom:608.795100px;}
.y158{bottom:609.814031px;}
.y1c9{bottom:611.177850px;}
.y226{bottom:612.198675px;}
.y11f{bottom:613.311633px;}
.y45{bottom:614.494350px;}
.yfa{bottom:618.743119px;}
.y259{bottom:619.858950px;}
.y1f9{bottom:620.029072px;}
.y66{bottom:620.199899px;}
.y157{bottom:623.250263px;}
.y26{bottom:623.847600px;}
.y94{bottom:626.492933px;}
.y1a3{bottom:626.831561px;}
.ybe{bottom:626.913316px;}
.y17b{bottom:628.445952px;}
.y225{bottom:628.705200px;}
.yf9{bottom:632.264550px;}
.y11e{bottom:632.785118px;}
.y258{bottom:636.356175px;}
.y156{bottom:636.771694px;}
.y25{bottom:638.815050px;}
.y1c8{bottom:639.666000px;}
.y65{bottom:639.928537px;}
.y1f8{bottom:640.268014px;}
.y44{bottom:641.536669px;}
.y224{bottom:645.712575px;}
.yf8{bottom:645.785981px;}
.y93{bottom:646.391673px;}
.y1a2{bottom:646.730301px;}
.ybd{bottom:646.982157px;}
.y155{bottom:650.293125px;}
.y11d{bottom:652.258604px;}
.y257{bottom:653.108475px;}
.y24{bottom:653.867550px;}
.y43{bottom:655.058100px;}
.yf7{bottom:659.307412px;}
.y64{bottom:659.572124px;}
.y1f7{bottom:660.506957px;}
.y223{bottom:662.209800px;}
.y154{bottom:663.814556px;}
.y92{bottom:666.290412px;}
.y1a1{bottom:666.629040px;}
.ybc{bottom:666.965948px;}
.y17a{bottom:667.394498px;}
.y42{bottom:668.494350px;}
.y23{bottom:668.834400px;}
.y256{bottom:669.605700px;}
.y11c{bottom:671.732089px;}
.yf6{bottom:672.743644px;}
.y153{bottom:677.250788px;}
.y222{bottom:679.217175px;}
.y63{bottom:679.300762px;}
.ye{bottom:680.180989px;}
.y1f6{bottom:680.745900px;}
.y91{bottom:686.104101px;}
.yf5{bottom:686.265075px;}
.y255{bottom:686.443500px;}
.y1a0{bottom:686.612831px;}
.ybb{bottom:686.949738px;}
.y179{bottom:686.953034px;}
.y1c7{bottom:688.481719px;}
.y152{bottom:690.772219px;}
.y11b{bottom:691.290625px;}
.y221{bottom:695.714400px;}
.y62{bottom:698.944349px;}
.yf4{bottom:699.786506px;}
.y1f5{bottom:700.984843px;}
.y254{bottom:702.940725px;}
.y151{bottom:704.293650px;}
.y90{bottom:706.002840px;}
.y19f{bottom:706.511570px;}
.yba{bottom:706.933528px;}
.y178{bottom:707.021875px;}
.y1c6{bottom:708.465510px;}
.yd{bottom:710.571004px;}
.y11a{bottom:710.764111px;}
.y220{bottom:712.721775px;}
.yf3{bottom:713.307937px;}
.y22{bottom:715.860750px;}
.y150{bottom:717.815081px;}
.y61{bottom:718.672987px;}
.y253{bottom:719.693025px;}
.y1f4{bottom:721.308836px;}
.y8f{bottom:725.816529px;}
.y19e{bottom:726.410310px;}
.y177{bottom:726.495361px;}
.yf2{bottom:726.744169px;}
.yb9{bottom:727.002369px;}
.y1c5{bottom:728.534351px;}
.yc{bottom:728.630994px;}
.y21f{bottom:729.729150px;}
.y119{bottom:730.237596px;}
.y21{bottom:730.913250px;}
.y14f{bottom:731.251313px;}
.y252{bottom:736.190250px;}
.y20{bottom:736.866000px;}
.y60{bottom:738.316574px;}
.yf1{bottom:740.265600px;}
.y1f3{bottom:741.547779px;}
.y14e{bottom:744.772744px;}
.y8e{bottom:745.715269px;}
.y1e{bottom:745.880100px;}
.y19d{bottom:745.968846px;}
.y21e{bottom:746.226375px;}
.y1f{bottom:746.560500px;}
.y176{bottom:746.649253px;}
.yb{bottom:746.691006px;}
.yb8{bottom:746.986160px;}
.y1c4{bottom:748.603192px;}
.y118{bottom:749.796132px;}
.y1d{bottom:751.917900px;}
.y251{bottom:753.028050px;}
.yf0{bottom:753.787031px;}
.y5f{bottom:758.045212px;}
.y14d{bottom:758.294175px;}
.y1f2{bottom:761.786722px;}
.y21d{bottom:763.233750px;}
.ya{bottom:765.215993px;}
.y8d{bottom:765.614008px;}
.y19c{bottom:765.867586px;}
.y175{bottom:766.122738px;}
.yb7{bottom:766.969950px;}
.yef{bottom:767.308462px;}
.y1c3{bottom:768.076677px;}
.y117{bottom:769.269618px;}
.y250{bottom:769.525275px;}
.y14c{bottom:771.815606px;}
.y1b{bottom:772.752600px;}
.y5e{bottom:777.773850px;}
.y1c{bottom:779.725800px;}
.y21c{bottom:780.241125px;}
.yee{bottom:780.744694px;}
.y1f1{bottom:782.025664px;}
.y14b{bottom:785.251838px;}
.y8c{bottom:785.427697px;}
.y174{bottom:785.681274px;}
.y19b{bottom:785.766325px;}
.y24f{bottom:786.022500px;}
.y1c2{bottom:788.145519px;}
.y116{bottom:788.743103px;}
.yed{bottom:794.266125px;}
.yb6{bottom:795.458100px;}
.y21b{bottom:796.738350px;}
.y5d{bottom:797.417437px;}
.y14a{bottom:798.773269px;}
.y1f0{bottom:802.264607px;}
.y24e{bottom:802.519725px;}
.y173{bottom:805.154760px;}
.y8b{bottom:805.326436px;}
.y19a{bottom:805.750115px;}
.yec{bottom:807.787556px;}
.y1c1{bottom:808.129309px;}
.y115{bottom:808.301640px;}
.y1a{bottom:811.698900px;}
.y149{bottom:812.294700px;}
.y21a{bottom:813.745725px;}
.y5c{bottom:817.146075px;}
.y9{bottom:818.115002px;}
.y24d{bottom:819.016950px;}
.y281{bottom:820.887825px;}
.yeb{bottom:821.308987px;}
.y1ef{bottom:822.503550px;}
.y8a{bottom:825.225176px;}
.y172{bottom:825.308652px;}
.y199{bottom:825.648855px;}
.y148{bottom:825.816131px;}
.y114{bottom:827.775125px;}
.y1c0{bottom:828.198150px;}
.y219{bottom:830.753100px;}
.yea{bottom:834.745219px;}
.y24c{bottom:835.514175px;}
.y19{bottom:835.764900px;}
.y5b{bottom:836.789662px;}
.y280{bottom:837.385050px;}
.y147{bottom:839.252363px;}
.y1ee{bottom:842.742493px;}
.yb5{bottom:844.273407px;}
.y89{bottom:845.038865px;}
.y198{bottom:845.547594px;}
.y218{bottom:847.250325px;}
.ye9{bottom:848.266650px;}
.y27f{bottom:851.841675px;}
.y24b{bottom:852.011400px;}
.y146{bottom:852.773794px;}
.y5a{bottom:856.518300px;}
.y18{bottom:859.746900px;}
.ye8{bottom:861.788081px;}
.y1ed{bottom:862.981435px;}
.yb4{bottom:864.257198px;}
.y217{bottom:864.257700px;}
.y88{bottom:864.937604px;}
.y197{bottom:865.531385px;}
.y1e8{bottom:865.870393px;}
.y145{bottom:866.295225px;}
.y113{bottom:866.808722px;}
.y27e{bottom:868.338900px;}
.y24a{bottom:868.508625px;}
.ye7{bottom:875.309512px;}
.y8{bottom:875.779504px;}
.y59{bottom:876.161887px;}
.y216{bottom:881.265075px;}
.y1ec{bottom:883.305429px;}
.y17{bottom:883.728900px;}
.yb3{bottom:884.240988px;}
.y1e7{bottom:884.323762px;}
.y144{bottom:884.323800px;}
.y171{bottom:884.411090px;}
.y27d{bottom:884.836125px;}
.y87{bottom:884.836344px;}
.y249{bottom:885.005850px;}
.y196{bottom:885.430124px;}
.y112{bottom:886.282207px;}
.ye6{bottom:888.745744px;}
.y58{bottom:895.890525px;}
.y1e6{bottom:897.759994px;}
.y143{bottom:897.760032px;}
.y215{bottom:897.762300px;}
.y27c{bottom:901.333350px;}
.y248{bottom:901.503075px;}
.y1eb{bottom:903.544372px;}
.yb2{bottom:904.224778px;}
.y170{bottom:904.479931px;}
.y86{bottom:904.650032px;}
.y195{bottom:905.328864px;}
.y111{bottom:905.755693px;}
.ye5{bottom:906.774319px;}
.y7{bottom:907.279504px;}
.y1e5{bottom:911.281425px;}
.y214{bottom:914.769675px;}
.y57{bottom:915.534112px;}
.y27b{bottom:917.830575px;}
.y247{bottom:918.000300px;}
.ye4{bottom:920.295750px;}
.y1ea{bottom:923.783314px;}
.yb1{bottom:924.293619px;}
.y85{bottom:924.548772px;}
.y16f{bottom:924.633823px;}
.y110{bottom:925.229178px;}
.y1e4{bottom:929.310000px;}
.y213{bottom:931.266900px;}
.y27a{bottom:934.327800px;}
.y56{bottom:935.262750px;}
.y6{bottom:938.779498px;}
.y1e9{bottom:944.022257px;}
.y16e{bottom:944.107308px;}
.yb0{bottom:944.277410px;}
.y84{bottom:944.362460px;}
.y10f{bottom:944.787715px;}
.y212{bottom:948.274275px;}
.ye3{bottom:948.784425px;}
.y54{bottom:955.756784px;}
.y55{bottom:963.750900px;}
.y83{bottom:964.261200px;}
.ye2{bottom:965.281650px;}
.y53{bottom:969.277979px;}
.y5{bottom:970.279498px;}
.y51{bottom:982.714800px;}
.y52{bottom:985.436139px;}
.y81{bottom:1005.165150px;}
.y82{bottom:1007.886489px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.he{height:25.736568px;}
.h16{height:30.029571px;}
.hd{height:30.278972px;}
.h13{height:30.824589px;}
.h18{height:31.409581px;}
.h17{height:32.444567px;}
.h15{height:34.319571px;}
.h4{height:36.773438px;}
.h11{height:37.692000px;}
.h10{height:38.610000px;}
.h14{height:38.934000px;}
.hf{height:40.413600px;}
.h21{height:40.584000px;}
.h1f{height:40.755000px;}
.h23{height:40.806300px;}
.h22{height:40.812000px;}
.h12{height:41.094000px;}
.h25{height:41.148300px;}
.h2{height:41.317383px;}
.h24{height:41.484600px;}
.h26{height:41.826600px;}
.h1e{height:43.974419px;}
.h1b{height:44.856427px;}
.h1c{height:44.995029px;}
.h8{height:45.000000px;}
.h1a{height:45.108430px;}
.h1d{height:45.335232px;}
.hc{height:45.423433px;}
.h7{height:45.966797px;}
.h19{height:47.586433px;}
.h6{height:55.160156px;}
.hb{height:60.564000px;}
.h3{height:68.950195px;}
.h20{height:70.376720px;}
.h5{height:82.740234px;}
.h9{height:1054.488000px;}
.ha{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:89.631450px;}
.xe{left:94.223550px;}
.x18{left:98.731887px;}
.x2c{left:104.683725px;}
.x15{left:107.659800px;}
.x2a{left:110.295647px;}
.x2d{left:115.570725px;}
.x21{left:142.525179px;}
.x4{left:145.650000px;}
.x3c{left:148.309875px;}
.x3d{left:172.036125px;}
.x2f{left:178.672575px;}
.x7{left:181.218900px;}
.x8{left:187.086600px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x31{left:202.220700px;}
.x2{left:233.880006px;}
.x30{left:259.879050px;}
.x38{left:262.601700px;}
.x32{left:266.000850px;}
.x36{left:271.446675px;}
.x33{left:275.780625px;}
.x19{left:291.345196px;}
.x17{left:292.450496px;}
.x1{left:293.590494px;}
.x9{left:300.614100px;}
.xa{left:306.481800px;}
.x1b{left:314.562492px;}
.x1a{left:316.857289px;}
.x34{left:326.463600px;}
.x1c{left:340.074585px;}
.x22{left:349.596750px;}
.x12{left:358.696650px;}
.x25{left:365.844981px;}
.x2b{left:371.195930px;}
.x37{left:380.890950px;}
.xb{left:416.182500px;}
.x3b{left:421.794450px;}
.x26{left:426.648435px;}
.xc{left:428.343150px;}
.x24{left:430.981301px;}
.x28{left:432.770518px;}
.x27{left:437.278211px;}
.x35{left:456.148575px;}
.xf{left:459.042150px;}
.x1d{left:463.809339px;}
.x1e{left:489.321432px;}
.x3a{left:505.048650px;}
.x13{left:507.344700px;}
.x14{left:511.426650px;}
.x16{left:515.168400px;}
.x10{left:526.818900px;}
.x11{left:528.775050px;}
.xd{left:544.677000px;}
.x23{left:552.330297px;}
.x1f{left:560.154581px;}
.x39{left:605.138925px;}
.x2e{left:619.684425px;}
.x29{left:634.476239px;}
.x20{left:639.666063px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.907209pt;}
.v1{vertical-align:2.419200pt;}
.v3{vertical-align:32.050799pt;}
.ls22{letter-spacing:-1.013610pt;}
.ls27{letter-spacing:-1.008010pt;}
.lsd{letter-spacing:-1.002410pt;}
.ls1b{letter-spacing:-0.912809pt;}
.ls24{letter-spacing:-0.901609pt;}
.ls19{letter-spacing:-0.884808pt;}
.ls10{letter-spacing:-0.879208pt;}
.ls15{letter-spacing:-0.873608pt;}
.ls1d{letter-spacing:-0.868008pt;}
.ls18{letter-spacing:-0.862408pt;}
.ls20{letter-spacing:-0.856808pt;}
.ls25{letter-spacing:-0.834408pt;}
.ls14{letter-spacing:-0.823208pt;}
.lse{letter-spacing:-0.817608pt;}
.lsb{letter-spacing:-0.812008pt;}
.ls1a{letter-spacing:-0.806408pt;}
.lsc{letter-spacing:-0.750407pt;}
.ls17{letter-spacing:-0.744807pt;}
.ls11{letter-spacing:-0.711207pt;}
.ls12{letter-spacing:-0.705607pt;}
.lsf{letter-spacing:-0.700007pt;}
.ls21{letter-spacing:-0.627206pt;}
.ls38{letter-spacing:-0.005600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.020267pt;}
.ls59{letter-spacing:0.025333pt;}
.ls2{letter-spacing:0.072000pt;}
.ls33{letter-spacing:0.084001pt;}
.ls45{letter-spacing:0.089601pt;}
.ls9{letter-spacing:0.212802pt;}
.ls40{letter-spacing:0.218402pt;}
.ls5{letter-spacing:0.244800pt;}
.ls5d{letter-spacing:0.263467pt;}
.ls63{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.330403pt;}
.ls4c{letter-spacing:0.392004pt;}
.ls41{letter-spacing:0.403204pt;}
.ls48{letter-spacing:0.464804pt;}
.ls4b{letter-spacing:0.504005pt;}
.ls43{letter-spacing:0.509605pt;}
.ls4d{letter-spacing:0.520805pt;}
.ls4f{letter-spacing:0.610406pt;}
.ls47{letter-spacing:0.688807pt;}
.ls4a{letter-spacing:0.711207pt;}
.lsa{letter-spacing:5.202450pt;}
.ls65{letter-spacing:5.355467pt;}
.ls3f{letter-spacing:7.375270pt;}
.ls2b{letter-spacing:7.980076pt;}
.ls3{letter-spacing:8.092800pt;}
.ls3d{letter-spacing:9.172887pt;}
.ls2c{letter-spacing:9.189688pt;}
.ls37{letter-spacing:9.492090pt;}
.ls8{letter-spacing:12.678219pt;}
.ls2e{letter-spacing:14.041424pt;}
.ls69{letter-spacing:16.821333pt;}
.ls5a{letter-spacing:16.872000pt;}
.ls28{letter-spacing:17.444166pt;}
.ls7{letter-spacing:17.779200pt;}
.ls2d{letter-spacing:17.784000pt;}
.ls62{letter-spacing:18.098133pt;}
.ls23{letter-spacing:18.116173pt;}
.ls35{letter-spacing:18.362575pt;}
.ls5e{letter-spacing:18.381867pt;}
.ls57{letter-spacing:18.402133pt;}
.ls52{letter-spacing:18.564177pt;}
.ls34{letter-spacing:18.653778pt;}
.ls36{letter-spacing:18.664978pt;}
.ls49{letter-spacing:19.583387pt;}
.ls3c{letter-spacing:19.597867pt;}
.ls66{letter-spacing:19.613067pt;}
.ls53{letter-spacing:19.874589pt;}
.ls4{letter-spacing:19.896000pt;}
.ls54{letter-spacing:20.479395pt;}
.ls1f{letter-spacing:20.490595pt;}
.ls1e{letter-spacing:20.568996pt;}
.ls29{letter-spacing:21.073001pt;}
.ls32{letter-spacing:21.084201pt;}
.ls39{letter-spacing:21.386604pt;}
.ls13{letter-spacing:21.397804pt;}
.ls42{letter-spacing:21.689007pt;}
.ls6{letter-spacing:21.710400pt;}
.ls3a{letter-spacing:22.596215pt;}
.ls3b{letter-spacing:22.898618pt;}
.ls26{letter-spacing:23.178621pt;}
.ls55{letter-spacing:23.201021pt;}
.ls1{letter-spacing:24.647467pt;}
.ls3e{letter-spacing:25.004238pt;}
.ls56{letter-spacing:25.609044pt;}
.ls5c{letter-spacing:25.637333pt;}
.ls1c{letter-spacing:25.793846pt;}
.ls58{letter-spacing:25.941333pt;}
.ls67{letter-spacing:26.544267pt;}
.ls31{letter-spacing:26.818655pt;}
.ls46{letter-spacing:27.434661pt;}
.ls4e{letter-spacing:27.905066pt;}
.ls60{letter-spacing:29.265067pt;}
.ls64{letter-spacing:30.476000pt;}
.ls50{letter-spacing:31.561901pt;}
.ls51{letter-spacing:33.073915pt;}
.ls68{letter-spacing:36.221600pt;}
.ls5f{letter-spacing:37.128533pt;}
.ls16{letter-spacing:38.029962pt;}
.ls44{letter-spacing:38.925971pt;}
.ls30{letter-spacing:45.472433pt;}
.ls2a{letter-spacing:46.497243pt;}
.ls5b{letter-spacing:47.135200pt;}
.wsc0{word-spacing:-46.553243pt;}
.ws5c{word-spacing:-38.085963pt;}
.ws188{word-spacing:-27.961066pt;}
.ws6f{word-spacing:-25.849846pt;}
.wsa1{word-spacing:-23.234621pt;}
.ws53{word-spacing:-21.453804pt;}
.ws74{word-spacing:-20.624996pt;}
.ws78{word-spacing:-20.546596pt;}
.ws180{word-spacing:-19.639387pt;}
.ws8a{word-spacing:-18.172173pt;}
.ws0{word-spacing:-12.432000pt;}
.ws17b{word-spacing:-0.459204pt;}
.ws107{word-spacing:-0.386404pt;}
.ws49{word-spacing:-0.056001pt;}
.ws1d6{word-spacing:-0.050667pt;}
.wsc{word-spacing:-0.048000pt;}
.ws46{word-spacing:-0.039999pt;}
.ws41{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.817608pt;}
.ws4f{word-spacing:0.823208pt;}
.ws17{word-spacing:7.382400pt;}
.ws191{word-spacing:9.027286pt;}
.ws19e{word-spacing:9.251288pt;}
.ws123{word-spacing:9.256888pt;}
.ws18e{word-spacing:9.324089pt;}
.ws194{word-spacing:9.335289pt;}
.ws195{word-spacing:9.357689pt;}
.ws154{word-spacing:9.374489pt;}
.ws193{word-spacing:9.402490pt;}
.ws190{word-spacing:9.408090pt;}
.ws37{word-spacing:9.732145pt;}
.ws106{word-spacing:9.867294pt;}
.ws3f{word-spacing:12.207826pt;}
.ws43{word-spacing:12.614753pt;}
.ws40{word-spacing:12.887283pt;}
.ws82{word-spacing:13.055826pt;}
.wsb8{word-spacing:13.139825pt;}
.ws45{word-spacing:13.187824pt;}
.ws35{word-spacing:13.207824pt;}
.ws44{word-spacing:13.303823pt;}
.ws3c{word-spacing:13.375822pt;}
.wsff{word-spacing:13.939026pt;}
.ws100{word-spacing:14.007292pt;}
.ws38{word-spacing:14.101157pt;}
.wsfd{word-spacing:14.105424pt;}
.ws39{word-spacing:14.109690pt;}
.ws3a{word-spacing:14.126757pt;}
.ws36{word-spacing:14.152356pt;}
.ws3b{word-spacing:14.169423pt;}
.ws3d{word-spacing:14.186489pt;}
.ws101{word-spacing:14.195023pt;}
.ws1bc{word-spacing:14.254755pt;}
.wsfc{word-spacing:14.259022pt;}
.wsfe{word-spacing:14.263288pt;}
.ws3e{word-spacing:14.276088pt;}
.ws1be{word-spacing:14.305955pt;}
.ws18{word-spacing:15.144000pt;}
.ws34{word-spacing:15.595200pt;}
.ws21{word-spacing:15.628800pt;}
.wsf{word-spacing:15.705600pt;}
.wsa{word-spacing:15.744000pt;}
.wse{word-spacing:15.748800pt;}
.wsd{word-spacing:15.811200pt;}
.wsb{word-spacing:15.921600pt;}
.ws10{word-spacing:15.974400pt;}
.ws15{word-spacing:16.161600pt;}
.ws139{word-spacing:16.537600pt;}
.ws217{word-spacing:16.542667pt;}
.ws265{word-spacing:16.552800pt;}
.ws212{word-spacing:16.562933pt;}
.ws18c{word-spacing:16.573067pt;}
.ws246{word-spacing:16.603467pt;}
.ws1ed{word-spacing:16.618667pt;}
.ws259{word-spacing:16.623733pt;}
.ws26c{word-spacing:16.628800pt;}
.ws26d{word-spacing:16.638933pt;}
.ws26a{word-spacing:16.644000pt;}
.ws1fd{word-spacing:16.654133pt;}
.ws1e2{word-spacing:16.664267pt;}
.ws251{word-spacing:16.669333pt;}
.ws22b{word-spacing:16.674400pt;}
.ws233{word-spacing:16.684533pt;}
.ws263{word-spacing:16.699733pt;}
.ws1f3{word-spacing:16.704800pt;}
.ws260{word-spacing:16.709867pt;}
.ws1df{word-spacing:16.714933pt;}
.ws262{word-spacing:16.725067pt;}
.ws1ee{word-spacing:16.730133pt;}
.ws253{word-spacing:16.735200pt;}
.ws249{word-spacing:16.740267pt;}
.ws252{word-spacing:16.745333pt;}
.ws25d{word-spacing:16.750400pt;}
.ws1e1{word-spacing:16.770667pt;}
.ws1b{word-spacing:16.785600pt;}
.ws25f{word-spacing:16.790933pt;}
.ws25a{word-spacing:16.811200pt;}
.ws1d8{word-spacing:16.816267pt;}
.ws1d9{word-spacing:16.821333pt;}
.ws1e0{word-spacing:16.826400pt;}
.ws225{word-spacing:16.831467pt;}
.ws250{word-spacing:16.836533pt;}
.ws218{word-spacing:16.846667pt;}
.ws21a{word-spacing:16.861867pt;}
.ws264{word-spacing:16.866933pt;}
.ws254{word-spacing:16.872000pt;}
.ws1de{word-spacing:16.877067pt;}
.ws24e{word-spacing:16.897333pt;}
.wsf7{word-spacing:16.922667pt;}
.ws267{word-spacing:16.932800pt;}
.ws24f{word-spacing:16.937867pt;}
.ws1bb{word-spacing:16.953067pt;}
.ws269{word-spacing:16.963200pt;}
.ws26b{word-spacing:16.973333pt;}
.ws270{word-spacing:16.983467pt;}
.ws219{word-spacing:17.003733pt;}
.ws213{word-spacing:17.008800pt;}
.ws207{word-spacing:17.074667pt;}
.ws205{word-spacing:17.130400pt;}
.ws206{word-spacing:17.160800pt;}
.ws1b9{word-spacing:17.236800pt;}
.ws204{word-spacing:17.312800pt;}
.ws1ba{word-spacing:17.317867pt;}
.ws32{word-spacing:17.328000pt;}
.ws2b{word-spacing:17.558400pt;}
.ws1fe{word-spacing:17.637067pt;}
.ws1a{word-spacing:17.640000pt;}
.wsf5{word-spacing:17.677600pt;}
.ws1ff{word-spacing:17.718133pt;}
.ws25e{word-spacing:17.773867pt;}
.ws18a{word-spacing:17.829600pt;}
.wsf4{word-spacing:17.844800pt;}
.wsf6{word-spacing:17.849867pt;}
.ws261{word-spacing:17.870133pt;}
.ws186{word-spacing:17.880970pt;}
.ws1e5{word-spacing:17.910667pt;}
.ws1e6{word-spacing:17.981600pt;}
.ws211{word-spacing:18.037333pt;}
.ws189{word-spacing:18.071372pt;}
.ws1fc{word-spacing:18.072800pt;}
.ws201{word-spacing:18.088000pt;}
.ws19b{word-spacing:18.093772pt;}
.ws200{word-spacing:18.128533pt;}
.ws202{word-spacing:18.133600pt;}
.ws17f{word-spacing:18.149773pt;}
.ws1db{word-spacing:18.184267pt;}
.ws1fb{word-spacing:18.234933pt;}
.ws11{word-spacing:18.235200pt;}
.ws22d{word-spacing:18.310933pt;}
.ws151{word-spacing:18.323375pt;}
.ws1da{word-spacing:18.336267pt;}
.ws10a{word-spacing:18.356975pt;}
.ws1d4{word-spacing:18.362575pt;}
.ws164{word-spacing:18.384975pt;}
.ws22e{word-spacing:18.386933pt;}
.ws144{word-spacing:18.390575pt;}
.ws111{word-spacing:18.396175pt;}
.ws113{word-spacing:18.407375pt;}
.ws115{word-spacing:18.412975pt;}
.ws22f{word-spacing:18.417333pt;}
.ws11c{word-spacing:18.429776pt;}
.ws1ce{word-spacing:18.452176pt;}
.ws16f{word-spacing:18.457776pt;}
.ws147{word-spacing:18.480176pt;}
.ws15a{word-spacing:18.485776pt;}
.ws120{word-spacing:18.491376pt;}
.ws103{word-spacing:18.508176pt;}
.ws203{word-spacing:18.518667pt;}
.ws149{word-spacing:18.524976pt;}
.ws11f{word-spacing:18.530576pt;}
.ws9{word-spacing:18.536177pt;}
.wsbd{word-spacing:18.552977pt;}
.ws18b{word-spacing:18.554133pt;}
.ws11d{word-spacing:18.569777pt;}
.ws8{word-spacing:18.586577pt;}
.wsd4{word-spacing:18.608977pt;}
.wse1{word-spacing:18.614577pt;}
.ws140{word-spacing:18.625777pt;}
.ws126{word-spacing:18.636977pt;}
.ws20{word-spacing:18.643200pt;}
.ws237{word-spacing:18.650400pt;}
.ws19a{word-spacing:18.659378pt;}
.ws108{word-spacing:18.664978pt;}
.ws11e{word-spacing:18.676178pt;}
.ws15b{word-spacing:18.681778pt;}
.ws14d{word-spacing:18.692978pt;}
.ws238{word-spacing:18.696000pt;}
.ws10f{word-spacing:18.698578pt;}
.ws109{word-spacing:18.704178pt;}
.ws196{word-spacing:18.754579pt;}
.ws12e{word-spacing:18.782579pt;}
.ws129{word-spacing:18.793779pt;}
.wsb0{word-spacing:18.810579pt;}
.ws1d3{word-spacing:18.821779pt;}
.ws7{word-spacing:18.866580pt;}
.wsc5{word-spacing:18.911380pt;}
.ws6b{word-spacing:18.933780pt;}
.ws198{word-spacing:18.950580pt;}
.ws1ca{word-spacing:18.967381pt;}
.ws168{word-spacing:18.978581pt;}
.ws1c0{word-spacing:19.000981pt;}
.wsad{word-spacing:19.034581pt;}
.ws23{word-spacing:19.118400pt;}
.ws54{word-spacing:19.146582pt;}
.wsbe{word-spacing:19.191383pt;}
.ws1c3{word-spacing:19.213783pt;}
.ws23c{word-spacing:19.238133pt;}
.ws2c{word-spacing:19.252800pt;}
.ws26{word-spacing:19.257600pt;}
.ws125{word-spacing:19.308984pt;}
.ws23b{word-spacing:19.309067pt;}
.ws24{word-spacing:19.310400pt;}
.ws162{word-spacing:19.331384pt;}
.wsc4{word-spacing:19.348443pt;}
.ws25{word-spacing:19.348800pt;}
.wsc3{word-spacing:19.359384pt;}
.ws23d{word-spacing:19.359733pt;}
.ws1b6{word-spacing:19.364984pt;}
.wsbc{word-spacing:19.392985pt;}
.ws1bf{word-spacing:19.420985pt;}
.wsce{word-spacing:19.448985pt;}
.ws1d{word-spacing:19.449600pt;}
.wsc1{word-spacing:19.460185pt;}
.wsa8{word-spacing:19.504986pt;}
.ws7d{word-spacing:19.510586pt;}
.wse2{word-spacing:19.516186pt;}
.ws47{word-spacing:19.553778pt;}
.ws25b{word-spacing:19.587733pt;}
.ws27{word-spacing:19.622400pt;}
.ws1aa{word-spacing:19.628187pt;}
.ws122{word-spacing:19.633787pt;}
.ws17a{word-spacing:19.650587pt;}
.ws136{word-spacing:19.658667pt;}
.ws138{word-spacing:19.663733pt;}
.ws1a8{word-spacing:19.684187pt;}
.ws10b{word-spacing:19.689788pt;}
.ws33{word-spacing:19.756800pt;}
.ws1a9{word-spacing:19.773788pt;}
.ws137{word-spacing:19.795467pt;}
.ws175{word-spacing:19.874589pt;}
.ws156{word-spacing:19.919390pt;}
.wse0{word-spacing:19.958590pt;}
.wsd1{word-spacing:19.986590pt;}
.ws226{word-spacing:19.993067pt;}
.ws1eb{word-spacing:19.998133pt;}
.wsa3{word-spacing:20.064991pt;}
.ws25c{word-spacing:20.074133pt;}
.ws9d{word-spacing:20.076191pt;}
.ws227{word-spacing:20.084267pt;}
.ws239{word-spacing:20.094400pt;}
.ws93{word-spacing:20.098591pt;}
.ws1ea{word-spacing:20.104533pt;}
.wsb5{word-spacing:20.109792pt;}
.wsf0{word-spacing:20.120992pt;}
.wsee{word-spacing:20.132192pt;}
.wsef{word-spacing:20.137792pt;}
.ws89{word-spacing:20.143392pt;}
.ws1ae{word-spacing:20.148992pt;}
.ws23a{word-spacing:20.150133pt;}
.ws179{word-spacing:20.221793pt;}
.ws1d7{word-spacing:20.246400pt;}
.ws7e{word-spacing:20.322594pt;}
.ws1d5{word-spacing:20.332533pt;}
.ws22{word-spacing:20.352000pt;}
.wsdf{word-spacing:20.361794pt;}
.wsb4{word-spacing:20.412194pt;}
.ws9e{word-spacing:20.423395pt;}
.ws14e{word-spacing:20.451395pt;}
.ws9c{word-spacing:20.468195pt;}
.ws1b0{word-spacing:20.479395pt;}
.ws7b{word-spacing:20.490595pt;}
.ws92{word-spacing:20.524195pt;}
.ws1c1{word-spacing:20.529796pt;}
.ws55{word-spacing:20.535396pt;}
.ws1a1{word-spacing:20.540996pt;}
.wscd{word-spacing:20.546596pt;}
.ws15f{word-spacing:20.568996pt;}
.ws24a{word-spacing:20.601067pt;}
.ws1a5{word-spacing:20.619396pt;}
.ws61{word-spacing:20.636197pt;}
.ws7c{word-spacing:20.647397pt;}
.ws1af{word-spacing:20.680997pt;}
.ws24b{word-spacing:20.692267pt;}
.wsde{word-spacing:20.714597pt;}
.ws17c{word-spacing:20.725797pt;}
.wsdd{word-spacing:20.748198pt;}
.ws42{word-spacing:20.768237pt;}
.ws1c2{word-spacing:20.815398pt;}
.ws1cb{word-spacing:20.826598pt;}
.wsa7{word-spacing:20.837798pt;}
.wsba{word-spacing:20.843399pt;}
.wsd7{word-spacing:20.865799pt;}
.ws1b4{word-spacing:20.916199pt;}
.ws21b{word-spacing:20.925333pt;}
.ws1a2{word-spacing:20.989000pt;}
.ws8e{word-spacing:21.005800pt;}
.wsc8{word-spacing:21.028200pt;}
.ws2f{word-spacing:21.067200pt;}
.ws30{word-spacing:21.076800pt;}
.ws131{word-spacing:21.117801pt;}
.ws1c8{word-spacing:21.129001pt;}
.ws11a{word-spacing:21.134601pt;}
.ws160{word-spacing:21.168202pt;}
.ws21c{word-spacing:21.173600pt;}
.ws17e{word-spacing:21.173802pt;}
.ws11b{word-spacing:21.196202pt;}
.ws65{word-spacing:21.207402pt;}
.wscf{word-spacing:21.257802pt;}
.ws119{word-spacing:21.269003pt;}
.ws12a{word-spacing:21.302603pt;}
.ws51{word-spacing:21.308203pt;}
.ws7a{word-spacing:21.319403pt;}
.ws161{word-spacing:21.330603pt;}
.ws17d{word-spacing:21.364203pt;}
.ws165{word-spacing:21.386604pt;}
.ws67{word-spacing:21.397804pt;}
.ws26e{word-spacing:21.401600pt;}
.ws19f{word-spacing:21.414604pt;}
.ws14f{word-spacing:21.420204pt;}
.ws1d0{word-spacing:21.431404pt;}
.ws8c{word-spacing:21.476205pt;}
.wscc{word-spacing:21.521005pt;}
.wse5{word-spacing:21.633006pt;}
.wse6{word-spacing:21.655406pt;}
.ws1f4{word-spacing:21.660000pt;}
.ws4a{word-spacing:21.711407pt;}
.ws9a{word-spacing:21.722607pt;}
.ws63{word-spacing:21.733807pt;}
.ws142{word-spacing:21.761807pt;}
.ws1f6{word-spacing:21.766400pt;}
.ws1b3{word-spacing:21.795408pt;}
.ws79{word-spacing:21.823408pt;}
.ws91{word-spacing:21.829008pt;}
.ws1f5{word-spacing:21.832267pt;}
.ws73{word-spacing:21.845808pt;}
.ws9b{word-spacing:21.879408pt;}
.ws48{word-spacing:21.913009pt;}
.ws14b{word-spacing:22.030610pt;}
.ws52{word-spacing:22.036210pt;}
.wse3{word-spacing:22.053010pt;}
.wsa0{word-spacing:22.081010pt;}
.wsf1{word-spacing:22.137011pt;}
.ws8d{word-spacing:22.148211pt;}
.ws247{word-spacing:22.171733pt;}
.ws77{word-spacing:22.237812pt;}
.ws248{word-spacing:22.268000pt;}
.ws20c{word-spacing:22.278133pt;}
.ws20b{word-spacing:22.283200pt;}
.ws182{word-spacing:22.305012pt;}
.ws1f0{word-spacing:22.389600pt;}
.ws12c{word-spacing:22.394613pt;}
.ws1d2{word-spacing:22.456214pt;}
.ws150{word-spacing:22.461814pt;}
.ws16c{word-spacing:22.545815pt;}
.wsec{word-spacing:22.590615pt;}
.ws81{word-spacing:22.596215pt;}
.ws57{word-spacing:22.607415pt;}
.ws1ef{word-spacing:22.627733pt;}
.ws10d{word-spacing:22.646616pt;}
.wseb{word-spacing:22.657816pt;}
.ws60{word-spacing:22.680216pt;}
.ws12b{word-spacing:22.719416pt;}
.ws12d{word-spacing:22.797817pt;}
.ws90{word-spacing:22.814617pt;}
.ws215{word-spacing:22.815200pt;}
.ws216{word-spacing:22.830400pt;}
.ws155{word-spacing:22.842618pt;}
.ws174{word-spacing:22.876218pt;}
.ws1b7{word-spacing:22.932218pt;}
.ws1c4{word-spacing:22.943419pt;}
.ws1b2{word-spacing:22.960219pt;}
.ws1b1{word-spacing:22.971419pt;}
.ws4e{word-spacing:23.010619pt;}
.ws130{word-spacing:23.027419pt;}
.ws50{word-spacing:23.044219pt;}
.ws1cc{word-spacing:23.072220pt;}
.ws1c{word-spacing:23.073600pt;}
.ws22c{word-spacing:23.088800pt;}
.ws1dd{word-spacing:23.098933pt;}
.wse9{word-spacing:23.145020pt;}
.wse8{word-spacing:23.161821pt;}
.ws1e{word-spacing:23.188800pt;}
.ws148{word-spacing:23.195421pt;}
.ws146{word-spacing:23.212221pt;}
.ws1dc{word-spacing:23.215467pt;}
.ws64{word-spacing:23.223421pt;}
.ws13{word-spacing:23.227200pt;}
.ws112{word-spacing:23.251421pt;}
.ws62{word-spacing:23.262622pt;}
.ws1f{word-spacing:23.275200pt;}
.ws86{word-spacing:23.301822pt;}
.ws56{word-spacing:23.369023pt;}
.ws242{word-spacing:23.423200pt;}
.ws10e{word-spacing:23.430623pt;}
.ws68{word-spacing:23.447423pt;}
.ws241{word-spacing:23.448533pt;}
.ws163{word-spacing:23.497824pt;}
.wse7{word-spacing:23.542624pt;}
.wsd3{word-spacing:23.581825pt;}
.ws9f{word-spacing:23.660225pt;}
.ws172{word-spacing:23.699426pt;}
.wscb{word-spacing:23.716226pt;}
.ws171{word-spacing:23.856227pt;}
.ws1f1{word-spacing:23.924800pt;}
.ws176{word-spacing:23.957028pt;}
.ws6c{word-spacing:23.973828pt;}
.ws1cd{word-spacing:23.979428pt;}
.ws4c{word-spacing:23.985028pt;}
.wsa2{word-spacing:24.029829pt;}
.ws1f2{word-spacing:24.041333pt;}
.ws14{word-spacing:24.043200pt;}
.ws12{word-spacing:24.086400pt;}
.ws94{word-spacing:24.119430pt;}
.ws6d{word-spacing:24.164230pt;}
.ws1c6{word-spacing:24.186630pt;}
.ws7f{word-spacing:24.197830pt;}
.ws197{word-spacing:24.270631pt;}
.ws6e{word-spacing:24.287431pt;}
.ws4b{word-spacing:24.332232pt;}
.ws16a{word-spacing:24.354632pt;}
.wsa9{word-spacing:24.421833pt;}
.ws152{word-spacing:24.489033pt;}
.wsd0{word-spacing:24.634635pt;}
.wsd6{word-spacing:24.657035pt;}
.ws76{word-spacing:24.668235pt;}
.ws2{word-spacing:24.692267pt;}
.ws102{word-spacing:24.707435pt;}
.ws4{word-spacing:24.737067pt;}
.ws141{word-spacing:24.741036pt;}
.ws16{word-spacing:24.753600pt;}
.ws159{word-spacing:24.769036pt;}
.ws3{word-spacing:24.789333pt;}
.ws1e4{word-spacing:24.801333pt;}
.wsd9{word-spacing:24.808236pt;}
.ws167{word-spacing:24.841837pt;}
.ws6{word-spacing:24.864000pt;}
.ws5a{word-spacing:24.881037pt;}
.ws166{word-spacing:24.892237pt;}
.ws1e3{word-spacing:24.933067pt;}
.ws158{word-spacing:24.970638pt;}
.ws5{word-spacing:25.043200pt;}
.ws16d{word-spacing:25.060239pt;}
.ws19c{word-spacing:25.133039pt;}
.ws96{word-spacing:25.149840pt;}
.ws1c7{word-spacing:25.239440pt;}
.ws133{word-spacing:25.261841pt;}
.ws84{word-spacing:25.317841pt;}
.ws1f9{word-spacing:25.470133pt;}
.ws1f7{word-spacing:25.485333pt;}
.wsc6{word-spacing:25.485843pt;}
.ws1fa{word-spacing:25.500533pt;}
.ws1b8{word-spacing:25.525043pt;}
.ws10c{word-spacing:25.564243pt;}
.ws214{word-spacing:25.581600pt;}
.ws1e7{word-spacing:25.606933pt;}
.ws1b5{word-spacing:25.648244pt;}
.ws1e9{word-spacing:25.672800pt;}
.ws169{word-spacing:25.681845pt;}
.ws1f8{word-spacing:25.693067pt;}
.ws1e8{word-spacing:25.774133pt;}
.wsa4{word-spacing:25.855446pt;}
.ws72{word-spacing:25.978647pt;}
.ws178{word-spacing:25.984247pt;}
.ws104{word-spacing:26.034648pt;}
.ws181{word-spacing:26.124249pt;}
.ws23e{word-spacing:26.133867pt;}
.ws23f{word-spacing:26.199733pt;}
.ws240{word-spacing:26.377067pt;}
.ws95{word-spacing:26.393051pt;}
.ws70{word-spacing:26.398651pt;}
.ws71{word-spacing:26.404251pt;}
.ws1d1{word-spacing:26.488252pt;}
.ws153{word-spacing:26.533053pt;}
.ws58{word-spacing:26.549853pt;}
.ws114{word-spacing:26.566653pt;}
.ws15e{word-spacing:26.583453pt;}
.ws15c{word-spacing:26.589053pt;}
.ws116{word-spacing:26.600253pt;}
.ws97{word-spacing:26.617053pt;}
.wsea{word-spacing:26.656254pt;}
.ws66{word-spacing:26.695454pt;}
.ws5e{word-spacing:26.773855pt;}
.ws1a7{word-spacing:26.801855pt;}
.ws187{word-spacing:26.807455pt;}
.ws117{word-spacing:26.835456pt;}
.ws118{word-spacing:26.841056pt;}
.ws59{word-spacing:26.874656pt;}
.ws15d{word-spacing:26.891456pt;}
.ws1a6{word-spacing:26.913856pt;}
.ws5f{word-spacing:27.020257pt;}
.ws16b{word-spacing:27.081858pt;}
.ws268{word-spacing:27.147200pt;}
.ws258{word-spacing:27.172533pt;}
.ws98{word-spacing:27.177059pt;}
.ws19d{word-spacing:27.193859pt;}
.ws231{word-spacing:27.258667pt;}
.ws5d{word-spacing:27.277860pt;}
.wsb1{word-spacing:27.289060pt;}
.ws12f{word-spacing:27.294660pt;}
.wsc7{word-spacing:27.305860pt;}
.ws235{word-spacing:27.349867pt;}
.ws236{word-spacing:27.410667pt;}
.ws232{word-spacing:27.420800pt;}
.ws234{word-spacing:27.430933pt;}
.ws99{word-spacing:27.434661pt;}
.ws105{word-spacing:27.468262pt;}
.ws75{word-spacing:27.513062pt;}
.ws230{word-spacing:27.577867pt;}
.ws80{word-spacing:27.580263pt;}
.ws157{word-spacing:27.681064pt;}
.wsaa{word-spacing:27.837865pt;}
.wsaf{word-spacing:27.888266pt;}
.wsab{word-spacing:27.893866pt;}
.wsac{word-spacing:27.938666pt;}
.ws14a{word-spacing:28.011467pt;}
.wsd8{word-spacing:28.179468pt;}
.ws85{word-spacing:28.274669pt;}
.ws110{word-spacing:28.285869pt;}
.wsa5{word-spacing:28.297069pt;}
.ws1c9{word-spacing:28.369870pt;}
.ws1a4{word-spacing:28.375470pt;}
.ws132{word-spacing:28.381070pt;}
.ws14c{word-spacing:28.666673pt;}
.ws143{word-spacing:28.683473pt;}
.ws31{word-spacing:28.718400pt;}
.ws170{word-spacing:28.817874pt;}
.wsb9{word-spacing:28.913075pt;}
.ws134{word-spacing:28.985876pt;}
.ws20d{word-spacing:29.133333pt;}
.ws20e{word-spacing:29.158667pt;}
.ws6a{word-spacing:29.316279pt;}
.ws1a3{word-spacing:29.377880pt;}
.ws1ac{word-spacing:29.411480pt;}
.ws1ab{word-spacing:29.579482pt;}
.ws1cf{word-spacing:29.590682pt;}
.wsa6{word-spacing:29.730683pt;}
.ws8f{word-spacing:29.775484pt;}
.ws121{word-spacing:30.100287pt;}
.wsed{word-spacing:30.150687pt;}
.ws21d{word-spacing:30.258133pt;}
.wsb6{word-spacing:30.313089pt;}
.ws21e{word-spacing:30.339200pt;}
.wsb7{word-spacing:30.380289pt;}
.wsd2{word-spacing:30.402690pt;}
.ws135{word-spacing:30.514691pt;}
.ws24c{word-spacing:30.546933pt;}
.ws21f{word-spacing:30.612800pt;}
.ws24d{word-spacing:30.785067pt;}
.ws229{word-spacing:30.866133pt;}
.ws88{word-spacing:30.929095pt;}
.ws22a{word-spacing:30.942133pt;}
.ws224{word-spacing:31.068800pt;}
.ws1c5{word-spacing:31.102696pt;}
.ws1ad{word-spacing:31.309898pt;}
.wsb2{word-spacing:31.433099pt;}
.ws18f{word-spacing:31.455500pt;}
.ws210{word-spacing:31.484267pt;}
.ws18d{word-spacing:31.629101pt;}
.ws20f{word-spacing:31.636267pt;}
.ws16e{word-spacing:31.701902pt;}
.ws26f{word-spacing:31.935200pt;}
.wsf2{word-spacing:31.965104pt;}
.wsf3{word-spacing:32.105106pt;}
.wsc9{word-spacing:32.138706pt;}
.ws8b{word-spacing:32.205907pt;}
.ws28{word-spacing:32.251200pt;}
.wsb3{word-spacing:32.396309pt;}
.ws177{word-spacing:32.805112pt;}
.wsd5{word-spacing:32.917113pt;}
.ws87{word-spacing:32.967514pt;}
.ws192{word-spacing:33.269917pt;}
.ws19{word-spacing:33.432000pt;}
.wsae{word-spacing:33.695521pt;}
.ws2a{word-spacing:33.840000pt;}
.ws29{word-spacing:33.849600pt;}
.wsca{word-spacing:34.104325pt;}
.ws173{word-spacing:34.121125pt;}
.ws266{word-spacing:34.372267pt;}
.ws1a0{word-spacing:34.513129pt;}
.wsbb{word-spacing:35.218735pt;}
.ws127{word-spacing:35.711540pt;}
.ws243{word-spacing:35.841600pt;}
.ws228{word-spacing:35.912533pt;}
.ws245{word-spacing:35.942933pt;}
.ws244{word-spacing:36.150667pt;}
.wsda{word-spacing:36.646749pt;}
.ws208{word-spacing:37.153867pt;}
.ws209{word-spacing:37.265333pt;}
.ws20a{word-spacing:37.290667pt;}
.ws69{word-spacing:38.024362pt;}
.wse4{word-spacing:38.097163pt;}
.ws185{word-spacing:38.293165pt;}
.ws184{word-spacing:38.298765pt;}
.ws199{word-spacing:38.343565pt;}
.ws183{word-spacing:38.477966pt;}
.ws145{word-spacing:38.601168pt;}
.ws255{word-spacing:39.155200pt;}
.ws128{word-spacing:39.205973pt;}
.ws5b{word-spacing:39.312374pt;}
.ws256{word-spacing:39.844267pt;}
.wsdc{word-spacing:42.022800pt;}
.wsdb{word-spacing:42.151601pt;}
.ws221{word-spacing:44.946400pt;}
.ws223{word-spacing:45.002133pt;}
.ws222{word-spacing:45.073067pt;}
.ws220{word-spacing:45.088267pt;}
.ws257{word-spacing:46.076267pt;}
.ws1ec{word-spacing:47.246667pt;}
.wsbf{word-spacing:48.451661pt;}
.ws4d{word-spacing:50.624482pt;}
.ws124{word-spacing:51.369289pt;}
.ws13f{word-spacing:53.853193pt;}
.ws2d{word-spacing:65.092800pt;}
.ws2e{word-spacing:65.184000pt;}
.ws13e{word-spacing:72.613492pt;}
.ws83{word-spacing:122.566987pt;}
.ws13c{word-spacing:160.710524pt;}
.wsfb{word-spacing:190.218422pt;}
.wsfa{word-spacing:208.978721pt;}
.ws13d{word-spacing:295.876835pt;}
.ws1bd{word-spacing:470.103990pt;}
.wsf8{word-spacing:476.239380pt;}
.ws13a{word-spacing:509.787761pt;}
.wsf9{word-spacing:763.134994pt;}
.ws13b{word-spacing:894.056024pt;}
._2a{margin-left:-1959.326975pt;}
._26{margin-left:-47.454034pt;}
._18{margin-left:-39.805179pt;}
._17{margin-left:-38.466766pt;}
._3c{margin-left:-28.128250pt;}
._1d{margin-left:-26.594653pt;}
._23{margin-left:-24.113830pt;}
._15{margin-left:-22.180802pt;}
._1c{margin-left:-20.624996pt;}
._21{margin-left:-19.218978pt;}
._20{margin-left:-18.239779pt;}
._28{margin-left:-13.367327pt;}
._4{margin-left:-5.904000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._12{width:1.046392pt;}
._19{width:3.734417pt;}
._3a{width:8.915285pt;}
._29{width:9.934495pt;}
._f{width:11.037777pt;}
._11{width:13.305410pt;}
._7{width:14.640000pt;}
._a{width:15.715200pt;}
._3{width:16.704000pt;}
._31{width:17.785769pt;}
._9{width:18.878400pt;}
._c{width:20.625600pt;}
._b{width:22.200000pt;}
._14{width:23.299608pt;}
._5{width:24.307200pt;}
._6{width:25.305600pt;}
._1e{width:26.517071pt;}
._e{width:27.825600pt;}
._1b{width:29.553118pt;}
._1f{width:31.276298pt;}
._22{width:32.435509pt;}
._d{width:33.465600pt;}
._8{width:34.372800pt;}
._3b{width:35.330736pt;}
._1a{width:38.293165pt;}
._16{width:39.698778pt;}
._27{width:43.036410pt;}
._25{width:48.720592pt;}
._13{width:50.570936pt;}
._32{width:52.472500pt;}
._38{width:80.895913pt;}
._10{width:81.849786pt;}
._34{width:91.254326pt;}
._35{width:109.950626pt;}
._37{width:112.173531pt;}
._33{width:118.206522pt;}
._24{width:122.922694pt;}
._39{width:133.293267pt;}
._2f{width:193.290384pt;}
._2c{width:227.316625pt;}
._2e{width:230.397120pt;}
._2b{width:236.733041pt;}
._2d{width:246.315854pt;}
._30{width:251.516856pt;}
._36{width:253.270434pt;}
._44{width:429.571164pt;}
._45{width:431.384474pt;}
._3d{width:448.570393pt;}
._3f{width:450.029575pt;}
._3e{width:489.235484pt;}
._41{width:492.217847pt;}
._43{width:623.906868pt;}
._40{width:722.358970pt;}
._42{width:724.876272pt;}
.fs9{font-size:31.995733pt;}
.fs8{font-size:37.329600pt;}
.fsc{font-size:37.332800pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000533pt;}
.fsd{font-size:58.667200pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.086668pt;}
.y50{bottom:63.722058pt;}
.y4f{bottom:74.456171pt;}
.y1{bottom:74.753335pt;}
.yd7{bottom:80.051128pt;}
.y246{bottom:80.054067pt;}
.y211{bottom:80.054333pt;}
.y142{bottom:80.054513pt;}
.y80{bottom:80.056599pt;}
.y1e3{bottom:80.060789pt;}
.y194{bottom:80.063266pt;}
.y1bd{bottom:80.066066pt;}
.y279{bottom:80.066933pt;}
.yaf{bottom:80.068866pt;}
.y4e{bottom:85.114686pt;}
.y1bf{bottom:93.279133pt;}
.y138{bottom:94.505804pt;}
.y278{bottom:94.731133pt;}
.y245{bottom:95.171733pt;}
.y4d{bottom:95.773200pt;}
.y210{bottom:96.078933pt;}
.ye1{bottom:97.364781pt;}
.y141{bottom:97.439878pt;}
.y7f{bottom:97.593166pt;}
.yae{bottom:97.756635pt;}
.yd6{bottom:97.814497pt;}
.y1bc{bottom:97.829435pt;}
.y1e2{bottom:97.899758pt;}
.y193{bottom:97.977837pt;}
.y1be{bottom:107.943333pt;}
.y277{bottom:109.395333pt;}
.y4c{bottom:110.059867pt;}
.y244{bottom:110.289400pt;}
.y137{bottom:111.815569pt;}
.y20f{bottom:112.028800pt;}
.y140{bottom:114.749643pt;}
.ye0{bottom:114.750146pt;}
.y7e{bottom:115.054133pt;}
.yad{bottom:115.444403pt;}
.y1bb{bottom:115.517204pt;}
.yd5{bottom:115.653467pt;}
.y1e1{bottom:115.738728pt;}
.y192{bottom:115.816807pt;}
.y276{bottom:124.059533pt;}
.y243{bottom:124.953600pt;}
.y20e{bottom:126.769000pt;}
.y136{bottom:129.125333pt;}
.ydf{bottom:132.059911pt;}
.y13f{bottom:132.135009pt;}
.y7d{bottom:132.590700pt;}
.yac{bottom:133.056571pt;}
.y1ba{bottom:133.204972pt;}
.y1e0{bottom:133.502097pt;}
.y191{bottom:133.731377pt;}
.y275{bottom:138.723733pt;}
.y242{bottom:140.071267pt;}
.yd4{bottom:140.976267pt;}
.y20d{bottom:142.718867pt;}
.y135{bottom:146.510699pt;}
.yde{bottom:149.369676pt;}
.y13e{bottom:149.520374pt;}
.y7c{bottom:150.051666pt;}
.yab{bottom:150.744339pt;}
.y1b9{bottom:150.968341pt;}
.y1df{bottom:151.341067pt;}
.y190{bottom:151.645948pt;}
.y274{bottom:153.387933pt;}
.y241{bottom:154.735467pt;}
.y20c{bottom:158.743467pt;}
.y134{bottom:163.820464pt;}
.ydd{bottom:166.755042pt;}
.y13d{bottom:166.830139pt;}
.y7b{bottom:167.588233pt;}
.y273{bottom:168.052133pt;}
.yaa{bottom:168.356507pt;}
.y1b8{bottom:168.656110pt;}
.y1de{bottom:169.180037pt;}
.y18f{bottom:169.484918pt;}
.y240{bottom:169.853133pt;}
.y20b{bottom:173.407667pt;}
.y133{bottom:181.130229pt;}
.y272{bottom:182.716333pt;}
.ydc{bottom:184.064807pt;}
.y13c{bottom:184.215505pt;}
.yd3{bottom:184.301129pt;}
.y23f{bottom:184.970800pt;}
.y7a{bottom:185.124800pt;}
.ya9{bottom:186.044276pt;}
.y1b7{bottom:186.343878pt;}
.y1dd{bottom:186.943406pt;}
.y18e{bottom:187.399488pt;}
.y20a{bottom:189.432267pt;}
.y41{bottom:194.480800pt;}
.y271{bottom:197.380533pt;}
.y132{bottom:198.439994pt;}
.y23e{bottom:199.635000pt;}
.ydb{bottom:201.374571pt;}
.y13b{bottom:201.525270pt;}
.yd2{bottom:202.064498pt;}
.y79{bottom:202.585766pt;}
.ya8{bottom:203.732044pt;}
.y1b6{bottom:204.031647pt;}
.y1dc{bottom:204.782376pt;}
.y18d{bottom:205.314059pt;}
.y209{bottom:205.382133pt;}
.y40{bottom:207.860800pt;}
.y270{bottom:212.044733pt;}
.y23d{bottom:214.752667pt;}
.y23c{bottom:214.762200pt;}
.y131{bottom:215.825359pt;}
.yda{bottom:218.759937pt;}
.y13a{bottom:218.910635pt;}
.yd1{bottom:219.903468pt;}
.y78{bottom:220.122333pt;}
.y3f{bottom:221.165200pt;}
.ya7{bottom:221.344212pt;}
.y208{bottom:221.406733pt;}
.y1b5{bottom:221.795016pt;}
.y1db{bottom:222.621346pt;}
.y18c{bottom:223.153029pt;}
.y26f{bottom:227.011667pt;}
.y23b{bottom:229.879867pt;}
.y130{bottom:233.135124pt;}
.y3e{bottom:234.469600pt;}
.yd9{bottom:236.069702pt;}
.y207{bottom:236.070933pt;}
.y139{bottom:236.220400pt;}
.y77{bottom:237.583300pt;}
.yd0{bottom:237.666837pt;}
.ya6{bottom:239.031980pt;}
.y1da{bottom:240.384715pt;}
.y18b{bottom:241.067600pt;}
.y26e{bottom:241.675867pt;}
.y16{bottom:243.300001pt;}
.y23a{bottom:244.544067pt;}
.y3d{bottom:247.849600pt;}
.y12f{bottom:250.444889pt;}
.y206{bottom:250.735133pt;}
.yd8{bottom:253.379467pt;}
.y76{bottom:255.119867pt;}
.ycf{bottom:255.430207pt;}
.y26d{bottom:256.340067pt;}
.y1b4{bottom:256.415946pt;}
.ya5{bottom:256.719749pt;}
.y1d9{bottom:258.223685pt;}
.y18a{bottom:258.906569pt;}
.y239{bottom:259.661733pt;}
.y3c{bottom:261.154000pt;}
.y205{bottom:266.759733pt;}
.y12e{bottom:267.830254pt;}
.y26c{bottom:271.004267pt;}
.y75{bottom:272.580833pt;}
.yce{bottom:273.193576pt;}
.y1b3{bottom:274.179315pt;}
.ya4{bottom:274.331916pt;}
.y3b{bottom:274.534000pt;}
.y238{bottom:274.779400pt;}
.y1d8{bottom:276.062655pt;}
.y189{bottom:276.821140pt;}
.y204{bottom:282.709600pt;}
.y12d{bottom:285.140019pt;}
.y16d{bottom:285.727321pt;}
.y26b{bottom:285.895200pt;}
.y3a{bottom:287.838400pt;}
.y237{bottom:289.443600pt;}
.y73{bottom:290.117400pt;}
.y74{bottom:290.419803pt;}
.ycd{bottom:291.032546pt;}
.y1b2{bottom:291.867083pt;}
.ya3{bottom:292.019685pt;}
.y1d7{bottom:293.901625pt;}
.y188{bottom:294.735711pt;}
.y203{bottom:297.373800pt;}
.y16c{bottom:297.670638pt;}
.y15{bottom:300.500001pt;}
.y26a{bottom:300.559400pt;}
.y39{bottom:301.142800pt;}
.y12c{bottom:302.449784pt;}
.y236{bottom:304.561267pt;}
.y10e{bottom:305.683338pt;}
.y72{bottom:307.578366pt;}
.ycc{bottom:308.795915pt;}
.y1b1{bottom:309.554852pt;}
.ya2{bottom:309.707453pt;}
.y1d6{bottom:311.664994pt;}
.y187{bottom:312.574681pt;}
.y202{bottom:313.398400pt;}
.y16b{bottom:313.997901pt;}
.y38{bottom:314.522800pt;}
.y269{bottom:315.299600pt;}
.y10d{bottom:317.702388pt;}
.y235{bottom:319.678933pt;}
.y12b{bottom:319.835150pt;}
.y71{bottom:325.114933pt;}
.y16a{bottom:326.016950pt;}
.ycb{bottom:326.559284pt;}
.y1b0{bottom:327.318221pt;}
.ya1{bottom:327.319621pt;}
.y37{bottom:327.827200pt;}
.y1d5{bottom:329.503964pt;}
.y268{bottom:329.963800pt;}
.y10c{bottom:334.029650pt;}
.y234{bottom:334.343133pt;}
.y201{bottom:337.436133pt;}
.y169{bottom:338.036000pt;}
.y36{bottom:341.207200pt;}
.yca{bottom:344.322653pt;}
.y267{bottom:344.628000pt;}
.y1af{bottom:345.005989pt;}
.ya0{bottom:345.007389pt;}
.y10b{bottom:346.048700pt;}
.y186{bottom:347.271211pt;}
.y1d4{bottom:347.342934pt;}
.y233{bottom:349.460800pt;}
.y168{bottom:350.055050pt;}
.y70{bottom:350.437733pt;}
.y12a{bottom:354.456079pt;}
.y35{bottom:354.511600pt;}
.y10a{bottom:357.992017pt;}
.y266{bottom:359.292200pt;}
.y14{bottom:360.305333pt;}
.y167{bottom:361.998367pt;}
.yc9{bottom:362.161623pt;}
.y9f{bottom:362.619557pt;}
.y1ae{bottom:362.693758pt;}
.y232{bottom:364.125000pt;}
.y185{bottom:364.580976pt;}
.y1d3{bottom:365.106303pt;}
.y34{bottom:367.816000pt;}
.y109{bottom:370.011067pt;}
.y129{bottom:371.841445pt;}
.y265{bottom:373.956400pt;}
.y166{bottom:374.017417pt;}
.y231{bottom:379.242667pt;}
.yc8{bottom:379.924992pt;}
.y9e{bottom:380.307326pt;}
.y1ad{bottom:380.457127pt;}
.y200{bottom:380.749829pt;}
.y33{bottom:381.196000pt;}
.y108{bottom:382.030117pt;}
.y184{bottom:382.495546pt;}
.y1d2{bottom:382.945273pt;}
.y165{bottom:386.036467pt;}
.y264{bottom:388.620600pt;}
.y128{bottom:389.151210pt;}
.y6f{bottom:393.762099pt;}
.y107{bottom:394.049167pt;}
.y230{bottom:394.360333pt;}
.y32{bottom:394.500400pt;}
.yc7{bottom:397.688361pt;}
.y9d{bottom:397.995094pt;}
.y164{bottom:398.055517pt;}
.y1ac{bottom:398.144896pt;}
.y1ff{bottom:398.740000pt;}
.y183{bottom:399.805311pt;}
.y1d1{bottom:400.784243pt;}
.y263{bottom:403.284800pt;}
.y106{bottom:405.992484pt;}
.y127{bottom:406.460975pt;}
.y31{bottom:407.880400pt;}
.y22f{bottom:409.024533pt;}
.y163{bottom:409.998834pt;}
.y6e{bottom:411.298666pt;}
.y13{bottom:414.900001pt;}
.yc6{bottom:415.451731pt;}
.y9c{bottom:415.607262pt;}
.y1ab{bottom:415.832664pt;}
.y182{bottom:417.719882pt;}
.y105{bottom:418.011534pt;}
.y262{bottom:418.175733pt;}
.y1d0{bottom:418.547612pt;}
.y30{bottom:421.184800pt;}
.y162{bottom:422.017884pt;}
.y126{bottom:423.770740pt;}
.y1fe{bottom:424.062933pt;}
.y22e{bottom:424.142200pt;}
.y6d{bottom:428.759633pt;}
.y104{bottom:430.030584pt;}
.y261{bottom:432.839933pt;}
.yc5{bottom:433.290700pt;}
.y9b{bottom:433.295030pt;}
.y1aa{bottom:433.596033pt;}
.y161{bottom:434.036933pt;}
.y2f{bottom:434.489200pt;}
.y181{bottom:435.029647pt;}
.y1cf{bottom:436.386582pt;}
.y22d{bottom:439.259867pt;}
.y125{bottom:441.156105pt;}
.y103{bottom:442.049633pt;}
.y160{bottom:446.055983pt;}
.y6c{bottom:446.296200pt;}
.y260{bottom:447.504133pt;}
.y2e{bottom:447.869200pt;}
.y1a9{bottom:450.905798pt;}
.y9a{bottom:450.982799pt;}
.yc4{bottom:451.054070pt;}
.y102{bottom:453.992951pt;}
.y1ce{bottom:454.225552pt;}
.y22c{bottom:454.377533pt;}
.y15f{bottom:457.999301pt;}
.y4b{bottom:458.305467pt;}
.y124{bottom:458.465870pt;}
.y2d{bottom:461.173600pt;}
.y25f{bottom:462.471067pt;}
.y6b{bottom:463.757166pt;}
.y101{bottom:466.012000pt;}
.y1a8{bottom:468.593566pt;}
.y99{bottom:468.594966pt;}
.yc3{bottom:468.817439pt;}
.y22b{bottom:469.041733pt;}
.y180{bottom:469.726177pt;}
.y15e{bottom:470.018350pt;}
.y4a{bottom:470.324267pt;}
.y1cd{bottom:471.988921pt;}
.y2c{bottom:474.478000pt;}
.y12{bottom:474.705333pt;}
.y123{bottom:475.775635pt;}
.y25e{bottom:477.135267pt;}
.y100{bottom:478.031050pt;}
.y1fd{bottom:479.781073pt;}
.y6a{bottom:481.293733pt;}
.y15d{bottom:482.037400pt;}
.y22a{bottom:484.159400pt;}
.y1a7{bottom:486.281335pt;}
.y98{bottom:486.282735pt;}
.yc2{bottom:486.580808pt;}
.y17f{bottom:487.565147pt;}
.y2b{bottom:487.858000pt;}
.y1cc{bottom:489.827891pt;}
.yff{bottom:490.050100pt;}
.y25d{bottom:491.799467pt;}
.y122{bottom:493.161000pt;}
.y15c{bottom:494.056450pt;}
.y1fc{bottom:497.771244pt;}
.y49{bottom:498.216717pt;}
.y69{bottom:498.830300pt;}
.y229{bottom:499.277067pt;}
.y2a{bottom:501.162400pt;}
.yfe{bottom:501.993417pt;}
.y97{bottom:503.894903pt;}
.yc1{bottom:503.966173pt;}
.y1a6{bottom:504.044704pt;}
.y11{bottom:505.238668pt;}
.y17e{bottom:505.479718pt;}
.y15b{bottom:505.999767pt;}
.y25c{bottom:506.690400pt;}
.y1cb{bottom:507.666861pt;}
.y48{bottom:510.235767pt;}
.y121{bottom:510.470765pt;}
.y228{bottom:513.941267pt;}
.yfd{bottom:514.012467pt;}
.y29{bottom:514.542400pt;}
.y1fb{bottom:515.837016pt;}
.y68{bottom:516.291266pt;}
.y15a{bottom:518.018817pt;}
.y10{bottom:518.572001pt;}
.y25b{bottom:521.354600pt;}
.y96{bottom:521.582671pt;}
.yc0{bottom:521.729543pt;}
.y1a5{bottom:521.732473pt;}
.y47{bottom:522.254817pt;}
.y17d{bottom:523.394288pt;}
.y1ca{bottom:525.430230pt;}
.yfc{bottom:526.031517pt;}
.y120{bottom:527.780530pt;}
.y28{bottom:527.846800pt;}
.y227{bottom:529.058933pt;}
.y159{bottom:530.037867pt;}
.yf{bottom:531.905333pt;}
.y1fa{bottom:533.827188pt;}
.y67{bottom:533.827833pt;}
.y46{bottom:534.273867pt;}
.y25a{bottom:536.321533pt;}
.yfb{bottom:538.050567pt;}
.y95{bottom:539.270440pt;}
.y1a4{bottom:539.420241pt;}
.ybf{bottom:539.492912pt;}
.y17c{bottom:540.704053pt;}
.y27{bottom:541.151200pt;}
.y158{bottom:542.056917pt;}
.y1c9{bottom:543.269200pt;}
.y226{bottom:544.176600pt;}
.y11f{bottom:545.165896pt;}
.y45{bottom:546.217200pt;}
.yfa{bottom:549.993884pt;}
.y259{bottom:550.985733pt;}
.y1f9{bottom:551.136953pt;}
.y66{bottom:551.288799pt;}
.y157{bottom:554.000234pt;}
.y26{bottom:554.531200pt;}
.y94{bottom:556.882607pt;}
.y1a3{bottom:557.183610pt;}
.ybe{bottom:557.256281pt;}
.y17b{bottom:558.618624pt;}
.y225{bottom:558.849067pt;}
.yf9{bottom:562.012934pt;}
.y11e{bottom:562.475661pt;}
.y258{bottom:565.649933pt;}
.y156{bottom:566.019284pt;}
.y25{bottom:567.835600pt;}
.y1c8{bottom:568.592000pt;}
.y65{bottom:568.825367pt;}
.y1f8{bottom:569.127124pt;}
.y44{bottom:570.254817pt;}
.y224{bottom:573.966733pt;}
.yf8{bottom:574.031983pt;}
.y93{bottom:574.570376pt;}
.y1a2{bottom:574.871379pt;}
.ybd{bottom:575.095251pt;}
.y155{bottom:578.038333pt;}
.y11d{bottom:579.785425pt;}
.y257{bottom:580.540867pt;}
.y24{bottom:581.215600pt;}
.y43{bottom:582.273867pt;}
.yf7{bottom:586.051033pt;}
.y64{bottom:586.286333pt;}
.y1f7{bottom:587.117295pt;}
.y223{bottom:588.630933pt;}
.y154{bottom:590.057383pt;}
.y92{bottom:592.258144pt;}
.y1a1{bottom:592.559147pt;}
.ybc{bottom:592.858620pt;}
.y17a{bottom:593.239554pt;}
.y42{bottom:594.217200pt;}
.y23{bottom:594.519467pt;}
.y256{bottom:595.205067pt;}
.y11c{bottom:597.095190pt;}
.yf6{bottom:597.994351pt;}
.y153{bottom:602.000701pt;}
.y222{bottom:603.748600pt;}
.y63{bottom:603.822900pt;}
.ye{bottom:604.605324pt;}
.y1f6{bottom:605.107467pt;}
.y91{bottom:609.870312pt;}
.yf5{bottom:610.013400pt;}
.y255{bottom:610.172000pt;}
.y1a0{bottom:610.322516pt;}
.ybb{bottom:610.621989pt;}
.y179{bottom:610.624919pt;}
.y1c7{bottom:611.983751pt;}
.y152{bottom:614.019750pt;}
.y11b{bottom:614.480556pt;}
.y221{bottom:618.412800pt;}
.y62{bottom:621.283866pt;}
.yf4{bottom:622.032450pt;}
.y1f5{bottom:623.097638pt;}
.y254{bottom:624.836200pt;}
.y151{bottom:626.038800pt;}
.y90{bottom:627.558080pt;}
.y19f{bottom:628.010285pt;}
.yba{bottom:628.385358pt;}
.y178{bottom:628.463889pt;}
.y1c6{bottom:629.747120pt;}
.yd{bottom:631.618670pt;}
.y11a{bottom:631.790321pt;}
.y220{bottom:633.530467pt;}
.yf3{bottom:634.051500pt;}
.y22{bottom:636.320667pt;}
.y150{bottom:638.057850pt;}
.y61{bottom:638.820433pt;}
.y253{bottom:639.727133pt;}
.y1f4{bottom:641.163410pt;}
.y8f{bottom:645.170248pt;}
.y19e{bottom:645.698053pt;}
.y177{bottom:645.773654pt;}
.yf2{bottom:645.994817pt;}
.yb9{bottom:646.224328pt;}
.y1c5{bottom:647.586090pt;}
.yc{bottom:647.671994pt;}
.y21f{bottom:648.648133pt;}
.y119{bottom:649.100086pt;}
.y21{bottom:649.700667pt;}
.y14f{bottom:650.001167pt;}
.y252{bottom:654.391333pt;}
.y20{bottom:654.992000pt;}
.y60{bottom:656.281399pt;}
.yf1{bottom:658.013867pt;}
.y1f3{bottom:659.153581pt;}
.y14e{bottom:662.020217pt;}
.y8e{bottom:662.858017pt;}
.y1e{bottom:663.004533pt;}
.y19d{bottom:663.083419pt;}
.y21e{bottom:663.312333pt;}
.y1f{bottom:663.609333pt;}
.y176{bottom:663.688224pt;}
.yb{bottom:663.725339pt;}
.yb8{bottom:663.987697pt;}
.y1c4{bottom:665.425060pt;}
.y118{bottom:666.485451pt;}
.y1d{bottom:668.371467pt;}
.y251{bottom:669.358267pt;}
.yf0{bottom:670.032917pt;}
.y5f{bottom:673.817966pt;}
.y14d{bottom:674.039267pt;}
.y1f2{bottom:677.143753pt;}
.y21d{bottom:678.430000pt;}
.ya{bottom:680.191993pt;}
.y8d{bottom:680.545785pt;}
.y19c{bottom:680.771187pt;}
.y175{bottom:680.997989pt;}
.yb7{bottom:681.751067pt;}
.yef{bottom:682.051967pt;}
.y1c3{bottom:682.734824pt;}
.y117{bottom:683.795216pt;}
.y250{bottom:684.022467pt;}
.y14c{bottom:686.058316pt;}
.y1b{bottom:686.891200pt;}
.y5e{bottom:691.354533pt;}
.y1c{bottom:693.089600pt;}
.y21c{bottom:693.547667pt;}
.yee{bottom:693.995284pt;}
.y1f1{bottom:695.133924pt;}
.y14b{bottom:698.001634pt;}
.y8c{bottom:698.157953pt;}
.y174{bottom:698.383355pt;}
.y19b{bottom:698.458956pt;}
.y24f{bottom:698.686667pt;}
.y1c2{bottom:700.573794pt;}
.y116{bottom:701.104981pt;}
.yed{bottom:706.014334pt;}
.yb6{bottom:707.073867pt;}
.y21b{bottom:708.211867pt;}
.y5d{bottom:708.815500pt;}
.y14a{bottom:710.020684pt;}
.y1f0{bottom:713.124095pt;}
.y24e{bottom:713.350867pt;}
.y173{bottom:715.693120pt;}
.y8b{bottom:715.845721pt;}
.y19a{bottom:716.222325pt;}
.yec{bottom:718.033383pt;}
.y1c1{bottom:718.337163pt;}
.y115{bottom:718.490346pt;}
.y1a{bottom:721.510133pt;}
.y149{bottom:722.039733pt;}
.y21a{bottom:723.329533pt;}
.y5c{bottom:726.352067pt;}
.y9{bottom:727.213335pt;}
.y24d{bottom:728.015067pt;}
.y281{bottom:729.678067pt;}
.yeb{bottom:730.052433pt;}
.y1ef{bottom:731.114267pt;}
.y8a{bottom:733.533490pt;}
.y172{bottom:733.607690pt;}
.y199{bottom:733.910093pt;}
.y148{bottom:734.058783pt;}
.y114{bottom:735.800111pt;}
.y1c0{bottom:736.176133pt;}
.y219{bottom:738.447200pt;}
.yea{bottom:741.995751pt;}
.y24c{bottom:742.679267pt;}
.y19{bottom:742.902133pt;}
.y5b{bottom:743.813033pt;}
.y280{bottom:744.342267pt;}
.y147{bottom:746.002100pt;}
.y1ee{bottom:749.104438pt;}
.yb5{bottom:750.465251pt;}
.y89{bottom:751.145657pt;}
.y198{bottom:751.597862pt;}
.y218{bottom:753.111400pt;}
.ye9{bottom:754.014800pt;}
.y27f{bottom:757.192600pt;}
.y24b{bottom:757.343467pt;}
.y146{bottom:758.021150pt;}
.y5a{bottom:761.349600pt;}
.y18{bottom:764.219467pt;}
.ye8{bottom:766.033850pt;}
.y1ed{bottom:767.094609pt;}
.yb4{bottom:768.228620pt;}
.y217{bottom:768.229067pt;}
.y88{bottom:768.833426pt;}
.y197{bottom:769.361231pt;}
.y1e8{bottom:769.662572pt;}
.y145{bottom:770.040200pt;}
.y113{bottom:770.496642pt;}
.y27e{bottom:771.856800pt;}
.y24a{bottom:772.007667pt;}
.ye7{bottom:778.052900pt;}
.y8{bottom:778.470670pt;}
.y59{bottom:778.810566pt;}
.y216{bottom:783.346733pt;}
.y1ec{bottom:785.160381pt;}
.y17{bottom:785.536800pt;}
.yb3{bottom:785.991989pt;}
.y1e7{bottom:786.065567pt;}
.y144{bottom:786.065600pt;}
.y171{bottom:786.143191pt;}
.y27d{bottom:786.521000pt;}
.y87{bottom:786.521194pt;}
.y249{bottom:786.671867pt;}
.y196{bottom:787.048999pt;}
.y112{bottom:787.806407pt;}
.ye6{bottom:789.996217pt;}
.y58{bottom:796.347133pt;}
.y1e6{bottom:798.008884pt;}
.y143{bottom:798.008917pt;}
.y215{bottom:798.010933pt;}
.y27c{bottom:801.185200pt;}
.y248{bottom:801.336067pt;}
.y1eb{bottom:803.150553pt;}
.yb2{bottom:803.755358pt;}
.y170{bottom:803.982161pt;}
.y86{bottom:804.133362pt;}
.y195{bottom:804.736768pt;}
.y111{bottom:805.116171pt;}
.ye5{bottom:806.021617pt;}
.y7{bottom:806.470670pt;}
.y1e5{bottom:810.027934pt;}
.y214{bottom:813.128600pt;}
.y57{bottom:813.808100pt;}
.y27b{bottom:815.849400pt;}
.y247{bottom:816.000267pt;}
.ye4{bottom:818.040667pt;}
.y1ea{bottom:821.140724pt;}
.yb1{bottom:821.594328pt;}
.y85{bottom:821.821130pt;}
.y16f{bottom:821.896731pt;}
.y110{bottom:822.425936pt;}
.y1e4{bottom:826.053333pt;}
.y213{bottom:827.792800pt;}
.y27a{bottom:830.513600pt;}
.y56{bottom:831.344667pt;}
.y6{bottom:834.470665pt;}
.y1e9{bottom:839.130895pt;}
.y16e{bottom:839.206496pt;}
.yb0{bottom:839.357697pt;}
.y84{bottom:839.433298pt;}
.y10f{bottom:839.811302pt;}
.y212{bottom:842.910467pt;}
.ye3{bottom:843.363933pt;}
.y54{bottom:849.561586pt;}
.y55{bottom:856.667467pt;}
.y83{bottom:857.121067pt;}
.ye2{bottom:858.028133pt;}
.y53{bottom:861.580426pt;}
.y5{bottom:862.470665pt;}
.y51{bottom:873.524267pt;}
.y52{bottom:875.943234pt;}
.y81{bottom:893.480133pt;}
.y82{bottom:895.899101pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.he{height:22.876949pt;}
.h16{height:26.692952pt;}
.hd{height:26.914642pt;}
.h13{height:27.399635pt;}
.h18{height:27.919628pt;}
.h17{height:28.839615pt;}
.h15{height:30.506285pt;}
.h4{height:32.687500pt;}
.h11{height:33.504000pt;}
.h10{height:34.320000pt;}
.h14{height:34.608000pt;}
.hf{height:35.923200pt;}
.h21{height:36.074667pt;}
.h1f{height:36.226667pt;}
.h23{height:36.272267pt;}
.h22{height:36.277333pt;}
.h12{height:36.528000pt;}
.h25{height:36.576267pt;}
.h2{height:36.726562pt;}
.h24{height:36.875200pt;}
.h26{height:37.179200pt;}
.h1e{height:39.088372pt;}
.h1b{height:39.872380pt;}
.h1c{height:39.995581pt;}
.h8{height:40.000000pt;}
.h1a{height:40.096382pt;}
.h1d{height:40.297984pt;}
.hc{height:40.376385pt;}
.h7{height:40.859375pt;}
.h19{height:42.299051pt;}
.h6{height:49.031250pt;}
.hb{height:53.834667pt;}
.h3{height:61.289062pt;}
.h20{height:62.557085pt;}
.h5{height:73.546875pt;}
.h9{height:937.322667pt;}
.ha{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:79.672400pt;}
.xe{left:83.754267pt;}
.x18{left:87.761677pt;}
.x2c{left:93.052200pt;}
.x15{left:95.697600pt;}
.x2a{left:98.040575pt;}
.x2d{left:102.729533pt;}
.x21{left:126.689048pt;}
.x4{left:129.466667pt;}
.x3c{left:131.831000pt;}
.x3d{left:152.921000pt;}
.x2f{left:158.820067pt;}
.x7{left:161.083467pt;}
.x8{left:166.299200pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x31{left:179.751733pt;}
.x2{left:207.893339pt;}
.x30{left:231.003600pt;}
.x38{left:233.423733pt;}
.x32{left:236.445200pt;}
.x36{left:241.285933pt;}
.x33{left:245.138333pt;}
.x19{left:258.973508pt;}
.x17{left:259.955996pt;}
.x1{left:260.969328pt;}
.x9{left:267.212533pt;}
.xa{left:272.428267pt;}
.x1b{left:279.611104pt;}
.x1a{left:281.650924pt;}
.x34{left:290.189867pt;}
.x1c{left:302.288520pt;}
.x22{left:310.752667pt;}
.x12{left:318.841467pt;}
.x25{left:325.195538pt;}
.x2b{left:329.951938pt;}
.x37{left:338.569733pt;}
.xb{left:369.940000pt;}
.x3b{left:374.928400pt;}
.x26{left:379.243053pt;}
.xc{left:380.749467pt;}
.x24{left:383.094490pt;}
.x28{left:384.684905pt;}
.x27{left:388.691743pt;}
.x35{left:405.465400pt;}
.xf{left:408.037467pt;}
.x1d{left:412.274968pt;}
.x1e{left:434.952384pt;}
.x3a{left:448.932133pt;}
.x13{left:450.973067pt;}
.x14{left:454.601467pt;}
.x16{left:457.927467pt;}
.x10{left:468.283467pt;}
.x11{left:470.022267pt;}
.xd{left:484.157333pt;}
.x23{left:490.960264pt;}
.x1f{left:497.915183pt;}
.x39{left:537.901267pt;}
.x2e{left:550.830600pt;}
.x29{left:563.978879pt;}
.x20{left:568.592056pt;}
}




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