
    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_9f7561f4b4f1a5fb908b9457.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_f0fe0b548e76ec6367a003f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873077;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_1fc83516855e1f7755434eda.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_69322f1ada7fc851b9d516ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_c0e76f0b2ea874cdcc019304.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.650000;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_88b2862cc179f0cada8da39d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.745000;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.233687,0.000000,-0.079922,0.236881,0,0);-ms-transform:matrix(0.233687,0.000000,-0.079922,0.236881,0,0);-webkit-transform:matrix(0.233687,0.000000,-0.079922,0.236881,0,0);}
.m1{transform:matrix(0.233687,0.000000,-0.079926,0.236879,0,0);-ms-transform:matrix(0.233687,0.000000,-0.079926,0.236879,0,0);-webkit-transform:matrix(0.233687,0.000000,-0.079926,0.236879,0,0);}
.m6{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m7{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m5{transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080900,0.236549,0,0);}
.m3{transform:matrix(0.238933,0.000000,-0.081716,0.236268,0,0);-ms-transform:matrix(0.238933,0.000000,-0.081716,0.236268,0,0);-webkit-transform:matrix(0.238933,0.000000,-0.081716,0.236268,0,0);}
.m4{transform:matrix(0.238939,0.000000,-0.081713,0.236269,0,0);-ms-transform:matrix(0.238939,0.000000,-0.081713,0.236269,0,0);-webkit-transform:matrix(0.238939,0.000000,-0.081713,0.236269,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);}
.v1e{vertical-align:-73.424414px;}
.v16{vertical-align:-34.187494px;}
.v12{vertical-align:-31.315102px;}
.v19{vertical-align:-28.071447px;}
.v15{vertical-align:-24.111600px;}
.v11{vertical-align:-20.873400px;}
.v17{vertical-align:-18.361792px;}
.v9{vertical-align:-13.675200px;}
.v1b{vertical-align:-12.235802px;}
.ve{vertical-align:-11.155920px;}
.v3{vertical-align:-9.002403px;}
.va{vertical-align:-5.749386px;}
.v6{vertical-align:-2.871400px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.153882px;}
.v4{vertical-align:8.997000px;}
.vd{vertical-align:11.155800px;}
.v1d{vertical-align:12.235800px;}
.v8{vertical-align:13.675200px;}
.v1c{vertical-align:14.755200px;}
.v5{vertical-align:16.554000px;}
.v14{vertical-align:24.111600px;}
.vb{vertical-align:26.991000px;}
.v1{vertical-align:29.867994px;}
.v7{vertical-align:33.469200px;}
.v1a{vertical-align:38.148217px;}
.v10{vertical-align:39.226800px;}
.v18{vertical-align:48.944247px;}
.v13{vertical-align:52.542600px;}
.v2{vertical-align:55.424404px;}
.vc{vertical-align:63.698400px;}
.ls7d{letter-spacing:-0.685142px;}
.ls2e{letter-spacing:-0.384641px;}
.ls85{letter-spacing:-0.340087px;}
.ls86{letter-spacing:-0.246411px;}
.ls84{letter-spacing:-0.222371px;}
.ls22{letter-spacing:-0.216361px;}
.ls31{letter-spacing:-0.210351px;}
.ls1d{letter-spacing:-0.204341px;}
.ls30{letter-spacing:-0.192321px;}
.ls25{letter-spacing:-0.186311px;}
.ls20{letter-spacing:-0.181057px;}
.ls7c{letter-spacing:-0.180301px;}
.ls98{letter-spacing:-0.168281px;}
.ls2f{letter-spacing:-0.156261px;}
.ls32{letter-spacing:-0.150251px;}
.ls1e{letter-spacing:-0.144240px;}
.ls97{letter-spacing:-0.138230px;}
.ls2d{letter-spacing:-0.136915px;}
.ls33{letter-spacing:-0.132220px;}
.ls8a{letter-spacing:-0.126210px;}
.ls96{letter-spacing:-0.120200px;}
.ls88{letter-spacing:-0.114190px;}
.ls18{letter-spacing:-0.108180px;}
.ls89{letter-spacing:-0.102170px;}
.ls79{letter-spacing:-0.100514px;}
.ls7f{letter-spacing:-0.090150px;}
.ls26{letter-spacing:-0.084140px;}
.ls16{letter-spacing:-0.078130px;}
.ls14{letter-spacing:-0.072120px;}
.ls7e{letter-spacing:-0.071581px;}
.ls17{letter-spacing:-0.066110px;}
.ls11{letter-spacing:-0.060100px;}
.ls1a{letter-spacing:-0.054090px;}
.ls76{letter-spacing:-0.048584px;}
.ls13{letter-spacing:-0.048080px;}
.ls24{letter-spacing:-0.042070px;}
.ls23{letter-spacing:-0.036060px;}
.ls1c{letter-spacing:-0.030050px;}
.ls74{letter-spacing:-0.026343px;}
.ls19{letter-spacing:-0.024040px;}
.ls15{letter-spacing:-0.018030px;}
.ls1b{letter-spacing:-0.012020px;}
.ls87{letter-spacing:-0.007773px;}
.ls12{letter-spacing:-0.006010px;}
.ls10{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000600px;}
.ls57{letter-spacing:0.001559px;}
.ls6f{letter-spacing:0.002398px;}
.lsb{letter-spacing:0.006010px;}
.ls37{letter-spacing:0.009170px;}
.ls7b{letter-spacing:0.009573px;}
.ls0{letter-spacing:0.012020px;}
.ls5b{letter-spacing:0.016195px;}
.ls70{letter-spacing:0.017994px;}
.ls5{letter-spacing:0.018030px;}
.ls3a{letter-spacing:0.019757px;}
.ls8c{letter-spacing:0.021053px;}
.ls3{letter-spacing:0.024040px;}
.ls8b{letter-spacing:0.029474px;}
.ls1{letter-spacing:0.030050px;}
.ls4{letter-spacing:0.036060px;}
.ls7{letter-spacing:0.042070px;}
.ls29{letter-spacing:0.047491px;}
.lsa{letter-spacing:0.048080px;}
.lsf{letter-spacing:0.052686px;}
.ls2{letter-spacing:0.054090px;}
.ls62{letter-spacing:0.058290px;}
.ls9{letter-spacing:0.060100px;}
.lsc{letter-spacing:0.066110px;}
.ls93{letter-spacing:0.067370px;}
.lsd{letter-spacing:0.072120px;}
.ls77{letter-spacing:0.075575px;}
.ls27{letter-spacing:0.078130px;}
.ls5d{letter-spacing:0.083852px;}
.ls6{letter-spacing:0.084140px;}
.ls72{letter-spacing:0.086155px;}
.ls8{letter-spacing:0.090150px;}
.ls1f{letter-spacing:0.092201px;}
.ls4c{letter-spacing:0.096160px;}
.ls71{letter-spacing:0.102170px;}
.ls38{letter-spacing:0.108180px;}
.ls92{letter-spacing:0.114190px;}
.ls94{letter-spacing:0.117897px;}
.ls2b{letter-spacing:0.120200px;}
.ls28{letter-spacing:0.138230px;}
.ls35{letter-spacing:0.144240px;}
.ls3e{letter-spacing:0.172728px;}
.ls4b{letter-spacing:0.173328px;}
.lse{letter-spacing:0.179700px;}
.ls21{letter-spacing:0.180301px;}
.ls56{letter-spacing:0.253715px;}
.ls5a{letter-spacing:0.269910px;}
.ls34{letter-spacing:0.288481px;}
.ls36{letter-spacing:0.294491px;}
.ls75{letter-spacing:0.313096px;}
.ls2c{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.381975px;}
.ls78{letter-spacing:0.450752px;}
.ls3b{letter-spacing:1.336913px;}
.ls95{letter-spacing:1.431611px;}
.ls63{letter-spacing:1.460435px;}
.ls58{letter-spacing:2.024325px;}
.ls59{letter-spacing:2.024925px;}
.ls46{letter-spacing:2.065854px;}
.ls3f{letter-spacing:2.247332px;}
.ls54{letter-spacing:2.384325px;}
.ls45{letter-spacing:2.425254px;}
.ls4a{letter-spacing:2.425854px;}
.ls3d{letter-spacing:2.607332px;}
.ls55{letter-spacing:2.744325px;}
.ls43{letter-spacing:2.876660px;}
.ls65{letter-spacing:2.920306px;}
.ls64{letter-spacing:3.218210px;}
.ls39{letter-spacing:3.582164px;}
.ls6b{letter-spacing:3.934124px;}
.ls66{letter-spacing:3.934724px;}
.ls44{letter-spacing:4.256344px;}
.ls7a{letter-spacing:9.351808px;}
.ls6e{letter-spacing:12.837403px;}
.ls81{letter-spacing:13.041743px;}
.ls6a{letter-spacing:13.198004px;}
.ls69{letter-spacing:13.270124px;}
.ls82{letter-spacing:13.360274px;}
.ls83{letter-spacing:13.402345px;}
.ls6d{letter-spacing:13.630725px;}
.ls41{letter-spacing:14.521645px;}
.ls91{letter-spacing:14.640409px;}
.ls5f{letter-spacing:14.752460px;}
.ls8e{letter-spacing:14.778639px;}
.ls73{letter-spacing:14.857520px;}
.ls48{letter-spacing:14.883863px;}
.ls6c{letter-spacing:16.236706px;}
.ls68{letter-spacing:16.533410px;}
.ls80{letter-spacing:16.641745px;}
.ls67{letter-spacing:16.798006px;}
.ls90{letter-spacing:17.250524px;}
.ls5e{letter-spacing:17.271260px;}
.ls4d{letter-spacing:17.271860px;}
.ls49{letter-spacing:17.631860px;}
.ls42{letter-spacing:17.991260px;}
.ls4f{letter-spacing:18.459941px;}
.ls3c{letter-spacing:18.736544px;}
.ls4e{letter-spacing:20.870660px;}
.ls53{letter-spacing:21.556633px;}
.ls52{letter-spacing:26.181030px;}
.ls60{letter-spacing:27.976854px;}
.ls61{letter-spacing:28.158332px;}
.ls47{letter-spacing:28.158932px;}
.ls40{letter-spacing:28.336854px;}
.ls8f{letter-spacing:80.888859px;}
.ls8d{letter-spacing:121.726945px;}
.ls5c{letter-spacing:237.790470px;}
.ls51{letter-spacing:675.040854px;}
.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;}
}
.ws114{word-spacing:-54.398543px;}
.ws113{word-spacing:-54.036325px;}
.ws1c3{word-spacing:-52.701865px;}
.ws1c5{word-spacing:-50.700529px;}
.ws129{word-spacing:-49.690845px;}
.ws12a{word-spacing:-49.462465px;}
.ws127{word-spacing:-49.420394px;}
.ws126{word-spacing:-49.330244px;}
.ws11f{word-spacing:-48.866488px;}
.ws115{word-spacing:-39.514680px;}
.ws128{word-spacing:-36.144260px;}
.ws123{word-spacing:-36.060120px;}
.ws12c{word-spacing:-35.945930px;}
.ws118{word-spacing:-32.702296px;}
.ws11b{word-spacing:-32.464775px;}
.ws119{word-spacing:-32.405395px;}
.ws117{word-spacing:-32.389200px;}
.ws11a{word-spacing:-32.340616px;}
.ws112{word-spacing:-28.804435px;}
.ws120{word-spacing:-28.727853px;}
.ws11d{word-spacing:-28.718280px;}
.ws11e{word-spacing:-28.617766px;}
.ws1c1{word-spacing:-25.293194px;}
.ws124{word-spacing:-25.263720px;}
.ws125{word-spacing:-25.192139px;}
.ws116{word-spacing:-22.958029px;}
.ws10f{word-spacing:-15.163280px;}
.ws1c7{word-spacing:-15.043080px;}
.ws1c8{word-spacing:-15.037070px;}
.ws111{word-spacing:-15.025050px;}
.ws11c{word-spacing:-15.013030px;}
.ws12d{word-spacing:-15.001010px;}
.ws110{word-spacing:-14.958940px;}
.ws163{word-spacing:-11.923880px;}
.wsa5{word-spacing:-9.716700px;}
.ws12b{word-spacing:-9.708927px;}
.ws1fe{word-spacing:-0.378631px;}
.ws176{word-spacing:-0.342571px;}
.ws57{word-spacing:-0.336561px;}
.ws61{word-spacing:-0.330551px;}
.ws16a{word-spacing:-0.324541px;}
.ws9f{word-spacing:-0.318531px;}
.ws19{word-spacing:-0.312521px;}
.ws229{word-spacing:-0.300501px;}
.ws81{word-spacing:-0.294491px;}
.wsa0{word-spacing:-0.288481px;}
.ws1{word-spacing:-0.282471px;}
.ws204{word-spacing:-0.276461px;}
.ws6d{word-spacing:-0.270451px;}
.ws6c{word-spacing:-0.264441px;}
.ws1c9{word-spacing:-0.258431px;}
.wsf4{word-spacing:-0.252421px;}
.wsa8{word-spacing:-0.246411px;}
.ws56{word-spacing:-0.240401px;}
.ws150{word-spacing:-0.234391px;}
.ws5{word-spacing:-0.222371px;}
.ws80{word-spacing:-0.216361px;}
.ws3{word-spacing:-0.210351px;}
.ws6{word-spacing:-0.198331px;}
.ws1b2{word-spacing:-0.180301px;}
.ws1a4{word-spacing:-0.168281px;}
.ws215{word-spacing:-0.132220px;}
.ws1f7{word-spacing:-0.120200px;}
.ws88{word-spacing:-0.084140px;}
.wsb9{word-spacing:-0.078130px;}
.wsa4{word-spacing:-0.060100px;}
.ws62{word-spacing:-0.054090px;}
.ws0{word-spacing:0.000000px;}
.ws13f{word-spacing:0.024040px;}
.ws1b1{word-spacing:0.036060px;}
.wsad{word-spacing:0.042070px;}
.wsf6{word-spacing:0.054090px;}
.ws2{word-spacing:0.060100px;}
.ws25{word-spacing:0.066110px;}
.ws4f{word-spacing:0.072120px;}
.ws14b{word-spacing:0.078130px;}
.wsb1{word-spacing:0.084140px;}
.ws6e{word-spacing:0.090150px;}
.ws4{word-spacing:0.096160px;}
.ws1a9{word-spacing:0.102170px;}
.ws15{word-spacing:0.108180px;}
.ws43{word-spacing:0.114190px;}
.ws51{word-spacing:0.118544px;}
.wsae{word-spacing:0.120200px;}
.ws20a{word-spacing:0.126210px;}
.ws10a{word-spacing:0.132220px;}
.ws7{word-spacing:0.138230px;}
.ws5c{word-spacing:0.144240px;}
.wsf3{word-spacing:0.150251px;}
.wsdc{word-spacing:0.156261px;}
.ws186{word-spacing:0.162271px;}
.ws33{word-spacing:0.168281px;}
.ws151{word-spacing:0.174291px;}
.ws214{word-spacing:0.228381px;}
.wsac{word-spacing:0.246411px;}
.ws182{word-spacing:0.348581px;}
.ws15d{word-spacing:0.390651px;}
.ws167{word-spacing:0.414691px;}
.ws16e{word-spacing:0.432721px;}
.ws183{word-spacing:0.468782px;}
.ws209{word-spacing:0.480802px;}
.ws15e{word-spacing:0.492822px;}
.ws14{word-spacing:0.510852px;}
.ws1b{word-spacing:0.751253px;}
.ws1c{word-spacing:0.781303px;}
.ws67{word-spacing:0.793323px;}
.ws18f{word-spacing:0.799333px;}
.ws68{word-spacing:0.817363px;}
.ws145{word-spacing:0.829383px;}
.ws166{word-spacing:0.835393px;}
.ws12{word-spacing:0.859433px;}
.ws146{word-spacing:0.877463px;}
.wse5{word-spacing:0.889483px;}
.ws13{word-spacing:0.919533px;}
.ws131{word-spacing:1.027713px;}
.ws155{word-spacing:1.147914px;}
.ws55{word-spacing:1.153924px;}
.wsb2{word-spacing:1.165944px;}
.ws130{word-spacing:1.189984px;}
.ws17c{word-spacing:1.195994px;}
.ws17b{word-spacing:1.208014px;}
.ws12f{word-spacing:1.214024px;}
.ws13e{word-spacing:1.484475px;}
.ws177{word-spacing:1.520535px;}
.ws1bb{word-spacing:1.538565px;}
.ws1d3{word-spacing:1.574625px;}
.wse6{word-spacing:1.851086px;}
.ws1ae{word-spacing:1.869116px;}
.ws1ca{word-spacing:1.875126px;}
.ws16f{word-spacing:1.881136px;}
.ws8d{word-spacing:1.887146px;}
.ws4d{word-spacing:1.899166px;}
.ws1d2{word-spacing:1.929216px;}
.ws4e{word-spacing:1.935226px;}
.ws8c{word-spacing:1.953257px;}
.ws70{word-spacing:2.205677px;}
.wsc1{word-spacing:2.229717px;}
.ws9c{word-spacing:2.247747px;}
.ws54{word-spacing:2.253758px;}
.ws8f{word-spacing:2.271788px;}
.ws1cb{word-spacing:2.289818px;}
.ws1cc{word-spacing:2.301838px;}
.ws1d7{word-spacing:2.548248px;}
.wsb3{word-spacing:2.590319px;}
.ws53{word-spacing:2.620369px;}
.ws212{word-spacing:2.656429px;}
.ws213{word-spacing:2.668449px;}
.ws5b{word-spacing:2.926880px;}
.ws17a{word-spacing:2.938900px;}
.wsc{word-spacing:2.944910px;}
.ws178{word-spacing:2.950920px;}
.ws24{word-spacing:2.956930px;}
.wsfe{word-spacing:2.962940px;}
.ws7f{word-spacing:2.968950px;}
.wsfa{word-spacing:2.974960px;}
.wsff{word-spacing:2.986980px;}
.wscd{word-spacing:3.017030px;}
.ws16d{word-spacing:3.281471px;}
.wsc9{word-spacing:3.293491px;}
.ws7e{word-spacing:3.317531px;}
.wsf0{word-spacing:3.341571px;}
.wsf1{word-spacing:3.353591px;}
.wsd2{word-spacing:3.365611px;}
.wsb0{word-spacing:3.383641px;}
.wsaf{word-spacing:3.395661px;}
.wsce{word-spacing:3.401671px;}
.wse4{word-spacing:3.407681px;}
.ws1a7{word-spacing:3.455762px;}
.wsea{word-spacing:3.479802px;}
.ws5a{word-spacing:3.702172px;}
.wse3{word-spacing:3.738232px;}
.ws47{word-spacing:3.834393px;}
.ws7b{word-spacing:3.978633px;}
.ws6f{word-spacing:3.984643px;}
.ws7a{word-spacing:4.020703px;}
.ws75{word-spacing:4.026713px;}
.ws195{word-spacing:4.038733px;}
.ws72{word-spacing:4.050753px;}
.ws18b{word-spacing:4.056764px;}
.ws18a{word-spacing:4.068784px;}
.ws71{word-spacing:4.074794px;}
.ws64{word-spacing:4.086814px;}
.ws87{word-spacing:4.092824px;}
.ws63{word-spacing:4.104844px;}
.ws86{word-spacing:4.110854px;}
.ws42{word-spacing:4.405345px;}
.ws34{word-spacing:4.411355px;}
.ws1b9{word-spacing:4.417365px;}
.ws41{word-spacing:4.423375px;}
.ws1ba{word-spacing:4.465445px;}
.ws14c{word-spacing:4.675796px;}
.wsf9{word-spacing:4.711856px;}
.ws138{word-spacing:4.717866px;}
.ws137{word-spacing:4.735896px;}
.ws156{word-spacing:4.753926px;}
.ws35{word-spacing:4.759936px;}
.ws1e4{word-spacing:4.765946px;}
.ws36{word-spacing:4.789986px;}
.ws157{word-spacing:4.808016px;}
.ws66{word-spacing:4.820036px;}
.ws65{word-spacing:4.844076px;}
.ws135{word-spacing:4.988317px;}
.ws168{word-spacing:5.072457px;}
.ws5d{word-spacing:5.090487px;}
.ws134{word-spacing:5.102507px;}
.ws79{word-spacing:5.120537px;}
.wsc7{word-spacing:5.150587px;}
.ws1db{word-spacing:5.162607px;}
.ws136{word-spacing:5.174627px;}
.ws21e{word-spacing:5.396998px;}
.ws76{word-spacing:5.427048px;}
.ws23{word-spacing:5.469118px;}
.wsd9{word-spacing:5.481138px;}
.ws1da{word-spacing:5.499168px;}
.ws19b{word-spacing:5.511188px;}
.ws14d{word-spacing:5.517198px;}
.ws1dc{word-spacing:5.529218px;}
.ws1d1{word-spacing:5.541238px;}
.ws1d0{word-spacing:5.709519px;}
.ws169{word-spacing:5.733559px;}
.wse9{word-spacing:5.763609px;}
.wsd{word-spacing:5.811689px;}
.ws148{word-spacing:5.823709px;}
.ws59{word-spacing:5.853759px;}
.ws19c{word-spacing:5.859770px;}
.wse{word-spacing:5.865780px;}
.ws147{word-spacing:6.184311px;}
.ws107{word-spacing:6.202341px;}
.ws58{word-spacing:6.214361px;}
.ws1e1{word-spacing:6.220371px;}
.ws2c{word-spacing:6.238401px;}
.ws2b{word-spacing:6.244411px;}
.ws5e{word-spacing:6.256431px;}
.ws106{word-spacing:6.268451px;}
.ws73{word-spacing:6.520872px;}
.ws7c{word-spacing:6.526882px;}
.ws7d{word-spacing:6.550922px;}
.wse8{word-spacing:6.562942px;}
.ws6a{word-spacing:6.592992px;}
.ws1a1{word-spacing:6.599002px;}
.ws1a0{word-spacing:6.629052px;}
.ws69{word-spacing:6.635062px;}
.ws39{word-spacing:6.893493px;}
.ws28{word-spacing:6.899503px;}
.ws1ec{word-spacing:6.911523px;}
.ws184{word-spacing:6.917533px;}
.ws224{word-spacing:7.242074px;}
.ws26{word-spacing:7.248084px;}
.ws187{word-spacing:7.260104px;}
.ws2d{word-spacing:7.278134px;}
.ws2e{word-spacing:7.290154px;}
.ws22{word-spacing:7.302174px;}
.ws1a6{word-spacing:7.338234px;}
.ws21{word-spacing:7.344244px;}
.ws1ed{word-spacing:7.356264px;}
.ws15a{word-spacing:7.566615px;}
.ws32{word-spacing:7.578635px;}
.ws15c{word-spacing:7.602675px;}
.ws18e{word-spacing:7.614695px;}
.ws15b{word-spacing:7.620705px;}
.wse2{word-spacing:7.656765px;}
.wsd1{word-spacing:7.662776px;}
.ws1b3{word-spacing:7.668786px;}
.wsd0{word-spacing:7.674796px;}
.ws1b4{word-spacing:7.680806px;}
.wsec{word-spacing:7.722876px;}
.ws1e2{word-spacing:7.921206px;}
.wsdd{word-spacing:7.939236px;}
.wsb6{word-spacing:7.963277px;}
.ws82{word-spacing:7.969287px;}
.ws3d{word-spacing:7.981307px;}
.wsef{word-spacing:7.987317px;}
.ws1b0{word-spacing:7.993327px;}
.wscf{word-spacing:7.999337px;}
.ws3e{word-spacing:8.053427px;}
.ws10{word-spacing:8.071457px;}
.wsf{word-spacing:8.083477px;}
.wseb{word-spacing:8.329888px;}
.ws38{word-spacing:8.365948px;}
.ws8{word-spacing:8.371958px;}
.ws9{word-spacing:8.383978px;}
.ws83{word-spacing:8.389988px;}
.ws1fd{word-spacing:8.402008px;}
.ws84{word-spacing:8.414028px;}
.wse7{word-spacing:8.444078px;}
.wsba{word-spacing:8.684479px;}
.ws185{word-spacing:8.702509px;}
.ws99{word-spacing:8.720539px;}
.wscb{word-spacing:8.732559px;}
.ws1a8{word-spacing:8.774629px;}
.ws122{word-spacing:9.009020px;}
.ws14e{word-spacing:9.033060px;}
.wsbb{word-spacing:9.093160px;}
.ws14f{word-spacing:9.267451px;}
.ws1d6{word-spacing:9.381641px;}
.ws17e{word-spacing:9.495832px;}
.wsc6{word-spacing:9.525882px;}
.ws159{word-spacing:9.838403px;}
.wsc5{word-spacing:9.850423px;}
.ws108{word-spacing:10.084814px;}
.ws3c{word-spacing:10.144914px;}
.ws1d4{word-spacing:10.162944px;}
.ws1a{word-spacing:10.174964px;}
.ws1a3{word-spacing:10.186984px;}
.wsa9{word-spacing:10.192994px;}
.ws2a{word-spacing:10.199004px;}
.ws158{word-spacing:10.205014px;}
.wsab{word-spacing:10.211024px;}
.ws78{word-spacing:10.217034px;}
.ws77{word-spacing:10.223044px;}
.wsd8{word-spacing:10.505515px;}
.wsc2{word-spacing:10.866116px;}
.ws1a5{word-spacing:10.872126px;}
.wsfb{word-spacing:10.902176px;}
.wsfc{word-spacing:10.926216px;}
.ws210{word-spacing:10.950256px;}
.ws1d{word-spacing:11.226717px;}
.ws1e{word-spacing:11.232727px;}
.ws1e5{word-spacing:11.274798px;}
.ws15f{word-spacing:11.280808px;}
.ws162{word-spacing:11.569289px;}
.ws1ab{word-spacing:11.617369px;}
.ws161{word-spacing:11.641409px;}
.ws1aa{word-spacing:11.653429px;}
.ws160{word-spacing:11.695499px;}
.wsbe{word-spacing:11.887820px;}
.wsa6{word-spacing:11.899840px;}
.ws1e9{word-spacing:11.923880px;}
.wsf8{word-spacing:11.941910px;}
.ws37{word-spacing:11.965950px;}
.ws93{word-spacing:11.983980px;}
.ws94{word-spacing:12.008020px;}
.ws16b{word-spacing:12.026050px;}
.ws16c{word-spacing:12.032060px;}
.ws90{word-spacing:12.272461px;}
.ws190{word-spacing:12.290491px;}
.ws44{word-spacing:12.308521px;}
.ws3f{word-spacing:12.320541px;}
.ws19f{word-spacing:12.332561px;}
.ws19e{word-spacing:12.344581px;}
.ws1b8{word-spacing:12.627052px;}
.wsf7{word-spacing:12.705182px;}
.ws1fc{word-spacing:13.035733px;}
.wsbd{word-spacing:13.059773px;}
.ws1b6{word-spacing:13.390325px;}
.wsb{word-spacing:13.708856px;}
.wsa{word-spacing:13.732896px;}
.ws142{word-spacing:14.027387px;}
.ws1cf{word-spacing:14.093497px;}
.ws48{word-spacing:14.135567px;}
.ws49{word-spacing:14.141577px;}
.ws143{word-spacing:14.147587px;}
.wsca{word-spacing:14.165617px;}
.ws104{word-spacing:14.363948px;}
.ws196{word-spacing:14.412028px;}
.wsd4{word-spacing:14.418038px;}
.ws19d{word-spacing:14.436068px;}
.ws105{word-spacing:14.442078px;}
.wsd7{word-spacing:14.454098px;}
.ws179{word-spacing:14.466118px;}
.ws1f{word-spacing:14.478138px;}
.ws132{word-spacing:14.502178px;}
.ws1ce{word-spacing:14.508188px;}
.ws206{word-spacing:14.514198px;}
.ws103{word-spacing:14.520208px;}
.ws205{word-spacing:14.556268px;}
.ws133{word-spacing:14.592329px;}
.ws1cd{word-spacing:14.808689px;}
.wsb7{word-spacing:14.814699px;}
.wsd3{word-spacing:14.820709px;}
.ws197{word-spacing:14.850759px;}
.wsc3{word-spacing:15.151260px;}
.wsa1{word-spacing:15.181311px;}
.wsed{word-spacing:15.193331px;}
.wsee{word-spacing:15.211361px;}
.ws1a2{word-spacing:15.223381px;}
.wsc4{word-spacing:15.547922px;}
.ws164{word-spacing:15.553932px;}
.ws199{word-spacing:15.565952px;}
.ws12e{word-spacing:15.583982px;}
.ws4b{word-spacing:15.614032px;}
.wsa3{word-spacing:15.866453px;}
.wsc8{word-spacing:15.926553px;}
.ws97{word-spacing:16.275134px;}
.wsaa{word-spacing:16.311194px;}
.wscc{word-spacing:16.317204px;}
.ws10e{word-spacing:16.611695px;}
.ws139{word-spacing:16.665785px;}
.ws189{word-spacing:16.677806px;}
.ws188{word-spacing:16.695836px;}
.ws13a{word-spacing:16.707856px;}
.ws192{word-spacing:17.020377px;}
.wsa2{word-spacing:17.290828px;}
.ws1f9{word-spacing:17.338908px;}
.ws50{word-spacing:17.350928px;}
.ws102{word-spacing:17.380978px;}
.ws218{word-spacing:17.392998px;}
.ws101{word-spacing:17.423048px;}
.ws109{word-spacing:17.717539px;}
.ws170{word-spacing:18.072130px;}
.ws171{word-spacing:18.426721px;}
.ws74{word-spacing:18.763282px;}
.ws4a{word-spacing:18.811363px;}
.ws1b7{word-spacing:18.817373px;}
.ws17d{word-spacing:19.135904px;}
.ws100{word-spacing:19.141914px;}
.ws18c{word-spacing:19.189994px;}
.ws31{word-spacing:19.466455px;}
.ws18d{word-spacing:19.508525px;}
.ws2f{word-spacing:19.520545px;}
.ws20e{word-spacing:19.574635px;}
.ws45{word-spacing:19.580645px;}
.wsbc{word-spacing:19.592665px;}
.ws208{word-spacing:19.869126px;}
.ws10c{word-spacing:19.887156px;}
.ws20d{word-spacing:19.929226px;}
.wsd6{word-spacing:20.199677px;}
.ws6b{word-spacing:20.205687px;}
.ws1e3{word-spacing:20.253767px;}
.ws20{word-spacing:20.914870px;}
.ws152{word-spacing:20.993000px;}
.ws153{word-spacing:21.017040px;}
.ws27{word-spacing:21.347591px;}
.ws89{word-spacing:21.371631px;}
.ws8a{word-spacing:21.383651px;}
.ws95{word-spacing:21.678142px;}
.ws96{word-spacing:21.768292px;}
.ws194{word-spacing:22.032733px;}
.ws29{word-spacing:22.038743px;}
.ws193{word-spacing:22.044753px;}
.ws154{word-spacing:22.056773px;}
.wsb4{word-spacing:22.068793px;}
.wsb5{word-spacing:22.471465px;}
.ws1ad{word-spacing:22.826056px;}
.ws1ac{word-spacing:22.838076px;}
.ws13c{word-spacing:23.012367px;}
.ws13b{word-spacing:23.114537px;}
.ws149{word-spacing:23.120547px;}
.ws220{word-spacing:23.132567px;}
.ws13d{word-spacing:23.264787px;}
.ws14a{word-spacing:23.445088px;}
.ws60{word-spacing:23.451098px;}
.ws9a{word-spacing:23.463118px;}
.wse1{word-spacing:23.493168px;}
.ws222{word-spacing:23.541248px;}
.ws221{word-spacing:23.553268px;}
.ws217{word-spacing:23.757609px;}
.ws21c{word-spacing:23.853769px;}
.ws5f{word-spacing:23.913870px;}
.ws4c{word-spacing:24.130230px;}
.wse0{word-spacing:24.905523px;}
.ws21f{word-spacing:25.452435px;}
.ws1af{word-spacing:25.584655px;}
.ws1ff{word-spacing:26.293838px;}
.ws9b{word-spacing:26.371968px;}
.ws1f2{word-spacing:26.672469px;}
.ws219{word-spacing:26.684489px;}
.ws1f1{word-spacing:26.696509px;}
.ws21a{word-spacing:26.738579px;}
.ws9e{word-spacing:26.744589px;}
.ws1e0{word-spacing:27.081150px;}
.ws46{word-spacing:27.459781px;}
.ws92{word-spacing:27.471801px;}
.ws91{word-spacing:27.495842px;}
.ws1c2{word-spacing:27.696150px;}
.wsfd{word-spacing:28.102854px;}
.ws8b{word-spacing:28.120884px;}
.ws174{word-spacing:28.217044px;}
.ws181{word-spacing:28.511535px;}
.ws191{word-spacing:28.535575px;}
.ws3b{word-spacing:28.541585px;}
.ws175{word-spacing:28.553605px;}
.ws3a{word-spacing:28.571635px;}
.wsf2{word-spacing:29.262787px;}
.ws180{word-spacing:29.328898px;}
.ws17f{word-spacing:29.587328px;}
.ws144{word-spacing:29.599349px;}
.ws9d{word-spacing:29.929900px;}
.ws1e6{word-spacing:29.983990px;}
.ws98{word-spacing:30.290501px;}
.wsa7{word-spacing:30.338581px;}
.ws165{word-spacing:30.657112px;}
.ws1d5{word-spacing:31.035743px;}
.ws200{word-spacing:31.450435px;}
.ws223{word-spacing:31.684825px;}
.ws52{word-spacing:31.768966px;}
.ws40{word-spacing:31.780986px;}
.ws1dd{word-spacing:31.799016px;}
.ws1e7{word-spacing:32.105527px;}
.wsbf{word-spacing:32.430068px;}
.ws172{word-spacing:33.139250px;}
.ws173{word-spacing:33.253441px;}
.ws11{word-spacing:33.884493px;}
.ws207{word-spacing:34.623725px;}
.ws216{word-spacing:34.942256px;}
.wsd5{word-spacing:35.699519px;}
.ws1ee{word-spacing:35.789669px;}
.ws1ef{word-spacing:36.138250px;}
.ws20f{word-spacing:36.841423px;}
.ws18{word-spacing:37.075813px;}
.ws1d9{word-spacing:37.135914px;}
.ws16{word-spacing:37.141924px;}
.ws30{word-spacing:37.159954px;}
.ws198{word-spacing:37.165964px;}
.ws17{word-spacing:37.183994px;}
.wsf5{word-spacing:37.466465px;}
.wsb8{word-spacing:37.568635px;}
.ws85{word-spacing:38.530238px;}
.ws19a{word-spacing:39.281491px;}
.ws20c{word-spacing:41.757619px;}
.ws1d8{word-spacing:42.556952px;}
.ws1ea{word-spacing:44.005366px;}
.ws21b{word-spacing:44.672479px;}
.ws228{word-spacing:44.690509px;}
.ws1e8{word-spacing:44.997020px;}
.ws227{word-spacing:45.039090px;}
.ws10b{word-spacing:46.102863px;}
.ws1b5{word-spacing:46.144934px;}
.wsc0{word-spacing:47.208707px;}
.ws1f4{word-spacing:47.250777px;}
.ws1f5{word-spacing:47.256787px;}
.ws8e{word-spacing:49.023733px;}
.ws21d{word-spacing:50.550278px;}
.ws1fa{word-spacing:50.952950px;}
.ws1fb{word-spacing:51.313551px;}
.ws10d{word-spacing:51.932583px;}
.wsdf{word-spacing:52.281164px;}
.wsde{word-spacing:52.665805px;}
.ws1f8{word-spacing:55.454455px;}
.ws1eb{word-spacing:56.211717px;}
.ws225{word-spacing:56.878829px;}
.ws226{word-spacing:56.884839px;}
.ws202{word-spacing:58.784006px;}
.ws203{word-spacing:58.796026px;}
.ws1df{word-spacing:60.556962px;}
.ws1de{word-spacing:60.574992px;}
.ws121{word-spacing:61.564093px;}
.ws1c0{word-spacing:62.197970px;}
.ws1f3{word-spacing:63.039100px;}
.wsda{word-spacing:66.242440px;}
.wsdb{word-spacing:66.621072px;}
.ws141{word-spacing:68.117567px;}
.ws211{word-spacing:70.773996px;}
.ws1c6{word-spacing:75.513170px;}
.ws140{word-spacing:76.038773px;}
.ws1f0{word-spacing:77.643448px;}
.ws1f6{word-spacing:85.384354px;}
.ws1c4{word-spacing:97.885474px;}
.ws201{word-spacing:104.484198px;}
.ws20b{word-spacing:108.745302px;}
.ws1bf{word-spacing:366.166479px;}
.ws1bc{word-spacing:388.481683px;}
.ws1be{word-spacing:392.989198px;}
.ws1bd{word-spacing:393.530100px;}
._25{margin-left:-69.956633px;}
._1d{margin-left:-46.223340px;}
._24{margin-left:-44.954950px;}
._26{margin-left:-18.000010px;}
._c{margin-left:-15.989684px;}
._14{margin-left:-13.260677px;}
._11{margin-left:-11.310284px;}
._10{margin-left:-9.921756px;}
._13{margin-left:-8.498218px;}
._17{margin-left:-6.863311px;}
._16{margin-left:-5.396996px;}
._e{margin-left:-3.648464px;}
._d{margin-left:-2.169341px;}
._1{margin-left:-1.051754px;}
._3{width:1.081804px;}
._7{width:3.545912px;}
._9{width:5.000337px;}
._19{width:12.260441px;}
._8{width:14.045417px;}
._b{width:17.098507px;}
._a{width:19.977306px;}
._15{width:21.150404px;}
._1a{width:28.535575px;}
._4{width:32.958950px;}
._12{width:34.557615px;}
._2{width:62.690519px;}
._5{width:83.118577px;}
._f{width:95.026735px;}
._23{width:130.297234px;}
._22{width:200.458207px;}
._18{width:212.282135px;}
._21{width:564.160577px;}
._20{width:566.666756px;}
._1f{width:633.251767px;}
._1e{width:635.763956px;}
._6{width:736.179370px;}
._1b{width:868.958742px;}
._1c{width:898.828541px;}
._0{width:1227.550680px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.510098px;}
.fs7{font-size:38.093873px;}
.fsa{font-size:38.866800px;}
.fs5{font-size:42.106200px;}
.fs10{font-size:44.985000px;}
.fs2{font-size:47.863800px;}
.fsc{font-size:50.585901px;}
.fs3{font-size:53.982000px;}
.fs8{font-size:54.766008px;}
.fsf{font-size:57.051941px;}
.fs6{font-size:57.141097px;}
.fs1{font-size:60.100200px;}
.fs4{font-size:65.857800px;}
.fsb{font-size:69.602826px;}
.fs0{font-size:71.976000px;}
.fse{font-size:78.094200px;}
.fsd{font-size:82.535100px;}
.fs11{font-size:83.851800px;}
.y0{bottom:0.000000px;}
.yb6{bottom:2.789700px;}
.yaa{bottom:2.968950px;}
.yb4{bottom:3.329100px;}
.ya8{bottom:3.508800px;}
.yb3{bottom:6.028200px;}
.ya7{bottom:6.297900px;}
.y214{bottom:19.658700px;}
.y13e{bottom:24.157200px;}
.y56{bottom:27.156150px;}
.y1bb{bottom:28.655700px;}
.yb9{bottom:31.849200px;}
.yac{bottom:33.378450px;}
.y24c{bottom:46.020458px;}
.y1ba{bottom:47.191054px;}
.ya5{bottom:48.029250px;}
.y213{bottom:51.055198px;}
.y28d{bottom:55.198210px;}
.y1{bottom:58.645800px;}
.yfc{bottom:60.086410px;}
.y7e{bottom:61.256255px;}
.y24b{bottom:63.204607px;}
.y1b9{bottom:64.465354px;}
.y13d{bottom:64.763700px;}
.y212{bottom:68.329498px;}
.ya4{bottom:70.791600px;}
.y1f2{bottom:72.019355px;}
.y28c{bottom:72.382360px;}
.yfb{bottom:77.360710px;}
.y7d{bottom:78.440404px;}
.y24a{bottom:80.478907px;}
.y1b8{bottom:81.649503px;}
.y184{bottom:83.715750px;}
.y1f1{bottom:89.293655px;}
.y28b{bottom:89.656660px;}
.y37{bottom:93.646658px;}
.y50{bottom:93.648160px;}
.y132{bottom:93.733199px;}
.y211{bottom:94.509145px;}
.yfa{bottom:94.635010px;}
.y7c{bottom:95.714704px;}
.y249{bottom:97.753207px;}
.y1b7{bottom:98.923803px;}
.y1f0{bottom:106.477804px;}
.y183{bottom:106.480203px;}
.y28a{bottom:106.930960px;}
.y36{bottom:110.920958px;}
.y4f{bottom:110.922460px;}
.yf9{bottom:111.819160px;}
.y13c{bottom:112.088551px;}
.y131{bottom:112.089755px;}
.y7b{bottom:112.989004px;}
.y248{bottom:114.937357px;}
.y1b6{bottom:116.198103px;}
.y210{bottom:120.780445px;}
.y1ef{bottom:123.752104px;}
.y289{bottom:124.115109px;}
.y35{bottom:128.195258px;}
.y4e{bottom:128.196760px;}
.yf8{bottom:129.093460px;}
.y7a{bottom:130.173154px;}
.y13b{bottom:130.531800px;}
.y130{bottom:130.533004px;}
.y247{bottom:132.211657px;}
.y1b5{bottom:133.382253px;}
.y20f{bottom:134.547898px;}
.y1ee{bottom:141.026404px;}
.y288{bottom:141.389409px;}
.yb2{bottom:143.667000px;}
.ya6{bottom:144.567000px;}
.y34{bottom:145.379407px;}
.y4d{bottom:145.380910px;}
.yf7{bottom:146.367760px;}
.y79{bottom:147.447454px;}
.y246{bottom:149.485957px;}
.y1b4{bottom:150.656553px;}
.y13a{bottom:156.803100px;}
.y12f{bottom:156.804304px;}
.y1ed{bottom:158.210554px;}
.y287{bottom:158.663709px;}
.y33{bottom:162.653707px;}
.y4c{bottom:162.655210px;}
.yf6{bottom:163.551909px;}
.y78{bottom:164.721754px;}
.ybb{bottom:165.619800px;}
.ybd{bottom:165.979800px;}
.y245{bottom:166.668604px;}
.y1b3{bottom:167.930853px;}
.yba{bottom:168.319050px;}
.ybc{bottom:168.678900px;}
.y139{bottom:173.987250px;}
.y12e{bottom:173.988454px;}
.y1ec{bottom:175.484854px;}
.y286{bottom:175.847859px;}
.y32{bottom:179.928007px;}
.y4b{bottom:179.929510px;}
.yf5{bottom:180.826209px;}
.yb1{bottom:181.904400px;}
.y77{bottom:181.905904px;}
.y244{bottom:183.942904px;}
.yb0{bottom:184.693500px;}
.y138{bottom:191.261550px;}
.y12d{bottom:191.262754px;}
.y1eb{bottom:192.669004px;}
.y285{bottom:193.122159px;}
.y1b2{bottom:194.110500px;}
.y31{bottom:197.112157px;}
.y4a{bottom:197.113660px;}
.yf4{bottom:198.100509px;}
.y76{bottom:199.180204px;}
.y243{bottom:201.217204px;}
.y137{bottom:208.535850px;}
.y12c{bottom:208.537054px;}
.y1ea{bottom:209.943304px;}
.y284{bottom:210.396459px;}
.y30{bottom:214.386457px;}
.y49{bottom:214.387960px;}
.yf3{bottom:215.284659px;}
.y75{bottom:216.454504px;}
.y1b1{bottom:216.872700px;}
.y242{bottom:218.399851px;}
.y12b{bottom:225.719701px;}
.y136{bottom:225.719999px;}
.ybf{bottom:226.619550px;}
.y1e9{bottom:227.217604px;}
.y283{bottom:227.580609px;}
.ya3{bottom:228.150603px;}
.ybe{bottom:229.318650px;}
.y2f{bottom:231.660757px;}
.y48{bottom:231.662260px;}
.yf2{bottom:232.558959px;}
.y74{bottom:233.638653px;}
.y241{bottom:235.674151px;}
.yb8{bottom:239.125500px;}
.y135{bottom:242.994299px;}
.y12a{bottom:242.995504px;}
.y1e8{bottom:244.401753px;}
.yab{bottom:244.434000px;}
.y282{bottom:244.854909px;}
.ya2{bottom:245.334753px;}
.y20e{bottom:248.810398px;}
.yaf{bottom:248.842050px;}
.y2e{bottom:248.844907px;}
.y47{bottom:248.846409px;}
.yf1{bottom:249.833259px;}
.y73{bottom:250.912953px;}
.yae{bottom:251.631150px;}
.y240{bottom:252.948451px;}
.y129{bottom:260.268301px;}
.y134{bottom:260.268599px;}
.y281{bottom:262.039058px;}
.y20d{bottom:262.576349px;}
.ya1{bottom:262.609053px;}
.y2d{bottom:266.119207px;}
.y46{bottom:266.120709px;}
.yf0{bottom:267.017409px;}
.yb5{bottom:268.185000px;}
.y72{bottom:268.187253px;}
.y23f{bottom:270.132601px;}
.y1e7{bottom:270.673053px;}
.yb7{bottom:270.974700px;}
.ya9{bottom:274.843500px;}
.y128{bottom:277.452451px;}
.y133{bottom:277.452749px;}
.yad{bottom:277.812450px;}
.y280{bottom:279.313358px;}
.ya0{bottom:279.883353px;}
.y2c{bottom:283.393507px;}
.y45{bottom:283.395009px;}
.yef{bottom:284.291709px;}
.y71{bottom:285.371403px;}
.y23e{bottom:287.406901px;}
.y127{bottom:294.726751px;}
.y27f{bottom:296.587658px;}
.y1e6{bottom:296.944353px;}
.y2b{bottom:300.577656px;}
.y44{bottom:300.579159px;}
.yee{bottom:301.475858px;}
.y70{bottom:302.645703px;}
.y23d{bottom:304.681201px;}
.y9f{bottom:306.063000px;}
.y1e5{bottom:310.710304px;}
.y126{bottom:312.001051px;}
.y27e{bottom:313.771808px;}
.y2a{bottom:317.851956px;}
.y43{bottom:317.853459px;}
.yed{bottom:318.750158px;}
.y23c{bottom:321.865351px;}
.y6f{bottom:328.825350px;}
.y9e{bottom:328.915350px;}
.y125{bottom:329.185200px;}
.y27d{bottom:331.046108px;}
.y29{bottom:335.036106px;}
.y42{bottom:335.037609px;}
.yec{bottom:336.024458px;}
.y23b{bottom:339.139651px;}
.y124{bottom:346.459500px;}
.y27c{bottom:348.320408px;}
.y6e{bottom:351.587700px;}
.y28{bottom:352.310406px;}
.y41{bottom:352.311909px;}
.yeb{bottom:353.208608px;}
.y23a{bottom:356.413951px;}
.y123{bottom:363.642899px;}
.y27b{bottom:365.504558px;}
.y182{bottom:366.312900px;}
.y27{bottom:369.584706px;}
.y40{bottom:369.586209px;}
.yea{bottom:370.482908px;}
.y20c{bottom:376.838849px;}
.y122{bottom:381.996899px;}
.y239{bottom:382.595100px;}
.y27a{bottom:382.778858px;}
.y181{bottom:383.587201px;}
.y26{bottom:386.768856px;}
.y3f{bottom:386.770358px;}
.ye9{bottom:387.757208px;}
.y20b{bottom:390.604800px;}
.y279{bottom:400.053158px;}
.y121{bottom:400.353604px;}
.y180{bottom:400.861501px;}
.y1e4{bottom:403.470455px;}
.y25{bottom:404.041653px;}
.y3e{bottom:404.044658px;}
.ye8{bottom:404.941358px;}
.y238{bottom:405.358051px;}
.y1e3{bottom:417.236406px;}
.y278{bottom:417.237307px;}
.y17f{bottom:418.045651px;}
.y120{bottom:418.796701px;}
.y24{bottom:421.314451px;}
.y3d{bottom:421.318958px;}
.ye7{bottom:422.215658px;}
.y277{bottom:434.511607px;}
.y17e{bottom:435.319950px;}
.y11f{bottom:436.072503px;}
.y23{bottom:438.498600px;}
.y3c{bottom:438.503108px;}
.ye6{bottom:439.489958px;}
.y9d{bottom:442.374160px;}
.y276{bottom:451.785907px;}
.y17d{bottom:452.504100px;}
.y11e{bottom:453.255150px;}
.y22{bottom:455.772900px;}
.y3b{bottom:455.777408px;}
.ye5{bottom:456.674107px;}
.y9c{bottom:459.558310px;}
.y275{bottom:468.970057px;}
.y17c{bottom:469.778400px;}
.y11d{bottom:470.529450px;}
.y21{bottom:473.047200px;}
.y3a{bottom:473.051708px;}
.ye4{bottom:473.948407px;}
.y1b0{bottom:476.798104px;}
.y9b{bottom:476.832610px;}
.y178{bottom:486.152560px;}
.y17b{bottom:486.152850px;}
.y274{bottom:486.244357px;}
.y11c{bottom:487.803750px;}
.y20{bottom:490.231350px;}
.y39{bottom:490.235858px;}
.y177{bottom:491.101200px;}
.ye3{bottom:491.222707px;}
.y9a{bottom:494.106910px;}
.y175{bottom:494.520150px;}
.y1af{bottom:495.239400px;}
.y17a{bottom:501.807600px;}
.y176{bottom:503.067024px;}
.y273{bottom:503.518657px;}
.y179{bottom:504.236700px;}
.y11b{bottom:504.987900px;}
.y20a{bottom:505.496400px;}
.y1f{bottom:507.505650px;}
.y38{bottom:507.510158px;}
.ye2{bottom:508.406857px;}
.y1e2{bottom:509.907909px;}
.y99{bottom:511.291060px;}
.y1ae{bottom:515.662200px;}
.y174{bottom:517.462350px;}
.y272{bottom:520.702807px;}
.y11a{bottom:522.265963px;}
.y1e{bottom:523.879087px;}
.ye1{bottom:525.681157px;}
.y1e1{bottom:527.182209px;}
.y98{bottom:528.565360px;}
.y1ad{bottom:533.206951px;}
.y170{bottom:533.836660px;}
.y173{bottom:533.836800px;}
.y209{bottom:534.558007px;}
.y271{bottom:537.977107px;}
.y1d{bottom:538.634300px;}
.y16f{bottom:538.785150px;}
.y119{bottom:539.540263px;}
.y16e{bottom:542.204100px;}
.ye0{bottom:542.955457px;}
.y237{bottom:544.001700px;}
.y1e0{bottom:544.456509px;}
.y97{bottom:545.839660px;}
.y172{bottom:549.491550px;}
.y1ac{bottom:550.481251px;}
.y171{bottom:551.920800px;}
.y1c{bottom:553.299769px;}
.y270{bottom:555.251407px;}
.y118{bottom:556.724413px;}
.ydf{bottom:560.139607px;}
.y208{bottom:560.739156px;}
.y236{bottom:561.276000px;}
.y1df{bottom:561.640659px;}
.y96{bottom:563.023809px;}
.y16d{bottom:565.236450px;}
.y1ab{bottom:567.755551px;}
.y1b{bottom:567.965237px;}
.y6d{bottom:571.025705px;}
.y26f{bottom:572.435556px;}
.y117{bottom:573.998713px;}
.yde{bottom:577.413907px;}
.y235{bottom:578.460150px;}
.y1de{bottom:578.913457px;}
.y95{bottom:580.298109px;}
.y16c{bottom:582.420600px;}
.y1a{bottom:582.720450px;}
.y1aa{bottom:584.939701px;}
.y6c{bottom:588.300005px;}
.y26e{bottom:589.709856px;}
.y116{bottom:591.273013px;}
.ydd{bottom:594.688207px;}
.y234{bottom:595.734450px;}
.y1dd{bottom:596.186254px;}
.y94{bottom:597.572409px;}
.y19{bottom:598.195200px;}
.y16b{bottom:599.694900px;}
.y1a9{bottom:602.214001px;}
.y6b{bottom:605.484154px;}
.y26d{bottom:606.892503px;}
.y115{bottom:608.457162px;}
.ydc{bottom:611.870854px;}
.y1dc{bottom:613.370404px;}
.y93{bottom:614.756559px;}
.y18{bottom:615.469500px;}
.y16a{bottom:616.969200px;}
.y1a8{bottom:619.488301px;}
.y233{bottom:622.005749px;}
.y6a{bottom:622.758454px;}
.y26c{bottom:624.166803px;}
.y114{bottom:625.731462px;}
.ydb{bottom:629.145154px;}
.y1db{bottom:630.644704px;}
.y17{bottom:631.844100px;}
.y92{bottom:632.030859px;}
.y169{bottom:634.153350px;}
.y1a7{bottom:636.672450px;}
.y232{bottom:639.189899px;}
.y69{bottom:640.032754px;}
.y26b{bottom:641.441103px;}
.y113{bottom:643.005762px;}
.yda{bottom:646.329303px;}
.y16{bottom:647.408701px;}
.y1da{bottom:647.828853px;}
.y91{bottom:649.305159px;}
.y168{bottom:650.799509px;}
.y1a6{bottom:653.946750px;}
.y165{bottom:656.645850px;}
.y68{bottom:657.216904px;}
.y26a{bottom:658.625253px;}
.y207{bottom:658.806155px;}
.y164{bottom:660.604500px;}
.y231{bottom:662.043000px;}
.yd9{bottom:663.603603px;}
.y15{bottom:664.683001px;}
.y1d9{bottom:665.103153px;}
.y90{bottom:666.489309px;}
.y112{bottom:669.186912px;}
.y167{bottom:669.241650px;}
.y1a5{bottom:671.130900px;}
.y166{bottom:672.030600px;}
.y67{bottom:674.491204px;}
.y269{bottom:675.899553px;}
.yd8{bottom:680.877903px;}
.y14{bottom:681.867150px;}
.y1d8{bottom:682.377453px;}
.y8f{bottom:683.763609px;}
.y1a4{bottom:688.405200px;}
.y163{bottom:688.405501px;}
.y66{bottom:691.765504px;}
.y268{bottom:693.173853px;}
.y110{bottom:695.458212px;}
.y111{bottom:695.548362px;}
.yd7{bottom:698.062053px;}
.y13{bottom:699.141450px;}
.y1d7{bottom:699.561603px;}
.y8e{bottom:701.037909px;}
.y162{bottom:705.589650px;}
.y1a3{bottom:705.679500px;}
.y65{bottom:708.949654px;}
.y10f{bottom:709.224163px;}
.y267{bottom:710.358003px;}
.yd6{bottom:715.336353px;}
.y12{bottom:716.415750px;}
.y1d6{bottom:716.835903px;}
.y8d{bottom:718.222058px;}
.y161{bottom:722.775904px;}
.y1a2{bottom:722.863650px;}
.y64{bottom:726.223954px;}
.y266{bottom:727.632303px;}
.yd5{bottom:732.610653px;}
.y11{bottom:733.599900px;}
.y1d5{bottom:734.110203px;}
.y8c{bottom:735.496358px;}
.y1a1{bottom:740.137801px;}
.y160{bottom:741.217650px;}
.y63{bottom:743.498254px;}
.y265{bottom:744.906603px;}
.yd4{bottom:749.794803px;}
.y10{bottom:750.874200px;}
.y1d4{bottom:751.294353px;}
.y8b{bottom:752.680508px;}
.y206{bottom:756.784506px;}
.y1a0{bottom:757.412101px;}
.y15f{bottom:757.682100px;}
.y62{bottom:760.680901px;}
.y15d{bottom:761.010900px;}
.y264{bottom:762.090752px;}
.y15c{bottom:764.429850px;}
.yd3{bottom:767.069103px;}
.yf{bottom:768.148500px;}
.y1d3{bottom:768.568653px;}
.y8a{bottom:769.954808px;}
.y15e{bottom:774.416400px;}
.y19f{bottom:774.596250px;}
.y61{bottom:777.955201px;}
.y263{bottom:779.365052px;}
.yd2{bottom:784.343403px;}
.ye{bottom:784.520496px;}
.y1d2{bottom:785.842953px;}
.y89{bottom:787.229108px;}
.y15b{bottom:787.462051px;}
.y19e{bottom:791.870550px;}
.y60{bottom:795.229501px;}
.y262{bottom:796.639352px;}
.yd{bottom:799.187161px;}
.y230{bottom:800.599504px;}
.yd1{bottom:801.527552px;}
.y1d1{bottom:803.027102px;}
.y88{bottom:804.413258px;}
.y15a{bottom:804.736351px;}
.y19d{bottom:809.144850px;}
.y5f{bottom:812.413650px;}
.y261{bottom:813.823502px;}
.yc{bottom:813.942374px;}
.y22f{bottom:817.873804px;}
.yd0{bottom:818.801852px;}
.y1d0{bottom:820.301402px;}
.y87{bottom:821.687558px;}
.y159{bottom:822.010651px;}
.y19c{bottom:826.328850px;}
.yb{bottom:828.607842px;}
.y5e{bottom:829.687950px;}
.y260{bottom:831.097802px;}
.y22e{bottom:835.148104px;}
.ycf{bottom:836.076152px;}
.y1cf{bottom:837.575702px;}
.y86{bottom:838.961858px;}
.y158{bottom:839.194800px;}
.ya{bottom:844.173150px;}
.y19b{bottom:845.942100px;}
.y5d{bottom:846.962250px;}
.y25f{bottom:848.372102px;}
.y22d{bottom:852.332253px;}
.yce{bottom:853.260302px;}
.y1ce{bottom:854.759852px;}
.y205{bottom:854.762857px;}
.y85{bottom:856.146007px;}
.y157{bottom:856.469100px;}
.y9{bottom:861.357300px;}
.y25e{bottom:865.556252px;}
.y19a{bottom:866.365650px;}
.y22c{bottom:869.606553px;}
.ycd{bottom:870.534602px;}
.y10e{bottom:870.540612px;}
.y1cd{bottom:872.034152px;}
.y204{bottom:872.037157px;}
.y156{bottom:872.753700px;}
.y5c{bottom:873.143400px;}
.y84{bottom:873.420307px;}
.y153{bottom:877.701900px;}
.y8{bottom:878.631600px;}
.y152{bottom:881.120700px;}
.y25d{bottom:882.830552px;}
.y199{bottom:883.549800px;}
.y22b{bottom:886.790703px;}
.ycc{bottom:887.808902px;}
.y10d{bottom:887.814912px;}
.y155{bottom:888.408300px;}
.y1cc{bottom:889.308452px;}
.y203{bottom:889.311457px;}
.y83{bottom:890.694607px;}
.y154{bottom:890.837550px;}
.y7{bottom:895.006060px;}
.y5b{bottom:895.905900px;}
.y25c{bottom:900.104852px;}
.y198{bottom:900.824100px;}
.y151{bottom:902.173950px;}
.y228{bottom:902.625027px;}
.y229{bottom:902.713650px;}
.ycb{bottom:904.993052px;}
.y10c{bottom:904.999062px;}
.y1cb{bottom:906.492602px;}
.y202{bottom:906.495607px;}
.y82{bottom:907.878757px;}
.y226{bottom:908.920649px;}
.y6{bottom:909.761273px;}
.y22a{bottom:911.980172px;}
.y227{bottom:912.070500px;}
.y25b{bottom:917.289001px;}
.y196{bottom:918.098550px;}
.y150{bottom:918.458250px;}
.yca{bottom:922.267352px;}
.y10b{bottom:922.273362px;}
.y195{bottom:922.687201px;}
.y14d{bottom:923.406750px;}
.y1ca{bottom:923.766902px;}
.y201{bottom:923.769907px;}
.y225{bottom:924.488103px;}
.y5{bottom:925.056150px;}
.y81{bottom:925.153057px;}
.y14c{bottom:926.825550px;}
.y197{bottom:930.334612px;}
.y14f{bottom:934.113150px;}
.y25a{bottom:934.563301px;}
.y14e{bottom:936.542250px;}
.yc9{bottom:939.541652px;}
.y10a{bottom:939.547662px;}
.y1c9{bottom:941.041202px;}
.y200{bottom:941.044207px;}
.y4{bottom:941.700600px;}
.y224{bottom:941.762403px;}
.y193{bottom:945.089400px;}
.y192{bottom:946.079100px;}
.y194{bottom:946.618950px;}
.y14b{bottom:947.878650px;}
.y191{bottom:949.677900px;}
.y259{bottom:951.747451px;}
.yc8{bottom:956.725801px;}
.y109{bottom:956.731811px;}
.y3{bottom:957.175651px;}
.y1c8{bottom:958.225351px;}
.y1ff{bottom:958.228356px;}
.y223{bottom:958.946553px;}
.y14a{bottom:965.062650px;}
.y258{bottom:969.021751px;}
.y190{bottom:971.899949px;}
.yc7{bottom:974.000101px;}
.y108{bottom:974.006111px;}
.y2{bottom:974.269650px;}
.y1c7{bottom:975.499651px;}
.y1fe{bottom:975.502656px;}
.y222{bottom:976.220853px;}
.y149{bottom:982.336349px;}
.y257{bottom:986.296051px;}
.y18f{bottom:989.174249px;}
.yc6{bottom:991.184251px;}
.y107{bottom:991.190261px;}
.y1c6{bottom:992.683801px;}
.y1fd{bottom:992.686806px;}
.y220{bottom:995.562450px;}
.y148{bottom:1000.690950px;}
.y221{bottom:1001.410172px;}
.y256{bottom:1003.480201px;}
.y18e{bottom:1006.629000px;}
.yc5{bottom:1008.458551px;}
.y106{bottom:1008.464561px;}
.y1c5{bottom:1009.958101px;}
.y1fc{bottom:1009.961106px;}
.y21e{bottom:1015.895400px;}
.y147{bottom:1019.044650px;}
.y255{bottom:1020.754501px;}
.y21f{bottom:1021.743422px;}
.yc4{bottom:1025.732851px;}
.y105{bottom:1025.738861px;}
.y18c{bottom:1026.964054px;}
.y1c4{bottom:1027.232401px;}
.y1fb{bottom:1027.235406px;}
.y21d{bottom:1034.067296px;}
.y18d{bottom:1034.609662px;}
.y146{bottom:1036.318950px;}
.y254{bottom:1038.028801px;}
.yc3{bottom:1042.917001px;}
.y104{bottom:1042.923011px;}
.y1c3{bottom:1044.416551px;}
.y1fa{bottom:1044.419556px;}
.y18b{bottom:1048.554450px;}
.y21b{bottom:1051.703700px;}
.y145{bottom:1053.593250px;}
.y21c{bottom:1054.490847px;}
.y253{bottom:1055.212950px;}
.yc2{bottom:1060.191301px;}
.y103{bottom:1060.197311px;}
.y1c2{bottom:1061.690851px;}
.y1f9{bottom:1061.693856px;}
.y18a{bottom:1068.978301px;}
.y21a{bottom:1069.968151px;}
.y144{bottom:1070.777400px;}
.y252{bottom:1072.487250px;}
.yc1{bottom:1077.465601px;}
.y102{bottom:1077.471611px;}
.y1c1{bottom:1078.965151px;}
.y1f8{bottom:1078.968156px;}
.y189{bottom:1086.162450px;}
.y219{bottom:1087.152300px;}
.y143{bottom:1088.051099px;}
.y251{bottom:1089.761550px;}
.yc0{bottom:1094.649750px;}
.y101{bottom:1094.655760px;}
.y1c0{bottom:1096.149300px;}
.y1f7{bottom:1096.152305px;}
.y188{bottom:1103.348102px;}
.y218{bottom:1104.426600px;}
.y142{bottom:1106.316000px;}
.y250{bottom:1106.945700px;}
.y5a{bottom:1111.924050px;}
.y100{bottom:1111.930060px;}
.y1bf{bottom:1113.423600px;}
.y1f6{bottom:1113.426605px;}
.y217{bottom:1121.700900px;}
.y187{bottom:1121.791351px;}
.y24f{bottom:1124.220000px;}
.y141{bottom:1125.030000px;}
.y59{bottom:1129.198350px;}
.yff{bottom:1129.204360px;}
.y1be{bottom:1130.697900px;}
.y1f5{bottom:1130.700905px;}
.y55{bottom:1138.686900px;}
.y216{bottom:1138.885050px;}
.y186{bottom:1140.236698px;}
.y24e{bottom:1140.594600px;}
.y140{bottom:1142.213099px;}
.y58{bottom:1146.382500px;}
.yfe{bottom:1146.388510px;}
.y80{bottom:1146.389406px;}
.y1bd{bottom:1147.882050px;}
.y1f4{bottom:1147.885055px;}
.y215{bottom:1156.159350px;}
.y24d{bottom:1156.164307px;}
.y54{bottom:1160.369550px;}
.y13f{bottom:1160.657850px;}
.y185{bottom:1160.660248px;}
.y57{bottom:1163.656800px;}
.yfd{bottom:1163.662810px;}
.y7f{bottom:1163.663706px;}
.y1bc{bottom:1165.156350px;}
.y1f3{bottom:1165.159355px;}
.y53{bottom:1186.911151px;}
.y52{bottom:1210.392750px;}
.y51{bottom:1238.600700px;}
.h14{height:15.834000px;}
.hd{height:16.104000px;}
.h12{height:30.229500px;}
.hb{height:31.669500px;}
.h3{height:33.265341px;}
.h20{height:35.157201px;}
.h15{height:38.062376px;}
.h2f{height:39.651099px;}
.he{height:39.713062px;}
.h13{height:40.562719px;}
.h4{height:40.808036px;}
.h5{height:42.070140px;}
.hc{height:42.322293px;}
.h22{height:43.181015px;}
.h6{height:45.020988px;}
.h10{height:46.335000px;}
.hf{height:46.515000px;}
.h3e{height:46.779988px;}
.h1e{height:48.373964px;}
.h9{height:48.493500px;}
.h16{height:49.123500px;}
.h2{height:50.123567px;}
.h47{height:50.124164px;}
.h1d{height:50.124167px;}
.h46{height:50.124168px;}
.h1b{height:50.125970px;}
.h18{height:50.125971px;}
.h19{height:50.126571px;}
.h1a{height:50.127772px;}
.h2b{height:53.176682px;}
.h3a{height:54.924802px;}
.h7{height:54.925405px;}
.h2d{height:57.361894px;}
.h1{height:60.027984px;}
.h1c{height:60.028583px;}
.h11{height:60.845035px;}
.h21{height:62.893082px;}
.h27{height:62.893682px;}
.ha{height:63.483759px;}
.h25{height:63.798767px;}
.h8{height:64.984565px;}
.h3d{height:66.771322px;}
.h48{height:66.774322px;}
.h40{height:69.290720px;}
.h44{height:70.531803px;}
.h3f{height:70.532404px;}
.h30{height:71.129802px;}
.h29{height:73.168016px;}
.h31{height:73.289202px;}
.h2c{height:77.114567px;}
.h3b{height:77.362443px;}
.h45{height:77.372035px;}
.h3c{height:77.372037px;}
.h4c{height:80.801015px;}
.h43{height:81.526522px;}
.h41{height:84.928205px;}
.h24{height:86.843216px;}
.h2a{height:86.843816px;}
.h37{height:87.369984px;}
.h33{height:87.370584px;}
.h1f{height:89.722016px;}
.h26{height:89.722616px;}
.h42{height:95.724235px;}
.h49{height:105.187370px;}
.h4b{height:105.193380px;}
.h4a{height:105.541961px;}
.h17{height:105.547971px;}
.h38{height:105.718682px;}
.h34{height:105.719282px;}
.h28{height:106.636016px;}
.h23{height:106.637216px;}
.h35{height:106.637777px;}
.h39{height:106.638377px;}
.h32{height:109.152364px;}
.h36{height:110.757482px;}
.h2e{height:123.672402px;}
.h0{height:1263.000000px;}
.wa{width:4.948350px;}
.w3{width:5.128350px;}
.wc{width:5.848050px;}
.w4{width:5.937900px;}
.wb{width:6.387750px;}
.w9{width:6.387900px;}
.w2{width:6.567750px;}
.wd{width:7.557450px;}
.w5{width:7.737450px;}
.w7{width:8.367150px;}
.w6{width:8.457150px;}
.w8{width:10.796400px;}
.we{width:11.336100px;}
.wf{width:16.014000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x25{left:1.978350px;}
.x1a{left:4.407750px;}
.x27{left:9.807000px;}
.x1{left:107.963850px;}
.x58{left:113.632050px;}
.x79{left:139.900798px;}
.x33{left:142.152450px;}
.x73{left:143.950350px;}
.x7a{left:146.468247px;}
.x34{left:152.589000px;}
.x4e{left:155.468100px;}
.x8{left:178.143154px;}
.x68{left:179.310300px;}
.x2{left:185.518050px;}
.x4f{left:200.183100px;}
.x35{left:203.512050px;}
.x3e{left:204.681600px;}
.x36{left:206.481000px;}
.x41{left:207.650550px;}
.x50{left:209.359950px;}
.x9{left:212.059050px;}
.x4d{left:221.865900px;}
.x52{left:223.755300px;}
.x4c{left:225.194700px;}
.x51{left:226.544250px;}
.x3f{left:227.983800px;}
.x4{left:231.762600px;}
.x40{left:236.081100px;}
.x7{left:237.970501px;}
.x48{left:243.548550px;}
.x67{left:246.697649px;}
.x2e{left:249.035547px;}
.x53{left:251.016150px;}
.x49{left:253.985100px;}
.x54{left:261.812550px;}
.x6f{left:268.740900px;}
.x59{left:273.868500px;}
.x74{left:276.567600px;}
.x75{left:278.277112px;}
.x37{left:283.855200px;}
.x42{left:285.024750px;}
.x38{left:294.651600px;}
.x43{left:296.271000px;}
.x70{left:300.230400px;}
.x55{left:308.057100px;}
.x6{left:309.316951px;}
.x71{left:315.254812px;}
.x5a{left:320.113050px;}
.x39{left:322.002450px;}
.x44{left:323.621850px;}
.x3c{left:324.971400px;}
.x47{left:326.590800px;}
.x4b{left:329.199900px;}
.xd{left:330.549600px;}
.x5{left:332.348850px;}
.x56{left:335.137950px;}
.x76{left:336.937304px;}
.x5b{left:339.096750px;}
.x5d{left:342.065700px;}
.x4a{left:344.224950px;}
.x45{left:346.924050px;}
.x3a{left:349.263300px;}
.x46{left:355.021350px;}
.x3b{left:357.450600px;}
.x57{left:362.398800px;}
.x5e{left:364.289700px;}
.x5c{left:370.496100px;}
.x3d{left:381.652500px;}
.x72{left:394.518104px;}
.x78{left:418.628998px;}
.x77{left:429.516149px;}
.xc{left:443.101950px;}
.x3{left:446.252250px;}
.x17{left:456.057000px;}
.xa{left:461.907601px;}
.x18{left:463.345500px;}
.x1b{left:464.424750px;}
.x19{left:468.923250px;}
.x1c{left:473.871600px;}
.x11{left:497.803500px;}
.x12{left:502.302000px;}
.x6b{left:504.458392px;}
.x69{left:509.678094px;}
.x60{left:520.834650px;}
.x30{left:528.394799px;}
.x15{left:545.128500px;}
.x64{left:547.379255px;}
.x16{left:549.537000px;}
.x6d{left:559.702950px;}
.x2f{left:567.981298px;}
.x6a{left:571.666943px;}
.x7b{left:576.076497px;}
.x61{left:580.486050px;}
.x13{left:586.873500px;}
.x14{left:591.282000px;}
.x24{left:607.747500px;}
.x10{left:610.446000px;}
.x65{left:612.065346px;}
.x62{left:615.754200px;}
.x6c{left:617.009539px;}
.x26{left:618.453300px;}
.x2c{left:620.612550px;}
.x32{left:622.773001px;}
.x2d{left:629.339700px;}
.x5f{left:641.845296px;}
.x2a{left:643.375050px;}
.x2b{left:652.102050px;}
.x1e{left:656.871000px;}
.x1f{left:661.279500px;}
.x63{left:680.262750px;}
.x31{left:688.814253px;}
.x22{left:703.204500px;}
.x23{left:707.613000px;}
.xf{left:716.520600px;}
.x66{left:718.769850px;}
.x6e{left:724.708049px;}
.x28{left:726.597150px;}
.x29{left:735.324300px;}
.x20{left:744.141000px;}
.x21{left:748.459500px;}
.xb{left:764.324550px;}
.x1d{left:767.263500px;}
.xe{left:783.997950px;}
@media print{
.v1e{vertical-align:-65.266146pt;}
.v16{vertical-align:-30.388884pt;}
.v12{vertical-align:-27.835646pt;}
.v19{vertical-align:-24.952397pt;}
.v15{vertical-align:-21.432533pt;}
.v11{vertical-align:-18.554133pt;}
.v17{vertical-align:-16.321593pt;}
.v9{vertical-align:-12.155733pt;}
.v1b{vertical-align:-10.876268pt;}
.ve{vertical-align:-9.916373pt;}
.v3{vertical-align:-8.002136pt;}
.va{vertical-align:-5.110565pt;}
.v6{vertical-align:-2.552356pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.914562pt;}
.v4{vertical-align:7.997333pt;}
.vd{vertical-align:9.916267pt;}
.v1d{vertical-align:10.876267pt;}
.v8{vertical-align:12.155733pt;}
.v1c{vertical-align:13.115733pt;}
.v5{vertical-align:14.714667pt;}
.v14{vertical-align:21.432533pt;}
.vb{vertical-align:23.992000pt;}
.v1{vertical-align:26.549328pt;}
.v7{vertical-align:29.750400pt;}
.v1a{vertical-align:33.909526pt;}
.v10{vertical-align:34.868267pt;}
.v18{vertical-align:43.505997pt;}
.v13{vertical-align:46.704533pt;}
.v2{vertical-align:49.266137pt;}
.vc{vertical-align:56.620800pt;}
.ls7d{letter-spacing:-0.609015pt;}
.ls2e{letter-spacing:-0.341903pt;}
.ls85{letter-spacing:-0.302299pt;}
.ls86{letter-spacing:-0.219032pt;}
.ls84{letter-spacing:-0.197663pt;}
.ls22{letter-spacing:-0.192321pt;}
.ls31{letter-spacing:-0.186978pt;}
.ls1d{letter-spacing:-0.181636pt;}
.ls30{letter-spacing:-0.170952pt;}
.ls25{letter-spacing:-0.165609pt;}
.ls20{letter-spacing:-0.160939pt;}
.ls7c{letter-spacing:-0.160267pt;}
.ls98{letter-spacing:-0.149583pt;}
.ls2f{letter-spacing:-0.138898pt;}
.ls32{letter-spacing:-0.133556pt;}
.ls1e{letter-spacing:-0.128214pt;}
.ls97{letter-spacing:-0.122872pt;}
.ls2d{letter-spacing:-0.121702pt;}
.ls33{letter-spacing:-0.117529pt;}
.ls8a{letter-spacing:-0.112187pt;}
.ls96{letter-spacing:-0.106845pt;}
.ls88{letter-spacing:-0.101503pt;}
.ls18{letter-spacing:-0.096160pt;}
.ls89{letter-spacing:-0.090818pt;}
.ls79{letter-spacing:-0.089346pt;}
.ls7f{letter-spacing:-0.080134pt;}
.ls26{letter-spacing:-0.074791pt;}
.ls16{letter-spacing:-0.069449pt;}
.ls14{letter-spacing:-0.064107pt;}
.ls7e{letter-spacing:-0.063627pt;}
.ls17{letter-spacing:-0.058765pt;}
.ls11{letter-spacing:-0.053422pt;}
.ls1a{letter-spacing:-0.048080pt;}
.ls76{letter-spacing:-0.043186pt;}
.ls13{letter-spacing:-0.042738pt;}
.ls24{letter-spacing:-0.037396pt;}
.ls23{letter-spacing:-0.032053pt;}
.ls1c{letter-spacing:-0.026711pt;}
.ls74{letter-spacing:-0.023416pt;}
.ls19{letter-spacing:-0.021369pt;}
.ls15{letter-spacing:-0.016027pt;}
.ls1b{letter-spacing:-0.010684pt;}
.ls87{letter-spacing:-0.006910pt;}
.ls12{letter-spacing:-0.005342pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000533pt;}
.ls57{letter-spacing:0.001386pt;}
.ls6f{letter-spacing:0.002132pt;}
.lsb{letter-spacing:0.005342pt;}
.ls37{letter-spacing:0.008151pt;}
.ls7b{letter-spacing:0.008509pt;}
.ls0{letter-spacing:0.010684pt;}
.ls5b{letter-spacing:0.014395pt;}
.ls70{letter-spacing:0.015995pt;}
.ls5{letter-spacing:0.016027pt;}
.ls3a{letter-spacing:0.017562pt;}
.ls8c{letter-spacing:0.018714pt;}
.ls3{letter-spacing:0.021369pt;}
.ls8b{letter-spacing:0.026199pt;}
.ls1{letter-spacing:0.026711pt;}
.ls4{letter-spacing:0.032053pt;}
.ls7{letter-spacing:0.037396pt;}
.ls29{letter-spacing:0.042215pt;}
.lsa{letter-spacing:0.042738pt;}
.lsf{letter-spacing:0.046832pt;}
.ls2{letter-spacing:0.048080pt;}
.ls62{letter-spacing:0.051813pt;}
.ls9{letter-spacing:0.053422pt;}
.lsc{letter-spacing:0.058765pt;}
.ls93{letter-spacing:0.059884pt;}
.lsd{letter-spacing:0.064107pt;}
.ls77{letter-spacing:0.067178pt;}
.ls27{letter-spacing:0.069449pt;}
.ls5d{letter-spacing:0.074535pt;}
.ls6{letter-spacing:0.074791pt;}
.ls72{letter-spacing:0.076582pt;}
.ls8{letter-spacing:0.080134pt;}
.ls1f{letter-spacing:0.081956pt;}
.ls4c{letter-spacing:0.085476pt;}
.ls71{letter-spacing:0.090818pt;}
.ls38{letter-spacing:0.096160pt;}
.ls92{letter-spacing:0.101503pt;}
.ls94{letter-spacing:0.104798pt;}
.ls2b{letter-spacing:0.106845pt;}
.ls28{letter-spacing:0.122872pt;}
.ls35{letter-spacing:0.128214pt;}
.ls3e{letter-spacing:0.153536pt;}
.ls4b{letter-spacing:0.154069pt;}
.lse{letter-spacing:0.159733pt;}
.ls21{letter-spacing:0.160267pt;}
.ls56{letter-spacing:0.225525pt;}
.ls5a{letter-spacing:0.239920pt;}
.ls34{letter-spacing:0.256428pt;}
.ls36{letter-spacing:0.261770pt;}
.ls75{letter-spacing:0.278307pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.339534pt;}
.ls78{letter-spacing:0.400668pt;}
.ls3b{letter-spacing:1.188367pt;}
.ls95{letter-spacing:1.272543pt;}
.ls63{letter-spacing:1.298164pt;}
.ls58{letter-spacing:1.799400pt;}
.ls59{letter-spacing:1.799933pt;}
.ls46{letter-spacing:1.836315pt;}
.ls3f{letter-spacing:1.997629pt;}
.ls54{letter-spacing:2.119400pt;}
.ls45{letter-spacing:2.155781pt;}
.ls4a{letter-spacing:2.156315pt;}
.ls3d{letter-spacing:2.317629pt;}
.ls55{letter-spacing:2.439400pt;}
.ls43{letter-spacing:2.557031pt;}
.ls65{letter-spacing:2.595828pt;}
.ls64{letter-spacing:2.860631pt;}
.ls39{letter-spacing:3.184146pt;}
.ls6b{letter-spacing:3.496999pt;}
.ls66{letter-spacing:3.497532pt;}
.ls44{letter-spacing:3.783417pt;}
.ls7a{letter-spacing:8.312718pt;}
.ls6e{letter-spacing:11.411025pt;}
.ls81{letter-spacing:11.592661pt;}
.ls6a{letter-spacing:11.731559pt;}
.ls69{letter-spacing:11.795666pt;}
.ls82{letter-spacing:11.875800pt;}
.ls83{letter-spacing:11.913195pt;}
.ls6d{letter-spacing:12.116200pt;}
.ls41{letter-spacing:12.908129pt;}
.ls91{letter-spacing:13.013697pt;}
.ls5f{letter-spacing:13.113298pt;}
.ls8e{letter-spacing:13.136568pt;}
.ls73{letter-spacing:13.206684pt;}
.ls48{letter-spacing:13.230100pt;}
.ls6c{letter-spacing:14.432628pt;}
.ls68{letter-spacing:14.696364pt;}
.ls80{letter-spacing:14.792663pt;}
.ls67{letter-spacing:14.931561pt;}
.ls90{letter-spacing:15.333799pt;}
.ls5e{letter-spacing:15.352231pt;}
.ls4d{letter-spacing:15.352764pt;}
.ls49{letter-spacing:15.672764pt;}
.ls42{letter-spacing:15.992231pt;}
.ls4f{letter-spacing:16.408837pt;}
.ls3c{letter-spacing:16.654706pt;}
.ls4e{letter-spacing:18.551698pt;}
.ls53{letter-spacing:19.161451pt;}
.ls52{letter-spacing:23.272027pt;}
.ls60{letter-spacing:24.868315pt;}
.ls61{letter-spacing:25.029629pt;}
.ls47{letter-spacing:25.030162pt;}
.ls40{letter-spacing:25.188315pt;}
.ls8f{letter-spacing:71.901208pt;}
.ls8d{letter-spacing:108.201729pt;}
.ls5c{letter-spacing:211.369307pt;}
.ls51{letter-spacing:600.036315pt;}
.ws114{word-spacing:-48.354260pt;}
.ws113{word-spacing:-48.032289pt;}
.ws1c3{word-spacing:-46.846103pt;}
.ws1c5{word-spacing:-45.067137pt;}
.ws129{word-spacing:-44.169640pt;}
.ws12a{word-spacing:-43.966635pt;}
.ws127{word-spacing:-43.929240pt;}
.ws126{word-spacing:-43.849106pt;}
.ws11f{word-spacing:-43.436878pt;}
.ws115{word-spacing:-35.124160pt;}
.ws128{word-spacing:-32.128231pt;}
.ws123{word-spacing:-32.053440pt;}
.ws12c{word-spacing:-31.951937pt;}
.ws118{word-spacing:-29.068707pt;}
.ws11b{word-spacing:-28.857578pt;}
.ws119{word-spacing:-28.804795pt;}
.ws117{word-spacing:-28.790400pt;}
.ws11a{word-spacing:-28.747214pt;}
.ws112{word-spacing:-25.603942pt;}
.ws120{word-spacing:-25.535869pt;}
.ws11d{word-spacing:-25.527360pt;}
.ws11e{word-spacing:-25.438014pt;}
.ws1c1{word-spacing:-22.482839pt;}
.ws124{word-spacing:-22.456640pt;}
.ws125{word-spacing:-22.393013pt;}
.ws116{word-spacing:-20.407137pt;}
.ws10f{word-spacing:-13.478472pt;}
.ws1c7{word-spacing:-13.371627pt;}
.ws1c8{word-spacing:-13.366284pt;}
.ws111{word-spacing:-13.355600pt;}
.ws11c{word-spacing:-13.344916pt;}
.ws12d{word-spacing:-13.334231pt;}
.ws110{word-spacing:-13.296835pt;}
.ws163{word-spacing:-10.599004pt;}
.wsa5{word-spacing:-8.637067pt;}
.ws12b{word-spacing:-8.630157pt;}
.ws1fe{word-spacing:-0.336561pt;}
.ws176{word-spacing:-0.304508pt;}
.ws57{word-spacing:-0.299165pt;}
.ws61{word-spacing:-0.293823pt;}
.ws16a{word-spacing:-0.288481pt;}
.ws9f{word-spacing:-0.283139pt;}
.ws19{word-spacing:-0.277796pt;}
.ws229{word-spacing:-0.267112pt;}
.ws81{word-spacing:-0.261770pt;}
.wsa0{word-spacing:-0.256428pt;}
.ws1{word-spacing:-0.251085pt;}
.ws204{word-spacing:-0.245743pt;}
.ws6d{word-spacing:-0.240401pt;}
.ws6c{word-spacing:-0.235059pt;}
.ws1c9{word-spacing:-0.229716pt;}
.wsf4{word-spacing:-0.224374pt;}
.wsa8{word-spacing:-0.219032pt;}
.ws56{word-spacing:-0.213690pt;}
.ws150{word-spacing:-0.208347pt;}
.ws5{word-spacing:-0.197663pt;}
.ws80{word-spacing:-0.192321pt;}
.ws3{word-spacing:-0.186978pt;}
.ws6{word-spacing:-0.176294pt;}
.ws1b2{word-spacing:-0.160267pt;}
.ws1a4{word-spacing:-0.149583pt;}
.ws215{word-spacing:-0.117529pt;}
.ws1f7{word-spacing:-0.106845pt;}
.ws88{word-spacing:-0.074791pt;}
.wsb9{word-spacing:-0.069449pt;}
.wsa4{word-spacing:-0.053422pt;}
.ws62{word-spacing:-0.048080pt;}
.ws0{word-spacing:0.000000pt;}
.ws13f{word-spacing:0.021369pt;}
.ws1b1{word-spacing:0.032053pt;}
.wsad{word-spacing:0.037396pt;}
.wsf6{word-spacing:0.048080pt;}
.ws2{word-spacing:0.053422pt;}
.ws25{word-spacing:0.058765pt;}
.ws4f{word-spacing:0.064107pt;}
.ws14b{word-spacing:0.069449pt;}
.wsb1{word-spacing:0.074791pt;}
.ws6e{word-spacing:0.080134pt;}
.ws4{word-spacing:0.085476pt;}
.ws1a9{word-spacing:0.090818pt;}
.ws15{word-spacing:0.096160pt;}
.ws43{word-spacing:0.101503pt;}
.ws51{word-spacing:0.105372pt;}
.wsae{word-spacing:0.106845pt;}
.ws20a{word-spacing:0.112187pt;}
.ws10a{word-spacing:0.117529pt;}
.ws7{word-spacing:0.122872pt;}
.ws5c{word-spacing:0.128214pt;}
.wsf3{word-spacing:0.133556pt;}
.wsdc{word-spacing:0.138898pt;}
.ws186{word-spacing:0.144240pt;}
.ws33{word-spacing:0.149583pt;}
.ws151{word-spacing:0.154925pt;}
.ws214{word-spacing:0.203005pt;}
.wsac{word-spacing:0.219032pt;}
.ws182{word-spacing:0.309850pt;}
.ws15d{word-spacing:0.347246pt;}
.ws167{word-spacing:0.368615pt;}
.ws16e{word-spacing:0.384641pt;}
.ws183{word-spacing:0.416695pt;}
.ws209{word-spacing:0.427379pt;}
.ws15e{word-spacing:0.438064pt;}
.ws14{word-spacing:0.454090pt;}
.ws1b{word-spacing:0.667780pt;}
.ws1c{word-spacing:0.694491pt;}
.ws67{word-spacing:0.705176pt;}
.ws18f{word-spacing:0.710518pt;}
.ws68{word-spacing:0.726545pt;}
.ws145{word-spacing:0.737229pt;}
.ws166{word-spacing:0.742571pt;}
.ws12{word-spacing:0.763940pt;}
.ws146{word-spacing:0.779967pt;}
.wse5{word-spacing:0.790652pt;}
.ws13{word-spacing:0.817363pt;}
.ws131{word-spacing:0.913523pt;}
.ws155{word-spacing:1.020368pt;}
.ws55{word-spacing:1.025710pt;}
.wsb2{word-spacing:1.036395pt;}
.ws130{word-spacing:1.057764pt;}
.ws17c{word-spacing:1.063106pt;}
.ws17b{word-spacing:1.073790pt;}
.ws12f{word-spacing:1.079132pt;}
.ws13e{word-spacing:1.319533pt;}
.ws177{word-spacing:1.351587pt;}
.ws1bb{word-spacing:1.367613pt;}
.ws1d3{word-spacing:1.399667pt;}
.wse6{word-spacing:1.645410pt;}
.ws1ae{word-spacing:1.661437pt;}
.ws1ca{word-spacing:1.666779pt;}
.ws16f{word-spacing:1.672121pt;}
.ws8d{word-spacing:1.677463pt;}
.ws4d{word-spacing:1.688148pt;}
.ws1d2{word-spacing:1.714859pt;}
.ws4e{word-spacing:1.720201pt;}
.ws8c{word-spacing:1.736228pt;}
.ws70{word-spacing:1.960602pt;}
.wsc1{word-spacing:1.981971pt;}
.ws9c{word-spacing:1.997998pt;}
.ws54{word-spacing:2.003340pt;}
.ws8f{word-spacing:2.019367pt;}
.ws1cb{word-spacing:2.035393pt;}
.ws1cc{word-spacing:2.046078pt;}
.ws1d7{word-spacing:2.265110pt;}
.wsb3{word-spacing:2.302505pt;}
.ws53{word-spacing:2.329217pt;}
.ws212{word-spacing:2.361270pt;}
.ws213{word-spacing:2.371955pt;}
.ws5b{word-spacing:2.601671pt;}
.ws17a{word-spacing:2.612355pt;}
.wsc{word-spacing:2.617698pt;}
.ws178{word-spacing:2.623040pt;}
.ws24{word-spacing:2.628382pt;}
.wsfe{word-spacing:2.633724pt;}
.ws7f{word-spacing:2.639067pt;}
.wsfa{word-spacing:2.644409pt;}
.wsff{word-spacing:2.655093pt;}
.wscd{word-spacing:2.681804pt;}
.ws16d{word-spacing:2.916863pt;}
.wsc9{word-spacing:2.927548pt;}
.ws7e{word-spacing:2.948916pt;}
.wsf0{word-spacing:2.970285pt;}
.wsf1{word-spacing:2.980970pt;}
.wsd2{word-spacing:2.991654pt;}
.wsb0{word-spacing:3.007681pt;}
.wsaf{word-spacing:3.018366pt;}
.wsce{word-spacing:3.023708pt;}
.wse4{word-spacing:3.029050pt;}
.ws1a7{word-spacing:3.071788pt;}
.wsea{word-spacing:3.093157pt;}
.ws5a{word-spacing:3.290820pt;}
.wse3{word-spacing:3.322873pt;}
.ws47{word-spacing:3.408349pt;}
.ws7b{word-spacing:3.536563pt;}
.ws6f{word-spacing:3.541905pt;}
.ws7a{word-spacing:3.573959pt;}
.ws75{word-spacing:3.579301pt;}
.ws195{word-spacing:3.589985pt;}
.ws72{word-spacing:3.600670pt;}
.ws18b{word-spacing:3.606012pt;}
.ws18a{word-spacing:3.616696pt;}
.ws71{word-spacing:3.622039pt;}
.ws64{word-spacing:3.632723pt;}
.ws87{word-spacing:3.638065pt;}
.ws63{word-spacing:3.648750pt;}
.ws86{word-spacing:3.654092pt;}
.ws42{word-spacing:3.915862pt;}
.ws34{word-spacing:3.921204pt;}
.ws1b9{word-spacing:3.926546pt;}
.ws41{word-spacing:3.931889pt;}
.ws1ba{word-spacing:3.969284pt;}
.ws14c{word-spacing:4.156263pt;}
.wsf9{word-spacing:4.188316pt;}
.ws138{word-spacing:4.193658pt;}
.ws137{word-spacing:4.209685pt;}
.ws156{word-spacing:4.225712pt;}
.ws35{word-spacing:4.231054pt;}
.ws1e4{word-spacing:4.236396pt;}
.ws36{word-spacing:4.257765pt;}
.ws157{word-spacing:4.273792pt;}
.ws66{word-spacing:4.284476pt;}
.ws65{word-spacing:4.305845pt;}
.ws135{word-spacing:4.434059pt;}
.ws168{word-spacing:4.508851pt;}
.ws5d{word-spacing:4.524877pt;}
.ws134{word-spacing:4.535562pt;}
.ws79{word-spacing:4.551588pt;}
.wsc7{word-spacing:4.578300pt;}
.ws1db{word-spacing:4.588984pt;}
.ws136{word-spacing:4.599669pt;}
.ws21e{word-spacing:4.797332pt;}
.ws76{word-spacing:4.824043pt;}
.ws23{word-spacing:4.861438pt;}
.wsd9{word-spacing:4.872123pt;}
.ws1da{word-spacing:4.888150pt;}
.ws19b{word-spacing:4.898834pt;}
.ws14d{word-spacing:4.904176pt;}
.ws1dc{word-spacing:4.914861pt;}
.ws1d1{word-spacing:4.925545pt;}
.ws1d0{word-spacing:5.075128pt;}
.ws169{word-spacing:5.096497pt;}
.wse9{word-spacing:5.123208pt;}
.wsd{word-spacing:5.165946pt;}
.ws148{word-spacing:5.176631pt;}
.ws59{word-spacing:5.203342pt;}
.ws19c{word-spacing:5.208684pt;}
.wse{word-spacing:5.214026pt;}
.ws147{word-spacing:5.497165pt;}
.ws107{word-spacing:5.513192pt;}
.ws58{word-spacing:5.523876pt;}
.ws1e1{word-spacing:5.529218pt;}
.ws2c{word-spacing:5.545245pt;}
.ws2b{word-spacing:5.550587pt;}
.ws5e{word-spacing:5.561272pt;}
.ws106{word-spacing:5.571956pt;}
.ws73{word-spacing:5.796330pt;}
.ws7c{word-spacing:5.801673pt;}
.ws7d{word-spacing:5.823042pt;}
.wse8{word-spacing:5.833726pt;}
.ws6a{word-spacing:5.860437pt;}
.ws1a1{word-spacing:5.865780pt;}
.ws1a0{word-spacing:5.892491pt;}
.ws69{word-spacing:5.897833pt;}
.ws39{word-spacing:6.127549pt;}
.ws28{word-spacing:6.132892pt;}
.ws1ec{word-spacing:6.143576pt;}
.ws184{word-spacing:6.148918pt;}
.ws224{word-spacing:6.437399pt;}
.ws26{word-spacing:6.442741pt;}
.ws187{word-spacing:6.453426pt;}
.ws2d{word-spacing:6.469453pt;}
.ws2e{word-spacing:6.480137pt;}
.ws22{word-spacing:6.490822pt;}
.ws1a6{word-spacing:6.522875pt;}
.ws21{word-spacing:6.528217pt;}
.ws1ed{word-spacing:6.538902pt;}
.ws15a{word-spacing:6.725880pt;}
.ws32{word-spacing:6.736565pt;}
.ws15c{word-spacing:6.757934pt;}
.ws18e{word-spacing:6.768618pt;}
.ws15b{word-spacing:6.773960pt;}
.wse2{word-spacing:6.806014pt;}
.wsd1{word-spacing:6.811356pt;}
.ws1b3{word-spacing:6.816698pt;}
.wsd0{word-spacing:6.822040pt;}
.ws1b4{word-spacing:6.827383pt;}
.wsec{word-spacing:6.864778pt;}
.ws1e2{word-spacing:7.041072pt;}
.wsdd{word-spacing:7.057099pt;}
.wsb6{word-spacing:7.078468pt;}
.ws82{word-spacing:7.083810pt;}
.ws3d{word-spacing:7.094495pt;}
.wsef{word-spacing:7.099837pt;}
.ws1b0{word-spacing:7.105179pt;}
.wscf{word-spacing:7.110521pt;}
.ws3e{word-spacing:7.158602pt;}
.ws10{word-spacing:7.174628pt;}
.wsf{word-spacing:7.185313pt;}
.wseb{word-spacing:7.404345pt;}
.ws38{word-spacing:7.436398pt;}
.ws8{word-spacing:7.441740pt;}
.ws9{word-spacing:7.452425pt;}
.ws83{word-spacing:7.457767pt;}
.ws1fd{word-spacing:7.468452pt;}
.ws84{word-spacing:7.479136pt;}
.wse7{word-spacing:7.505847pt;}
.wsba{word-spacing:7.719537pt;}
.ws185{word-spacing:7.735564pt;}
.ws99{word-spacing:7.751590pt;}
.wscb{word-spacing:7.762275pt;}
.ws1a8{word-spacing:7.799670pt;}
.ws122{word-spacing:8.008018pt;}
.ws14e{word-spacing:8.029387pt;}
.wsbb{word-spacing:8.082809pt;}
.ws14f{word-spacing:8.237734pt;}
.ws1d6{word-spacing:8.339237pt;}
.ws17e{word-spacing:8.440739pt;}
.wsc6{word-spacing:8.467450pt;}
.ws159{word-spacing:8.745247pt;}
.wsc5{word-spacing:8.755931pt;}
.ws108{word-spacing:8.964279pt;}
.ws3c{word-spacing:9.017701pt;}
.ws1d4{word-spacing:9.033728pt;}
.ws1a{word-spacing:9.044412pt;}
.ws1a3{word-spacing:9.055097pt;}
.wsa9{word-spacing:9.060439pt;}
.ws2a{word-spacing:9.065781pt;}
.ws158{word-spacing:9.071124pt;}
.wsab{word-spacing:9.076466pt;}
.ws78{word-spacing:9.081808pt;}
.ws77{word-spacing:9.087150pt;}
.wsd8{word-spacing:9.338236pt;}
.wsc2{word-spacing:9.658770pt;}
.ws1a5{word-spacing:9.664112pt;}
.wsfb{word-spacing:9.690823pt;}
.wsfc{word-spacing:9.712192pt;}
.ws210{word-spacing:9.733561pt;}
.ws1d{word-spacing:9.979304pt;}
.ws1e{word-spacing:9.984647pt;}
.ws1e5{word-spacing:10.022042pt;}
.ws15f{word-spacing:10.027384pt;}
.ws162{word-spacing:10.283812pt;}
.ws1ab{word-spacing:10.326550pt;}
.ws161{word-spacing:10.347919pt;}
.ws1aa{word-spacing:10.358603pt;}
.ws160{word-spacing:10.395999pt;}
.wsbe{word-spacing:10.566951pt;}
.wsa6{word-spacing:10.577635pt;}
.ws1e9{word-spacing:10.599004pt;}
.wsf8{word-spacing:10.615031pt;}
.ws37{word-spacing:10.636400pt;}
.ws93{word-spacing:10.652427pt;}
.ws94{word-spacing:10.673796pt;}
.ws16b{word-spacing:10.689822pt;}
.ws16c{word-spacing:10.695164pt;}
.ws90{word-spacing:10.908854pt;}
.ws190{word-spacing:10.924881pt;}
.ws44{word-spacing:10.940908pt;}
.ws3f{word-spacing:10.951592pt;}
.ws19f{word-spacing:10.962276pt;}
.ws19e{word-spacing:10.972961pt;}
.ws1b8{word-spacing:11.224046pt;}
.wsf7{word-spacing:11.293495pt;}
.ws1fc{word-spacing:11.587319pt;}
.wsbd{word-spacing:11.608688pt;}
.ws1b6{word-spacing:11.902511pt;}
.wsb{word-spacing:12.185649pt;}
.wsa{word-spacing:12.207018pt;}
.ws142{word-spacing:12.468788pt;}
.ws1cf{word-spacing:12.527553pt;}
.ws48{word-spacing:12.564948pt;}
.ws49{word-spacing:12.570291pt;}
.ws143{word-spacing:12.575633pt;}
.wsca{word-spacing:12.591660pt;}
.ws104{word-spacing:12.767954pt;}
.ws196{word-spacing:12.810692pt;}
.wsd4{word-spacing:12.816034pt;}
.ws19d{word-spacing:12.832060pt;}
.ws105{word-spacing:12.837403pt;}
.wsd7{word-spacing:12.848087pt;}
.ws179{word-spacing:12.858772pt;}
.ws1f{word-spacing:12.869456pt;}
.ws132{word-spacing:12.890825pt;}
.ws1ce{word-spacing:12.896167pt;}
.ws206{word-spacing:12.901510pt;}
.ws103{word-spacing:12.906852pt;}
.ws205{word-spacing:12.938905pt;}
.ws133{word-spacing:12.970959pt;}
.ws1cd{word-spacing:13.163279pt;}
.wsb7{word-spacing:13.168622pt;}
.wsd3{word-spacing:13.173964pt;}
.ws197{word-spacing:13.200675pt;}
.wsc3{word-spacing:13.467787pt;}
.wsa1{word-spacing:13.494498pt;}
.wsed{word-spacing:13.505183pt;}
.wsee{word-spacing:13.521209pt;}
.ws1a2{word-spacing:13.531894pt;}
.wsc4{word-spacing:13.820375pt;}
.ws164{word-spacing:13.825717pt;}
.ws199{word-spacing:13.836402pt;}
.ws12e{word-spacing:13.852428pt;}
.ws4b{word-spacing:13.879140pt;}
.wsa3{word-spacing:14.103514pt;}
.wsc8{word-spacing:14.156936pt;}
.ws97{word-spacing:14.466786pt;}
.wsaa{word-spacing:14.498839pt;}
.wscc{word-spacing:14.504182pt;}
.ws10e{word-spacing:14.765951pt;}
.ws139{word-spacing:14.814032pt;}
.ws189{word-spacing:14.824716pt;}
.ws188{word-spacing:14.840743pt;}
.ws13a{word-spacing:14.851427pt;}
.ws192{word-spacing:15.129224pt;}
.wsa2{word-spacing:15.369624pt;}
.ws1f9{word-spacing:15.412362pt;}
.ws50{word-spacing:15.423047pt;}
.ws102{word-spacing:15.449758pt;}
.ws218{word-spacing:15.460443pt;}
.ws101{word-spacing:15.487154pt;}
.ws109{word-spacing:15.748924pt;}
.ws170{word-spacing:16.064116pt;}
.ws171{word-spacing:16.379308pt;}
.ws74{word-spacing:16.678473pt;}
.ws4a{word-spacing:16.721211pt;}
.ws1b7{word-spacing:16.726553pt;}
.ws17d{word-spacing:17.009692pt;}
.ws100{word-spacing:17.015034pt;}
.ws18c{word-spacing:17.057772pt;}
.ws31{word-spacing:17.303515pt;}
.ws18d{word-spacing:17.340911pt;}
.ws2f{word-spacing:17.351596pt;}
.ws20e{word-spacing:17.399676pt;}
.ws45{word-spacing:17.405018pt;}
.wsbc{word-spacing:17.415702pt;}
.ws208{word-spacing:17.661445pt;}
.ws10c{word-spacing:17.677472pt;}
.ws20d{word-spacing:17.714868pt;}
.wsd6{word-spacing:17.955269pt;}
.ws6b{word-spacing:17.960611pt;}
.ws1e3{word-spacing:18.003349pt;}
.ws20{word-spacing:18.590995pt;}
.ws152{word-spacing:18.660444pt;}
.ws153{word-spacing:18.681813pt;}
.ws27{word-spacing:18.975636pt;}
.ws89{word-spacing:18.997005pt;}
.ws8a{word-spacing:19.007690pt;}
.ws95{word-spacing:19.269460pt;}
.ws96{word-spacing:19.349593pt;}
.ws194{word-spacing:19.584652pt;}
.ws29{word-spacing:19.589994pt;}
.ws193{word-spacing:19.595336pt;}
.ws154{word-spacing:19.606021pt;}
.wsb4{word-spacing:19.616705pt;}
.wsb5{word-spacing:19.974635pt;}
.ws1ad{word-spacing:20.289828pt;}
.ws1ac{word-spacing:20.300512pt;}
.ws13c{word-spacing:20.455437pt;}
.ws13b{word-spacing:20.546255pt;}
.ws149{word-spacing:20.551597pt;}
.ws220{word-spacing:20.562282pt;}
.ws13d{word-spacing:20.679811pt;}
.ws14a{word-spacing:20.840078pt;}
.ws60{word-spacing:20.845420pt;}
.ws9a{word-spacing:20.856105pt;}
.wse1{word-spacing:20.882816pt;}
.ws222{word-spacing:20.925554pt;}
.ws221{word-spacing:20.936239pt;}
.ws217{word-spacing:21.117875pt;}
.ws21c{word-spacing:21.203351pt;}
.ws5f{word-spacing:21.256773pt;}
.ws4c{word-spacing:21.449094pt;}
.wse0{word-spacing:22.138243pt;}
.ws21f{word-spacing:22.624386pt;}
.ws1af{word-spacing:22.741916pt;}
.ws1ff{word-spacing:23.372300pt;}
.ws9b{word-spacing:23.441749pt;}
.ws1f2{word-spacing:23.708861pt;}
.ws219{word-spacing:23.719546pt;}
.ws1f1{word-spacing:23.730230pt;}
.ws21a{word-spacing:23.767626pt;}
.ws9e{word-spacing:23.772968pt;}
.ws1e0{word-spacing:24.072133pt;}
.ws46{word-spacing:24.408695pt;}
.ws92{word-spacing:24.419379pt;}
.ws91{word-spacing:24.440748pt;}
.ws1c2{word-spacing:24.618800pt;}
.wsfd{word-spacing:24.980314pt;}
.ws8b{word-spacing:24.996341pt;}
.ws174{word-spacing:25.081817pt;}
.ws181{word-spacing:25.343587pt;}
.ws191{word-spacing:25.364956pt;}
.ws3b{word-spacing:25.370298pt;}
.ws175{word-spacing:25.380982pt;}
.ws3a{word-spacing:25.397009pt;}
.wsf2{word-spacing:26.011367pt;}
.ws180{word-spacing:26.070131pt;}
.ws17f{word-spacing:26.299848pt;}
.ws144{word-spacing:26.310532pt;}
.ws9d{word-spacing:26.604355pt;}
.ws1e6{word-spacing:26.652435pt;}
.ws98{word-spacing:26.924890pt;}
.wsa7{word-spacing:26.967628pt;}
.ws165{word-spacing:27.250766pt;}
.ws1d5{word-spacing:27.587327pt;}
.ws200{word-spacing:27.955942pt;}
.ws223{word-spacing:28.164289pt;}
.ws52{word-spacing:28.239081pt;}
.ws40{word-spacing:28.249765pt;}
.ws1dd{word-spacing:28.265792pt;}
.ws1e7{word-spacing:28.538246pt;}
.wsbf{word-spacing:28.826727pt;}
.ws172{word-spacing:29.457111pt;}
.ws173{word-spacing:29.558614pt;}
.ws11{word-spacing:30.119549pt;}
.ws207{word-spacing:30.776645pt;}
.ws216{word-spacing:31.059783pt;}
.wsd5{word-spacing:31.732906pt;}
.ws1ee{word-spacing:31.813039pt;}
.ws1ef{word-spacing:32.122889pt;}
.ws20f{word-spacing:32.747931pt;}
.ws18{word-spacing:32.956279pt;}
.ws1d9{word-spacing:33.009701pt;}
.ws16{word-spacing:33.015043pt;}
.ws30{word-spacing:33.031070pt;}
.ws198{word-spacing:33.036412pt;}
.ws17{word-spacing:33.052439pt;}
.wsf5{word-spacing:33.303524pt;}
.wsb8{word-spacing:33.394342pt;}
.ws85{word-spacing:34.249101pt;}
.ws19a{word-spacing:34.916881pt;}
.ws20c{word-spacing:37.117884pt;}
.ws1d8{word-spacing:37.828401pt;}
.ws1ea{word-spacing:39.115881pt;}
.ws21b{word-spacing:39.708870pt;}
.ws228{word-spacing:39.724897pt;}
.ws1e8{word-spacing:39.997351pt;}
.ws227{word-spacing:40.034747pt;}
.ws10b{word-spacing:40.980323pt;}
.ws1b5{word-spacing:41.017719pt;}
.wsc0{word-spacing:41.963295pt;}
.ws1f4{word-spacing:42.000691pt;}
.ws1f5{word-spacing:42.006033pt;}
.ws8e{word-spacing:43.576652pt;}
.ws21d{word-spacing:44.933581pt;}
.ws1fa{word-spacing:45.291511pt;}
.ws1fb{word-spacing:45.612045pt;}
.ws10d{word-spacing:46.162296pt;}
.wsdf{word-spacing:46.472146pt;}
.wsde{word-spacing:46.814049pt;}
.ws1f8{word-spacing:49.292848pt;}
.ws1eb{word-spacing:49.965971pt;}
.ws225{word-spacing:50.558959pt;}
.ws226{word-spacing:50.564302pt;}
.ws202{word-spacing:52.252449pt;}
.ws203{word-spacing:52.263134pt;}
.ws1df{word-spacing:53.828410pt;}
.ws1de{word-spacing:53.844437pt;}
.ws121{word-spacing:54.723638pt;}
.ws1c0{word-spacing:55.287084pt;}
.ws1f3{word-spacing:56.034755pt;}
.wsda{word-spacing:58.882169pt;}
.wsdb{word-spacing:59.218730pt;}
.ws141{word-spacing:60.548948pt;}
.ws211{word-spacing:62.910218pt;}
.ws1c6{word-spacing:67.122818pt;}
.ws140{word-spacing:67.590020pt;}
.ws1f0{word-spacing:69.016399pt;}
.ws1f6{word-spacing:75.897204pt;}
.ws1c4{word-spacing:87.009310pt;}
.ws201{word-spacing:92.874842pt;}
.ws20b{word-spacing:96.662491pt;}
.ws1bf{word-spacing:325.481314pt;}
.ws1bc{word-spacing:345.317051pt;}
.ws1be{word-spacing:349.323731pt;}
.ws1bd{word-spacing:349.804533pt;}
._25{margin-left:-62.183674pt;}
._1d{margin-left:-41.087413pt;}
._24{margin-left:-39.959955pt;}
._26{margin-left:-16.000009pt;}
._c{margin-left:-14.213053pt;}
._14{margin-left:-11.787268pt;}
._11{margin-left:-10.053586pt;}
._10{margin-left:-8.819339pt;}
._13{margin-left:-7.553972pt;}
._17{margin-left:-6.100721pt;}
._16{margin-left:-4.797330pt;}
._e{margin-left:-3.243079pt;}
._d{margin-left:-1.928303pt;}
._1{margin-left:-0.934892pt;}
._3{width:0.961603pt;}
._7{width:3.151922pt;}
._9{width:4.444744pt;}
._19{width:10.898170pt;}
._8{width:12.484815pt;}
._b{width:15.198673pt;}
._a{width:17.757606pt;}
._15{width:18.800360pt;}
._1a{width:25.364956pt;}
._4{width:29.296844pt;}
._12{width:30.717880pt;}
._2{width:55.724905pt;}
._5{width:73.883179pt;}
._f{width:84.468209pt;}
._23{width:115.819763pt;}
._22{width:178.185073pt;}
._18{width:188.695231pt;}
._21{width:501.476069pt;}
._20{width:503.703783pt;}
._1f{width:562.890460pt;}
._1e{width:565.123516pt;}
._6{width:654.381662pt;}
._1b{width:772.407770pt;}
._1c{width:798.958703pt;}
._0{width:1091.156160pt;}
.fs9{font-size:32.453420pt;}
.fs7{font-size:33.861220pt;}
.fsa{font-size:34.548267pt;}
.fs5{font-size:37.427733pt;}
.fs10{font-size:39.986667pt;}
.fs2{font-size:42.545600pt;}
.fsc{font-size:44.965245pt;}
.fs3{font-size:47.984000pt;}
.fs8{font-size:48.680896pt;}
.fsf{font-size:50.712836pt;}
.fs6{font-size:50.792086pt;}
.fs1{font-size:53.422400pt;}
.fs4{font-size:58.540267pt;}
.fsb{font-size:61.869179pt;}
.fs0{font-size:63.978667pt;}
.fse{font-size:69.417067pt;}
.fsd{font-size:73.364533pt;}
.fs11{font-size:74.534933pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:2.479733pt;}
.yaa{bottom:2.639067pt;}
.yb4{bottom:2.959200pt;}
.ya8{bottom:3.118933pt;}
.yb3{bottom:5.358400pt;}
.ya7{bottom:5.598133pt;}
.y214{bottom:17.474400pt;}
.y13e{bottom:21.473067pt;}
.y56{bottom:24.138800pt;}
.y1bb{bottom:25.471733pt;}
.yb9{bottom:28.310400pt;}
.yac{bottom:29.669733pt;}
.y24c{bottom:40.907074pt;}
.y1ba{bottom:41.947603pt;}
.ya5{bottom:42.692667pt;}
.y213{bottom:45.382398pt;}
.y28d{bottom:49.065076pt;}
.y1{bottom:52.129600pt;}
.yfc{bottom:53.410142pt;}
.y7e{bottom:54.450004pt;}
.y24b{bottom:56.181873pt;}
.y1b9{bottom:57.302537pt;}
.y13d{bottom:57.567733pt;}
.y212{bottom:60.737331pt;}
.ya4{bottom:62.925867pt;}
.y1f2{bottom:64.017204pt;}
.y28c{bottom:64.339875pt;}
.yfb{bottom:68.765076pt;}
.y7d{bottom:69.724804pt;}
.y24a{bottom:71.536807pt;}
.y1b8{bottom:72.577336pt;}
.y184{bottom:74.414000pt;}
.y1f1{bottom:79.372138pt;}
.y28b{bottom:79.694809pt;}
.y37{bottom:83.241474pt;}
.y50{bottom:83.242809pt;}
.y132{bottom:83.318399pt;}
.y211{bottom:84.008129pt;}
.yfa{bottom:84.120009pt;}
.y7c{bottom:85.079737pt;}
.y249{bottom:86.891740pt;}
.y1b7{bottom:87.932270pt;}
.y1f0{bottom:94.646937pt;}
.y183{bottom:94.649069pt;}
.y28a{bottom:95.049742pt;}
.y36{bottom:98.596407pt;}
.y4f{bottom:98.597742pt;}
.yf9{bottom:99.394809pt;}
.y13c{bottom:99.634268pt;}
.y131{bottom:99.635338pt;}
.y7b{bottom:100.434670pt;}
.y248{bottom:102.166540pt;}
.y1b6{bottom:103.287203pt;}
.y210{bottom:107.360395pt;}
.y1ef{bottom:110.001871pt;}
.y289{bottom:110.324542pt;}
.y35{bottom:113.951340pt;}
.y4e{bottom:113.952676pt;}
.yf8{bottom:114.749742pt;}
.y7a{bottom:115.709470pt;}
.y13b{bottom:116.028267pt;}
.y130{bottom:116.029337pt;}
.y247{bottom:117.521473pt;}
.y1b5{bottom:118.562003pt;}
.y20f{bottom:119.598131pt;}
.y1ee{bottom:125.356804pt;}
.y288{bottom:125.679475pt;}
.yb2{bottom:127.704000pt;}
.ya6{bottom:128.504000pt;}
.y34{bottom:129.226140pt;}
.y4d{bottom:129.227475pt;}
.yf7{bottom:130.104675pt;}
.y79{bottom:131.064403pt;}
.y246{bottom:132.876406pt;}
.y1b4{bottom:133.916936pt;}
.y13a{bottom:139.380533pt;}
.y12f{bottom:139.381604pt;}
.y1ed{bottom:140.631604pt;}
.y287{bottom:141.034408pt;}
.y33{bottom:144.581073pt;}
.y4c{bottom:144.582409pt;}
.yf6{bottom:145.379475pt;}
.y78{bottom:146.419337pt;}
.ybb{bottom:147.217600pt;}
.ybd{bottom:147.537600pt;}
.y245{bottom:148.149870pt;}
.y1b3{bottom:149.271869pt;}
.yba{bottom:149.616933pt;}
.ybc{bottom:149.936800pt;}
.y139{bottom:154.655333pt;}
.y12e{bottom:154.656403pt;}
.y1ec{bottom:155.986537pt;}
.y286{bottom:156.309208pt;}
.y32{bottom:159.936007pt;}
.y4b{bottom:159.937342pt;}
.yf5{bottom:160.734408pt;}
.yb1{bottom:161.692800pt;}
.y77{bottom:161.694137pt;}
.y244{bottom:163.504804pt;}
.yb0{bottom:164.172000pt;}
.y138{bottom:170.010266pt;}
.y12d{bottom:170.011337pt;}
.y1eb{bottom:171.261337pt;}
.y285{bottom:171.664141pt;}
.y1b2{bottom:172.542667pt;}
.y31{bottom:175.210806pt;}
.y4a{bottom:175.212142pt;}
.yf4{bottom:176.089342pt;}
.y76{bottom:177.049070pt;}
.y243{bottom:178.859737pt;}
.y137{bottom:185.365200pt;}
.y12c{bottom:185.366270pt;}
.y1ea{bottom:186.616270pt;}
.y284{bottom:187.019075pt;}
.y30{bottom:190.565740pt;}
.y49{bottom:190.567075pt;}
.yf3{bottom:191.364141pt;}
.y75{bottom:192.404003pt;}
.y1b1{bottom:192.775733pt;}
.y242{bottom:194.133201pt;}
.y12b{bottom:200.639734pt;}
.y136{bottom:200.639999pt;}
.ybf{bottom:201.439600pt;}
.y1e9{bottom:201.971203pt;}
.y283{bottom:202.293874pt;}
.ya3{bottom:202.800536pt;}
.ybe{bottom:203.838800pt;}
.y2f{bottom:205.920673pt;}
.y48{bottom:205.922008pt;}
.yf2{bottom:206.719075pt;}
.y74{bottom:207.678803pt;}
.y241{bottom:209.488135pt;}
.yb8{bottom:212.556000pt;}
.y135{bottom:215.994933pt;}
.y12a{bottom:215.996003pt;}
.y1e8{bottom:217.246003pt;}
.yab{bottom:217.274667pt;}
.y282{bottom:217.648808pt;}
.ya2{bottom:218.075336pt;}
.y20e{bottom:221.164798pt;}
.yaf{bottom:221.192933pt;}
.y2e{bottom:221.195473pt;}
.y47{bottom:221.196808pt;}
.yf1{bottom:222.074008pt;}
.y73{bottom:223.033736pt;}
.yae{bottom:223.672133pt;}
.y240{bottom:224.843068pt;}
.y129{bottom:231.349601pt;}
.y134{bottom:231.349866pt;}
.y281{bottom:232.923607pt;}
.y20d{bottom:233.401199pt;}
.ya1{bottom:233.430269pt;}
.y2d{bottom:236.550406pt;}
.y46{bottom:236.551742pt;}
.yf0{bottom:237.348808pt;}
.yb5{bottom:238.386667pt;}
.y72{bottom:238.388670pt;}
.y23f{bottom:240.117868pt;}
.y1e7{bottom:240.598270pt;}
.yb7{bottom:240.866400pt;}
.ya9{bottom:244.305333pt;}
.y128{bottom:246.624401pt;}
.y133{bottom:246.624666pt;}
.yad{bottom:246.944400pt;}
.y280{bottom:248.278541pt;}
.ya0{bottom:248.785203pt;}
.y2c{bottom:251.905339pt;}
.y45{bottom:251.906675pt;}
.yef{bottom:252.703741pt;}
.y71{bottom:253.663469pt;}
.y23e{bottom:255.472801pt;}
.y127{bottom:261.979334pt;}
.y27f{bottom:263.633474pt;}
.y1e6{bottom:263.950536pt;}
.y2b{bottom:267.180139pt;}
.y44{bottom:267.181475pt;}
.yee{bottom:267.978541pt;}
.y70{bottom:269.018403pt;}
.y23d{bottom:270.827734pt;}
.y9f{bottom:272.056000pt;}
.y1e5{bottom:276.186937pt;}
.y126{bottom:277.334267pt;}
.y27e{bottom:278.908274pt;}
.y2a{bottom:282.535072pt;}
.y43{bottom:282.536408pt;}
.yed{bottom:283.333474pt;}
.y23c{bottom:286.102534pt;}
.y6f{bottom:292.289200pt;}
.y9e{bottom:292.369200pt;}
.y125{bottom:292.609067pt;}
.y27d{bottom:294.263207pt;}
.y29{bottom:297.809872pt;}
.y42{bottom:297.811208pt;}
.yec{bottom:298.688407pt;}
.y23b{bottom:301.457467pt;}
.y124{bottom:307.964000pt;}
.y27c{bottom:309.618140pt;}
.y6e{bottom:312.522400pt;}
.y28{bottom:313.164805pt;}
.y41{bottom:313.166141pt;}
.yeb{bottom:313.963207pt;}
.y23a{bottom:316.812401pt;}
.y123{bottom:323.238132pt;}
.y27b{bottom:324.892940pt;}
.y182{bottom:325.611467pt;}
.y27{bottom:328.519739pt;}
.y40{bottom:328.521074pt;}
.yea{bottom:329.318140pt;}
.y20c{bottom:334.967866pt;}
.y122{bottom:339.552799pt;}
.y239{bottom:340.084534pt;}
.y27a{bottom:340.247873pt;}
.y181{bottom:340.966401pt;}
.y26{bottom:343.794538pt;}
.y3f{bottom:343.795874pt;}
.ye9{bottom:344.673074pt;}
.y20b{bottom:347.204267pt;}
.y279{bottom:355.602807pt;}
.y121{bottom:355.869870pt;}
.y180{bottom:356.321334pt;}
.y1e4{bottom:358.640405pt;}
.y25{bottom:359.148136pt;}
.y3e{bottom:359.150807pt;}
.ye8{bottom:359.947873pt;}
.y238{bottom:360.318268pt;}
.y1e3{bottom:370.876805pt;}
.y278{bottom:370.877607pt;}
.y17f{bottom:371.596134pt;}
.y120{bottom:372.263734pt;}
.y24{bottom:374.501734pt;}
.y3d{bottom:374.505741pt;}
.ye7{bottom:375.302807pt;}
.y277{bottom:386.232540pt;}
.y17e{bottom:386.951067pt;}
.y11f{bottom:387.620003pt;}
.y23{bottom:389.776534pt;}
.y3c{bottom:389.780540pt;}
.ye6{bottom:390.657740pt;}
.y9d{bottom:393.221476pt;}
.y276{bottom:401.587473pt;}
.y17d{bottom:402.225867pt;}
.y11e{bottom:402.893467pt;}
.y22{bottom:405.131467pt;}
.y3b{bottom:405.135474pt;}
.ye5{bottom:405.932540pt;}
.y9c{bottom:408.496276pt;}
.y275{bottom:416.862273pt;}
.y17c{bottom:417.580800pt;}
.y11d{bottom:418.248400pt;}
.y21{bottom:420.486400pt;}
.y3a{bottom:420.490407pt;}
.ye4{bottom:421.287473pt;}
.y1b0{bottom:423.820537pt;}
.y9b{bottom:423.851209pt;}
.y178{bottom:432.135609pt;}
.y17b{bottom:432.135867pt;}
.y274{bottom:432.217206pt;}
.y11c{bottom:433.603334pt;}
.y20{bottom:435.761200pt;}
.y39{bottom:435.765207pt;}
.y177{bottom:436.534400pt;}
.ye3{bottom:436.642406pt;}
.y9a{bottom:439.206142pt;}
.y175{bottom:439.573467pt;}
.y1af{bottom:440.212800pt;}
.y17a{bottom:446.051200pt;}
.y176{bottom:447.170688pt;}
.y273{bottom:447.572140pt;}
.y179{bottom:448.210400pt;}
.y11b{bottom:448.878133pt;}
.y20a{bottom:449.330133pt;}
.y1f{bottom:451.116133pt;}
.y38{bottom:451.120140pt;}
.ye2{bottom:451.917206pt;}
.y1e2{bottom:453.251475pt;}
.y99{bottom:454.480942pt;}
.y1ae{bottom:458.366400pt;}
.y174{bottom:459.966533pt;}
.y272{bottom:462.846939pt;}
.y11a{bottom:464.236412pt;}
.y1e{bottom:465.670300pt;}
.ye1{bottom:467.272140pt;}
.y1e1{bottom:468.606408pt;}
.y98{bottom:469.835875pt;}
.y1ad{bottom:473.961734pt;}
.y170{bottom:474.521475pt;}
.y173{bottom:474.521600pt;}
.y209{bottom:475.162672pt;}
.y271{bottom:478.201873pt;}
.y1d{bottom:478.786045pt;}
.y16f{bottom:478.920133pt;}
.y119{bottom:479.591345pt;}
.y16e{bottom:481.959200pt;}
.ye0{bottom:482.627073pt;}
.y237{bottom:483.557067pt;}
.y1e0{bottom:483.961342pt;}
.y97{bottom:485.190809pt;}
.y172{bottom:488.436933pt;}
.y1ac{bottom:489.316668pt;}
.y171{bottom:490.596267pt;}
.y1c{bottom:491.822017pt;}
.y270{bottom:493.556806pt;}
.y118{bottom:494.866145pt;}
.ydf{bottom:497.901873pt;}
.y208{bottom:498.434805pt;}
.y236{bottom:498.912000pt;}
.y1df{bottom:499.236141pt;}
.y96{bottom:500.465608pt;}
.y16d{bottom:502.432400pt;}
.y1ab{bottom:504.671601pt;}
.y1b{bottom:504.857988pt;}
.y6d{bottom:507.578404pt;}
.y26f{bottom:508.831606pt;}
.y117{bottom:510.221078pt;}
.yde{bottom:513.256806pt;}
.y235{bottom:514.186800pt;}
.y1de{bottom:514.589739pt;}
.y95{bottom:515.820542pt;}
.y16c{bottom:517.707200pt;}
.y1a{bottom:517.973733pt;}
.y1aa{bottom:519.946401pt;}
.y6c{bottom:522.933337pt;}
.y26e{bottom:524.186539pt;}
.y116{bottom:525.576011pt;}
.ydd{bottom:528.611739pt;}
.y234{bottom:529.541733pt;}
.y1dd{bottom:529.943337pt;}
.y94{bottom:531.175475pt;}
.y19{bottom:531.729067pt;}
.y16b{bottom:533.062134pt;}
.y1a9{bottom:535.301334pt;}
.y6b{bottom:538.208137pt;}
.y26d{bottom:539.460003pt;}
.y115{bottom:540.850811pt;}
.ydc{bottom:543.885203pt;}
.y1dc{bottom:545.218137pt;}
.y93{bottom:546.450275pt;}
.y18{bottom:547.084000pt;}
.y16a{bottom:548.417067pt;}
.y1a8{bottom:550.656267pt;}
.y233{bottom:552.894000pt;}
.y6a{bottom:553.563070pt;}
.y26c{bottom:554.814936pt;}
.y114{bottom:556.205744pt;}
.ydb{bottom:559.240137pt;}
.y1db{bottom:560.573070pt;}
.y17{bottom:561.639200pt;}
.y92{bottom:561.805208pt;}
.y169{bottom:563.691867pt;}
.y1a7{bottom:565.931067pt;}
.y232{bottom:568.168799pt;}
.y69{bottom:568.918004pt;}
.y26b{bottom:570.169870pt;}
.y113{bottom:571.560678pt;}
.yda{bottom:574.514936pt;}
.y16{bottom:575.474401pt;}
.y1da{bottom:575.847870pt;}
.y91{bottom:577.160141pt;}
.y168{bottom:578.488453pt;}
.y1a6{bottom:581.286000pt;}
.y165{bottom:583.685200pt;}
.y68{bottom:584.192804pt;}
.y26a{bottom:585.444669pt;}
.y207{bottom:585.605471pt;}
.y164{bottom:587.204000pt;}
.y231{bottom:588.482667pt;}
.yd9{bottom:589.869870pt;}
.y15{bottom:590.829334pt;}
.y1d9{bottom:591.202803pt;}
.y90{bottom:592.434941pt;}
.y112{bottom:594.832811pt;}
.y167{bottom:594.881467pt;}
.y1a5{bottom:596.560800pt;}
.y166{bottom:597.360533pt;}
.y67{bottom:599.547737pt;}
.y269{bottom:600.799603pt;}
.yd8{bottom:605.224803pt;}
.y14{bottom:606.104134pt;}
.y1d8{bottom:606.557736pt;}
.y8f{bottom:607.789874pt;}
.y1a4{bottom:611.915733pt;}
.y163{bottom:611.916001pt;}
.y66{bottom:614.902670pt;}
.y268{bottom:616.154536pt;}
.y110{bottom:618.185077pt;}
.y111{bottom:618.265211pt;}
.yd7{bottom:620.499603pt;}
.y13{bottom:621.459067pt;}
.y1d7{bottom:621.832536pt;}
.y8e{bottom:623.144808pt;}
.y162{bottom:627.190800pt;}
.y1a3{bottom:627.270667pt;}
.y65{bottom:630.177470pt;}
.y10f{bottom:630.421478pt;}
.y267{bottom:631.429336pt;}
.yd6{bottom:635.854536pt;}
.y12{bottom:636.814000pt;}
.y1d6{bottom:637.187469pt;}
.y8d{bottom:638.419607pt;}
.y161{bottom:642.467470pt;}
.y1a2{bottom:642.545467pt;}
.y64{bottom:645.532403pt;}
.y266{bottom:646.784269pt;}
.yd5{bottom:651.209469pt;}
.y11{bottom:652.088800pt;}
.y1d5{bottom:652.542403pt;}
.y8c{bottom:653.774541pt;}
.y1a1{bottom:657.900267pt;}
.y160{bottom:658.860134pt;}
.y63{bottom:660.887337pt;}
.y265{bottom:662.139202pt;}
.yd4{bottom:666.484269pt;}
.y10{bottom:667.443733pt;}
.y1d4{bottom:667.817202pt;}
.y8b{bottom:669.049340pt;}
.y206{bottom:672.697339pt;}
.y1a0{bottom:673.255201pt;}
.y15f{bottom:673.495200pt;}
.y62{bottom:676.160801pt;}
.y15d{bottom:676.454133pt;}
.y264{bottom:677.414002pt;}
.y15c{bottom:679.493200pt;}
.yd3{bottom:681.839202pt;}
.yf{bottom:682.798667pt;}
.y1d3{bottom:683.172136pt;}
.y8a{bottom:684.404274pt;}
.y15e{bottom:688.370133pt;}
.y19f{bottom:688.530000pt;}
.y61{bottom:691.515734pt;}
.y263{bottom:692.768935pt;}
.yd2{bottom:697.194136pt;}
.ye{bottom:697.351552pt;}
.y1d2{bottom:698.527069pt;}
.y89{bottom:699.759207pt;}
.y15b{bottom:699.966267pt;}
.y19e{bottom:703.884934pt;}
.y60{bottom:706.870667pt;}
.y262{bottom:708.123869pt;}
.yd{bottom:710.388588pt;}
.y230{bottom:711.644003pt;}
.yd1{bottom:712.468935pt;}
.y1d1{bottom:713.801869pt;}
.y88{bottom:715.034007pt;}
.y15a{bottom:715.321201pt;}
.y19d{bottom:719.239867pt;}
.y5f{bottom:722.145467pt;}
.y261{bottom:723.398669pt;}
.yc{bottom:723.504332pt;}
.y22f{bottom:726.998937pt;}
.yd0{bottom:727.823869pt;}
.y1d0{bottom:729.156802pt;}
.y87{bottom:730.388940pt;}
.y159{bottom:730.676134pt;}
.y19c{bottom:734.514533pt;}
.yb{bottom:736.540304pt;}
.y5e{bottom:737.500400pt;}
.y260{bottom:738.753602pt;}
.y22e{bottom:742.353870pt;}
.ycf{bottom:743.178802pt;}
.y1cf{bottom:744.511735pt;}
.y86{bottom:745.743873pt;}
.y158{bottom:745.950934pt;}
.ya{bottom:750.376134pt;}
.y19b{bottom:751.948533pt;}
.y5d{bottom:752.855334pt;}
.y25f{bottom:754.108535pt;}
.y22d{bottom:757.628670pt;}
.yce{bottom:758.453602pt;}
.y1ce{bottom:759.786535pt;}
.y205{bottom:759.789206pt;}
.y85{bottom:761.018673pt;}
.y157{bottom:761.305867pt;}
.y9{bottom:765.650933pt;}
.y25e{bottom:769.383335pt;}
.y19a{bottom:770.102800pt;}
.y22c{bottom:772.983603pt;}
.ycd{bottom:773.808535pt;}
.y10e{bottom:773.813877pt;}
.y1cd{bottom:775.141468pt;}
.y204{bottom:775.144140pt;}
.y156{bottom:775.781067pt;}
.y5c{bottom:776.127467pt;}
.y84{bottom:776.373606pt;}
.y153{bottom:780.179467pt;}
.y8{bottom:781.005867pt;}
.y152{bottom:783.218400pt;}
.y25d{bottom:784.738268pt;}
.y199{bottom:785.377600pt;}
.y22b{bottom:788.258403pt;}
.ycc{bottom:789.163468pt;}
.y10d{bottom:789.168811pt;}
.y155{bottom:789.696267pt;}
.y1cc{bottom:790.496402pt;}
.y203{bottom:790.499073pt;}
.y83{bottom:791.728540pt;}
.y154{bottom:791.855600pt;}
.y7{bottom:795.560942pt;}
.y5b{bottom:796.360800pt;}
.y25c{bottom:800.093202pt;}
.y198{bottom:800.732533pt;}
.y151{bottom:801.932400pt;}
.y228{bottom:802.333357pt;}
.y229{bottom:802.412133pt;}
.ycb{bottom:804.438268pt;}
.y10c{bottom:804.443610pt;}
.y1cb{bottom:805.771202pt;}
.y202{bottom:805.773873pt;}
.y82{bottom:807.003340pt;}
.y226{bottom:807.929466pt;}
.y6{bottom:808.676687pt;}
.y22a{bottom:810.649042pt;}
.y227{bottom:810.729333pt;}
.y25b{bottom:815.368001pt;}
.y196{bottom:816.087600pt;}
.y150{bottom:816.407333pt;}
.yca{bottom:819.793202pt;}
.y10b{bottom:819.798544pt;}
.y195{bottom:820.166401pt;}
.y14d{bottom:820.806000pt;}
.y1ca{bottom:821.126135pt;}
.y201{bottom:821.128806pt;}
.y225{bottom:821.767203pt;}
.y5{bottom:822.272133pt;}
.y81{bottom:822.358273pt;}
.y14c{bottom:823.844933pt;}
.y197{bottom:826.964099pt;}
.y14f{bottom:830.322800pt;}
.y25a{bottom:830.722935pt;}
.y14e{bottom:832.482000pt;}
.yc9{bottom:835.148135pt;}
.y10a{bottom:835.153477pt;}
.y1c9{bottom:836.481068pt;}
.y200{bottom:836.483739pt;}
.y4{bottom:837.067200pt;}
.y224{bottom:837.122136pt;}
.y193{bottom:840.079467pt;}
.y192{bottom:840.959200pt;}
.y194{bottom:841.439067pt;}
.y14b{bottom:842.558800pt;}
.y191{bottom:844.158134pt;}
.y259{bottom:845.997734pt;}
.yc8{bottom:850.422935pt;}
.y109{bottom:850.428277pt;}
.y3{bottom:850.822801pt;}
.y1c8{bottom:851.755868pt;}
.y1ff{bottom:851.758539pt;}
.y223{bottom:852.396936pt;}
.y14a{bottom:857.833467pt;}
.y258{bottom:861.352668pt;}
.y190{bottom:863.911066pt;}
.yc7{bottom:865.777868pt;}
.y108{bottom:865.783210pt;}
.y2{bottom:866.017467pt;}
.y1c7{bottom:867.110801pt;}
.y1fe{bottom:867.113472pt;}
.y222{bottom:867.751869pt;}
.y149{bottom:873.187866pt;}
.y257{bottom:876.707601pt;}
.y18f{bottom:879.265999pt;}
.yc6{bottom:881.052668pt;}
.y107{bottom:881.058010pt;}
.y1c6{bottom:882.385601pt;}
.y1fd{bottom:882.388272pt;}
.y220{bottom:884.944400pt;}
.y148{bottom:889.503067pt;}
.y221{bottom:890.142375pt;}
.y256{bottom:891.982401pt;}
.y18e{bottom:894.781334pt;}
.yc5{bottom:896.407601pt;}
.y106{bottom:896.412943pt;}
.y1c5{bottom:897.740534pt;}
.y1fc{bottom:897.743205pt;}
.y21e{bottom:903.018133pt;}
.y147{bottom:905.817467pt;}
.y255{bottom:907.337334pt;}
.y21f{bottom:908.216375pt;}
.yc4{bottom:911.762534pt;}
.y105{bottom:911.767876pt;}
.y18c{bottom:912.856936pt;}
.y1c4{bottom:913.095468pt;}
.y1fb{bottom:913.098139pt;}
.y21d{bottom:919.170930pt;}
.y18d{bottom:919.653033pt;}
.y146{bottom:921.172400pt;}
.y254{bottom:922.692267pt;}
.yc3{bottom:927.037334pt;}
.y104{bottom:927.042676pt;}
.y1c3{bottom:928.370267pt;}
.y1fa{bottom:928.372938pt;}
.y18b{bottom:932.048400pt;}
.y21b{bottom:934.847733pt;}
.y145{bottom:936.527334pt;}
.y21c{bottom:937.325197pt;}
.y253{bottom:937.967067pt;}
.yc2{bottom:942.392267pt;}
.y103{bottom:942.397610pt;}
.y1c2{bottom:943.725201pt;}
.y1f9{bottom:943.727872pt;}
.y18a{bottom:950.202934pt;}
.y21a{bottom:951.082801pt;}
.y144{bottom:951.802133pt;}
.y252{bottom:953.322000pt;}
.yc1{bottom:957.747201pt;}
.y102{bottom:957.752543pt;}
.y1c1{bottom:959.080134pt;}
.y1f8{bottom:959.082805pt;}
.y189{bottom:965.477734pt;}
.y219{bottom:966.357600pt;}
.y143{bottom:967.156533pt;}
.y251{bottom:968.676934pt;}
.yc0{bottom:973.022000pt;}
.y101{bottom:973.027343pt;}
.y1c0{bottom:974.354934pt;}
.y1f7{bottom:974.357605pt;}
.y188{bottom:980.753869pt;}
.y218{bottom:981.712534pt;}
.y142{bottom:983.392000pt;}
.y250{bottom:983.951733pt;}
.y5a{bottom:988.376934pt;}
.y100{bottom:988.382276pt;}
.y1bf{bottom:989.709867pt;}
.y1f6{bottom:989.712538pt;}
.y217{bottom:997.067467pt;}
.y187{bottom:997.147868pt;}
.y24f{bottom:999.306667pt;}
.y141{bottom:1000.026667pt;}
.y59{bottom:1003.731867pt;}
.yff{bottom:1003.737209pt;}
.y1be{bottom:1005.064800pt;}
.y1f5{bottom:1005.067471pt;}
.y55{bottom:1012.166134pt;}
.y216{bottom:1012.342267pt;}
.y186{bottom:1013.543732pt;}
.y24e{bottom:1013.861867pt;}
.y140{bottom:1015.300532pt;}
.y58{bottom:1019.006667pt;}
.yfe{bottom:1019.012009pt;}
.y80{bottom:1019.012805pt;}
.y1bd{bottom:1020.339600pt;}
.y1f4{bottom:1020.342271pt;}
.y215{bottom:1027.697200pt;}
.y24d{bottom:1027.701606pt;}
.y54{bottom:1031.439600pt;}
.y13f{bottom:1031.695867pt;}
.y185{bottom:1031.697999pt;}
.y57{bottom:1034.361600pt;}
.yfd{bottom:1034.366942pt;}
.y7f{bottom:1034.367738pt;}
.y1bc{bottom:1035.694533pt;}
.y1f3{bottom:1035.697204pt;}
.y53{bottom:1055.032135pt;}
.y52{bottom:1075.904667pt;}
.y51{bottom:1100.978400pt;}
.h14{height:14.074667pt;}
.hd{height:14.314667pt;}
.h12{height:26.870667pt;}
.hb{height:28.150667pt;}
.h3{height:29.569192pt;}
.h20{height:31.250845pt;}
.h15{height:33.833223pt;}
.h2f{height:35.245421pt;}
.he{height:35.300500pt;}
.h13{height:36.055750pt;}
.h4{height:36.273810pt;}
.h5{height:37.395680pt;}
.hc{height:37.619816pt;}
.h22{height:38.383124pt;}
.h6{height:40.018656pt;}
.h10{height:41.186667pt;}
.hf{height:41.346667pt;}
.h3e{height:41.582212pt;}
.h1e{height:42.999079pt;}
.h9{height:43.105333pt;}
.h16{height:43.665333pt;}
.h2{height:44.554282pt;}
.h47{height:44.554813pt;}
.h1d{height:44.554815pt;}
.h46{height:44.554816pt;}
.h1b{height:44.556418pt;}
.h18{height:44.556419pt;}
.h19{height:44.556952pt;}
.h1a{height:44.558020pt;}
.h2b{height:47.268162pt;}
.h3a{height:48.822046pt;}
.h7{height:48.822582pt;}
.h2d{height:50.988351pt;}
.h1{height:53.358208pt;}
.h1c{height:53.358740pt;}
.h11{height:54.084476pt;}
.h21{height:55.904962pt;}
.h27{height:55.905495pt;}
.ha{height:56.430008pt;}
.h25{height:56.710015pt;}
.h8{height:57.764058pt;}
.h3d{height:59.352286pt;}
.h48{height:59.354952pt;}
.h40{height:61.591751pt;}
.h44{height:62.694936pt;}
.h3f{height:62.695471pt;}
.h30{height:63.226491pt;}
.h29{height:65.038236pt;}
.h31{height:65.145957pt;}
.h2c{height:68.546282pt;}
.h3b{height:68.766616pt;}
.h45{height:68.775142pt;}
.h3c{height:68.775144pt;}
.h4c{height:71.823125pt;}
.h43{height:72.468020pt;}
.h41{height:75.491738pt;}
.h24{height:77.193970pt;}
.h2a{height:77.194503pt;}
.h37{height:77.662208pt;}
.h33{height:77.662741pt;}
.h1f{height:79.752903pt;}
.h26{height:79.753436pt;}
.h42{height:85.088209pt;}
.h49{height:93.499884pt;}
.h4b{height:93.505227pt;}
.h4a{height:93.815077pt;}
.h17{height:93.820419pt;}
.h38{height:93.972162pt;}
.h34{height:93.972695pt;}
.h28{height:94.787570pt;}
.h23{height:94.788636pt;}
.h35{height:94.789135pt;}
.h39{height:94.789668pt;}
.h32{height:97.024323pt;}
.h36{height:98.451095pt;}
.h2e{height:109.931024pt;}
.h0{height:1122.666667pt;}
.wa{width:4.398533pt;}
.w3{width:4.558533pt;}
.wc{width:5.198267pt;}
.w4{width:5.278133pt;}
.wb{width:5.678000pt;}
.w9{width:5.678133pt;}
.w2{width:5.838000pt;}
.wd{width:6.717733pt;}
.w5{width:6.877733pt;}
.w7{width:7.437467pt;}
.w6{width:7.517467pt;}
.w8{width:9.596800pt;}
.we{width:10.076533pt;}
.wf{width:14.234667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x25{left:1.758533pt;}
.x1a{left:3.918000pt;}
.x27{left:8.717333pt;}
.x1{left:95.967867pt;}
.x58{left:101.006267pt;}
.x79{left:124.356265pt;}
.x33{left:126.357733pt;}
.x73{left:127.955866pt;}
.x7a{left:130.193998pt;}
.x34{left:135.634667pt;}
.x4e{left:138.193867pt;}
.x8{left:158.349470pt;}
.x68{left:159.386933pt;}
.x2{left:164.904933pt;}
.x4f{left:177.940533pt;}
.x35{left:180.899600pt;}
.x3e{left:181.939200pt;}
.x36{left:183.538667pt;}
.x41{left:184.578267pt;}
.x50{left:186.097733pt;}
.x9{left:188.496933pt;}
.x4d{left:197.214133pt;}
.x52{left:198.893600pt;}
.x4c{left:200.173067pt;}
.x51{left:201.372667pt;}
.x3f{left:202.652267pt;}
.x4{left:206.011200pt;}
.x40{left:209.849867pt;}
.x7{left:211.529334pt;}
.x48{left:216.487600pt;}
.x67{left:219.286799pt;}
.x2e{left:221.364931pt;}
.x53{left:223.125467pt;}
.x49{left:225.764533pt;}
.x54{left:232.722267pt;}
.x6f{left:238.880800pt;}
.x59{left:243.438667pt;}
.x74{left:245.837867pt;}
.x75{left:247.357433pt;}
.x37{left:252.315733pt;}
.x42{left:253.355333pt;}
.x38{left:261.912533pt;}
.x43{left:263.352000pt;}
.x70{left:266.871467pt;}
.x55{left:273.828533pt;}
.x6{left:274.948401pt;}
.x71{left:280.226499pt;}
.x5a{left:284.544933pt;}
.x39{left:286.224400pt;}
.x44{left:287.663867pt;}
.x3c{left:288.863467pt;}
.x47{left:290.302933pt;}
.x4b{left:292.622133pt;}
.xd{left:293.821867pt;}
.x5{left:295.421200pt;}
.x56{left:297.900400pt;}
.x76{left:299.499826pt;}
.x5b{left:301.419333pt;}
.x5d{left:304.058400pt;}
.x4a{left:305.977733pt;}
.x45{left:308.376933pt;}
.x3a{left:310.456267pt;}
.x46{left:315.574533pt;}
.x3b{left:317.733867pt;}
.x57{left:322.132267pt;}
.x5e{left:323.813067pt;}
.x5c{left:329.329867pt;}
.x3d{left:339.246667pt;}
.x72{left:350.682759pt;}
.x78{left:372.114665pt;}
.x77{left:381.792133pt;}
.xc{left:393.868400pt;}
.x3{left:396.668667pt;}
.x17{left:405.384000pt;}
.xa{left:410.584535pt;}
.x18{left:411.862667pt;}
.x1b{left:412.822000pt;}
.x19{left:416.820667pt;}
.x1c{left:421.219200pt;}
.x11{left:442.492000pt;}
.x12{left:446.490667pt;}
.x6b{left:448.407460pt;}
.x69{left:453.047195pt;}
.x60{left:462.964133pt;}
.x30{left:469.684266pt;}
.x15{left:484.558667pt;}
.x64{left:486.559338pt;}
.x16{left:488.477333pt;}
.x6d{left:497.513733pt;}
.x2f{left:504.872265pt;}
.x6a{left:508.148394pt;}
.x7b{left:512.067997pt;}
.x61{left:515.987600pt;}
.x13{left:521.665333pt;}
.x14{left:525.584000pt;}
.x24{left:540.220000pt;}
.x10{left:542.618667pt;}
.x65{left:544.058085pt;}
.x62{left:547.337067pt;}
.x6c{left:548.452924pt;}
.x26{left:549.736267pt;}
.x2c{left:551.655600pt;}
.x32{left:553.576001pt;}
.x2d{left:559.413067pt;}
.x5f{left:570.529152pt;}
.x2a{left:571.888933pt;}
.x2b{left:579.646267pt;}
.x1e{left:583.885333pt;}
.x1f{left:587.804000pt;}
.x63{left:604.678000pt;}
.x31{left:612.279336pt;}
.x22{left:625.070667pt;}
.x23{left:628.989333pt;}
.xf{left:636.907200pt;}
.x66{left:638.906533pt;}
.x6e{left:644.184933pt;}
.x28{left:645.864133pt;}
.x29{left:653.621600pt;}
.x20{left:661.458667pt;}
.x21{left:665.297333pt;}
.xb{left:679.399600pt;}
.x1d{left:682.012000pt;}
.xe{left:696.887067pt;}
}




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