
    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_3e11eeccccba9adf487e3b89.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.272949;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_1cb9a95cfd49795ea1cbc855.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_c267fe4944ea7eb5f2f939fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.821777;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_a5063711cfd921e77b181740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.291992;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_b16f7352832a4dcac7d27d65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.274414;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_481a5dbe788f50cae3d41bb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6bb42712967f31d7d504df09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.290039;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;}
.m3{transform:matrix(0.000000,-0.249708,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249708,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249708,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-57.594000px;}
.v6{vertical-align:-54.714000px;}
.v3{vertical-align:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v9{vertical-align:31.680000px;}
.va{vertical-align:37.440000px;}
.v4{vertical-align:57.594000px;}
.v5{vertical-align:59.034000px;}
.v7{vertical-align:69.114000px;}
.ls85{letter-spacing:-2.934000px;}
.ls6b{letter-spacing:-1.614000px;}
.ls6a{letter-spacing:-1.470000px;}
.ls51{letter-spacing:-1.320000px;}
.ls62{letter-spacing:-1.266000px;}
.ls75{letter-spacing:-0.720000px;}
.ls68{letter-spacing:-0.690000px;}
.ls50{letter-spacing:-0.636000px;}
.ls47{letter-spacing:-0.624000px;}
.ls7f{letter-spacing:-0.606000px;}
.ls4f{letter-spacing:-0.594000px;}
.ls15{letter-spacing:-0.582000px;}
.ls3{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.570000px;}
.ls35{letter-spacing:-0.564000px;}
.ls2a{letter-spacing:-0.558000px;}
.ls36{letter-spacing:-0.540000px;}
.ls7e{letter-spacing:-0.534000px;}
.ls13{letter-spacing:-0.522000px;}
.ls48{letter-spacing:-0.516000px;}
.ls46{letter-spacing:-0.510000px;}
.ls2f{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.468000px;}
.ls2{letter-spacing:-0.462000px;}
.ls4{letter-spacing:-0.456000px;}
.ls1d{letter-spacing:-0.450000px;}
.ls14{letter-spacing:-0.444000px;}
.ls8{letter-spacing:-0.438000px;}
.lse{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.426000px;}
.lsd{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.408000px;}
.ls5{letter-spacing:-0.402000px;}
.lsb{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.390000px;}
.ls18{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.378000px;}
.ls20{letter-spacing:-0.372000px;}
.ls27{letter-spacing:-0.366000px;}
.ls2e{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.354000px;}
.ls78{letter-spacing:-0.348000px;}
.ls7d{letter-spacing:-0.342000px;}
.ls17{letter-spacing:-0.336000px;}
.ls7c{letter-spacing:-0.330000px;}
.ls7a{letter-spacing:-0.324000px;}
.ls64{letter-spacing:-0.318000px;}
.ls94{letter-spacing:-0.288000px;}
.ls84{letter-spacing:-0.282000px;}
.ls37{letter-spacing:-0.270000px;}
.ls74{letter-spacing:-0.258000px;}
.ls76{letter-spacing:-0.246000px;}
.ls63{letter-spacing:-0.228000px;}
.ls79{letter-spacing:-0.222000px;}
.ls26{letter-spacing:-0.216000px;}
.ls4a{letter-spacing:-0.192000px;}
.ls4b{letter-spacing:-0.180000px;}
.ls69{letter-spacing:-0.174000px;}
.ls89{letter-spacing:-0.162000px;}
.ls73{letter-spacing:-0.156000px;}
.ls87{letter-spacing:-0.150000px;}
.ls30{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.138000px;}
.ls72{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.114000px;}
.ls2c{letter-spacing:-0.108000px;}
.ls6c{letter-spacing:-0.102000px;}
.ls65{letter-spacing:-0.096000px;}
.ls45{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.084000px;}
.ls1a{letter-spacing:-0.078000px;}
.ls38{letter-spacing:-0.072000px;}
.ls67{letter-spacing:-0.060000px;}
.ls86{letter-spacing:-0.054000px;}
.ls49{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:-0.042000px;}
.ls66{letter-spacing:-0.036000px;}
.ls31{letter-spacing:-0.030000px;}
.ls32{letter-spacing:-0.024000px;}
.ls1f{letter-spacing:-0.018000px;}
.ls2b{letter-spacing:-0.012000px;}
.ls25{letter-spacing:-0.006000px;}
.ls0{letter-spacing:0.000000px;}
.ls70{letter-spacing:0.006000px;}
.ls82{letter-spacing:0.012000px;}
.ls5b{letter-spacing:0.018000px;}
.ls58{letter-spacing:0.024000px;}
.ls60{letter-spacing:0.030000px;}
.ls5d{letter-spacing:0.036000px;}
.ls71{letter-spacing:0.042000px;}
.ls6f{letter-spacing:0.054000px;}
.ls4c{letter-spacing:0.060000px;}
.ls88{letter-spacing:0.072000px;}
.ls5e{letter-spacing:0.078000px;}
.ls57{letter-spacing:0.084000px;}
.ls7b{letter-spacing:0.090000px;}
.ls3f{letter-spacing:0.102000px;}
.ls54{letter-spacing:0.114000px;}
.ls21{letter-spacing:0.120000px;}
.ls55{letter-spacing:0.132000px;}
.ls95{letter-spacing:0.174000px;}
.ls56{letter-spacing:0.192000px;}
.ls6d{letter-spacing:0.204000px;}
.ls3a{letter-spacing:0.210000px;}
.ls6e{letter-spacing:0.228000px;}
.ls61{letter-spacing:0.258000px;}
.ls81{letter-spacing:0.294000px;}
.ls40{letter-spacing:0.336000px;}
.ls2d{letter-spacing:0.384000px;}
.ls39{letter-spacing:0.390000px;}
.ls52{letter-spacing:0.414000px;}
.ls34{letter-spacing:0.420000px;}
.ls1b{letter-spacing:0.426000px;}
.ls10{letter-spacing:0.427680px;}
.ls77{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.441840px;}
.ls5f{letter-spacing:0.462000px;}
.ls28{letter-spacing:0.510000px;}
.ls5a{letter-spacing:0.522000px;}
.ls41{letter-spacing:0.564000px;}
.ls8a{letter-spacing:0.570000px;}
.ls22{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.594000px;}
.ls33{letter-spacing:0.618000px;}
.ls24{letter-spacing:0.624000px;}
.ls5c{letter-spacing:0.630000px;}
.ls59{letter-spacing:0.636000px;}
.ls83{letter-spacing:0.636614px;}
.ls4d{letter-spacing:0.642000px;}
.ls3d{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.654000px;}
.ls3e{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.672000px;}
.ls80{letter-spacing:0.678000px;}
.ls53{letter-spacing:0.690000px;}
.ls3c{letter-spacing:0.696000px;}
.ls29{letter-spacing:0.732000px;}
.ls3b{letter-spacing:1.338000px;}
.ls8b{letter-spacing:60.361962px;}
.ls8c{letter-spacing:74.761962px;}
.ls8d{letter-spacing:76.207962px;}
.ls92{letter-spacing:136.399842px;}
.ls8f{letter-spacing:137.833842px;}
.ls8e{letter-spacing:149.359842px;}
.ls93{letter-spacing:152.233842px;}
.ls90{letter-spacing:163.753842px;}
.ls91{letter-spacing:165.193842px;}
.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;}
}
.ws51{word-spacing:-15.640884px;}
.ws56{word-spacing:-15.592884px;}
.ws6b{word-spacing:-15.586884px;}
.ws54{word-spacing:-15.562884px;}
.ws53{word-spacing:-15.544884px;}
.ws5e{word-spacing:-15.478884px;}
.ws116{word-spacing:-15.400884px;}
.ws11a{word-spacing:-15.058884px;}
.ws40{word-spacing:-14.926884px;}
.ws11f{word-spacing:-14.836884px;}
.ws110{word-spacing:-14.824884px;}
.ws117{word-spacing:-14.746884px;}
.ws55{word-spacing:-14.602884px;}
.ws2{word-spacing:-14.530884px;}
.ws0{word-spacing:-14.506884px;}
.ws118{word-spacing:-14.500884px;}
.ws5f{word-spacing:-14.410884px;}
.ws8f{word-spacing:-14.232480px;}
.ws8b{word-spacing:-14.004480px;}
.ws126{word-spacing:-13.712244px;}
.wsa5{word-spacing:-13.706244px;}
.wsb0{word-spacing:-13.652244px;}
.ws13d{word-spacing:-13.592244px;}
.ws8e{word-spacing:-13.548480px;}
.ws121{word-spacing:-13.310244px;}
.wsd5{word-spacing:-13.274244px;}
.wsd4{word-spacing:-13.244244px;}
.wsd3{word-spacing:-13.148244px;}
.wsa6{word-spacing:-13.130244px;}
.wsa8{word-spacing:-13.100244px;}
.ws13e{word-spacing:-13.088244px;}
.ws178{word-spacing:-13.076244px;}
.ws125{word-spacing:-13.046244px;}
.wsae{word-spacing:-13.034244px;}
.wsb3{word-spacing:-13.016244px;}
.ws13c{word-spacing:-12.986244px;}
.ws124{word-spacing:-12.944244px;}
.wsd8{word-spacing:-12.938244px;}
.wsb5{word-spacing:-12.914244px;}
.wsb1{word-spacing:-12.902244px;}
.wsf7{word-spacing:-12.878244px;}
.wsaf{word-spacing:-12.842244px;}
.ws12b{word-spacing:-12.836244px;}
.wsab{word-spacing:-12.788244px;}
.wsf5{word-spacing:-12.770244px;}
.ws122{word-spacing:-12.734244px;}
.wsac{word-spacing:-12.698244px;}
.wsb4{word-spacing:-12.614244px;}
.ws129{word-spacing:-12.446244px;}
.wsf8{word-spacing:-12.440244px;}
.wsad{word-spacing:-12.326244px;}
.wsa9{word-spacing:-11.750244px;}
.ws128{word-spacing:-11.696244px;}
.ws1{word-spacing:-11.628000px;}
.ws86{word-spacing:-11.434164px;}
.wsb2{word-spacing:-11.402244px;}
.ws9b{word-spacing:-11.386164px;}
.ws82{word-spacing:-10.948164px;}
.ws83{word-spacing:-10.270164px;}
.ws87{word-spacing:-10.228164px;}
.ws84{word-spacing:-10.174164px;}
.ws130{word-spacing:-2.994000px;}
.wsb8{word-spacing:-2.022000px;}
.ws95{word-spacing:-1.998000px;}
.ws11c{word-spacing:-1.661742px;}
.wsfb{word-spacing:-1.518000px;}
.wse0{word-spacing:-1.506000px;}
.ws103{word-spacing:-1.458000px;}
.wsde{word-spacing:-1.440000px;}
.wscd{word-spacing:-1.416000px;}
.wsb7{word-spacing:-1.410000px;}
.wsc6{word-spacing:-1.404000px;}
.wsc2{word-spacing:-1.392000px;}
.wsb9{word-spacing:-1.386000px;}
.wsdf{word-spacing:-1.380000px;}
.ws11b{word-spacing:-1.362000px;}
.wsea{word-spacing:-1.338000px;}
.wsf9{word-spacing:-1.332000px;}
.ws102{word-spacing:-1.326000px;}
.wsfc{word-spacing:-1.320000px;}
.wseb{word-spacing:-1.314000px;}
.wse1{word-spacing:-1.308000px;}
.ws9d{word-spacing:-1.302000px;}
.wsc1{word-spacing:-1.296000px;}
.wsbc{word-spacing:-1.290000px;}
.wsbf{word-spacing:-1.284000px;}
.wsce{word-spacing:-1.272000px;}
.wsf1{word-spacing:-1.260000px;}
.wse3{word-spacing:-1.254000px;}
.ws104{word-spacing:-1.248000px;}
.ws33{word-spacing:-1.242000px;}
.ws100{word-spacing:-1.236000px;}
.wsc9{word-spacing:-1.224000px;}
.wsba{word-spacing:-1.218000px;}
.wsd2{word-spacing:-1.206000px;}
.wsff{word-spacing:-1.200000px;}
.wsca{word-spacing:-1.176000px;}
.wsee{word-spacing:-1.164000px;}
.wsbe{word-spacing:-1.158000px;}
.wsbd{word-spacing:-1.152000px;}
.wsaa{word-spacing:-1.146234px;}
.wse2{word-spacing:-1.134000px;}
.wse8{word-spacing:-1.098000px;}
.wsed{word-spacing:-1.068000px;}
.wsd1{word-spacing:-1.062000px;}
.ws94{word-spacing:-1.044000px;}
.wsf0{word-spacing:-1.038000px;}
.ws105{word-spacing:-1.020000px;}
.ws109{word-spacing:-1.002000px;}
.ws6d{word-spacing:-0.996000px;}
.wsb6{word-spacing:-0.984000px;}
.ws69{word-spacing:-0.954000px;}
.ws52{word-spacing:-0.941256px;}
.wsfd{word-spacing:-0.894000px;}
.wscc{word-spacing:-0.858000px;}
.ws9a{word-spacing:-0.810000px;}
.wscb{word-spacing:-0.762000px;}
.wsf3{word-spacing:-0.742326px;}
.ws9c{word-spacing:-0.720000px;}
.ws3b{word-spacing:-0.708000px;}
.ws10d{word-spacing:-0.702000px;}
.ws13b{word-spacing:-0.696000px;}
.wsc8{word-spacing:-0.690000px;}
.wse4{word-spacing:-0.678000px;}
.ws99{word-spacing:-0.660000px;}
.ws115{word-spacing:-0.648000px;}
.ws6a{word-spacing:-0.636000px;}
.ws139{word-spacing:-0.624000px;}
.ws119{word-spacing:-0.612000px;}
.wsa0{word-spacing:-0.594000px;}
.ws98{word-spacing:-0.588000px;}
.wse9{word-spacing:-0.576000px;}
.wsdd{word-spacing:-0.570000px;}
.wsf4{word-spacing:-0.569094px;}
.ws57{word-spacing:-0.564000px;}
.ws61{word-spacing:-0.558000px;}
.ws4e{word-spacing:-0.552000px;}
.ws131{word-spacing:-0.546000px;}
.ws113{word-spacing:-0.540000px;}
.ws11d{word-spacing:-0.528000px;}
.wsc5{word-spacing:-0.522000px;}
.wscf{word-spacing:-0.516000px;}
.ws11e{word-spacing:-0.510000px;}
.wsfe{word-spacing:-0.498000px;}
.wsbb{word-spacing:-0.474000px;}
.ws114{word-spacing:-0.468000px;}
.wsdb{word-spacing:-0.462000px;}
.ws4d{word-spacing:-0.456000px;}
.ws15{word-spacing:-0.450000px;}
.ws13{word-spacing:-0.444000px;}
.ws10c{word-spacing:-0.438000px;}
.wsfa{word-spacing:-0.432000px;}
.wse6{word-spacing:-0.426000px;}
.ws13f{word-spacing:-0.384000px;}
.wsd0{word-spacing:-0.378000px;}
.ws58{word-spacing:-0.354000px;}
.ws38{word-spacing:-0.342000px;}
.wsa2{word-spacing:-0.336000px;}
.ws49{word-spacing:-0.324000px;}
.ws14{word-spacing:-0.318000px;}
.ws120{word-spacing:-0.312000px;}
.ws5b{word-spacing:-0.306000px;}
.ws12d{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.294000px;}
.ws101{word-spacing:-0.288000px;}
.wse5{word-spacing:-0.282000px;}
.ws90{word-spacing:-0.276000px;}
.ws112{word-spacing:-0.270000px;}
.wsdc{word-spacing:-0.264000px;}
.ws30{word-spacing:-0.258000px;}
.ws75{word-spacing:-0.252000px;}
.ws2d{word-spacing:-0.246000px;}
.ws46{word-spacing:-0.240000px;}
.ws31{word-spacing:-0.234000px;}
.wse7{word-spacing:-0.228000px;}
.ws93{word-spacing:-0.216000px;}
.ws12c{word-spacing:-0.210000px;}
.ws72{word-spacing:-0.204000px;}
.ws50{word-spacing:-0.198000px;}
.ws2f{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.186000px;}
.ws1c{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.174000px;}
.ws12{word-spacing:-0.168000px;}
.ws20{word-spacing:-0.162000px;}
.ws16{word-spacing:-0.156000px;}
.ws3{word-spacing:-0.150076px;}
.ws36{word-spacing:-0.150000px;}
.ws5{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.138000px;}
.ws1a{word-spacing:-0.132000px;}
.ws2c{word-spacing:-0.126000px;}
.ws45{word-spacing:-0.120000px;}
.ws3a{word-spacing:-0.114000px;}
.wsa{word-spacing:-0.108000px;}
.ws67{word-spacing:-0.102000px;}
.ws97{word-spacing:-0.096000px;}
.ws108{word-spacing:-0.090000px;}
.ws27{word-spacing:-0.084000px;}
.ws4f{word-spacing:-0.078000px;}
.ws17{word-spacing:-0.072000px;}
.ws37{word-spacing:-0.066000px;}
.ws41{word-spacing:-0.060000px;}
.ws2e{word-spacing:-0.054000px;}
.ws28{word-spacing:-0.048000px;}
.ws2a{word-spacing:-0.042000px;}
.ws1f{word-spacing:-0.036000px;}
.ws24{word-spacing:-0.030000px;}
.ws5a{word-spacing:-0.024000px;}
.ws10a{word-spacing:-0.018000px;}
.ws10f{word-spacing:-0.012000px;}
.ws6c{word-spacing:-0.006000px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.006000px;}
.ws29{word-spacing:0.012000px;}
.wsc3{word-spacing:0.018000px;}
.ws21{word-spacing:0.024000px;}
.ws47{word-spacing:0.030000px;}
.ws127{word-spacing:0.035821px;}
.wsa1{word-spacing:0.036000px;}
.ws7f{word-spacing:0.042000px;}
.ws1e{word-spacing:0.048000px;}
.ws43{word-spacing:0.054000px;}
.ws7e{word-spacing:0.060000px;}
.ws68{word-spacing:0.066000px;}
.ws7d{word-spacing:0.072000px;}
.ws3c{word-spacing:0.078000px;}
.ws26{word-spacing:0.084000px;}
.ws18{word-spacing:0.090000px;}
.ws23{word-spacing:0.096000px;}
.ws1d{word-spacing:0.102000px;}
.ws1b{word-spacing:0.108000px;}
.ws60{word-spacing:0.114000px;}
.ws48{word-spacing:0.120000px;}
.ws2b{word-spacing:0.126000px;}
.ws5c{word-spacing:0.132000px;}
.ws9f{word-spacing:0.138000px;}
.ws42{word-spacing:0.144000px;}
.ws5d{word-spacing:0.150000px;}
.ws39{word-spacing:0.156000px;}
.ws44{word-spacing:0.168000px;}
.wsc4{word-spacing:0.174000px;}
.ws3e{word-spacing:0.180000px;}
.ws73{word-spacing:0.186000px;}
.ws74{word-spacing:0.192000px;}
.ws59{word-spacing:0.198000px;}
.ws10e{word-spacing:0.204000px;}
.ws22{word-spacing:0.210000px;}
.ws71{word-spacing:0.216000px;}
.ws111{word-spacing:0.222000px;}
.ws107{word-spacing:0.228000px;}
.ws3f{word-spacing:0.252000px;}
.ws64{word-spacing:0.258000px;}
.ws106{word-spacing:0.264000px;}
.ws10b{word-spacing:0.294000px;}
.ws25{word-spacing:0.312000px;}
.wsa3{word-spacing:0.330000px;}
.ws141{word-spacing:0.348000px;}
.ws65{word-spacing:0.366000px;}
.ws79{word-spacing:0.390000px;}
.ws70{word-spacing:0.396000px;}
.ws62{word-spacing:0.450000px;}
.ws77{word-spacing:0.456000px;}
.wsd6{word-spacing:0.461586px;}
.ws78{word-spacing:0.474000px;}
.ws4a{word-spacing:0.510000px;}
.wsef{word-spacing:0.516000px;}
.ws4c{word-spacing:0.528000px;}
.ws4b{word-spacing:0.540000px;}
.ws6e{word-spacing:0.546000px;}
.ws80{word-spacing:0.558000px;}
.ws35{word-spacing:0.570000px;}
.ws8a{word-spacing:0.592866px;}
.ws8d{word-spacing:0.598866px;}
.ws7b{word-spacing:0.600000px;}
.wsc0{word-spacing:0.636000px;}
.ws63{word-spacing:0.648000px;}
.ws34{word-spacing:0.654000px;}
.wsec{word-spacing:0.660000px;}
.ws7a{word-spacing:0.666000px;}
.ws92{word-spacing:0.672000px;}
.ws9e{word-spacing:0.684000px;}
.wsc7{word-spacing:0.690000px;}
.ws81{word-spacing:0.726000px;}
.ws76{word-spacing:0.732000px;}
.wsf6{word-spacing:0.750906px;}
.ws7c{word-spacing:0.810000px;}
.ws66{word-spacing:0.840000px;}
.ws6{word-spacing:0.852000px;}
.ws9{word-spacing:0.888000px;}
.ws12a{word-spacing:0.965829px;}
.ws6f{word-spacing:0.996000px;}
.ws10{word-spacing:1.002000px;}
.ws123{word-spacing:1.017962px;}
.wsf{word-spacing:1.134000px;}
.ws91{word-spacing:1.146000px;}
.wsd9{word-spacing:1.153674px;}
.ws8{word-spacing:1.182000px;}
.wsc{word-spacing:1.200000px;}
.wsda{word-spacing:1.326906px;}
.wse{word-spacing:1.332000px;}
.ws96{word-spacing:1.362000px;}
.ws13a{word-spacing:1.452000px;}
.wsd{word-spacing:1.530000px;}
.ws7{word-spacing:1.710000px;}
.wsa4{word-spacing:2.052000px;}
.ws137{word-spacing:3.054000px;}
.ws138{word-spacing:3.222000px;}
.ws135{word-spacing:5.400000px;}
.ws140{word-spacing:5.598000px;}
.ws12e{word-spacing:5.814000px;}
.ws136{word-spacing:8.538000px;}
.ws132{word-spacing:12.534000px;}
.ws12f{word-spacing:12.750000px;}
.ws133{word-spacing:13.056000px;}
.ws134{word-spacing:14.472000px;}
.ws17a{word-spacing:29.147598px;}
.ws164{word-spacing:30.587598px;}
.ws15a{word-spacing:30.589440px;}
.ws14e{word-spacing:31.284492px;}
.ws14b{word-spacing:31.290492px;}
.ws147{word-spacing:31.296492px;}
.ws157{word-spacing:32.027598px;}
.ws142{word-spacing:34.204824px;}
.ws146{word-spacing:34.732542px;}
.ws14d{word-spacing:34.738542px;}
.ws151{word-spacing:34.744542px;}
.ws149{word-spacing:36.057354px;}
.ws14f{word-spacing:36.063354px;}
.ws145{word-spacing:36.069354px;}
.ws150{word-spacing:36.178542px;}
.ws14a{word-spacing:36.184542px;}
.ws14c{word-spacing:36.300270px;}
.ws144{word-spacing:36.306270px;}
.ws148{word-spacing:36.312270px;}
.ws16c{word-spacing:44.237598px;}
.ws171{word-spacing:44.981598px;}
.ws179{word-spacing:45.689598px;}
.ws161{word-spacing:46.433598px;}
.ws16f{word-spacing:46.435440px;}
.ws16e{word-spacing:47.573598px;}
.ws15f{word-spacing:47.635992px;}
.ws173{word-spacing:47.861598px;}
.ws159{word-spacing:47.867598px;}
.ws163{word-spacing:47.917992px;}
.ws155{word-spacing:47.923992px;}
.ws153{word-spacing:54.559980px;}
.ws88{word-spacing:57.080022px;}
.ws16a{word-spacing:60.139992px;}
.ws176{word-spacing:60.764028px;}
.ws16b{word-spacing:61.529598px;}
.ws169{word-spacing:61.585992px;}
.ws174{word-spacing:62.273598px;}
.ws168{word-spacing:68.965980px;}
.ws15e{word-spacing:75.170028px;}
.ws15c{word-spacing:79.543440px;}
.ws15b{word-spacing:82.429440px;}
.ws158{word-spacing:83.877282px;}
.ws167{word-spacing:95.369346px;}
.ws156{word-spacing:96.823440px;}
.ws162{word-spacing:98.263440px;}
.ws177{word-spacing:104.083992px;}
.ws172{word-spacing:106.096536px;}
.ws16d{word-spacing:106.219992px;}
.ws166{word-spacing:106.901598px;}
.ws165{word-spacing:111.229440px;}
.ws154{word-spacing:111.235440px;}
.ws175{word-spacing:115.603992px;}
.ws160{word-spacing:125.629440px;}
.ws15d{word-spacing:126.455112px;}
.ws170{word-spacing:127.069440px;}
.ws89{word-spacing:199.882080px;}
.ws85{word-spacing:201.856854px;}
.ws8c{word-spacing:225.808080px;}
.wsd7{word-spacing:226.497090px;}
.ws152{word-spacing:263.986818px;}
.ws143{word-spacing:743.387124px;}
.wsa7{word-spacing:940.017960px;}
.wsf2{word-spacing:993.291960px;}
._8{margin-left:-4.005631px;}
._3{margin-left:-2.915687px;}
._1{margin-left:-1.655386px;}
._0{width:1.589417px;}
._2{width:2.717846px;}
._4{width:3.777126px;}
._d{width:9.336902px;}
._c{width:10.492789px;}
._6{width:12.702547px;}
._16{width:14.476753px;}
._11{width:15.605452px;}
._7{width:16.747907px;}
._5{width:17.828754px;}
._1b{width:58.991591px;}
._e{width:74.834882px;}
._1a{width:76.264236px;}
._9{width:83.362273px;}
._1d{width:87.847842px;}
._24{width:90.723684px;}
._21{width:92.157684px;}
._22{width:100.799526px;}
._23{width:102.243684px;}
._25{width:116.649684px;}
._2c{width:117.675899px;}
._20{width:119.537526px;}
._1c{width:120.955842px;}
._27{width:128.074236px;}
._1e{width:129.603684px;}
._1f{width:131.035842px;}
._26{width:132.264208px;}
._2b{width:133.487534px;}
._28{width:141.028236px;}
._2a{width:142.093098px;}
._29{width:145.354236px;}
._f{width:151.370842px;}
._a{width:186.557775px;}
._b{width:211.684560px;}
._14{width:579.559303px;}
._19{width:757.441368px;}
._17{width:771.847368px;}
._18{width:773.287368px;}
._10{width:871.891785px;}
._13{width:922.251651px;}
._15{width:923.799521px;}
._12{width:1865.108009px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:47.514000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:54.714000px;}
.fs7{font-size:57.594000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.234000px;}
.y0{bottom:0.000000px;}
.y20a{bottom:0.360000px;}
.y11e{bottom:3.958500px;}
.y11a{bottom:3.960000px;}
.y214{bottom:3.961500px;}
.y117{bottom:115.560000px;}
.y1eb{bottom:115.918500px;}
.y1{bottom:115.920000px;}
.y48{bottom:135.358500px;}
.y90{bottom:135.360000px;}
.y1e9{bottom:136.458000px;}
.y1a9{bottom:136.464000px;}
.y20d{bottom:137.518500px;}
.y190{bottom:139.371000px;}
.yb0{bottom:140.760000px;}
.y1c1{bottom:144.381000px;}
.y6d{bottom:146.215500px;}
.yae{bottom:147.288000px;}
.y208{bottom:147.598500px;}
.y209{bottom:147.958500px;}
.y21{bottom:150.153000px;}
.y59{bottom:150.526500px;}
.y80{bottom:153.718500px;}
.y8f{bottom:153.720000px;}
.y89{bottom:154.132500px;}
.y47{bottom:159.118500px;}
.y1e8{bottom:159.496500px;}
.y1a8{bottom:159.502500px;}
.y16a{bottom:160.560000px;}
.y18f{bottom:162.409500px;}
.yd9{bottom:165.241500px;}
.yd5{bottom:165.978000px;}
.y20c{bottom:167.400000px;}
.y6c{bottom:169.254000px;}
.yad{bottom:170.686500px;}
.y8e{bottom:172.080000px;}
.y20{bottom:173.191500px;}
.y58{bottom:173.565000px;}
.y7f{bottom:177.478500px;}
.y88{bottom:177.531000px;}
.y169{bottom:178.198500px;}
.yd8{bottom:180.000000px;}
.y20b{bottom:180.720000px;}
.yd4{bottom:180.736500px;}
.y146{bottom:181.801500px;}
.y189{bottom:182.520000px;}
.y1c0{bottom:182.541000px;}
.y18e{bottom:185.448000px;}
.y160{bottom:185.760000px;}
.y8d{bottom:190.440000px;}
.y168{bottom:191.520000px;}
.y6b{bottom:192.292500px;}
.yd3{bottom:195.495000px;}
.yd7{bottom:195.499500px;}
.yaf{bottom:195.840000px;}
.y1f{bottom:196.230000px;}
.y57{bottom:196.603500px;}
.y1e7{bottom:197.656500px;}
.y1a7{bottom:197.662500px;}
.y145{bottom:199.440000px;}
.y46{bottom:200.569500px;}
.y207{bottom:203.040000px;}
.y13f{bottom:204.480000px;}
.y1bf{bottom:205.939500px;}
.y8c{bottom:208.800000px;}
.yac{bottom:208.846500px;}
.y140{bottom:209.880000px;}
.yd2{bottom:209.893500px;}
.yd6{bottom:209.898000px;}
.y144{bottom:212.760000px;}
.y167{bottom:213.481500px;}
.y6a{bottom:215.691000px;}
.y206{bottom:216.360000px;}
.y188{bottom:218.161500px;}
.y1e{bottom:219.628500px;}
.y56{bottom:220.002000px;}
.y1e6{bottom:220.695000px;}
.y1a6{bottom:220.701000px;}
.y45{bottom:223.608000px;}
.y8b{bottom:227.160000px;}
.y1be{bottom:228.978000px;}
.y166{bottom:231.120000px;}
.yf9{bottom:231.478500px;}
.yab{bottom:231.885000px;}
.yb8{bottom:232.560000px;}
.y143{bottom:234.721500px;}
.y187{bottom:235.440000px;}
.y205{bottom:236.518500px;}
.y1fd{bottom:237.238500px;}
.y178{bottom:238.320000px;}
.y87{bottom:238.729500px;}
.y1d{bottom:242.667000px;}
.y55{bottom:243.040500px;}
.y1cd{bottom:244.099500px;}
.y165{bottom:244.440000px;}
.yb7{bottom:245.520000px;}
.y44{bottom:247.006500px;}
.y186{bottom:249.120000px;}
.yc9{bottom:249.885000px;}
.y8a{bottom:250.920000px;}
.y142{bottom:252.360000px;}
.y69{bottom:253.851000px;}
.yaa{bottom:254.923500px;}
.y1e5{bottom:258.855000px;}
.y1a5{bottom:258.861000px;}
.y204{bottom:261.360000px;}
.y86{bottom:261.768000px;}
.y141{bottom:265.680000px;}
.y1c{bottom:265.705500px;}
.y54{bottom:266.079000px;}
.y164{bottom:266.401500px;}
.yee{bottom:267.120000px;}
.y1bd{bottom:267.138000px;}
.yb6{bottom:269.280000px;}
.yfe{bottom:270.000000px;}
.y43{bottom:270.045000px;}
.y184{bottom:271.084500px;}
.yc8{bottom:272.923500px;}
.y203{bottom:274.680000px;}
.y68{bottom:276.889500px;}
.ya9{bottom:278.322000px;}
.y1e4{bottom:282.253500px;}
.y1a4{bottom:282.259500px;}
.yef{bottom:283.320000px;}
.y162{bottom:284.040000px;}
.y85{bottom:285.166500px;}
.y13e{bottom:287.638500px;}
.y185{bottom:288.721500px;}
.y183{bottom:288.723000px;}
.y1b{bottom:289.104000px;}
.y53{bottom:289.477500px;}
.y1bc{bottom:290.176500px;}
.y42{bottom:293.083500px;}
.yc7{bottom:296.322000px;}
.yf0{bottom:299.520000px;}
.y67{bottom:299.928000px;}
.y163{bottom:301.318500px;}
.y13d{bottom:301.320000px;}
.ya8{bottom:301.360500px;}
.yfa{bottom:301.680000px;}
.y1cc{bottom:305.298000px;}
.yfd{bottom:306.000000px;}
.y182{bottom:306.001500px;}
.y202{bottom:307.440000px;}
.y84{bottom:308.205000px;}
.y1a{bottom:312.142500px;}
.y52{bottom:312.516000px;}
.y1bb{bottom:313.575000px;}
.y161{bottom:314.640000px;}
.yf1{bottom:315.720000px;}
.y41{bottom:316.482000px;}
.yc6{bottom:319.360500px;}
.y1e3{bottom:320.413500px;}
.y1a3{bottom:320.419500px;}
.y201{bottom:320.760000px;}
.y181{bottom:323.280000px;}
.y13c{bottom:323.283000px;}
.y66{bottom:323.326500px;}
.ya7{bottom:324.399000px;}
.y1cb{bottom:328.336500px;}
.y83{bottom:331.243500px;}
.yf2{bottom:331.920000px;}
.y180{bottom:336.600000px;}
.y15f{bottom:336.960000px;}
.y40{bottom:339.520500px;}
.y13b{bottom:340.561500px;}
.yfc{bottom:341.638500px;}
.yc5{bottom:342.399000px;}
.y200{bottom:343.080000px;}
.y1e2{bottom:343.452000px;}
.y1a2{bottom:343.458000px;}
.y65{bottom:346.365000px;}
.ya6{bottom:347.797500px;}
.yf3{bottom:348.120000px;}
.y19{bottom:350.302500px;}
.y51{bottom:350.676000px;}
.y1ba{bottom:351.735000px;}
.y15e{bottom:354.238500px;}
.y82{bottom:354.642000px;}
.y13a{bottom:358.200000px;}
.y17f{bottom:358.921500px;}
.y1ff{bottom:360.360000px;}
.y3f{bottom:362.559000px;}
.yf4{bottom:364.320000px;}
.yc4{bottom:365.797500px;}
.y1ca{bottom:366.496500px;}
.y21f{bottom:367.200000px;}
.y15d{bottom:367.560000px;}
.y64{bottom:369.403500px;}
.ya5{bottom:370.836000px;}
.y139{bottom:371.520000px;}
.y135{bottom:376.200000px;}
.y138{bottom:376.201500px;}
.yfb{bottom:377.638500px;}
.y7e{bottom:377.680500px;}
.yf5{bottom:380.878500px;}
.y1e1{bottom:381.612000px;}
.y1a1{bottom:381.618000px;}
.y14f{bottom:385.200000px;}
.y3e{bottom:385.957500px;}
.y50{bottom:388.836000px;}
.y15c{bottom:389.880000px;}
.y1b9{bottom:389.895000px;}
.y1fe{bottom:391.318500px;}
.y159{bottom:392.761500px;}
.y63{bottom:392.802000px;}
.y137{bottom:393.840000px;}
.ya4{bottom:393.874500px;}
.yf6{bottom:397.078500px;}
.y81{bottom:400.719000px;}
.y1e0{bottom:404.650500px;}
.y1a0{bottom:404.656500px;}
.y228{bottom:406.080000px;}
.y15b{bottom:407.158500px;}
.y18d{bottom:408.996000px;}
.y158{bottom:410.400000px;}
.y136{bottom:411.118500px;}
.y17e{bottom:411.841500px;}
.yc3{bottom:411.874500px;}
.yf7{bottom:413.278500px;}
.y62{bottom:415.840500px;}
.ya3{bottom:417.273000px;}
.y15a{bottom:420.840000px;}
.y3d{bottom:424.117500px;}
.y134{bottom:424.440000px;}
.y1fc{bottom:426.598500px;}
.y18{bottom:426.622500px;}
.y1b8{bottom:428.055000px;}
.y17d{bottom:429.120000px;}
.yf8{bottom:429.478500px;}
.y11f{bottom:429.480000px;}
.y18c{bottom:432.034500px;}
.yc2{bottom:435.273000px;}
.y229{bottom:437.758500px;}
.y61{bottom:438.879000px;}
.ya2{bottom:440.311500px;}
.y1df{bottom:442.810500px;}
.y19f{bottom:442.816500px;}
.y157{bottom:444.958500px;}
.y17c{bottom:446.758500px;}
.y133{bottom:446.761500px;}
.y3c{bottom:447.156000px;}
.y1c9{bottom:451.093500px;}
.y18b{bottom:455.433000px;}
.y156{bottom:458.640000px;}
.y17b{bottom:460.080000px;}
.y60{bottom:462.277500px;}
.y1fb{bottom:462.958500px;}
.ya1{bottom:463.350000px;}
.y131{bottom:464.040000px;}
.y17{bottom:464.782500px;}
.y1de{bottom:466.209000px;}
.y19e{bottom:466.215000px;}
.y227{bottom:468.360000px;}
.y3b{bottom:470.194500px;}
.y1f1{bottom:470.878500px;}
.yc1{bottom:473.433000px;}
.yb5{bottom:477.039000px;}
.y192{bottom:478.471500px;}
.y155{bottom:480.598500px;}
.y132{bottom:481.318500px;}
.y17a{bottom:482.040000px;}
.y5f{bottom:485.316000px;}
.ya0{bottom:486.748500px;}
.y16{bottom:487.821000px;}
.y1b7{bottom:489.253500px;}
.y226{bottom:493.200000px;}
.yd1{bottom:493.573500px;}
.y4f{bottom:493.593000px;}
.y154{bottom:493.920000px;}
.y130{bottom:495.000000px;}
.y179{bottom:495.720000px;}
.yc0{bottom:496.471500px;}
.yb4{bottom:500.437500px;}
.y1fa{bottom:503.278500px;}
.y1dd{bottom:504.369000px;}
.y19d{bottom:504.375000px;}
.y3a{bottom:508.354500px;}
.y9f{bottom:509.787000px;}
.y15{bottom:511.219500px;}
.y1c8{bottom:512.292000px;}
.y151{bottom:516.240000px;}
.y153{bottom:516.241500px;}
.y1f9{bottom:516.598500px;}
.yd0{bottom:516.612000px;}
.y4e{bottom:516.631500px;}
.y12f{bottom:516.963000px;}
.y177{bottom:517.681500px;}
.ybf{bottom:519.510000px;}
.yb3{bottom:523.476000px;}
.y116{bottom:524.545500px;}
.y1dc{bottom:527.407500px;}
.y19c{bottom:527.413500px;}
.y39{bottom:531.753000px;}
.y9e{bottom:532.825500px;}
.y152{bottom:533.520000px;}
.y12e{bottom:534.241500px;}
.y14{bottom:534.258000px;}
.y176{bottom:534.960000px;}
.y1c7{bottom:535.690500px;}
.y225{bottom:536.400000px;}
.y1f8{bottom:538.918500px;}
.y4d{bottom:539.670000px;}
.ycf{bottom:540.010500px;}
.ybe{bottom:542.908500px;}
.yb2{bottom:546.514500px;}
.y150{bottom:546.840000px;}
.y115{bottom:547.584000px;}
.y1b6{bottom:550.452000px;}
.y12d{bottom:551.880000px;}
.y175{bottom:552.598500px;}
.y38{bottom:554.791500px;}
.y1f7{bottom:556.198500px;}
.y13{bottom:557.296500px;}
.y224{bottom:559.080000px;}
.y16d{bottom:560.160000px;}
.yce{bottom:563.049000px;}
.y4c{bottom:563.068500px;}
.y12c{bottom:565.200000px;}
.y1db{bottom:565.567500px;}
.y19b{bottom:565.573500px;}
.y174{bottom:565.920000px;}
.ybd{bottom:565.947000px;}
.y14e{bottom:569.158500px;}
.y1f6{bottom:569.518500px;}
.y7d{bottom:569.913000px;}
.y16e{bottom:570.240000px;}
.y114{bottom:570.622500px;}
.y9d{bottom:570.985500px;}
.y126{bottom:571.320000px;}
.y1c6{bottom:573.850500px;}
.y37{bottom:577.830000px;}
.y12{bottom:580.695000px;}
.y14d{bottom:582.480000px;}
.ycd{bottom:586.087500px;}
.y191{bottom:586.107000px;}
.y12b{bottom:587.160000px;}
.y173{bottom:587.881500px;}
.y125{bottom:588.598500px;}
.y19a{bottom:588.612000px;}
.ybc{bottom:588.985500px;}
.y7c{bottom:592.951500px;}
.y113{bottom:594.021000px;}
.y9c{bottom:594.384000px;}
.y1f5{bottom:596.878500px;}
.y223{bottom:599.758500px;}
.y36{bottom:601.228500px;}
.y1da{bottom:603.727500px;}
.y11{bottom:603.733500px;}
.y12a{bottom:604.798500px;}
.y172{bottom:605.520000px;}
.y1b5{bottom:612.010500px;}
.ybb{bottom:612.384000px;}
.y1f4{bottom:614.158500px;}
.y7b{bottom:615.990000px;}
.y222{bottom:617.040000px;}
.y112{bottom:617.059500px;}
.y9b{bottom:617.422500px;}
.y129{bottom:618.120000px;}
.y148{bottom:619.200000px;}
.y171{bottom:622.798500px;}
.y149{bottom:624.240000px;}
.ycc{bottom:624.247500px;}
.y35{bottom:624.267000px;}
.y10{bottom:626.772000px;}
.y1f3{bottom:631.798500px;}
.y1c5{bottom:635.049000px;}
.yba{bottom:635.422500px;}
.y221{bottom:636.118500px;}
.y170{bottom:636.120000px;}
.y7a{bottom:639.388500px;}
.y128{bottom:640.080000px;}
.y14c{bottom:640.081500px;}
.y111{bottom:640.098000px;}
.y9a{bottom:640.461000px;}
.y122{bottom:640.800000px;}
.y1d9{bottom:641.887500px;}
.y1f2{bottom:645.118500px;}
.y34{bottom:647.305500px;}
.ycb{bottom:647.646000px;}
.yf{bottom:650.170500px;}
.y127{bottom:653.760000px;}
.y14b{bottom:657.720000px;}
.y16f{bottom:658.443000px;}
.y79{bottom:662.427000px;}
.y1f0{bottom:663.118500px;}
.y110{bottom:663.496500px;}
.y99{bottom:663.859500px;}
.y1d8{bottom:664.926000px;}
.y33{bottom:670.704000px;}
.y14a{bottom:671.040000px;}
.ye{bottom:673.209000px;}
.yb9{bottom:673.582500px;}
.y121{bottom:675.720000px;}
.y124{bottom:675.721500px;}
.yca{bottom:685.444500px;}
.y5e{bottom:685.465500px;}
.y10f{bottom:686.535000px;}
.y98{bottom:686.898000px;}
.y199{bottom:688.330500px;}
.y123{bottom:693.000000px;}
.y32{bottom:693.742500px;}
.yd{bottom:696.247500px;}
.y1d7{bottom:703.086000px;}
.y1ef{bottom:703.438500px;}
.y120{bottom:706.680000px;}
.y5d{bottom:708.864000px;}
.y97{bottom:709.936500px;}
.y198{bottom:711.369000px;}
.y31{bottom:716.781000px;}
.yc{bottom:719.646000px;}
.y10e{bottom:724.695000px;}
.y1d6{bottom:726.484500px;}
.y11c{bottom:728.640000px;}
.ye5{bottom:731.878500px;}
.y5c{bottom:731.902500px;}
.y11d{bottom:733.320000px;}
.y96{bottom:733.335000px;}
.y1af{bottom:734.407500px;}
.y16c{bottom:734.760000px;}
.y4b{bottom:740.179500px;}
.y147{bottom:741.240000px;}
.yb{bottom:742.684500px;}
.y11b{bottom:745.918500px;}
.y197{bottom:749.529000px;}
.yed{bottom:750.958500px;}
.yda{bottom:751.318500px;}
.y220{bottom:753.478500px;}
.y30{bottom:754.941000px;}
.y1ee{bottom:756.000000px;}
.y95{bottom:756.373500px;}
.y1ae{bottom:757.806000px;}
.y119{bottom:759.600000px;}
.y16b{bottom:760.320000px;}
.y4a{bottom:763.218000px;}
.y1d5{bottom:764.644500px;}
.yec{bottom:769.318500px;}
.y1b4{bottom:772.567500px;}
.ydb{bottom:773.278500px;}
.y2f{bottom:778.339500px;}
.y94{bottom:779.412000px;}
.ya{bottom:780.844500px;}
.y10d{bottom:783.015000px;}
.y49{bottom:786.256500px;}
.y1d4{bottom:787.683000px;}
.y118{bottom:791.998500px;}
.ye6{bottom:792.360000px;}
.yb1{bottom:793.101000px;}
.ydc{bottom:795.238500px;}
.y1ad{bottom:795.966000px;}
.yeb{bottom:796.320000px;}
.y2e{bottom:801.378000px;}
.y93{bottom:802.810500px;}
.y10c{bottom:806.053500px;}
.y1ea{bottom:810.727500px;}
.yea{bottom:814.680000px;}
.y78{bottom:816.499500px;}
.ydd{bottom:817.198500px;}
.y1ac{bottom:819.004500px;}
.y2d{bottom:824.416500px;}
.y1d3{bottom:825.843000px;}
.y196{bottom:825.849000px;}
.y10b{bottom:829.452000px;}
.y1b3{bottom:834.126000px;}
.yde{bottom:839.158500px;}
.y77{bottom:839.538000px;}
.y92{bottom:840.970500px;}
.y2c{bottom:847.815000px;}
.y1d2{bottom:849.241500px;}
.y195{bottom:849.247500px;}
.y10a{bottom:852.490500px;}
.y9{bottom:857.164500px;}
.ye9{bottom:859.680000px;}
.ydf{bottom:861.118500px;}
.y21e{bottom:861.120000px;}
.y76{bottom:862.576500px;}
.y2b{bottom:870.853500px;}
.y194{bottom:872.286000px;}
.y109{bottom:875.529000px;}
.y91{bottom:879.130500px;}
.y8{bottom:880.563000px;}
.ye0{bottom:883.078500px;}
.y75{bottom:885.975000px;}
.y1d1{bottom:887.401500px;}
.y21d{bottom:894.240000px;}
.y2a{bottom:894.252000px;}
.y1b2{bottom:895.324500px;}
.y108{bottom:898.927500px;}
.ye1{bottom:905.038500px;}
.ye8{bottom:905.040000px;}
.y74{bottom:909.013500px;}
.y1d0{bottom:910.440000px;}
.y193{bottom:910.446000px;}
.y21c{bottom:911.878500px;}
.y29{bottom:917.290500px;}
.y7{bottom:918.723000px;}
.y21b{bottom:925.198500px;}
.ye2{bottom:926.998500px;}
.y73{bottom:932.412000px;}
.y1b1{bottom:933.484500px;}
.y107{bottom:937.087500px;}
.y28{bottom:940.329000px;}
.y6{bottom:941.761500px;}
.y21a{bottom:947.518500px;}
.y1cf{bottom:948.600000px;}
.ye3{bottom:948.958500px;}
.ye7{bottom:950.400000px;}
.y72{bottom:955.450500px;}
.y1ab{bottom:956.883000px;}
.y106{bottom:960.126000px;}
.y219{bottom:960.838500px;}
.y27{bottom:963.727500px;}
.ye4{bottom:970.918500px;}
.y1ce{bottom:971.638500px;}
.y210{bottom:975.598500px;}
.y71{bottom:978.489000px;}
.y5{bottom:979.921500px;}
.y218{bottom:982.800000px;}
.y105{bottom:983.164500px;}
.y26{bottom:986.766000px;}
.y1b0{bottom:995.043000px;}
.y217{bottom:996.478500px;}
.y70{bottom:1001.887500px;}
.y1c4{bottom:1002.960000px;}
.y104{bottom:1006.563000px;}
.y25{bottom:1009.804500px;}
.y1aa{bottom:1018.081500px;}
.y216{bottom:1018.441500px;}
.y6f{bottom:1024.926000px;}
.y103{bottom:1029.601500px;}
.y24{bottom:1033.203000px;}
.y215{bottom:1035.720000px;}
.y1ed{bottom:1041.118500px;}
.y1c3{bottom:1041.120000px;}
.y6e{bottom:1047.964500px;}
.y213{bottom:1049.398500px;}
.y102{bottom:1052.640000px;}
.y5b{bottom:1056.241500px;}
.y1c2{bottom:1064.518500px;}
.y212{bottom:1071.360000px;}
.y23{bottom:1071.363000px;}
.y5a{bottom:1079.280000px;}
.y4{bottom:1081.996500px;}
.y211{bottom:1084.680000px;}
.y101{bottom:1090.800000px;}
.y22{bottom:1094.401500px;}
.y18a{bottom:1102.678500px;}
.y1ec{bottom:1117.438500px;}
.y3{bottom:1117.440000px;}
.y20f{bottom:1125.000000px;}
.y100{bottom:1129.680000px;}
.y20e{bottom:1138.680000px;}
.y2{bottom:1140.838500px;}
.yff{bottom:1144.438500px;}
.h10{height:17.278500px;}
.he{height:17.280000px;}
.h13{height:39.238500px;}
.h5{height:39.765938px;}
.h8{height:48.210006px;}
.h3{height:54.791016px;}
.hb{height:55.515475px;}
.h11{height:58.437662px;}
.hf{height:58.718883px;}
.h6{height:61.365938px;}
.h7{height:61.661250px;}
.h2{height:67.204225px;}
.h4{height:67.527633px;}
.h14{height:90.117662px;}
.h15{height:95.877662px;}
.h9{height:105.804006px;}
.ha{height:107.244006px;}
.h12{height:127.551662px;}
.hd{height:892.500000px;}
.hc{height:892.800000px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w15{width:3.238500px;}
.w46{width:3.240000px;}
.w4a{width:3.598500px;}
.w8{width:3.600000px;}
.w74{width:3.960000px;}
.wa{width:4.318500px;}
.w57{width:5.760000px;}
.w51{width:6.840000px;}
.w7f{width:7.198500px;}
.w2f{width:7.200000px;}
.w3a{width:7.558500px;}
.w60{width:7.560000px;}
.w2b{width:10.080000px;}
.w1f{width:12.238500px;}
.w40{width:12.240000px;}
.w6c{width:15.840000px;}
.w9{width:16.200000px;}
.w32{width:21.600000px;}
.w5f{width:21.958500px;}
.w1c{width:22.318500px;}
.wd{width:22.680000px;}
.w62{width:24.118500px;}
.w30{width:25.558500px;}
.w64{width:28.078500px;}
.w5{width:32.038500px;}
.w4d{width:32.760000px;}
.w54{width:33.120000px;}
.w7{width:34.920000px;}
.w43{width:35.638500px;}
.w23{width:36.360000px;}
.w27{width:37.798500px;}
.w14{width:37.800000px;}
.wb{width:39.958500px;}
.w28{width:39.960000px;}
.w45{width:40.678500px;}
.w39{width:40.680000px;}
.w10{width:43.198500px;}
.w17{width:43.558500px;}
.w3c{width:43.560000px;}
.w4{width:43.918500px;}
.w25{width:43.920000px;}
.w21{width:45.000000px;}
.w44{width:45.718500px;}
.w6{width:45.720000px;}
.w59{width:46.438500px;}
.w26{width:49.680000px;}
.w2d{width:50.038500px;}
.w1e{width:54.000000px;}
.w83{width:55.440000px;}
.w56{width:57.600000px;}
.w52{width:57.958500px;}
.w12{width:58.680000px;}
.w78{width:65.880000px;}
.w5a{width:66.238500px;}
.w13{width:67.318500px;}
.w81{width:70.200000px;}
.w5c{width:70.920000px;}
.w7d{width:72.360000px;}
.w7c{width:73.798500px;}
.w7b{width:74.158500px;}
.w4f{width:76.318500px;}
.w35{width:81.000000px;}
.w68{width:82.440000px;}
.w1d{width:87.118500px;}
.w79{width:88.558500px;}
.w6e{width:91.440000px;}
.w3b{width:92.158500px;}
.w76{width:92.520000px;}
.w69{width:92.878500px;}
.w6d{width:97.560000px;}
.w82{width:99.718500px;}
.w20{width:100.440000px;}
.w4b{width:104.760000px;}
.wc{width:119.518500px;}
.w2a{width:124.918500px;}
.w7e{width:126.360000px;}
.w53{width:131.038500px;}
.w38{width:146.878500px;}
.w37{width:153.718500px;}
.w5b{width:154.078500px;}
.w72{width:158.760000px;}
.w11{width:162.718500px;}
.w1b{width:163.800000px;}
.w34{width:167.760000px;}
.w3e{width:171.000000px;}
.w61{width:178.200000px;}
.w41{width:178.560000px;}
.w2e{width:188.640000px;}
.w6f{width:190.078500px;}
.w2c{width:209.158500px;}
.w4c{width:212.398500px;}
.w71{width:247.318500px;}
.w18{width:249.838500px;}
.w77{width:258.120000px;}
.w5e{width:260.640000px;}
.wf{width:267.120000px;}
.w70{width:292.680000px;}
.w58{width:294.478500px;}
.w4e{width:298.078500px;}
.we{width:300.958500px;}
.w29{width:304.918500px;}
.w24{width:307.440000px;}
.w50{width:312.120000px;}
.w73{width:316.438500px;}
.w80{width:317.158500px;}
.w65{width:325.798500px;}
.w22{width:329.038500px;}
.w84{width:331.558500px;}
.w75{width:341.640000px;}
.w19{width:345.238500px;}
.w31{width:352.440000px;}
.w36{width:356.758500px;}
.w48{width:365.398500px;}
.w6b{width:369.718500px;}
.w3f{width:374.758500px;}
.w66{width:386.278500px;}
.w67{width:390.238500px;}
.w16{width:391.680000px;}
.w63{width:393.120000px;}
.w3d{width:405.720000px;}
.w6a{width:418.680000px;}
.w42{width:434.520000px;}
.w33{width:435.238500px;}
.w47{width:439.918500px;}
.w1a{width:460.440000px;}
.w7a{width:471.238500px;}
.w49{width:473.400000px;}
.w5d{width:482.760000px;}
.w55{width:493.198500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:1262.878500px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x61{left:14.040000px;}
.x66{left:24.841500px;}
.x32{left:47.521500px;}
.x30{left:50.758500px;}
.x19{left:53.280000px;}
.x17{left:56.518500px;}
.x35{left:61.198500px;}
.x31{left:64.800000px;}
.x1d{left:66.598500px;}
.x18{left:70.558500px;}
.x36{left:78.838500px;}
.x2{left:84.960000px;}
.x16{left:106.201500px;}
.x3d{left:111.238500px;}
.x69{left:113.398500px;}
.x68{left:114.840000px;}
.xd{left:116.638500px;}
.x34{left:118.800000px;}
.x1b{left:122.398500px;}
.xb{left:124.918500px;}
.xa{left:132.478500px;}
.x13{left:135.000000px;}
.x9{left:140.038500px;}
.x11{left:142.918500px;}
.x1a{left:145.080000px;}
.x4b{left:146.880000px;}
.x3e{left:149.038500px;}
.x10{left:150.838500px;}
.x43{left:151.920000px;}
.x28{left:154.800000px;}
.xf{left:158.398500px;}
.x37{left:175.318500px;}
.x1c{left:176.758500px;}
.xc{left:187.918500px;}
.x4{left:196.920000px;}
.x12{left:209.517000px;}
.x1e{left:211.318500px;}
.x38{left:213.118500px;}
.x47{left:218.878500px;}
.x29{left:219.958500px;}
.x67{left:233.280000px;}
.x1f{left:239.398500px;}
.x20{left:255.600000px;}
.x21{left:259.920000px;}
.x56{left:267.478500px;}
.x57{left:271.798500px;}
.x5{left:281.880000px;}
.x65{left:294.840000px;}
.x51{left:297.000000px;}
.x22{left:299.878500px;}
.x52{left:302.760000px;}
.x3b{left:349.558500px;}
.x63{left:365.760000px;}
.x6{left:367.200000px;}
.x64{left:372.958500px;}
.x5f{left:398.158500px;}
.x26{left:402.118500px;}
.x60{left:405.720000px;}
.x3f{left:406.798500px;}
.x23{left:419.398500px;}
.x39{left:424.438500px;}
.x40{left:429.478500px;}
.x3a{left:434.520000px;}
.x24{left:442.078500px;}
.x33{left:443.880000px;}
.x41{left:452.880000px;}
.x42{left:457.200000px;}
.x27{left:460.798500px;}
.x2a{left:463.680000px;}
.x7{left:476.278500px;}
.x2b{left:486.000000px;}
.x53{left:500.040000px;}
.x44{left:506.158500px;}
.x45{left:513.718500px;}
.x54{left:536.398500px;}
.x4c{left:537.478500px;}
.x55{left:543.958500px;}
.x4e{left:554.758500px;}
.x4d{left:560.158500px;}
.x4f{left:564.840000px;}
.x8{left:569.158500px;}
.x2c{left:573.118500px;}
.x2d{left:595.798500px;}
.x5d{left:609.118500px;}
.xe{left:614.158500px;}
.x50{left:622.798500px;}
.x5e{left:624.958500px;}
.x58{left:629.638500px;}
.x62{left:631.078500px;}
.x59{left:639.718500px;}
.x46{left:644.758500px;}
.x2e{left:649.798500px;}
.x5a{left:658.078500px;}
.x5b{left:662.398500px;}
.x2f{left:664.558500px;}
.x48{left:674.278500px;}
.x5c{left:678.598500px;}
.x14{left:688.680000px;}
.x49{left:712.798500px;}
.x4a{left:719.638500px;}
.x3{left:791.278500px;}
.x1{left:799.558500px;}
.x15{left:1139.760000px;}
.x25{left:1185.838500px;}
.x3c{left:1195.558500px;}
@media print{
.v8{vertical-align:-51.194667pt;}
.v6{vertical-align:-48.634667pt;}
.v3{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v9{vertical-align:28.160000pt;}
.va{vertical-align:33.280000pt;}
.v4{vertical-align:51.194667pt;}
.v5{vertical-align:52.474667pt;}
.v7{vertical-align:61.434667pt;}
.ls85{letter-spacing:-2.608000pt;}
.ls6b{letter-spacing:-1.434667pt;}
.ls6a{letter-spacing:-1.306667pt;}
.ls51{letter-spacing:-1.173333pt;}
.ls62{letter-spacing:-1.125333pt;}
.ls75{letter-spacing:-0.640000pt;}
.ls68{letter-spacing:-0.613333pt;}
.ls50{letter-spacing:-0.565333pt;}
.ls47{letter-spacing:-0.554667pt;}
.ls7f{letter-spacing:-0.538667pt;}
.ls4f{letter-spacing:-0.528000pt;}
.ls15{letter-spacing:-0.517333pt;}
.ls3{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.506667pt;}
.ls35{letter-spacing:-0.501333pt;}
.ls2a{letter-spacing:-0.496000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls7e{letter-spacing:-0.474667pt;}
.ls13{letter-spacing:-0.464000pt;}
.ls48{letter-spacing:-0.458667pt;}
.ls46{letter-spacing:-0.453333pt;}
.ls2f{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.416000pt;}
.ls2{letter-spacing:-0.410667pt;}
.ls4{letter-spacing:-0.405333pt;}
.ls1d{letter-spacing:-0.400000pt;}
.ls14{letter-spacing:-0.394667pt;}
.ls8{letter-spacing:-0.389333pt;}
.lse{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.378667pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls5{letter-spacing:-0.357333pt;}
.lsb{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.346667pt;}
.ls18{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls20{letter-spacing:-0.330667pt;}
.ls27{letter-spacing:-0.325333pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.314667pt;}
.ls78{letter-spacing:-0.309333pt;}
.ls7d{letter-spacing:-0.304000pt;}
.ls17{letter-spacing:-0.298667pt;}
.ls7c{letter-spacing:-0.293333pt;}
.ls7a{letter-spacing:-0.288000pt;}
.ls64{letter-spacing:-0.282667pt;}
.ls94{letter-spacing:-0.256000pt;}
.ls84{letter-spacing:-0.250667pt;}
.ls37{letter-spacing:-0.240000pt;}
.ls74{letter-spacing:-0.229333pt;}
.ls76{letter-spacing:-0.218667pt;}
.ls63{letter-spacing:-0.202667pt;}
.ls79{letter-spacing:-0.197333pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls4a{letter-spacing:-0.170667pt;}
.ls4b{letter-spacing:-0.160000pt;}
.ls69{letter-spacing:-0.154667pt;}
.ls89{letter-spacing:-0.144000pt;}
.ls73{letter-spacing:-0.138667pt;}
.ls87{letter-spacing:-0.133333pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.122667pt;}
.ls72{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.101333pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls6c{letter-spacing:-0.090667pt;}
.ls65{letter-spacing:-0.085333pt;}
.ls45{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.074667pt;}
.ls1a{letter-spacing:-0.069333pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls67{letter-spacing:-0.053333pt;}
.ls86{letter-spacing:-0.048000pt;}
.ls49{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:-0.037333pt;}
.ls66{letter-spacing:-0.032000pt;}
.ls31{letter-spacing:-0.026667pt;}
.ls32{letter-spacing:-0.021333pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls2b{letter-spacing:-0.010667pt;}
.ls25{letter-spacing:-0.005333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls70{letter-spacing:0.005333pt;}
.ls82{letter-spacing:0.010667pt;}
.ls5b{letter-spacing:0.016000pt;}
.ls58{letter-spacing:0.021333pt;}
.ls60{letter-spacing:0.026667pt;}
.ls5d{letter-spacing:0.032000pt;}
.ls71{letter-spacing:0.037333pt;}
.ls6f{letter-spacing:0.048000pt;}
.ls4c{letter-spacing:0.053333pt;}
.ls88{letter-spacing:0.064000pt;}
.ls5e{letter-spacing:0.069333pt;}
.ls57{letter-spacing:0.074667pt;}
.ls7b{letter-spacing:0.080000pt;}
.ls3f{letter-spacing:0.090667pt;}
.ls54{letter-spacing:0.101333pt;}
.ls21{letter-spacing:0.106667pt;}
.ls55{letter-spacing:0.117333pt;}
.ls95{letter-spacing:0.154667pt;}
.ls56{letter-spacing:0.170667pt;}
.ls6d{letter-spacing:0.181333pt;}
.ls3a{letter-spacing:0.186667pt;}
.ls6e{letter-spacing:0.202667pt;}
.ls61{letter-spacing:0.229333pt;}
.ls81{letter-spacing:0.261333pt;}
.ls40{letter-spacing:0.298667pt;}
.ls2d{letter-spacing:0.341333pt;}
.ls39{letter-spacing:0.346667pt;}
.ls52{letter-spacing:0.368000pt;}
.ls34{letter-spacing:0.373333pt;}
.ls1b{letter-spacing:0.378667pt;}
.ls10{letter-spacing:0.380160pt;}
.ls77{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.392747pt;}
.ls5f{letter-spacing:0.410667pt;}
.ls28{letter-spacing:0.453333pt;}
.ls5a{letter-spacing:0.464000pt;}
.ls41{letter-spacing:0.501333pt;}
.ls8a{letter-spacing:0.506667pt;}
.ls22{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls33{letter-spacing:0.549333pt;}
.ls24{letter-spacing:0.554667pt;}
.ls5c{letter-spacing:0.560000pt;}
.ls59{letter-spacing:0.565333pt;}
.ls83{letter-spacing:0.565879pt;}
.ls4d{letter-spacing:0.570667pt;}
.ls3d{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.581333pt;}
.ls3e{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.597333pt;}
.ls80{letter-spacing:0.602667pt;}
.ls53{letter-spacing:0.613333pt;}
.ls3c{letter-spacing:0.618667pt;}
.ls29{letter-spacing:0.650667pt;}
.ls3b{letter-spacing:1.189333pt;}
.ls8b{letter-spacing:53.655077pt;}
.ls8c{letter-spacing:66.455077pt;}
.ls8d{letter-spacing:67.740411pt;}
.ls92{letter-spacing:121.244304pt;}
.ls8f{letter-spacing:122.518971pt;}
.ls8e{letter-spacing:132.764304pt;}
.ls93{letter-spacing:135.318971pt;}
.ls90{letter-spacing:145.558971pt;}
.ls91{letter-spacing:146.838971pt;}
.ws51{word-spacing:-13.903008pt;}
.ws56{word-spacing:-13.860341pt;}
.ws6b{word-spacing:-13.855008pt;}
.ws54{word-spacing:-13.833675pt;}
.ws53{word-spacing:-13.817675pt;}
.ws5e{word-spacing:-13.759008pt;}
.ws116{word-spacing:-13.689675pt;}
.ws11a{word-spacing:-13.385675pt;}
.ws40{word-spacing:-13.268341pt;}
.ws11f{word-spacing:-13.188341pt;}
.ws110{word-spacing:-13.177675pt;}
.ws117{word-spacing:-13.108341pt;}
.ws55{word-spacing:-12.980341pt;}
.ws2{word-spacing:-12.916341pt;}
.ws0{word-spacing:-12.895008pt;}
.ws118{word-spacing:-12.889675pt;}
.ws5f{word-spacing:-12.809675pt;}
.ws8f{word-spacing:-12.651093pt;}
.ws8b{word-spacing:-12.448427pt;}
.ws126{word-spacing:-12.188661pt;}
.wsa5{word-spacing:-12.183328pt;}
.wsb0{word-spacing:-12.135328pt;}
.ws13d{word-spacing:-12.081995pt;}
.ws8e{word-spacing:-12.043093pt;}
.ws121{word-spacing:-11.831328pt;}
.wsd5{word-spacing:-11.799328pt;}
.wsd4{word-spacing:-11.772661pt;}
.wsd3{word-spacing:-11.687328pt;}
.wsa6{word-spacing:-11.671328pt;}
.wsa8{word-spacing:-11.644661pt;}
.ws13e{word-spacing:-11.633995pt;}
.ws178{word-spacing:-11.623328pt;}
.ws125{word-spacing:-11.596661pt;}
.wsae{word-spacing:-11.585995pt;}
.wsb3{word-spacing:-11.569995pt;}
.ws13c{word-spacing:-11.543328pt;}
.ws124{word-spacing:-11.505995pt;}
.wsd8{word-spacing:-11.500661pt;}
.wsb5{word-spacing:-11.479328pt;}
.wsb1{word-spacing:-11.468661pt;}
.wsf7{word-spacing:-11.447328pt;}
.wsaf{word-spacing:-11.415328pt;}
.ws12b{word-spacing:-11.409995pt;}
.wsab{word-spacing:-11.367328pt;}
.wsf5{word-spacing:-11.351328pt;}
.ws122{word-spacing:-11.319328pt;}
.wsac{word-spacing:-11.287328pt;}
.wsb4{word-spacing:-11.212661pt;}
.ws129{word-spacing:-11.063328pt;}
.wsf8{word-spacing:-11.057995pt;}
.wsad{word-spacing:-10.956661pt;}
.wsa9{word-spacing:-10.444661pt;}
.ws128{word-spacing:-10.396661pt;}
.ws1{word-spacing:-10.336000pt;}
.ws86{word-spacing:-10.163701pt;}
.wsb2{word-spacing:-10.135328pt;}
.ws9b{word-spacing:-10.121035pt;}
.ws82{word-spacing:-9.731701pt;}
.ws83{word-spacing:-9.129035pt;}
.ws87{word-spacing:-9.091701pt;}
.ws84{word-spacing:-9.043701pt;}
.ws130{word-spacing:-2.661333pt;}
.wsb8{word-spacing:-1.797333pt;}
.ws95{word-spacing:-1.776000pt;}
.ws11c{word-spacing:-1.477104pt;}
.wsfb{word-spacing:-1.349333pt;}
.wse0{word-spacing:-1.338667pt;}
.ws103{word-spacing:-1.296000pt;}
.wsde{word-spacing:-1.280000pt;}
.wscd{word-spacing:-1.258667pt;}
.wsb7{word-spacing:-1.253333pt;}
.wsc6{word-spacing:-1.248000pt;}
.wsc2{word-spacing:-1.237333pt;}
.wsb9{word-spacing:-1.232000pt;}
.wsdf{word-spacing:-1.226667pt;}
.ws11b{word-spacing:-1.210667pt;}
.wsea{word-spacing:-1.189333pt;}
.wsf9{word-spacing:-1.184000pt;}
.ws102{word-spacing:-1.178667pt;}
.wsfc{word-spacing:-1.173333pt;}
.wseb{word-spacing:-1.168000pt;}
.wse1{word-spacing:-1.162667pt;}
.ws9d{word-spacing:-1.157333pt;}
.wsc1{word-spacing:-1.152000pt;}
.wsbc{word-spacing:-1.146667pt;}
.wsbf{word-spacing:-1.141333pt;}
.wsce{word-spacing:-1.130667pt;}
.wsf1{word-spacing:-1.120000pt;}
.wse3{word-spacing:-1.114667pt;}
.ws104{word-spacing:-1.109333pt;}
.ws33{word-spacing:-1.104000pt;}
.ws100{word-spacing:-1.098667pt;}
.wsc9{word-spacing:-1.088000pt;}
.wsba{word-spacing:-1.082667pt;}
.wsd2{word-spacing:-1.072000pt;}
.wsff{word-spacing:-1.066667pt;}
.wsca{word-spacing:-1.045333pt;}
.wsee{word-spacing:-1.034667pt;}
.wsbe{word-spacing:-1.029333pt;}
.wsbd{word-spacing:-1.024000pt;}
.wsaa{word-spacing:-1.018875pt;}
.wse2{word-spacing:-1.008000pt;}
.wse8{word-spacing:-0.976000pt;}
.wsed{word-spacing:-0.949333pt;}
.wsd1{word-spacing:-0.944000pt;}
.ws94{word-spacing:-0.928000pt;}
.wsf0{word-spacing:-0.922667pt;}
.ws105{word-spacing:-0.906667pt;}
.ws109{word-spacing:-0.890667pt;}
.ws6d{word-spacing:-0.885333pt;}
.wsb6{word-spacing:-0.874667pt;}
.ws69{word-spacing:-0.848000pt;}
.ws52{word-spacing:-0.836672pt;}
.wsfd{word-spacing:-0.794667pt;}
.wscc{word-spacing:-0.762667pt;}
.ws9a{word-spacing:-0.720000pt;}
.wscb{word-spacing:-0.677333pt;}
.wsf3{word-spacing:-0.659845pt;}
.ws9c{word-spacing:-0.640000pt;}
.ws3b{word-spacing:-0.629333pt;}
.ws10d{word-spacing:-0.624000pt;}
.ws13b{word-spacing:-0.618667pt;}
.wsc8{word-spacing:-0.613333pt;}
.wse4{word-spacing:-0.602667pt;}
.ws99{word-spacing:-0.586667pt;}
.ws115{word-spacing:-0.576000pt;}
.ws6a{word-spacing:-0.565333pt;}
.ws139{word-spacing:-0.554667pt;}
.ws119{word-spacing:-0.544000pt;}
.wsa0{word-spacing:-0.528000pt;}
.ws98{word-spacing:-0.522667pt;}
.wse9{word-spacing:-0.512000pt;}
.wsdd{word-spacing:-0.506667pt;}
.wsf4{word-spacing:-0.505861pt;}
.ws57{word-spacing:-0.501333pt;}
.ws61{word-spacing:-0.496000pt;}
.ws4e{word-spacing:-0.490667pt;}
.ws131{word-spacing:-0.485333pt;}
.ws113{word-spacing:-0.480000pt;}
.ws11d{word-spacing:-0.469333pt;}
.wsc5{word-spacing:-0.464000pt;}
.wscf{word-spacing:-0.458667pt;}
.ws11e{word-spacing:-0.453333pt;}
.wsfe{word-spacing:-0.442667pt;}
.wsbb{word-spacing:-0.421333pt;}
.ws114{word-spacing:-0.416000pt;}
.wsdb{word-spacing:-0.410667pt;}
.ws4d{word-spacing:-0.405333pt;}
.ws15{word-spacing:-0.400000pt;}
.ws13{word-spacing:-0.394667pt;}
.ws10c{word-spacing:-0.389333pt;}
.wsfa{word-spacing:-0.384000pt;}
.wse6{word-spacing:-0.378667pt;}
.ws13f{word-spacing:-0.341333pt;}
.wsd0{word-spacing:-0.336000pt;}
.ws58{word-spacing:-0.314667pt;}
.ws38{word-spacing:-0.304000pt;}
.wsa2{word-spacing:-0.298667pt;}
.ws49{word-spacing:-0.288000pt;}
.ws14{word-spacing:-0.282667pt;}
.ws120{word-spacing:-0.277333pt;}
.ws5b{word-spacing:-0.272000pt;}
.ws12d{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.261333pt;}
.ws101{word-spacing:-0.256000pt;}
.wse5{word-spacing:-0.250667pt;}
.ws90{word-spacing:-0.245333pt;}
.ws112{word-spacing:-0.240000pt;}
.wsdc{word-spacing:-0.234667pt;}
.ws30{word-spacing:-0.229333pt;}
.ws75{word-spacing:-0.224000pt;}
.ws2d{word-spacing:-0.218667pt;}
.ws46{word-spacing:-0.213333pt;}
.ws31{word-spacing:-0.208000pt;}
.wse7{word-spacing:-0.202667pt;}
.ws93{word-spacing:-0.192000pt;}
.ws12c{word-spacing:-0.186667pt;}
.ws72{word-spacing:-0.181333pt;}
.ws50{word-spacing:-0.176000pt;}
.ws2f{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.165333pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.154667pt;}
.ws12{word-spacing:-0.149333pt;}
.ws20{word-spacing:-0.144000pt;}
.ws16{word-spacing:-0.138667pt;}
.ws3{word-spacing:-0.133401pt;}
.ws36{word-spacing:-0.133333pt;}
.ws5{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.122667pt;}
.ws1a{word-spacing:-0.117333pt;}
.ws2c{word-spacing:-0.112000pt;}
.ws45{word-spacing:-0.106667pt;}
.ws3a{word-spacing:-0.101333pt;}
.wsa{word-spacing:-0.096000pt;}
.ws67{word-spacing:-0.090667pt;}
.ws97{word-spacing:-0.085333pt;}
.ws108{word-spacing:-0.080000pt;}
.ws27{word-spacing:-0.074667pt;}
.ws4f{word-spacing:-0.069333pt;}
.ws17{word-spacing:-0.064000pt;}
.ws37{word-spacing:-0.058667pt;}
.ws41{word-spacing:-0.053333pt;}
.ws2e{word-spacing:-0.048000pt;}
.ws28{word-spacing:-0.042667pt;}
.ws2a{word-spacing:-0.037333pt;}
.ws1f{word-spacing:-0.032000pt;}
.ws24{word-spacing:-0.026667pt;}
.ws5a{word-spacing:-0.021333pt;}
.ws10a{word-spacing:-0.016000pt;}
.ws10f{word-spacing:-0.010667pt;}
.ws6c{word-spacing:-0.005333pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.005333pt;}
.ws29{word-spacing:0.010667pt;}
.wsc3{word-spacing:0.016000pt;}
.ws21{word-spacing:0.021333pt;}
.ws47{word-spacing:0.026667pt;}
.ws127{word-spacing:0.031841pt;}
.wsa1{word-spacing:0.032000pt;}
.ws7f{word-spacing:0.037333pt;}
.ws1e{word-spacing:0.042667pt;}
.ws43{word-spacing:0.048000pt;}
.ws7e{word-spacing:0.053333pt;}
.ws68{word-spacing:0.058667pt;}
.ws7d{word-spacing:0.064000pt;}
.ws3c{word-spacing:0.069333pt;}
.ws26{word-spacing:0.074667pt;}
.ws18{word-spacing:0.080000pt;}
.ws23{word-spacing:0.085333pt;}
.ws1d{word-spacing:0.090667pt;}
.ws1b{word-spacing:0.096000pt;}
.ws60{word-spacing:0.101333pt;}
.ws48{word-spacing:0.106667pt;}
.ws2b{word-spacing:0.112000pt;}
.ws5c{word-spacing:0.117333pt;}
.ws9f{word-spacing:0.122667pt;}
.ws42{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.133333pt;}
.ws39{word-spacing:0.138667pt;}
.ws44{word-spacing:0.149333pt;}
.wsc4{word-spacing:0.154667pt;}
.ws3e{word-spacing:0.160000pt;}
.ws73{word-spacing:0.165333pt;}
.ws74{word-spacing:0.170667pt;}
.ws59{word-spacing:0.176000pt;}
.ws10e{word-spacing:0.181333pt;}
.ws22{word-spacing:0.186667pt;}
.ws71{word-spacing:0.192000pt;}
.ws111{word-spacing:0.197333pt;}
.ws107{word-spacing:0.202667pt;}
.ws3f{word-spacing:0.224000pt;}
.ws64{word-spacing:0.229333pt;}
.ws106{word-spacing:0.234667pt;}
.ws10b{word-spacing:0.261333pt;}
.ws25{word-spacing:0.277333pt;}
.wsa3{word-spacing:0.293333pt;}
.ws141{word-spacing:0.309333pt;}
.ws65{word-spacing:0.325333pt;}
.ws79{word-spacing:0.346667pt;}
.ws70{word-spacing:0.352000pt;}
.ws62{word-spacing:0.400000pt;}
.ws77{word-spacing:0.405333pt;}
.wsd6{word-spacing:0.410299pt;}
.ws78{word-spacing:0.421333pt;}
.ws4a{word-spacing:0.453333pt;}
.wsef{word-spacing:0.458667pt;}
.ws4c{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.480000pt;}
.ws6e{word-spacing:0.485333pt;}
.ws80{word-spacing:0.496000pt;}
.ws35{word-spacing:0.506667pt;}
.ws8a{word-spacing:0.526992pt;}
.ws8d{word-spacing:0.532325pt;}
.ws7b{word-spacing:0.533333pt;}
.wsc0{word-spacing:0.565333pt;}
.ws63{word-spacing:0.576000pt;}
.ws34{word-spacing:0.581333pt;}
.wsec{word-spacing:0.586667pt;}
.ws7a{word-spacing:0.592000pt;}
.ws92{word-spacing:0.597333pt;}
.ws9e{word-spacing:0.608000pt;}
.wsc7{word-spacing:0.613333pt;}
.ws81{word-spacing:0.645333pt;}
.ws76{word-spacing:0.650667pt;}
.wsf6{word-spacing:0.667472pt;}
.ws7c{word-spacing:0.720000pt;}
.ws66{word-spacing:0.746667pt;}
.ws6{word-spacing:0.757333pt;}
.ws9{word-spacing:0.789333pt;}
.ws12a{word-spacing:0.858514pt;}
.ws6f{word-spacing:0.885333pt;}
.ws10{word-spacing:0.890667pt;}
.ws123{word-spacing:0.904855pt;}
.wsf{word-spacing:1.008000pt;}
.ws91{word-spacing:1.018667pt;}
.wsd9{word-spacing:1.025488pt;}
.ws8{word-spacing:1.050667pt;}
.wsc{word-spacing:1.066667pt;}
.wsda{word-spacing:1.179472pt;}
.wse{word-spacing:1.184000pt;}
.ws96{word-spacing:1.210667pt;}
.ws13a{word-spacing:1.290667pt;}
.wsd{word-spacing:1.360000pt;}
.ws7{word-spacing:1.520000pt;}
.wsa4{word-spacing:1.824000pt;}
.ws137{word-spacing:2.714667pt;}
.ws138{word-spacing:2.864000pt;}
.ws135{word-spacing:4.800000pt;}
.ws140{word-spacing:4.976000pt;}
.ws12e{word-spacing:5.168000pt;}
.ws136{word-spacing:7.589333pt;}
.ws132{word-spacing:11.141333pt;}
.ws12f{word-spacing:11.333333pt;}
.ws133{word-spacing:11.605333pt;}
.ws134{word-spacing:12.864000pt;}
.ws17a{word-spacing:25.908976pt;}
.ws164{word-spacing:27.188976pt;}
.ws15a{word-spacing:27.190613pt;}
.ws14e{word-spacing:27.808437pt;}
.ws14b{word-spacing:27.813771pt;}
.ws147{word-spacing:27.819104pt;}
.ws157{word-spacing:28.468976pt;}
.ws142{word-spacing:30.404288pt;}
.ws146{word-spacing:30.873371pt;}
.ws14d{word-spacing:30.878704pt;}
.ws151{word-spacing:30.884037pt;}
.ws149{word-spacing:32.050981pt;}
.ws14f{word-spacing:32.056315pt;}
.ws145{word-spacing:32.061648pt;}
.ws150{word-spacing:32.158704pt;}
.ws14a{word-spacing:32.164037pt;}
.ws14c{word-spacing:32.266907pt;}
.ws144{word-spacing:32.272240pt;}
.ws148{word-spacing:32.277573pt;}
.ws16c{word-spacing:39.322309pt;}
.ws171{word-spacing:39.983643pt;}
.ws179{word-spacing:40.612976pt;}
.ws161{word-spacing:41.274309pt;}
.ws16f{word-spacing:41.275947pt;}
.ws16e{word-spacing:42.287643pt;}
.ws15f{word-spacing:42.343104pt;}
.ws173{word-spacing:42.543643pt;}
.ws159{word-spacing:42.548976pt;}
.ws163{word-spacing:42.593771pt;}
.ws155{word-spacing:42.599104pt;}
.ws153{word-spacing:48.497760pt;}
.ws88{word-spacing:50.737797pt;}
.ws16a{word-spacing:53.457771pt;}
.ws176{word-spacing:54.012469pt;}
.ws16b{word-spacing:54.692976pt;}
.ws169{word-spacing:54.743104pt;}
.ws174{word-spacing:55.354309pt;}
.ws168{word-spacing:61.303093pt;}
.ws15e{word-spacing:66.817803pt;}
.ws15c{word-spacing:70.705280pt;}
.ws15b{word-spacing:73.270613pt;}
.ws158{word-spacing:74.557584pt;}
.ws167{word-spacing:84.772752pt;}
.ws156{word-spacing:86.065280pt;}
.ws162{word-spacing:87.345280pt;}
.ws177{word-spacing:92.519104pt;}
.ws172{word-spacing:94.308032pt;}
.ws16d{word-spacing:94.417771pt;}
.ws166{word-spacing:95.023643pt;}
.ws165{word-spacing:98.870613pt;}
.ws154{word-spacing:98.875947pt;}
.ws175{word-spacing:102.759104pt;}
.ws160{word-spacing:111.670613pt;}
.ws15d{word-spacing:112.404544pt;}
.ws170{word-spacing:112.950613pt;}
.ws89{word-spacing:177.672960pt;}
.ws85{word-spacing:179.428315pt;}
.ws8c{word-spacing:200.718293pt;}
.wsd7{word-spacing:201.330747pt;}
.ws152{word-spacing:234.654949pt;}
.ws143{word-spacing:660.788555pt;}
.wsa7{word-spacing:835.571520pt;}
.wsf2{word-spacing:882.926187pt;}
._8{margin-left:-3.560560pt;}
._3{margin-left:-2.591722pt;}
._1{margin-left:-1.471455pt;}
._0{width:1.412815pt;}
._2{width:2.415863pt;}
._4{width:3.357446pt;}
._d{width:8.299469pt;}
._c{width:9.326923pt;}
._6{width:11.291153pt;}
._16{width:12.868225pt;}
._11{width:13.871513pt;}
._7{width:14.887029pt;}
._5{width:15.847781pt;}
._1b{width:52.436970pt;}
._e{width:66.519895pt;}
._1a{width:67.790432pt;}
._9{width:74.099798pt;}
._1d{width:78.086971pt;}
._24{width:80.643275pt;}
._21{width:81.917941pt;}
._22{width:89.599579pt;}
._23{width:90.883275pt;}
._25{width:103.688608pt;}
._2c{width:104.600799pt;}
._20{width:106.255579pt;}
._1c{width:107.516304pt;}
._27{width:113.843765pt;}
._1e{width:115.203275pt;}
._1f{width:116.476304pt;}
._26{width:117.568185pt;}
._2b{width:118.655585pt;}
._28{width:125.358432pt;}
._2a{width:126.304976pt;}
._29{width:129.203765pt;}
._f{width:134.551860pt;}
._a{width:165.829133pt;}
._b{width:188.164053pt;}
._14{width:515.163825pt;}
._19{width:673.281216pt;}
._17{width:686.086549pt;}
._18{width:687.366549pt;}
._10{width:775.014920pt;}
._13{width:819.779245pt;}
._15{width:821.155130pt;}
._12{width:1657.873786pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:42.234667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:48.634667pt;}
.fs7{font-size:51.194667pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.874667pt;}
.y0{bottom:0.000000pt;}
.y20a{bottom:0.320000pt;}
.y11e{bottom:3.518667pt;}
.y11a{bottom:3.520000pt;}
.y214{bottom:3.521333pt;}
.y117{bottom:102.720000pt;}
.y1eb{bottom:103.038667pt;}
.y1{bottom:103.040000pt;}
.y48{bottom:120.318667pt;}
.y90{bottom:120.320000pt;}
.y1e9{bottom:121.296000pt;}
.y1a9{bottom:121.301333pt;}
.y20d{bottom:122.238667pt;}
.y190{bottom:123.885333pt;}
.yb0{bottom:125.120000pt;}
.y1c1{bottom:128.338667pt;}
.y6d{bottom:129.969333pt;}
.yae{bottom:130.922667pt;}
.y208{bottom:131.198667pt;}
.y209{bottom:131.518667pt;}
.y21{bottom:133.469333pt;}
.y59{bottom:133.801333pt;}
.y80{bottom:136.638667pt;}
.y8f{bottom:136.640000pt;}
.y89{bottom:137.006667pt;}
.y47{bottom:141.438667pt;}
.y1e8{bottom:141.774667pt;}
.y1a8{bottom:141.780000pt;}
.y16a{bottom:142.720000pt;}
.y18f{bottom:144.364000pt;}
.yd9{bottom:146.881333pt;}
.yd5{bottom:147.536000pt;}
.y20c{bottom:148.800000pt;}
.y6c{bottom:150.448000pt;}
.yad{bottom:151.721333pt;}
.y8e{bottom:152.960000pt;}
.y20{bottom:153.948000pt;}
.y58{bottom:154.280000pt;}
.y7f{bottom:157.758667pt;}
.y88{bottom:157.805333pt;}
.y169{bottom:158.398667pt;}
.yd8{bottom:160.000000pt;}
.y20b{bottom:160.640000pt;}
.yd4{bottom:160.654667pt;}
.y146{bottom:161.601333pt;}
.y189{bottom:162.240000pt;}
.y1c0{bottom:162.258667pt;}
.y18e{bottom:164.842667pt;}
.y160{bottom:165.120000pt;}
.y8d{bottom:169.280000pt;}
.y168{bottom:170.240000pt;}
.y6b{bottom:170.926667pt;}
.yd3{bottom:173.773333pt;}
.yd7{bottom:173.777333pt;}
.yaf{bottom:174.080000pt;}
.y1f{bottom:174.426667pt;}
.y57{bottom:174.758667pt;}
.y1e7{bottom:175.694667pt;}
.y1a7{bottom:175.700000pt;}
.y145{bottom:177.280000pt;}
.y46{bottom:178.284000pt;}
.y207{bottom:180.480000pt;}
.y13f{bottom:181.760000pt;}
.y1bf{bottom:183.057333pt;}
.y8c{bottom:185.600000pt;}
.yac{bottom:185.641333pt;}
.y140{bottom:186.560000pt;}
.yd2{bottom:186.572000pt;}
.yd6{bottom:186.576000pt;}
.y144{bottom:189.120000pt;}
.y167{bottom:189.761333pt;}
.y6a{bottom:191.725333pt;}
.y206{bottom:192.320000pt;}
.y188{bottom:193.921333pt;}
.y1e{bottom:195.225333pt;}
.y56{bottom:195.557333pt;}
.y1e6{bottom:196.173333pt;}
.y1a6{bottom:196.178667pt;}
.y45{bottom:198.762667pt;}
.y8b{bottom:201.920000pt;}
.y1be{bottom:203.536000pt;}
.y166{bottom:205.440000pt;}
.yf9{bottom:205.758667pt;}
.yab{bottom:206.120000pt;}
.yb8{bottom:206.720000pt;}
.y143{bottom:208.641333pt;}
.y187{bottom:209.280000pt;}
.y205{bottom:210.238667pt;}
.y1fd{bottom:210.878667pt;}
.y178{bottom:211.840000pt;}
.y87{bottom:212.204000pt;}
.y1d{bottom:215.704000pt;}
.y55{bottom:216.036000pt;}
.y1cd{bottom:216.977333pt;}
.y165{bottom:217.280000pt;}
.yb7{bottom:218.240000pt;}
.y44{bottom:219.561333pt;}
.y186{bottom:221.440000pt;}
.yc9{bottom:222.120000pt;}
.y8a{bottom:223.040000pt;}
.y142{bottom:224.320000pt;}
.y69{bottom:225.645333pt;}
.yaa{bottom:226.598667pt;}
.y1e5{bottom:230.093333pt;}
.y1a5{bottom:230.098667pt;}
.y204{bottom:232.320000pt;}
.y86{bottom:232.682667pt;}
.y141{bottom:236.160000pt;}
.y1c{bottom:236.182667pt;}
.y54{bottom:236.514667pt;}
.y164{bottom:236.801333pt;}
.yee{bottom:237.440000pt;}
.y1bd{bottom:237.456000pt;}
.yb6{bottom:239.360000pt;}
.yfe{bottom:240.000000pt;}
.y43{bottom:240.040000pt;}
.y184{bottom:240.964000pt;}
.yc8{bottom:242.598667pt;}
.y203{bottom:244.160000pt;}
.y68{bottom:246.124000pt;}
.ya9{bottom:247.397333pt;}
.y1e4{bottom:250.892000pt;}
.y1a4{bottom:250.897333pt;}
.yef{bottom:251.840000pt;}
.y162{bottom:252.480000pt;}
.y85{bottom:253.481333pt;}
.y13e{bottom:255.678667pt;}
.y185{bottom:256.641333pt;}
.y183{bottom:256.642667pt;}
.y1b{bottom:256.981333pt;}
.y53{bottom:257.313333pt;}
.y1bc{bottom:257.934667pt;}
.y42{bottom:260.518667pt;}
.yc7{bottom:263.397333pt;}
.yf0{bottom:266.240000pt;}
.y67{bottom:266.602667pt;}
.y163{bottom:267.838667pt;}
.y13d{bottom:267.840000pt;}
.ya8{bottom:267.876000pt;}
.yfa{bottom:268.160000pt;}
.y1cc{bottom:271.376000pt;}
.yfd{bottom:272.000000pt;}
.y182{bottom:272.001333pt;}
.y202{bottom:273.280000pt;}
.y84{bottom:273.960000pt;}
.y1a{bottom:277.460000pt;}
.y52{bottom:277.792000pt;}
.y1bb{bottom:278.733333pt;}
.y161{bottom:279.680000pt;}
.yf1{bottom:280.640000pt;}
.y41{bottom:281.317333pt;}
.yc6{bottom:283.876000pt;}
.y1e3{bottom:284.812000pt;}
.y1a3{bottom:284.817333pt;}
.y201{bottom:285.120000pt;}
.y181{bottom:287.360000pt;}
.y13c{bottom:287.362667pt;}
.y66{bottom:287.401333pt;}
.ya7{bottom:288.354667pt;}
.y1cb{bottom:291.854667pt;}
.y83{bottom:294.438667pt;}
.yf2{bottom:295.040000pt;}
.y180{bottom:299.200000pt;}
.y15f{bottom:299.520000pt;}
.y40{bottom:301.796000pt;}
.y13b{bottom:302.721333pt;}
.yfc{bottom:303.678667pt;}
.yc5{bottom:304.354667pt;}
.y200{bottom:304.960000pt;}
.y1e2{bottom:305.290667pt;}
.y1a2{bottom:305.296000pt;}
.y65{bottom:307.880000pt;}
.ya6{bottom:309.153333pt;}
.yf3{bottom:309.440000pt;}
.y19{bottom:311.380000pt;}
.y51{bottom:311.712000pt;}
.y1ba{bottom:312.653333pt;}
.y15e{bottom:314.878667pt;}
.y82{bottom:315.237333pt;}
.y13a{bottom:318.400000pt;}
.y17f{bottom:319.041333pt;}
.y1ff{bottom:320.320000pt;}
.y3f{bottom:322.274667pt;}
.yf4{bottom:323.840000pt;}
.yc4{bottom:325.153333pt;}
.y1ca{bottom:325.774667pt;}
.y21f{bottom:326.400000pt;}
.y15d{bottom:326.720000pt;}
.y64{bottom:328.358667pt;}
.ya5{bottom:329.632000pt;}
.y139{bottom:330.240000pt;}
.y135{bottom:334.400000pt;}
.y138{bottom:334.401333pt;}
.yfb{bottom:335.678667pt;}
.y7e{bottom:335.716000pt;}
.yf5{bottom:338.558667pt;}
.y1e1{bottom:339.210667pt;}
.y1a1{bottom:339.216000pt;}
.y14f{bottom:342.400000pt;}
.y3e{bottom:343.073333pt;}
.y50{bottom:345.632000pt;}
.y15c{bottom:346.560000pt;}
.y1b9{bottom:346.573333pt;}
.y1fe{bottom:347.838667pt;}
.y159{bottom:349.121333pt;}
.y63{bottom:349.157333pt;}
.y137{bottom:350.080000pt;}
.ya4{bottom:350.110667pt;}
.yf6{bottom:352.958667pt;}
.y81{bottom:356.194667pt;}
.y1e0{bottom:359.689333pt;}
.y1a0{bottom:359.694667pt;}
.y228{bottom:360.960000pt;}
.y15b{bottom:361.918667pt;}
.y18d{bottom:363.552000pt;}
.y158{bottom:364.800000pt;}
.y136{bottom:365.438667pt;}
.y17e{bottom:366.081333pt;}
.yc3{bottom:366.110667pt;}
.yf7{bottom:367.358667pt;}
.y62{bottom:369.636000pt;}
.ya3{bottom:370.909333pt;}
.y15a{bottom:374.080000pt;}
.y3d{bottom:376.993333pt;}
.y134{bottom:377.280000pt;}
.y1fc{bottom:379.198667pt;}
.y18{bottom:379.220000pt;}
.y1b8{bottom:380.493333pt;}
.y17d{bottom:381.440000pt;}
.yf8{bottom:381.758667pt;}
.y11f{bottom:381.760000pt;}
.y18c{bottom:384.030667pt;}
.yc2{bottom:386.909333pt;}
.y229{bottom:389.118667pt;}
.y61{bottom:390.114667pt;}
.ya2{bottom:391.388000pt;}
.y1df{bottom:393.609333pt;}
.y19f{bottom:393.614667pt;}
.y157{bottom:395.518667pt;}
.y17c{bottom:397.118667pt;}
.y133{bottom:397.121333pt;}
.y3c{bottom:397.472000pt;}
.y1c9{bottom:400.972000pt;}
.y18b{bottom:404.829333pt;}
.y156{bottom:407.680000pt;}
.y17b{bottom:408.960000pt;}
.y60{bottom:410.913333pt;}
.y1fb{bottom:411.518667pt;}
.ya1{bottom:411.866667pt;}
.y131{bottom:412.480000pt;}
.y17{bottom:413.140000pt;}
.y1de{bottom:414.408000pt;}
.y19e{bottom:414.413333pt;}
.y227{bottom:416.320000pt;}
.y3b{bottom:417.950667pt;}
.y1f1{bottom:418.558667pt;}
.yc1{bottom:420.829333pt;}
.yb5{bottom:424.034667pt;}
.y192{bottom:425.308000pt;}
.y155{bottom:427.198667pt;}
.y132{bottom:427.838667pt;}
.y17a{bottom:428.480000pt;}
.y5f{bottom:431.392000pt;}
.ya0{bottom:432.665333pt;}
.y16{bottom:433.618667pt;}
.y1b7{bottom:434.892000pt;}
.y226{bottom:438.400000pt;}
.yd1{bottom:438.732000pt;}
.y4f{bottom:438.749333pt;}
.y154{bottom:439.040000pt;}
.y130{bottom:440.000000pt;}
.y179{bottom:440.640000pt;}
.yc0{bottom:441.308000pt;}
.yb4{bottom:444.833333pt;}
.y1fa{bottom:447.358667pt;}
.y1dd{bottom:448.328000pt;}
.y19d{bottom:448.333333pt;}
.y3a{bottom:451.870667pt;}
.y9f{bottom:453.144000pt;}
.y15{bottom:454.417333pt;}
.y1c8{bottom:455.370667pt;}
.y151{bottom:458.880000pt;}
.y153{bottom:458.881333pt;}
.y1f9{bottom:459.198667pt;}
.yd0{bottom:459.210667pt;}
.y4e{bottom:459.228000pt;}
.y12f{bottom:459.522667pt;}
.y177{bottom:460.161333pt;}
.ybf{bottom:461.786667pt;}
.yb3{bottom:465.312000pt;}
.y116{bottom:466.262667pt;}
.y1dc{bottom:468.806667pt;}
.y19c{bottom:468.812000pt;}
.y39{bottom:472.669333pt;}
.y9e{bottom:473.622667pt;}
.y152{bottom:474.240000pt;}
.y12e{bottom:474.881333pt;}
.y14{bottom:474.896000pt;}
.y176{bottom:475.520000pt;}
.y1c7{bottom:476.169333pt;}
.y225{bottom:476.800000pt;}
.y1f8{bottom:479.038667pt;}
.y4d{bottom:479.706667pt;}
.ycf{bottom:480.009333pt;}
.ybe{bottom:482.585333pt;}
.yb2{bottom:485.790667pt;}
.y150{bottom:486.080000pt;}
.y115{bottom:486.741333pt;}
.y1b6{bottom:489.290667pt;}
.y12d{bottom:490.560000pt;}
.y175{bottom:491.198667pt;}
.y38{bottom:493.148000pt;}
.y1f7{bottom:494.398667pt;}
.y13{bottom:495.374667pt;}
.y224{bottom:496.960000pt;}
.y16d{bottom:497.920000pt;}
.yce{bottom:500.488000pt;}
.y4c{bottom:500.505333pt;}
.y12c{bottom:502.400000pt;}
.y1db{bottom:502.726667pt;}
.y19b{bottom:502.732000pt;}
.y174{bottom:503.040000pt;}
.ybd{bottom:503.064000pt;}
.y14e{bottom:505.918667pt;}
.y1f6{bottom:506.238667pt;}
.y7d{bottom:506.589333pt;}
.y16e{bottom:506.880000pt;}
.y114{bottom:507.220000pt;}
.y9d{bottom:507.542667pt;}
.y126{bottom:507.840000pt;}
.y1c6{bottom:510.089333pt;}
.y37{bottom:513.626667pt;}
.y12{bottom:516.173333pt;}
.y14d{bottom:517.760000pt;}
.ycd{bottom:520.966667pt;}
.y191{bottom:520.984000pt;}
.y12b{bottom:521.920000pt;}
.y173{bottom:522.561333pt;}
.y125{bottom:523.198667pt;}
.y19a{bottom:523.210667pt;}
.ybc{bottom:523.542667pt;}
.y7c{bottom:527.068000pt;}
.y113{bottom:528.018667pt;}
.y9c{bottom:528.341333pt;}
.y1f5{bottom:530.558667pt;}
.y223{bottom:533.118667pt;}
.y36{bottom:534.425333pt;}
.y1da{bottom:536.646667pt;}
.y11{bottom:536.652000pt;}
.y12a{bottom:537.598667pt;}
.y172{bottom:538.240000pt;}
.y1b5{bottom:544.009333pt;}
.ybb{bottom:544.341333pt;}
.y1f4{bottom:545.918667pt;}
.y7b{bottom:547.546667pt;}
.y222{bottom:548.480000pt;}
.y112{bottom:548.497333pt;}
.y9b{bottom:548.820000pt;}
.y129{bottom:549.440000pt;}
.y148{bottom:550.400000pt;}
.y171{bottom:553.598667pt;}
.y149{bottom:554.880000pt;}
.ycc{bottom:554.886667pt;}
.y35{bottom:554.904000pt;}
.y10{bottom:557.130667pt;}
.y1f3{bottom:561.598667pt;}
.y1c5{bottom:564.488000pt;}
.yba{bottom:564.820000pt;}
.y221{bottom:565.438667pt;}
.y170{bottom:565.440000pt;}
.y7a{bottom:568.345333pt;}
.y128{bottom:568.960000pt;}
.y14c{bottom:568.961333pt;}
.y111{bottom:568.976000pt;}
.y9a{bottom:569.298667pt;}
.y122{bottom:569.600000pt;}
.y1d9{bottom:570.566667pt;}
.y1f2{bottom:573.438667pt;}
.y34{bottom:575.382667pt;}
.ycb{bottom:575.685333pt;}
.yf{bottom:577.929333pt;}
.y127{bottom:581.120000pt;}
.y14b{bottom:584.640000pt;}
.y16f{bottom:585.282667pt;}
.y79{bottom:588.824000pt;}
.y1f0{bottom:589.438667pt;}
.y110{bottom:589.774667pt;}
.y99{bottom:590.097333pt;}
.y1d8{bottom:591.045333pt;}
.y33{bottom:596.181333pt;}
.y14a{bottom:596.480000pt;}
.ye{bottom:598.408000pt;}
.yb9{bottom:598.740000pt;}
.y121{bottom:600.640000pt;}
.y124{bottom:600.641333pt;}
.yca{bottom:609.284000pt;}
.y5e{bottom:609.302667pt;}
.y10f{bottom:610.253333pt;}
.y98{bottom:610.576000pt;}
.y199{bottom:611.849333pt;}
.y123{bottom:616.000000pt;}
.y32{bottom:616.660000pt;}
.yd{bottom:618.886667pt;}
.y1d7{bottom:624.965333pt;}
.y1ef{bottom:625.278667pt;}
.y120{bottom:628.160000pt;}
.y5d{bottom:630.101333pt;}
.y97{bottom:631.054667pt;}
.y198{bottom:632.328000pt;}
.y31{bottom:637.138667pt;}
.yc{bottom:639.685333pt;}
.y10e{bottom:644.173333pt;}
.y1d6{bottom:645.764000pt;}
.y11c{bottom:647.680000pt;}
.ye5{bottom:650.558667pt;}
.y5c{bottom:650.580000pt;}
.y11d{bottom:651.840000pt;}
.y96{bottom:651.853333pt;}
.y1af{bottom:652.806667pt;}
.y16c{bottom:653.120000pt;}
.y4b{bottom:657.937333pt;}
.y147{bottom:658.880000pt;}
.yb{bottom:660.164000pt;}
.y11b{bottom:663.038667pt;}
.y197{bottom:666.248000pt;}
.yed{bottom:667.518667pt;}
.yda{bottom:667.838667pt;}
.y220{bottom:669.758667pt;}
.y30{bottom:671.058667pt;}
.y1ee{bottom:672.000000pt;}
.y95{bottom:672.332000pt;}
.y1ae{bottom:673.605333pt;}
.y119{bottom:675.200000pt;}
.y16b{bottom:675.840000pt;}
.y4a{bottom:678.416000pt;}
.y1d5{bottom:679.684000pt;}
.yec{bottom:683.838667pt;}
.y1b4{bottom:686.726667pt;}
.ydb{bottom:687.358667pt;}
.y2f{bottom:691.857333pt;}
.y94{bottom:692.810667pt;}
.ya{bottom:694.084000pt;}
.y10d{bottom:696.013333pt;}
.y49{bottom:698.894667pt;}
.y1d4{bottom:700.162667pt;}
.y118{bottom:703.998667pt;}
.ye6{bottom:704.320000pt;}
.yb1{bottom:704.978667pt;}
.ydc{bottom:706.878667pt;}
.y1ad{bottom:707.525333pt;}
.yeb{bottom:707.840000pt;}
.y2e{bottom:712.336000pt;}
.y93{bottom:713.609333pt;}
.y10c{bottom:716.492000pt;}
.y1ea{bottom:720.646667pt;}
.yea{bottom:724.160000pt;}
.y78{bottom:725.777333pt;}
.ydd{bottom:726.398667pt;}
.y1ac{bottom:728.004000pt;}
.y2d{bottom:732.814667pt;}
.y1d3{bottom:734.082667pt;}
.y196{bottom:734.088000pt;}
.y10b{bottom:737.290667pt;}
.y1b3{bottom:741.445333pt;}
.yde{bottom:745.918667pt;}
.y77{bottom:746.256000pt;}
.y92{bottom:747.529333pt;}
.y2c{bottom:753.613333pt;}
.y1d2{bottom:754.881333pt;}
.y195{bottom:754.886667pt;}
.y10a{bottom:757.769333pt;}
.y9{bottom:761.924000pt;}
.ye9{bottom:764.160000pt;}
.ydf{bottom:765.438667pt;}
.y21e{bottom:765.440000pt;}
.y76{bottom:766.734667pt;}
.y2b{bottom:774.092000pt;}
.y194{bottom:775.365333pt;}
.y109{bottom:778.248000pt;}
.y91{bottom:781.449333pt;}
.y8{bottom:782.722667pt;}
.ye0{bottom:784.958667pt;}
.y75{bottom:787.533333pt;}
.y1d1{bottom:788.801333pt;}
.y21d{bottom:794.880000pt;}
.y2a{bottom:794.890667pt;}
.y1b2{bottom:795.844000pt;}
.y108{bottom:799.046667pt;}
.ye1{bottom:804.478667pt;}
.ye8{bottom:804.480000pt;}
.y74{bottom:808.012000pt;}
.y1d0{bottom:809.280000pt;}
.y193{bottom:809.285333pt;}
.y21c{bottom:810.558667pt;}
.y29{bottom:815.369333pt;}
.y7{bottom:816.642667pt;}
.y21b{bottom:822.398667pt;}
.ye2{bottom:823.998667pt;}
.y73{bottom:828.810667pt;}
.y1b1{bottom:829.764000pt;}
.y107{bottom:832.966667pt;}
.y28{bottom:835.848000pt;}
.y6{bottom:837.121333pt;}
.y21a{bottom:842.238667pt;}
.y1cf{bottom:843.200000pt;}
.ye3{bottom:843.518667pt;}
.ye7{bottom:844.800000pt;}
.y72{bottom:849.289333pt;}
.y1ab{bottom:850.562667pt;}
.y106{bottom:853.445333pt;}
.y219{bottom:854.078667pt;}
.y27{bottom:856.646667pt;}
.ye4{bottom:863.038667pt;}
.y1ce{bottom:863.678667pt;}
.y210{bottom:867.198667pt;}
.y71{bottom:869.768000pt;}
.y5{bottom:871.041333pt;}
.y218{bottom:873.600000pt;}
.y105{bottom:873.924000pt;}
.y26{bottom:877.125333pt;}
.y1b0{bottom:884.482667pt;}
.y217{bottom:885.758667pt;}
.y70{bottom:890.566667pt;}
.y1c4{bottom:891.520000pt;}
.y104{bottom:894.722667pt;}
.y25{bottom:897.604000pt;}
.y1aa{bottom:904.961333pt;}
.y216{bottom:905.281333pt;}
.y6f{bottom:911.045333pt;}
.y103{bottom:915.201333pt;}
.y24{bottom:918.402667pt;}
.y215{bottom:920.640000pt;}
.y1ed{bottom:925.438667pt;}
.y1c3{bottom:925.440000pt;}
.y6e{bottom:931.524000pt;}
.y213{bottom:932.798667pt;}
.y102{bottom:935.680000pt;}
.y5b{bottom:938.881333pt;}
.y1c2{bottom:946.238667pt;}
.y212{bottom:952.320000pt;}
.y23{bottom:952.322667pt;}
.y5a{bottom:959.360000pt;}
.y4{bottom:961.774667pt;}
.y211{bottom:964.160000pt;}
.y101{bottom:969.600000pt;}
.y22{bottom:972.801333pt;}
.y18a{bottom:980.158667pt;}
.y1ec{bottom:993.278667pt;}
.y3{bottom:993.280000pt;}
.y20f{bottom:1000.000000pt;}
.y100{bottom:1004.160000pt;}
.y20e{bottom:1012.160000pt;}
.y2{bottom:1014.078667pt;}
.yff{bottom:1017.278667pt;}
.h10{height:15.358667pt;}
.he{height:15.360000pt;}
.h13{height:34.878667pt;}
.h5{height:35.347500pt;}
.h8{height:42.853339pt;}
.h3{height:48.703125pt;}
.hb{height:49.347089pt;}
.h11{height:51.944589pt;}
.hf{height:52.194562pt;}
.h6{height:54.547500pt;}
.h7{height:54.810000pt;}
.h2{height:59.737089pt;}
.h4{height:60.024562pt;}
.h14{height:80.104589pt;}
.h15{height:85.224589pt;}
.h9{height:94.048005pt;}
.ha{height:95.328005pt;}
.h12{height:113.379255pt;}
.hd{height:793.333333pt;}
.hc{height:793.600000pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w15{width:2.878667pt;}
.w46{width:2.880000pt;}
.w4a{width:3.198667pt;}
.w8{width:3.200000pt;}
.w74{width:3.520000pt;}
.wa{width:3.838667pt;}
.w57{width:5.120000pt;}
.w51{width:6.080000pt;}
.w7f{width:6.398667pt;}
.w2f{width:6.400000pt;}
.w3a{width:6.718667pt;}
.w60{width:6.720000pt;}
.w2b{width:8.960000pt;}
.w1f{width:10.878667pt;}
.w40{width:10.880000pt;}
.w6c{width:14.080000pt;}
.w9{width:14.400000pt;}
.w32{width:19.200000pt;}
.w5f{width:19.518667pt;}
.w1c{width:19.838667pt;}
.wd{width:20.160000pt;}
.w62{width:21.438667pt;}
.w30{width:22.718667pt;}
.w64{width:24.958667pt;}
.w5{width:28.478667pt;}
.w4d{width:29.120000pt;}
.w54{width:29.440000pt;}
.w7{width:31.040000pt;}
.w43{width:31.678667pt;}
.w23{width:32.320000pt;}
.w27{width:33.598667pt;}
.w14{width:33.600000pt;}
.wb{width:35.518667pt;}
.w28{width:35.520000pt;}
.w45{width:36.158667pt;}
.w39{width:36.160000pt;}
.w10{width:38.398667pt;}
.w17{width:38.718667pt;}
.w3c{width:38.720000pt;}
.w4{width:39.038667pt;}
.w25{width:39.040000pt;}
.w21{width:40.000000pt;}
.w44{width:40.638667pt;}
.w6{width:40.640000pt;}
.w59{width:41.278667pt;}
.w26{width:44.160000pt;}
.w2d{width:44.478667pt;}
.w1e{width:48.000000pt;}
.w83{width:49.280000pt;}
.w56{width:51.200000pt;}
.w52{width:51.518667pt;}
.w12{width:52.160000pt;}
.w78{width:58.560000pt;}
.w5a{width:58.878667pt;}
.w13{width:59.838667pt;}
.w81{width:62.400000pt;}
.w5c{width:63.040000pt;}
.w7d{width:64.320000pt;}
.w7c{width:65.598667pt;}
.w7b{width:65.918667pt;}
.w4f{width:67.838667pt;}
.w35{width:72.000000pt;}
.w68{width:73.280000pt;}
.w1d{width:77.438667pt;}
.w79{width:78.718667pt;}
.w6e{width:81.280000pt;}
.w3b{width:81.918667pt;}
.w76{width:82.240000pt;}
.w69{width:82.558667pt;}
.w6d{width:86.720000pt;}
.w82{width:88.638667pt;}
.w20{width:89.280000pt;}
.w4b{width:93.120000pt;}
.wc{width:106.238667pt;}
.w2a{width:111.038667pt;}
.w7e{width:112.320000pt;}
.w53{width:116.478667pt;}
.w38{width:130.558667pt;}
.w37{width:136.638667pt;}
.w5b{width:136.958667pt;}
.w72{width:141.120000pt;}
.w11{width:144.638667pt;}
.w1b{width:145.600000pt;}
.w34{width:149.120000pt;}
.w3e{width:152.000000pt;}
.w61{width:158.400000pt;}
.w41{width:158.720000pt;}
.w2e{width:167.680000pt;}
.w6f{width:168.958667pt;}
.w2c{width:185.918667pt;}
.w4c{width:188.798667pt;}
.w71{width:219.838667pt;}
.w18{width:222.078667pt;}
.w77{width:229.440000pt;}
.w5e{width:231.680000pt;}
.wf{width:237.440000pt;}
.w70{width:260.160000pt;}
.w58{width:261.758667pt;}
.w4e{width:264.958667pt;}
.we{width:267.518667pt;}
.w29{width:271.038667pt;}
.w24{width:273.280000pt;}
.w50{width:277.440000pt;}
.w73{width:281.278667pt;}
.w80{width:281.918667pt;}
.w65{width:289.598667pt;}
.w22{width:292.478667pt;}
.w84{width:294.718667pt;}
.w75{width:303.680000pt;}
.w19{width:306.878667pt;}
.w31{width:313.280000pt;}
.w36{width:317.118667pt;}
.w48{width:324.798667pt;}
.w6b{width:328.638667pt;}
.w3f{width:333.118667pt;}
.w66{width:343.358667pt;}
.w67{width:346.878667pt;}
.w16{width:348.160000pt;}
.w63{width:349.440000pt;}
.w3d{width:360.640000pt;}
.w6a{width:372.160000pt;}
.w42{width:386.240000pt;}
.w33{width:386.878667pt;}
.w47{width:391.038667pt;}
.w1a{width:409.280000pt;}
.w7a{width:418.878667pt;}
.w49{width:420.800000pt;}
.w5d{width:429.120000pt;}
.w55{width:438.398667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:1122.558667pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x61{left:12.480000pt;}
.x66{left:22.081333pt;}
.x32{left:42.241333pt;}
.x30{left:45.118667pt;}
.x19{left:47.360000pt;}
.x17{left:50.238667pt;}
.x35{left:54.398667pt;}
.x31{left:57.600000pt;}
.x1d{left:59.198667pt;}
.x18{left:62.718667pt;}
.x36{left:70.078667pt;}
.x2{left:75.520000pt;}
.x16{left:94.401333pt;}
.x3d{left:98.878667pt;}
.x69{left:100.798667pt;}
.x68{left:102.080000pt;}
.xd{left:103.678667pt;}
.x34{left:105.600000pt;}
.x1b{left:108.798667pt;}
.xb{left:111.038667pt;}
.xa{left:117.758667pt;}
.x13{left:120.000000pt;}
.x9{left:124.478667pt;}
.x11{left:127.038667pt;}
.x1a{left:128.960000pt;}
.x4b{left:130.560000pt;}
.x3e{left:132.478667pt;}
.x10{left:134.078667pt;}
.x43{left:135.040000pt;}
.x28{left:137.600000pt;}
.xf{left:140.798667pt;}
.x37{left:155.838667pt;}
.x1c{left:157.118667pt;}
.xc{left:167.038667pt;}
.x4{left:175.040000pt;}
.x12{left:186.237333pt;}
.x1e{left:187.838667pt;}
.x38{left:189.438667pt;}
.x47{left:194.558667pt;}
.x29{left:195.518667pt;}
.x67{left:207.360000pt;}
.x1f{left:212.798667pt;}
.x20{left:227.200000pt;}
.x21{left:231.040000pt;}
.x56{left:237.758667pt;}
.x57{left:241.598667pt;}
.x5{left:250.560000pt;}
.x65{left:262.080000pt;}
.x51{left:264.000000pt;}
.x22{left:266.558667pt;}
.x52{left:269.120000pt;}
.x3b{left:310.718667pt;}
.x63{left:325.120000pt;}
.x6{left:326.400000pt;}
.x64{left:331.518667pt;}
.x5f{left:353.918667pt;}
.x26{left:357.438667pt;}
.x60{left:360.640000pt;}
.x3f{left:361.598667pt;}
.x23{left:372.798667pt;}
.x39{left:377.278667pt;}
.x40{left:381.758667pt;}
.x3a{left:386.240000pt;}
.x24{left:392.958667pt;}
.x33{left:394.560000pt;}
.x41{left:402.560000pt;}
.x42{left:406.400000pt;}
.x27{left:409.598667pt;}
.x2a{left:412.160000pt;}
.x7{left:423.358667pt;}
.x2b{left:432.000000pt;}
.x53{left:444.480000pt;}
.x44{left:449.918667pt;}
.x45{left:456.638667pt;}
.x54{left:476.798667pt;}
.x4c{left:477.758667pt;}
.x55{left:483.518667pt;}
.x4e{left:493.118667pt;}
.x4d{left:497.918667pt;}
.x4f{left:502.080000pt;}
.x8{left:505.918667pt;}
.x2c{left:509.438667pt;}
.x2d{left:529.598667pt;}
.x5d{left:541.438667pt;}
.xe{left:545.918667pt;}
.x50{left:553.598667pt;}
.x5e{left:555.518667pt;}
.x58{left:559.678667pt;}
.x62{left:560.958667pt;}
.x59{left:568.638667pt;}
.x46{left:573.118667pt;}
.x2e{left:577.598667pt;}
.x5a{left:584.958667pt;}
.x5b{left:588.798667pt;}
.x2f{left:590.718667pt;}
.x48{left:599.358667pt;}
.x5c{left:603.198667pt;}
.x14{left:612.160000pt;}
.x49{left:633.598667pt;}
.x4a{left:639.678667pt;}
.x3{left:703.358667pt;}
.x1{left:710.718667pt;}
.x15{left:1013.120000pt;}
.x25{left:1054.078667pt;}
.x3c{left:1062.718667pt;}
}




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