
    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_dc70e880fee7bf6f724827ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e2e3c7db64e78f68c9d90d10.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e57db2591a958189c1a3516.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_70c13b31f3ef4c203eefb314.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_852181e4c124a1be9e1b3759.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.457000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_139ae0adc55eaf1408b1e314.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689000;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_0a2ca702634f507b729cd19d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6272d96eb6a720f46c7c9e2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f2a2d0865cb4fd997fbad124.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_28e20febf87b6f315d4ce86b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.510000;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_736fd6a7e22ece92a2d86526.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.252000;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_487da0de7fae830293447ca7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_064663ef0bef5e8679ffd86d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.545000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_17e279a92a58d6725c80e1be.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6a{letter-spacing:-1.946260px;}
.ls68{letter-spacing:-1.934500px;}
.ls10{letter-spacing:-1.846301px;}
.ls12{letter-spacing:-1.840421px;}
.lsc{letter-spacing:-1.834541px;}
.ls11{letter-spacing:-1.822781px;}
.ls6b{letter-spacing:-1.816901px;}
.lsb{letter-spacing:-1.805142px;}
.lsd{letter-spacing:-1.769862px;}
.ls69{letter-spacing:-1.675783px;}
.ls5b{letter-spacing:-1.487625px;}
.ls59{letter-spacing:-1.458225px;}
.ls35{letter-spacing:-1.446465px;}
.ls39{letter-spacing:-1.440585px;}
.ls58{letter-spacing:-1.434705px;}
.ls38{letter-spacing:-1.428825px;}
.ls5c{letter-spacing:-1.422945px;}
.ls34{letter-spacing:-1.411186px;}
.ls5a{letter-spacing:-1.399426px;}
.ls36{letter-spacing:-1.387666px;}
.ls3b{letter-spacing:-1.375906px;}
.ls3a{letter-spacing:-1.370026px;}
.ls37{letter-spacing:-1.358266px;}
.ls3c{letter-spacing:-1.322987px;}
.ls1b{letter-spacing:-1.211268px;}
.ls8{letter-spacing:-1.206012px;}
.ls40{letter-spacing:-1.175988px;}
.ls5{letter-spacing:-1.164012px;}
.ls27{letter-spacing:-1.158348px;}
.ls4d{letter-spacing:-1.146588px;}
.ls55{letter-spacing:-1.140708px;}
.ls71{letter-spacing:-1.138485px;}
.ls26{letter-spacing:-1.134828px;}
.ls1f{letter-spacing:-1.128943px;}
.ls3d{letter-spacing:-1.123069px;}
.ls25{letter-spacing:-1.117189px;}
.ls21{letter-spacing:-1.111309px;}
.ls23{letter-spacing:-1.105429px;}
.ls1a{letter-spacing:-1.099549px;}
.ls7{letter-spacing:-1.098011px;}
.ls24{letter-spacing:-1.093663px;}
.ls1c{letter-spacing:-1.087789px;}
.ls6{letter-spacing:-1.086011px;}
.ls14{letter-spacing:-1.081909px;}
.ls3e{letter-spacing:-1.076029px;}
.ls22{letter-spacing:-1.070149px;}
.ls20{letter-spacing:-1.064269px;}
.ls16{letter-spacing:-1.058389px;}
.ls1d{letter-spacing:-1.052509px;}
.ls15{letter-spacing:-1.046629px;}
.ls3{letter-spacing:-1.044010px;}
.ls13{letter-spacing:-1.040749px;}
.ls5e{letter-spacing:-1.034869px;}
.ls19{letter-spacing:-1.028990px;}
.ls32{letter-spacing:-1.023110px;}
.ls4c{letter-spacing:-1.017230px;}
.ls3f{letter-spacing:-1.011350px;}
.ls41{letter-spacing:-1.005470px;}
.ls4{letter-spacing:-1.002010px;}
.ls56{letter-spacing:-0.999590px;}
.ls6e{letter-spacing:-0.987830px;}
.ls1e{letter-spacing:-0.981950px;}
.ls18{letter-spacing:-0.976070px;}
.ls4b{letter-spacing:-0.970190px;}
.ls6d{letter-spacing:-0.929031px;}
.ls5f{letter-spacing:-0.917271px;}
.ls4f{letter-spacing:-0.886187px;}
.ls72{letter-spacing:-0.877488px;}
.ls17{letter-spacing:-0.876111px;}
.ls33{letter-spacing:-0.834951px;}
.ls2{letter-spacing:-0.834008px;}
.ls73{letter-spacing:-0.787490px;}
.ls1{letter-spacing:-0.762008px;}
.ls4e{letter-spacing:-0.023520px;}
.ls9{letter-spacing:-0.011760px;}
.lsa{letter-spacing:-0.005880px;}
.ls0{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.004500px;}
.lse{letter-spacing:0.005880px;}
.ls42{letter-spacing:0.011760px;}
.ls28{letter-spacing:0.023520px;}
.ls2b{letter-spacing:0.029378px;}
.ls29{letter-spacing:0.029438px;}
.ls66{letter-spacing:0.049494px;}
.ls65{letter-spacing:0.058484px;}
.ls62{letter-spacing:0.058547px;}
.ls47{letter-spacing:0.105576px;}
.ls45{letter-spacing:0.105636px;}
.ls70{letter-spacing:0.152994px;}
.ls54{letter-spacing:0.153540px;}
.ls4a{letter-spacing:0.153600px;}
.ls31{letter-spacing:0.199862px;}
.ls61{letter-spacing:0.292500px;}
.ls53{letter-spacing:0.577800px;}
.ls51{letter-spacing:0.582114px;}
.ls5d{letter-spacing:0.623274px;}
.ls52{letter-spacing:0.640913px;}
.ls49{letter-spacing:7.631299px;}
.ls50{letter-spacing:8.089084px;}
.ls44{letter-spacing:8.311699px;}
.ls48{letter-spacing:9.196686px;}
.ls46{letter-spacing:9.537486px;}
.ls43{letter-spacing:10.897200px;}
.ls2d{letter-spacing:11.765791px;}
.ls67{letter-spacing:13.297314px;}
.ls60{letter-spacing:13.504277px;}
.ls64{letter-spacing:13.657314px;}
.ls2a{letter-spacing:17.375258px;}
.lsf{letter-spacing:17.622152px;}
.ls6c{letter-spacing:18.915767px;}
.ls2c{letter-spacing:23.155238px;}
.ls6f{letter-spacing:26.101054px;}
.ls2e{letter-spacing:27.576938px;}
.ls2f{letter-spacing:28.600058px;}
.ls30{letter-spacing:28.894018px;}
.ls57{letter-spacing:31.157802px;}
.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;}
}
.ws189{word-spacing:-31.216601px;}
.ws1da{word-spacing:-26.159853px;}
.ws1c8{word-spacing:-18.974566px;}
.ws14e{word-spacing:-8.131084px;}
.ws1b7{word-spacing:-0.631800px;}
.ws20{word-spacing:-0.061800px;}
.ws12{word-spacing:-0.060001px;}
.ws4a{word-spacing:-0.058799px;}
.ws91{word-spacing:-0.055201px;}
.ws147{word-spacing:-0.047999px;}
.ws34{word-spacing:-0.044999px;}
.ws42{word-spacing:0.000000px;}
.ws249{word-spacing:0.742490px;}
.wsc1{word-spacing:0.776152px;}
.ws188{word-spacing:0.940790px;}
.ws237{word-spacing:1.093485px;}
.ws15f{word-spacing:7.396095px;}
.ws141{word-spacing:8.387280px;}
.ws1bb{word-spacing:9.076687px;}
.ws145{word-spacing:9.244685px;}
.ws146{word-spacing:9.585480px;}
.ws15e{word-spacing:9.991657px;}
.ws14f{word-spacing:10.121855px;}
.ws14d{word-spacing:10.403251px;}
.ws137{word-spacing:10.443599px;}
.ws152{word-spacing:10.487250px;}
.ws151{word-spacing:10.592249px;}
.ws208{word-spacing:10.786356px;}
.ws150{word-spacing:10.789645px;}
.ws23b{word-spacing:10.808856px;}
.ws243{word-spacing:10.835856px;}
.ws21e{word-spacing:10.840355px;}
.ws247{word-spacing:10.853855px;}
.ws241{word-spacing:10.858355px;}
.ws1ea{word-spacing:10.862855px;}
.ws209{word-spacing:10.880855px;}
.ws242{word-spacing:10.885354px;}
.ws222{word-spacing:10.912354px;}
.ws1e9{word-spacing:10.934854px;}
.ws248{word-spacing:10.939355px;}
.ws1e2{word-spacing:10.957354px;}
.ws23c{word-spacing:11.006854px;}
.ws1e1{word-spacing:11.011353px;}
.ws21f{word-spacing:11.024853px;}
.ws20d{word-spacing:11.033853px;}
.ws1e3{word-spacing:11.074353px;}
.ws220{word-spacing:11.078852px;}
.ws23a{word-spacing:11.137352px;}
.ws235{word-spacing:11.155351px;}
.ws240{word-spacing:11.186851px;}
.ws221{word-spacing:11.339849px;}
.ws20c{word-spacing:11.416348px;}
.ws236{word-spacing:11.461347px;}
.ws1ec{word-spacing:11.470347px;}
.ws21d{word-spacing:11.501847px;}
.ws20b{word-spacing:11.506347px;}
.ws1e8{word-spacing:11.668344px;}
.ws20a{word-spacing:11.699844px;}
.ws1eb{word-spacing:11.735843px;}
.wsbd{word-spacing:11.765731px;}
.ws244{word-spacing:11.821343px;}
.ws33{word-spacing:11.884342px;}
.ws14c{word-spacing:12.087428px;}
.ws39{word-spacing:12.448622px;}
.ws3b{word-spacing:12.503222px;}
.wsb1{word-spacing:12.512512px;}
.ws3d{word-spacing:12.528421px;}
.ws3a{word-spacing:12.532621px;}
.ws3e{word-spacing:12.562021px;}
.ws140{word-spacing:12.633419px;}
.ws3c{word-spacing:12.654419px;}
.ws23f{word-spacing:12.658331px;}
.ws13f{word-spacing:12.696418px;}
.ws21a{word-spacing:13.148825px;}
.ws224{word-spacing:13.157825px;}
.ws218{word-spacing:13.166825px;}
.ws215{word-spacing:13.171324px;}
.ws1fa{word-spacing:13.184824px;}
.ws239{word-spacing:13.198324px;}
.ws23d{word-spacing:13.202824px;}
.ws21c{word-spacing:13.216324px;}
.ws207{word-spacing:13.225323px;}
.ws203{word-spacing:13.229824px;}
.ws22a{word-spacing:13.234324px;}
.ws216{word-spacing:13.238824px;}
.ws20e{word-spacing:13.243323px;}
.ws21b{word-spacing:13.247823px;}
.ws200{word-spacing:13.252323px;}
.ws213{word-spacing:13.265823px;}
.ws206{word-spacing:13.270323px;}
.ws1fe{word-spacing:13.274823px;}
.ws1e4{word-spacing:13.283823px;}
.ws22d{word-spacing:13.288322px;}
.ws22f{word-spacing:13.292822px;}
.ws1e5{word-spacing:13.297323px;}
.ws1f4{word-spacing:13.301823px;}
.ws246{word-spacing:13.306323px;}
.ws1fc{word-spacing:13.310822px;}
.ws226{word-spacing:13.315322px;}
.ws1fd{word-spacing:13.319822px;}
.ws214{word-spacing:13.324323px;}
.ws231{word-spacing:13.328823px;}
.ws245{word-spacing:13.333322px;}
.ws22c{word-spacing:13.337822px;}
.ws38{word-spacing:13.342322px;}
.ws22e{word-spacing:13.346822px;}
.ws1e7{word-spacing:13.369322px;}
.ws24a{word-spacing:13.373822px;}
.ws230{word-spacing:13.378321px;}
.ws211{word-spacing:13.382821px;}
.ws202{word-spacing:13.387322px;}
.ws212{word-spacing:13.391822px;}
.ws228{word-spacing:13.396322px;}
.ws238{word-spacing:13.400821px;}
.ws1ef{word-spacing:13.405321px;}
.ws229{word-spacing:13.409821px;}
.ws205{word-spacing:13.414322px;}
.ws35{word-spacing:13.418822px;}
.ws1e0{word-spacing:13.423321px;}
.ws1ee{word-spacing:13.432321px;}
.ws210{word-spacing:13.441321px;}
.ws1e6{word-spacing:13.445820px;}
.ws1ff{word-spacing:13.459321px;}
.ws22b{word-spacing:13.463821px;}
.ws1f1{word-spacing:13.468320px;}
.ws232{word-spacing:13.486321px;}
.ws1df{word-spacing:13.490820px;}
.ws1f2{word-spacing:13.495320px;}
.ws223{word-spacing:13.499820px;}
.ws1f0{word-spacing:13.504320px;}
.ws1de{word-spacing:13.513319px;}
.ws204{word-spacing:13.522320px;}
.ws219{word-spacing:13.531319px;}
.ws227{word-spacing:13.544819px;}
.ws225{word-spacing:13.567319px;}
.ws234{word-spacing:13.571819px;}
.ws1f5{word-spacing:13.576319px;}
.ws36{word-spacing:13.580818px;}
.ws233{word-spacing:13.585318px;}
.ws37{word-spacing:13.589819px;}
.ws20f{word-spacing:13.594319px;}
.ws1f8{word-spacing:13.598819px;}
.ws1f7{word-spacing:13.603318px;}
.ws1fb{word-spacing:13.607818px;}
.ws1f9{word-spacing:13.657318px;}
.ws217{word-spacing:13.666318px;}
.ws1f3{word-spacing:13.684318px;}
.ws1dd{word-spacing:13.715817px;}
.ws1dc{word-spacing:13.715845px;}
.ws201{word-spacing:13.783316px;}
.ws153{word-spacing:13.804628px;}
.ws1f6{word-spacing:13.814816px;}
.ws15c{word-spacing:13.828628px;}
.ws1ed{word-spacing:13.882315px;}
.ws1bc{word-spacing:13.939025px;}
.ws148{word-spacing:13.967825px;}
.ws40{word-spacing:13.977399px;}
.ws13a{word-spacing:13.977426px;}
.ws156{word-spacing:13.987025px;}
.ws139{word-spacing:13.991825px;}
.ws155{word-spacing:14.001425px;}
.ws13b{word-spacing:14.035024px;}
.ws15d{word-spacing:14.068625px;}
.ws13e{word-spacing:14.073425px;}
.ws15b{word-spacing:14.078224px;}
.ws1ba{word-spacing:14.092624px;}
.ws14b{word-spacing:14.102223px;}
.ws131{word-spacing:14.105975px;}
.ws159{word-spacing:14.145424px;}
.ws26{word-spacing:14.164775px;}
.ws138{word-spacing:14.169423px;}
.ws13d{word-spacing:14.174222px;}
.ws144{word-spacing:14.188623px;}
.ws157{word-spacing:14.217423px;}
.wsac{word-spacing:14.251021px;}
.ws41{word-spacing:14.299021px;}
.ws149{word-spacing:14.313422px;}
.ws13c{word-spacing:14.371020px;}
.ws14a{word-spacing:14.375820px;}
.ws3f{word-spacing:14.457427px;}
.ws1a8{word-spacing:14.494052px;}
.ws12c{word-spacing:14.723369px;}
.wsfa{word-spacing:14.782169px;}
.ws2a{word-spacing:14.817449px;}
.ws4f{word-spacing:14.835089px;}
.ws115{word-spacing:14.888008px;}
.ws134{word-spacing:14.917408px;}
.wsca{word-spacing:14.935048px;}
.wsa{word-spacing:14.982150px;}
.ws15{word-spacing:14.988150px;}
.ws2f{word-spacing:15.011486px;}
.ws12d{word-spacing:15.064407px;}
.wsf{word-spacing:15.072151px;}
.wsee{word-spacing:15.123206px;}
.ws1a9{word-spacing:15.158485px;}
.ws13{word-spacing:15.198152px;}
.wsb{word-spacing:15.216153px;}
.ws14{word-spacing:15.306154px;}
.ws130{word-spacing:15.311363px;}
.ws18{word-spacing:15.324170px;}
.ws16c{word-spacing:15.358404px;}
.ws17{word-spacing:15.408153px;}
.ws10{word-spacing:15.444154px;}
.wse{word-spacing:15.690157px;}
.wsc{word-spacing:15.762158px;}
.ws16{word-spacing:15.834158px;}
.ws143{word-spacing:15.854401px;}
.wsf8{word-spacing:15.999317px;}
.ws142{word-spacing:16.059601px;}
.ws135{word-spacing:16.065001px;}
.ws136{word-spacing:16.081199px;}
.ws114{word-spacing:16.175716px;}
.ws1a3{word-spacing:16.199235px;}
.ws17c{word-spacing:16.205114px;}
.ws1c6{word-spacing:16.216874px;}
.ws4c{word-spacing:16.293314px;}
.ws12a{word-spacing:16.381513px;}
.ws1b2{word-spacing:16.405033px;}
.ws1b0{word-spacing:16.493231px;}
.ws182{word-spacing:16.516752px;}
.ws97{word-spacing:16.521539px;}
.ws62{word-spacing:16.557911px;}
.ws169{word-spacing:16.575550px;}
.ws121{word-spacing:16.581431px;}
.wse8{word-spacing:16.622591px;}
.ws133{word-spacing:16.634350px;}
.ws1b5{word-spacing:16.651991px;}
.ws184{word-spacing:16.663743px;}
.wsda{word-spacing:16.676102px;}
.ws1db{word-spacing:16.704909px;}
.ws17d{word-spacing:16.710790px;}
.wscf{word-spacing:16.731302px;}
.ws82{word-spacing:16.753382px;}
.ws5d{word-spacing:16.769588px;}
.ws192{word-spacing:16.793109px;}
.wsf0{word-spacing:16.803062px;}
.ws107{word-spacing:16.840149px;}
.ws17e{word-spacing:16.851907px;}
.ws178{word-spacing:16.869548px;}
.wsf2{word-spacing:16.887188px;}
.ws7c{word-spacing:16.893068px;}
.ws10e{word-spacing:16.898948px;}
.ws1ca{word-spacing:16.904827px;}
.ws191{word-spacing:16.910707px;}
.ws179{word-spacing:16.916587px;}
.wse7{word-spacing:16.934227px;}
.wsd{word-spacing:16.974159px;}
.ws92{word-spacing:16.981266px;}
.ws1f{word-spacing:17.010171px;}
.ws19d{word-spacing:17.010666px;}
.ws170{word-spacing:17.051826px;}
.ws12b{word-spacing:17.081226px;}
.ws1a{word-spacing:17.082171px;}
.ws199{word-spacing:17.098866px;}
.wsbb{word-spacing:17.128265px;}
.ws19{word-spacing:17.166172px;}
.ws48{word-spacing:17.198824px;}
.wsba{word-spacing:17.204705px;}
.ws8d{word-spacing:17.216464px;}
.ws1c{word-spacing:17.250172px;}
.ws1e{word-spacing:17.274198px;}
.ws1d{word-spacing:17.298173px;}
.wsb7{word-spacing:17.322304px;}
.ws8c{word-spacing:17.334063px;}
.ws1b{word-spacing:17.352173px;}
.ws7d{word-spacing:17.398742px;}
.ws56{word-spacing:17.404622px;}
.ws96{word-spacing:17.439903px;}
.ws6a{word-spacing:17.451661px;}
.ws11{word-spacing:17.466179px;}
.ws1c1{word-spacing:17.475181px;}
.wsbf{word-spacing:17.533982px;}
.wsfd{word-spacing:17.539860px;}
.wsff{word-spacing:17.545734px;}
.ws5a{word-spacing:17.545741px;}
.ws181{word-spacing:17.551620px;}
.wsab{word-spacing:17.563381px;}
.wsce{word-spacing:17.575140px;}
.ws1c4{word-spacing:17.592780px;}
.ws24{word-spacing:17.592781px;}
.wsd9{word-spacing:17.610420px;}
.ws81{word-spacing:17.645701px;}
.ws197{word-spacing:17.651579px;}
.ws53{word-spacing:17.663339px;}
.ws111{word-spacing:17.669220px;}
.ws9e{word-spacing:17.722139px;}
.ws46{word-spacing:17.722140px;}
.ws29{word-spacing:17.739780px;}
.ws127{word-spacing:17.769178px;}
.ws84{word-spacing:17.780938px;}
.ws122{word-spacing:17.880898px;}
.ws1c7{word-spacing:17.898537px;}
.wscd{word-spacing:17.904417px;}
.ws11e{word-spacing:17.916178px;}
.ws86{word-spacing:18.022010px;}
.ws4d{word-spacing:18.069055px;}
.ws1d4{word-spacing:18.151374px;}
.wsa7{word-spacing:18.157254px;}
.wsaf{word-spacing:18.221934px;}
.ws61{word-spacing:18.268973px;}
.ws124{word-spacing:18.298374px;}
.wsf6{word-spacing:18.316013px;}
.ws9b{word-spacing:18.345413px;}
.wsc4{word-spacing:18.368932px;}
.ws73{word-spacing:18.386572px;}
.ws60{word-spacing:18.404212px;}
.ws16a{word-spacing:18.415973px;}
.ws168{word-spacing:18.557091px;}
.ws9{word-spacing:18.600220px;}
.ws72{word-spacing:18.621769px;}
.ws63{word-spacing:18.651170px;}
.ws30{word-spacing:18.668809px;}
.ws2e{word-spacing:18.886368px;}
.wsf7{word-spacing:18.898127px;}
.ws5b{word-spacing:18.939286px;}
.ws173{word-spacing:18.939287px;}
.ws51{word-spacing:18.945167px;}
.ws16e{word-spacing:19.003966px;}
.wsea{word-spacing:19.062766px;}
.ws89{word-spacing:19.092166px;}
.ws54{word-spacing:19.098045px;}
.ws5c{word-spacing:19.150964px;}
.ws1d8{word-spacing:19.174485px;}
.ws11d{word-spacing:19.180364px;}
.ws19c{word-spacing:19.239164px;}
.wsd8{word-spacing:19.256803px;}
.ws1ab{word-spacing:19.327363px;}
.wsd3{word-spacing:19.339122px;}
.ws8{word-spacing:19.608779px;}
.ws4{word-spacing:19.635179px;}
.ws3{word-spacing:19.694578px;}
.ws108{word-spacing:19.697798px;}
.ws16f{word-spacing:19.733078px;}
.ws5{word-spacing:19.767180px;}
.ws6{word-spacing:19.773780px;}
.ws1a6{word-spacing:19.785998px;}
.ws18e{word-spacing:19.827158px;}
.ws1aa{word-spacing:19.856557px;}
.wsc9{word-spacing:19.891836px;}
.ws19a{word-spacing:19.921236px;}
.ws19b{word-spacing:19.938877px;}
.ws7{word-spacing:19.951981px;}
.ws90{word-spacing:20.015316px;}
.ws196{word-spacing:20.079995px;}
.ws126{word-spacing:20.127034px;}
.wsb8{word-spacing:20.162314px;}
.ws87{word-spacing:20.238753px;}
.ws128{word-spacing:20.256393px;}
.ws52{word-spacing:20.262274px;}
.ws4e{word-spacing:20.332832px;}
.wscb{word-spacing:20.379873px;}
.ws17b{word-spacing:20.415152px;}
.wsec{word-spacing:20.421031px;}
.wse6{word-spacing:20.497471px;}
.wse5{word-spacing:20.544511px;}
.ws11a{word-spacing:20.573909px;}
.ws25{word-spacing:20.620950px;}
.ws1b4{word-spacing:20.673868px;}
.ws1d2{word-spacing:20.715029px;}
.ws7a{word-spacing:20.720909px;}
.ws43{word-spacing:20.791468px;}
.ws166{word-spacing:20.797348px;}
.ws1b3{word-spacing:20.873787px;}
.ws50{word-spacing:21.097224px;}
.wsf5{word-spacing:21.132504px;}
.ws27{word-spacing:21.138384px;}
.ws1d6{word-spacing:21.179543px;}
.ws105{word-spacing:21.214824px;}
.ws177{word-spacing:21.297143px;}
.wsc6{word-spacing:21.308902px;}
.ws1d5{word-spacing:21.332422px;}
.ws103{word-spacing:21.361821px;}
.ws6f{word-spacing:21.414741px;}
.ws106{word-spacing:21.420621px;}
.ws118{word-spacing:21.479420px;}
.ws132{word-spacing:21.485300px;}
.ws69{word-spacing:21.526461px;}
.ws161{word-spacing:21.544100px;}
.ws66{word-spacing:21.591140px;}
.ws10a{word-spacing:21.602900px;}
.wsf9{word-spacing:21.620540px;}
.wse9{word-spacing:21.638179px;}
.wsb5{word-spacing:21.744018px;}
.ws102{word-spacing:21.826338px;}
.ws18b{word-spacing:21.943935px;}
.wsf1{word-spacing:21.961576px;}
.ws1b6{word-spacing:21.961801px;}
.ws47{word-spacing:21.979215px;}
.ws1d7{word-spacing:22.002735px;}
.ws6e{word-spacing:22.085055px;}
.wsb0{word-spacing:22.132095px;}
.ws109{word-spacing:22.196773px;}
.ws18a{word-spacing:22.202648px;}
.wsf4{word-spacing:22.202654px;}
.ws6b{word-spacing:22.267333px;}
.ws1c5{word-spacing:22.302612px;}
.ws171{word-spacing:22.384931px;}
.ws65{word-spacing:22.408452px;}
.ws8e{word-spacing:22.537811px;}
.wsf3{word-spacing:22.696568px;}
.ws22{word-spacing:22.702449px;}
.ws55{word-spacing:22.796528px;}
.ws190{word-spacing:22.820047px;}
.ws11b{word-spacing:22.878847px;}
.wsbe{word-spacing:22.890606px;}
.wsbc{word-spacing:22.908247px;}
.wsc3{word-spacing:22.925885px;}
.ws18f{word-spacing:22.972925px;}
.ws123{word-spacing:22.978805px;}
.ws57{word-spacing:22.990565px;}
.ws10c{word-spacing:23.090524px;}
.wsa4{word-spacing:23.096404px;}
.wsa2{word-spacing:23.102284px;}
.wsd5{word-spacing:23.131683px;}
.wsd4{word-spacing:23.190483px;}
.ws44{word-spacing:23.202243px;}
.ws164{word-spacing:23.225763px;}
.ws45{word-spacing:23.237523px;}
.ws11c{word-spacing:23.302202px;}
.ws67{word-spacing:23.331601px;}
.wsad{word-spacing:23.361002px;}
.ws1b1{word-spacing:23.396281px;}
.ws79{word-spacing:23.443320px;}
.wsd2{word-spacing:23.449200px;}
.ws0{word-spacing:23.649601px;}
.ws113{word-spacing:23.660878px;}
.ws17a{word-spacing:23.678519px;}
.ws117{word-spacing:23.690278px;}
.ws18d{word-spacing:23.690279px;}
.ws8a{word-spacing:23.702038px;}
.ws78{word-spacing:23.707917px;}
.wsd6{word-spacing:23.860796px;}
.wsae{word-spacing:23.913717px;}
.ws186{word-spacing:23.931355px;}
.ws58{word-spacing:23.943116px;}
.ws83{word-spacing:23.960756px;}
.ws18c{word-spacing:23.990156px;}
.ws4b{word-spacing:24.001916px;}
.ws64{word-spacing:24.031315px;}
.ws1a7{word-spacing:24.154793px;}
.ws7f{word-spacing:24.201834px;}
.wsa1{word-spacing:24.242992px;}
.ws185{word-spacing:24.337072px;}
.wscc{word-spacing:24.366471px;}
.wsdb{word-spacing:24.442911px;}
.ws11f{word-spacing:24.454670px;}
.ws110{word-spacing:24.584030px;}
.ws112{word-spacing:24.672229px;}
.wsc5{word-spacing:24.683988px;}
.ws59{word-spacing:24.878027px;}
.ws6d{word-spacing:24.919186px;}
.wse2{word-spacing:25.019144px;}
.ws8b{word-spacing:25.060304px;}
.ws8f{word-spacing:25.113224px;}
.ws9a{word-spacing:25.166143px;}
.ws1cf{word-spacing:25.177903px;}
.ws74{word-spacing:25.236697px;}
.wsa3{word-spacing:25.266103px;}
.ws5e{word-spacing:25.389580px;}
.ws1bf{word-spacing:25.466021px;}
.ws1c9{word-spacing:25.471901px;}
.ws1ce{word-spacing:25.583618px;}
.ws9f{word-spacing:25.607139px;}
.wsfc{word-spacing:25.736498px;}
.ws12e{word-spacing:25.801176px;}
.ws1c0{word-spacing:25.812937px;}
.ws88{word-spacing:25.818816px;}
.wsd7{word-spacing:25.901136px;}
.ws1cd{word-spacing:25.924655px;}
.wse0{word-spacing:25.989335px;}
.wse1{word-spacing:26.024615px;}
.wseb{word-spacing:26.030495px;}
.wsaa{word-spacing:26.059895px;}
.ws49{word-spacing:26.095173px;}
.ws1c2{word-spacing:26.318611px;}
.wsc8{word-spacing:26.353892px;}
.ws19e{word-spacing:26.383291px;}
.ws1c3{word-spacing:26.530290px;}
.ws183{word-spacing:26.565570px;}
.ws10f{word-spacing:26.583209px;}
.ws7b{word-spacing:26.642008px;}
.ws77{word-spacing:26.765487px;}
.ws1d3{word-spacing:26.812526px;}
.wsa0{word-spacing:26.853687px;}
.ws9c{word-spacing:26.906606px;}
.ws2c{word-spacing:27.012444px;}
.ws9d{word-spacing:27.088884px;}
.ws165{word-spacing:27.271161px;}
.wsb9{word-spacing:27.306441px;}
.ws175{word-spacing:27.394640px;}
.wsc0{word-spacing:27.400520px;}
.ws85{word-spacing:27.782716px;}
.ws1d9{word-spacing:27.835637px;}
.ws80{word-spacing:28.100233px;}
.ws120{word-spacing:28.206072px;}
.ws23{word-spacing:28.235472px;}
.ws1a5{word-spacing:28.400110px;}
.ws129{word-spacing:28.423629px;}
.ws1a4{word-spacing:28.441270px;}
.ws125{word-spacing:28.588269px;}
.ws95{word-spacing:28.664708px;}
.wsc2{word-spacing:28.764667px;}
.ws19f{word-spacing:28.782306px;}
.ws119{word-spacing:28.829345px;}
.ws1a1{word-spacing:28.829346px;}
.ws32{word-spacing:28.899905px;}
.ws1be{word-spacing:29.029264px;}
.ws172{word-spacing:29.235061px;}
.ws100{word-spacing:29.246822px;}
.ws104{word-spacing:29.299742px;}
.ws1cc{word-spacing:29.529058px;}
.ws174{word-spacing:29.552578px;}
.ws1cb{word-spacing:29.599619px;}
.wsb4{word-spacing:29.640778px;}
.ws99{word-spacing:29.811296px;}
.ws1bd{word-spacing:30.117052px;}
.ws167{word-spacing:30.122932px;}
.ws176{word-spacing:30.228772px;}
.ws2b{word-spacing:30.322851px;}
.ws21{word-spacing:30.387529px;}
.ws116{word-spacing:30.422811px;}
.ws1ad{word-spacing:30.446330px;}
.ws17f{word-spacing:30.481608px;}
.ws198{word-spacing:30.752086px;}
.ws1a2{word-spacing:30.805007px;}
.wsb6{word-spacing:30.969645px;}
.ws1a0{word-spacing:31.010805px;}
.wsb3{word-spacing:31.110761px;}
.wsde{word-spacing:31.146043px;}
.ws16d{word-spacing:31.257760px;}
.ws101{word-spacing:31.263640px;}
.wsed{word-spacing:31.298920px;}
.ws6c{word-spacing:31.304801px;}
.wsdd{word-spacing:31.475319px;}
.wsef{word-spacing:31.487079px;}
.wsd0{word-spacing:31.822236px;}
.ws71{word-spacing:31.886913px;}
.ws70{word-spacing:32.098594px;}
.ws187{word-spacing:32.186792px;}
.wsd1{word-spacing:32.192671px;}
.ws16b{word-spacing:32.369070px;}
.ws93{word-spacing:32.786544px;}
.ws28{word-spacing:32.862986px;}
.ws7e{word-spacing:32.874743px;}
.ws75{word-spacing:33.098182px;}
.ws1ae{word-spacing:33.098183px;}
.ws1af{word-spacing:33.209900px;}
.ws68{word-spacing:33.462737px;}
.wsa9{word-spacing:33.768495px;}
.ws12f{word-spacing:33.880215px;}
.wse4{word-spacing:33.903733px;}
.ws1ac{word-spacing:34.221251px;}
.ws193{word-spacing:34.227130px;}
.ws163{word-spacing:34.791606px;}
.ws1d1{word-spacing:35.214960px;}
.ws10b{word-spacing:35.338438px;}
.ws1d0{word-spacing:35.467799px;}
.ws98{word-spacing:36.149871px;}
.ws94{word-spacing:36.196909px;}
.ws2d{word-spacing:36.308631px;}
.ws195{word-spacing:37.073022px;}
.ws194{word-spacing:37.184741px;}
.ws31{word-spacing:37.196502px;}
.ws10d{word-spacing:37.237661px;}
.wsc7{word-spacing:37.255299px;}
.ws5f{word-spacing:37.502258px;}
.wsfe{word-spacing:37.755089px;}
.wsa6{word-spacing:37.796254px;}
.wsfb{word-spacing:37.890335px;}
.ws160{word-spacing:38.154932px;}
.wse3{word-spacing:39.913033px;}
.ws180{word-spacing:40.648024px;}
.wsa8{word-spacing:41.253658px;}
.ws76{word-spacing:41.765213px;}
.ws1{word-spacing:42.998581px;}
.wsb2{word-spacing:43.235198px;}
.ws2{word-spacing:43.315379px;}
.wsdf{word-spacing:44.064270px;}
.ws23e{word-spacing:44.261409px;}
.wsdc{word-spacing:47.127720px;}
.wsa5{word-spacing:50.267608px;}
.ws162{word-spacing:63.650351px;}
.ws158{word-spacing:112.275401px;}
.ws154{word-spacing:121.299289px;}
.ws15a{word-spacing:135.065507px;}
.ws1b9{word-spacing:167.009108px;}
.ws1b8{word-spacing:189.799225px;}
._4f{margin-left:-33.101559px;}
._4e{margin-left:-31.419025px;}
._5e{margin-left:-27.548488px;}
._5f{margin-left:-26.458761px;}
._5b{margin-left:-20.656229px;}
._5c{margin-left:-19.321483px;}
._5d{margin-left:-18.133736px;}
._43{margin-left:-8.761075px;}
._44{margin-left:-7.688149px;}
._1e{margin-left:-5.865633px;}
._c{margin-left:-4.670318px;}
._1b{margin-left:-3.422102px;}
._4{margin-left:-1.680017px;}
._7{width:1.524015px;}
._14{width:2.686021px;}
._1a{width:5.756482px;}
._0{width:8.954400px;}
._1d{width:10.917937px;}
._16{width:12.506636px;}
._6{width:14.568143px;}
._5{width:16.260163px;}
._f{width:17.979746px;}
._8{width:19.115920px;}
._10{width:20.291671px;}
._12{width:21.697218px;}
._9{width:22.844509px;}
._13{width:24.007794px;}
._d{width:25.960877px;}
._11{width:27.736619px;}
._b{width:29.203311px;}
._19{width:30.757385px;}
._1{width:32.876999px;}
._a{width:34.213725px;}
._1f{width:35.320803px;}
._e{width:37.370543px;}
._17{width:39.031041px;}
._15{width:42.282650px;}
._3{width:44.409782px;}
._1c{width:46.780801px;}
._4d{width:65.954183px;}
._2f{width:108.733042px;}
._2e{width:112.875394px;}
._39{width:131.489559px;}
._2d{width:143.489409px;}
._45{width:156.353245px;}
._33{width:162.103573px;}
._54{width:167.023513px;}
._31{width:181.648925px;}
._42{width:183.338511px;}
._38{width:185.095281px;}
._30{width:189.271232px;}
._36{width:206.930218px;}
._3c{width:208.086994px;}
._40{width:225.678774px;}
._51{width:228.822699px;}
._48{width:232.513899px;}
._35{width:237.544226px;}
._4b{width:262.743904px;}
._3e{width:289.181980px;}
._4a{width:300.543434px;}
._2c{width:308.679352px;}
._32{width:321.581590px;}
._3d{width:347.117271px;}
._49{width:351.955601px;}
._41{width:366.605027px;}
._53{width:368.875384px;}
._46{width:372.153757px;}
._3b{width:380.092858px;}
._34{width:388.060759px;}
._47{width:389.231945px;}
._3f{width:390.604727px;}
._4c{width:396.935820px;}
._37{width:409.036497px;}
._3a{width:417.532390px;}
._55{width:455.072711px;}
._50{width:498.905773px;}
._57{width:548.719541px;}
._52{width:568.015290px;}
._58{width:606.654807px;}
._59{width:639.630395px;}
._5a{width:650.142264px;}
._56{width:710.045515px;}
._24{width:739.920349px;}
._21{width:748.416226px;}
._2b{width:822.493681px;}
._29{width:864.829152px;}
._27{width:928.332358px;}
._20{width:947.628154px;}
._22{width:960.731991px;}
._26{width:986.267672px;}
._2a{width:1005.755428px;}
._25{width:1019.243259px;}
._23{width:1027.211160px;}
._28{width:1029.755128px;}
._2{width:1602.252539px;}
._18{width:1677.723145px;}
.fc1{color:rgb(19,20,19);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.996600px;}
.fs8{font-size:29.995200px;}
.fse{font-size:31.995000px;}
.fsd{font-size:35.995200px;}
.fs9{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y40{bottom:65.394100px;}
.y3f{bottom:77.384935px;}
.y1e7{bottom:89.290575px;}
.y158{bottom:89.290980px;}
.yb4{bottom:89.294850px;}
.y1aa{bottom:89.295960px;}
.y233{bottom:89.296380px;}
.yaa{bottom:89.301105px;}
.y102{bottom:89.302680px;}
.ye8{bottom:89.305815px;}
.y175{bottom:89.306370px;}
.y78{bottom:89.318895px;}
.y3e{bottom:89.375755px;}
.y3d{bottom:101.366590px;}
.y157{bottom:102.047250px;}
.y1e6{bottom:102.811770px;}
.y232{bottom:102.817575px;}
.y278{bottom:103.668525px;}
.yb3{bottom:107.322750px;}
.y1a9{bottom:107.323845px;}
.ya9{bottom:107.329005px;}
.y101{bottom:107.330580px;}
.ye7{bottom:107.333715px;}
.y174{bottom:107.334270px;}
.y77{bottom:107.346780px;}
.y3c{bottom:113.357410px;}
.y231{bottom:116.338770px;}
.y277{bottom:117.189720px;}
.y156{bottom:121.777530px;}
.yb2{bottom:125.265375px;}
.y1a8{bottom:125.266485px;}
.ya8{bottom:125.271645px;}
.y100{bottom:125.273205px;}
.ye6{bottom:125.276355px;}
.y173{bottom:125.362170px;}
.y76{bottom:125.374680px;}
.y230{bottom:129.775590px;}
.y1e5{bottom:130.960020px;}
.y276{bottom:131.136165px;}
.y3b{bottom:138.784435px;}
.y155{bottom:142.782060px;}
.yb1{bottom:143.293275px;}
.y1a7{bottom:143.294385px;}
.ya7{bottom:143.299530px;}
.yff{bottom:143.301105px;}
.ye5{bottom:143.304240px;}
.y172{bottom:143.304795px;}
.y75{bottom:143.317320px;}
.y22f{bottom:143.722035px;}
.y1e4{bottom:144.395715px;}
.y275{bottom:144.657360px;}
.y33{bottom:150.527935px;}
.y3a{bottom:152.305630px;}
.y22e{bottom:157.243230px;}
.y274{bottom:158.178555px;}
.yb0{bottom:161.321175px;}
.y1a6{bottom:161.322285px;}
.ya6{bottom:161.327430px;}
.yfe{bottom:161.329005px;}
.ye4{bottom:161.332140px;}
.y171{bottom:161.332695px;}
.y74{bottom:161.345220px;}
.y154{bottom:163.786590px;}
.y39{bottom:165.826825px;}
.y32{bottom:168.470575px;}
.y22d{bottom:170.764425px;}
.y38{bottom:170.844175px;}
.y273{bottom:171.699750px;}
.y1e3{bottom:172.543965px;}
.yaf{bottom:179.263815px;}
.y1a5{bottom:179.264925px;}
.ya5{bottom:179.270070px;}
.yfd{bottom:179.271645px;}
.ye3{bottom:179.274780px;}
.y37{bottom:179.348530px;}
.y170{bottom:179.360595px;}
.y73{bottom:179.373105px;}
.y22c{bottom:184.625355px;}
.y153{bottom:184.791135px;}
.y272{bottom:185.646180px;}
.y1e2{bottom:186.065160px;}
.y31{bottom:186.498460px;}
.y36{bottom:192.784225px;}
.yae{bottom:197.291700px;}
.y1a4{bottom:197.292810px;}
.ya4{bottom:197.297970px;}
.yfc{bottom:197.299530px;}
.ye2{bottom:197.302680px;}
.y16f{bottom:197.303235px;}
.y72{bottom:197.315745px;}
.y35{bottom:197.801590px;}
.y22b{bottom:198.146550px;}
.y271{bottom:199.081875px;}
.y1e1{bottom:199.586355px;}
.y30{bottom:204.526360px;}
.y152{bottom:205.795665px;}
.y34{bottom:206.305525px;}
.y22a{bottom:211.667745px;}
.y270{bottom:212.603070px;}
.y1e0{bottom:213.022050px;}
.yad{bottom:215.319600px;}
.y1a3{bottom:215.320710px;}
.ya3{bottom:215.325855px;}
.yfb{bottom:215.327430px;}
.ye1{bottom:215.330580px;}
.y16e{bottom:215.331135px;}
.y71{bottom:215.343645px;}
.y2f{bottom:222.469000px;}
.y229{bottom:225.614190px;}
.y1df{bottom:226.543245px;}
.y26f{bottom:226.549515px;}
.y151{bottom:226.800210px;}
.yac{bottom:233.262915px;}
.y1a2{bottom:233.263350px;}
.ya2{bottom:233.268495px;}
.yfa{bottom:233.270070px;}
.ye0{bottom:233.273205px;}
.y16d{bottom:233.359020px;}
.y70{bottom:233.371545px;}
.y228{bottom:239.135385px;}
.y1de{bottom:240.064440px;}
.y26e{bottom:240.070710px;}
.y27{bottom:240.493960px;}
.y2e{bottom:240.496900px;}
.y150{bottom:247.804740px;}
.y1a1{bottom:251.291250px;}
.ya1{bottom:251.296395px;}
.yf9{bottom:251.297970px;}
.ydf{bottom:251.301105px;}
.y16c{bottom:251.301660px;}
.y6f{bottom:251.314185px;}
.y227{bottom:252.572205px;}
.y26d{bottom:253.591905px;}
.y26{bottom:258.521845px;}
.y2d{bottom:258.524785px;}
.y226{bottom:266.093400px;}
.y26c{bottom:267.028725px;}
.y1dd{bottom:268.212690px;}
.y14f{bottom:268.809285px;}
.y1a0{bottom:269.319600px;}
.ya0{bottom:269.324295px;}
.yf8{bottom:269.325855px;}
.yde{bottom:269.329005px;}
.y16b{bottom:269.329560px;}
.y6e{bottom:269.342070px;}
.y2b2{bottom:273.830685px;}
.y25{bottom:276.464485px;}
.y2c{bottom:276.467425px;}
.y225{bottom:280.039830px;}
.y26b{bottom:280.549920px;}
.y1dc{bottom:281.649510px;}
.y14e{bottom:282.245505px;}
.y9f{bottom:287.266935px;}
.y2b1{bottom:287.267505px;}
.yf7{bottom:287.268495px;}
.ydd{bottom:287.271645px;}
.y16a{bottom:287.357460px;}
.y6d{bottom:287.369970px;}
.y224{bottom:293.561025px;}
.y26a{bottom:294.071115px;}
.y24{bottom:294.492385px;}
.y2b{bottom:294.495325px;}
.y1db{bottom:295.170705px;}
.y2b0{bottom:300.788700px;}
.y14d{bottom:301.974465px;}
.y9e{bottom:305.294820px;}
.yf6{bottom:305.296395px;}
.ydc{bottom:305.299530px;}
.y169{bottom:305.300085px;}
.y6c{bottom:305.312610px;}
.y19f{bottom:305.323605px;}
.y223{bottom:306.996720px;}
.y269{bottom:308.017545px;}
.y23{bottom:312.520285px;}
.y2a{bottom:312.523225px;}
.y2af{bottom:314.309895px;}
.y14c{bottom:315.495900px;}
.y222{bottom:320.943165px;}
.y268{bottom:321.538740px;}
.y1da{bottom:323.318955px;}
.y9d{bottom:323.322720px;}
.yf5{bottom:323.324295px;}
.ydb{bottom:323.327430px;}
.y168{bottom:323.327985px;}
.y6b{bottom:323.340510px;}
.y19e{bottom:323.351505px;}
.y2ae{bottom:327.831090px;}
.y22{bottom:330.462910px;}
.y29{bottom:330.465850px;}
.y221{bottom:334.464360px;}
.y267{bottom:334.974435px;}
.y14b{bottom:335.225100px;}
.y1d9{bottom:336.840150px;}
.y9c{bottom:341.265360px;}
.y2ad{bottom:341.266785px;}
.yf4{bottom:341.266935px;}
.yda{bottom:341.270070px;}
.y167{bottom:341.270625px;}
.y6a{bottom:341.283135px;}
.y19d{bottom:341.294145px;}
.y220{bottom:347.985555px;}
.y21{bottom:348.491275px;}
.y28{bottom:348.493750px;}
.y266{bottom:348.920880px;}
.y1d8{bottom:350.276970px;}
.y2ac{bottom:354.787980px;}
.y9b{bottom:359.293260px;}
.yf3{bottom:359.294820px;}
.yd9{bottom:359.297970px;}
.y166{bottom:359.298525px;}
.y69{bottom:359.311035px;}
.y19c{bottom:359.322045px;}
.y21f{bottom:361.846500px;}
.y265{bottom:362.442075px;}
.y1d7{bottom:363.798165px;}
.y2ab{bottom:368.309175px;}
.y21e{bottom:375.367695px;}
.y264{bottom:376.388505px;}
.y1d6{bottom:377.319360px;}
.y9a{bottom:377.321145px;}
.yf2{bottom:377.322720px;}
.yd8{bottom:377.325855px;}
.y165{bottom:377.326410px;}
.y68{bottom:377.338935px;}
.y19b{bottom:377.349945px;}
.y2aa{bottom:381.830370px;}
.y21d{bottom:388.888890px;}
.y263{bottom:389.909700px;}
.y20{bottom:394.152310px;}
.y99{bottom:395.263785px;}
.yf1{bottom:395.265360px;}
.y2a9{bottom:395.266065px;}
.yd7{bottom:395.268495px;}
.y164{bottom:395.269050px;}
.y108{bottom:395.275650px;}
.y67{bottom:395.281575px;}
.y19a{bottom:395.292570px;}
.y21c{bottom:402.835320px;}
.y262{bottom:403.430895px;}
.y1d5{bottom:405.467610px;}
.y2a8{bottom:408.787260px;}
.y98{bottom:413.291685px;}
.yf0{bottom:413.293260px;}
.yd6{bottom:413.296395px;}
.y163{bottom:413.296950px;}
.y107{bottom:413.303550px;}
.y66{bottom:413.309460px;}
.y199{bottom:413.320470px;}
.y21b{bottom:416.271015px;}
.y261{bottom:416.866590px;}
.y1d4{bottom:418.904430px;}
.y1f{bottom:419.664550px;}
.y2a7{bottom:422.308455px;}
.y21a{bottom:429.792210px;}
.y260{bottom:430.387785px;}
.y97{bottom:431.319585px;}
.yef{bottom:431.321145px;}
.yd5{bottom:431.324295px;}
.y162{bottom:431.324850px;}
.y106{bottom:431.331450px;}
.y65{bottom:431.337360px;}
.y198{bottom:431.348370px;}
.y1d3{bottom:432.425625px;}
.y2a6{bottom:435.829650px;}
.y1e{bottom:437.693245px;}
.y219{bottom:443.313405px;}
.y25f{bottom:444.334230px;}
.y1d2{bottom:445.946820px;}
.y96{bottom:449.262915px;}
.yee{bottom:449.263785px;}
.y2a5{bottom:449.265345px;}
.yd4{bottom:449.266935px;}
.y161{bottom:449.267490px;}
.y105{bottom:449.274090px;}
.y64{bottom:449.280000px;}
.y197{bottom:449.291010px;}
.y1d{bottom:455.636425px;}
.y218{bottom:456.834600px;}
.y25e{bottom:457.855425px;}
.y2a4{bottom:462.786540px;}
.yed{bottom:467.291685px;}
.yd3{bottom:467.294820px;}
.y160{bottom:467.295375px;}
.y104{bottom:467.301990px;}
.y63{bottom:467.307900px;}
.y196{bottom:467.318895px;}
.y217{bottom:470.695545px;}
.y25d{bottom:471.376620px;}
.y1d1{bottom:474.095070px;}
.y2a3{bottom:476.307735px;}
.y1c{bottom:478.172650px;}
.y216{bottom:484.216740px;}
.yec{bottom:485.319585px;}
.y95{bottom:485.321700px;}
.yd2{bottom:485.322720px;}
.y25c{bottom:485.323050px;}
.y15f{bottom:485.323275px;}
.y103{bottom:485.329875px;}
.y62{bottom:485.335800px;}
.y195{bottom:485.346795px;}
.y1d0{bottom:487.530765px;}
.y2a2{bottom:489.828930px;}
.y1b{bottom:496.201330px;}
.y215{bottom:498.163170px;}
.y25b{bottom:498.844245px;}
.y1cf{bottom:501.051960px;}
.yeb{bottom:503.262915px;}
.y94{bottom:503.264340px;}
.y2a1{bottom:503.264625px;}
.yd1{bottom:503.265360px;}
.y15e{bottom:503.265915px;}
.y61{bottom:503.278425px;}
.y194{bottom:503.289435px;}
.y214{bottom:511.684365px;}
.y25a{bottom:512.279940px;}
.y1a{bottom:514.144510px;}
.y1ce{bottom:514.573155px;}
.y2a0{bottom:516.785820px;}
.y93{bottom:521.292240px;}
.yd0{bottom:521.293260px;}
.y15d{bottom:521.293815px;}
.y60{bottom:521.306325px;}
.y193{bottom:521.317335px;}
.y148{bottom:521.716095px;}
.y14a{bottom:521.716365px;}
.y213{bottom:525.120060px;}
.y259{bottom:526.226385px;}
.y149{bottom:526.393485px;}
.y1cd{bottom:528.094350px;}
.y29f{bottom:530.307015px;}
.y19{bottom:532.173190px;}
.y147{bottom:534.472365px;}
.y212{bottom:539.066505px;}
.y146{bottom:539.149515px;}
.y92{bottom:539.320140px;}
.yea{bottom:539.320575px;}
.ycf{bottom:539.321145px;}
.y15c{bottom:539.321700px;}
.y5f{bottom:539.334225px;}
.y192{bottom:539.345220px;}
.y258{bottom:539.747580px;}
.y29e{bottom:543.828210px;}
.y18{bottom:550.201870px;}
.y211{bottom:552.587700px;}
.y257{bottom:553.694010px;}
.y145{bottom:554.202060px;}
.y1cc{bottom:556.164480px;}
.y91{bottom:557.262765px;}
.ye9{bottom:557.263215px;}
.yce{bottom:557.263785px;}
.y29d{bottom:557.263905px;}
.y15b{bottom:557.264340px;}
.y5e{bottom:557.276865px;}
.y191{bottom:557.287860px;}
.y210{bottom:566.108895px;}
.y256{bottom:567.215205px;}
.y29c{bottom:570.785100px;}
.y17{bottom:572.652595px;}
.y1cb{bottom:574.192380px;}
.y144{bottom:575.206590px;}
.y90{bottom:575.291100px;}
.ycd{bottom:575.291685px;}
.y15a{bottom:575.292240px;}
.y5d{bottom:575.304750px;}
.y190{bottom:575.315760px;}
.y20f{bottom:580.055325px;}
.y255{bottom:580.736400px;}
.y29b{bottom:584.306295px;}
.y16{bottom:590.681275px;}
.y1ca{bottom:592.220265px;}
.ycc{bottom:593.319585px;}
.y159{bottom:593.320140px;}
.y5c{bottom:593.332650px;}
.y18f{bottom:593.343660px;}
.y20e{bottom:593.491020px;}
.y254{bottom:594.172095px;}
.y143{bottom:596.211135px;}
.y29a{bottom:597.827490px;}
.y123{bottom:606.500700px;}
.y20d{bottom:607.012215px;}
.y253{bottom:607.693290px;}
.y15{bottom:608.709955px;}
.y1c9{bottom:610.162905px;}
.y122{bottom:611.177850px;}
.ycb{bottom:611.262765px;}
.y299{bottom:611.263185px;}
.y8f{bottom:611.269005px;}
.y5b{bottom:611.275290px;}
.y18e{bottom:611.286300px;}
.y142{bottom:617.215665px;}
.y20c{bottom:620.958660px;}
.y252{bottom:621.639735px;}
.y298{bottom:624.784380px;}
.y121{bottom:626.230530px;}
.y14{bottom:626.653135px;}
.y1c8{bottom:628.190805px;}
.y8e{bottom:629.296905px;}
.y5a{bottom:629.303190px;}
.y18d{bottom:629.314185px;}
.y20b{bottom:634.479855px;}
.y251{bottom:635.160930px;}
.y140{bottom:638.220285px;}
.y297{bottom:638.305575px;}
.y141{bottom:643.577865px;}
.y13{bottom:644.681815px;}
.y1c7{bottom:646.218705px;}
.y120{bottom:647.235060px;}
.yca{bottom:647.323710px;}
.y8d{bottom:647.324805px;}
.y59{bottom:647.331075px;}
.y18c{bottom:647.342085px;}
.y20a{bottom:647.915550px;}
.y250{bottom:648.682125px;}
.y1bb{bottom:651.744690px;}
.y296{bottom:651.826770px;}
.y13e{bottom:659.225715px;}
.y209{bottom:661.861995px;}
.y24f{bottom:662.628555px;}
.y12{bottom:662.710495px;}
.y1c6{bottom:664.161345px;}
.y13f{bottom:664.582485px;}
.y295{bottom:665.262465px;}
.yc9{bottom:665.266350px;}
.y8c{bottom:665.267430px;}
.y58{bottom:665.273715px;}
.y18b{bottom:665.284725px;}
.y11f{bottom:668.239605px;}
.y1ba{bottom:672.749235px;}
.y208{bottom:675.383175px;}
.y24e{bottom:676.064250px;}
.y294{bottom:678.783660px;}
.y13d{bottom:680.230260px;}
.y11{bottom:680.653675px;}
.y1c5{bottom:682.189230px;}
.yc8{bottom:683.294250px;}
.y8b{bottom:683.295330px;}
.y57{bottom:683.301615px;}
.y18a{bottom:683.312625px;}
.y207{bottom:688.904370px;}
.y11e{bottom:689.244135px;}
.y24d{bottom:689.585445px;}
.y293{bottom:692.304855px;}
.y1b9{bottom:693.753765px;}
.y10{bottom:698.682355px;}
.y1c4{bottom:700.217130px;}
.y13c{bottom:701.234790px;}
.yc7{bottom:701.322150px;}
.y8a{bottom:701.323230px;}
.y56{bottom:701.329515px;}
.y189{bottom:701.340510px;}
.y206{bottom:702.340080px;}
.y24c{bottom:703.531890px;}
.y292{bottom:705.826050px;}
.y11d{bottom:710.248680px;}
.y1b8{bottom:714.758310px;}
.y205{bottom:716.286435px;}
.y24b{bottom:717.053085px;}
.y1c3{bottom:718.159770px;}
.y291{bottom:719.261745px;}
.yc6{bottom:719.264775px;}
.y89{bottom:719.265870px;}
.y55{bottom:719.272155px;}
.y188{bottom:719.283150px;}
.yf{bottom:721.133080px;}
.y13b{bottom:722.239335px;}
.y24a{bottom:730.574280px;}
.y11b{bottom:731.254965px;}
.y290{bottom:732.782940px;}
.y1b7{bottom:735.762840px;}
.y1c2{bottom:736.187670px;}
.y11c{bottom:736.525815px;}
.yc5{bottom:737.292675px;}
.y88{bottom:737.293770px;}
.y54{bottom:737.300040px;}
.y187{bottom:737.311050px;}
.ye{bottom:739.161760px;}
.y13a{bottom:743.243865px;}
.y249{bottom:744.009975px;}
.y28f{bottom:746.304135px;}
.y11a{bottom:752.259495px;}
.y1c1{bottom:754.215555px;}
.yc4{bottom:755.320575px;}
.y87{bottom:755.321655px;}
.y53{bottom:755.327940px;}
.y186{bottom:755.338950px;}
.y1b6{bottom:756.767370px;}
.yd{bottom:757.190440px;}
.y248{bottom:757.531170px;}
.y28e{bottom:759.825330px;}
.y138{bottom:764.248980px;}
.y139{bottom:769.520970px;}
.y247{bottom:771.477600px;}
.y1c0{bottom:772.158195px;}
.y28d{bottom:773.262150px;}
.y204{bottom:773.262315px;}
.yc3{bottom:773.263215px;}
.y119{bottom:773.264040px;}
.y86{bottom:773.264295px;}
.y52{bottom:773.270580px;}
.y185{bottom:773.281575px;}
.y1b5{bottom:777.686715px;}
.yc{bottom:784.147825px;}
.y246{bottom:784.998795px;}
.y137{bottom:785.253525px;}
.y28c{bottom:786.783345px;}
.y1bf{bottom:790.186095px;}
.yc2{bottom:791.291100px;}
.y85{bottom:791.292195px;}
.y51{bottom:791.298480px;}
.y184{bottom:791.309475px;}
.y118{bottom:794.183370px;}
.y245{bottom:798.519990px;}
.y1b4{bottom:798.691245px;}
.y28b{bottom:800.304540px;}
.y203{bottom:800.304705px;}
.y136{bottom:806.258055px;}
.y1be{bottom:808.213995px;}
.yc1{bottom:809.319495px;}
.y84{bottom:809.320095px;}
.y50{bottom:809.326365px;}
.y183{bottom:809.337375px;}
.y244{bottom:812.041185px;}
.y28a{bottom:813.825735px;}
.y202{bottom:813.825900px;}
.y117{bottom:815.187915px;}
.y1b3{bottom:819.695790px;}
.y243{bottom:825.478005px;}
.y1bd{bottom:826.157220px;}
.y289{bottom:827.262555px;}
.y83{bottom:827.262720px;}
.y200{bottom:827.263005px;}
.y134{bottom:827.263185px;}
.y4f{bottom:827.269005px;}
.y182{bottom:827.280015px;}
.y201{bottom:832.280085px;}
.y135{bottom:832.535250px;}
.y116{bottom:836.192445px;}
.y242{bottom:839.424450px;}
.y1b2{bottom:840.700320px;}
.y288{bottom:840.783750px;}
.y1ff{bottom:840.784200px;}
.y9{bottom:841.889560px;}
.yb{bottom:841.889575px;}
.y82{bottom:845.291100px;}
.yc0{bottom:845.296380px;}
.y4e{bottom:845.296905px;}
.y181{bottom:845.307900px;}
.y133{bottom:848.182530px;}
.ya{bottom:849.288055px;}
.y241{bottom:852.945645px;}
.y287{bottom:854.304945px;}
.y1fc{bottom:854.305350px;}
.y1fe{bottom:854.305395px;}
.y115{bottom:857.196975px;}
.y1fd{bottom:859.322565px;}
.y1b1{bottom:861.704865px;}
.y5{bottom:862.894240px;}
.y7{bottom:862.894255px;}
.ybf{bottom:863.324280px;}
.y4d{bottom:863.324805px;}
.y180{bottom:863.335800px;}
.y240{bottom:866.466840px;}
.y1f9{bottom:867.825900px;}
.y286{bottom:867.826140px;}
.y1fb{bottom:867.826545px;}
.y132{bottom:869.187195px;}
.y130{bottom:869.187240px;}
.y6{bottom:870.292705px;}
.y8{bottom:870.292720px;}
.y1fa{bottom:872.758755px;}
.y131{bottom:874.544685px;}
.y114{bottom:878.201520px;}
.y23f{bottom:879.988035px;}
.y1f8{bottom:881.262720px;}
.y1f6{bottom:881.262870px;}
.y285{bottom:881.262960px;}
.y81{bottom:881.263215px;}
.ybe{bottom:881.266920px;}
.y4c{bottom:881.267430px;}
.y17f{bottom:881.278440px;}
.y1b0{bottom:882.709395px;}
.y1f7{bottom:886.280085px;}
.y12f{bottom:890.191770px;}
.y23e{bottom:893.424855px;}
.y1f5{bottom:894.784065px;}
.y284{bottom:894.784155px;}
.y1f3{bottom:894.784200px;}
.y4{bottom:898.952125px;}
.y113{bottom:899.206050px;}
.y111{bottom:899.207205px;}
.y80{bottom:899.291100px;}
.ybd{bottom:899.294805px;}
.y4b{bottom:899.295330px;}
.y17e{bottom:899.306340px;}
.y1f4{bottom:899.801415px;}
.y1af{bottom:903.713925px;}
.y112{bottom:904.563630px;}
.y23d{bottom:907.371285px;}
.y283{bottom:908.305350px;}
.y1f2{bottom:908.305395px;}
.y12d{bottom:911.196765px;}
.y1f1{bottom:913.322565px;}
.y12e{bottom:916.554105px;}
.y7f{bottom:917.319495px;}
.ybc{bottom:917.322705px;}
.y4a{bottom:917.323230px;}
.y17d{bottom:917.334240px;}
.y110{bottom:920.211735px;}
.y23c{bottom:920.892480px;}
.y282{bottom:921.826545px;}
.y1f0{bottom:921.826695px;}
.y1ae{bottom:924.718470px;}
.y12c{bottom:932.201295px;}
.y23b{bottom:934.413675px;}
.y7e{bottom:935.262720px;}
.ybb{bottom:935.265345px;}
.y49{bottom:935.265870px;}
.y281{bottom:935.269830px;}
.y17c{bottom:935.276865px;}
.y3{bottom:937.900690px;}
.y10f{bottom:941.216265px;}
.y1ad{bottom:945.723000px;}
.y23a{bottom:947.934870px;}
.y1ef{bottom:948.784725px;}
.y280{bottom:948.791025px;}
.y12a{bottom:953.206050px;}
.yba{bottom:953.293245px;}
.y48{bottom:953.293770px;}
.y17b{bottom:953.304765px;}
.y12b{bottom:958.563630px;}
.y239{bottom:961.370565px;}
.y10e{bottom:962.220810px;}
.y1ee{bottom:962.305920px;}
.y27f{bottom:962.312220px;}
.y1ac{bottom:966.727545px;}
.yb9{bottom:971.321145px;}
.y47{bottom:971.321655px;}
.y17a{bottom:971.332665px;}
.y7d{bottom:971.345175px;}
.y128{bottom:974.210640px;}
.y238{bottom:975.317010px;}
.y1ed{bottom:975.827100px;}
.y27e{bottom:975.833415px;}
.y2{bottom:976.932040px;}
.y129{bottom:979.568205px;}
.y10d{bottom:983.225340px;}
.y1ab{bottom:987.732075px;}
.y237{bottom:988.838205px;}
.y1ec{bottom:989.262810px;}
.yb8{bottom:989.263770px;}
.y46{bottom:989.264295px;}
.y27d{bottom:989.269110px;}
.y179{bottom:989.275305px;}
.y7c{bottom:989.287815px;}
.y127{bottom:993.939600px;}
.y236{bottom:1002.359400px;}
.y1eb{bottom:1002.784005px;}
.y27c{bottom:1002.790305px;}
.y10c{bottom:1004.229885px;}
.yb7{bottom:1007.291670px;}
.y45{bottom:1007.292195px;}
.y178{bottom:1007.303190px;}
.y7b{bottom:1007.315715px;}
.y126{bottom:1007.461035px;}
.y1ea{bottom:1016.305185px;}
.y235{bottom:1016.305830px;}
.y27b{bottom:1016.311500px;}
.y10b{bottom:1023.958830px;}
.yb6{bottom:1025.319570px;}
.y44{bottom:1025.320095px;}
.y177{bottom:1025.331090px;}
.y7a{bottom:1025.343615px;}
.y124{bottom:1027.189635px;}
.y1e9{bottom:1029.826380px;}
.y234{bottom:1029.827025px;}
.y27a{bottom:1029.832695px;}
.y125{bottom:1033.143030px;}
.y1{bottom:1033.908345px;}
.y1e8{bottom:1043.262090px;}
.yb5{bottom:1043.262210px;}
.y43{bottom:1043.262720px;}
.y279{bottom:1043.268390px;}
.y176{bottom:1043.273730px;}
.y79{bottom:1043.286240px;}
.y109{bottom:1043.687985px;}
.y10a{bottom:1049.640570px;}
.y42{bottom:1112.825605px;}
.yab{bottom:1127.791815px;}
.y41{bottom:1127.791825px;}
.y1bc{bottom:1127.793135px;}
.h14{height:20.185549px;}
.ha{height:24.686050px;}
.h13{height:26.331885px;}
.h11{height:29.624050px;}
.h15{height:30.281567px;}
.h16{height:32.444567px;}
.hb{height:34.565506px;}
.hd{height:34.607567px;}
.h5{height:36.208873px;}
.h9{height:37.034506px;}
.h12{height:39.503506px;}
.he{height:39.799633px;}
.hf{height:41.688775px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h6{height:43.939800px;}
.h10{height:44.442000px;}
.h7{height:49.380494px;}
.h4{height:54.318494px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039365px;}
.x11{left:89.036250px;}
.x1{left:91.077150px;}
.xe{left:94.818900px;}
.x13{left:97.030020px;}
.x35{left:107.574690px;}
.x15{left:123.392100px;}
.x18{left:183.259800px;}
.x19{left:187.681800px;}
.x17{left:189.722850px;}
.xb{left:235.729035px;}
.x3{left:238.110165px;}
.xc{left:246.018900px;}
.x4{left:269.149500px;}
.x12{left:270.680250px;}
.x14{left:327.741600px;}
.x1a{left:331.143315px;}
.x1b{left:334.629885px;}
.x16{left:375.193650px;}
.x5{left:398.749515px;}
.x6{left:404.362065px;}
.xd{left:405.977835px;}
.xf{left:457.085205px;}
.x23{left:460.743165px;}
.x10{left:469.075875px;}
.x34{left:479.621805px;}
.x2c{left:486.935250px;}
.x2d{left:491.017185px;}
.x21{left:495.439185px;}
.x2e{left:527.073900px;}
.x2f{left:531.070635px;}
.x24{left:551.905335px;}
.x25{left:556.157415px;}
.x22{left:561.769965px;}
.x7{left:569.848665px;}
.x8{left:575.461215px;}
.x1d{left:587.451915px;}
.x28{left:592.129035px;}
.x30{left:603.354165px;}
.x2b{left:606.925785px;}
.x29{left:654.717915px;}
.x2a{left:658.544685px;}
.x32{left:676.743165px;}
.x33{left:680.825085px;}
.x1e{left:683.035530px;}
.x26{left:694.516335px;}
.x27{left:697.917885px;}
.x9{left:724.790400px;}
.x1c{left:726.406215px;}
.xa{left:730.402950px;}
.x31{left:733.549485px;}
.x1f{left:770.965620px;}
.x20{left:803.026605px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6a{letter-spacing:-1.730009pt;}
.ls68{letter-spacing:-1.719556pt;}
.ls10{letter-spacing:-1.641157pt;}
.ls12{letter-spacing:-1.635930pt;}
.lsc{letter-spacing:-1.630703pt;}
.ls11{letter-spacing:-1.620250pt;}
.ls6b{letter-spacing:-1.615024pt;}
.lsb{letter-spacing:-1.604570pt;}
.lsd{letter-spacing:-1.573211pt;}
.ls69{letter-spacing:-1.489585pt;}
.ls5b{letter-spacing:-1.322333pt;}
.ls59{letter-spacing:-1.296200pt;}
.ls35{letter-spacing:-1.285747pt;}
.ls39{letter-spacing:-1.280520pt;}
.ls58{letter-spacing:-1.275294pt;}
.ls38{letter-spacing:-1.270067pt;}
.ls5c{letter-spacing:-1.264840pt;}
.ls34{letter-spacing:-1.254387pt;}
.ls5a{letter-spacing:-1.243934pt;}
.ls36{letter-spacing:-1.233481pt;}
.ls3b{letter-spacing:-1.223028pt;}
.ls3a{letter-spacing:-1.217801pt;}
.ls37{letter-spacing:-1.207348pt;}
.ls3c{letter-spacing:-1.175988pt;}
.ls1b{letter-spacing:-1.076682pt;}
.ls8{letter-spacing:-1.072011pt;}
.ls40{letter-spacing:-1.045323pt;}
.ls5{letter-spacing:-1.034677pt;}
.ls27{letter-spacing:-1.029643pt;}
.ls4d{letter-spacing:-1.019190pt;}
.ls55{letter-spacing:-1.013963pt;}
.ls71{letter-spacing:-1.011987pt;}
.ls26{letter-spacing:-1.008736pt;}
.ls1f{letter-spacing:-1.003505pt;}
.ls3d{letter-spacing:-0.998283pt;}
.ls25{letter-spacing:-0.993057pt;}
.ls21{letter-spacing:-0.987830pt;}
.ls23{letter-spacing:-0.982603pt;}
.ls1a{letter-spacing:-0.977377pt;}
.ls7{letter-spacing:-0.976010pt;}
.ls24{letter-spacing:-0.972145pt;}
.ls1c{letter-spacing:-0.966923pt;}
.ls6{letter-spacing:-0.965343pt;}
.ls14{letter-spacing:-0.961697pt;}
.ls3e{letter-spacing:-0.956470pt;}
.ls22{letter-spacing:-0.951244pt;}
.ls20{letter-spacing:-0.946017pt;}
.ls16{letter-spacing:-0.940790pt;}
.ls1d{letter-spacing:-0.935564pt;}
.ls15{letter-spacing:-0.930337pt;}
.ls3{letter-spacing:-0.928009pt;}
.ls13{letter-spacing:-0.925111pt;}
.ls5e{letter-spacing:-0.919884pt;}
.ls19{letter-spacing:-0.914657pt;}
.ls32{letter-spacing:-0.909431pt;}
.ls4c{letter-spacing:-0.904204pt;}
.ls3f{letter-spacing:-0.898977pt;}
.ls41{letter-spacing:-0.893751pt;}
.ls4{letter-spacing:-0.890676pt;}
.ls56{letter-spacing:-0.888524pt;}
.ls6e{letter-spacing:-0.878071pt;}
.ls1e{letter-spacing:-0.872844pt;}
.ls18{letter-spacing:-0.867618pt;}
.ls4b{letter-spacing:-0.862391pt;}
.ls6d{letter-spacing:-0.825805pt;}
.ls5f{letter-spacing:-0.815352pt;}
.ls4f{letter-spacing:-0.787722pt;}
.ls72{letter-spacing:-0.779990pt;}
.ls17{letter-spacing:-0.778765pt;}
.ls33{letter-spacing:-0.742179pt;}
.ls2{letter-spacing:-0.741341pt;}
.ls73{letter-spacing:-0.699991pt;}
.ls1{letter-spacing:-0.677340pt;}
.ls4e{letter-spacing:-0.020906pt;}
.ls9{letter-spacing:-0.010453pt;}
.lsa{letter-spacing:-0.005227pt;}
.ls0{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.004000pt;}
.lse{letter-spacing:0.005227pt;}
.ls42{letter-spacing:0.010453pt;}
.ls28{letter-spacing:0.020906pt;}
.ls2b{letter-spacing:0.026114pt;}
.ls29{letter-spacing:0.026167pt;}
.ls66{letter-spacing:0.043995pt;}
.ls65{letter-spacing:0.051986pt;}
.ls62{letter-spacing:0.052042pt;}
.ls47{letter-spacing:0.093845pt;}
.ls45{letter-spacing:0.093899pt;}
.ls70{letter-spacing:0.135995pt;}
.ls54{letter-spacing:0.136480pt;}
.ls4a{letter-spacing:0.136533pt;}
.ls31{letter-spacing:0.177655pt;}
.ls61{letter-spacing:0.260000pt;}
.ls53{letter-spacing:0.513600pt;}
.ls51{letter-spacing:0.517435pt;}
.ls5d{letter-spacing:0.554021pt;}
.ls52{letter-spacing:0.569701pt;}
.ls49{letter-spacing:6.783377pt;}
.ls50{letter-spacing:7.190297pt;}
.ls44{letter-spacing:7.388177pt;}
.ls48{letter-spacing:8.174832pt;}
.ls46{letter-spacing:8.477765pt;}
.ls43{letter-spacing:9.686400pt;}
.ls2d{letter-spacing:10.458481pt;}
.ls67{letter-spacing:11.819835pt;}
.ls60{letter-spacing:12.003802pt;}
.ls64{letter-spacing:12.139835pt;}
.ls2a{letter-spacing:15.444674pt;}
.lsf{letter-spacing:15.664135pt;}
.ls6c{letter-spacing:16.814015pt;}
.ls2c{letter-spacing:20.582434pt;}
.ls6f{letter-spacing:23.200937pt;}
.ls2e{letter-spacing:24.512834pt;}
.ls2f{letter-spacing:25.422274pt;}
.ls30{letter-spacing:25.683572pt;}
.ls57{letter-spacing:27.695824pt;}
.ws189{word-spacing:-27.748090pt;}
.ws1da{word-spacing:-23.253203pt;}
.ws1c8{word-spacing:-16.866281pt;}
.ws14e{word-spacing:-7.227630pt;}
.ws1b7{word-spacing:-0.561600pt;}
.ws20{word-spacing:-0.054933pt;}
.ws12{word-spacing:-0.053334pt;}
.ws4a{word-spacing:-0.052266pt;}
.ws91{word-spacing:-0.049067pt;}
.ws147{word-spacing:-0.042666pt;}
.ws34{word-spacing:-0.039999pt;}
.ws42{word-spacing:0.000000pt;}
.ws249{word-spacing:0.659991pt;}
.wsc1{word-spacing:0.689913pt;}
.ws188{word-spacing:0.836258pt;}
.ws237{word-spacing:0.971987pt;}
.ws15f{word-spacing:6.574306pt;}
.ws141{word-spacing:7.455360pt;}
.ws1bb{word-spacing:8.068166pt;}
.ws145{word-spacing:8.217498pt;}
.ws146{word-spacing:8.520427pt;}
.ws15e{word-spacing:8.881473pt;}
.ws14f{word-spacing:8.997205pt;}
.ws14d{word-spacing:9.247335pt;}
.ws137{word-spacing:9.283200pt;}
.ws152{word-spacing:9.322000pt;}
.ws151{word-spacing:9.415332pt;}
.ws208{word-spacing:9.587872pt;}
.ws150{word-spacing:9.590796pt;}
.ws23b{word-spacing:9.607872pt;}
.ws243{word-spacing:9.631872pt;}
.ws21e{word-spacing:9.635871pt;}
.ws247{word-spacing:9.647871pt;}
.ws241{word-spacing:9.651871pt;}
.ws1ea{word-spacing:9.655871pt;}
.ws209{word-spacing:9.671871pt;}
.ws242{word-spacing:9.675871pt;}
.ws222{word-spacing:9.699871pt;}
.ws1e9{word-spacing:9.719870pt;}
.ws248{word-spacing:9.723871pt;}
.ws1e2{word-spacing:9.739870pt;}
.ws23c{word-spacing:9.783870pt;}
.ws1e1{word-spacing:9.787869pt;}
.ws21f{word-spacing:9.799869pt;}
.ws20d{word-spacing:9.807869pt;}
.ws1e3{word-spacing:9.843869pt;}
.ws220{word-spacing:9.847869pt;}
.ws23a{word-spacing:9.899868pt;}
.ws235{word-spacing:9.915867pt;}
.ws240{word-spacing:9.943868pt;}
.ws221{word-spacing:10.079866pt;}
.ws20c{word-spacing:10.147865pt;}
.ws236{word-spacing:10.187864pt;}
.ws1ec{word-spacing:10.195864pt;}
.ws21d{word-spacing:10.223864pt;}
.ws20b{word-spacing:10.227864pt;}
.ws1e8{word-spacing:10.371861pt;}
.ws20a{word-spacing:10.399861pt;}
.ws1eb{word-spacing:10.431861pt;}
.wsbd{word-spacing:10.458428pt;}
.ws244{word-spacing:10.507860pt;}
.ws33{word-spacing:10.563860pt;}
.ws14c{word-spacing:10.744380pt;}
.ws39{word-spacing:11.065442pt;}
.ws3b{word-spacing:11.113975pt;}
.wsb1{word-spacing:11.122233pt;}
.ws3d{word-spacing:11.136374pt;}
.ws3a{word-spacing:11.140107pt;}
.ws3e{word-spacing:11.166241pt;}
.ws140{word-spacing:11.229706pt;}
.ws3c{word-spacing:11.248372pt;}
.ws23f{word-spacing:11.251850pt;}
.ws13f{word-spacing:11.285705pt;}
.ws21a{word-spacing:11.687845pt;}
.ws224{word-spacing:11.695844pt;}
.ws218{word-spacing:11.703844pt;}
.ws215{word-spacing:11.707843pt;}
.ws1fa{word-spacing:11.719844pt;}
.ws239{word-spacing:11.731843pt;}
.ws23d{word-spacing:11.735843pt;}
.ws21c{word-spacing:11.747844pt;}
.ws207{word-spacing:11.755843pt;}
.ws203{word-spacing:11.759843pt;}
.ws22a{word-spacing:11.763844pt;}
.ws216{word-spacing:11.767843pt;}
.ws20e{word-spacing:11.771843pt;}
.ws21b{word-spacing:11.775843pt;}
.ws200{word-spacing:11.779843pt;}
.ws213{word-spacing:11.791842pt;}
.ws206{word-spacing:11.795842pt;}
.ws1fe{word-spacing:11.799843pt;}
.ws1e4{word-spacing:11.807843pt;}
.ws22d{word-spacing:11.811842pt;}
.ws22f{word-spacing:11.815842pt;}
.ws1e5{word-spacing:11.819842pt;}
.ws1f4{word-spacing:11.823843pt;}
.ws246{word-spacing:11.827843pt;}
.ws1fc{word-spacing:11.831842pt;}
.ws226{word-spacing:11.835842pt;}
.ws1fd{word-spacing:11.839842pt;}
.ws214{word-spacing:11.843842pt;}
.ws231{word-spacing:11.847842pt;}
.ws245{word-spacing:11.851842pt;}
.ws22c{word-spacing:11.855842pt;}
.ws38{word-spacing:11.859842pt;}
.ws22e{word-spacing:11.863842pt;}
.ws1e7{word-spacing:11.883842pt;}
.ws24a{word-spacing:11.887842pt;}
.ws230{word-spacing:11.891841pt;}
.ws211{word-spacing:11.895841pt;}
.ws202{word-spacing:11.899842pt;}
.ws212{word-spacing:11.903842pt;}
.ws228{word-spacing:11.907842pt;}
.ws238{word-spacing:11.911841pt;}
.ws1ef{word-spacing:11.915841pt;}
.ws229{word-spacing:11.919841pt;}
.ws205{word-spacing:11.923841pt;}
.ws35{word-spacing:11.927841pt;}
.ws1e0{word-spacing:11.931841pt;}
.ws1ee{word-spacing:11.939841pt;}
.ws210{word-spacing:11.947841pt;}
.ws1e6{word-spacing:11.951840pt;}
.ws1ff{word-spacing:11.963841pt;}
.ws22b{word-spacing:11.967841pt;}
.ws1f1{word-spacing:11.971840pt;}
.ws232{word-spacing:11.987841pt;}
.ws1df{word-spacing:11.991840pt;}
.ws1f2{word-spacing:11.995840pt;}
.ws223{word-spacing:11.999840pt;}
.ws1f0{word-spacing:12.003840pt;}
.ws1de{word-spacing:12.011839pt;}
.ws204{word-spacing:12.019840pt;}
.ws219{word-spacing:12.027839pt;}
.ws227{word-spacing:12.039839pt;}
.ws225{word-spacing:12.059839pt;}
.ws234{word-spacing:12.063840pt;}
.ws1f5{word-spacing:12.067839pt;}
.ws36{word-spacing:12.071839pt;}
.ws233{word-spacing:12.075839pt;}
.ws37{word-spacing:12.079839pt;}
.ws20f{word-spacing:12.083839pt;}
.ws1f8{word-spacing:12.087839pt;}
.ws1f7{word-spacing:12.091838pt;}
.ws1fb{word-spacing:12.095838pt;}
.ws1f9{word-spacing:12.139838pt;}
.ws217{word-spacing:12.147838pt;}
.ws1f3{word-spacing:12.163838pt;}
.ws1dd{word-spacing:12.191837pt;}
.ws1dc{word-spacing:12.191862pt;}
.ws201{word-spacing:12.251836pt;}
.ws153{word-spacing:12.270780pt;}
.ws1f6{word-spacing:12.279836pt;}
.ws15c{word-spacing:12.292113pt;}
.ws1ed{word-spacing:12.339835pt;}
.ws1bc{word-spacing:12.390245pt;}
.ws148{word-spacing:12.415845pt;}
.ws40{word-spacing:12.424355pt;}
.ws13a{word-spacing:12.424378pt;}
.ws156{word-spacing:12.432911pt;}
.ws139{word-spacing:12.437178pt;}
.ws155{word-spacing:12.445712pt;}
.ws13b{word-spacing:12.475577pt;}
.ws15d{word-spacing:12.505444pt;}
.ws13e{word-spacing:12.509711pt;}
.ws15b{word-spacing:12.513976pt;}
.ws1ba{word-spacing:12.526777pt;}
.ws14b{word-spacing:12.535310pt;}
.ws131{word-spacing:12.538645pt;}
.ws159{word-spacing:12.573710pt;}
.ws26{word-spacing:12.590911pt;}
.ws138{word-spacing:12.595043pt;}
.ws13d{word-spacing:12.599309pt;}
.ws144{word-spacing:12.612109pt;}
.ws157{word-spacing:12.637709pt;}
.wsac{word-spacing:12.667575pt;}
.ws41{word-spacing:12.710241pt;}
.ws149{word-spacing:12.723041pt;}
.ws13c{word-spacing:12.774240pt;}
.ws14a{word-spacing:12.778507pt;}
.ws3f{word-spacing:12.851046pt;}
.ws1a8{word-spacing:12.883602pt;}
.ws12c{word-spacing:13.087439pt;}
.wsfa{word-spacing:13.139705pt;}
.ws2a{word-spacing:13.171066pt;}
.ws4f{word-spacing:13.186745pt;}
.ws115{word-spacing:13.233785pt;}
.ws134{word-spacing:13.259918pt;}
.wsca{word-spacing:13.275598pt;}
.wsa{word-spacing:13.317467pt;}
.ws15{word-spacing:13.322800pt;}
.ws2f{word-spacing:13.343543pt;}
.ws12d{word-spacing:13.390584pt;}
.wsf{word-spacing:13.397467pt;}
.wsee{word-spacing:13.442850pt;}
.ws1a9{word-spacing:13.474209pt;}
.ws13{word-spacing:13.509468pt;}
.wsb{word-spacing:13.525469pt;}
.ws14{word-spacing:13.605470pt;}
.ws130{word-spacing:13.610101pt;}
.ws18{word-spacing:13.621484pt;}
.ws16c{word-spacing:13.651915pt;}
.ws17{word-spacing:13.696136pt;}
.ws10{word-spacing:13.728137pt;}
.wse{word-spacing:13.946806pt;}
.wsc{word-spacing:14.010807pt;}
.ws16{word-spacing:14.074807pt;}
.ws143{word-spacing:14.092800pt;}
.wsf8{word-spacing:14.221615pt;}
.ws142{word-spacing:14.275200pt;}
.ws135{word-spacing:14.280000pt;}
.ws136{word-spacing:14.294400pt;}
.ws114{word-spacing:14.378414pt;}
.ws1a3{word-spacing:14.399320pt;}
.ws17c{word-spacing:14.404546pt;}
.ws1c6{word-spacing:14.414999pt;}
.ws4c{word-spacing:14.482946pt;}
.ws12a{word-spacing:14.561345pt;}
.ws1b2{word-spacing:14.582251pt;}
.ws1b0{word-spacing:14.660650pt;}
.ws182{word-spacing:14.681557pt;}
.ws97{word-spacing:14.685812pt;}
.ws62{word-spacing:14.718143pt;}
.ws169{word-spacing:14.733822pt;}
.ws121{word-spacing:14.739050pt;}
.wse8{word-spacing:14.775636pt;}
.ws133{word-spacing:14.786089pt;}
.ws1b5{word-spacing:14.801769pt;}
.ws184{word-spacing:14.812216pt;}
.wsda{word-spacing:14.823202pt;}
.ws1db{word-spacing:14.848808pt;}
.ws17d{word-spacing:14.854036pt;}
.wscf{word-spacing:14.872269pt;}
.ws82{word-spacing:14.891895pt;}
.ws5d{word-spacing:14.906301pt;}
.ws192{word-spacing:14.927208pt;}
.wsf0{word-spacing:14.936055pt;}
.ws107{word-spacing:14.969021pt;}
.ws17e{word-spacing:14.979473pt;}
.ws178{word-spacing:14.995154pt;}
.wsf2{word-spacing:15.010834pt;}
.ws7c{word-spacing:15.016060pt;}
.ws10e{word-spacing:15.021287pt;}
.ws1ca{word-spacing:15.026513pt;}
.ws191{word-spacing:15.031739pt;}
.ws179{word-spacing:15.036966pt;}
.wse7{word-spacing:15.052646pt;}
.wsd{word-spacing:15.088141pt;}
.ws92{word-spacing:15.094459pt;}
.ws1f{word-spacing:15.120152pt;}
.ws19d{word-spacing:15.120592pt;}
.ws170{word-spacing:15.157179pt;}
.ws12b{word-spacing:15.183312pt;}
.ws1a{word-spacing:15.184152pt;}
.ws199{word-spacing:15.198992pt;}
.wsbb{word-spacing:15.225124pt;}
.ws19{word-spacing:15.258820pt;}
.ws48{word-spacing:15.287844pt;}
.wsba{word-spacing:15.293071pt;}
.ws8d{word-spacing:15.303524pt;}
.ws1c{word-spacing:15.333486pt;}
.ws1e{word-spacing:15.354843pt;}
.ws1d{word-spacing:15.376154pt;}
.wsb7{word-spacing:15.397603pt;}
.ws8c{word-spacing:15.408056pt;}
.ws1b{word-spacing:15.424154pt;}
.ws7d{word-spacing:15.465548pt;}
.ws56{word-spacing:15.470775pt;}
.ws96{word-spacing:15.502136pt;}
.ws6a{word-spacing:15.512588pt;}
.ws11{word-spacing:15.525493pt;}
.ws1c1{word-spacing:15.533494pt;}
.wsbf{word-spacing:15.585761pt;}
.wsfd{word-spacing:15.590987pt;}
.wsff{word-spacing:15.596208pt;}
.ws5a{word-spacing:15.596214pt;}
.ws181{word-spacing:15.601440pt;}
.wsab{word-spacing:15.611895pt;}
.wsce{word-spacing:15.622347pt;}
.ws1c4{word-spacing:15.638027pt;}
.ws24{word-spacing:15.638028pt;}
.wsd9{word-spacing:15.653707pt;}
.ws81{word-spacing:15.685067pt;}
.ws197{word-spacing:15.690293pt;}
.ws53{word-spacing:15.700746pt;}
.ws111{word-spacing:15.705973pt;}
.ws9e{word-spacing:15.753012pt;}
.ws46{word-spacing:15.753013pt;}
.ws29{word-spacing:15.768693pt;}
.ws127{word-spacing:15.794825pt;}
.ws84{word-spacing:15.805278pt;}
.ws122{word-spacing:15.894132pt;}
.ws1c7{word-spacing:15.909810pt;}
.wscd{word-spacing:15.915038pt;}
.ws11e{word-spacing:15.925491pt;}
.ws86{word-spacing:16.019564pt;}
.ws4d{word-spacing:16.061382pt;}
.ws1d4{word-spacing:16.134555pt;}
.wsa7{word-spacing:16.139781pt;}
.wsaf{word-spacing:16.197275pt;}
.ws61{word-spacing:16.239087pt;}
.ws124{word-spacing:16.265221pt;}
.wsf6{word-spacing:16.280901pt;}
.ws9b{word-spacing:16.307034pt;}
.wsc4{word-spacing:16.327940pt;}
.ws73{word-spacing:16.343620pt;}
.ws60{word-spacing:16.359300pt;}
.ws16a{word-spacing:16.369753pt;}
.ws168{word-spacing:16.495192pt;}
.ws9{word-spacing:16.533529pt;}
.ws72{word-spacing:16.552684pt;}
.ws63{word-spacing:16.578818pt;}
.ws30{word-spacing:16.594497pt;}
.ws2e{word-spacing:16.787883pt;}
.wsf7{word-spacing:16.798335pt;}
.ws5b{word-spacing:16.834921pt;}
.ws173{word-spacing:16.834922pt;}
.ws51{word-spacing:16.840149pt;}
.ws16e{word-spacing:16.892414pt;}
.wsea{word-spacing:16.944681pt;}
.ws89{word-spacing:16.970814pt;}
.ws54{word-spacing:16.976040pt;}
.ws5c{word-spacing:17.023079pt;}
.ws1d8{word-spacing:17.043987pt;}
.ws11d{word-spacing:17.049212pt;}
.ws19c{word-spacing:17.101479pt;}
.wsd8{word-spacing:17.117159pt;}
.ws1ab{word-spacing:17.179879pt;}
.wsd3{word-spacing:17.190331pt;}
.ws8{word-spacing:17.430026pt;}
.ws4{word-spacing:17.453492pt;}
.ws3{word-spacing:17.506292pt;}
.ws108{word-spacing:17.509154pt;}
.ws16f{word-spacing:17.540514pt;}
.ws5{word-spacing:17.570826pt;}
.ws6{word-spacing:17.576694pt;}
.ws1a6{word-spacing:17.587554pt;}
.ws18e{word-spacing:17.624141pt;}
.ws1aa{word-spacing:17.650273pt;}
.wsc9{word-spacing:17.681632pt;}
.ws19a{word-spacing:17.707765pt;}
.ws19b{word-spacing:17.723446pt;}
.ws7{word-spacing:17.735094pt;}
.ws90{word-spacing:17.791392pt;}
.ws196{word-spacing:17.848885pt;}
.ws126{word-spacing:17.890697pt;}
.wsb8{word-spacing:17.922057pt;}
.ws87{word-spacing:17.990003pt;}
.ws128{word-spacing:18.005683pt;}
.ws52{word-spacing:18.010910pt;}
.ws4e{word-spacing:18.073628pt;}
.wscb{word-spacing:18.115442pt;}
.ws17b{word-spacing:18.146802pt;}
.wsec{word-spacing:18.152028pt;}
.wse6{word-spacing:18.219975pt;}
.wse5{word-spacing:18.261788pt;}
.ws11a{word-spacing:18.287920pt;}
.ws25{word-spacing:18.329733pt;}
.ws1b4{word-spacing:18.376772pt;}
.ws1d2{word-spacing:18.413359pt;}
.ws7a{word-spacing:18.418585pt;}
.ws43{word-spacing:18.481305pt;}
.ws166{word-spacing:18.486532pt;}
.ws1b3{word-spacing:18.554477pt;}
.ws50{word-spacing:18.753088pt;}
.wsf5{word-spacing:18.784448pt;}
.ws27{word-spacing:18.789675pt;}
.ws1d6{word-spacing:18.826261pt;}
.ws105{word-spacing:18.857621pt;}
.ws177{word-spacing:18.930793pt;}
.wsc6{word-spacing:18.941246pt;}
.ws1d5{word-spacing:18.962153pt;}
.ws103{word-spacing:18.988286pt;}
.ws6f{word-spacing:19.035326pt;}
.ws106{word-spacing:19.040552pt;}
.ws118{word-spacing:19.092818pt;}
.ws132{word-spacing:19.098045pt;}
.ws69{word-spacing:19.134632pt;}
.ws161{word-spacing:19.150311pt;}
.ws66{word-spacing:19.192125pt;}
.ws10a{word-spacing:19.202577pt;}
.wsf9{word-spacing:19.218258pt;}
.wse9{word-spacing:19.233937pt;}
.wsb5{word-spacing:19.328016pt;}
.ws102{word-spacing:19.401189pt;}
.ws18b{word-spacing:19.505720pt;}
.wsf1{word-spacing:19.521401pt;}
.ws1b6{word-spacing:19.521600pt;}
.ws47{word-spacing:19.537080pt;}
.ws1d7{word-spacing:19.557987pt;}
.ws6e{word-spacing:19.631160pt;}
.wsb0{word-spacing:19.672973pt;}
.ws109{word-spacing:19.730465pt;}
.ws18a{word-spacing:19.735687pt;}
.wsf4{word-spacing:19.735692pt;}
.ws6b{word-spacing:19.793185pt;}
.ws1c5{word-spacing:19.824544pt;}
.ws171{word-spacing:19.897716pt;}
.ws65{word-spacing:19.918624pt;}
.ws8e{word-spacing:20.033609pt;}
.wsf3{word-spacing:20.174727pt;}
.ws22{word-spacing:20.179955pt;}
.ws55{word-spacing:20.263580pt;}
.ws190{word-spacing:20.284486pt;}
.ws11b{word-spacing:20.336753pt;}
.wsbe{word-spacing:20.347205pt;}
.wsbc{word-spacing:20.362886pt;}
.wsc3{word-spacing:20.378565pt;}
.ws18f{word-spacing:20.420378pt;}
.ws123{word-spacing:20.425604pt;}
.ws57{word-spacing:20.436058pt;}
.ws10c{word-spacing:20.524910pt;}
.wsa4{word-spacing:20.530137pt;}
.wsa2{word-spacing:20.535363pt;}
.wsd5{word-spacing:20.561496pt;}
.wsd4{word-spacing:20.613762pt;}
.ws44{word-spacing:20.624216pt;}
.ws164{word-spacing:20.645123pt;}
.ws45{word-spacing:20.655576pt;}
.ws11c{word-spacing:20.713069pt;}
.ws67{word-spacing:20.739201pt;}
.wsad{word-spacing:20.765335pt;}
.ws1b1{word-spacing:20.796694pt;}
.ws79{word-spacing:20.838507pt;}
.wsd2{word-spacing:20.843733pt;}
.ws0{word-spacing:21.021867pt;}
.ws113{word-spacing:21.031892pt;}
.ws17a{word-spacing:21.047572pt;}
.ws117{word-spacing:21.058025pt;}
.ws18d{word-spacing:21.058026pt;}
.ws8a{word-spacing:21.068478pt;}
.ws78{word-spacing:21.073704pt;}
.wsd6{word-spacing:21.209596pt;}
.wsae{word-spacing:21.256637pt;}
.ws186{word-spacing:21.272316pt;}
.ws58{word-spacing:21.282770pt;}
.ws83{word-spacing:21.298449pt;}
.ws18c{word-spacing:21.324583pt;}
.ws4b{word-spacing:21.335036pt;}
.ws64{word-spacing:21.361169pt;}
.ws1a7{word-spacing:21.470927pt;}
.ws7f{word-spacing:21.512741pt;}
.wsa1{word-spacing:21.549326pt;}
.ws185{word-spacing:21.632953pt;}
.wscc{word-spacing:21.659085pt;}
.wsdb{word-spacing:21.727032pt;}
.ws11f{word-spacing:21.737484pt;}
.ws110{word-spacing:21.852471pt;}
.ws112{word-spacing:21.930870pt;}
.wsc5{word-spacing:21.941322pt;}
.ws59{word-spacing:22.113802pt;}
.ws6d{word-spacing:22.150388pt;}
.wse2{word-spacing:22.239239pt;}
.ws8b{word-spacing:22.275826pt;}
.ws8f{word-spacing:22.322866pt;}
.ws9a{word-spacing:22.369905pt;}
.ws1cf{word-spacing:22.380358pt;}
.ws74{word-spacing:22.432619pt;}
.wsa3{word-spacing:22.458758pt;}
.ws5e{word-spacing:22.568516pt;}
.ws1bf{word-spacing:22.636463pt;}
.ws1c9{word-spacing:22.641689pt;}
.ws1ce{word-spacing:22.740994pt;}
.ws9f{word-spacing:22.761901pt;}
.wsfc{word-spacing:22.876887pt;}
.ws12e{word-spacing:22.934379pt;}
.ws1c0{word-spacing:22.944833pt;}
.ws88{word-spacing:22.950059pt;}
.wsd7{word-spacing:23.023232pt;}
.ws1cd{word-spacing:23.044138pt;}
.wse0{word-spacing:23.101631pt;}
.wse1{word-spacing:23.132991pt;}
.wseb{word-spacing:23.138218pt;}
.wsaa{word-spacing:23.164351pt;}
.ws49{word-spacing:23.195709pt;}
.ws1c2{word-spacing:23.394321pt;}
.wsc8{word-spacing:23.425681pt;}
.ws19e{word-spacing:23.451815pt;}
.ws1c3{word-spacing:23.582480pt;}
.ws183{word-spacing:23.613840pt;}
.ws10f{word-spacing:23.629519pt;}
.ws7b{word-spacing:23.681784pt;}
.ws77{word-spacing:23.791544pt;}
.ws1d3{word-spacing:23.833356pt;}
.wsa0{word-spacing:23.869944pt;}
.ws9c{word-spacing:23.916983pt;}
.ws2c{word-spacing:24.011061pt;}
.ws9d{word-spacing:24.079008pt;}
.ws165{word-spacing:24.241032pt;}
.wsb9{word-spacing:24.272392pt;}
.ws175{word-spacing:24.350791pt;}
.wsc0{word-spacing:24.356018pt;}
.ws85{word-spacing:24.695747pt;}
.ws1d9{word-spacing:24.742788pt;}
.ws80{word-spacing:24.977985pt;}
.ws120{word-spacing:25.072064pt;}
.ws23{word-spacing:25.098198pt;}
.ws1a5{word-spacing:25.244542pt;}
.ws129{word-spacing:25.265448pt;}
.ws1a4{word-spacing:25.281129pt;}
.ws125{word-spacing:25.411795pt;}
.ws95{word-spacing:25.479740pt;}
.wsc2{word-spacing:25.568593pt;}
.ws19f{word-spacing:25.584272pt;}
.ws119{word-spacing:25.626085pt;}
.ws1a1{word-spacing:25.626086pt;}
.ws32{word-spacing:25.688804pt;}
.ws1be{word-spacing:25.803790pt;}
.ws172{word-spacing:25.986721pt;}
.ws100{word-spacing:25.997175pt;}
.ws104{word-spacing:26.044215pt;}
.ws1cc{word-spacing:26.248052pt;}
.ws174{word-spacing:26.268958pt;}
.ws1cb{word-spacing:26.310772pt;}
.wsb4{word-spacing:26.347358pt;}
.ws99{word-spacing:26.498930pt;}
.ws1bd{word-spacing:26.770713pt;}
.ws167{word-spacing:26.775940pt;}
.ws176{word-spacing:26.870020pt;}
.ws2b{word-spacing:26.953645pt;}
.ws21{word-spacing:27.011137pt;}
.ws116{word-spacing:27.042498pt;}
.ws1ad{word-spacing:27.063404pt;}
.ws17f{word-spacing:27.094763pt;}
.ws198{word-spacing:27.335187pt;}
.ws1a2{word-spacing:27.382228pt;}
.wsb6{word-spacing:27.528573pt;}
.ws1a0{word-spacing:27.565160pt;}
.wsb3{word-spacing:27.654010pt;}
.wsde{word-spacing:27.685371pt;}
.ws16d{word-spacing:27.784676pt;}
.ws101{word-spacing:27.789903pt;}
.wsed{word-spacing:27.821262pt;}
.ws6c{word-spacing:27.826490pt;}
.wsdd{word-spacing:27.978062pt;}
.wsef{word-spacing:27.988514pt;}
.wsd0{word-spacing:28.286432pt;}
.ws71{word-spacing:28.343923pt;}
.ws70{word-spacing:28.532083pt;}
.ws187{word-spacing:28.610482pt;}
.wsd1{word-spacing:28.615708pt;}
.ws16b{word-spacing:28.772506pt;}
.ws93{word-spacing:29.143595pt;}
.ws28{word-spacing:29.211543pt;}
.ws7e{word-spacing:29.221994pt;}
.ws75{word-spacing:29.420606pt;}
.ws1ae{word-spacing:29.420607pt;}
.ws1af{word-spacing:29.519911pt;}
.ws68{word-spacing:29.744655pt;}
.wsa9{word-spacing:30.016440pt;}
.ws12f{word-spacing:30.115747pt;}
.wse4{word-spacing:30.136652pt;}
.ws1ac{word-spacing:30.418890pt;}
.ws193{word-spacing:30.424116pt;}
.ws163{word-spacing:30.925872pt;}
.ws1d1{word-spacing:31.302187pt;}
.ws10b{word-spacing:31.411945pt;}
.ws1d0{word-spacing:31.526932pt;}
.ws98{word-spacing:32.133218pt;}
.ws94{word-spacing:32.175031pt;}
.ws2d{word-spacing:32.274338pt;}
.ws195{word-spacing:32.953798pt;}
.ws194{word-spacing:33.053103pt;}
.ws31{word-spacing:33.063557pt;}
.ws10d{word-spacing:33.100143pt;}
.wsc7{word-spacing:33.115821pt;}
.ws5f{word-spacing:33.335341pt;}
.wsfe{word-spacing:33.560079pt;}
.wsa6{word-spacing:33.596670pt;}
.wsfb{word-spacing:33.680297pt;}
.ws160{word-spacing:33.915495pt;}
.wse3{word-spacing:35.478251pt;}
.ws180{word-spacing:36.131577pt;}
.wsa8{word-spacing:36.669918pt;}
.ws76{word-spacing:37.124633pt;}
.ws1{word-spacing:38.220961pt;}
.wsb2{word-spacing:38.431287pt;}
.ws2{word-spacing:38.502559pt;}
.wsdf{word-spacing:39.168240pt;}
.ws23e{word-spacing:39.343475pt;}
.wsdc{word-spacing:41.891307pt;}
.wsa5{word-spacing:44.682318pt;}
.ws162{word-spacing:56.578089pt;}
.ws158{word-spacing:99.800357pt;}
.ws154{word-spacing:107.821590pt;}
.ws15a{word-spacing:120.058228pt;}
.ws1b9{word-spacing:148.452540pt;}
.ws1b8{word-spacing:168.710422pt;}
._4f{margin-left:-29.423608pt;}
._4e{margin-left:-27.928022pt;}
._5e{margin-left:-24.487545pt;}
._5f{margin-left:-23.518899pt;}
._5b{margin-left:-18.361092pt;}
._5c{margin-left:-17.174652pt;}
._5d{margin-left:-16.118877pt;}
._43{margin-left:-7.787622pt;}
._44{margin-left:-6.833910pt;}
._1e{margin-left:-5.213896pt;}
._c{margin-left:-4.151394pt;}
._1b{margin-left:-3.041868pt;}
._4{margin-left:-1.493348pt;}
._7{width:1.354680pt;}
._14{width:2.387574pt;}
._1a{width:5.116873pt;}
._0{width:7.959467pt;}
._1d{width:9.704833pt;}
._16{width:11.117010pt;}
._6{width:12.949460pt;}
._5{width:14.453478pt;}
._f{width:15.981997pt;}
._8{width:16.991929pt;}
._10{width:18.037041pt;}
._12{width:19.286416pt;}
._9{width:20.306230pt;}
._13{width:21.340262pt;}
._d{width:23.076335pt;}
._11{width:24.654772pt;}
._b{width:25.958498pt;}
._19{width:27.339898pt;}
._1{width:29.223999pt;}
._a{width:30.412200pt;}
._1f{width:31.396269pt;}
._e{width:33.218261pt;}
._17{width:34.694258pt;}
._15{width:37.584578pt;}
._3{width:39.475362pt;}
._1c{width:41.582934pt;}
._4d{width:58.625941pt;}
._2f{width:96.651593pt;}
._2e{width:100.333683pt;}
._39{width:116.879608pt;}
._2d{width:127.546142pt;}
._45{width:138.980662pt;}
._33{width:144.092065pt;}
._54{width:148.465345pt;}
._31{width:161.465711pt;}
._42{width:162.967565pt;}
._38{width:164.529138pt;}
._30{width:168.241095pt;}
._36{width:183.937972pt;}
._3c{width:184.966217pt;}
._40{width:200.603355pt;}
._51{width:203.397955pt;}
._48{width:206.679021pt;}
._35{width:211.150423pt;}
._4b{width:233.550136pt;}
._3e{width:257.050649pt;}
._4a{width:267.149719pt;}
._2c{width:274.381646pt;}
._32{width:285.850302pt;}
._3d{width:308.548685pt;}
._49{width:312.849423pt;}
._41{width:325.871135pt;}
._53{width:327.889230pt;}
._46{width:330.803339pt;}
._3b{width:337.860319pt;}
._34{width:344.942897pt;}
._47{width:345.983951pt;}
._3f{width:347.204202pt;}
._4c{width:352.831840pt;}
._37{width:363.587997pt;}
._3a{width:371.139903pt;}
._55{width:404.509076pt;}
._50{width:443.471798pt;}
._57{width:487.750703pt;}
._52{width:504.902480pt;}
._58{width:539.248717pt;}
._59{width:568.560351pt;}
._5a{width:577.904234pt;}
._56{width:631.151569pt;}
._24{width:657.706977pt;}
._21{width:665.258868pt;}
._2b{width:731.105494pt;}
._29{width:768.737024pt;}
._27{width:825.184318pt;}
._20{width:842.336137pt;}
._22{width:853.983992pt;}
._26{width:876.682375pt;}
._2a{width:894.004825pt;}
._25{width:905.994008pt;}
._23{width:913.076586pt;}
._28{width:915.337891pt;}
._2{width:1424.224479pt;}
._18{width:1491.309463pt;}
.fsf{font-size:24.885867pt;}
.fs8{font-size:26.662400pt;}
.fse{font-size:28.440000pt;}
.fsd{font-size:31.995733pt;}
.fs9{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:58.128089pt;}
.y3f{bottom:68.786609pt;}
.y1e7{bottom:79.369400pt;}
.y158{bottom:79.369760pt;}
.yb4{bottom:79.373200pt;}
.y1aa{bottom:79.374187pt;}
.y233{bottom:79.374560pt;}
.yaa{bottom:79.378760pt;}
.y102{bottom:79.380160pt;}
.ye8{bottom:79.382947pt;}
.y175{bottom:79.383440pt;}
.y78{bottom:79.394573pt;}
.y3e{bottom:79.445116pt;}
.y3d{bottom:90.103636pt;}
.y157{bottom:90.708667pt;}
.y1e6{bottom:91.388240pt;}
.y232{bottom:91.393400pt;}
.y278{bottom:92.149800pt;}
.yb3{bottom:95.398000pt;}
.y1a9{bottom:95.398973pt;}
.ya9{bottom:95.403560pt;}
.y101{bottom:95.404960pt;}
.ye7{bottom:95.407747pt;}
.y174{bottom:95.408240pt;}
.y77{bottom:95.419360pt;}
.y3c{bottom:100.762142pt;}
.y231{bottom:103.412240pt;}
.y277{bottom:104.168640pt;}
.y156{bottom:108.246693pt;}
.yb2{bottom:111.347000pt;}
.y1a8{bottom:111.347987pt;}
.ya8{bottom:111.352573pt;}
.y100{bottom:111.353960pt;}
.ye6{bottom:111.356760pt;}
.y173{bottom:111.433040pt;}
.y76{bottom:111.444160pt;}
.y230{bottom:115.356080pt;}
.y1e5{bottom:116.408907pt;}
.y276{bottom:116.565480pt;}
.y3b{bottom:123.363942pt;}
.y155{bottom:126.917387pt;}
.yb1{bottom:127.371800pt;}
.y1a7{bottom:127.372787pt;}
.ya7{bottom:127.377360pt;}
.yff{bottom:127.378760pt;}
.ye5{bottom:127.381547pt;}
.y172{bottom:127.382040pt;}
.y75{bottom:127.393173pt;}
.y22f{bottom:127.752920pt;}
.y1e4{bottom:128.351747pt;}
.y275{bottom:128.584320pt;}
.y33{bottom:133.802609pt;}
.y3a{bottom:135.382782pt;}
.y22e{bottom:139.771760pt;}
.y274{bottom:140.603160pt;}
.yb0{bottom:143.396600pt;}
.y1a6{bottom:143.397587pt;}
.ya6{bottom:143.402160pt;}
.yfe{bottom:143.403560pt;}
.ye4{bottom:143.406347pt;}
.y171{bottom:143.406840pt;}
.y74{bottom:143.417973pt;}
.y154{bottom:145.588080pt;}
.y39{bottom:147.401622pt;}
.y32{bottom:149.751622pt;}
.y22d{bottom:151.790600pt;}
.y38{bottom:151.861489pt;}
.y273{bottom:152.622000pt;}
.y1e3{bottom:153.372413pt;}
.yaf{bottom:159.345613pt;}
.y1a5{bottom:159.346600pt;}
.ya5{bottom:159.351173pt;}
.yfd{bottom:159.352573pt;}
.ye3{bottom:159.355360pt;}
.y37{bottom:159.420916pt;}
.y170{bottom:159.431640pt;}
.y73{bottom:159.442760pt;}
.y22c{bottom:164.111427pt;}
.y153{bottom:164.258787pt;}
.y272{bottom:165.018827pt;}
.y1e2{bottom:165.391253pt;}
.y31{bottom:165.776409pt;}
.y36{bottom:171.363756pt;}
.yae{bottom:175.370400pt;}
.y1a4{bottom:175.371387pt;}
.ya4{bottom:175.375973pt;}
.yfc{bottom:175.377360pt;}
.ye2{bottom:175.380160pt;}
.y16f{bottom:175.380653pt;}
.y72{bottom:175.391773pt;}
.y35{bottom:175.823636pt;}
.y22b{bottom:176.130267pt;}
.y271{bottom:176.961667pt;}
.y1e1{bottom:177.410093pt;}
.y30{bottom:181.801209pt;}
.y152{bottom:182.929480pt;}
.y34{bottom:183.382689pt;}
.y22a{bottom:188.149107pt;}
.y270{bottom:188.980507pt;}
.y1e0{bottom:189.352933pt;}
.yad{bottom:191.395200pt;}
.y1a3{bottom:191.396187pt;}
.ya3{bottom:191.400760pt;}
.yfb{bottom:191.402160pt;}
.ye1{bottom:191.404960pt;}
.y16e{bottom:191.405453pt;}
.y71{bottom:191.416573pt;}
.y2f{bottom:197.750222pt;}
.y229{bottom:200.545947pt;}
.y1df{bottom:201.371773pt;}
.y26f{bottom:201.377347pt;}
.y151{bottom:201.600187pt;}
.yac{bottom:207.344813pt;}
.y1a2{bottom:207.345200pt;}
.ya2{bottom:207.349773pt;}
.yfa{bottom:207.351173pt;}
.ye0{bottom:207.353960pt;}
.y16d{bottom:207.430240pt;}
.y70{bottom:207.441373pt;}
.y228{bottom:212.564787pt;}
.y1de{bottom:213.390613pt;}
.y26e{bottom:213.396187pt;}
.y27{bottom:213.772409pt;}
.y2e{bottom:213.775022pt;}
.y150{bottom:220.270880pt;}
.y1a1{bottom:223.370000pt;}
.ya1{bottom:223.374573pt;}
.yf9{bottom:223.375973pt;}
.ydf{bottom:223.378760pt;}
.y16c{bottom:223.379253pt;}
.y6f{bottom:223.390387pt;}
.y227{bottom:224.508627pt;}
.y26d{bottom:225.415027pt;}
.y26{bottom:229.797196pt;}
.y2d{bottom:229.799809pt;}
.y226{bottom:236.527467pt;}
.y26c{bottom:237.358867pt;}
.y1dd{bottom:238.411280pt;}
.y14f{bottom:238.941587pt;}
.y1a0{bottom:239.395200pt;}
.ya0{bottom:239.399373pt;}
.yf8{bottom:239.400760pt;}
.yde{bottom:239.403560pt;}
.y16b{bottom:239.404053pt;}
.y6e{bottom:239.415173pt;}
.y2b2{bottom:243.405053pt;}
.y25{bottom:245.746209pt;}
.y2c{bottom:245.748822pt;}
.y225{bottom:248.924293pt;}
.y26b{bottom:249.377707pt;}
.y1dc{bottom:250.355120pt;}
.y14e{bottom:250.884893pt;}
.y9f{bottom:255.348387pt;}
.y2b1{bottom:255.348893pt;}
.yf7{bottom:255.349773pt;}
.ydd{bottom:255.352573pt;}
.y16a{bottom:255.428853pt;}
.y6d{bottom:255.439973pt;}
.y224{bottom:260.943133pt;}
.y26a{bottom:261.396547pt;}
.y24{bottom:261.771009pt;}
.y2b{bottom:261.773622pt;}
.y1db{bottom:262.373960pt;}
.y2b0{bottom:267.367733pt;}
.y14d{bottom:268.421747pt;}
.y9e{bottom:271.373173pt;}
.yf6{bottom:271.374573pt;}
.ydc{bottom:271.377360pt;}
.y169{bottom:271.377853pt;}
.y6c{bottom:271.388987pt;}
.y19f{bottom:271.398760pt;}
.y223{bottom:272.885973pt;}
.y269{bottom:273.793373pt;}
.y23{bottom:277.795809pt;}
.y2a{bottom:277.798422pt;}
.y2af{bottom:279.386573pt;}
.y14c{bottom:280.440800pt;}
.y222{bottom:285.282813pt;}
.y268{bottom:285.812213pt;}
.y1da{bottom:287.394627pt;}
.y9d{bottom:287.397973pt;}
.yf5{bottom:287.399373pt;}
.ydb{bottom:287.402160pt;}
.y168{bottom:287.402653pt;}
.y6b{bottom:287.413787pt;}
.y19e{bottom:287.423560pt;}
.y2ae{bottom:291.405413pt;}
.y22{bottom:293.744809pt;}
.y29{bottom:293.747422pt;}
.y221{bottom:297.301653pt;}
.y267{bottom:297.755053pt;}
.y14b{bottom:297.977867pt;}
.y1d9{bottom:299.413467pt;}
.y9c{bottom:303.346987pt;}
.y2ad{bottom:303.348253pt;}
.yf4{bottom:303.348387pt;}
.yda{bottom:303.351173pt;}
.y167{bottom:303.351667pt;}
.y6a{bottom:303.362787pt;}
.y19d{bottom:303.372573pt;}
.y220{bottom:309.320493pt;}
.y21{bottom:309.770022pt;}
.y28{bottom:309.772222pt;}
.y266{bottom:310.151893pt;}
.y1d8{bottom:311.357307pt;}
.y2ac{bottom:315.367093pt;}
.y9b{bottom:319.371787pt;}
.yf3{bottom:319.373173pt;}
.yd9{bottom:319.375973pt;}
.y166{bottom:319.376467pt;}
.y69{bottom:319.387587pt;}
.y19c{bottom:319.397373pt;}
.y21f{bottom:321.641333pt;}
.y265{bottom:322.170733pt;}
.y1d7{bottom:323.376147pt;}
.y2ab{bottom:327.385933pt;}
.y21e{bottom:333.660173pt;}
.y264{bottom:334.567560pt;}
.y1d6{bottom:335.394987pt;}
.y9a{bottom:335.396573pt;}
.yf2{bottom:335.397973pt;}
.yd8{bottom:335.400760pt;}
.y165{bottom:335.401253pt;}
.y68{bottom:335.412387pt;}
.y19b{bottom:335.422173pt;}
.y2aa{bottom:339.404773pt;}
.y21d{bottom:345.679013pt;}
.y263{bottom:346.586400pt;}
.y20{bottom:350.357609pt;}
.y99{bottom:351.345587pt;}
.yf1{bottom:351.346987pt;}
.y2a9{bottom:351.347613pt;}
.yd7{bottom:351.349773pt;}
.y164{bottom:351.350267pt;}
.y108{bottom:351.356133pt;}
.y67{bottom:351.361400pt;}
.y19a{bottom:351.371173pt;}
.y21c{bottom:358.075840pt;}
.y262{bottom:358.605240pt;}
.y1d5{bottom:360.415653pt;}
.y2a8{bottom:363.366453pt;}
.y98{bottom:367.370387pt;}
.yf0{bottom:367.371787pt;}
.yd6{bottom:367.374573pt;}
.y163{bottom:367.375067pt;}
.y107{bottom:367.380933pt;}
.y66{bottom:367.386187pt;}
.y199{bottom:367.395973pt;}
.y21b{bottom:370.018680pt;}
.y261{bottom:370.548080pt;}
.y1d4{bottom:372.359493pt;}
.y1f{bottom:373.035156pt;}
.y2a7{bottom:375.385293pt;}
.y21a{bottom:382.037520pt;}
.y260{bottom:382.566920pt;}
.y97{bottom:383.395187pt;}
.yef{bottom:383.396573pt;}
.yd5{bottom:383.399373pt;}
.y162{bottom:383.399867pt;}
.y106{bottom:383.405733pt;}
.y65{bottom:383.410987pt;}
.y198{bottom:383.420773pt;}
.y1d3{bottom:384.378333pt;}
.y2a6{bottom:387.404133pt;}
.y1e{bottom:389.060662pt;}
.y219{bottom:394.056360pt;}
.y25f{bottom:394.963760pt;}
.y1d2{bottom:396.397173pt;}
.y96{bottom:399.344813pt;}
.yee{bottom:399.345587pt;}
.y2a5{bottom:399.346973pt;}
.yd4{bottom:399.348387pt;}
.y161{bottom:399.348880pt;}
.y105{bottom:399.354747pt;}
.y64{bottom:399.360000pt;}
.y197{bottom:399.369787pt;}
.y1d{bottom:405.010156pt;}
.y218{bottom:406.075200pt;}
.y25e{bottom:406.982600pt;}
.y2a4{bottom:411.365813pt;}
.yed{bottom:415.370387pt;}
.yd3{bottom:415.373173pt;}
.y160{bottom:415.373667pt;}
.y104{bottom:415.379547pt;}
.y63{bottom:415.384800pt;}
.y196{bottom:415.394573pt;}
.y217{bottom:418.396040pt;}
.y25d{bottom:419.001440pt;}
.y1d1{bottom:421.417840pt;}
.y2a3{bottom:423.384653pt;}
.y1c{bottom:425.042356pt;}
.y216{bottom:430.414880pt;}
.yec{bottom:431.395187pt;}
.y95{bottom:431.397067pt;}
.yd2{bottom:431.397973pt;}
.y25c{bottom:431.398267pt;}
.y15f{bottom:431.398467pt;}
.y103{bottom:431.404333pt;}
.y62{bottom:431.409600pt;}
.y195{bottom:431.419373pt;}
.y1d0{bottom:433.360680pt;}
.y2a2{bottom:435.403493pt;}
.y1b{bottom:441.067849pt;}
.y215{bottom:442.811707pt;}
.y25b{bottom:443.417107pt;}
.y1cf{bottom:445.379520pt;}
.yeb{bottom:447.344813pt;}
.y94{bottom:447.346080pt;}
.y2a1{bottom:447.346333pt;}
.yd1{bottom:447.346987pt;}
.y15e{bottom:447.347480pt;}
.y61{bottom:447.358600pt;}
.y194{bottom:447.368387pt;}
.y214{bottom:454.830547pt;}
.y25a{bottom:455.359947pt;}
.y1a{bottom:457.017342pt;}
.y1ce{bottom:457.398360pt;}
.y2a0{bottom:459.365173pt;}
.y93{bottom:463.370880pt;}
.yd0{bottom:463.371787pt;}
.y15d{bottom:463.372280pt;}
.y60{bottom:463.383400pt;}
.y193{bottom:463.393187pt;}
.y148{bottom:463.747640pt;}
.y14a{bottom:463.747880pt;}
.y213{bottom:466.773387pt;}
.y259{bottom:467.756787pt;}
.y149{bottom:467.905320pt;}
.y1cd{bottom:469.417200pt;}
.y29f{bottom:471.384013pt;}
.y19{bottom:473.042836pt;}
.y147{bottom:475.086547pt;}
.y212{bottom:479.170227pt;}
.y146{bottom:479.244013pt;}
.y92{bottom:479.395680pt;}
.yea{bottom:479.396067pt;}
.ycf{bottom:479.396573pt;}
.y15c{bottom:479.397067pt;}
.y5f{bottom:479.408200pt;}
.y192{bottom:479.417973pt;}
.y258{bottom:479.775627pt;}
.y29e{bottom:483.402853pt;}
.y18{bottom:489.068329pt;}
.y211{bottom:491.189067pt;}
.y257{bottom:492.172453pt;}
.y145{bottom:492.624053pt;}
.y1cc{bottom:494.368427pt;}
.y91{bottom:495.344680pt;}
.ye9{bottom:495.345080pt;}
.yce{bottom:495.345587pt;}
.y29d{bottom:495.345693pt;}
.y15b{bottom:495.346080pt;}
.y5e{bottom:495.357213pt;}
.y191{bottom:495.366987pt;}
.y210{bottom:503.207907pt;}
.y256{bottom:504.191293pt;}
.y29c{bottom:507.364533pt;}
.y17{bottom:509.024529pt;}
.y1cb{bottom:510.393227pt;}
.y144{bottom:511.294747pt;}
.y90{bottom:511.369867pt;}
.ycd{bottom:511.370387pt;}
.y15a{bottom:511.370880pt;}
.y5d{bottom:511.382000pt;}
.y190{bottom:511.391787pt;}
.y20f{bottom:515.604733pt;}
.y255{bottom:516.210133pt;}
.y29b{bottom:519.383373pt;}
.y16{bottom:525.050022pt;}
.y1ca{bottom:526.418013pt;}
.ycc{bottom:527.395187pt;}
.y159{bottom:527.395680pt;}
.y5c{bottom:527.406800pt;}
.y18f{bottom:527.416587pt;}
.y20e{bottom:527.547573pt;}
.y254{bottom:528.152973pt;}
.y143{bottom:529.965453pt;}
.y29a{bottom:531.402213pt;}
.y123{bottom:539.111733pt;}
.y20d{bottom:539.566413pt;}
.y253{bottom:540.171813pt;}
.y15{bottom:541.075516pt;}
.y1c9{bottom:542.367027pt;}
.y122{bottom:543.269200pt;}
.ycb{bottom:543.344680pt;}
.y299{bottom:543.345053pt;}
.y8f{bottom:543.350227pt;}
.y5b{bottom:543.355813pt;}
.y18e{bottom:543.365600pt;}
.y142{bottom:548.636147pt;}
.y20c{bottom:551.963253pt;}
.y252{bottom:552.568653pt;}
.y298{bottom:555.363893pt;}
.y121{bottom:556.649360pt;}
.y14{bottom:557.025009pt;}
.y1c8{bottom:558.391827pt;}
.y8e{bottom:559.375027pt;}
.y5a{bottom:559.380613pt;}
.y18d{bottom:559.390387pt;}
.y20b{bottom:563.982093pt;}
.y251{bottom:564.587493pt;}
.y140{bottom:567.306920pt;}
.y297{bottom:567.382733pt;}
.y141{bottom:572.069213pt;}
.y13{bottom:573.050502pt;}
.y1c7{bottom:574.416627pt;}
.y120{bottom:575.320053pt;}
.yca{bottom:575.398853pt;}
.y8d{bottom:575.399827pt;}
.y59{bottom:575.405400pt;}
.y18c{bottom:575.415187pt;}
.y20a{bottom:575.924933pt;}
.y250{bottom:576.606333pt;}
.y1bb{bottom:579.328613pt;}
.y296{bottom:579.401573pt;}
.y13e{bottom:585.978413pt;}
.y209{bottom:588.321773pt;}
.y24f{bottom:589.003160pt;}
.y12{bottom:589.075996pt;}
.y1c6{bottom:590.365640pt;}
.y13f{bottom:590.739987pt;}
.y295{bottom:591.344413pt;}
.yc9{bottom:591.347867pt;}
.y8c{bottom:591.348827pt;}
.y58{bottom:591.354413pt;}
.y18b{bottom:591.364200pt;}
.y11f{bottom:593.990760pt;}
.y1ba{bottom:597.999320pt;}
.y208{bottom:600.340600pt;}
.y24e{bottom:600.946000pt;}
.y294{bottom:603.363253pt;}
.y13d{bottom:604.649120pt;}
.y11{bottom:605.025489pt;}
.y1c5{bottom:606.390427pt;}
.yc8{bottom:607.372667pt;}
.y8b{bottom:607.373627pt;}
.y57{bottom:607.379213pt;}
.y18a{bottom:607.389000pt;}
.y207{bottom:612.359440pt;}
.y11e{bottom:612.661453pt;}
.y24d{bottom:612.964840pt;}
.y293{bottom:615.382093pt;}
.y1b9{bottom:616.670013pt;}
.y10{bottom:621.050982pt;}
.y1c4{bottom:622.415227pt;}
.y13c{bottom:623.319813pt;}
.yc7{bottom:623.397467pt;}
.y8a{bottom:623.398427pt;}
.y56{bottom:623.404013pt;}
.y189{bottom:623.413787pt;}
.y206{bottom:624.302293pt;}
.y24c{bottom:625.361680pt;}
.y292{bottom:627.400933pt;}
.y11d{bottom:631.332160pt;}
.y1b8{bottom:635.340720pt;}
.y205{bottom:636.699053pt;}
.y24b{bottom:637.380520pt;}
.y1c3{bottom:638.364240pt;}
.y291{bottom:639.343773pt;}
.yc6{bottom:639.346467pt;}
.y89{bottom:639.347440pt;}
.y55{bottom:639.353027pt;}
.y188{bottom:639.362800pt;}
.yf{bottom:641.007182pt;}
.y13b{bottom:641.990520pt;}
.y24a{bottom:649.399360pt;}
.y11b{bottom:650.004413pt;}
.y290{bottom:651.362613pt;}
.y1b7{bottom:654.011413pt;}
.y1c2{bottom:654.389040pt;}
.y11c{bottom:654.689613pt;}
.yc5{bottom:655.371267pt;}
.y88{bottom:655.372240pt;}
.y54{bottom:655.377813pt;}
.y187{bottom:655.387600pt;}
.ye{bottom:657.032676pt;}
.y13a{bottom:660.661213pt;}
.y249{bottom:661.342200pt;}
.y28f{bottom:663.381453pt;}
.y11a{bottom:668.675107pt;}
.y1c1{bottom:670.413827pt;}
.yc4{bottom:671.396067pt;}
.y87{bottom:671.397027pt;}
.y53{bottom:671.402613pt;}
.y186{bottom:671.412400pt;}
.y1b6{bottom:672.682107pt;}
.yd{bottom:673.058169pt;}
.y248{bottom:673.361040pt;}
.y28e{bottom:675.400293pt;}
.y138{bottom:679.332427pt;}
.y139{bottom:684.018640pt;}
.y247{bottom:685.757867pt;}
.y1c0{bottom:686.362840pt;}
.y28d{bottom:687.344133pt;}
.y204{bottom:687.344280pt;}
.yc3{bottom:687.345080pt;}
.y119{bottom:687.345813pt;}
.y86{bottom:687.346040pt;}
.y52{bottom:687.351627pt;}
.y185{bottom:687.361400pt;}
.y1b5{bottom:691.277080pt;}
.yc{bottom:697.020289pt;}
.y246{bottom:697.776707pt;}
.y137{bottom:698.003133pt;}
.y28c{bottom:699.362973pt;}
.y1bf{bottom:702.387640pt;}
.yc2{bottom:703.369867pt;}
.y85{bottom:703.370840pt;}
.y51{bottom:703.376427pt;}
.y184{bottom:703.386200pt;}
.y118{bottom:705.940773pt;}
.y245{bottom:709.795547pt;}
.y1b4{bottom:709.947773pt;}
.y28b{bottom:711.381813pt;}
.y203{bottom:711.381960pt;}
.y136{bottom:716.673827pt;}
.y1be{bottom:718.412440pt;}
.yc1{bottom:719.395107pt;}
.y84{bottom:719.395640pt;}
.y50{bottom:719.401213pt;}
.y183{bottom:719.411000pt;}
.y244{bottom:721.814387pt;}
.y28a{bottom:723.400653pt;}
.y202{bottom:723.400800pt;}
.y117{bottom:724.611480pt;}
.y1b3{bottom:728.618480pt;}
.y243{bottom:733.758227pt;}
.y1bd{bottom:734.361973pt;}
.y289{bottom:735.344493pt;}
.y83{bottom:735.344640pt;}
.y200{bottom:735.344893pt;}
.y134{bottom:735.345053pt;}
.y4f{bottom:735.350227pt;}
.y182{bottom:735.360013pt;}
.y201{bottom:739.804520pt;}
.y135{bottom:740.031333pt;}
.y116{bottom:743.282173pt;}
.y242{bottom:746.155067pt;}
.y1b2{bottom:747.289173pt;}
.y288{bottom:747.363333pt;}
.y1ff{bottom:747.363733pt;}
.y9{bottom:748.346276pt;}
.yb{bottom:748.346289pt;}
.y82{bottom:751.369867pt;}
.yc0{bottom:751.374560pt;}
.y4e{bottom:751.375027pt;}
.y181{bottom:751.384800pt;}
.y133{bottom:753.940027pt;}
.ya{bottom:754.922716pt;}
.y241{bottom:758.173907pt;}
.y287{bottom:759.382173pt;}
.y1fc{bottom:759.382533pt;}
.y1fe{bottom:759.382573pt;}
.y115{bottom:761.952867pt;}
.y1fd{bottom:763.842280pt;}
.y1b1{bottom:765.959880pt;}
.y5{bottom:767.017102pt;}
.y7{bottom:767.017116pt;}
.ybf{bottom:767.399360pt;}
.y4d{bottom:767.399827pt;}
.y180{bottom:767.409600pt;}
.y240{bottom:770.192747pt;}
.y1f9{bottom:771.400800pt;}
.y286{bottom:771.401013pt;}
.y1fb{bottom:771.401373pt;}
.y132{bottom:772.610840pt;}
.y130{bottom:772.610880pt;}
.y6{bottom:773.593516pt;}
.y8{bottom:773.593529pt;}
.y1fa{bottom:775.785560pt;}
.y131{bottom:777.373053pt;}
.y114{bottom:780.623573pt;}
.y23f{bottom:782.211587pt;}
.y1f8{bottom:783.344640pt;}
.y1f6{bottom:783.344773pt;}
.y285{bottom:783.344853pt;}
.y81{bottom:783.345080pt;}
.ybe{bottom:783.348373pt;}
.y4c{bottom:783.348827pt;}
.y17f{bottom:783.358613pt;}
.y1b0{bottom:784.630573pt;}
.y1f7{bottom:787.804520pt;}
.y12f{bottom:791.281573pt;}
.y23e{bottom:794.155427pt;}
.y1f5{bottom:795.363613pt;}
.y284{bottom:795.363693pt;}
.y1f3{bottom:795.363733pt;}
.y4{bottom:799.068556pt;}
.y113{bottom:799.294267pt;}
.y111{bottom:799.295293pt;}
.y80{bottom:799.369867pt;}
.ybd{bottom:799.373160pt;}
.y4b{bottom:799.373627pt;}
.y17e{bottom:799.383413pt;}
.y1f4{bottom:799.823480pt;}
.y1af{bottom:803.301267pt;}
.y112{bottom:804.056560pt;}
.y23d{bottom:806.552253pt;}
.y283{bottom:807.382533pt;}
.y1f2{bottom:807.382573pt;}
.y12d{bottom:809.952680pt;}
.y1f1{bottom:811.842280pt;}
.y12e{bottom:814.714760pt;}
.y7f{bottom:815.395107pt;}
.ybc{bottom:815.397960pt;}
.y4a{bottom:815.398427pt;}
.y17d{bottom:815.408213pt;}
.y110{bottom:817.965987pt;}
.y23c{bottom:818.571093pt;}
.y282{bottom:819.401373pt;}
.y1f0{bottom:819.401507pt;}
.y1ae{bottom:821.971973pt;}
.y12c{bottom:828.623373pt;}
.y23b{bottom:830.589933pt;}
.y7e{bottom:831.344640pt;}
.ybb{bottom:831.346973pt;}
.y49{bottom:831.347440pt;}
.y281{bottom:831.350960pt;}
.y17c{bottom:831.357213pt;}
.y3{bottom:833.689502pt;}
.y10f{bottom:836.636680pt;}
.y1ad{bottom:840.642667pt;}
.y23a{bottom:842.608773pt;}
.y1ef{bottom:843.364200pt;}
.y280{bottom:843.369800pt;}
.y12a{bottom:847.294267pt;}
.yba{bottom:847.371773pt;}
.y48{bottom:847.372240pt;}
.y17b{bottom:847.382013pt;}
.y12b{bottom:852.056560pt;}
.y239{bottom:854.551613pt;}
.y10e{bottom:855.307387pt;}
.y1ee{bottom:855.383040pt;}
.y27f{bottom:855.388640pt;}
.y1ac{bottom:859.313373pt;}
.yb9{bottom:863.396573pt;}
.y47{bottom:863.397027pt;}
.y17a{bottom:863.406813pt;}
.y7d{bottom:863.417933pt;}
.y128{bottom:865.965013pt;}
.y238{bottom:866.948453pt;}
.y1ed{bottom:867.401867pt;}
.y27e{bottom:867.407480pt;}
.y2{bottom:868.384036pt;}
.y129{bottom:870.727293pt;}
.y10d{bottom:873.978080pt;}
.y1ab{bottom:877.984067pt;}
.y237{bottom:878.967293pt;}
.y1ec{bottom:879.344720pt;}
.yb8{bottom:879.345573pt;}
.y46{bottom:879.346040pt;}
.y27d{bottom:879.350320pt;}
.y179{bottom:879.355827pt;}
.y7c{bottom:879.366947pt;}
.y127{bottom:883.501867pt;}
.y236{bottom:890.986133pt;}
.y1eb{bottom:891.363560pt;}
.y27c{bottom:891.369160pt;}
.y10c{bottom:892.648787pt;}
.yb7{bottom:895.370373pt;}
.y45{bottom:895.370840pt;}
.y178{bottom:895.380613pt;}
.y7b{bottom:895.391747pt;}
.y126{bottom:895.520920pt;}
.y1ea{bottom:903.382387pt;}
.y235{bottom:903.382960pt;}
.y27b{bottom:903.388000pt;}
.y10b{bottom:910.185627pt;}
.yb6{bottom:911.395173pt;}
.y44{bottom:911.395640pt;}
.y177{bottom:911.405413pt;}
.y7a{bottom:911.416547pt;}
.y124{bottom:913.057453pt;}
.y1e9{bottom:915.401227pt;}
.y234{bottom:915.401800pt;}
.y27a{bottom:915.406840pt;}
.y125{bottom:918.349360pt;}
.y1{bottom:919.029640pt;}
.y1e8{bottom:927.344080pt;}
.yb5{bottom:927.344187pt;}
.y43{bottom:927.344640pt;}
.y279{bottom:927.349680pt;}
.y176{bottom:927.354427pt;}
.y79{bottom:927.365547pt;}
.y109{bottom:927.722653pt;}
.y10a{bottom:933.013840pt;}
.y42{bottom:989.178316pt;}
.yab{bottom:1002.481613pt;}
.y41{bottom:1002.481622pt;}
.y1bc{bottom:1002.482787pt;}
.h14{height:17.942710pt;}
.ha{height:21.943155pt;}
.h13{height:23.406120pt;}
.h11{height:26.332489pt;}
.h15{height:26.916949pt;}
.h16{height:28.839615pt;}
.hb{height:30.724894pt;}
.hd{height:30.762282pt;}
.h5{height:32.185665pt;}
.h9{height:32.919561pt;}
.h12{height:35.114228pt;}
.he{height:35.377451pt;}
.hf{height:37.056689pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h6{height:39.057600pt;}
.h10{height:39.504000pt;}
.h7{height:43.893772pt;}
.h4{height:48.283106pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590547pt;}
.x11{left:79.143333pt;}
.x1{left:80.957467pt;}
.xe{left:84.283467pt;}
.x13{left:86.248907pt;}
.x35{left:95.621947pt;}
.x15{left:109.681867pt;}
.x18{left:162.897600pt;}
.x19{left:166.828267pt;}
.x17{left:168.642533pt;}
.xb{left:209.536920pt;}
.x3{left:211.653480pt;}
.xc{left:218.683467pt;}
.x4{left:239.244000pt;}
.x12{left:240.604667pt;}
.x14{left:291.325867pt;}
.x1a{left:294.349613pt;}
.x1b{left:297.448787pt;}
.x16{left:333.505467pt;}
.x5{left:354.444013pt;}
.x6{left:359.432947pt;}
.xd{left:360.869187pt;}
.xf{left:406.297960pt;}
.x23{left:409.549480pt;}
.x10{left:416.956333pt;}
.x34{left:426.330493pt;}
.x2c{left:432.831333pt;}
.x2d{left:436.459720pt;}
.x21{left:440.390387pt;}
.x2e{left:468.510133pt;}
.x2f{left:472.062787pt;}
.x24{left:490.582520pt;}
.x25{left:494.362147pt;}
.x22{left:499.351080pt;}
.x7{left:506.532147pt;}
.x8{left:511.521080pt;}
.x1d{left:522.179480pt;}
.x28{left:526.336920pt;}
.x30{left:536.314813pt;}
.x2b{left:539.489587pt;}
.x29{left:581.971480pt;}
.x2a{left:585.373053pt;}
.x32{left:601.549480pt;}
.x33{left:605.177853pt;}
.x1e{left:607.142693pt;}
.x26{left:617.347853pt;}
.x27{left:620.371453pt;}
.x9{left:644.258133pt;}
.x1c{left:645.694413pt;}
.xa{left:649.247067pt;}
.x31{left:652.043987pt;}
.x1f{left:685.302773pt;}
.x20{left:713.801427pt;}
}




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