
    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_8371ee23bc7c794d3dd069fb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_778be8bbfb667708be2123db.woff')format("woff");}.ff2{font-family:ff2;line-height:1.028000;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_831ef64ae937bcc908936a58.woff')format("woff");}.ff3{font-family:ff3;line-height:1.020000;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_d5218145ff36d162935e403c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_40668b9c518da3a925f1638b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_be1abaf4677a02f67f874ab2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_535562c900657e5fee649b10.woff')format("woff");}.ff7{font-family:ff7;line-height:0.588000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.332000px;}
.v2{vertical-align:-16.146000px;}
.v4{vertical-align:-5.993160px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.147200px;}
.v1{vertical-align:19.386000px;}
.ls6f{letter-spacing:-5.236356px;}
.ls32{letter-spacing:-4.805970px;}
.ls4f{letter-spacing:-3.227904px;}
.ls2f{letter-spacing:-2.840544px;}
.ls4e{letter-spacing:-1.866804px;}
.ls1b{letter-spacing:-1.802246px;}
.ls63{letter-spacing:-1.635471px;}
.ls3a{letter-spacing:-1.597812px;}
.ls18{letter-spacing:-1.331510px;}
.ls45{letter-spacing:-1.054449px;}
.ls17{letter-spacing:-0.896640px;}
.ls50{letter-spacing:-0.876909px;}
.ls16{letter-spacing:-0.659030px;}
.ls4b{letter-spacing:-0.554124px;}
.ls38{letter-spacing:-0.516464px;}
.ls83{letter-spacing:-0.482988px;}
.ls7d{letter-spacing:-0.473424px;}
.ls7f{letter-spacing:-0.463860px;}
.ls36{letter-spacing:-0.279752px;}
.ls4c{letter-spacing:-0.075318px;}
.ls7c{letter-spacing:-0.052603px;}
.ls66{letter-spacing:-0.048419px;}
.ls33{letter-spacing:-0.043039px;}
.ls46{letter-spacing:-0.037659px;}
.ls21{letter-spacing:-0.035866px;}
.ls79{letter-spacing:-0.033474px;}
.ls12{letter-spacing:-0.032279px;}
.ls31{letter-spacing:-0.028692px;}
.ls39{letter-spacing:-0.026899px;}
.ls7e{letter-spacing:-0.023910px;}
.ls14{letter-spacing:-0.021519px;}
.ls7a{letter-spacing:-0.019128px;}
.ls20{letter-spacing:-0.017933px;}
.ls1d{letter-spacing:-0.016139px;}
.ls73{letter-spacing:-0.014346px;}
.ls19{letter-spacing:-0.013450px;}
.ls10{letter-spacing:-0.011955px;}
.ls1c{letter-spacing:-0.010760px;}
.ls44{letter-spacing:-0.009564px;}
.ls1a{letter-spacing:-0.008966px;}
.ls1f{letter-spacing:-0.007173px;}
.ls37{letter-spacing:-0.005978px;}
.ls13{letter-spacing:-0.005380px;}
.ls30{letter-spacing:-0.004782px;}
.ls15{letter-spacing:-0.004483px;}
.ls11{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003587px;}
.ls8{letter-spacing:0.004483px;}
.ls3f{letter-spacing:0.004782px;}
.lsd{letter-spacing:0.005380px;}
.ls0{letter-spacing:0.005978px;}
.ls3e{letter-spacing:0.009564px;}
.ls27{letter-spacing:0.010760px;}
.lsa{letter-spacing:0.013450px;}
.ls74{letter-spacing:0.014346px;}
.ls1{letter-spacing:0.014364px;}
.lsb{letter-spacing:0.016135px;}
.ls1e{letter-spacing:0.016139px;}
.ls55{letter-spacing:0.016195px;}
.ls76{letter-spacing:0.019128px;}
.ls81{letter-spacing:0.019149px;}
.ls2d{letter-spacing:0.021516px;}
.ls29{letter-spacing:0.021519px;}
.lsc{letter-spacing:0.021576px;}
.ls75{letter-spacing:0.023910px;}
.ls78{letter-spacing:0.028692px;}
.ls49{letter-spacing:0.032279px;}
.ls7b{letter-spacing:0.033474px;}
.ls77{letter-spacing:0.047821px;}
.ls65{letter-spacing:0.134496px;}
.ls7{letter-spacing:2.948419px;}
.ls6{letter-spacing:2.983776px;}
.ls2{letter-spacing:2.987594px;}
.ls9{letter-spacing:3.011184px;}
.ls4{letter-spacing:3.041414px;}
.ls3d{letter-spacing:9.853979px;}
.ls22{letter-spacing:9.908375px;}
.ls80{letter-spacing:11.218713px;}
.ls62{letter-spacing:11.265406px;}
.ls57{letter-spacing:11.980872px;}
.ls5b{letter-spacing:11.980932px;}
.ls60{letter-spacing:12.610356px;}
.ls3c{letter-spacing:12.631864px;}
.ls51{letter-spacing:12.637244px;}
.lsf{letter-spacing:12.653384px;}
.ls43{letter-spacing:12.658764px;}
.ls6e{letter-spacing:12.664116px;}
.ls2e{letter-spacing:13.471116px;}
.ls4d{letter-spacing:14.364173px;}
.ls53{letter-spacing:14.988234px;}
.ls41{letter-spacing:17.048707px;}
.ls82{letter-spacing:17.535814px;}
.ls47{letter-spacing:19.265184px;}
.ls3b{letter-spacing:20.588648px;}
.ls48{letter-spacing:21.487068px;}
.ls2b{letter-spacing:22.971936px;}
.ls5c{letter-spacing:24.591204px;}
.ls58{letter-spacing:24.591264px;}
.ls64{letter-spacing:25.704876px;}
.ls40{letter-spacing:26.635610px;}
.ls61{letter-spacing:35.894251px;}
.ls2c{letter-spacing:35.894311px;}
.ls4a{letter-spacing:125.524800px;}
.ls28{letter-spacing:125.532312px;}
.ls42{letter-spacing:125.546449px;}
.ls2a{letter-spacing:125.551658px;}
.ls3{letter-spacing:176.516285px;}
.ls5{letter-spacing:176.516465px;}
.ls69{letter-spacing:229.514695px;}
.ls68{letter-spacing:233.619535px;}
.ls6c{letter-spacing:240.317455px;}
.ls6b{letter-spacing:254.358835px;}
.ls6d{letter-spacing:267.372655px;}
.ls6a{letter-spacing:270.557515px;}
.ls67{letter-spacing:278.761795px;}
.ls25{letter-spacing:296.208655px;}
.ls72{letter-spacing:316.114019px;}
.ls71{letter-spacing:322.268556px;}
.ls70{letter-spacing:328.433852px;}
.ls35{letter-spacing:376.163793px;}
.ls34{letter-spacing:388.483626px;}
.ls24{letter-spacing:406.963375px;}
.ls23{letter-spacing:462.418795px;}
.ls26{letter-spacing:482.399515px;}
.ls5e{letter-spacing:565.232875px;}
.ls56{letter-spacing:592.777675px;}
.ls5a{letter-spacing:593.746015px;}
.ls5d{letter-spacing:594.444528px;}
.ls52{letter-spacing:616.266055px;}
.ls59{letter-spacing:746.292528px;}
.ls5f{letter-spacing:750.180528px;}
.ls54{letter-spacing:768.756528px;}
.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;}
}
.ws4e{word-spacing:-380.424626px;}
.ws56{word-spacing:-368.212389px;}
.ws1b8{word-spacing:-267.991350px;}
.ws1be{word-spacing:-255.784493px;}
.ws1b9{word-spacing:-255.660756px;}
.ws1bc{word-spacing:-249.570778px;}
.ws18f{word-spacing:-58.252908px;}
.wsa0{word-spacing:-53.136680px;}
.ws16d{word-spacing:-47.536266px;}
.ws120{word-spacing:-46.912205px;}
.ws288{word-spacing:-46.467277px;}
.wsfb{word-spacing:-45.206796px;}
.ws44{word-spacing:-45.201416px;}
.ws2{word-spacing:-41.564644px;}
.ws273{word-spacing:-40.150176px;}
.ws3{word-spacing:-39.735498px;}
.ws17{word-spacing:-36.164238px;}
.ws1{word-spacing:-36.152283px;}
.ws42{word-spacing:-35.223269px;}
.wsad{word-spacing:-35.168873px;}
.wsa1{word-spacing:-32.569551px;}
.ws34{word-spacing:-32.553412px;}
.ws31{word-spacing:-32.548032px;}
.ws1a0{word-spacing:-32.542652px;}
.ws171{word-spacing:-32.537272px;}
.ws55{word-spacing:-32.531893px;}
.ws146{word-spacing:-32.526513px;}
.wsba{word-spacing:-32.031568px;}
.wsfe{word-spacing:-31.993908px;}
.ws13f{word-spacing:-31.671123px;}
.ws1c6{word-spacing:-31.493583px;}
.ws9f{word-spacing:-30.950220px;}
.ws17e{word-spacing:-30.912561px;}
.ws16e{word-spacing:-30.681228px;}
.ws237{word-spacing:-28.979284px;}
.ws212{word-spacing:-28.950591px;}
.ws1fa{word-spacing:-28.945809px;}
.ws20b{word-spacing:-28.941027px;}
.ws21a{word-spacing:-28.936245px;}
.ws48{word-spacing:-28.931463px;}
.ws208{word-spacing:-28.926681px;}
.ws251{word-spacing:-28.921899px;}
.ws257{word-spacing:-28.912335px;}
.ws254{word-spacing:-28.902771px;}
.ws291{word-spacing:-28.897989px;}
.ws249{word-spacing:-28.888424px;}
.wsc{word-spacing:-27.118877px;}
.ws13{word-spacing:-27.109910px;}
.ws43{word-spacing:-25.314894px;}
.ws69{word-spacing:-24.074784px;}
.ws15a{word-spacing:-24.015606px;}
.ws95{word-spacing:-23.897249px;}
.ws164{word-spacing:-23.547560px;}
.wsdf{word-spacing:-23.488381px;}
.ws1e6{word-spacing:-23.461482px;}
.wse0{word-spacing:-23.391544px;}
.wsde{word-spacing:-23.364645px;}
.ws23{word-spacing:-23.197870px;}
.ws78{word-spacing:-23.154831px;}
.ws8f{word-spacing:-23.111793px;}
.ws80{word-spacing:-23.020335px;}
.wscd{word-spacing:-23.014956px;}
.ws105{word-spacing:-23.004196px;}
.wsce{word-spacing:-22.993436px;}
.ws124{word-spacing:-22.880460px;}
.ws12a{word-spacing:-22.665266px;}
.wsd6{word-spacing:-22.643747px;}
.ws141{word-spacing:-22.331716px;}
.ws21{word-spacing:-22.315576px;}
.ws123{word-spacing:-22.251018px;}
.wsbb{word-spacing:-22.186460px;}
.wsb9{word-spacing:-22.181080px;}
.ws150{word-spacing:-22.170321px;}
.wse9{word-spacing:-22.140882px;}
.ws14f{word-spacing:-22.138042px;}
.wsd7{word-spacing:-22.127282px;}
.ws64{word-spacing:-22.116972px;}
.ws7d{word-spacing:-22.105017px;}
.ws83{word-spacing:-22.073484px;}
.ws15b{word-spacing:-22.039264px;}
.wsf4{word-spacing:-22.025065px;}
.wsd1{word-spacing:-21.933608px;}
.ws1d2{word-spacing:-21.858290px;}
.wse6{word-spacing:-21.815251px;}
.ws1d6{word-spacing:-21.750693px;}
.ws132{word-spacing:-21.659236px;}
.ws187{word-spacing:-21.513980px;}
.ws24c{word-spacing:-21.495360px;}
.ws1f{word-spacing:-21.481701px;}
.ws143{word-spacing:-21.454802px;}
.ws1e4{word-spacing:-21.401004px;}
.ws193{word-spacing:-21.352585px;}
.ws194{word-spacing:-21.347205px;}
.ws107{word-spacing:-21.309546px;}
.ws18{word-spacing:-21.304166px;}
.ws1a6{word-spacing:-21.261128px;}
.ws79{word-spacing:-21.223469px;}
.ws1e5{word-spacing:-21.196570px;}
.ws294{word-spacing:-21.184526px;}
.ws24d{word-spacing:-21.170180px;}
.ws2a9{word-spacing:-21.050628px;}
.wsf7{word-spacing:-21.045934px;}
.wsa9{word-spacing:-21.013655px;}
.ws20c{word-spacing:-20.993243px;}
.ws252{word-spacing:-20.907166px;}
.ws87{word-spacing:-20.857640px;}
.ws109{word-spacing:-20.809221px;}
.ws1d8{word-spacing:-20.685485px;}
.ws253{word-spacing:-20.644153px;}
.ws1d{word-spacing:-20.637066px;}
.ws280{word-spacing:-20.601114px;}
.ws21e{word-spacing:-20.572422px;}
.ws289{word-spacing:-20.524602px;}
.ws218{word-spacing:-20.457653px;}
.ws12b{word-spacing:-20.416493px;}
.ws238{word-spacing:-20.414614px;}
.ws2a4{word-spacing:-20.385922px;}
.ws12d{word-spacing:-20.362694px;}
.ws117{word-spacing:-20.346555px;}
.wsa5{word-spacing:-20.335795px;}
.ws21d{word-spacing:-20.333319px;}
.ws2f{word-spacing:-20.325036px;}
.ws1d3{word-spacing:-20.260477px;}
.ws27f{word-spacing:-20.228114px;}
.ws28c{word-spacing:-20.189857px;}
.ws1bb{word-spacing:-20.185160px;}
.ws188{word-spacing:-20.152881px;}
.ws2ad{word-spacing:-20.146819px;}
.wsf5{word-spacing:-20.088323px;}
.ws13b{word-spacing:-20.061423px;}
.ws106{word-spacing:-20.018385px;}
.ws2c3{word-spacing:-20.012921px;}
.ws1a{word-spacing:-20.002245px;}
.ws198{word-spacing:-19.991485px;}
.ws16f{word-spacing:-19.980726px;}
.ws5a{word-spacing:-19.975346px;}
.ws113{word-spacing:-19.969966px;}
.ws1d0{word-spacing:-19.969955px;}
.ws28d{word-spacing:-19.965101px;}
.ws1cb{word-spacing:-19.959206px;}
.ws63{word-spacing:-19.953827px;}
.ws182{word-spacing:-19.948447px;}
.ws179{word-spacing:-19.943067px;}
.ws18b{word-spacing:-19.937687px;}
.ws4c{word-spacing:-19.932307px;}
.ws7c{word-spacing:-19.926927px;}
.ws281{word-spacing:-19.926844px;}
.ws1b7{word-spacing:-19.921548px;}
.ws5{word-spacing:-19.916168px;}
.ws4{word-spacing:-19.910788px;}
.ws50{word-spacing:-19.905408px;}
.ws2b1{word-spacing:-19.902934px;}
.ws53{word-spacing:-19.894648px;}
.ws129{word-spacing:-19.889268px;}
.ws297{word-spacing:-19.888588px;}
.ws11f{word-spacing:-19.883889px;}
.ws133{word-spacing:-19.878509px;}
.ws6{word-spacing:-19.873129px;}
.wsc3{word-spacing:-19.867749px;}
.ws10a{word-spacing:-19.862369px;}
.ws61{word-spacing:-19.846230px;}
.ws100{word-spacing:-19.840850px;}
.ws178{word-spacing:-19.824712px;}
.ws2ae{word-spacing:-19.812075px;}
.ws82{word-spacing:-19.808571px;}
.ws177{word-spacing:-19.787052px;}
.ws1aa{word-spacing:-19.770912px;}
.ws35{word-spacing:-19.765532px;}
.ws2ac{word-spacing:-19.759472px;}
.wsf8{word-spacing:-19.749393px;}
.ws17b{word-spacing:-19.744013px;}
.ws2c2{word-spacing:-19.673395px;}
.ws131{word-spacing:-19.663315px;}
.ws99{word-spacing:-19.647176px;}
.ws2b9{word-spacing:-19.620792px;}
.ws282{word-spacing:-19.616010px;}
.ws2b2{word-spacing:-19.611216px;}
.ws1d9{word-spacing:-19.598757px;}
.ws2b8{word-spacing:-19.572972px;}
.ws138{word-spacing:-19.555718px;}
.ws276{word-spacing:-19.539497px;}
.ws5f{word-spacing:-19.528819px;}
.ws248{word-spacing:-19.525151px;}
.ws148{word-spacing:-19.469641px;}
.wsc7{word-spacing:-19.442742px;}
.ws17d{word-spacing:-19.394323px;}
.ws139{word-spacing:-19.378184px;}
.ws62{word-spacing:-19.351284px;}
.ws201{word-spacing:-19.319522px;}
.ws158{word-spacing:-19.308246px;}
.ws66{word-spacing:-19.281347px;}
.ws277{word-spacing:-19.247791px;}
.wsd5{word-spacing:-19.222168px;}
.ws111{word-spacing:-19.211409px;}
.ws275{word-spacing:-19.195189px;}
.ws14e{word-spacing:-19.141471px;}
.wsa7{word-spacing:-19.136093px;}
.wsa8{word-spacing:-19.119951px;}
.ws1ff{word-spacing:-19.056509px;}
.ws121{word-spacing:-19.050013px;}
.ws25a{word-spacing:-19.023035px;}
.wsd2{word-spacing:-18.953176px;}
.ws286{word-spacing:-18.936958px;}
.wse5{word-spacing:-18.931657px;}
.wsd3{word-spacing:-18.899378px;}
.ws8e{word-spacing:-18.893999px;}
.ws152{word-spacing:-18.877859px;}
.ws222{word-spacing:-18.779150px;}
.ws29b{word-spacing:-18.750457px;}
.ws167{word-spacing:-18.635766px;}
.ws165{word-spacing:-18.625006px;}
.ws15e{word-spacing:-18.619626px;}
.wse8{word-spacing:-18.608867px;}
.ws166{word-spacing:-18.598107px;}
.ws1ec{word-spacing:-18.578303px;}
.ws1b3{word-spacing:-18.576588px;}
.ws134{word-spacing:-18.544308px;}
.ws9a{word-spacing:-18.512029px;}
.ws1eb{word-spacing:-18.487444px;}
.ws215{word-spacing:-18.449187px;}
.ws1c{word-spacing:-18.420572px;}
.wse7{word-spacing:-18.404433px;}
.ws20{word-spacing:-18.382913px;}
.ws1f8{word-spacing:-18.310508px;}
.ws29a{word-spacing:-18.281815px;}
.ws104{word-spacing:-18.275316px;}
.ws1e7{word-spacing:-18.259177px;}
.ws142{word-spacing:-18.216138px;}
.ws2bf{word-spacing:-18.147918px;}
.ws14a{word-spacing:-18.124681px;}
.ws168{word-spacing:-18.119301px;}
.ws1fc{word-spacing:-18.100097px;}
.ws221{word-spacing:-18.080969px;}
.ws240{word-spacing:-18.076187px;}
.ws211{word-spacing:-18.009260px;}
.ws20e{word-spacing:-18.004472px;}
.ws214{word-spacing:-17.999674px;}
.ws10e{word-spacing:-17.995565px;}
.ws144{word-spacing:-17.925627px;}
.ws250{word-spacing:-17.904033px;}
.wsec{word-spacing:-17.887968px;}
.ws23a{word-spacing:-17.880122px;}
.wsfc{word-spacing:-17.832302px;}
.ws1c4{word-spacing:-17.827520px;}
.ws22d{word-spacing:-17.822738px;}
.ws210{word-spacing:-17.817934px;}
.ws284{word-spacing:-17.808388px;}
.ws298{word-spacing:-17.803629px;}
.ws219{word-spacing:-17.789263px;}
.wsb0{word-spacing:-17.784481px;}
.ws162{word-spacing:-17.774991px;}
.ws241{word-spacing:-17.770135px;}
.wsf0{word-spacing:-17.769612px;}
.ws72{word-spacing:-17.764232px;}
.ws2a2{word-spacing:-17.760571px;}
.ws12e{word-spacing:-17.758852px;}
.ws207{word-spacing:-17.755789px;}
.ws230{word-spacing:-17.746212px;}
.wsdc{word-spacing:-17.731878px;}
.ws2bb{word-spacing:-17.717494px;}
.ws24e{word-spacing:-17.712758px;}
.ws258{word-spacing:-17.712750px;}
.ws9d{word-spacing:-17.710433px;}
.ws26f{word-spacing:-17.703186px;}
.ws205{word-spacing:-17.698404px;}
.ws4b{word-spacing:-17.693622px;}
.ws279{word-spacing:-17.688854px;}
.ws204{word-spacing:-17.684058px;}
.ws2c0{word-spacing:-17.679317px;}
.ws16b{word-spacing:-17.679276px;}
.ws174{word-spacing:-17.669712px;}
.ws2c6{word-spacing:-17.664889px;}
.ws1f9{word-spacing:-17.650583px;}
.ws26e{word-spacing:-17.641042px;}
.ws203{word-spacing:-17.641019px;}
.ws202{word-spacing:-17.631455px;}
.ws1ea{word-spacing:-17.617109px;}
.ws108{word-spacing:-17.538278px;}
.ws23b{word-spacing:-17.511904px;}
.ws1b{word-spacing:-17.484480px;}
.wsc4{word-spacing:-17.473720px;}
.ws1e{word-spacing:-17.462961px;}
.ws1b4{word-spacing:-17.441441px;}
.ws206{word-spacing:-17.425827px;}
.ws23f{word-spacing:-17.416263px;}
.ws151{word-spacing:-17.414542px;}
.ws1b6{word-spacing:-17.368442px;}
.ws1fe{word-spacing:-17.363660px;}
.ws1b5{word-spacing:-17.358878px;}
.ws116{word-spacing:-17.317705px;}
.ws155{word-spacing:-17.247767px;}
.ws154{word-spacing:-17.204728px;}
.ws25c{word-spacing:-17.191506px;}
.ws47{word-spacing:-17.143685px;}
.ws4a{word-spacing:-17.110211px;}
.ws49{word-spacing:-17.095865px;}
.wsd8{word-spacing:-17.086372px;}
.ws1d7{word-spacing:-17.000294px;}
.ws26d{word-spacing:-16.861544px;}
.ws180{word-spacing:-16.860419px;}
.ws21b{word-spacing:-16.828069px;}
.ws23e{word-spacing:-16.823287px;}
.ws1e9{word-spacing:-16.817380px;}
.ws96{word-spacing:-16.801240px;}
.ws26a{word-spacing:-16.785047px;}
.ws11{word-spacing:-16.740276px;}
.ws36{word-spacing:-16.731302px;}
.ws16{word-spacing:-16.726819px;}
.ws12c{word-spacing:-16.720543px;}
.ws272{word-spacing:-16.708518px;}
.wsa{word-spacing:-16.690927px;}
.wsb{word-spacing:-16.668538px;}
.ws15{word-spacing:-16.659571px;}
.ws9{word-spacing:-16.650605px;}
.ws130{word-spacing:-16.634465px;}
.wse{word-spacing:-16.628189px;}
.ws25b{word-spacing:-16.608094px;}
.ws8{word-spacing:-16.587840px;}
.ws14{word-spacing:-16.574390px;}
.ws7{word-spacing:-16.556458px;}
.wsa3{word-spacing:-16.473070px;}
.ws19d{word-spacing:-16.440791px;}
.ws103{word-spacing:-16.413892px;}
.ws126{word-spacing:-16.354714px;}
.ws2b3{word-spacing:-16.330735px;}
.ws137{word-spacing:-16.322435px;}
.ws2a1{word-spacing:-16.316389px;}
.ws159{word-spacing:-16.284776px;}
.ws271{word-spacing:-16.196837px;}
.ws2a8{word-spacing:-16.096414px;}
.wsfa{word-spacing:-16.074962px;}
.ws5d{word-spacing:-16.026543px;}
.ws1d4{word-spacing:-16.015784px;}
.wsf9{word-spacing:-15.994264px;}
.ws41{word-spacing:-15.937923px;}
.ws74{word-spacing:-15.811350px;}
.ws217{word-spacing:-15.771234px;}
.wsbc{word-spacing:-15.714513px;}
.ws2a0{word-spacing:-15.694729px;}
.ws2ba{word-spacing:-15.651682px;}
.ws231{word-spacing:-15.646900px;}
.ws84{word-spacing:-15.639195px;}
.wsc8{word-spacing:-15.628433px;}
.ws7e{word-spacing:-15.590776px;}
.ws20f{word-spacing:-15.532131px;}
.wsc9{word-spacing:-15.531598px;}
.ws15c{word-spacing:-15.499319px;}
.ws8d{word-spacing:-15.467040px;}
.ws209{word-spacing:-15.460400px;}
.ws22f{word-spacing:-15.450836px;}
.wsc6{word-spacing:-15.391722px;}
.ws1b2{word-spacing:-15.380963px;}
.wsd{word-spacing:-15.310133px;}
.wsf{word-spacing:-15.305654px;}
.wsa4{word-spacing:-15.267986px;}
.wsbe{word-spacing:-15.230327px;}
.ws156{word-spacing:-15.176529px;}
.ws6b{word-spacing:-15.165769px;}
.wsb3{word-spacing:-15.160389px;}
.ws197{word-spacing:-15.155009px;}
.ws196{word-spacing:-15.133490px;}
.ws195{word-spacing:-15.095831px;}
.ws234{word-spacing:-15.087399px;}
.ws183{word-spacing:-14.934436px;}
.ws115{word-spacing:-14.907537px;}
.ws17c{word-spacing:-14.891397px;}
.ws285{word-spacing:-14.881771px;}
.ws98{word-spacing:-14.837599px;}
.ws10{word-spacing:-14.799043px;}
.ws239{word-spacing:-14.767001px;}
.wse4{word-spacing:-14.719242px;}
.wsa6{word-spacing:-14.708483px;}
.ws1db{word-spacing:-14.670824px;}
.ws5b{word-spacing:-14.665444px;}
.ws181{word-spacing:-14.654684px;}
.ws24{word-spacing:-14.595506px;}
.ws25d{word-spacing:-14.580501px;}
.ws33{word-spacing:-14.579366px;}
.ws2c9{word-spacing:-14.570937px;}
.ws233{word-spacing:-14.494443px;}
.ws7f{word-spacing:-14.417971px;}
.ws14c{word-spacing:-14.407212px;}
.ws91{word-spacing:-14.380312px;}
.ws1e1{word-spacing:-14.369553px;}
.ws14b{word-spacing:-14.348033px;}
.ws13a{word-spacing:-14.342653px;}
.ws263{word-spacing:-14.336616px;}
.ws2c1{word-spacing:-14.303141px;}
.ws7b{word-spacing:-14.278095px;}
.ws1dc{word-spacing:-14.213537px;}
.ws12f{word-spacing:-14.192018px;}
.ws235{word-spacing:-14.097513px;}
.ws10d{word-spacing:-14.095181px;}
.ws21c{word-spacing:-14.087949px;}
.ws2c8{word-spacing:-14.068821px;}
.ws149{word-spacing:-14.046762px;}
.ws25e{word-spacing:-13.987525px;}
.ws60{word-spacing:-13.966065px;}
.ws12{word-spacing:-13.942752px;}
.ws25f{word-spacing:-13.920577px;}
.ws81{word-spacing:-13.901507px;}
.ws189{word-spacing:-13.820809px;}
.ws23d{word-spacing:-13.820153px;}
.ws264{word-spacing:-13.791486px;}
.ws247{word-spacing:-13.786679px;}
.ws93{word-spacing:-13.783150px;}
.ws23c{word-spacing:-13.748422px;}
.ws112{word-spacing:-13.718592px;}
.ws3f{word-spacing:-13.646861px;}
.ws75{word-spacing:-13.616375px;}
.ws1e8{word-spacing:-13.605615px;}
.ws118{word-spacing:-13.406561px;}
.ws29c{word-spacing:-13.389768px;}
.ws1e0{word-spacing:-13.379662px;}
.ws128{word-spacing:-13.363523px;}
.ws5c{word-spacing:-13.358143px;}
.ws1a9{word-spacing:-13.342003px;}
.ws127{word-spacing:-13.336623px;}
.ws1ac{word-spacing:-13.288205px;}
.ws3c{word-spacing:-13.259512px;}
.ws216{word-spacing:-13.255870px;}
.ws40{word-spacing:-13.252339px;}
.ws3e{word-spacing:-13.248753px;}
.ws3d{word-spacing:-13.245166px;}
.ws3b{word-spacing:-13.223647px;}
.ws1ad{word-spacing:-13.191368px;}
.ws2b0{word-spacing:-13.141101px;}
.ws90{word-spacing:-13.121430px;}
.ws246{word-spacing:-13.069370px;}
.ws37{word-spacing:-13.067631px;}
.ws1ae{word-spacing:-13.046112px;}
.ws19a{word-spacing:-12.949275px;}
.ws97{word-spacing:-12.927756px;}
.ws94{word-spacing:-12.911616px;}
.ws57{word-spacing:-12.841678px;}
.ws39{word-spacing:-12.836298px;}
.ws242{word-spacing:-12.801575px;}
.wsd0{word-spacing:-12.798639px;}
.ws199{word-spacing:-12.717942px;}
.ws19b{word-spacing:-12.707182px;}
.ws2c{word-spacing:-12.653384px;}
.ws191{word-spacing:-12.621105px;}
.ws236{word-spacing:-12.500305px;}
.ws22a{word-spacing:-12.438138px;}
.ws6e{word-spacing:-12.422051px;}
.ws27c{word-spacing:-12.414228px;}
.ws6f{word-spacing:-12.400531px;}
.wsc5{word-spacing:-12.384392px;}
.ws67{word-spacing:-12.373632px;}
.ws1b0{word-spacing:-12.368252px;}
.ws38{word-spacing:-12.314454px;}
.ws2a6{word-spacing:-12.294676px;}
.ws1df{word-spacing:-12.292934px;}
.ws270{word-spacing:-12.289894px;}
.ws153{word-spacing:-12.260655px;}
.ws140{word-spacing:-12.217617px;}
.ws6a{word-spacing:-12.201477px;}
.ws13e{word-spacing:-12.196097px;}
.ws2e{word-spacing:-12.169198px;}
.ws2a7{word-spacing:-12.122522px;}
.ws287{word-spacing:-12.089048px;}
.wscc{word-spacing:-12.040082px;}
.wscb{word-spacing:-12.018563px;}
.wsa2{word-spacing:-11.975524px;}
.wsab{word-spacing:-11.932485px;}
.ws9e{word-spacing:-11.910966px;}
.ws17f{word-spacing:-11.894826px;}
.ws229{word-spacing:-11.869073px;}
.ws1da{word-spacing:-11.857167px;}
.ws59{word-spacing:-11.771090px;}
.wsc2{word-spacing:-11.760330px;}
.wsc0{word-spacing:-11.744191px;}
.wsc1{word-spacing:-11.728051px;}
.ws2c4{word-spacing:-11.725611px;}
.wscf{word-spacing:-11.717292px;}
.ws1d1{word-spacing:-11.711912px;}
.ws27b{word-spacing:-11.711265px;}
.ws6d{word-spacing:-11.690392px;}
.ws265{word-spacing:-11.658662px;}
.ws114{word-spacing:-11.641974px;}
.ws163{word-spacing:-11.620454px;}
.ws19e{word-spacing:-11.615075px;}
.wsd4{word-spacing:-11.593555px;}
.ws18c{word-spacing:-11.561276px;}
.ws29e{word-spacing:-11.558239px;}
.ws224{word-spacing:-11.505636px;}
.ws30{word-spacing:-11.485958px;}
.ws2b{word-spacing:-11.453679px;}
.ws32{word-spacing:-11.448300px;}
.ws2b5{word-spacing:-11.371739px;}
.ws71{word-spacing:-11.335323px;}
.ws8a{word-spacing:-11.324563px;}
.ws14d{word-spacing:-11.313804px;}
.ws70{word-spacing:-11.303044px;}
.ws2a3{word-spacing:-11.266533px;}
.ws65{word-spacing:-11.265385px;}
.ws1a1{word-spacing:-11.249245px;}
.ws226{word-spacing:-11.242623px;}
.ws19f{word-spacing:-11.227726px;}
.ws21f{word-spacing:-11.170892px;}
.ws13d{word-spacing:-11.163168px;}
.ws2be{word-spacing:-11.127854px;}
.ws157{word-spacing:-11.120129px;}
.wsed{word-spacing:-11.109370px;}
.ws2c5{word-spacing:-11.056123px;}
.ws267{word-spacing:-10.989174px;}
.wse1{word-spacing:-10.969494px;}
.ws73{word-spacing:-10.888796px;}
.ws11e{word-spacing:-10.872657px;}
.ws190{word-spacing:-10.802719px;}
.ws213{word-spacing:-10.793109px;}
.ws15d{word-spacing:-10.775820px;}
.ws2b4{word-spacing:-10.697468px;}
.ws89{word-spacing:-10.662843px;}
.ws192{word-spacing:-10.657463px;}
.ws2bc{word-spacing:-10.587481px;}
.ws220{word-spacing:-10.477493px;}
.ws3a{word-spacing:-10.442269px;}
.ws15f{word-spacing:-10.409990px;}
.ws88{word-spacing:-10.399231px;}
.ws6c{word-spacing:-10.307773px;}
.ws2bd{word-spacing:-10.286211px;}
.ws1e2{word-spacing:-10.210936px;}
.ws160{word-spacing:-10.205556px;}
.ws266{word-spacing:-10.200134px;}
.ws20a{word-spacing:-10.157073px;}
.wsdd{word-spacing:-10.135619px;}
.ws268{word-spacing:-10.118839px;}
.wsb2{word-spacing:-9.990363px;}
.ws29{word-spacing:-9.958084px;}
.wsee{word-spacing:-9.941944px;}
.ws169{word-spacing:-9.936564px;}
.ws245{word-spacing:-9.721928px;}
.ws244{word-spacing:-9.702797px;}
.ws2b6{word-spacing:-9.669325px;}
.ws27{word-spacing:-9.656813px;}
.ws85{word-spacing:-9.592255px;}
.ws86{word-spacing:-9.570735px;}
.ws274{word-spacing:-9.387184px;}
.ws269{word-spacing:-9.234158px;}
.wsb5{word-spacing:-9.167247px;}
.ws22b{word-spacing:-9.167209px;}
.wsb4{word-spacing:-9.156488px;}
.ws5e{word-spacing:-9.086550px;}
.ws147{word-spacing:-9.032751px;}
.ws19{word-spacing:-8.984333px;}
.ws145{word-spacing:-8.973573px;}
.ws232{word-spacing:-8.894632px;}
.ws24b{word-spacing:-8.870721px;}
.ws136{word-spacing:-8.865976px;}
.ws2b7{word-spacing:-8.846811px;}
.ws185{word-spacing:-8.833697px;}
.ws10b{word-spacing:-8.736860px;}
.ws28e{word-spacing:-8.727260px;}
.ws10c{word-spacing:-8.607744px;}
.wsf6{word-spacing:-8.553946px;}
.ws292{word-spacing:-8.535977px;}
.ws18a{word-spacing:-8.521667px;}
.ws125{word-spacing:-8.510907px;}
.wsf2{word-spacing:-8.430209px;}
.ws293{word-spacing:-8.382951px;}
.ws20d{word-spacing:-8.354259px;}
.ws22c{word-spacing:-8.253836px;}
.wsbd{word-spacing:-8.252675px;}
.ws28b{word-spacing:-8.229925px;}
.ws186{word-spacing:-8.215016px;}
.wsb6{word-spacing:-8.166597px;}
.ws255{word-spacing:-8.158194px;}
.ws28{word-spacing:-8.155837px;}
.ws92{word-spacing:-8.134318px;}
.ws17a{word-spacing:-8.037481px;}
.ws260{word-spacing:-8.019515px;}
.ws24a{word-spacing:-8.014733px;}
.ws2af{word-spacing:-7.995604px;}
.ws68{word-spacing:-7.972923px;}
.ws200{word-spacing:-7.957348px;}
.wsf1{word-spacing:-7.913745px;}
.ws173{word-spacing:-7.902956px;}
.wsbf{word-spacing:-7.822287px;}
.wsef{word-spacing:-7.752349px;}
.ws262{word-spacing:-7.651296px;}
.ws1dd{word-spacing:-7.639373px;}
.ws122{word-spacing:-7.590954px;}
.ws28a{word-spacing:-7.498270px;}
.ws2c7{word-spacing:-7.321334px;}
.wsf3{word-spacing:-7.235885px;}
.ws11c{word-spacing:-7.149807px;}
.ws8c{word-spacing:-7.069110px;}
.ws1fb{word-spacing:-7.048756px;}
.ws58{word-spacing:-6.972273px;}
.ws18d{word-spacing:-6.961513px;}
.ws1f5{word-spacing:-6.905295px;}
.ws18e{word-spacing:-6.859296px;}
.ws1f6{word-spacing:-6.857474px;}
.ws1f7{word-spacing:-6.852692px;}
.ws261{word-spacing:-6.771397px;}
.ws1ef{word-spacing:-6.608807px;}
.ws1f0{word-spacing:-6.541858px;}
.ws1a3{word-spacing:-6.536506px;}
.ws223{word-spacing:-6.517948px;}
.wse3{word-spacing:-6.509606px;}
.ws1a4{word-spacing:-6.493467px;}
.wsb1{word-spacing:-6.471948px;}
.ws1af{word-spacing:-6.466568px;}
.ws2a{word-spacing:-6.434289px;}
.ws1f2{word-spacing:-6.364922px;}
.ws26c{word-spacing:-6.288409px;}
.ws1de{word-spacing:-6.245994px;}
.wsb7{word-spacing:-5.993142px;}
.wsb8{word-spacing:-5.923204px;}
.ws27a{word-spacing:-5.738472px;}
.wsd9{word-spacing:-5.691871px;}
.ws76{word-spacing:-5.686491px;}
.ws19c{word-spacing:-5.670351px;}
.ws77{word-spacing:-5.648832px;}
.ws278{word-spacing:-5.628485px;}
.ws22e{word-spacing:-5.575882px;}
.wsaa{word-spacing:-5.455158px;}
.ws119{word-spacing:-5.417499px;}
.ws1e3{word-spacing:-5.283003px;}
.ws184{word-spacing:-5.110848px;}
.ws2d{word-spacing:-5.078569px;}
.ws228{word-spacing:-4.839445px;}
.ws29f{word-spacing:-4.834663px;}
.ws26b{word-spacing:-4.796406px;}
.ws13c{word-spacing:-4.605137px;}
.ws10f{word-spacing:-4.449128px;}
.ws110{word-spacing:-4.443748px;}
.wse2{word-spacing:-4.416849px;}
.ws28f{word-spacing:-4.246469px;}
.ws1b1{word-spacing:-4.228554px;}
.ws299{word-spacing:-4.212995px;}
.ws26{word-spacing:-4.072539px;}
.ws135{word-spacing:-4.013361px;}
.ws243{word-spacing:-3.859122px;}
.ws9b{word-spacing:-3.609873px;}
.ws259{word-spacing:-3.543506px;}
.ws24f{word-spacing:-3.457429px;}
.ws290{word-spacing:-3.352224px;}
.ws7a{word-spacing:-3.324741px;}
.ws161{word-spacing:-3.281702px;}
.ws2aa{word-spacing:-3.218326px;}
.ws1f4{word-spacing:-3.098775px;}
.ws1f3{word-spacing:-3.060518px;}
.ws2ab{word-spacing:-2.835762px;}
.ws11b{word-spacing:-2.695300px;}
.ws1a5{word-spacing:-2.652261px;}
.ws1fd{word-spacing:-2.491453px;}
.wseb{word-spacing:-2.480106px;}
.wsdb{word-spacing:-2.419722px;}
.ws11d{word-spacing:-2.404788px;}
.ws11a{word-spacing:-2.103517px;}
.ws29d{word-spacing:-1.946298px;}
.ws296{word-spacing:-1.855439px;}
.ws256{word-spacing:-1.114220px;}
.ws283{word-spacing:-1.099874px;}
.ws9c{word-spacing:-1.059828px;}
.ws295{word-spacing:-0.530809px;}
.ws2a5{word-spacing:-0.511680px;}
.ws1ab{word-spacing:-0.344310px;}
.ws45{word-spacing:0.000000px;}
.ws1a2{word-spacing:0.091457px;}
.wsca{word-spacing:0.220573px;}
.ws25{word-spacing:1.264262px;}
.ws27e{word-spacing:3.237455px;}
.ws27d{word-spacing:3.385710px;}
.ws8b{word-spacing:4.384570px;}
.ws1ed{word-spacing:5.398946px;}
.wsea{word-spacing:6.106118px;}
.wsae{word-spacing:6.881384px;}
.wsda{word-spacing:6.933987px;}
.ws1a7{word-spacing:10.092580px;}
.ws1a8{word-spacing:10.178657px;}
.ws46{word-spacing:12.581600px;}
.ws0{word-spacing:13.371802px;}
.ws225{word-spacing:16.120324px;}
.ws1f1{word-spacing:20.572422px;}
.wsaf{word-spacing:22.623926px;}
.ws227{word-spacing:65.848966px;}
.ws1d5{word-spacing:89.345538px;}
.ws22{word-spacing:89.383381px;}
.wsff{word-spacing:118.060589px;}
.ws102{word-spacing:119.163456px;}
.ws101{word-spacing:133.979535px;}
.wsfd{word-spacing:142.872411px;}
.ws1c5{word-spacing:239.515857px;}
.ws1c7{word-spacing:243.357062px;}
.ws1c9{word-spacing:243.367822px;}
.ws1c2{word-spacing:255.440183px;}
.ws1ce{word-spacing:261.643139px;}
.ws1ca{word-spacing:263.816594px;}
.ws1cc{word-spacing:264.720407px;}
.ws1cf{word-spacing:265.575802px;}
.ws1c8{word-spacing:266.689428px;}
.ws1c0{word-spacing:269.481565px;}
.ws51{word-spacing:315.436159px;}
.ws1cd{word-spacing:321.628355px;}
.ws4d{word-spacing:377.761605px;}
.ws52{word-spacing:448.000796px;}
.ws172{word-spacing:479.392163px;}
.ws1c1{word-spacing:482.082083px;}
.ws1ba{word-spacing:487.144512px;}
.ws1bd{word-spacing:527.891420px;}
.ws1bf{word-spacing:534.589321px;}
.ws1c3{word-spacing:538.543503px;}
.ws4f{word-spacing:542.718259px;}
.ws16c{word-spacing:546.511046px;}
.ws170{word-spacing:548.743680px;}
.ws175{word-spacing:594.601436px;}
.ws54{word-spacing:608.271610px;}
.ws176{word-spacing:821.205677px;}
.ws16a{word-spacing:2437.609234px;}
.ws1ee{word-spacing:2439.007992px;}
.wsac{word-spacing:2439.675092px;}
.ws2ca{word-spacing:2439.890286px;}
._49{margin-left:-316.119398px;}
._3e{margin-left:-26.592509px;}
._3f{margin-left:-25.285328px;}
._15{margin-left:-20.752443px;}
._6f{margin-left:-18.262687px;}
._6e{margin-left:-16.995462px;}
._20{margin-left:-15.563877px;}
._1f{margin-left:-14.353413px;}
._a{margin-left:-12.658764px;}
._8{margin-left:-10.753582px;}
._9{margin-left:-9.699179px;}
._23{margin-left:-5.880165px;}
._6{margin-left:-4.814376px;}
._2{margin-left:-3.771556px;}
._12{margin-left:-2.692362px;}
._0{margin-left:-1.267243px;}
._1{width:1.630092px;}
._b{width:2.826197px;}
._22{width:4.015178px;}
._17{width:9.495418px;}
._6b{width:10.707095px;}
._13{width:12.007803px;}
._21{width:13.877007px;}
._40{width:16.190338px;}
._6c{width:17.482395px;}
._7{width:19.228129px;}
._14{width:20.841500px;}
._24{width:23.353305px;}
._18{width:24.991799px;}
._6d{width:26.501212px;}
._70{width:29.443093px;}
._3{width:48.393226px;}
._4{width:62.380120px;}
._5{width:63.470489px;}
._16{width:98.601229px;}
._c{width:101.503917px;}
._48{width:107.279362px;}
._f{width:113.243232px;}
._44{width:121.847968px;}
._4a{width:123.553405px;}
._47{width:127.227869px;}
._2f{width:133.441551px;}
._45{width:137.702385px;}
._1a{width:149.769366px;}
._1d{width:165.838948px;}
._1b{width:168.335496px;}
._42{width:183.097475px;}
._46{width:187.707997px;}
._1e{width:211.433092px;}
._1c{width:212.552099px;}
._34{width:251.806993px;}
._37{width:253.573403px;}
._31{width:258.947910px;}
._e{width:263.778935px;}
._3d{width:270.409340px;}
._69{width:287.094869px;}
._50{width:291.000925px;}
._5d{width:296.462044px;}
._58{width:297.564911px;}
._56{width:299.269740px;}
._30{width:319.837449px;}
._39{width:323.726492px;}
._6a{width:333.574580px;}
._5e{width:334.916559px;}
._57{width:335.971008px;}
._5a{width:338.623269px;}
._64{width:341.606681px;}
._62{width:344.535175px;}
._33{width:346.881324px;}
._55{width:349.044019px;}
._67{width:354.768457px;}
._19{width:358.273425px;}
._52{width:365.560128px;}
._5f{width:366.881169px;}
._59{width:368.618857px;}
._3b{width:379.042026px;}
._35{width:381.392997px;}
._5c{width:382.450407px;}
._3c{width:383.514447px;}
._51{width:388.677282px;}
._66{width:389.941547px;}
._38{width:390.990632px;}
._10{width:402.686411px;}
._53{width:406.113362px;}
._32{width:408.437453px;}
._5b{width:409.793172px;}
._68{width:413.064115px;}
._63{width:416.921460px;}
._65{width:420.052527px;}
._4b{width:423.936729px;}
._4c{width:425.631421px;}
._60{width:432.904996px;}
._4d{width:437.967390px;}
._4e{width:439.726602px;}
._43{width:445.827341px;}
._61{width:453.332199px;}
._11{width:475.637034px;}
._54{width:479.117791px;}
._4f{width:544.192335px;}
._3a{width:575.481485px;}
._36{width:620.333211px;}
._2b{width:623.883912px;}
._2d{width:627.235510px;}
._29{width:629.548843px;}
._27{width:642.245266px;}
._28{width:646.952659px;}
._2c{width:680.980147px;}
._26{width:696.469287px;}
._2a{width:712.920257px;}
._41{width:731.884481px;}
._d{width:757.567549px;}
._2e{width:969.444768px;}
._25{width:1115.206153px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.120000px;}
.fs4{font-size:31.382400px;}
.fs3{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:44.832000px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y35{bottom:33.277575px;}
.y34{bottom:45.832500px;}
.y36{bottom:45.832650px;}
.y33{bottom:82.471845px;}
.y186{bottom:84.078870px;}
.yb8{bottom:84.079035px;}
.y91{bottom:84.081045px;}
.y169{bottom:84.082890px;}
.ydb{bottom:84.085560px;}
.y1a4{bottom:84.087915px;}
.y13f{bottom:84.088200px;}
.y66{bottom:84.090450px;}
.y1b3{bottom:84.092025px;}
.y269{bottom:85.410075px;}
.y22b{bottom:94.228080px;}
.y1ec{bottom:94.570110px;}
.y32{bottom:97.402695px;}
.y1b2{bottom:99.035970px;}
.y268{bottom:100.354005px;}
.y185{bottom:101.264760px;}
.yb7{bottom:101.264925px;}
.y90{bottom:101.266935px;}
.y168{bottom:101.268795px;}
.yda{bottom:101.271465px;}
.y1a3{bottom:101.273805px;}
.y13e{bottom:101.274105px;}
.y65{bottom:101.276355px;}
.y22a{bottom:109.172010px;}
.y1eb{bottom:109.514040px;}
.y31{bottom:112.347000px;}
.y267{bottom:115.297950px;}
.y184{bottom:118.450665px;}
.yb6{bottom:118.450830px;}
.y8f{bottom:118.452840px;}
.y167{bottom:118.454700px;}
.y1a2{bottom:118.459710px;}
.y64{bottom:118.462245px;}
.y1b1{bottom:119.218650px;}
.y13d{bottom:119.958285px;}
.y229{bottom:130.083960px;}
.y1ea{bottom:130.439145px;}
.y183{bottom:135.636555px;}
.yb5{bottom:135.636735px;}
.y8e{bottom:135.638730px;}
.y109{bottom:135.638745px;}
.y166{bottom:135.640590px;}
.yd9{bottom:135.641910px;}
.y1a1{bottom:135.645600px;}
.y63{bottom:135.648150px;}
.y266{bottom:136.223040px;}
.y228{bottom:145.027905px;}
.y1e9{bottom:145.383075px;}
.y265{bottom:151.166985px;}
.y182{bottom:152.822460px;}
.y108{bottom:152.824635px;}
.yd8{bottom:152.827815px;}
.y13c{bottom:152.830455px;}
.y1a0{bottom:152.831505px;}
.y165{bottom:154.324785px;}
.y227{bottom:159.971835px;}
.y1e8{bottom:160.328220px;}
.y264{bottom:166.110915px;}
.y181{bottom:170.008350px;}
.yb4{bottom:170.008530px;}
.y8d{bottom:170.010540px;}
.yd7{bottom:170.013720px;}
.y13b{bottom:170.016360px;}
.y19f{bottom:170.017410px;}
.y62{bottom:170.019000px;}
.y24{bottom:172.823160px;}
.y30{bottom:173.751180px;}
.y1e7{bottom:175.272150px;}
.y226{bottom:180.896940px;}
.y263{bottom:181.054860px;}
.y180{bottom:187.194255px;}
.yb3{bottom:187.194420px;}
.y107{bottom:187.195095px;}
.y8c{bottom:187.196430px;}
.yd6{bottom:187.199610px;}
.y19e{bottom:187.203300px;}
.y23{bottom:190.009065px;}
.y2f{bottom:190.937085px;}
.y164{bottom:193.137630px;}
.y225{bottom:195.840870px;}
.y262{bottom:195.998790px;}
.y1e6{bottom:196.184100px;}
.y17f{bottom:204.380160px;}
.yb2{bottom:204.380325px;}
.y106{bottom:204.380985px;}
.y8b{bottom:204.382335px;}
.yd5{bottom:204.385515px;}
.y13a{bottom:204.386805px;}
.y19d{bottom:204.389205px;}
.y22{bottom:207.194955px;}
.y1b0{bottom:207.298350px;}
.y2e{bottom:208.122975px;}
.y163{bottom:210.323535px;}
.y224{bottom:210.784815px;}
.y1e5{bottom:211.128045px;}
.y261{bottom:216.923895px;}
.y17e{bottom:221.566050px;}
.yb1{bottom:221.566230px;}
.y105{bottom:221.566890px;}
.y8a{bottom:221.568225px;}
.yd4{bottom:221.571405px;}
.y139{bottom:221.572710px;}
.y19c{bottom:221.575095px;}
.y61{bottom:223.107225px;}
.y21{bottom:224.380860px;}
.y1af{bottom:224.484255px;}
.y2d{bottom:225.308880px;}
.y1e4{bottom:226.071975px;}
.y162{bottom:227.509425px;}
.y223{bottom:231.709905px;}
.y260{bottom:231.867840px;}
.yb0{bottom:238.752120px;}
.y104{bottom:238.752780px;}
.y89{bottom:238.754130px;}
.yd3{bottom:238.757310px;}
.y138{bottom:238.758600px;}
.y19b{bottom:238.761000px;}
.y60{bottom:240.293115px;}
.y1e3{bottom:241.015920px;}
.y20{bottom:241.566750px;}
.y1ae{bottom:241.670145px;}
.y2c{bottom:242.494785px;}
.y222{bottom:246.655050px;}
.y25f{bottom:246.811770px;}
.yaf{bottom:255.938025px;}
.y103{bottom:255.938685px;}
.y88{bottom:255.940020px;}
.yd2{bottom:255.943215px;}
.y137{bottom:255.944505px;}
.y5f{bottom:257.479020px;}
.y1f{bottom:258.752655px;}
.y1ad{bottom:258.856050px;}
.y2b{bottom:259.680675px;}
.y221{bottom:261.598980px;}
.y25e{bottom:261.755715px;}
.y161{bottom:261.879885px;}
.y1e2{bottom:261.941010px;}
.y17d{bottom:269.316165px;}
.yae{bottom:273.123915px;}
.y102{bottom:273.124590px;}
.y87{bottom:273.125925px;}
.yd1{bottom:273.129105px;}
.y136{bottom:273.130410px;}
.y19a{bottom:273.132000px;}
.y5e{bottom:274.664910px;}
.y1e{bottom:275.938560px;}
.y1ac{bottom:276.041940px;}
.y2a{bottom:276.866580px;}
.y1e1{bottom:276.884955px;}
.y160{bottom:279.065790px;}
.y220{bottom:282.510930px;}
.y25d{bottom:282.667650px;}
.y17c{bottom:286.502070px;}
.yad{bottom:290.309820px;}
.y101{bottom:290.310480px;}
.y86{bottom:290.311830px;}
.y135{bottom:290.316300px;}
.y1e0{bottom:291.828885px;}
.y5d{bottom:291.850815px;}
.y1d{bottom:293.124450px;}
.y1ab{bottom:293.227845px;}
.y15f{bottom:296.251680px;}
.y21f{bottom:297.456060px;}
.y25c{bottom:297.611595px;}
.y17b{bottom:305.186250px;}
.y1df{bottom:306.772830px;}
.yac{bottom:307.495725px;}
.y85{bottom:307.497720px;}
.yd0{bottom:307.499565px;}
.y134{bottom:307.502205px;}
.y5c{bottom:309.036720px;}
.y1c{bottom:310.310355px;}
.y1aa{bottom:310.413750px;}
.y29{bottom:311.237025px;}
.y21e{bottom:312.401190px;}
.y25b{bottom:312.555525px;}
.y15e{bottom:313.437585px;}
.y1de{bottom:321.716760px;}
.y100{bottom:324.680940px;}
.yab{bottom:324.681615px;}
.y84{bottom:324.683625px;}
.ycf{bottom:324.685455px;}
.y133{bottom:324.688095px;}
.y5b{bottom:326.222610px;}
.y21d{bottom:327.345135px;}
.y1b{bottom:327.496245px;}
.y25a{bottom:327.499470px;}
.y1a9{bottom:327.599640px;}
.y199{bottom:327.602910px;}
.y28{bottom:328.422930px;}
.y17a{bottom:329.094255px;}
.y15d{bottom:330.623475px;}
.yff{bottom:341.866830px;}
.yaa{bottom:341.867520px;}
.y83{bottom:341.869515px;}
.yce{bottom:341.871360px;}
.y132{bottom:341.874000px;}
.y1dd{bottom:342.641865px;}
.y5a{bottom:343.408515px;}
.y1a{bottom:344.682150px;}
.y1a8{bottom:344.785545px;}
.y198{bottom:344.788800px;}
.y27{bottom:345.608820px;}
.y179{bottom:346.280160px;}
.y15c{bottom:347.809380px;}
.y21c{bottom:348.270240px;}
.y259{bottom:348.424575px;}
.y1dc{bottom:357.585795px;}
.yfe{bottom:359.052735px;}
.ya9{bottom:359.053410px;}
.ycd{bottom:359.057250px;}
.y59{bottom:360.594405px;}
.y1a7{bottom:361.971435px;}
.y197{bottom:361.974705px;}
.y26{bottom:362.794725px;}
.y21b{bottom:363.214170px;}
.y258{bottom:363.368505px;}
.y178{bottom:363.466065px;}
.y15b{bottom:364.995285px;}
.y1db{bottom:372.529740px;}
.yfd{bottom:376.238625px;}
.ya8{bottom:376.239315px;}
.ycc{bottom:376.243155px;}
.y131{bottom:376.245000px;}
.y58{bottom:377.780310px;}
.y21a{bottom:378.158115px;}
.y257{bottom:378.312450px;}
.y19{bottom:379.066500px;}
.y1a6{bottom:379.157340px;}
.y196{bottom:379.160595px;}
.y25{bottom:379.980630px;}
.y177{bottom:382.150245px;}
.y15a{bottom:382.181175px;}
.y82{bottom:382.639290px;}
.y1da{bottom:387.460530px;}
.y219{bottom:393.102045px;}
.y256{bottom:393.256380px;}
.ya7{bottom:393.425205px;}
.ycb{bottom:393.429060px;}
.y57{bottom:394.966215px;}
.y1a5{bottom:396.343245px;}
.y195{bottom:396.346500px;}
.y159{bottom:399.367080px;}
.y81{bottom:399.825195px;}
.y1d9{bottom:402.404460px;}
.y176{bottom:406.058250px;}
.yfc{bottom:410.609085px;}
.yca{bottom:410.614950px;}
.y218{bottom:414.027150px;}
.y255{bottom:414.181485px;}
.y80{bottom:417.011085px;}
.y175{bottom:423.244155px;}
.y1d8{bottom:423.329565px;}
.yfb{bottom:427.794990px;}
.ya6{bottom:427.795665px;}
.yc9{bottom:427.800855px;}
.y130{bottom:428.010180px;}
.y217{bottom:428.957925px;}
.y254{bottom:429.125415px;}
.y56{bottom:429.336660px;}
.y7f{bottom:435.695280px;}
.y1d7{bottom:438.273495px;}
.y158{bottom:439.678215px;}
.y174{bottom:441.928335px;}
.y216{bottom:443.901870px;}
.y253{bottom:444.056205px;}
.yfa{bottom:444.980880px;}
.ya5{bottom:444.981570px;}
.yc8{bottom:444.986745px;}
.y12f{bottom:445.196070px;}
.y194{bottom:445.747455px;}
.y55{bottom:446.522565px;}
.y18{bottom:446.538630px;}
.y1d6{bottom:453.217440px;}
.y157{bottom:456.864120px;}
.y215{bottom:458.845800px;}
.y252{bottom:459.000135px;}
.y7e{bottom:459.589830px;}
.yf9{bottom:462.166785px;}
.ya4{bottom:462.167460px;}
.yc7{bottom:462.172650px;}
.y12e{bottom:462.381975px;}
.y54{bottom:463.708455px;}
.y173{bottom:465.836340px;}
.y17{bottom:465.978675px;}
.y193{bottom:468.157170px;}
.y1d5{bottom:468.161370px;}
.y214{bottom:473.789745px;}
.y251{bottom:473.944080px;}
.y156{bottom:474.050010px;}
.y7d{bottom:476.775735px;}
.yf8{bottom:479.352675px;}
.ya3{bottom:479.353365px;}
.y12d{bottom:479.567880px;}
.y53{bottom:480.894360px;}
.y172{bottom:483.022245px;}
.y16{bottom:485.405280px;}
.y1d4{bottom:489.086475px;}
.y192{bottom:490.580340px;}
.y155{bottom:491.235915px;}
.y7c{bottom:493.961640px;}
.y213{bottom:494.714850px;}
.y250{bottom:494.869185px;}
.yf7{bottom:496.538580px;}
.ya2{bottom:496.539255px;}
.yc6{bottom:496.543650px;}
.y12c{bottom:496.753770px;}
.y52{bottom:498.080250px;}
.y171{bottom:501.706425px;}
.y1d3{bottom:504.030405px;}
.y15{bottom:504.831885px;}
.y154{bottom:508.421805px;}
.y212{bottom:509.658780px;}
.y24f{bottom:509.813115px;}
.y7b{bottom:511.147530px;}
.y191{bottom:512.990070px;}
.yf6{bottom:513.724485px;}
.y12b{bottom:513.939675px;}
.y51{bottom:515.266155px;}
.y1d2{bottom:518.974350px;}
.y14{bottom:524.258490px;}
.y211{bottom:524.602725px;}
.y24e{bottom:524.757060px;}
.y170{bottom:525.600990px;}
.y153{bottom:527.106000px;}
.y7a{bottom:529.831710px;}
.ya1{bottom:530.909715px;}
.yf5{bottom:530.910375px;}
.y12a{bottom:531.125565px;}
.y50{bottom:532.452060px;}
.y190{bottom:535.413240px;}
.y210{bottom:539.546655px;}
.y24d{bottom:539.700990px;}
.y1d1{bottom:539.886300px;}
.y16f{bottom:542.786880px;}
.y13{bottom:543.685095px;}
.ya0{bottom:548.095605px;}
.y129{bottom:548.311470px;}
.y4f{bottom:549.637950px;}
.y152{bottom:551.014005px;}
.y79{bottom:553.739730px;}
.y20f{bottom:554.490600px;}
.y1d0{bottom:554.830230px;}
.yc5{bottom:554.981010px;}
.y18f{bottom:557.822970px;}
.y16e{bottom:559.972785px;}
.y24c{bottom:560.626095px;}
.y12{bottom:563.111700px;}
.yf4{bottom:565.280835px;}
.y9f{bottom:565.281510px;}
.y128{bottom:565.497375px;}
.y4e{bottom:566.823855px;}
.y151{bottom:568.199910px;}
.y78{bottom:570.925620px;}
.yc4{bottom:572.166915px;}
.y20e{bottom:575.415690px;}
.y24b{bottom:575.570025px;}
.y1cf{bottom:575.755335px;}
.y16d{bottom:577.158690px;}
.y18e{bottom:580.246140px;}
.yf3{bottom:582.466725px;}
.y9e{bottom:582.467415px;}
.y11{bottom:582.538290px;}
.y127{bottom:582.683265px;}
.y4d{bottom:584.009745px;}
.y150{bottom:585.385800px;}
.y77{bottom:588.111525px;}
.yc3{bottom:589.352805px;}
.y20d{bottom:590.359635px;}
.y24a{bottom:590.513970px;}
.y1ce{bottom:590.699265px;}
.y16c{bottom:595.842870px;}
.yf2{bottom:599.652630px;}
.y9d{bottom:599.653305px;}
.y126{bottom:599.869170px;}
.y4c{bottom:601.195650px;}
.y10{bottom:601.964895px;}
.y14f{bottom:602.571705px;}
.y18d{bottom:602.655870px;}
.y20c{bottom:605.303565px;}
.y249{bottom:605.457900px;}
.y1cd{bottom:605.643210px;}
.yc2{bottom:606.538710px;}
.y76{bottom:606.795705px;}
.yf1{bottom:616.838520px;}
.y9c{bottom:616.839210px;}
.y125{bottom:617.055060px;}
.y16b{bottom:619.750875px;}
.y14e{bottom:619.757595px;}
.y248{bottom:620.401845px;}
.yf{bottom:621.391500px;}
.yc1{bottom:623.724600px;}
.y18c{bottom:625.065585px;}
.y20b{bottom:626.215515px;}
.y1cc{bottom:626.568300px;}
.y75{bottom:630.703710px;}
.yf0{bottom:634.024425px;}
.y9b{bottom:634.025100px;}
.y124{bottom:634.240965px;}
.y4b{bottom:635.566500px;}
.y16a{bottom:636.936780px;}
.y14d{bottom:636.943500px;}
.ye{bottom:640.818000px;}
.yc0{bottom:640.910505px;}
.y20a{bottom:641.159460px;}
.y247{bottom:641.313780px;}
.y1cb{bottom:641.512245px;}
.y18b{bottom:647.488755px;}
.y74{bottom:647.889615px;}
.y9a{bottom:651.211005px;}
.y123{bottom:651.426870px;}
.y209{bottom:656.103390px;}
.y246{bottom:656.257725px;}
.y1ca{bottom:656.456175px;}
.ybf{bottom:658.096410px;}
.y73{bottom:665.075520px;}
.y99{bottom:668.396910px;}
.y122{bottom:668.612760px;}
.yef{bottom:669.016245px;}
.y18a{bottom:669.898485px;}
.y208{bottom:671.047335px;}
.y245{bottom:671.201655px;}
.ybe{bottom:675.282300px;}
.y1c9{bottom:678.866115px;}
.y72{bottom:683.759700px;}
.y98{bottom:685.582800px;}
.y121{bottom:685.798665px;}
.y244{bottom:686.145600px;}
.yee{bottom:686.202150px;}
.y4a{bottom:688.644660px;}
.yd{bottom:691.577385px;}
.y207{bottom:691.972425px;}
.y14c{bottom:692.321655px;}
.ybd{bottom:692.468205px;}
.y97{bottom:702.768705px;}
.y120{bottom:702.984555px;}
.yed{bottom:703.388055px;}
.y49{bottom:705.830565px;}
.yc{bottom:706.522125px;}
.y206{bottom:706.916370px;}
.y243{bottom:707.070705px;}
.ybc{bottom:709.654095px;}
.y14b{bottom:714.731385px;}
.y96{bottom:719.954595px;}
.y11f{bottom:720.170460px;}
.y1c8{bottom:720.283530px;}
.yb{bottom:721.453425px;}
.y205{bottom:721.860300px;}
.y242{bottom:722.014635px;}
.yec{bottom:722.072235px;}
.y48{bottom:723.016455px;}
.y71{bottom:723.017730px;}
.ybb{bottom:726.840000px;}
.y1c7{bottom:735.227475px;}
.ya{bottom:736.398180px;}
.y204{bottom:736.804245px;}
.y241{bottom:736.958580px;}
.y95{bottom:737.140500px;}
.y14a{bottom:737.154555px;}
.y11e{bottom:737.356350px;}
.y47{bottom:740.202360px;}
.y70{bottom:740.203635px;}
.yeb{bottom:745.980240px;}
.y240{bottom:751.902510px;}
.y11d{bottom:754.542255px;}
.y1c6{bottom:755.410155px;}
.y46{bottom:757.388250px;}
.y6f{bottom:757.389540px;}
.y203{bottom:757.729335px;}
.y149{bottom:759.564270px;}
.y9{bottom:761.062185px;}
.yea{bottom:763.166145px;}
.y11c{bottom:771.728160px;}
.yba{bottom:772.483470px;}
.y202{bottom:772.673280px;}
.y23f{bottom:772.827615px;}
.y6e{bottom:774.575430px;}
.y94{bottom:779.989470px;}
.ye9{bottom:780.352035px;}
.y148{bottom:781.974000px;}
.y8{bottom:785.713065px;}
.y201{bottom:787.617210px;}
.y23e{bottom:787.771545px;}
.y11b{bottom:788.914050px;}
.yb9{bottom:789.669000px;}
.y45{bottom:791.758710px;}
.y6d{bottom:791.761335px;}
.y93{bottom:797.175000px;}
.y1c5{bottom:797.571180px;}
.ye8{bottom:799.036230px;}
.y200{bottom:802.548000px;}
.y23d{bottom:802.715490px;}
.y11a{bottom:806.099955px;}
.y44{bottom:808.944600px;}
.y6c{bottom:808.947225px;}
.y147{bottom:810.972000px;}
.y7{bottom:814.117200px;}
.y23c{bottom:817.646265px;}
.y1c4{bottom:817.753875px;}
.ye7{bottom:822.944235px;}
.y119{bottom:823.285845px;}
.y1ff{bottom:823.493535px;}
.y43{bottom:826.130505px;}
.y6b{bottom:826.133130px;}
.y6{bottom:834.583500px;}
.y1fe{bottom:838.437480px;}
.y23b{bottom:838.571370px;}
.ye6{bottom:840.130125px;}
.y146{bottom:840.280500px;}
.y42{bottom:843.316410px;}
.y6a{bottom:843.319035px;}
.y1fd{bottom:853.381410px;}
.y23a{bottom:853.516500px;}
.ye5{bottom:857.316030px;}
.y118{bottom:857.656305px;}
.y1c3{bottom:859.914900px;}
.y41{bottom:860.502300px;}
.y69{bottom:860.504925px;}
.y5{bottom:861.934500px;}
.y1fc{bottom:868.325355px;}
.y239{bottom:868.460445px;}
.ye4{bottom:874.501935px;}
.y117{bottom:874.842210px;}
.y1c2{bottom:874.858845px;}
.y40{bottom:877.688205px;}
.y238{bottom:883.404375px;}
.y1fb{bottom:889.250445px;}
.y1c1{bottom:889.802775px;}
.y116{bottom:892.028100px;}
.ye3{bottom:893.186115px;}
.y4{bottom:893.361270px;}
.y3f{bottom:894.874095px;}
.y68{bottom:894.875385px;}
.y145{bottom:900.194385px;}
.y1fa{bottom:904.194390px;}
.y237{bottom:904.329480px;}
.y1c0{bottom:904.746720px;}
.y189{bottom:905.419965px;}
.y115{bottom:909.214005px;}
.y3e{bottom:912.060000px;}
.y67{bottom:912.061275px;}
.y1f9{bottom:919.138320px;}
.y236{bottom:919.273410px;}
.y1bf{bottom:919.690650px;}
.y144{bottom:922.604100px;}
.y3{bottom:924.736500px;}
.y114{bottom:926.399895px;}
.ye2{bottom:926.666205px;}
.y188{bottom:927.829680px;}
.y1f8{bottom:934.082265px;}
.y235{bottom:934.217355px;}
.y1be{bottom:934.634595px;}
.y275{bottom:940.196265px;}
.y113{bottom:943.585800px;}
.ye1{bottom:943.852095px;}
.y143{bottom:945.013830px;}
.y234{bottom:949.161285px;}
.y1bd{bottom:949.578525px;}
.y187{bottom:950.252850px;}
.y1f7{bottom:954.994215px;}
.y274{bottom:955.140210px;}
.y112{bottom:960.771705px;}
.ye0{bottom:961.038000px;}
.y1bc{bottom:964.522470px;}
.y142{bottom:967.437270px;}
.y1f6{bottom:969.938145px;}
.y273{bottom:970.070985px;}
.y233{bottom:970.073235px;}
.y3d{bottom:972.662580px;}
.y111{bottom:977.957595px;}
.y1bb{bottom:984.690795px;}
.y1f5{bottom:984.882090px;}
.y272{bottom:985.014930px;}
.y232{bottom:985.017180px;}
.y141{bottom:989.847930px;}
.y3c{bottom:995.085750px;}
.y110{bottom:995.143500px;}
.y2{bottom:995.706000px;}
.y1f4{bottom:999.826020px;}
.y231{bottom:999.961110px;}
.y271{bottom:1005.940035px;}
.ydf{bottom:1012.271100px;}
.y10f{bottom:1012.329390px;}
.y230{bottom:1014.905055px;}
.y3b{bottom:1017.495480px;}
.y1f3{bottom:1020.751125px;}
.y270{bottom:1020.883965px;}
.y1ba{bottom:1026.864990px;}
.yde{bottom:1034.680830px;}
.y1f2{bottom:1035.695055px;}
.y26f{bottom:1035.827910px;}
.y22f{bottom:1035.830145px;}
.y3a{bottom:1039.918650px;}
.y1b9{bottom:1041.810120px;}
.y10e{bottom:1046.699850px;}
.y1f1{bottom:1050.640185px;}
.y26e{bottom:1050.773040px;}
.y22e{bottom:1050.774090px;}
.y1b8{bottom:1056.755250px;}
.ydd{bottom:1057.104000px;}
.y140{bottom:1061.937000px;}
.y10d{bottom:1063.885740px;}
.y1f0{bottom:1065.584130px;}
.y22d{bottom:1065.718020px;}
.y39{bottom:1068.903150px;}
.y26d{bottom:1071.698130px;}
.y1b7{bottom:1071.699195px;}
.y1ef{bottom:1080.528060px;}
.y22c{bottom:1080.661965px;}
.y10c{bottom:1081.071645px;}
.ydc{bottom:1086.088500px;}
.y26c{bottom:1086.642075px;}
.y1b6{bottom:1086.643125px;}
.y38{bottom:1098.211470px;}
.y10b{bottom:1098.257550px;}
.y1ee{bottom:1101.453165px;}
.y26b{bottom:1101.586005px;}
.y1b5{bottom:1101.587070px;}
.y1{bottom:1113.912000px;}
.y37{bottom:1115.397000px;}
.y10a{bottom:1115.443440px;}
.y1ed{bottom:1116.397095px;}
.y26a{bottom:1116.529950px;}
.y1b4{bottom:1116.531000px;}
.y92{bottom:1150.065000px;}
.h5{height:24.635184px;}
.ha{height:28.154496px;}
.he{height:29.561133px;}
.hb{height:32.846598px;}
.h7{height:35.193120px;}
.h8{height:35.194380px;}
.hc{height:37.539171px;}
.h6{height:40.782384px;}
.h9{height:42.231744px;}
.h2{height:46.923846px;}
.h11{height:47.482956px;}
.h10{height:47.486016px;}
.hf{height:47.536776px;}
.h4{height:47.540496px;}
.h3{height:84.463488px;}
.hd{height:1173.540000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.860000px;}
.x15{left:68.967045px;}
.xa{left:72.341400px;}
.x5{left:76.824000px;}
.x2{left:82.291500px;}
.xb{left:87.462795px;}
.xd{left:248.258910px;}
.xf{left:264.406920px;}
.x14{left:270.038265px;}
.x11{left:275.734170px;}
.xe{left:282.402480px;}
.x12{left:284.253150px;}
.x10{left:287.100420px;}
.x13{left:299.198340px;}
.xc{left:449.653500px;}
.x3{left:459.037575px;}
.x6{left:463.517640px;}
.x7{left:478.637685px;}
.x9{left:794.862000px;}
.x4{left:795.942000px;}
.x8{left:870.375000px;}
@media print{
.v5{vertical-align:-17.184000pt;}
.v2{vertical-align:-14.352000pt;}
.v4{vertical-align:-5.327253pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.353067pt;}
.v1{vertical-align:17.232000pt;}
.ls6f{letter-spacing:-4.654538pt;}
.ls32{letter-spacing:-4.271974pt;}
.ls4f{letter-spacing:-2.869248pt;}
.ls2f{letter-spacing:-2.524928pt;}
.ls4e{letter-spacing:-1.659382pt;}
.ls1b{letter-spacing:-1.601997pt;}
.ls63{letter-spacing:-1.453752pt;}
.ls3a{letter-spacing:-1.420278pt;}
.ls18{letter-spacing:-1.183565pt;}
.ls45{letter-spacing:-0.937288pt;}
.ls17{letter-spacing:-0.797013pt;}
.ls50{letter-spacing:-0.779474pt;}
.ls16{letter-spacing:-0.585805pt;}
.ls4b{letter-spacing:-0.492554pt;}
.ls38{letter-spacing:-0.459079pt;}
.ls83{letter-spacing:-0.429323pt;}
.ls7d{letter-spacing:-0.420821pt;}
.ls7f{letter-spacing:-0.412320pt;}
.ls36{letter-spacing:-0.248668pt;}
.ls4c{letter-spacing:-0.066949pt;}
.ls7c{letter-spacing:-0.046758pt;}
.ls66{letter-spacing:-0.043039pt;}
.ls33{letter-spacing:-0.038257pt;}
.ls46{letter-spacing:-0.033475pt;}
.ls21{letter-spacing:-0.031881pt;}
.ls79{letter-spacing:-0.029755pt;}
.ls12{letter-spacing:-0.028692pt;}
.ls31{letter-spacing:-0.025504pt;}
.ls39{letter-spacing:-0.023910pt;}
.ls7e{letter-spacing:-0.021254pt;}
.ls14{letter-spacing:-0.019128pt;}
.ls7a{letter-spacing:-0.017003pt;}
.ls20{letter-spacing:-0.015940pt;}
.ls1d{letter-spacing:-0.014346pt;}
.ls73{letter-spacing:-0.012752pt;}
.ls19{letter-spacing:-0.011955pt;}
.ls10{letter-spacing:-0.010627pt;}
.ls1c{letter-spacing:-0.009564pt;}
.ls44{letter-spacing:-0.008501pt;}
.ls1a{letter-spacing:-0.007970pt;}
.ls1f{letter-spacing:-0.006376pt;}
.ls37{letter-spacing:-0.005313pt;}
.ls13{letter-spacing:-0.004782pt;}
.ls30{letter-spacing:-0.004251pt;}
.ls15{letter-spacing:-0.003985pt;}
.ls11{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003188pt;}
.ls8{letter-spacing:0.003985pt;}
.ls3f{letter-spacing:0.004251pt;}
.lsd{letter-spacing:0.004782pt;}
.ls0{letter-spacing:0.005313pt;}
.ls3e{letter-spacing:0.008501pt;}
.ls27{letter-spacing:0.009564pt;}
.lsa{letter-spacing:0.011955pt;}
.ls74{letter-spacing:0.012752pt;}
.ls1{letter-spacing:0.012768pt;}
.lsb{letter-spacing:0.014342pt;}
.ls1e{letter-spacing:0.014346pt;}
.ls55{letter-spacing:0.014396pt;}
.ls76{letter-spacing:0.017003pt;}
.ls81{letter-spacing:0.017021pt;}
.ls2d{letter-spacing:0.019125pt;}
.ls29{letter-spacing:0.019128pt;}
.lsc{letter-spacing:0.019179pt;}
.ls75{letter-spacing:0.021254pt;}
.ls78{letter-spacing:0.025504pt;}
.ls49{letter-spacing:0.028692pt;}
.ls7b{letter-spacing:0.029755pt;}
.ls77{letter-spacing:0.042507pt;}
.ls65{letter-spacing:0.119552pt;}
.ls7{letter-spacing:2.620817pt;}
.ls6{letter-spacing:2.652245pt;}
.ls2{letter-spacing:2.655639pt;}
.ls9{letter-spacing:2.676608pt;}
.ls4{letter-spacing:2.703479pt;}
.ls3d{letter-spacing:8.759093pt;}
.ls22{letter-spacing:8.807444pt;}
.ls80{letter-spacing:9.972189pt;}
.ls62{letter-spacing:10.013694pt;}
.ls57{letter-spacing:10.649664pt;}
.ls5b{letter-spacing:10.649717pt;}
.ls60{letter-spacing:11.209205pt;}
.ls3c{letter-spacing:11.228324pt;}
.ls51{letter-spacing:11.233106pt;}
.lsf{letter-spacing:11.247452pt;}
.ls43{letter-spacing:11.252234pt;}
.ls6e{letter-spacing:11.256992pt;}
.ls2e{letter-spacing:11.974325pt;}
.ls4d{letter-spacing:12.768154pt;}
.ls53{letter-spacing:13.322875pt;}
.ls41{letter-spacing:15.154406pt;}
.ls82{letter-spacing:15.587390pt;}
.ls47{letter-spacing:17.124608pt;}
.ls3b{letter-spacing:18.301020pt;}
.ls48{letter-spacing:19.099616pt;}
.ls2b{letter-spacing:20.419499pt;}
.ls5c{letter-spacing:21.858848pt;}
.ls58{letter-spacing:21.858901pt;}
.ls64{letter-spacing:22.848778pt;}
.ls40{letter-spacing:23.676098pt;}
.ls61{letter-spacing:31.906001pt;}
.ls2c{letter-spacing:31.906054pt;}
.ls4a{letter-spacing:111.577600pt;}
.ls28{letter-spacing:111.584277pt;}
.ls42{letter-spacing:111.596844pt;}
.ls2a{letter-spacing:111.601474pt;}
.ls3{letter-spacing:156.903364pt;}
.ls5{letter-spacing:156.903524pt;}
.ls69{letter-spacing:204.013062pt;}
.ls68{letter-spacing:207.661809pt;}
.ls6c{letter-spacing:213.615516pt;}
.ls6b{letter-spacing:226.096742pt;}
.ls6d{letter-spacing:237.664582pt;}
.ls6a{letter-spacing:240.495569pt;}
.ls67{letter-spacing:247.788262pt;}
.ls25{letter-spacing:263.296582pt;}
.ls72{letter-spacing:280.990239pt;}
.ls71{letter-spacing:286.460938pt;}
.ls70{letter-spacing:291.941202pt;}
.ls35{letter-spacing:334.367816pt;}
.ls34{letter-spacing:345.318779pt;}
.ls24{letter-spacing:361.745222pt;}
.ls23{letter-spacing:411.038929pt;}
.ls26{letter-spacing:428.799569pt;}
.ls5e{letter-spacing:502.429222pt;}
.ls56{letter-spacing:526.913489pt;}
.ls5a{letter-spacing:527.774236pt;}
.ls5d{letter-spacing:528.395136pt;}
.ls52{letter-spacing:547.792049pt;}
.ls59{letter-spacing:663.371136pt;}
.ls5f{letter-spacing:666.827136pt;}
.ls54{letter-spacing:683.339136pt;}
.ws4e{word-spacing:-338.155223pt;}
.ws56{word-spacing:-327.299901pt;}
.ws1b8{word-spacing:-238.214533pt;}
.ws1be{word-spacing:-227.363994pt;}
.ws1b9{word-spacing:-227.254006pt;}
.ws1bc{word-spacing:-221.840691pt;}
.ws18f{word-spacing:-51.780362pt;}
.wsa0{word-spacing:-47.232604pt;}
.ws16d{word-spacing:-42.254459pt;}
.ws120{word-spacing:-41.699738pt;}
.ws288{word-spacing:-41.304246pt;}
.wsfb{word-spacing:-40.183818pt;}
.ws44{word-spacing:-40.179036pt;}
.ws2{word-spacing:-36.946350pt;}
.ws273{word-spacing:-35.689045pt;}
.ws3{word-spacing:-35.320443pt;}
.ws17{word-spacing:-32.145989pt;}
.ws1{word-spacing:-32.135363pt;}
.ws42{word-spacing:-31.309572pt;}
.wsad{word-spacing:-31.261221pt;}
.wsa1{word-spacing:-28.950712pt;}
.ws34{word-spacing:-28.936366pt;}
.ws31{word-spacing:-28.931584pt;}
.ws1a0{word-spacing:-28.926802pt;}
.ws171{word-spacing:-28.922020pt;}
.ws55{word-spacing:-28.917238pt;}
.ws146{word-spacing:-28.912456pt;}
.wsba{word-spacing:-28.472505pt;}
.wsfe{word-spacing:-28.439030pt;}
.ws13f{word-spacing:-28.152110pt;}
.ws1c6{word-spacing:-27.994296pt;}
.ws9f{word-spacing:-27.511306pt;}
.ws17e{word-spacing:-27.477832pt;}
.ws16e{word-spacing:-27.272202pt;}
.ws237{word-spacing:-25.759363pt;}
.ws212{word-spacing:-25.733859pt;}
.ws1fa{word-spacing:-25.729608pt;}
.ws20b{word-spacing:-25.725357pt;}
.ws21a{word-spacing:-25.721107pt;}
.ws48{word-spacing:-25.716856pt;}
.ws208{word-spacing:-25.712605pt;}
.ws251{word-spacing:-25.708355pt;}
.ws257{word-spacing:-25.699853pt;}
.ws254{word-spacing:-25.691352pt;}
.ws291{word-spacing:-25.687101pt;}
.ws249{word-spacing:-25.678600pt;}
.wsc{word-spacing:-24.105668pt;}
.ws13{word-spacing:-24.097698pt;}
.ws43{word-spacing:-22.502128pt;}
.ws69{word-spacing:-21.399808pt;}
.ws15a{word-spacing:-21.347205pt;}
.ws95{word-spacing:-21.241999pt;}
.ws164{word-spacing:-20.931164pt;}
.wsdf{word-spacing:-20.878561pt;}
.ws1e6{word-spacing:-20.854651pt;}
.wse0{word-spacing:-20.792484pt;}
.wsde{word-spacing:-20.768573pt;}
.ws23{word-spacing:-20.620329pt;}
.ws78{word-spacing:-20.582072pt;}
.ws8f{word-spacing:-20.543816pt;}
.ws80{word-spacing:-20.462520pt;}
.wscd{word-spacing:-20.457738pt;}
.ws105{word-spacing:-20.448174pt;}
.wsce{word-spacing:-20.438610pt;}
.ws124{word-spacing:-20.338186pt;}
.ws12a{word-spacing:-20.146903pt;}
.wsd6{word-spacing:-20.127775pt;}
.ws141{word-spacing:-19.850414pt;}
.ws21{word-spacing:-19.836068pt;}
.ws123{word-spacing:-19.778683pt;}
.wsbb{word-spacing:-19.721298pt;}
.wsb9{word-spacing:-19.716516pt;}
.ws150{word-spacing:-19.706952pt;}
.wse9{word-spacing:-19.680784pt;}
.ws14f{word-spacing:-19.678259pt;}
.wsd7{word-spacing:-19.668695pt;}
.ws64{word-spacing:-19.659531pt;}
.ws7d{word-spacing:-19.648904pt;}
.ws83{word-spacing:-19.620874pt;}
.ws15b{word-spacing:-19.590457pt;}
.wsf4{word-spacing:-19.577836pt;}
.wsd1{word-spacing:-19.496540pt;}
.ws1d2{word-spacing:-19.429591pt;}
.wse6{word-spacing:-19.391334pt;}
.ws1d6{word-spacing:-19.333949pt;}
.ws132{word-spacing:-19.252654pt;}
.ws187{word-spacing:-19.123538pt;}
.ws24c{word-spacing:-19.106986pt;}
.ws1f{word-spacing:-19.094845pt;}
.ws143{word-spacing:-19.070935pt;}
.ws1e4{word-spacing:-19.023114pt;}
.ws193{word-spacing:-18.980076pt;}
.ws194{word-spacing:-18.975293pt;}
.ws107{word-spacing:-18.941819pt;}
.ws18{word-spacing:-18.937037pt;}
.ws1a6{word-spacing:-18.898780pt;}
.ws79{word-spacing:-18.865306pt;}
.ws1e5{word-spacing:-18.841395pt;}
.ws294{word-spacing:-18.830690pt;}
.ws24d{word-spacing:-18.817937pt;}
.ws2a9{word-spacing:-18.711669pt;}
.wsf7{word-spacing:-18.707497pt;}
.wsa9{word-spacing:-18.678804pt;}
.ws20c{word-spacing:-18.660661pt;}
.ws252{word-spacing:-18.584148pt;}
.ws87{word-spacing:-18.540124pt;}
.ws109{word-spacing:-18.497085pt;}
.ws1d8{word-spacing:-18.387098pt;}
.ws253{word-spacing:-18.350358pt;}
.ws1d{word-spacing:-18.344059pt;}
.ws280{word-spacing:-18.312102pt;}
.ws21e{word-spacing:-18.286597pt;}
.ws289{word-spacing:-18.244090pt;}
.ws218{word-spacing:-18.184580pt;}
.ws12b{word-spacing:-18.147994pt;}
.ws238{word-spacing:-18.146324pt;}
.ws2a4{word-spacing:-18.120819pt;}
.ws12d{word-spacing:-18.100173pt;}
.ws117{word-spacing:-18.085827pt;}
.wsa5{word-spacing:-18.076262pt;}
.ws21d{word-spacing:-18.074061pt;}
.ws2f{word-spacing:-18.066698pt;}
.ws1d3{word-spacing:-18.009313pt;}
.ws27f{word-spacing:-17.980546pt;}
.ws28c{word-spacing:-17.946540pt;}
.ws1bb{word-spacing:-17.942364pt;}
.ws188{word-spacing:-17.913672pt;}
.ws2ad{word-spacing:-17.908283pt;}
.wsf5{word-spacing:-17.856287pt;}
.ws13b{word-spacing:-17.832376pt;}
.ws106{word-spacing:-17.794120pt;}
.ws2c3{word-spacing:-17.789263pt;}
.ws1a{word-spacing:-17.779773pt;}
.ws198{word-spacing:-17.770209pt;}
.ws16f{word-spacing:-17.760645pt;}
.ws5a{word-spacing:-17.755863pt;}
.ws113{word-spacing:-17.751081pt;}
.ws1d0{word-spacing:-17.751071pt;}
.ws28d{word-spacing:-17.746756pt;}
.ws1cb{word-spacing:-17.741517pt;}
.ws63{word-spacing:-17.736735pt;}
.ws182{word-spacing:-17.731953pt;}
.ws179{word-spacing:-17.727171pt;}
.ws18b{word-spacing:-17.722388pt;}
.ws4c{word-spacing:-17.717606pt;}
.ws7c{word-spacing:-17.712824pt;}
.ws281{word-spacing:-17.712750pt;}
.ws1b7{word-spacing:-17.708042pt;}
.ws5{word-spacing:-17.703260pt;}
.ws4{word-spacing:-17.698478pt;}
.ws50{word-spacing:-17.693696pt;}
.ws2b1{word-spacing:-17.691497pt;}
.ws53{word-spacing:-17.684132pt;}
.ws129{word-spacing:-17.679350pt;}
.ws297{word-spacing:-17.678744pt;}
.ws11f{word-spacing:-17.674568pt;}
.ws133{word-spacing:-17.669786pt;}
.ws6{word-spacing:-17.665004pt;}
.wsc3{word-spacing:-17.660221pt;}
.ws10a{word-spacing:-17.655439pt;}
.ws61{word-spacing:-17.641093pt;}
.ws100{word-spacing:-17.636311pt;}
.ws178{word-spacing:-17.621966pt;}
.ws2ae{word-spacing:-17.610733pt;}
.ws82{word-spacing:-17.607619pt;}
.ws177{word-spacing:-17.588490pt;}
.ws1aa{word-spacing:-17.574144pt;}
.ws35{word-spacing:-17.569362pt;}
.ws2ac{word-spacing:-17.563975pt;}
.wsf8{word-spacing:-17.555016pt;}
.ws17b{word-spacing:-17.550234pt;}
.ws2c2{word-spacing:-17.487462pt;}
.ws131{word-spacing:-17.478502pt;}
.ws99{word-spacing:-17.464156pt;}
.ws2b9{word-spacing:-17.440704pt;}
.ws282{word-spacing:-17.436453pt;}
.ws2b2{word-spacing:-17.432192pt;}
.ws1d9{word-spacing:-17.421117pt;}
.ws2b8{word-spacing:-17.398197pt;}
.ws138{word-spacing:-17.382861pt;}
.ws276{word-spacing:-17.368442pt;}
.ws5f{word-spacing:-17.358950pt;}
.ws248{word-spacing:-17.355690pt;}
.ws148{word-spacing:-17.306348pt;}
.wsc7{word-spacing:-17.282437pt;}
.ws17d{word-spacing:-17.239398pt;}
.ws139{word-spacing:-17.225052pt;}
.ws62{word-spacing:-17.201142pt;}
.ws201{word-spacing:-17.172909pt;}
.ws158{word-spacing:-17.162885pt;}
.ws66{word-spacing:-17.138975pt;}
.ws277{word-spacing:-17.109148pt;}
.wsd5{word-spacing:-17.086372pt;}
.ws111{word-spacing:-17.076808pt;}
.ws275{word-spacing:-17.062390pt;}
.ws14e{word-spacing:-17.014641pt;}
.wsa7{word-spacing:-17.009860pt;}
.wsa8{word-spacing:-16.995512pt;}
.ws1ff{word-spacing:-16.939119pt;}
.ws121{word-spacing:-16.933345pt;}
.ws25a{word-spacing:-16.909364pt;}
.wsd2{word-spacing:-16.847268pt;}
.ws286{word-spacing:-16.832851pt;}
.wse5{word-spacing:-16.828140pt;}
.wsd3{word-spacing:-16.799447pt;}
.ws8e{word-spacing:-16.794665pt;}
.ws152{word-spacing:-16.780319pt;}
.ws222{word-spacing:-16.692577pt;}
.ws29b{word-spacing:-16.667073pt;}
.ws167{word-spacing:-16.565125pt;}
.ws165{word-spacing:-16.555561pt;}
.ws15e{word-spacing:-16.550779pt;}
.wse8{word-spacing:-16.541215pt;}
.ws166{word-spacing:-16.531651pt;}
.ws1ec{word-spacing:-16.514047pt;}
.ws1b3{word-spacing:-16.512522pt;}
.ws134{word-spacing:-16.483830pt;}
.ws9a{word-spacing:-16.455137pt;}
.ws1eb{word-spacing:-16.433284pt;}
.ws215{word-spacing:-16.399278pt;}
.ws1c{word-spacing:-16.373842pt;}
.wse7{word-spacing:-16.359496pt;}
.ws20{word-spacing:-16.340367pt;}
.ws1f8{word-spacing:-16.276007pt;}
.ws29a{word-spacing:-16.250503pt;}
.ws104{word-spacing:-16.244726pt;}
.ws1e7{word-spacing:-16.230380pt;}
.ws142{word-spacing:-16.192123pt;}
.ws2bf{word-spacing:-16.131482pt;}
.ws14a{word-spacing:-16.110828pt;}
.ws168{word-spacing:-16.106045pt;}
.ws1fc{word-spacing:-16.088975pt;}
.ws221{word-spacing:-16.071972pt;}
.ws240{word-spacing:-16.067722pt;}
.ws211{word-spacing:-16.008231pt;}
.ws20e{word-spacing:-16.003975pt;}
.ws214{word-spacing:-15.999710pt;}
.ws10e{word-spacing:-15.996058pt;}
.ws144{word-spacing:-15.933891pt;}
.ws250{word-spacing:-15.914696pt;}
.wsec{word-spacing:-15.900416pt;}
.ws23a{word-spacing:-15.893442pt;}
.wsfc{word-spacing:-15.850935pt;}
.ws1c4{word-spacing:-15.846684pt;}
.ws22d{word-spacing:-15.842433pt;}
.ws210{word-spacing:-15.838164pt;}
.ws284{word-spacing:-15.829678pt;}
.ws298{word-spacing:-15.825448pt;}
.ws219{word-spacing:-15.812678pt;}
.wsb0{word-spacing:-15.808428pt;}
.ws162{word-spacing:-15.799992pt;}
.ws241{word-spacing:-15.795676pt;}
.wsf0{word-spacing:-15.795210pt;}
.ws72{word-spacing:-15.790428pt;}
.ws2a2{word-spacing:-15.787174pt;}
.ws12e{word-spacing:-15.785646pt;}
.ws207{word-spacing:-15.782923pt;}
.ws230{word-spacing:-15.774411pt;}
.wsdc{word-spacing:-15.761670pt;}
.ws2bb{word-spacing:-15.748883pt;}
.ws24e{word-spacing:-15.744674pt;}
.ws258{word-spacing:-15.744667pt;}
.ws9d{word-spacing:-15.742607pt;}
.ws26f{word-spacing:-15.736165pt;}
.ws205{word-spacing:-15.731915pt;}
.ws4b{word-spacing:-15.727664pt;}
.ws279{word-spacing:-15.723426pt;}
.ws204{word-spacing:-15.719163pt;}
.ws2c0{word-spacing:-15.714949pt;}
.ws16b{word-spacing:-15.714912pt;}
.ws174{word-spacing:-15.706410pt;}
.ws2c6{word-spacing:-15.702123pt;}
.ws1f9{word-spacing:-15.689408pt;}
.ws26e{word-spacing:-15.680926pt;}
.ws203{word-spacing:-15.680906pt;}
.ws202{word-spacing:-15.672405pt;}
.ws1ea{word-spacing:-15.659652pt;}
.ws108{word-spacing:-15.589581pt;}
.ws23b{word-spacing:-15.566137pt;}
.ws1b{word-spacing:-15.541760pt;}
.wsc4{word-spacing:-15.532196pt;}
.ws1e{word-spacing:-15.522632pt;}
.ws1b4{word-spacing:-15.503503pt;}
.ws206{word-spacing:-15.489624pt;}
.ws23f{word-spacing:-15.481122pt;}
.ws151{word-spacing:-15.479593pt;}
.ws1b6{word-spacing:-15.438615pt;}
.ws1fe{word-spacing:-15.434364pt;}
.ws1b5{word-spacing:-15.430114pt;}
.ws116{word-spacing:-15.393516pt;}
.ws155{word-spacing:-15.331348pt;}
.ws154{word-spacing:-15.293092pt;}
.ws25c{word-spacing:-15.281338pt;}
.ws47{word-spacing:-15.238831pt;}
.ws4a{word-spacing:-15.209076pt;}
.ws49{word-spacing:-15.196324pt;}
.wsd8{word-spacing:-15.187886pt;}
.ws1d7{word-spacing:-15.111373pt;}
.ws26d{word-spacing:-14.988039pt;}
.ws180{word-spacing:-14.987039pt;}
.ws21b{word-spacing:-14.958284pt;}
.ws23e{word-spacing:-14.954033pt;}
.ws1e9{word-spacing:-14.948782pt;}
.ws96{word-spacing:-14.934436pt;}
.ws26a{word-spacing:-14.920042pt;}
.ws11{word-spacing:-14.880245pt;}
.ws36{word-spacing:-14.872269pt;}
.ws16{word-spacing:-14.868284pt;}
.ws12c{word-spacing:-14.862705pt;}
.ws272{word-spacing:-14.852016pt;}
.wsa{word-spacing:-14.836380pt;}
.wsb{word-spacing:-14.816478pt;}
.ws15{word-spacing:-14.808508pt;}
.ws9{word-spacing:-14.800538pt;}
.ws130{word-spacing:-14.786191pt;}
.wse{word-spacing:-14.780612pt;}
.ws25b{word-spacing:-14.762751pt;}
.ws8{word-spacing:-14.744747pt;}
.ws14{word-spacing:-14.732791pt;}
.ws7{word-spacing:-14.716851pt;}
.wsa3{word-spacing:-14.642729pt;}
.ws19d{word-spacing:-14.614036pt;}
.ws103{word-spacing:-14.590126pt;}
.ws126{word-spacing:-14.537523pt;}
.ws2b3{word-spacing:-14.516209pt;}
.ws137{word-spacing:-14.508831pt;}
.ws2a1{word-spacing:-14.503457pt;}
.ws159{word-spacing:-14.475356pt;}
.ws271{word-spacing:-14.397189pt;}
.ws2a8{word-spacing:-14.307924pt;}
.wsfa{word-spacing:-14.288855pt;}
.ws5d{word-spacing:-14.245816pt;}
.ws1d4{word-spacing:-14.236252pt;}
.wsf9{word-spacing:-14.217124pt;}
.ws41{word-spacing:-14.167042pt;}
.ws74{word-spacing:-14.054533pt;}
.ws217{word-spacing:-14.018875pt;}
.wsbc{word-spacing:-13.968456pt;}
.ws2a0{word-spacing:-13.950871pt;}
.ws2ba{word-spacing:-13.912607pt;}
.ws231{word-spacing:-13.908356pt;}
.ws84{word-spacing:-13.901507pt;}
.wsc8{word-spacing:-13.891940pt;}
.ws7e{word-spacing:-13.858468pt;}
.ws20f{word-spacing:-13.806339pt;}
.wsc9{word-spacing:-13.805865pt;}
.ws15c{word-spacing:-13.777173pt;}
.ws8d{word-spacing:-13.748480pt;}
.ws209{word-spacing:-13.742578pt;}
.ws22f{word-spacing:-13.734076pt;}
.wsc6{word-spacing:-13.681531pt;}
.ws1b2{word-spacing:-13.671967pt;}
.wsd{word-spacing:-13.609007pt;}
.wsf{word-spacing:-13.605026pt;}
.wsa4{word-spacing:-13.571543pt;}
.wsbe{word-spacing:-13.538068pt;}
.ws156{word-spacing:-13.490248pt;}
.ws6b{word-spacing:-13.480684pt;}
.wsb3{word-spacing:-13.475901pt;}
.ws197{word-spacing:-13.471119pt;}
.ws196{word-spacing:-13.451991pt;}
.ws195{word-spacing:-13.418516pt;}
.ws234{word-spacing:-13.411022pt;}
.ws183{word-spacing:-13.275054pt;}
.ws115{word-spacing:-13.251144pt;}
.ws17c{word-spacing:-13.236797pt;}
.ws285{word-spacing:-13.228241pt;}
.ws98{word-spacing:-13.188977pt;}
.ws10{word-spacing:-13.154705pt;}
.ws239{word-spacing:-13.126223pt;}
.wse4{word-spacing:-13.083771pt;}
.wsa6{word-spacing:-13.074207pt;}
.ws1db{word-spacing:-13.040732pt;}
.ws5b{word-spacing:-13.035950pt;}
.ws181{word-spacing:-13.026386pt;}
.ws24{word-spacing:-12.973783pt;}
.ws25d{word-spacing:-12.960445pt;}
.ws33{word-spacing:-12.959437pt;}
.ws2c9{word-spacing:-12.951944pt;}
.ws233{word-spacing:-12.883949pt;}
.ws7f{word-spacing:-12.815974pt;}
.ws14c{word-spacing:-12.806410pt;}
.ws91{word-spacing:-12.782500pt;}
.ws1e1{word-spacing:-12.772936pt;}
.ws14b{word-spacing:-12.753807pt;}
.ws13a{word-spacing:-12.749025pt;}
.ws263{word-spacing:-12.743659pt;}
.ws2c1{word-spacing:-12.713904pt;}
.ws7b{word-spacing:-12.691640pt;}
.ws1dc{word-spacing:-12.634255pt;}
.ws12f{word-spacing:-12.615127pt;}
.ws235{word-spacing:-12.531123pt;}
.ws10d{word-spacing:-12.529050pt;}
.ws21c{word-spacing:-12.522621pt;}
.ws2c8{word-spacing:-12.505618pt;}
.ws149{word-spacing:-12.486011pt;}
.ws25e{word-spacing:-12.433356pt;}
.ws60{word-spacing:-12.414280pt;}
.ws12{word-spacing:-12.393557pt;}
.ws25f{word-spacing:-12.373846pt;}
.ws81{word-spacing:-12.356895pt;}
.ws189{word-spacing:-12.285164pt;}
.ws23d{word-spacing:-12.284581pt;}
.ws264{word-spacing:-12.259099pt;}
.ws247{word-spacing:-12.254826pt;}
.ws93{word-spacing:-12.251689pt;}
.ws23c{word-spacing:-12.220820pt;}
.ws112{word-spacing:-12.194304pt;}
.ws3f{word-spacing:-12.130543pt;}
.ws75{word-spacing:-12.103444pt;}
.ws1e8{word-spacing:-12.093880pt;}
.ws118{word-spacing:-11.916943pt;}
.ws29c{word-spacing:-11.902016pt;}
.ws1e0{word-spacing:-11.893033pt;}
.ws128{word-spacing:-11.878687pt;}
.ws5c{word-spacing:-11.873905pt;}
.ws1a9{word-spacing:-11.859558pt;}
.ws127{word-spacing:-11.854776pt;}
.ws1ac{word-spacing:-11.811738pt;}
.ws3c{word-spacing:-11.786233pt;}
.ws216{word-spacing:-11.782996pt;}
.ws40{word-spacing:-11.779857pt;}
.ws3e{word-spacing:-11.776669pt;}
.ws3d{word-spacing:-11.773481pt;}
.ws3b{word-spacing:-11.754353pt;}
.ws1ad{word-spacing:-11.725660pt;}
.ws2b0{word-spacing:-11.680979pt;}
.ws90{word-spacing:-11.663493pt;}
.ws246{word-spacing:-11.617218pt;}
.ws37{word-spacing:-11.615672pt;}
.ws1ae{word-spacing:-11.596544pt;}
.ws19a{word-spacing:-11.510467pt;}
.ws97{word-spacing:-11.491338pt;}
.ws94{word-spacing:-11.476992pt;}
.ws57{word-spacing:-11.414825pt;}
.ws39{word-spacing:-11.410043pt;}
.ws242{word-spacing:-11.379177pt;}
.wsd0{word-spacing:-11.376568pt;}
.ws199{word-spacing:-11.304837pt;}
.ws19b{word-spacing:-11.295273pt;}
.ws2c{word-spacing:-11.247452pt;}
.ws191{word-spacing:-11.218760pt;}
.ws236{word-spacing:-11.111382pt;}
.ws22a{word-spacing:-11.056123pt;}
.ws6e{word-spacing:-11.041823pt;}
.ws27c{word-spacing:-11.034869pt;}
.ws6f{word-spacing:-11.022694pt;}
.wsc5{word-spacing:-11.008348pt;}
.ws67{word-spacing:-10.998784pt;}
.ws1b0{word-spacing:-10.994002pt;}
.ws38{word-spacing:-10.946181pt;}
.ws2a6{word-spacing:-10.928601pt;}
.ws1df{word-spacing:-10.927053pt;}
.ws270{word-spacing:-10.924350pt;}
.ws153{word-spacing:-10.898360pt;}
.ws140{word-spacing:-10.860104pt;}
.ws6a{word-spacing:-10.845757pt;}
.ws13e{word-spacing:-10.840975pt;}
.ws2e{word-spacing:-10.817065pt;}
.ws2a7{word-spacing:-10.775575pt;}
.ws287{word-spacing:-10.745820pt;}
.wscc{word-spacing:-10.702295pt;}
.wscb{word-spacing:-10.683167pt;}
.wsa2{word-spacing:-10.644910pt;}
.wsab{word-spacing:-10.606653pt;}
.ws9e{word-spacing:-10.587525pt;}
.ws17f{word-spacing:-10.573179pt;}
.ws229{word-spacing:-10.550287pt;}
.ws1da{word-spacing:-10.539704pt;}
.ws59{word-spacing:-10.463191pt;}
.wsc2{word-spacing:-10.453627pt;}
.wsc0{word-spacing:-10.439281pt;}
.wsc1{word-spacing:-10.424934pt;}
.ws2c4{word-spacing:-10.422765pt;}
.wscf{word-spacing:-10.415370pt;}
.ws1d1{word-spacing:-10.410588pt;}
.ws27b{word-spacing:-10.410013pt;}
.ws6d{word-spacing:-10.391460pt;}
.ws265{word-spacing:-10.363255pt;}
.ws114{word-spacing:-10.348421pt;}
.ws163{word-spacing:-10.329293pt;}
.ws19e{word-spacing:-10.324511pt;}
.wsd4{word-spacing:-10.305382pt;}
.ws18c{word-spacing:-10.276690pt;}
.ws29e{word-spacing:-10.273990pt;}
.ws224{word-spacing:-10.227232pt;}
.ws30{word-spacing:-10.209741pt;}
.ws2b{word-spacing:-10.181048pt;}
.ws32{word-spacing:-10.176266pt;}
.ws2b5{word-spacing:-10.108212pt;}
.ws71{word-spacing:-10.075843pt;}
.ws8a{word-spacing:-10.066278pt;}
.ws14d{word-spacing:-10.056714pt;}
.ws70{word-spacing:-10.047150pt;}
.ws2a3{word-spacing:-10.014696pt;}
.ws65{word-spacing:-10.013676pt;}
.ws1a1{word-spacing:-9.999329pt;}
.ws226{word-spacing:-9.993443pt;}
.ws19f{word-spacing:-9.980201pt;}
.ws21f{word-spacing:-9.929682pt;}
.ws13d{word-spacing:-9.922816pt;}
.ws2be{word-spacing:-9.891425pt;}
.ws157{word-spacing:-9.884559pt;}
.wsed{word-spacing:-9.874995pt;}
.ws2c5{word-spacing:-9.827665pt;}
.ws267{word-spacing:-9.768155pt;}
.wse1{word-spacing:-9.750661pt;}
.ws73{word-spacing:-9.678930pt;}
.ws11e{word-spacing:-9.664584pt;}
.ws190{word-spacing:-9.602417pt;}
.ws213{word-spacing:-9.593875pt;}
.ws15d{word-spacing:-9.578506pt;}
.ws2b4{word-spacing:-9.508861pt;}
.ws89{word-spacing:-9.478083pt;}
.ws192{word-spacing:-9.473300pt;}
.ws2bc{word-spacing:-9.411094pt;}
.ws220{word-spacing:-9.313328pt;}
.ws3a{word-spacing:-9.282017pt;}
.ws15f{word-spacing:-9.253325pt;}
.ws88{word-spacing:-9.243761pt;}
.ws6c{word-spacing:-9.162465pt;}
.ws2bd{word-spacing:-9.143299pt;}
.ws1e2{word-spacing:-9.076388pt;}
.ws160{word-spacing:-9.071606pt;}
.ws266{word-spacing:-9.066786pt;}
.ws20a{word-spacing:-9.028509pt;}
.wsdd{word-spacing:-9.009439pt;}
.ws268{word-spacing:-8.994524pt;}
.wsb2{word-spacing:-8.880323pt;}
.ws29{word-spacing:-8.851630pt;}
.wsee{word-spacing:-8.837284pt;}
.ws169{word-spacing:-8.832502pt;}
.ws245{word-spacing:-8.641714pt;}
.ws244{word-spacing:-8.624708pt;}
.ws2b6{word-spacing:-8.594956pt;}
.ws27{word-spacing:-8.583834pt;}
.ws85{word-spacing:-8.526449pt;}
.ws86{word-spacing:-8.507320pt;}
.ws274{word-spacing:-8.344163pt;}
.ws269{word-spacing:-8.208140pt;}
.wsb5{word-spacing:-8.148664pt;}
.ws22b{word-spacing:-8.148630pt;}
.wsb4{word-spacing:-8.139100pt;}
.ws5e{word-spacing:-8.076933pt;}
.ws147{word-spacing:-8.029112pt;}
.ws19{word-spacing:-7.986074pt;}
.ws145{word-spacing:-7.976509pt;}
.ws232{word-spacing:-7.906339pt;}
.ws24b{word-spacing:-7.885086pt;}
.ws136{word-spacing:-7.880868pt;}
.ws2b7{word-spacing:-7.863832pt;}
.ws185{word-spacing:-7.852175pt;}
.ws10b{word-spacing:-7.766098pt;}
.ws28e{word-spacing:-7.757564pt;}
.ws10c{word-spacing:-7.651328pt;}
.wsf6{word-spacing:-7.603507pt;}
.ws292{word-spacing:-7.587535pt;}
.ws18a{word-spacing:-7.574815pt;}
.ws125{word-spacing:-7.565251pt;}
.wsf2{word-spacing:-7.493519pt;}
.ws293{word-spacing:-7.451512pt;}
.ws20d{word-spacing:-7.426008pt;}
.ws22c{word-spacing:-7.336743pt;}
.wsbd{word-spacing:-7.335711pt;}
.ws28b{word-spacing:-7.315489pt;}
.ws186{word-spacing:-7.302236pt;}
.wsb6{word-spacing:-7.259197pt;}
.ws255{word-spacing:-7.251728pt;}
.ws28{word-spacing:-7.249633pt;}
.ws92{word-spacing:-7.230505pt;}
.ws17a{word-spacing:-7.144428pt;}
.ws260{word-spacing:-7.128457pt;}
.ws24a{word-spacing:-7.124207pt;}
.ws2af{word-spacing:-7.107204pt;}
.ws68{word-spacing:-7.087043pt;}
.ws200{word-spacing:-7.073198pt;}
.wsf1{word-spacing:-7.034440pt;}
.ws173{word-spacing:-7.024849pt;}
.wsbf{word-spacing:-6.953144pt;}
.wsef{word-spacing:-6.890977pt;}
.ws262{word-spacing:-6.801152pt;}
.ws1dd{word-spacing:-6.790554pt;}
.ws122{word-spacing:-6.747515pt;}
.ws28a{word-spacing:-6.665129pt;}
.ws2c7{word-spacing:-6.507852pt;}
.wsf3{word-spacing:-6.431898pt;}
.ws11c{word-spacing:-6.355384pt;}
.ws8c{word-spacing:-6.283653pt;}
.ws1fb{word-spacing:-6.265561pt;}
.ws58{word-spacing:-6.197576pt;}
.ws18d{word-spacing:-6.188012pt;}
.ws1f5{word-spacing:-6.138040pt;}
.ws18e{word-spacing:-6.097152pt;}
.ws1f6{word-spacing:-6.095532pt;}
.ws1f7{word-spacing:-6.091282pt;}
.ws261{word-spacing:-6.019020pt;}
.ws1ef{word-spacing:-5.874495pt;}
.ws1f0{word-spacing:-5.814985pt;}
.ws1a3{word-spacing:-5.810227pt;}
.ws223{word-spacing:-5.793731pt;}
.wse3{word-spacing:-5.786317pt;}
.ws1a4{word-spacing:-5.771971pt;}
.wsb1{word-spacing:-5.752842pt;}
.ws1af{word-spacing:-5.748060pt;}
.ws2a{word-spacing:-5.719368pt;}
.ws1f2{word-spacing:-5.657708pt;}
.ws26c{word-spacing:-5.589697pt;}
.ws1de{word-spacing:-5.551995pt;}
.wsb7{word-spacing:-5.327237pt;}
.wsb8{word-spacing:-5.265070pt;}
.ws27a{word-spacing:-5.100864pt;}
.wsd9{word-spacing:-5.059441pt;}
.ws76{word-spacing:-5.054659pt;}
.ws19c{word-spacing:-5.040312pt;}
.ws77{word-spacing:-5.021184pt;}
.ws278{word-spacing:-5.003097pt;}
.ws22e{word-spacing:-4.956340pt;}
.wsaa{word-spacing:-4.849029pt;}
.ws119{word-spacing:-4.815555pt;}
.ws1e3{word-spacing:-4.696003pt;}
.ws184{word-spacing:-4.542976pt;}
.ws2d{word-spacing:-4.514284pt;}
.ws228{word-spacing:-4.301729pt;}
.ws29f{word-spacing:-4.297478pt;}
.ws26b{word-spacing:-4.263472pt;}
.ws13c{word-spacing:-4.093455pt;}
.ws10f{word-spacing:-3.954780pt;}
.ws110{word-spacing:-3.949998pt;}
.wse2{word-spacing:-3.926088pt;}
.ws28f{word-spacing:-3.774639pt;}
.ws1b1{word-spacing:-3.758715pt;}
.ws299{word-spacing:-3.744884pt;}
.ws26{word-spacing:-3.620035pt;}
.ws135{word-spacing:-3.567432pt;}
.ws243{word-spacing:-3.430331pt;}
.ws9b{word-spacing:-3.208776pt;}
.ws259{word-spacing:-3.149784pt;}
.ws24f{word-spacing:-3.073271pt;}
.ws290{word-spacing:-2.979755pt;}
.ws7a{word-spacing:-2.955325pt;}
.ws161{word-spacing:-2.917069pt;}
.ws2aa{word-spacing:-2.860735pt;}
.ws1f4{word-spacing:-2.754467pt;}
.ws1f3{word-spacing:-2.720461pt;}
.ws2ab{word-spacing:-2.520677pt;}
.ws11b{word-spacing:-2.395822pt;}
.ws1a5{word-spacing:-2.357565pt;}
.ws1fd{word-spacing:-2.214625pt;}
.wseb{word-spacing:-2.204539pt;}
.wsdb{word-spacing:-2.150864pt;}
.ws11d{word-spacing:-2.137590pt;}
.ws11a{word-spacing:-1.869793pt;}
.ws29d{word-spacing:-1.730043pt;}
.ws296{word-spacing:-1.649279pt;}
.ws256{word-spacing:-0.990418pt;}
.ws283{word-spacing:-0.977666pt;}
.ws9c{word-spacing:-0.942070pt;}
.ws295{word-spacing:-0.471830pt;}
.ws2a5{word-spacing:-0.454827pt;}
.ws1ab{word-spacing:-0.306053pt;}
.ws45{word-spacing:0.000000pt;}
.ws1a2{word-spacing:0.081295pt;}
.wsca{word-spacing:0.196065pt;}
.ws25{word-spacing:1.123789pt;}
.ws27e{word-spacing:2.877737pt;}
.ws27d{word-spacing:3.009520pt;}
.ws8b{word-spacing:3.897395pt;}
.ws1ed{word-spacing:4.799063pt;}
.wsea{word-spacing:5.427661pt;}
.wsae{word-spacing:6.116786pt;}
.wsda{word-spacing:6.163544pt;}
.ws1a7{word-spacing:8.971182pt;}
.ws1a8{word-spacing:9.047695pt;}
.ws46{word-spacing:11.183644pt;}
.ws0{word-spacing:11.886046pt;}
.ws225{word-spacing:14.329177pt;}
.ws1f1{word-spacing:18.286597pt;}
.wsaf{word-spacing:20.110156pt;}
.ws227{word-spacing:58.532414pt;}
.ws1d5{word-spacing:79.418256pt;}
.ws22{word-spacing:79.451894pt;}
.wsff{word-spacing:104.942746pt;}
.ws102{word-spacing:105.923072pt;}
.ws101{word-spacing:119.092920pt;}
.wsfd{word-spacing:126.997699pt;}
.ws1c5{word-spacing:212.902984pt;}
.ws1c7{word-spacing:216.317389pt;}
.ws1c9{word-spacing:216.326953pt;}
.ws1c2{word-spacing:227.057940pt;}
.ws1ce{word-spacing:232.571679pt;}
.ws1ca{word-spacing:234.503639pt;}
.ws1cc{word-spacing:235.307028pt;}
.ws1cf{word-spacing:236.067379pt;}
.ws1c8{word-spacing:237.057270pt;}
.ws1c0{word-spacing:239.539169pt;}
.ws51{word-spacing:280.387697pt;}
.ws1cd{word-spacing:285.891871pt;}
.ws4d{word-spacing:335.788093pt;}
.ws52{word-spacing:398.222930pt;}
.ws172{word-spacing:426.126367pt;}
.ws1c1{word-spacing:428.517407pt;}
.ws1ba{word-spacing:433.017344pt;}
.ws1bd{word-spacing:469.236818pt;}
.ws1bf{word-spacing:475.190508pt;}
.ws1c3{word-spacing:478.705336pt;}
.ws4f{word-spacing:482.416230pt;}
.ws16c{word-spacing:485.787597pt;}
.ws170{word-spacing:487.772160pt;}
.ws175{word-spacing:528.534610pt;}
.ws54{word-spacing:540.685875pt;}
.ws176{word-spacing:729.960602pt;}
.ws16a{word-spacing:2166.763763pt;}
.ws1ee{word-spacing:2168.007104pt;}
.wsac{word-spacing:2168.600082pt;}
.ws2ca{word-spacing:2168.791365pt;}
._49{margin-left:-280.995021pt;}
._3e{margin-left:-23.637786pt;}
._3f{margin-left:-22.475847pt;}
._15{margin-left:-18.446616pt;}
._6f{margin-left:-16.233500pt;}
._6e{margin-left:-15.107077pt;}
._20{margin-left:-13.834557pt;}
._1f{margin-left:-12.758589pt;}
._a{margin-left:-11.252234pt;}
._8{margin-left:-9.558740pt;}
._9{margin-left:-8.621492pt;}
._23{margin-left:-5.226813pt;}
._6{margin-left:-4.279445pt;}
._2{margin-left:-3.352494pt;}
._12{margin-left:-2.393211pt;}
._0{margin-left:-1.126438pt;}
._1{width:1.448970pt;}
._b{width:2.512176pt;}
._22{width:3.569047pt;}
._17{width:8.440371pt;}
._6b{width:9.517418pt;}
._13{width:10.673603pt;}
._21{width:12.335117pt;}
._40{width:14.391412pt;}
._6c{width:15.539906pt;}
._7{width:17.091670pt;}
._14{width:18.525778pt;}
._24{width:20.758493pt;}
._18{width:22.214932pt;}
._6d{width:23.556633pt;}
._70{width:26.171638pt;}
._3{width:43.016201pt;}
._4{width:55.448995pt;}
._5{width:56.418213pt;}
._16{width:87.645537pt;}
._c{width:90.225704pt;}
._48{width:95.359433pt;}
._f{width:100.660651pt;}
._44{width:108.309305pt;}
._4a{width:109.825249pt;}
._47{width:113.091439pt;}
._2f{width:118.614712pt;}
._45{width:122.402120pt;}
._1a{width:133.128325pt;}
._1d{width:147.412399pt;}
._1b{width:149.631552pt;}
._42{width:162.753311pt;}
._46{width:166.851553pt;}
._1e{width:187.940526pt;}
._1c{width:188.935199pt;}
._34{width:223.828438pt;}
._37{width:225.398580pt;}
._31{width:230.175920pt;}
._e{width:234.470164pt;}
._3d{width:240.363858pt;}
._69{width:255.195439pt;}
._50{width:258.667489pt;}
._5d{width:263.521817pt;}
._58{width:264.502143pt;}
._56{width:266.017546pt;}
._30{width:284.299954pt;}
._39{width:287.756882pt;}
._6a{width:296.510737pt;}
._5e{width:297.703608pt;}
._57{width:298.640896pt;}
._5a{width:300.998461pt;}
._64{width:303.650383pt;}
._62{width:306.253489pt;}
._33{width:308.338954pt;}
._55{width:310.261350pt;}
._67{width:315.349739pt;}
._19{width:318.465267pt;}
._52{width:324.942336pt;}
._5f{width:326.116595pt;}
._59{width:327.661207pt;}
._3b{width:336.926245pt;}
._35{width:339.015997pt;}
._5c{width:339.955918pt;}
._3c{width:340.901731pt;}
._51{width:345.490917pt;}
._66{width:346.614709pt;}
._38{width:347.547228pt;}
._10{width:357.943476pt;}
._53{width:360.989655pt;}
._32{width:363.055514pt;}
._5b{width:364.260598pt;}
._68{width:367.168102pt;}
._63{width:370.596854pt;}
._65{width:373.380024pt;}
._4b{width:376.832648pt;}
._4c{width:378.339041pt;}
._60{width:384.804441pt;}
._4d{width:389.304346pt;}
._4e{width:390.868091pt;}
._43{width:396.290970pt;}
._61{width:402.961955pt;}
._11{width:422.788475pt;}
._54{width:425.882481pt;}
._4f{width:483.726520pt;}
._3a{width:511.539098pt;}
._36{width:551.407299pt;}
._2b{width:554.563478pt;}
._2d{width:557.542675pt;}
._29{width:559.598972pt;}
._27{width:570.884681pt;}
._28{width:575.069030pt;}
._2c{width:605.315686pt;}
._26{width:619.083811pt;}
._2a{width:633.706895pt;}
._41{width:650.563983pt;}
._d{width:673.393377pt;}
._2e{width:861.728683pt;}
._25{width:991.294359pt;}
.fs8{font-size:26.773333pt;}
.fs4{font-size:27.895467pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:39.850667pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:29.580067pt;}
.y34{bottom:40.740000pt;}
.y36{bottom:40.740133pt;}
.y33{bottom:73.308307pt;}
.y186{bottom:74.736773pt;}
.yb8{bottom:74.736920pt;}
.y91{bottom:74.738707pt;}
.y169{bottom:74.740347pt;}
.ydb{bottom:74.742720pt;}
.y1a4{bottom:74.744813pt;}
.y13f{bottom:74.745067pt;}
.y66{bottom:74.747067pt;}
.y1b3{bottom:74.748467pt;}
.y269{bottom:75.920067pt;}
.y22b{bottom:83.758293pt;}
.y1ec{bottom:84.062320pt;}
.y32{bottom:86.580173pt;}
.y1b2{bottom:88.031973pt;}
.y268{bottom:89.203560pt;}
.y185{bottom:90.013120pt;}
.yb7{bottom:90.013267pt;}
.y90{bottom:90.015053pt;}
.y168{bottom:90.016707pt;}
.yda{bottom:90.019080pt;}
.y1a3{bottom:90.021160pt;}
.y13e{bottom:90.021427pt;}
.y65{bottom:90.023427pt;}
.y22a{bottom:97.041787pt;}
.y1eb{bottom:97.345813pt;}
.y31{bottom:99.864000pt;}
.y267{bottom:102.487067pt;}
.y184{bottom:105.289480pt;}
.yb6{bottom:105.289627pt;}
.y8f{bottom:105.291413pt;}
.y167{bottom:105.293067pt;}
.y1a2{bottom:105.297520pt;}
.y64{bottom:105.299773pt;}
.y1b1{bottom:105.972133pt;}
.y13d{bottom:106.629587pt;}
.y229{bottom:115.630187pt;}
.y1ea{bottom:115.945907pt;}
.y183{bottom:120.565827pt;}
.yb5{bottom:120.565987pt;}
.y8e{bottom:120.567760pt;}
.y109{bottom:120.567773pt;}
.y166{bottom:120.569413pt;}
.yd9{bottom:120.570587pt;}
.y1a1{bottom:120.573867pt;}
.y63{bottom:120.576133pt;}
.y266{bottom:121.087147pt;}
.y228{bottom:128.913693pt;}
.y1e9{bottom:129.229400pt;}
.y265{bottom:134.370653pt;}
.y182{bottom:135.842187pt;}
.y108{bottom:135.844120pt;}
.yd8{bottom:135.846947pt;}
.y13c{bottom:135.849293pt;}
.y1a0{bottom:135.850227pt;}
.y165{bottom:137.177587pt;}
.y227{bottom:142.197187pt;}
.y1e8{bottom:142.513973pt;}
.y264{bottom:147.654147pt;}
.y181{bottom:151.118533pt;}
.yb4{bottom:151.118693pt;}
.y8d{bottom:151.120480pt;}
.yd7{bottom:151.123307pt;}
.y13b{bottom:151.125653pt;}
.y19f{bottom:151.126587pt;}
.y62{bottom:151.128000pt;}
.y24{bottom:153.620587pt;}
.y30{bottom:154.445493pt;}
.y1e7{bottom:155.797467pt;}
.y226{bottom:160.797280pt;}
.y263{bottom:160.937653pt;}
.y180{bottom:166.394893pt;}
.yb3{bottom:166.395040pt;}
.y107{bottom:166.395640pt;}
.y8c{bottom:166.396827pt;}
.yd6{bottom:166.399653pt;}
.y19e{bottom:166.402933pt;}
.y23{bottom:168.896947pt;}
.y2f{bottom:169.721853pt;}
.y164{bottom:171.677893pt;}
.y225{bottom:174.080773pt;}
.y262{bottom:174.221147pt;}
.y1e6{bottom:174.385867pt;}
.y17f{bottom:181.671253pt;}
.yb2{bottom:181.671400pt;}
.y106{bottom:181.671987pt;}
.y8b{bottom:181.673187pt;}
.yd5{bottom:181.676013pt;}
.y13a{bottom:181.677160pt;}
.y19d{bottom:181.679293pt;}
.y22{bottom:184.173293pt;}
.y1b0{bottom:184.265200pt;}
.y2e{bottom:184.998200pt;}
.y163{bottom:186.954253pt;}
.y224{bottom:187.364280pt;}
.y1e5{bottom:187.669373pt;}
.y261{bottom:192.821240pt;}
.y17e{bottom:196.947600pt;}
.yb1{bottom:196.947760pt;}
.y105{bottom:196.948347pt;}
.y8a{bottom:196.949533pt;}
.yd4{bottom:196.952360pt;}
.y139{bottom:196.953520pt;}
.y19c{bottom:196.955640pt;}
.y61{bottom:198.317533pt;}
.y21{bottom:199.449653pt;}
.y1af{bottom:199.541560pt;}
.y2d{bottom:200.274560pt;}
.y1e4{bottom:200.952867pt;}
.y162{bottom:202.230600pt;}
.y223{bottom:205.964360pt;}
.y260{bottom:206.104747pt;}
.yb0{bottom:212.224107pt;}
.y104{bottom:212.224693pt;}
.y89{bottom:212.225893pt;}
.yd3{bottom:212.228720pt;}
.y138{bottom:212.229867pt;}
.y19b{bottom:212.232000pt;}
.y60{bottom:213.593880pt;}
.y1e3{bottom:214.236373pt;}
.y20{bottom:214.726000pt;}
.y1ae{bottom:214.817907pt;}
.y2c{bottom:215.550920pt;}
.y222{bottom:219.248933pt;}
.y25f{bottom:219.388240pt;}
.yaf{bottom:227.500467pt;}
.y103{bottom:227.501053pt;}
.y88{bottom:227.502240pt;}
.yd2{bottom:227.505080pt;}
.y137{bottom:227.506227pt;}
.y5f{bottom:228.870240pt;}
.y1f{bottom:230.002360pt;}
.y1ad{bottom:230.094267pt;}
.y2b{bottom:230.827267pt;}
.y221{bottom:232.532427pt;}
.y25e{bottom:232.671747pt;}
.y161{bottom:232.782120pt;}
.y1e2{bottom:232.836453pt;}
.y17d{bottom:239.392147pt;}
.yae{bottom:242.776813pt;}
.y102{bottom:242.777413pt;}
.y87{bottom:242.778600pt;}
.yd1{bottom:242.781427pt;}
.y136{bottom:242.782587pt;}
.y19a{bottom:242.784000pt;}
.y5e{bottom:244.146587pt;}
.y1e{bottom:245.278720pt;}
.y1ac{bottom:245.370613pt;}
.y2a{bottom:246.103627pt;}
.y1e1{bottom:246.119960pt;}
.y160{bottom:248.058480pt;}
.y220{bottom:251.120827pt;}
.y25d{bottom:251.260133pt;}
.y17c{bottom:254.668507pt;}
.yad{bottom:258.053173pt;}
.y101{bottom:258.053760pt;}
.y86{bottom:258.054960pt;}
.y135{bottom:258.058933pt;}
.y1e0{bottom:259.403453pt;}
.y5d{bottom:259.422947pt;}
.y1d{bottom:260.555067pt;}
.y1ab{bottom:260.646973pt;}
.y15f{bottom:263.334827pt;}
.y21f{bottom:264.405387pt;}
.y25c{bottom:264.543640pt;}
.y17b{bottom:271.276667pt;}
.y1df{bottom:272.686960pt;}
.yac{bottom:273.329533pt;}
.y85{bottom:273.331307pt;}
.yd0{bottom:273.332947pt;}
.y134{bottom:273.335293pt;}
.y5c{bottom:274.699307pt;}
.y1c{bottom:275.831427pt;}
.y1aa{bottom:275.923333pt;}
.y29{bottom:276.655133pt;}
.y21e{bottom:277.689947pt;}
.y25b{bottom:277.827133pt;}
.y15e{bottom:278.611187pt;}
.y1de{bottom:285.970453pt;}
.y100{bottom:288.605280pt;}
.yab{bottom:288.605880pt;}
.y84{bottom:288.607667pt;}
.ycf{bottom:288.609293pt;}
.y133{bottom:288.611640pt;}
.y5b{bottom:289.975653pt;}
.y21d{bottom:290.973453pt;}
.y1b{bottom:291.107773pt;}
.y25a{bottom:291.110640pt;}
.y1a9{bottom:291.199680pt;}
.y199{bottom:291.202587pt;}
.y28{bottom:291.931493pt;}
.y17a{bottom:292.528227pt;}
.y15d{bottom:293.887533pt;}
.yff{bottom:303.881627pt;}
.yaa{bottom:303.882240pt;}
.y83{bottom:303.884013pt;}
.yce{bottom:303.885653pt;}
.y132{bottom:303.888000pt;}
.y1dd{bottom:304.570547pt;}
.y5a{bottom:305.252013pt;}
.y1a{bottom:306.384133pt;}
.y1a8{bottom:306.476040pt;}
.y198{bottom:306.478933pt;}
.y27{bottom:307.207840pt;}
.y179{bottom:307.804587pt;}
.y15c{bottom:309.163893pt;}
.y21c{bottom:309.573547pt;}
.y259{bottom:309.710733pt;}
.y1dc{bottom:317.854040pt;}
.yfe{bottom:319.157987pt;}
.ya9{bottom:319.158587pt;}
.ycd{bottom:319.162000pt;}
.y59{bottom:320.528360pt;}
.y1a7{bottom:321.752387pt;}
.y197{bottom:321.755293pt;}
.y26{bottom:322.484200pt;}
.y21b{bottom:322.857040pt;}
.y258{bottom:322.994227pt;}
.y178{bottom:323.080947pt;}
.y15b{bottom:324.440253pt;}
.y1db{bottom:331.137547pt;}
.yfd{bottom:334.434333pt;}
.ya8{bottom:334.434947pt;}
.ycc{bottom:334.438360pt;}
.y131{bottom:334.440000pt;}
.y58{bottom:335.804720pt;}
.y21a{bottom:336.140547pt;}
.y257{bottom:336.277733pt;}
.y19{bottom:336.948000pt;}
.y1a6{bottom:337.028747pt;}
.y196{bottom:337.031640pt;}
.y25{bottom:337.760560pt;}
.y177{bottom:339.689107pt;}
.y15a{bottom:339.716600pt;}
.y82{bottom:340.123813pt;}
.y1da{bottom:344.409360pt;}
.y219{bottom:349.424040pt;}
.y256{bottom:349.561227pt;}
.ya7{bottom:349.711293pt;}
.ycb{bottom:349.714720pt;}
.y57{bottom:351.081080pt;}
.y1a5{bottom:352.305107pt;}
.y195{bottom:352.308000pt;}
.y159{bottom:354.992960pt;}
.y81{bottom:355.400173pt;}
.y1d9{bottom:357.692853pt;}
.y176{bottom:360.940667pt;}
.yfc{bottom:364.985853pt;}
.yca{bottom:364.991067pt;}
.y218{bottom:368.024133pt;}
.y255{bottom:368.161320pt;}
.y80{bottom:370.676520pt;}
.y175{bottom:376.217027pt;}
.y1d8{bottom:376.292947pt;}
.yfb{bottom:380.262213pt;}
.ya6{bottom:380.262813pt;}
.yc9{bottom:380.267427pt;}
.y130{bottom:380.453493pt;}
.y217{bottom:381.295933pt;}
.y254{bottom:381.444813pt;}
.y56{bottom:381.632587pt;}
.y7f{bottom:387.284693pt;}
.y1d7{bottom:389.576440pt;}
.y158{bottom:390.825080pt;}
.y174{bottom:392.825187pt;}
.y216{bottom:394.579440pt;}
.y253{bottom:394.716627pt;}
.yfa{bottom:395.538560pt;}
.ya5{bottom:395.539173pt;}
.yc8{bottom:395.543773pt;}
.y12f{bottom:395.729840pt;}
.y194{bottom:396.219960pt;}
.y55{bottom:396.908947pt;}
.y18{bottom:396.923227pt;}
.y1d6{bottom:402.859947pt;}
.y157{bottom:406.101440pt;}
.y215{bottom:407.862933pt;}
.y252{bottom:408.000120pt;}
.y7e{bottom:408.524293pt;}
.yf9{bottom:410.814920pt;}
.ya4{bottom:410.815520pt;}
.yc7{bottom:410.820133pt;}
.y12e{bottom:411.006200pt;}
.y54{bottom:412.185293pt;}
.y173{bottom:414.076747pt;}
.y17{bottom:414.203267pt;}
.y193{bottom:416.139707pt;}
.y1d5{bottom:416.143440pt;}
.y214{bottom:421.146440pt;}
.y251{bottom:421.283627pt;}
.y156{bottom:421.377787pt;}
.y7d{bottom:423.800653pt;}
.yf8{bottom:426.091267pt;}
.ya3{bottom:426.091880pt;}
.y12d{bottom:426.282560pt;}
.y53{bottom:427.461653pt;}
.y172{bottom:429.353107pt;}
.y16{bottom:431.471360pt;}
.y1d4{bottom:434.743533pt;}
.y192{bottom:436.071413pt;}
.y155{bottom:436.654147pt;}
.y7c{bottom:439.077013pt;}
.y213{bottom:439.746533pt;}
.y250{bottom:439.883720pt;}
.yf7{bottom:441.367627pt;}
.ya2{bottom:441.368227pt;}
.yc6{bottom:441.372133pt;}
.y12c{bottom:441.558907pt;}
.y52{bottom:442.738000pt;}
.y171{bottom:445.961267pt;}
.y1d3{bottom:448.027027pt;}
.y15{bottom:448.739453pt;}
.y154{bottom:451.930493pt;}
.y212{bottom:453.030027pt;}
.y24f{bottom:453.167213pt;}
.y7b{bottom:454.353360pt;}
.y191{bottom:455.991173pt;}
.yf6{bottom:456.643987pt;}
.y12b{bottom:456.835267pt;}
.y51{bottom:458.014360pt;}
.y1d2{bottom:461.310533pt;}
.y14{bottom:466.007547pt;}
.y211{bottom:466.313533pt;}
.y24e{bottom:466.450720pt;}
.y170{bottom:467.200880pt;}
.y153{bottom:468.538667pt;}
.y7a{bottom:470.961520pt;}
.ya1{bottom:471.919747pt;}
.yf5{bottom:471.920333pt;}
.y12a{bottom:472.111613pt;}
.y50{bottom:473.290720pt;}
.y190{bottom:475.922880pt;}
.y210{bottom:479.597027pt;}
.y24d{bottom:479.734213pt;}
.y1d1{bottom:479.898933pt;}
.y16f{bottom:482.477227pt;}
.y13{bottom:483.275640pt;}
.ya0{bottom:487.196093pt;}
.y129{bottom:487.387973pt;}
.y4f{bottom:488.567067pt;}
.y152{bottom:489.790227pt;}
.y79{bottom:492.213093pt;}
.y20f{bottom:492.880533pt;}
.y1d0{bottom:493.182427pt;}
.yc5{bottom:493.316453pt;}
.y18f{bottom:495.842640pt;}
.y16e{bottom:497.753587pt;}
.y24c{bottom:498.334307pt;}
.y12{bottom:500.543733pt;}
.yf4{bottom:502.471853pt;}
.y9f{bottom:502.472453pt;}
.y128{bottom:502.664333pt;}
.y4e{bottom:503.843427pt;}
.y151{bottom:505.066587pt;}
.y78{bottom:507.489440pt;}
.yc4{bottom:508.592813pt;}
.y20e{bottom:511.480613pt;}
.y24b{bottom:511.617800pt;}
.y1cf{bottom:511.782520pt;}
.y16d{bottom:513.029947pt;}
.y18e{bottom:515.774347pt;}
.yf3{bottom:517.748200pt;}
.y9e{bottom:517.748813pt;}
.y11{bottom:517.811813pt;}
.y127{bottom:517.940680pt;}
.y4d{bottom:519.119773pt;}
.y150{bottom:520.342933pt;}
.y77{bottom:522.765800pt;}
.yc3{bottom:523.869160pt;}
.y20d{bottom:524.764120pt;}
.y24a{bottom:524.901307pt;}
.y1ce{bottom:525.066013pt;}
.y16c{bottom:529.638107pt;}
.yf2{bottom:533.024560pt;}
.y9d{bottom:533.025160pt;}
.y126{bottom:533.217040pt;}
.y4c{bottom:534.396133pt;}
.y10{bottom:535.079907pt;}
.y14f{bottom:535.619293pt;}
.y18d{bottom:535.694107pt;}
.y20c{bottom:538.047613pt;}
.y249{bottom:538.184800pt;}
.y1cd{bottom:538.349520pt;}
.yc2{bottom:539.145520pt;}
.y76{bottom:539.373960pt;}
.yf1{bottom:548.300907pt;}
.y9c{bottom:548.301520pt;}
.y125{bottom:548.493387pt;}
.y16b{bottom:550.889667pt;}
.y14e{bottom:550.895640pt;}
.y248{bottom:551.468307pt;}
.yf{bottom:552.348000pt;}
.yc1{bottom:554.421867pt;}
.y18c{bottom:555.613853pt;}
.y20b{bottom:556.636013pt;}
.y1cc{bottom:556.949600pt;}
.y75{bottom:560.625520pt;}
.yf0{bottom:563.577267pt;}
.y9b{bottom:563.577867pt;}
.y124{bottom:563.769747pt;}
.y4b{bottom:564.948000pt;}
.y16a{bottom:566.166027pt;}
.y14d{bottom:566.172000pt;}
.ye{bottom:569.616000pt;}
.yc0{bottom:569.698227pt;}
.y20a{bottom:569.919520pt;}
.y247{bottom:570.056693pt;}
.y1cb{bottom:570.233107pt;}
.y18b{bottom:575.545560pt;}
.y74{bottom:575.901880pt;}
.y9a{bottom:578.854227pt;}
.y123{bottom:579.046107pt;}
.y209{bottom:583.203013pt;}
.y246{bottom:583.340200pt;}
.y1ca{bottom:583.516600pt;}
.ybf{bottom:584.974587pt;}
.y73{bottom:591.178240pt;}
.y99{bottom:594.130587pt;}
.y122{bottom:594.322453pt;}
.yef{bottom:594.681107pt;}
.y18a{bottom:595.465320pt;}
.y208{bottom:596.486520pt;}
.y245{bottom:596.623693pt;}
.ybe{bottom:600.250933pt;}
.y1c9{bottom:603.436547pt;}
.y72{bottom:607.786400pt;}
.y98{bottom:609.406933pt;}
.y121{bottom:609.598813pt;}
.y244{bottom:609.907200pt;}
.yee{bottom:609.957467pt;}
.y4a{bottom:612.128587pt;}
.yd{bottom:614.735453pt;}
.y207{bottom:615.086600pt;}
.y14c{bottom:615.397027pt;}
.ybd{bottom:615.527293pt;}
.y97{bottom:624.683293pt;}
.y120{bottom:624.875160pt;}
.yed{bottom:625.233827pt;}
.y49{bottom:627.404947pt;}
.yc{bottom:628.019667pt;}
.y206{bottom:628.370107pt;}
.y243{bottom:628.507293pt;}
.ybc{bottom:630.803640pt;}
.y14b{bottom:635.316787pt;}
.y96{bottom:639.959640pt;}
.y11f{bottom:640.151520pt;}
.y1c8{bottom:640.252027pt;}
.yb{bottom:641.291933pt;}
.y205{bottom:641.653600pt;}
.y242{bottom:641.790787pt;}
.yec{bottom:641.841987pt;}
.y48{bottom:642.681293pt;}
.y71{bottom:642.682427pt;}
.ybb{bottom:646.080000pt;}
.y1c7{bottom:653.535533pt;}
.ya{bottom:654.576160pt;}
.y204{bottom:654.937107pt;}
.y241{bottom:655.074293pt;}
.y95{bottom:655.236000pt;}
.y14a{bottom:655.248493pt;}
.y11e{bottom:655.427867pt;}
.y47{bottom:657.957653pt;}
.y70{bottom:657.958787pt;}
.yeb{bottom:663.093547pt;}
.y240{bottom:668.357787pt;}
.y11d{bottom:670.704227pt;}
.y1c6{bottom:671.475693pt;}
.y46{bottom:673.234000pt;}
.y6f{bottom:673.235147pt;}
.y203{bottom:673.537187pt;}
.y149{bottom:675.168240pt;}
.y9{bottom:676.499720pt;}
.yea{bottom:678.369907pt;}
.y11c{bottom:685.980587pt;}
.yba{bottom:686.651973pt;}
.y202{bottom:686.820693pt;}
.y23f{bottom:686.957880pt;}
.y6e{bottom:688.511493pt;}
.y94{bottom:693.323973pt;}
.ye9{bottom:693.646253pt;}
.y148{bottom:695.088000pt;}
.y8{bottom:698.411613pt;}
.y201{bottom:700.104187pt;}
.y23e{bottom:700.241373pt;}
.y11b{bottom:701.256933pt;}
.yb9{bottom:701.928000pt;}
.y45{bottom:703.785520pt;}
.y6d{bottom:703.787853pt;}
.y93{bottom:708.600000pt;}
.y1c5{bottom:708.952160pt;}
.ye8{bottom:710.254427pt;}
.y200{bottom:713.376000pt;}
.y23d{bottom:713.524880pt;}
.y11a{bottom:716.533293pt;}
.y44{bottom:719.061867pt;}
.y6c{bottom:719.064200pt;}
.y147{bottom:720.864000pt;}
.y7{bottom:723.659733pt;}
.y23c{bottom:726.796680pt;}
.y1c4{bottom:726.892333pt;}
.ye7{bottom:731.505987pt;}
.y119{bottom:731.809640pt;}
.y1ff{bottom:731.994253pt;}
.y43{bottom:734.338227pt;}
.y6b{bottom:734.340560pt;}
.y6{bottom:741.852000pt;}
.y1fe{bottom:745.277760pt;}
.y23b{bottom:745.396773pt;}
.ye6{bottom:746.782333pt;}
.y146{bottom:746.916000pt;}
.y42{bottom:749.614587pt;}
.y6a{bottom:749.616920pt;}
.y1fd{bottom:758.561253pt;}
.y23a{bottom:758.681333pt;}
.ye5{bottom:762.058693pt;}
.y118{bottom:762.361160pt;}
.y1c3{bottom:764.368800pt;}
.y41{bottom:764.890933pt;}
.y69{bottom:764.893267pt;}
.y5{bottom:766.164000pt;}
.y1fc{bottom:771.844760pt;}
.y239{bottom:771.964840pt;}
.ye4{bottom:777.335053pt;}
.y117{bottom:777.637520pt;}
.y1c2{bottom:777.652307pt;}
.y40{bottom:780.167293pt;}
.y238{bottom:785.248333pt;}
.y1fb{bottom:790.444840pt;}
.y1c1{bottom:790.935800pt;}
.y116{bottom:792.913867pt;}
.ye3{bottom:793.943213pt;}
.y4{bottom:794.098907pt;}
.y3f{bottom:795.443640pt;}
.y68{bottom:795.444787pt;}
.y145{bottom:800.172787pt;}
.y1fa{bottom:803.728347pt;}
.y237{bottom:803.848427pt;}
.y1c0{bottom:804.219307pt;}
.y189{bottom:804.817747pt;}
.y115{bottom:808.190227pt;}
.y3e{bottom:810.720000pt;}
.y67{bottom:810.721133pt;}
.y1f9{bottom:817.011840pt;}
.y236{bottom:817.131920pt;}
.y1bf{bottom:817.502800pt;}
.y144{bottom:820.092533pt;}
.y3{bottom:821.988000pt;}
.y114{bottom:823.466573pt;}
.ye2{bottom:823.703293pt;}
.y188{bottom:824.737493pt;}
.y1f8{bottom:830.295347pt;}
.y235{bottom:830.415427pt;}
.y1be{bottom:830.786307pt;}
.y275{bottom:835.730013pt;}
.y113{bottom:838.742933pt;}
.ye1{bottom:838.979640pt;}
.y143{bottom:840.012293pt;}
.y234{bottom:843.698920pt;}
.y1bd{bottom:844.069800pt;}
.y187{bottom:844.669200pt;}
.y1f7{bottom:848.883747pt;}
.y274{bottom:849.013520pt;}
.y112{bottom:854.019293pt;}
.ye0{bottom:854.256000pt;}
.y1bc{bottom:857.353307pt;}
.y142{bottom:859.944240pt;}
.y1f6{bottom:862.167240pt;}
.y273{bottom:862.285320pt;}
.y233{bottom:862.287320pt;}
.y3d{bottom:864.588960pt;}
.y111{bottom:869.295640pt;}
.y1bb{bottom:875.280707pt;}
.y1f5{bottom:875.450747pt;}
.y272{bottom:875.568827pt;}
.y232{bottom:875.570827pt;}
.y141{bottom:879.864827pt;}
.y3c{bottom:884.520667pt;}
.y110{bottom:884.572000pt;}
.y2{bottom:885.072000pt;}
.y1f4{bottom:888.734240pt;}
.y231{bottom:888.854320pt;}
.y271{bottom:894.168920pt;}
.ydf{bottom:899.796533pt;}
.y10f{bottom:899.848347pt;}
.y230{bottom:902.137827pt;}
.y3b{bottom:904.440427pt;}
.y1f3{bottom:907.334333pt;}
.y270{bottom:907.452413pt;}
.y1ba{bottom:912.768880pt;}
.yde{bottom:919.716293pt;}
.y1f2{bottom:920.617827pt;}
.y26f{bottom:920.735920pt;}
.y22f{bottom:920.737907pt;}
.y3a{bottom:924.372133pt;}
.y1b9{bottom:926.053440pt;}
.y10e{bottom:930.399867pt;}
.y1f1{bottom:933.902387pt;}
.y26e{bottom:934.020480pt;}
.y22e{bottom:934.021413pt;}
.y1b8{bottom:939.338000pt;}
.ydd{bottom:939.648000pt;}
.y140{bottom:943.944000pt;}
.y10d{bottom:945.676213pt;}
.y1f0{bottom:947.185893pt;}
.y22d{bottom:947.304907pt;}
.y39{bottom:950.136133pt;}
.y26d{bottom:952.620560pt;}
.y1b7{bottom:952.621507pt;}
.y1ef{bottom:960.469387pt;}
.y22c{bottom:960.588413pt;}
.y10c{bottom:960.952573pt;}
.ydc{bottom:965.412000pt;}
.y26c{bottom:965.904067pt;}
.y1b6{bottom:965.905000pt;}
.y38{bottom:976.187973pt;}
.y10b{bottom:976.228933pt;}
.y1ee{bottom:979.069480pt;}
.y26b{bottom:979.187560pt;}
.y1b5{bottom:979.188507pt;}
.y1{bottom:990.144000pt;}
.y37{bottom:991.464000pt;}
.y10a{bottom:991.505280pt;}
.y1ed{bottom:992.352973pt;}
.y26a{bottom:992.471067pt;}
.y1b4{bottom:992.472000pt;}
.y92{bottom:1022.280000pt;}
.h5{height:21.897941pt;}
.ha{height:25.026219pt;}
.he{height:26.276562pt;}
.hb{height:29.196976pt;}
.h7{height:31.282773pt;}
.h8{height:31.283893pt;}
.hc{height:33.368152pt;}
.h6{height:36.251008pt;}
.h9{height:37.539328pt;}
.h2{height:41.710085pt;}
.h11{height:42.207072pt;}
.h10{height:42.209792pt;}
.hf{height:42.254912pt;}
.h4{height:42.258219pt;}
.h3{height:75.078656pt;}
.hd{height:1043.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.320000pt;}
.x15{left:61.304040pt;}
.xa{left:64.303467pt;}
.x5{left:68.288000pt;}
.x2{left:73.148000pt;}
.xb{left:77.744707pt;}
.xd{left:220.674587pt;}
.xf{left:235.028373pt;}
.x14{left:240.034013pt;}
.x11{left:245.097040pt;}
.xe{left:251.024427pt;}
.x12{left:252.669467pt;}
.x10{left:255.200373pt;}
.x13{left:265.954080pt;}
.xc{left:399.692000pt;}
.x3{left:408.033400pt;}
.x6{left:412.015680pt;}
.x7{left:425.455720pt;}
.x9{left:706.544000pt;}
.x4{left:707.504000pt;}
.x8{left:773.666667pt;}
}




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