
    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_fe18664eaa521cfac0c2372f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_be76917b98659865b06ab576.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e383cd5c2640eb92662f874.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.732000;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_cc6f9ca900fc1e7809829ba6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_712bfbbae31abc1f64826721.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b33f248fa1135a6ef0583bac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b0724c7baf78ea9c4eaa316e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.457000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f926817f39498257cdb29d59.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5025992757590115f0ee57de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8a1ba44d184410c0063f6862.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_13b7b24ab4e735d7d2b8328a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8f086a680fe009bcb28e1193.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a8f65146c37f79752c73f859.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.051000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d0dff3731fdba9359968e5de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_56d30d4aed5c05dc88369970.woff2')format("woff");}.fff{font-family:fff;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d4c8f1106cad5f86c55e51a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3b92acd512e9b663add350a6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a50c49a5ee5d4f3bf3accc84.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.005880px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000120px;}
.ls2{letter-spacing:0.005880px;}
.lsf{letter-spacing:0.023959px;}
.lse{letter-spacing:0.024019px;}
.ls8{letter-spacing:0.029350px;}
.ls9{letter-spacing:0.029378px;}
.ls7{letter-spacing:0.029410px;}
.ls14{letter-spacing:0.058484px;}
.ls16{letter-spacing:0.058547px;}
.ls6{letter-spacing:0.164605px;}
.ls4{letter-spacing:0.164665px;}
.lsc{letter-spacing:0.199891px;}
.lsb{letter-spacing:0.199922px;}
.ls12{letter-spacing:0.235237px;}
.ls3{letter-spacing:0.417470px;}
.ls15{letter-spacing:13.400814px;}
.ls13{letter-spacing:13.504277px;}
.ls10{letter-spacing:14.423807px;}
.ls0{letter-spacing:16.218185px;}
.lsa{letter-spacing:32.004518px;}
.ls11{letter-spacing:37.784498px;}
.lsd{letter-spacing:38.249031px;}
.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;}
}
.ws22d{word-spacing:-10.508400px;}
.ws35{word-spacing:-0.061800px;}
.ws18{word-spacing:-0.060001px;}
.ws8f{word-spacing:-0.058799px;}
.ws149{word-spacing:-0.047999px;}
.ws1e8{word-spacing:-0.044999px;}
.ws34{word-spacing:0.000000px;}
.ws185{word-spacing:9.225485px;}
.ws147{word-spacing:9.244685px;}
.ws164{word-spacing:9.263884px;}
.ws124{word-spacing:11.454123px;}
.wsae{word-spacing:11.583482px;}
.ws1b{word-spacing:11.640116px;}
.ws130{word-spacing:11.671681px;}
.wsad{word-spacing:11.795160px;}
.ws28{word-spacing:11.884342px;}
.ws1bd{word-spacing:12.283046px;}
.ws1bf{word-spacing:12.307046px;}
.ws1bb{word-spacing:12.326245px;}
.ws2d{word-spacing:12.465422px;}
.ws1be{word-spacing:12.465445px;}
.ws2f{word-spacing:12.482222px;}
.ws2c{word-spacing:12.570420px;}
.ws30{word-spacing:12.595620px;}
.ws1bc{word-spacing:12.729441px;}
.ws2e{word-spacing:12.860217px;}
.ws1f4{word-spacing:13.148825px;}
.ws21a{word-spacing:13.162324px;}
.ws1ff{word-spacing:13.166825px;}
.ws225{word-spacing:13.180324px;}
.ws220{word-spacing:13.207324px;}
.ws20a{word-spacing:13.211824px;}
.ws1fa{word-spacing:13.216324px;}
.ws1f9{word-spacing:13.220823px;}
.ws227{word-spacing:13.225323px;}
.ws228{word-spacing:13.229824px;}
.ws207{word-spacing:13.234319px;}
.ws222{word-spacing:13.234324px;}
.ws1fc{word-spacing:13.238824px;}
.ws1f2{word-spacing:13.243323px;}
.ws1f8{word-spacing:13.247823px;}
.ws209{word-spacing:13.256824px;}
.ws214{word-spacing:13.265823px;}
.ws215{word-spacing:13.274823px;}
.ws218{word-spacing:13.279323px;}
.ws210{word-spacing:13.288322px;}
.ws213{word-spacing:13.310822px;}
.ws21d{word-spacing:13.310831px;}
.ws21f{word-spacing:13.315322px;}
.ws204{word-spacing:13.319822px;}
.ws1f7{word-spacing:13.324323px;}
.ws1f5{word-spacing:13.328823px;}
.ws1f3{word-spacing:13.333322px;}
.ws20c{word-spacing:13.337822px;}
.ws29{word-spacing:13.342322px;}
.ws221{word-spacing:13.360273px;}
.ws1ee{word-spacing:13.369322px;}
.ws1fe{word-spacing:13.373822px;}
.ws20f{word-spacing:13.387322px;}
.ws217{word-spacing:13.391822px;}
.ws20e{word-spacing:13.396322px;}
.ws1f6{word-spacing:13.405321px;}
.ws20b{word-spacing:13.409821px;}
.ws216{word-spacing:13.414322px;}
.ws1ec{word-spacing:13.432321px;}
.ws201{word-spacing:13.436821px;}
.ws1fb{word-spacing:13.445820px;}
.ws22b{word-spacing:13.459321px;}
.ws1e9{word-spacing:13.481821px;}
.ws211{word-spacing:13.490812px;}
.ws223{word-spacing:13.490820px;}
.ws1e3{word-spacing:13.499820px;}
.ws1e7{word-spacing:13.508820px;}
.ws219{word-spacing:13.517819px;}
.ws1fd{word-spacing:13.522320px;}
.ws1e4{word-spacing:13.526820px;}
.ws20d{word-spacing:13.535819px;}
.ws202{word-spacing:13.544819px;}
.ws205{word-spacing:13.549320px;}
.ws1ea{word-spacing:13.562819px;}
.ws21c{word-spacing:13.567319px;}
.ws1e2{word-spacing:13.567342px;}
.ws1e5{word-spacing:13.571819px;}
.ws1ed{word-spacing:13.576319px;}
.ws1ef{word-spacing:13.580818px;}
.ws22a{word-spacing:13.585318px;}
.ws142{word-spacing:13.588631px;}
.ws229{word-spacing:13.594319px;}
.ws206{word-spacing:13.598801px;}
.ws208{word-spacing:13.607818px;}
.ws200{word-spacing:13.612318px;}
.ws22c{word-spacing:13.616819px;}
.ws21b{word-spacing:13.630318px;}
.ws15d{word-spacing:13.646229px;}
.ws21e{word-spacing:13.648315px;}
.ws212{word-spacing:13.670817px;}
.ws2a{word-spacing:13.684318px;}
.ws224{word-spacing:13.693317px;}
.ws184{word-spacing:13.708629px;}
.ws14c{word-spacing:13.727828px;}
.ws1b8{word-spacing:13.737429px;}
.ws1f0{word-spacing:13.760816px;}
.ws226{word-spacing:13.769816px;}
.ws161{word-spacing:13.780628px;}
.ws1e6{word-spacing:13.787816px;}
.ws1ba{word-spacing:13.814227px;}
.ws1f1{word-spacing:13.814816px;}
.ws15e{word-spacing:13.819027px;}
.ws162{word-spacing:13.833428px;}
.ws203{word-spacing:13.864316px;}
.ws2b{word-spacing:13.873315px;}
.ws1eb{word-spacing:13.882315px;}
.ws1b9{word-spacing:13.910226px;}
.ws189{word-spacing:13.915026px;}
.ws18a{word-spacing:13.919826px;}
.ws146{word-spacing:13.934225px;}
.ws141{word-spacing:13.958225px;}
.ws18b{word-spacing:13.967810px;}
.ws188{word-spacing:13.967870px;}
.ws186{word-spacing:13.972626px;}
.ws140{word-spacing:13.982225px;}
.ws160{word-spacing:13.991831px;}
.ws148{word-spacing:14.011024px;}
.ws14a{word-spacing:14.030224px;}
.ws14e{word-spacing:14.039786px;}
.ws31{word-spacing:14.039846px;}
.ws18c{word-spacing:14.063824px;}
.ws32{word-spacing:14.068584px;}
.ws14f{word-spacing:14.068644px;}
.ws144{word-spacing:14.121424px;}
.ws187{word-spacing:14.126223px;}
.ws183{word-spacing:14.145424px;}
.ws165{word-spacing:14.150223px;}
.ws15f{word-spacing:14.188623px;}
.ws166{word-spacing:14.193423px;}
.wsa6{word-spacing:14.251021px;}
.ws145{word-spacing:14.294253px;}
.ws33{word-spacing:14.299021px;}
.ws143{word-spacing:14.327771px;}
.ws14d{word-spacing:14.337421px;}
.ws163{word-spacing:14.351821px;}
.ws14b{word-spacing:14.371020px;}
.ws8c{word-spacing:14.723369px;}
.ws72{word-spacing:15.211405px;}
.wsdd{word-spacing:15.487761px;}
.wsb6{word-spacing:15.605360px;}
.wscb{word-spacing:15.617121px;}
.wsd7{word-spacing:15.664160px;}
.wsa5{word-spacing:15.681801px;}
.ws90{word-spacing:15.740600px;}
.ws198{word-spacing:15.770000px;}
.wsce{word-spacing:15.775878px;}
.ws27{word-spacing:15.780158px;}
.ws65{word-spacing:15.805278px;}
.ws20{word-spacing:15.810158px;}
.ws74{word-spacing:15.834678px;}
.ws15{word-spacing:15.888158px;}
.ws16{word-spacing:15.906160px;}
.ws1c{word-spacing:15.912160px;}
.ws1e{word-spacing:15.936187px;}
.ws17{word-spacing:15.942160px;}
.ws23{word-spacing:15.948159px;}
.ws26{word-spacing:16.002161px;}
.ws24{word-spacing:16.032161px;}
.ws1f{word-spacing:16.038160px;}
.ws21{word-spacing:16.038179px;}
.ws25{word-spacing:16.050207px;}
.wsa4{word-spacing:16.081636px;}
.ws1d{word-spacing:16.092162px;}
.ws22{word-spacing:16.110161px;}
.ws13{word-spacing:16.122162px;}
.ws14{word-spacing:16.140110px;}
.ws1a{word-spacing:16.176162px;}
.ws6d{word-spacing:16.287433px;}
.ws12{word-spacing:16.290163px;}
.ws13c{word-spacing:16.339378px;}
.ws11c{word-spacing:16.350418px;}
.ws19{word-spacing:16.368163px;}
.ws10f{word-spacing:16.416658px;}
.wsde{word-spacing:16.438738px;}
.ws62{word-spacing:16.446193px;}
.wscf{word-spacing:16.477379px;}
.ws196{word-spacing:16.487351px;}
.ws191{word-spacing:16.499112px;}
.ws195{word-spacing:16.510857px;}
.wsf4{word-spacing:16.543620px;}
.ws128{word-spacing:16.554659px;}
.ws11b{word-spacing:16.626421px;}
.ws132{word-spacing:16.665061px;}
.ws193{word-spacing:16.669630px;}
.ws192{word-spacing:16.675510px;}
.ws13d{word-spacing:16.692661px;}
.ws6a{word-spacing:16.699030px;}
.ws7f{word-spacing:16.780982px;}
.ws182{word-spacing:16.787229px;}
.wsa2{word-spacing:16.869547px;}
.ws91{word-spacing:16.896904px;}
.ws82{word-spacing:17.128265px;}
.ws1a6{word-spacing:17.163544px;}
.ws3c{word-spacing:17.198824px;}
.ws13b{word-spacing:17.298784px;}
.ws1ab{word-spacing:17.322304px;}
.ws17c{word-spacing:17.363462px;}
.ws19a{word-spacing:17.398742px;}
.wsb1{word-spacing:17.463422px;}
.ws3e{word-spacing:17.492822px;}
.ws11a{word-spacing:17.498702px;}
.wseb{word-spacing:17.551621px;}
.wsc3{word-spacing:17.569260px;}
.ws131{word-spacing:17.610420px;}
.ws15a{word-spacing:17.639820px;}
.ws1b0{word-spacing:17.651579px;}
.wsbe{word-spacing:17.692739px;}
.ws85{word-spacing:17.739780px;}
.wsf{word-spacing:17.808177px;}
.wsf3{word-spacing:17.816218px;}
.wsb{word-spacing:17.820178px;}
.wsd{word-spacing:17.826179px;}
.wsc4{word-spacing:17.916178px;}
.wse{word-spacing:17.940179px;}
.ws11{word-spacing:17.994179px;}
.ws10{word-spacing:18.108180px;}
.wsd9{word-spacing:18.127854px;}
.wsa{word-spacing:18.132182px;}
.ws153{word-spacing:18.157254px;}
.wsc{word-spacing:18.294182px;}
.wsec{word-spacing:18.339532px;}
.wsb4{word-spacing:18.345413px;}
.ws199{word-spacing:18.427731px;}
.wsb3{word-spacing:18.463012px;}
.wsea{word-spacing:18.527692px;}
.ws8d{word-spacing:18.533571px;}
.ws9{word-spacing:18.600220px;}
.ws151{word-spacing:18.757009px;}
.ws1ad{word-spacing:18.874607px;}
.wsb0{word-spacing:19.086286px;}
.ws171{word-spacing:19.180365px;}
.ws177{word-spacing:19.327363px;}
.ws178{word-spacing:19.368522px;}
.ws170{word-spacing:19.456721px;}
.ws50{word-spacing:19.480241px;}
.wsaf{word-spacing:19.580200px;}
.ws190{word-spacing:19.633119px;}
.wse7{word-spacing:19.697799px;}
.ws129{word-spacing:19.744838px;}
.ws7{word-spacing:19.773780px;}
.ws6b{word-spacing:19.868317px;}
.ws6{word-spacing:19.885980px;}
.ws8{word-spacing:19.951981px;}
.ws194{word-spacing:20.021196px;}
.wsc8{word-spacing:20.056476px;}
.ws1e1{word-spacing:20.068235px;}
.wsc9{word-spacing:20.079995px;}
.ws9e{word-spacing:20.162314px;}
.ws12c{word-spacing:20.226994px;}
.wsf0{word-spacing:20.291674px;}
.ws9c{word-spacing:20.297553px;}
.ws66{word-spacing:20.379873px;}
.ws6e{word-spacing:20.385753px;}
.ws63{word-spacing:20.526871px;}
.ws64{word-spacing:20.538630px;}
.ws67{word-spacing:20.762069px;}
.wsdc{word-spacing:20.844387px;}
.ws19b{word-spacing:20.909067px;}
.ws3a{word-spacing:21.103104px;}
.ws3b{word-spacing:21.150145px;}
.ws9d{word-spacing:21.179544px;}
.ws83{word-spacing:21.185423px;}
.wscc{word-spacing:21.320663px;}
.ws73{word-spacing:21.361821px;}
.wsca{word-spacing:21.397101px;}
.ws5d{word-spacing:21.432381px;}
.ws12f{word-spacing:21.508820px;}
.ws119{word-spacing:21.526461px;}
.wsd8{word-spacing:21.532341px;}
.ws12a{word-spacing:21.549980px;}
.ws11f{word-spacing:21.620540px;}
.ws1aa{word-spacing:21.732259px;}
.wsa0{word-spacing:21.861616px;}
.ws12d{word-spacing:22.055656px;}
.ws1a9{word-spacing:22.061535px;}
.ws168{word-spacing:22.114455px;}
.wsb8{word-spacing:22.120335px;}
.ws1ac{word-spacing:22.132094px;}
.ws1df{word-spacing:22.149735px;}
.ws175{word-spacing:22.190894px;}
.ws5c{word-spacing:22.202654px;}
.wscd{word-spacing:22.284973px;}
.wsac{word-spacing:22.302612px;}
.ws118{word-spacing:22.396691px;}
.ws17f{word-spacing:22.408452px;}
.ws1a8{word-spacing:22.437852px;}
.ws5e{word-spacing:22.496651px;}
.wsa8{word-spacing:22.543689px;}
.ws159{word-spacing:22.608369px;}
.ws68{word-spacing:22.637769px;}
.ws136{word-spacing:22.702449px;}
.ws1d4{word-spacing:22.790648px;}
.wsc5{word-spacing:22.802407px;}
.wse4{word-spacing:22.837686px;}
.wse2{word-spacing:22.884727px;}
.ws135{word-spacing:22.925885px;}
.wsf2{word-spacing:23.002326px;}
.ws172{word-spacing:23.084645px;}
.ws6f{word-spacing:23.102284px;}
.ws3d{word-spacing:23.143444px;}
.ws8a{word-spacing:23.178724px;}
.ws100{word-spacing:23.225763px;}
.ws150{word-spacing:23.249282px;}
.ws5f{word-spacing:23.437441px;}
.ws10e{word-spacing:23.478600px;}
.ws173{word-spacing:23.484480px;}
.wse3{word-spacing:23.560920px;}
.ws78{word-spacing:23.566799px;}
.ws0{word-spacing:23.649601px;}
.ws5a{word-spacing:23.666759px;}
.ws127{word-spacing:23.690278px;}
.ws167{word-spacing:23.778477px;}
.ws107{word-spacing:23.784357px;}
.ws1c8{word-spacing:23.860796px;}
.ws19f{word-spacing:23.890196px;}
.wsd6{word-spacing:23.896076px;}
.ws108{word-spacing:23.907837px;}
.wse9{word-spacing:23.943116px;}
.ws154{word-spacing:23.960756px;}
.ws77{word-spacing:24.090092px;}
.ws112{word-spacing:24.131273px;}
.ws54{word-spacing:24.172434px;}
.wsd4{word-spacing:24.272392px;}
.ws19e{word-spacing:24.331191px;}
.ws39{word-spacing:24.366471px;}
.wsbc{word-spacing:24.478190px;}
.ws80{word-spacing:24.536989px;}
.ws1d3{word-spacing:24.789828px;}
.ws9f{word-spacing:24.819227px;}
.ws44{word-spacing:24.842746px;}
.ws36{word-spacing:24.848640px;}
.ws37{word-spacing:24.866266px;}
.ws114{word-spacing:24.878027px;}
.wsfa{word-spacing:24.901546px;}
.wsd0{word-spacing:24.925065px;}
.wsa1{word-spacing:25.060305px;}
.ws106{word-spacing:25.095583px;}
.ws15b{word-spacing:25.172024px;}
.ws8e{word-spacing:25.195543px;}
.ws197{word-spacing:25.266103px;}
.ws1a7{word-spacing:25.301381px;}
.ws7c{word-spacing:25.389580px;}
.wse1{word-spacing:25.401341px;}
.wsb2{word-spacing:25.489540px;}
.wsc6{word-spacing:25.518940px;}
.ws4e{word-spacing:25.560100px;}
.ws49{word-spacing:25.565979px;}
.ws1c2{word-spacing:25.607139px;}
.ws98{word-spacing:25.648299px;}
.wse0{word-spacing:25.671819px;}
.ws1d1{word-spacing:25.783537px;}
.ws99{word-spacing:25.812937px;}
.ws96{word-spacing:25.842336px;}
.ws123{word-spacing:25.854097px;}
.ws46{word-spacing:25.865855px;}
.ws89{word-spacing:25.901136px;}
.ws16a{word-spacing:25.971696px;}
.ws93{word-spacing:26.048134px;}
.ws157{word-spacing:26.101053px;}
.ws81{word-spacing:26.242172px;}
.ws71{word-spacing:26.283331px;}
.ws1cb{word-spacing:26.400931px;}
.ws6c{word-spacing:26.506769px;}
.ws125{word-spacing:26.536169px;}
.ws1b7{word-spacing:26.583209px;}
.wsb9{word-spacing:26.606729px;}
.ws113{word-spacing:26.624368px;}
.ws5b{word-spacing:26.647889px;}
.wsd2{word-spacing:26.818407px;}
.wsdf{word-spacing:26.824287px;}
.ws41{word-spacing:26.883086px;}
.wsf6{word-spacing:26.930125px;}
.ws1b4{word-spacing:26.965405px;}
.wsd3{word-spacing:27.083004px;}
.wsbd{word-spacing:27.100643px;}
.ws139{word-spacing:27.147684px;}
.ws51{word-spacing:27.206483px;}
.ws134{word-spacing:27.224122px;}
.ws4b{word-spacing:27.259402px;}
.ws133{word-spacing:27.353481px;}
.wse8{word-spacing:27.400520px;}
.ws19d{word-spacing:27.429920px;}
.ws53{word-spacing:27.512239px;}
.ws152{word-spacing:27.559279px;}
.ws4f{word-spacing:27.682757px;}
.ws121{word-spacing:27.688637px;}
.wsb5{word-spacing:27.865035px;}
.wsee{word-spacing:27.929715px;}
.wsb7{word-spacing:27.988514px;}
.ws79{word-spacing:28.047314px;}
.ws1de{word-spacing:28.111994px;}
.ws1cf{word-spacing:28.141393px;}
.ws155{word-spacing:28.235472px;}
.ws84{word-spacing:28.270751px;}
.ws126{word-spacing:28.288392px;}
.ws117{word-spacing:28.329550px;}
.ws137{word-spacing:28.453029px;}
.ws95{word-spacing:28.588269px;}
.ws109{word-spacing:28.600028px;}
.ws105{word-spacing:28.623547px;}
.ws3f{word-spacing:28.664708px;}
.ws18d{word-spacing:28.676468px;}
.ws10c{word-spacing:28.764667px;}
.ws56{word-spacing:28.782357px;}
.ws57{word-spacing:28.923424px;}
.ws88{word-spacing:29.005743px;}
.ws58{word-spacing:29.188022px;}
.ws1da{word-spacing:29.199783px;}
.ws180{word-spacing:29.264462px;}
.ws102{word-spacing:29.376181px;}
.ws16d{word-spacing:29.640778px;}
.ws101{word-spacing:29.699534px;}
.ws16c{word-spacing:29.881856px;}
.ws38{word-spacing:29.981813px;}
.ws40{word-spacing:30.028854px;}
.ws47{word-spacing:30.052374px;}
.ws92{word-spacing:30.111173px;}
.wsf1{word-spacing:30.405169px;}
.wsab{word-spacing:30.575688px;}
.ws87{word-spacing:30.628609px;}
.ws111{word-spacing:30.710926px;}
.wsfb{word-spacing:30.734447px;}
.wsda{word-spacing:30.740326px;}
.wsa9{word-spacing:30.746205px;}
.ws15c{word-spacing:30.746207px;}
.wsaa{word-spacing:30.828525px;}
.ws169{word-spacing:30.869685px;}
.ws1cc{word-spacing:31.046083px;}
.wsdb{word-spacing:31.069604px;}
.ws1c7{word-spacing:31.093124px;}
.wsbf{word-spacing:31.099004px;}
.ws1d7{word-spacing:31.351825px;}
.ws10b{word-spacing:31.369480px;}
.ws10a{word-spacing:31.387119px;}
.ws1d0{word-spacing:31.428279px;}
.ws69{word-spacing:31.487079px;}
.ws181{word-spacing:31.592917px;}
.wsc0{word-spacing:31.610556px;}
.ws1d8{word-spacing:31.651760px;}
.ws1d9{word-spacing:31.728155px;}
.ws174{word-spacing:31.775197px;}
.wse6{word-spacing:31.822236px;}
.ws60{word-spacing:31.904553px;}
.ws1a2{word-spacing:31.980968px;}
.ws1a4{word-spacing:32.022152px;}
.wsc2{word-spacing:32.104472px;}
.ws1a1{word-spacing:32.227950px;}
.ws12e{word-spacing:32.292631px;}
.ws156{word-spacing:32.322031px;}
.ws48{word-spacing:32.410230px;}
.ws1c1{word-spacing:32.427869px;}
.ws9b{word-spacing:32.445508px;}
.ws9a{word-spacing:32.463148px;}
.ws1a0{word-spacing:32.516113px;}
.ws16e{word-spacing:32.521947px;}
.ws138{word-spacing:32.668945px;}
.ws1a5{word-spacing:32.710106px;}
.ws4d{word-spacing:32.786544px;}
.ws120{word-spacing:32.815944px;}
.ws52{word-spacing:32.933552px;}
.ws1ce{word-spacing:32.998223px;}
.ws1a3{word-spacing:33.080541px;}
.wsc1{word-spacing:33.115823px;}
.ws122{word-spacing:33.127583px;}
.ws1b1{word-spacing:33.186383px;}
.wsf9{word-spacing:33.439219px;}
.ws76{word-spacing:33.462737px;}
.ws104{word-spacing:33.527418px;}
.ws7b{word-spacing:33.686177px;}
.wse5{word-spacing:33.697935px;}
.ws1c6{word-spacing:33.768495px;}
.ws110{word-spacing:33.792016px;}
.ws4a{word-spacing:33.891975px;}
.ws1ca{word-spacing:33.974294px;}
.ws11d{word-spacing:33.986053px;}
.wsff{word-spacing:34.127173px;}
.ws1d5{word-spacing:34.409409px;}
.ws1d2{word-spacing:34.415288px;}
.ws42{word-spacing:34.532889px;}
.wsfe{word-spacing:34.556408px;}
.wsf7{word-spacing:34.626968px;}
.ws1c9{word-spacing:34.632872px;}
.wsf8{word-spacing:34.662246px;}
.wsba{word-spacing:34.685767px;}
.ws59{word-spacing:34.826884px;}
.ws7d{word-spacing:34.885683px;}
.ws1c0{word-spacing:34.915083px;}
.ws13e{word-spacing:35.085603px;}
.wsd5{word-spacing:35.126763px;}
.ws16f{word-spacing:35.150281px;}
.ws18e{word-spacing:35.326679px;}
.wsc7{word-spacing:35.391360px;}
.ws1b5{word-spacing:35.414880px;}
.ws8b{word-spacing:35.603037px;}
.wsed{word-spacing:35.691236px;}
.ws86{word-spacing:35.732396px;}
.ws16b{word-spacing:35.767674px;}
.ws18f{word-spacing:35.802956px;}
.wsef{word-spacing:35.897034px;}
.wsbb{word-spacing:36.014632px;}
.ws75{word-spacing:36.032272px;}
.ws1e0{word-spacing:36.149871px;}
.ws7a{word-spacing:36.308630px;}
.ws1d6{word-spacing:36.873103px;}
.wsfc{word-spacing:37.202396px;}
.wsfd{word-spacing:37.378779px;}
.ws4c{word-spacing:37.384660px;}
.ws61{word-spacing:37.466978px;}
.wsf5{word-spacing:37.514017px;}
.ws17d{word-spacing:37.625737px;}
.ws1b6{word-spacing:37.913853px;}
.ws43{word-spacing:37.949134px;}
.ws17e{word-spacing:38.007933px;}
.ws103{word-spacing:38.078490px;}
.ws13f{word-spacing:38.107890px;}
.ws116{word-spacing:38.190210px;}
.ws1b2{word-spacing:38.225489px;}
.ws97{word-spacing:38.384248px;}
.ws115{word-spacing:38.513607px;}
.ws1ae{word-spacing:38.654727px;}
.ws1af{word-spacing:38.825243px;}
.wsa3{word-spacing:39.013402px;}
.wsd1{word-spacing:39.131001px;}
.ws13a{word-spacing:39.430876px;}
.ws176{word-spacing:39.595517px;}
.ws1c4{word-spacing:39.619035px;}
.ws1db{word-spacing:39.672016px;}
.ws7e{word-spacing:39.718995px;}
.ws94{word-spacing:39.742516px;}
.ws17a{word-spacing:39.930671px;}
.ws1dd{word-spacing:39.948314px;}
.ws1dc{word-spacing:39.977679px;}
.ws11e{word-spacing:40.254068px;}
.ws1cd{word-spacing:40.330510px;}
.ws45{word-spacing:41.394778px;}
.ws12b{word-spacing:42.100370px;}
.ws10d{word-spacing:42.194448px;}
.ws19c{word-spacing:42.394367px;}
.ws1b3{word-spacing:42.488445px;}
.ws1c3{word-spacing:42.670725px;}
.ws1{word-spacing:42.969778px;}
.ws4{word-spacing:43.142581px;}
.ws5{word-spacing:43.315379px;}
.ws2{word-spacing:43.329779px;}
.ws3{word-spacing:43.560200px;}
.ws179{word-spacing:44.581706px;}
.ws55{word-spacing:45.722412px;}
.ws1c5{word-spacing:45.845893px;}
.ws158{word-spacing:46.751402px;}
.wsa7{word-spacing:46.880761px;}
.ws70{word-spacing:47.409956px;}
.ws17b{word-spacing:48.433066px;}
._22{margin-left:-6.042988px;}
._15{margin-left:-3.897127px;}
._17{margin-left:-2.140308px;}
._9{margin-left:-1.113586px;}
._3{width:1.182008px;}
._e{width:2.475455px;}
._0{width:8.954400px;}
._21{width:10.265063px;}
._7{width:11.406110px;}
._1f{width:12.629972px;}
._8{width:13.738005px;}
._5{width:15.078153px;}
._6{width:17.028173px;}
._4{width:19.044190px;}
._1e{width:20.497347px;}
._18{width:21.514700px;}
._16{width:22.755368px;}
._c{width:24.290463px;}
._a{width:26.112381px;}
._14{width:27.218675px;}
._f{width:28.241069px;}
._d{width:29.999033px;}
._b{width:31.146043px;}
._1d{width:32.962950px;}
._13{width:34.050732px;}
._10{width:35.643914px;}
._20{width:36.679765px;}
._1a{width:37.725558px;}
._11{width:39.036778px;}
._1b{width:40.495147px;}
._12{width:42.464926px;}
._2{width:44.222586px;}
._23{width:47.186518px;}
._19{width:48.470632px;}
._24{width:65.861121px;}
._1c{width:1557.628608px;}
._1{width:1976.208061px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:29.995200px;}
.fsf{font-size:37.800000px;}
.fsc{font-size:39.194400px;}
.fse{font-size:40.800000px;}
.fs8{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs6{font-size:44.999400px;}
.fs9{font-size:47.999400px;}
.fsd{font-size:53.349000px;}
.fsb{font-size:55.200600px;}
.fsa{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y2d{bottom:67.520220px;}
.y2c{bottom:79.511040px;}
.y244{bottom:84.166905px;}
.yd0{bottom:88.951200px;}
.yd1{bottom:91.417350px;}
.y14b{bottom:91.417800px;}
.y218{bottom:91.418235px;}
.y104{bottom:91.418925px;}
.y1d2{bottom:91.420860px;}
.y144{bottom:91.420950px;}
.ycf{bottom:91.423170px;}
.y99{bottom:91.426170px;}
.y18a{bottom:91.428180px;}
.y1a0{bottom:91.438485px;}
.y65{bottom:91.444230px;}
.y2b{bottom:91.501875px;}
.y243{bottom:94.666800px;}
.y13b{bottom:100.771800px;}
.y2a{bottom:103.492695px;}
.y217{bottom:104.939415px;}
.y1d1{bottom:104.942055px;}
.y14a{bottom:109.445700px;}
.y103{bottom:109.446810px;}
.y143{bottom:109.448850px;}
.yce{bottom:109.451070px;}
.y98{bottom:109.454070px;}
.y189{bottom:109.456080px;}
.y19f{bottom:109.466370px;}
.y64{bottom:109.472130px;}
.y29{bottom:115.483530px;}
.y13a{bottom:115.823205px;}
.y216{bottom:118.460610px;}
.y1d0{bottom:118.463250px;}
.y242{bottom:127.200150px;}
.y149{bottom:127.389000px;}
.y102{bottom:127.389450px;}
.ycd{bottom:127.393710px;}
.y97{bottom:127.396710px;}
.y142{bottom:127.476750px;}
.y188{bottom:127.483980px;}
.y19e{bottom:127.494270px;}
.y63{bottom:127.500030px;}
.y139{bottom:130.790625px;}
.y215{bottom:131.896320px;}
.y1cf{bottom:131.898945px;}
.y28{bottom:140.910450px;}
.y101{bottom:145.417350px;}
.y214{bottom:145.417515px;}
.y141{bottom:145.419390px;}
.ycc{bottom:145.421595px;}
.y96{bottom:145.424610px;}
.y187{bottom:145.426620px;}
.y19d{bottom:145.436910px;}
.y62{bottom:145.442670px;}
.y241{bottom:145.815000px;}
.y138{bottom:145.842030px;}
.y27{bottom:154.431645px;}
.y213{bottom:158.938695px;}
.y137{bottom:160.809450px;}
.y100{bottom:163.445700px;}
.y140{bottom:163.447275px;}
.ycb{bottom:163.449495px;}
.y148{bottom:163.450215px;}
.y95{bottom:163.452495px;}
.y186{bottom:163.454505px;}
.y19c{bottom:163.464810px;}
.y61{bottom:163.470555px;}
.y1ce{bottom:164.298510px;}
.y240{bottom:164.429550px;}
.y26{bottom:167.952840px;}
.y212{bottom:172.459890px;}
.y1cd{bottom:177.819705px;}
.yca{bottom:181.392135px;}
.y94{bottom:181.395135px;}
.y25{bottom:181.474035px;}
.y13f{bottom:181.475175px;}
.y147{bottom:181.478115px;}
.y185{bottom:181.482405px;}
.y19b{bottom:181.492695px;}
.y60{bottom:181.498455px;}
.y23f{bottom:183.044400px;}
.y211{bottom:185.896710px;}
.y24{bottom:186.406185px;}
.y1cc{bottom:191.340900px;}
.y23{bottom:194.910285px;}
.y13e{bottom:199.417815px;}
.y210{bottom:199.417905px;}
.yc9{bottom:199.420035px;}
.y146{bottom:199.420740px;}
.y93{bottom:199.423035px;}
.y184{bottom:199.425045px;}
.yff{bottom:199.428675px;}
.y19a{bottom:199.435335px;}
.y5f{bottom:199.441095px;}
.y23e{bottom:201.659250px;}
.y1cb{bottom:204.862095px;}
.y20f{bottom:212.939100px;}
.y13d{bottom:217.445715px;}
.yc8{bottom:217.447920px;}
.y145{bottom:217.448640px;}
.y92{bottom:217.450935px;}
.y183{bottom:217.452945px;}
.yfe{bottom:217.456560px;}
.y199{bottom:217.463235px;}
.y5e{bottom:217.468995px;}
.y1ca{bottom:218.297790px;}
.y23d{bottom:220.274250px;}
.y20e{bottom:226.460295px;}
.yc7{bottom:235.390560px;}
.y91{bottom:235.393560px;}
.yfd{bottom:235.399200px;}
.y182{bottom:235.480830px;}
.y198{bottom:235.491135px;}
.y5d{bottom:235.496880px;}
.y20d{bottom:239.895990px;}
.y1c9{bottom:250.697355px;}
.y23c{bottom:251.663835px;}
.y20c{bottom:253.417185px;}
.yc6{bottom:253.418460px;}
.y90{bottom:253.421460px;}
.y181{bottom:253.423470px;}
.yfc{bottom:253.427100px;}
.y197{bottom:253.433760px;}
.y5c{bottom:253.439520px;}
.y150{bottom:257.499300px;}
.y1c8{bottom:264.218550px;}
.y20b{bottom:266.945955px;}
.y23b{bottom:267.668535px;}
.yc5{bottom:271.446360px;}
.y8f{bottom:271.449360px;}
.y180{bottom:271.451370px;}
.yfb{bottom:271.455000px;}
.y196{bottom:271.461660px;}
.y5b{bottom:271.467420px;}
.y14f{bottom:272.466720px;}
.y20a{bottom:280.467150px;}
.y22{bottom:285.301485px;}
.y14e{bottom:287.518125px;}
.yc4{bottom:289.388985px;}
.y8e{bottom:289.392000px;}
.yfa{bottom:289.397625px;}
.y17f{bottom:289.479270px;}
.y195{bottom:289.489560px;}
.y5a{bottom:289.495320px;}
.y209{bottom:293.902845px;}
.y1c7{bottom:296.618115px;}
.y14d{bottom:302.485545px;}
.y21{bottom:303.330165px;}
.yc3{bottom:307.417185px;}
.y8d{bottom:307.419885px;}
.y17e{bottom:307.421895px;}
.y208{bottom:307.424040px;}
.yf9{bottom:307.425525px;}
.y194{bottom:307.432200px;}
.y59{bottom:307.437960px;}
.y1c6{bottom:310.139310px;}
.y14c{bottom:317.536950px;}
.y207{bottom:320.945235px;}
.y1c5{bottom:323.660505px;}
.y8c{bottom:325.447785px;}
.y17d{bottom:325.449795px;}
.yf8{bottom:325.453425px;}
.y193{bottom:325.460085px;}
.y58{bottom:325.465845px;}
.y20{bottom:328.756920px;}
.y206{bottom:334.466430px;}
.y1c4{bottom:337.096200px;}
.y8b{bottom:343.390425px;}
.y17c{bottom:343.392435px;}
.yf7{bottom:343.396065px;}
.y192{bottom:343.402725px;}
.y57{bottom:343.408485px;}
.y1f{bottom:346.785600px;}
.y205{bottom:347.902125px;}
.yc2{bottom:349.430250px;}
.y1c3{bottom:350.617395px;}
.y8a{bottom:361.418325px;}
.y17b{bottom:361.420335px;}
.y204{bottom:361.423320px;}
.yf6{bottom:361.423950px;}
.y191{bottom:361.430625px;}
.y56{bottom:361.436385px;}
.y1c2{bottom:364.138590px;}
.y1e{bottom:364.814280px;}
.yc1{bottom:367.458150px;}
.y203{bottom:374.944515px;}
.y1c1{bottom:377.659785px;}
.y89{bottom:379.446225px;}
.y17a{bottom:379.448235px;}
.yf5{bottom:379.451850px;}
.y190{bottom:379.458525px;}
.y55{bottom:379.464285px;}
.yc0{bottom:385.400775px;}
.y1d{bottom:387.265005px;}
.y202{bottom:388.465710px;}
.y88{bottom:397.388850px;}
.y179{bottom:397.390860px;}
.yf4{bottom:397.394490px;}
.y18f{bottom:397.401165px;}
.y54{bottom:397.406910px;}
.y201{bottom:401.901405px;}
.ybf{bottom:403.428675px;}
.y1c{bottom:405.293685px;}
.y1c0{bottom:410.062800px;}
.y87{bottom:415.417335px;}
.y178{bottom:415.418760px;}
.yf3{bottom:415.422390px;}
.y200{bottom:415.422600px;}
.y18e{bottom:415.429050px;}
.y53{bottom:415.434810px;}
.ybe{bottom:421.456575px;}
.y1b{bottom:423.322365px;}
.y1bf{bottom:428.005440px;}
.y1ff{bottom:428.943795px;}
.y177{bottom:433.446660px;}
.yf2{bottom:433.450290px;}
.y160{bottom:433.452945px;}
.y18d{bottom:433.456950px;}
.y16f{bottom:433.458825px;}
.y52{bottom:433.462710px;}
.ybd{bottom:439.399215px;}
.y1a{bottom:441.265545px;}
.y1fe{bottom:442.464990px;}
.y1be{bottom:446.033340px;}
.y176{bottom:451.389300px;}
.yf1{bottom:451.392915px;}
.y15f{bottom:451.395570px;}
.y86{bottom:451.396710px;}
.y18c{bottom:451.399590px;}
.y16e{bottom:451.401465px;}
.y51{bottom:451.405350px;}
.y1fd{bottom:455.900685px;}
.ybc{bottom:457.427100px;}
.y19{bottom:459.294225px;}
.y1bd{bottom:464.061225px;}
.y175{bottom:469.417185px;}
.y11b{bottom:469.418325px;}
.yf0{bottom:469.420815px;}
.y1fc{bottom:469.421880px;}
.y15e{bottom:469.423470px;}
.y85{bottom:469.424610px;}
.y18b{bottom:469.427490px;}
.y16d{bottom:469.429365px;}
.y50{bottom:469.433250px;}
.ybb{bottom:475.455000px;}
.yb9{bottom:475.456575px;}
.y18{bottom:481.830450px;}
.yba{bottom:481.918035px;}
.y1bc{bottom:482.003865px;}
.y1fb{bottom:482.943075px;}
.y11a{bottom:487.446225px;}
.yef{bottom:487.448715px;}
.y15d{bottom:487.451370px;}
.y84{bottom:487.452495px;}
.y16c{bottom:487.457265px;}
.y4f{bottom:487.461135px;}
.yb8{bottom:493.399215px;}
.y1fa{bottom:496.464270px;}
.y17{bottom:499.773630px;}
.y1bb{bottom:500.031765px;}
.y119{bottom:505.388850px;}
.yee{bottom:505.391355px;}
.y15c{bottom:505.394010px;}
.y83{bottom:505.395135px;}
.y16b{bottom:505.399890px;}
.y4e{bottom:505.403775px;}
.y1f9{bottom:509.899965px;}
.y1a5{bottom:510.237435px;}
.yb7{bottom:511.427100px;}
.y16{bottom:517.802310px;}
.y1ba{bottom:518.059665px;}
.y118{bottom:523.417050px;}
.y136{bottom:523.417380px;}
.yed{bottom:523.419240px;}
.y1f8{bottom:523.421160px;}
.y15b{bottom:523.421895px;}
.y82{bottom:523.423035px;}
.y16a{bottom:523.427790px;}
.y4d{bottom:523.431675px;}
.y1a4{bottom:525.288840px;}
.yb6{bottom:529.455000px;}
.y15{bottom:535.830990px;}
.y1b9{bottom:536.003085px;}
.y1f7{bottom:536.942355px;}
.y1a3{bottom:540.256260px;}
.y117{bottom:541.445565px;}
.y135{bottom:541.445895px;}
.yec{bottom:541.447140px;}
.y15a{bottom:541.449795px;}
.y81{bottom:541.450935px;}
.y169{bottom:541.455690px;}
.y4c{bottom:541.459575px;}
.yb5{bottom:547.398285px;}
.y1f6{bottom:550.463550px;}
.y14{bottom:553.774170px;}
.y1a2{bottom:555.222465px;}
.y134{bottom:559.388850px;}
.yeb{bottom:559.389780px;}
.y159{bottom:559.392435px;}
.y80{bottom:559.393560px;}
.y168{bottom:559.398330px;}
.y4b{bottom:559.402200px;}
.y1f5{bottom:563.899245px;}
.y1a1{bottom:570.273885px;}
.y13{bottom:571.802850px;}
.yea{bottom:577.417680px;}
.y158{bottom:577.420335px;}
.y1f4{bottom:577.420440px;}
.y7f{bottom:577.421460px;}
.y116{bottom:577.423905px;}
.y167{bottom:577.426215px;}
.y4a{bottom:577.430100px;}
.y1b8{bottom:577.430700px;}
.y23a{bottom:586.436415px;}
.yb4{bottom:589.414965px;}
.y12{bottom:589.831530px;}
.y1f3{bottom:590.941635px;}
.ye9{bottom:595.445565px;}
.y157{bottom:595.448235px;}
.y7e{bottom:595.449360px;}
.y115{bottom:595.451805px;}
.y133{bottom:595.453290px;}
.y166{bottom:595.454115px;}
.y49{bottom:595.458000px;}
.y1b7{bottom:595.458600px;}
.y239{bottom:599.957610px;}
.y1f2{bottom:604.462830px;}
.yb3{bottom:607.442865px;}
.y11{bottom:612.282255px;}
.ye8{bottom:613.388850px;}
.y156{bottom:613.390860px;}
.y7d{bottom:613.392000px;}
.y238{bottom:613.393305px;}
.y114{bottom:613.394445px;}
.y132{bottom:613.395930px;}
.y165{bottom:613.396755px;}
.y48{bottom:613.400640px;}
.y1b6{bottom:613.401240px;}
.y1f1{bottom:617.898525px;}
.yb2{bottom:625.470765px;}
.y237{bottom:626.914500px;}
.y10{bottom:630.310935px;}
.y155{bottom:631.418760px;}
.y1f0{bottom:631.419720px;}
.y7c{bottom:631.419885px;}
.y113{bottom:631.422345px;}
.y131{bottom:631.423815px;}
.y164{bottom:631.424655px;}
.y47{bottom:631.428525px;}
.y1b5{bottom:631.429125px;}
.y236{bottom:640.435695px;}
.yb1{bottom:643.413390px;}
.y1ef{bottom:644.940915px;}
.yf{bottom:648.339615px;}
.y154{bottom:649.446660px;}
.y7b{bottom:649.447785px;}
.y112{bottom:649.450230px;}
.y130{bottom:649.451715px;}
.y163{bottom:649.452540px;}
.ye7{bottom:649.454850px;}
.y46{bottom:649.456425px;}
.y1b4{bottom:649.457025px;}
.y235{bottom:653.956890px;}
.y1ee{bottom:658.462110px;}
.yb0{bottom:661.441290px;}
.ye{bottom:666.282795px;}
.y153{bottom:667.389300px;}
.y7a{bottom:667.390425px;}
.y234{bottom:667.392585px;}
.y111{bottom:667.392870px;}
.y12f{bottom:667.394355px;}
.y162{bottom:667.395180px;}
.ye6{bottom:667.397490px;}
.y45{bottom:667.399065px;}
.y1b3{bottom:667.399665px;}
.y1ed{bottom:671.897805px;}
.yaf{bottom:679.469190px;}
.y233{bottom:680.913780px;}
.yd{bottom:684.311475px;}
.y152{bottom:685.417185px;}
.y79{bottom:685.418325px;}
.y1ec{bottom:685.419000px;}
.y110{bottom:685.420770px;}
.y12e{bottom:685.422255px;}
.y161{bottom:685.423080px;}
.ye5{bottom:685.425390px;}
.y44{bottom:685.426965px;}
.y1b2{bottom:685.427565px;}
.y232{bottom:694.434975px;}
.yae{bottom:697.411830px;}
.y1eb{bottom:698.940195px;}
.yc{bottom:702.340155px;}
.y78{bottom:703.446225px;}
.y10f{bottom:703.448670px;}
.y12d{bottom:703.450140px;}
.ye4{bottom:703.453290px;}
.y43{bottom:703.454850px;}
.y1b1{bottom:703.455465px;}
.y231{bottom:707.956170px;}
.y1ea{bottom:712.461390px;}
.yad{bottom:715.439715px;}
.yb{bottom:720.283335px;}
.y77{bottom:721.388850px;}
.y10e{bottom:721.391310px;}
.y230{bottom:721.391865px;}
.y12c{bottom:721.392780px;}
.ye3{bottom:721.395930px;}
.y42{bottom:721.397490px;}
.y1b0{bottom:721.398090px;}
.y1e9{bottom:725.897085px;}
.yac{bottom:733.467615px;}
.y22f{bottom:734.913060px;}
.y76{bottom:739.417185px;}
.y1e8{bottom:739.418280px;}
.y10d{bottom:739.419195px;}
.y12b{bottom:739.420680px;}
.ye2{bottom:739.423815px;}
.y41{bottom:739.425390px;}
.y1af{bottom:739.425990px;}
.y174{bottom:740.267745px;}
.ya{bottom:747.325770px;}
.y22e{bottom:748.434255px;}
.yab{bottom:751.410255px;}
.y1e7{bottom:752.939475px;}
.y173{bottom:755.319150px;}
.y75{bottom:757.445565px;}
.y10c{bottom:757.447095px;}
.y12a{bottom:757.448580px;}
.ye1{bottom:757.451715px;}
.y40{bottom:757.453290px;}
.y1ae{bottom:757.453890px;}
.y22d{bottom:761.955450px;}
.y1e6{bottom:766.460670px;}
.yaa{bottom:769.438155px;}
.y172{bottom:770.286570px;}
.y10b{bottom:775.389735px;}
.y129{bottom:775.391205px;}
.y22c{bottom:775.392270px;}
.ye0{bottom:775.394355px;}
.y3f{bottom:775.395930px;}
.y1ad{bottom:775.396530px;}
.y1e5{bottom:779.896365px;}
.y171{bottom:785.337975px;}
.ya9{bottom:787.466055px;}
.y22b{bottom:788.913465px;}
.y1e4{bottom:793.417560px;}
.y10a{bottom:793.417635px;}
.y128{bottom:793.419105px;}
.ydf{bottom:793.422255px;}
.y3e{bottom:793.423815px;}
.y1ac{bottom:793.424415px;}
.y74{bottom:793.447335px;}
.y170{bottom:800.305395px;}
.y22a{bottom:802.434660px;}
.y8{bottom:805.067490px;}
.ya8{bottom:805.408680px;}
.y1e3{bottom:806.938755px;}
.y109{bottom:811.445520px;}
.y127{bottom:811.447005px;}
.yde{bottom:811.450140px;}
.y3d{bottom:811.451715px;}
.y1ab{bottom:811.452315px;}
.y73{bottom:811.475235px;}
.y9{bottom:812.380905px;}
.y229{bottom:815.955855px;}
.y1e2{bottom:820.459935px;}
.ya7{bottom:823.436580px;}
.y6{bottom:826.072155px;}
.y108{bottom:829.388715px;}
.y126{bottom:829.389645px;}
.y228{bottom:829.391550px;}
.ydd{bottom:829.392780px;}
.y3c{bottom:829.394355px;}
.y1aa{bottom:829.394955px;}
.y72{bottom:829.417875px;}
.y7{bottom:833.385765px;}
.y1e1{bottom:833.896755px;}
.ya5{bottom:841.464480px;}
.y227{bottom:842.912745px;}
.y107{bottom:847.417230px;}
.y125{bottom:847.417545px;}
.y1e0{bottom:847.417950px;}
.ydc{bottom:847.420680px;}
.y3b{bottom:847.422255px;}
.y1a9{bottom:847.422855px;}
.y71{bottom:847.445775px;}
.ya6{bottom:847.927365px;}
.y226{bottom:856.433940px;}
.ya3{bottom:859.407720px;}
.y1df{bottom:860.939145px;}
.y5{bottom:862.046685px;}
.y106{bottom:865.445430px;}
.ydb{bottom:865.448580px;}
.y3a{bottom:865.450140px;}
.y1a8{bottom:865.450740px;}
.y70{bottom:865.473660px;}
.ya4{bottom:865.955655px;}
.y225{bottom:869.955135px;}
.y1de{bottom:874.460340px;}
.ya2{bottom:877.435920px;}
.y124{bottom:883.388715px;}
.y224{bottom:883.390830px;}
.yda{bottom:883.391205px;}
.y39{bottom:883.392780px;}
.y1a7{bottom:883.393380px;}
.y6f{bottom:883.416300px;}
.y1dd{bottom:887.896035px;}
.y223{bottom:896.912025px;}
.y4{bottom:901.078050px;}
.y123{bottom:901.417230px;}
.yd9{bottom:901.419105px;}
.y38{bottom:901.420680px;}
.y105{bottom:901.421280px;}
.y6e{bottom:901.444200px;}
.y222{bottom:910.433220px;}
.y1dc{bottom:914.938380px;}
.yd8{bottom:919.447005px;}
.y37{bottom:919.448580px;}
.ya1{bottom:919.449180px;}
.y6d{bottom:919.472100px;}
.y221{bottom:923.954415px;}
.yd7{bottom:937.389645px;}
.y220{bottom:937.390110px;}
.y122{bottom:937.390980px;}
.y36{bottom:937.391205px;}
.ya0{bottom:937.391820px;}
.y6c{bottom:937.414740px;}
.y3{bottom:940.026600px;}
.y21f{bottom:950.911305px;}
.yd6{bottom:955.417545px;}
.y121{bottom:955.418880px;}
.y35{bottom:955.419105px;}
.y9f{bottom:955.419705px;}
.y6b{bottom:955.442625px;}
.y1db{bottom:964.431915px;}
.y21e{bottom:964.432500px;}
.yd5{bottom:973.445430px;}
.y120{bottom:973.446765px;}
.y34{bottom:973.447005px;}
.y9e{bottom:973.447605px;}
.y6a{bottom:973.470525px;}
.y21d{bottom:977.953695px;}
.y2{bottom:979.057965px;}
.yd4{bottom:991.388670px;}
.y1da{bottom:991.388805px;}
.y21c{bottom:991.389390px;}
.y11f{bottom:991.389405px;}
.y33{bottom:991.389645px;}
.y9d{bottom:991.390245px;}
.y69{bottom:991.413165px;}
.y1d9{bottom:1004.910000px;}
.y1d7{bottom:1004.910180px;}
.y21b{bottom:1004.910585px;}
.y11e{bottom:1009.417305px;}
.y32{bottom:1009.417545px;}
.y9c{bottom:1009.418145px;}
.y68{bottom:1009.441065px;}
.y1d8{bottom:1009.927365px;}
.y1d6{bottom:1018.431375px;}
.y21a{bottom:1018.431780px;}
.yd3{bottom:1027.442070px;}
.y11d{bottom:1027.445205px;}
.y31{bottom:1027.445430px;}
.y9b{bottom:1027.446030px;}
.y67{bottom:1027.468950px;}
.y1d5{bottom:1031.952570px;}
.y219{bottom:1031.952975px;}
.y1{bottom:1036.034355px;}
.y1d4{bottom:1036.884705px;}
.yd2{bottom:1045.384710px;}
.y11c{bottom:1045.387830px;}
.y30{bottom:1045.388670px;}
.y1d3{bottom:1045.391250px;}
.y66{bottom:1045.411590px;}
.y2f{bottom:1114.950555px;}
.y151{bottom:1129.913610px;}
.y13c{bottom:1129.913730px;}
.y1a6{bottom:1129.916850px;}
.y9a{bottom:1129.917945px;}
.y2e{bottom:1129.917975px;}
.h9{height:21.626539px;}
.h12{height:28.350000px;}
.hf{height:28.376746px;}
.ha{height:30.281567px;}
.h11{height:31.089600px;}
.h5{height:31.721260px;}
.h8{height:32.444567px;}
.hc{height:34.607567px;}
.he{height:39.799633px;}
.h10{height:40.651938px;}
.hb{height:42.287471px;}
.hd{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.h4{height:47.586433px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.xc{left:89.036250px;}
.x1{left:91.077150px;}
.xb{left:94.818900px;}
.xe{left:97.030020px;}
.x19{left:107.574750px;}
.xa{left:217.870785px;}
.x14{left:220.081815px;}
.x3{left:228.330600px;}
.x15{left:230.626815px;}
.x4{left:238.535415px;}
.x12{left:246.189015px;}
.x13{left:256.308615px;}
.xd{left:270.680250px;}
.x5{left:356.655000px;}
.x6{left:362.267700px;}
.x11{left:430.299135px;}
.xf{left:457.086690px;}
.x7{left:461.508585px;}
.x8{left:467.121135px;}
.x10{left:469.077360px;}
.x18{left:479.621805px;}
.x1b{left:483.219135px;}
.x1a{left:484.282650px;}
.x16{left:539.999865px;}
.x17{left:543.996735px;}
.x9{left:660.160485px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.005227pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000107pt;}
.ls2{letter-spacing:0.005227pt;}
.lsf{letter-spacing:0.021297pt;}
.lse{letter-spacing:0.021350pt;}
.ls8{letter-spacing:0.026089pt;}
.ls9{letter-spacing:0.026114pt;}
.ls7{letter-spacing:0.026142pt;}
.ls14{letter-spacing:0.051986pt;}
.ls16{letter-spacing:0.052042pt;}
.ls6{letter-spacing:0.146315pt;}
.ls4{letter-spacing:0.146369pt;}
.lsc{letter-spacing:0.177681pt;}
.lsb{letter-spacing:0.177709pt;}
.ls12{letter-spacing:0.209100pt;}
.ls3{letter-spacing:0.371084pt;}
.ls15{letter-spacing:11.911835pt;}
.ls13{letter-spacing:12.003802pt;}
.ls10{letter-spacing:12.821162pt;}
.ls0{letter-spacing:14.416165pt;}
.lsa{letter-spacing:28.448461pt;}
.ls11{letter-spacing:33.586221pt;}
.lsd{letter-spacing:33.999139pt;}
.ws22d{word-spacing:-9.340800pt;}
.ws35{word-spacing:-0.054933pt;}
.ws18{word-spacing:-0.053334pt;}
.ws8f{word-spacing:-0.052266pt;}
.ws149{word-spacing:-0.042666pt;}
.ws1e8{word-spacing:-0.039999pt;}
.ws34{word-spacing:0.000000pt;}
.ws185{word-spacing:8.200431pt;}
.ws147{word-spacing:8.217498pt;}
.ws164{word-spacing:8.234564pt;}
.ws124{word-spacing:10.181443pt;}
.wsae{word-spacing:10.296428pt;}
.ws1b{word-spacing:10.346770pt;}
.ws130{word-spacing:10.374827pt;}
.wsad{word-spacing:10.484587pt;}
.ws28{word-spacing:10.563860pt;}
.ws1bd{word-spacing:10.918263pt;}
.ws1bf{word-spacing:10.939596pt;}
.ws1bb{word-spacing:10.956663pt;}
.ws2d{word-spacing:11.080375pt;}
.ws1be{word-spacing:11.080395pt;}
.ws2f{word-spacing:11.095309pt;}
.ws2c{word-spacing:11.173707pt;}
.ws30{word-spacing:11.196106pt;}
.ws1bc{word-spacing:11.315059pt;}
.ws2e{word-spacing:11.431304pt;}
.ws1f4{word-spacing:11.687845pt;}
.ws21a{word-spacing:11.699844pt;}
.ws1ff{word-spacing:11.703844pt;}
.ws225{word-spacing:11.715843pt;}
.ws220{word-spacing:11.739843pt;}
.ws20a{word-spacing:11.743844pt;}
.ws1fa{word-spacing:11.747844pt;}
.ws1f9{word-spacing:11.751843pt;}
.ws227{word-spacing:11.755843pt;}
.ws228{word-spacing:11.759843pt;}
.ws207{word-spacing:11.763839pt;}
.ws222{word-spacing:11.763844pt;}
.ws1fc{word-spacing:11.767843pt;}
.ws1f2{word-spacing:11.771843pt;}
.ws1f8{word-spacing:11.775843pt;}
.ws209{word-spacing:11.783843pt;}
.ws214{word-spacing:11.791842pt;}
.ws215{word-spacing:11.799843pt;}
.ws218{word-spacing:11.803843pt;}
.ws210{word-spacing:11.811842pt;}
.ws213{word-spacing:11.831842pt;}
.ws21d{word-spacing:11.831850pt;}
.ws21f{word-spacing:11.835842pt;}
.ws204{word-spacing:11.839842pt;}
.ws1f7{word-spacing:11.843842pt;}
.ws1f5{word-spacing:11.847842pt;}
.ws1f3{word-spacing:11.851842pt;}
.ws20c{word-spacing:11.855842pt;}
.ws29{word-spacing:11.859842pt;}
.ws221{word-spacing:11.875798pt;}
.ws1ee{word-spacing:11.883842pt;}
.ws1fe{word-spacing:11.887842pt;}
.ws20f{word-spacing:11.899841pt;}
.ws217{word-spacing:11.903842pt;}
.ws20e{word-spacing:11.907842pt;}
.ws1f6{word-spacing:11.915841pt;}
.ws20b{word-spacing:11.919841pt;}
.ws216{word-spacing:11.923841pt;}
.ws1ec{word-spacing:11.939841pt;}
.ws201{word-spacing:11.943841pt;}
.ws1fb{word-spacing:11.951840pt;}
.ws22b{word-spacing:11.963841pt;}
.ws1e9{word-spacing:11.983841pt;}
.ws211{word-spacing:11.991833pt;}
.ws223{word-spacing:11.991840pt;}
.ws1e3{word-spacing:11.999840pt;}
.ws1e7{word-spacing:12.007840pt;}
.ws219{word-spacing:12.015839pt;}
.ws1fd{word-spacing:12.019840pt;}
.ws1e4{word-spacing:12.023840pt;}
.ws20d{word-spacing:12.031839pt;}
.ws202{word-spacing:12.039839pt;}
.ws205{word-spacing:12.043840pt;}
.ws1ea{word-spacing:12.055839pt;}
.ws21c{word-spacing:12.059839pt;}
.ws1e2{word-spacing:12.059859pt;}
.ws1e5{word-spacing:12.063840pt;}
.ws1ed{word-spacing:12.067839pt;}
.ws1ef{word-spacing:12.071839pt;}
.ws22a{word-spacing:12.075839pt;}
.ws142{word-spacing:12.078783pt;}
.ws229{word-spacing:12.083839pt;}
.ws206{word-spacing:12.087823pt;}
.ws208{word-spacing:12.095838pt;}
.ws200{word-spacing:12.099839pt;}
.ws22c{word-spacing:12.103839pt;}
.ws21b{word-spacing:12.115838pt;}
.ws15d{word-spacing:12.129981pt;}
.ws21e{word-spacing:12.131835pt;}
.ws212{word-spacing:12.151838pt;}
.ws2a{word-spacing:12.163838pt;}
.ws224{word-spacing:12.171837pt;}
.ws184{word-spacing:12.185448pt;}
.ws14c{word-spacing:12.202514pt;}
.ws1b8{word-spacing:12.211048pt;}
.ws1f0{word-spacing:12.231837pt;}
.ws226{word-spacing:12.239837pt;}
.ws161{word-spacing:12.249447pt;}
.ws1e6{word-spacing:12.255836pt;}
.ws1ba{word-spacing:12.279313pt;}
.ws1f1{word-spacing:12.279836pt;}
.ws15e{word-spacing:12.283579pt;}
.ws162{word-spacing:12.296380pt;}
.ws203{word-spacing:12.323836pt;}
.ws2b{word-spacing:12.331835pt;}
.ws1eb{word-spacing:12.339835pt;}
.ws1b9{word-spacing:12.364645pt;}
.ws189{word-spacing:12.368912pt;}
.ws18a{word-spacing:12.373179pt;}
.ws146{word-spacing:12.385978pt;}
.ws141{word-spacing:12.407311pt;}
.ws18b{word-spacing:12.415831pt;}
.ws188{word-spacing:12.415884pt;}
.ws186{word-spacing:12.420112pt;}
.ws140{word-spacing:12.428644pt;}
.ws160{word-spacing:12.437183pt;}
.ws148{word-spacing:12.454244pt;}
.ws14a{word-spacing:12.471310pt;}
.ws14e{word-spacing:12.479810pt;}
.ws31{word-spacing:12.479863pt;}
.ws18c{word-spacing:12.501177pt;}
.ws32{word-spacing:12.505408pt;}
.ws14f{word-spacing:12.505461pt;}
.ws144{word-spacing:12.552377pt;}
.ws187{word-spacing:12.556643pt;}
.ws183{word-spacing:12.573710pt;}
.ws165{word-spacing:12.577976pt;}
.ws15f{word-spacing:12.612109pt;}
.ws166{word-spacing:12.616376pt;}
.wsa6{word-spacing:12.667575pt;}
.ws145{word-spacing:12.706003pt;}
.ws33{word-spacing:12.710241pt;}
.ws143{word-spacing:12.735796pt;}
.ws14d{word-spacing:12.744374pt;}
.ws163{word-spacing:12.757174pt;}
.ws14b{word-spacing:12.774240pt;}
.ws8c{word-spacing:13.087439pt;}
.ws72{word-spacing:13.521249pt;}
.wsdd{word-spacing:13.766899pt;}
.wsb6{word-spacing:13.871431pt;}
.wscb{word-spacing:13.881886pt;}
.wsd7{word-spacing:13.923697pt;}
.wsa5{word-spacing:13.939378pt;}
.ws90{word-spacing:13.991644pt;}
.ws198{word-spacing:14.017777pt;}
.wsce{word-spacing:14.023003pt;}
.ws27{word-spacing:14.026807pt;}
.ws65{word-spacing:14.049136pt;}
.ws20{word-spacing:14.053474pt;}
.ws74{word-spacing:14.075269pt;}
.ws15{word-spacing:14.122807pt;}
.ws16{word-spacing:14.138809pt;}
.ws1c{word-spacing:14.144142pt;}
.ws1e{word-spacing:14.165499pt;}
.ws17{word-spacing:14.170809pt;}
.ws23{word-spacing:14.176141pt;}
.ws26{word-spacing:14.224143pt;}
.ws24{word-spacing:14.250810pt;}
.ws1f{word-spacing:14.256142pt;}
.ws21{word-spacing:14.256159pt;}
.ws25{word-spacing:14.266851pt;}
.wsa4{word-spacing:14.294787pt;}
.ws1d{word-spacing:14.304144pt;}
.ws22{word-spacing:14.320143pt;}
.ws13{word-spacing:14.330811pt;}
.ws14{word-spacing:14.346764pt;}
.ws1a{word-spacing:14.378811pt;}
.ws6d{word-spacing:14.477718pt;}
.ws12{word-spacing:14.480145pt;}
.ws13c{word-spacing:14.523891pt;}
.ws11c{word-spacing:14.533705pt;}
.ws19{word-spacing:14.549478pt;}
.ws10f{word-spacing:14.592585pt;}
.wsde{word-spacing:14.612212pt;}
.ws62{word-spacing:14.618838pt;}
.wscf{word-spacing:14.646559pt;}
.ws196{word-spacing:14.655423pt;}
.ws191{word-spacing:14.665878pt;}
.ws195{word-spacing:14.676317pt;}
.wsf4{word-spacing:14.705440pt;}
.ws128{word-spacing:14.715253pt;}
.ws11b{word-spacing:14.779041pt;}
.ws132{word-spacing:14.813387pt;}
.ws193{word-spacing:14.817449pt;}
.ws192{word-spacing:14.822676pt;}
.ws13d{word-spacing:14.837921pt;}
.ws6a{word-spacing:14.843582pt;}
.ws7f{word-spacing:14.916429pt;}
.ws182{word-spacing:14.921981pt;}
.wsa2{word-spacing:14.995153pt;}
.ws91{word-spacing:15.019470pt;}
.ws82{word-spacing:15.225124pt;}
.ws1a6{word-spacing:15.256484pt;}
.ws3c{word-spacing:15.287844pt;}
.ws13b{word-spacing:15.376697pt;}
.ws1ab{word-spacing:15.397603pt;}
.ws17c{word-spacing:15.434189pt;}
.ws19a{word-spacing:15.465548pt;}
.wsb1{word-spacing:15.523042pt;}
.ws3e{word-spacing:15.549175pt;}
.ws11a{word-spacing:15.554402pt;}
.wseb{word-spacing:15.601441pt;}
.wsc3{word-spacing:15.617120pt;}
.ws131{word-spacing:15.653707pt;}
.ws15a{word-spacing:15.679840pt;}
.ws1b0{word-spacing:15.690293pt;}
.wsbe{word-spacing:15.726879pt;}
.ws85{word-spacing:15.768693pt;}
.wsf{word-spacing:15.829491pt;}
.wsf3{word-spacing:15.836638pt;}
.wsb{word-spacing:15.840158pt;}
.wsd{word-spacing:15.845492pt;}
.wsc4{word-spacing:15.925491pt;}
.wse{word-spacing:15.946826pt;}
.ws11{word-spacing:15.994826pt;}
.ws10{word-spacing:16.096160pt;}
.wsd9{word-spacing:16.113648pt;}
.wsa{word-spacing:16.117495pt;}
.ws153{word-spacing:16.139781pt;}
.wsc{word-spacing:16.261495pt;}
.wsec{word-spacing:16.301806pt;}
.wsb4{word-spacing:16.307034pt;}
.ws199{word-spacing:16.380206pt;}
.wsb3{word-spacing:16.411566pt;}
.wsea{word-spacing:16.469059pt;}
.ws8d{word-spacing:16.474286pt;}
.ws9{word-spacing:16.533529pt;}
.ws151{word-spacing:16.672897pt;}
.ws1ad{word-spacing:16.777429pt;}
.wsb0{word-spacing:16.965587pt;}
.ws171{word-spacing:17.049213pt;}
.ws177{word-spacing:17.179879pt;}
.ws178{word-spacing:17.216464pt;}
.ws170{word-spacing:17.294863pt;}
.ws50{word-spacing:17.315769pt;}
.wsaf{word-spacing:17.404622pt;}
.ws190{word-spacing:17.451661pt;}
.wse7{word-spacing:17.509155pt;}
.ws129{word-spacing:17.550967pt;}
.ws7{word-spacing:17.576694pt;}
.ws6b{word-spacing:17.660726pt;}
.ws6{word-spacing:17.676427pt;}
.ws8{word-spacing:17.735094pt;}
.ws194{word-spacing:17.796618pt;}
.wsc8{word-spacing:17.827979pt;}
.ws1e1{word-spacing:17.838431pt;}
.wsc9{word-spacing:17.848885pt;}
.ws9e{word-spacing:17.922057pt;}
.ws12c{word-spacing:17.979550pt;}
.wsf0{word-spacing:18.037043pt;}
.ws9c{word-spacing:18.042270pt;}
.ws66{word-spacing:18.115442pt;}
.ws6e{word-spacing:18.120669pt;}
.ws63{word-spacing:18.246108pt;}
.ws64{word-spacing:18.256560pt;}
.ws67{word-spacing:18.455172pt;}
.wsdc{word-spacing:18.528344pt;}
.ws19b{word-spacing:18.585838pt;}
.ws3a{word-spacing:18.758315pt;}
.ws3b{word-spacing:18.800129pt;}
.ws9d{word-spacing:18.826262pt;}
.ws83{word-spacing:18.831487pt;}
.wscc{word-spacing:18.951700pt;}
.ws73{word-spacing:18.988286pt;}
.wsca{word-spacing:19.019645pt;}
.ws5d{word-spacing:19.051006pt;}
.ws12f{word-spacing:19.118951pt;}
.ws119{word-spacing:19.134632pt;}
.wsd8{word-spacing:19.139859pt;}
.ws12a{word-spacing:19.155538pt;}
.ws11f{word-spacing:19.218258pt;}
.ws1aa{word-spacing:19.317563pt;}
.wsa0{word-spacing:19.432548pt;}
.ws12d{word-spacing:19.605027pt;}
.ws1a9{word-spacing:19.610254pt;}
.ws168{word-spacing:19.657293pt;}
.wsb8{word-spacing:19.662520pt;}
.ws1ac{word-spacing:19.672972pt;}
.ws1df{word-spacing:19.688653pt;}
.ws175{word-spacing:19.725239pt;}
.ws5c{word-spacing:19.735692pt;}
.wscd{word-spacing:19.808865pt;}
.wsac{word-spacing:19.824544pt;}
.ws118{word-spacing:19.908170pt;}
.ws17f{word-spacing:19.918624pt;}
.ws1a8{word-spacing:19.944757pt;}
.ws5e{word-spacing:19.997023pt;}
.wsa8{word-spacing:20.038835pt;}
.ws159{word-spacing:20.096328pt;}
.ws68{word-spacing:20.122461pt;}
.ws136{word-spacing:20.179955pt;}
.ws1d4{word-spacing:20.258354pt;}
.wsc5{word-spacing:20.268806pt;}
.wse4{word-spacing:20.300166pt;}
.wse2{word-spacing:20.341980pt;}
.ws135{word-spacing:20.378565pt;}
.wsf2{word-spacing:20.446512pt;}
.ws172{word-spacing:20.519684pt;}
.ws6f{word-spacing:20.535363pt;}
.ws3d{word-spacing:20.571951pt;}
.ws8a{word-spacing:20.603310pt;}
.ws100{word-spacing:20.645123pt;}
.ws150{word-spacing:20.666029pt;}
.ws5f{word-spacing:20.833281pt;}
.ws10e{word-spacing:20.869867pt;}
.ws173{word-spacing:20.875093pt;}
.wse3{word-spacing:20.943040pt;}
.ws78{word-spacing:20.948266pt;}
.ws0{word-spacing:21.021867pt;}
.ws5a{word-spacing:21.037119pt;}
.ws127{word-spacing:21.058025pt;}
.ws167{word-spacing:21.136424pt;}
.ws107{word-spacing:21.141651pt;}
.ws1c8{word-spacing:21.209596pt;}
.ws19f{word-spacing:21.235729pt;}
.wsd6{word-spacing:21.240956pt;}
.ws108{word-spacing:21.251410pt;}
.wse9{word-spacing:21.282770pt;}
.ws154{word-spacing:21.298449pt;}
.ws77{word-spacing:21.413415pt;}
.ws112{word-spacing:21.450021pt;}
.ws54{word-spacing:21.486608pt;}
.wsd4{word-spacing:21.575459pt;}
.ws19e{word-spacing:21.627725pt;}
.ws39{word-spacing:21.659085pt;}
.wsbc{word-spacing:21.758391pt;}
.ws80{word-spacing:21.810657pt;}
.ws1d3{word-spacing:22.035402pt;}
.ws9f{word-spacing:22.061535pt;}
.ws44{word-spacing:22.082441pt;}
.ws36{word-spacing:22.087680pt;}
.ws37{word-spacing:22.103347pt;}
.ws114{word-spacing:22.113802pt;}
.wsfa{word-spacing:22.134707pt;}
.wsd0{word-spacing:22.155613pt;}
.wsa1{word-spacing:22.275827pt;}
.ws106{word-spacing:22.307185pt;}
.ws15b{word-spacing:22.375132pt;}
.ws8e{word-spacing:22.396038pt;}
.ws197{word-spacing:22.458758pt;}
.ws1a7{word-spacing:22.490117pt;}
.ws7c{word-spacing:22.568516pt;}
.wse1{word-spacing:22.578970pt;}
.wsb2{word-spacing:22.657369pt;}
.wsc6{word-spacing:22.683502pt;}
.ws4e{word-spacing:22.720089pt;}
.ws49{word-spacing:22.725314pt;}
.ws1c2{word-spacing:22.761901pt;}
.ws98{word-spacing:22.798488pt;}
.wse0{word-spacing:22.819394pt;}
.ws1d1{word-spacing:22.918699pt;}
.ws99{word-spacing:22.944833pt;}
.ws96{word-spacing:22.970966pt;}
.ws123{word-spacing:22.981419pt;}
.ws46{word-spacing:22.991872pt;}
.ws89{word-spacing:23.023232pt;}
.ws16a{word-spacing:23.085952pt;}
.ws93{word-spacing:23.153897pt;}
.ws157{word-spacing:23.200936pt;}
.ws81{word-spacing:23.326375pt;}
.ws71{word-spacing:23.362961pt;}
.ws1cb{word-spacing:23.467494pt;}
.ws6c{word-spacing:23.561572pt;}
.ws125{word-spacing:23.587705pt;}
.ws1b7{word-spacing:23.629519pt;}
.wsb9{word-spacing:23.650425pt;}
.ws113{word-spacing:23.666105pt;}
.ws5b{word-spacing:23.687012pt;}
.wsd2{word-spacing:23.838584pt;}
.wsdf{word-spacing:23.843811pt;}
.ws41{word-spacing:23.896077pt;}
.wsf6{word-spacing:23.937889pt;}
.ws1b4{word-spacing:23.969249pt;}
.wsd3{word-spacing:24.073782pt;}
.wsbd{word-spacing:24.089460pt;}
.ws139{word-spacing:24.131274pt;}
.ws51{word-spacing:24.183540pt;}
.ws134{word-spacing:24.199220pt;}
.ws4b{word-spacing:24.230580pt;}
.ws133{word-spacing:24.314206pt;}
.wse8{word-spacing:24.356018pt;}
.ws19d{word-spacing:24.382151pt;}
.ws53{word-spacing:24.455323pt;}
.ws152{word-spacing:24.497137pt;}
.ws4f{word-spacing:24.606895pt;}
.ws121{word-spacing:24.612122pt;}
.wsb5{word-spacing:24.768920pt;}
.wsee{word-spacing:24.826413pt;}
.wsb7{word-spacing:24.878679pt;}
.ws79{word-spacing:24.930946pt;}
.ws1de{word-spacing:24.988439pt;}
.ws1cf{word-spacing:25.014572pt;}
.ws155{word-spacing:25.098198pt;}
.ws84{word-spacing:25.129556pt;}
.ws126{word-spacing:25.145237pt;}
.ws117{word-spacing:25.181823pt;}
.ws137{word-spacing:25.291581pt;}
.ws95{word-spacing:25.411795pt;}
.ws109{word-spacing:25.422247pt;}
.ws105{word-spacing:25.443153pt;}
.ws3f{word-spacing:25.479740pt;}
.ws18d{word-spacing:25.490194pt;}
.ws10c{word-spacing:25.568593pt;}
.ws56{word-spacing:25.584317pt;}
.ws57{word-spacing:25.709710pt;}
.ws88{word-spacing:25.782883pt;}
.ws58{word-spacing:25.944908pt;}
.ws1da{word-spacing:25.955362pt;}
.ws180{word-spacing:26.012855pt;}
.ws102{word-spacing:26.112161pt;}
.ws16d{word-spacing:26.347358pt;}
.ws101{word-spacing:26.399586pt;}
.ws16c{word-spacing:26.561649pt;}
.ws38{word-spacing:26.650501pt;}
.ws40{word-spacing:26.692315pt;}
.ws47{word-spacing:26.713221pt;}
.ws92{word-spacing:26.765487pt;}
.wsf1{word-spacing:27.026817pt;}
.wsab{word-spacing:27.178389pt;}
.ws87{word-spacing:27.225430pt;}
.ws111{word-spacing:27.298601pt;}
.wsfb{word-spacing:27.319508pt;}
.wsda{word-spacing:27.324734pt;}
.wsa9{word-spacing:27.329960pt;}
.ws15c{word-spacing:27.329962pt;}
.wsaa{word-spacing:27.403133pt;}
.ws169{word-spacing:27.439720pt;}
.ws1cc{word-spacing:27.596518pt;}
.wsdb{word-spacing:27.617426pt;}
.ws1c7{word-spacing:27.638332pt;}
.wsbf{word-spacing:27.643559pt;}
.ws1d7{word-spacing:27.868289pt;}
.ws10b{word-spacing:27.883982pt;}
.ws10a{word-spacing:27.899661pt;}
.ws1d0{word-spacing:27.936248pt;}
.ws69{word-spacing:27.988514pt;}
.ws181{word-spacing:28.082593pt;}
.wsc0{word-spacing:28.098272pt;}
.ws1d8{word-spacing:28.134898pt;}
.ws1d9{word-spacing:28.202805pt;}
.ws174{word-spacing:28.244619pt;}
.wse6{word-spacing:28.286432pt;}
.ws60{word-spacing:28.359603pt;}
.ws1a2{word-spacing:28.427527pt;}
.ws1a4{word-spacing:28.464135pt;}
.wsc2{word-spacing:28.537309pt;}
.ws1a1{word-spacing:28.647067pt;}
.ws12e{word-spacing:28.704561pt;}
.ws156{word-spacing:28.730694pt;}
.ws48{word-spacing:28.809093pt;}
.ws1c1{word-spacing:28.824773pt;}
.ws9b{word-spacing:28.840452pt;}
.ws9a{word-spacing:28.856131pt;}
.ws1a0{word-spacing:28.903212pt;}
.ws16e{word-spacing:28.908397pt;}
.ws138{word-spacing:29.039063pt;}
.ws1a5{word-spacing:29.075649pt;}
.ws4d{word-spacing:29.143595pt;}
.ws120{word-spacing:29.169728pt;}
.ws52{word-spacing:29.274269pt;}
.ws1ce{word-spacing:29.331754pt;}
.ws1a3{word-spacing:29.404926pt;}
.wsc1{word-spacing:29.436287pt;}
.ws122{word-spacing:29.446741pt;}
.ws1b1{word-spacing:29.499007pt;}
.wsf9{word-spacing:29.723751pt;}
.ws76{word-spacing:29.744655pt;}
.ws104{word-spacing:29.802150pt;}
.ws7b{word-spacing:29.943269pt;}
.wse5{word-spacing:29.953720pt;}
.ws1c6{word-spacing:30.016440pt;}
.ws110{word-spacing:30.037347pt;}
.ws4a{word-spacing:30.126200pt;}
.ws1ca{word-spacing:30.199373pt;}
.ws11d{word-spacing:30.209825pt;}
.wsff{word-spacing:30.335265pt;}
.ws1d5{word-spacing:30.586142pt;}
.ws1d2{word-spacing:30.591367pt;}
.ws42{word-spacing:30.695901pt;}
.wsfe{word-spacing:30.716807pt;}
.wsf7{word-spacing:30.779527pt;}
.ws1c9{word-spacing:30.784775pt;}
.wsf8{word-spacing:30.810886pt;}
.wsba{word-spacing:30.831793pt;}
.ws59{word-spacing:30.957230pt;}
.ws7d{word-spacing:31.009496pt;}
.ws1c0{word-spacing:31.035629pt;}
.ws13e{word-spacing:31.187202pt;}
.wsd5{word-spacing:31.223789pt;}
.ws16f{word-spacing:31.244694pt;}
.ws18e{word-spacing:31.401492pt;}
.wsc7{word-spacing:31.458987pt;}
.ws1b5{word-spacing:31.479893pt;}
.ws8b{word-spacing:31.647144pt;}
.wsed{word-spacing:31.725543pt;}
.ws86{word-spacing:31.762130pt;}
.ws16b{word-spacing:31.793488pt;}
.ws18f{word-spacing:31.824850pt;}
.wsef{word-spacing:31.908474pt;}
.wsbb{word-spacing:32.013007pt;}
.ws75{word-spacing:32.028686pt;}
.ws1e0{word-spacing:32.133218pt;}
.ws7a{word-spacing:32.274337pt;}
.ws1d6{word-spacing:32.776091pt;}
.wsfc{word-spacing:33.068797pt;}
.wsfd{word-spacing:33.225581pt;}
.ws4c{word-spacing:33.230809pt;}
.ws61{word-spacing:33.303981pt;}
.wsf5{word-spacing:33.345793pt;}
.ws17d{word-spacing:33.445100pt;}
.ws1b6{word-spacing:33.701202pt;}
.ws43{word-spacing:33.732563pt;}
.ws17e{word-spacing:33.784830pt;}
.ws103{word-spacing:33.847547pt;}
.ws13f{word-spacing:33.873680pt;}
.ws116{word-spacing:33.946854pt;}
.ws1b2{word-spacing:33.978212pt;}
.ws97{word-spacing:34.119331pt;}
.ws115{word-spacing:34.234317pt;}
.ws1ae{word-spacing:34.359757pt;}
.ws1af{word-spacing:34.511327pt;}
.wsa3{word-spacing:34.678579pt;}
.wsd1{word-spacing:34.783112pt;}
.ws13a{word-spacing:35.049668pt;}
.ws176{word-spacing:35.196015pt;}
.ws1c4{word-spacing:35.216920pt;}
.ws1db{word-spacing:35.264014pt;}
.ws7e{word-spacing:35.305773pt;}
.ws94{word-spacing:35.326681pt;}
.ws17a{word-spacing:35.493930pt;}
.ws1dd{word-spacing:35.509612pt;}
.ws1dc{word-spacing:35.535715pt;}
.ws11e{word-spacing:35.781394pt;}
.ws1cd{word-spacing:35.849342pt;}
.ws45{word-spacing:36.795358pt;}
.ws12b{word-spacing:37.422551pt;}
.ws10d{word-spacing:37.506176pt;}
.ws19c{word-spacing:37.683882pt;}
.ws1b3{word-spacing:37.767507pt;}
.ws1c3{word-spacing:37.929533pt;}
.ws1{word-spacing:38.195358pt;}
.ws4{word-spacing:38.348961pt;}
.ws5{word-spacing:38.502559pt;}
.ws2{word-spacing:38.515359pt;}
.ws3{word-spacing:38.720178pt;}
.ws179{word-spacing:39.628183pt;}
.ws55{word-spacing:40.642144pt;}
.ws1c5{word-spacing:40.751905pt;}
.ws158{word-spacing:41.556802pt;}
.wsa7{word-spacing:41.671788pt;}
.ws70{word-spacing:42.142183pt;}
.ws17b{word-spacing:43.051615pt;}
._22{margin-left:-5.371545pt;}
._15{margin-left:-3.464113pt;}
._17{margin-left:-1.902496pt;}
._9{margin-left:-0.989854pt;}
._3{width:1.050674pt;}
._e{width:2.200404pt;}
._0{width:7.959467pt;}
._21{width:9.124500pt;}
._7{width:10.138765pt;}
._1f{width:11.226642pt;}
._8{width:12.211560pt;}
._5{width:13.402802pt;}
._6{width:15.136153pt;}
._4{width:16.928169pt;}
._1e{width:18.219864pt;}
._18{width:19.124178pt;}
._16{width:20.226994pt;}
._c{width:21.591523pt;}
._a{width:23.211006pt;}
._14{width:24.194377pt;}
._f{width:25.103173pt;}
._d{width:26.665807pt;}
._b{width:27.685371pt;}
._1d{width:29.300400pt;}
._13{width:30.267317pt;}
._10{width:31.683479pt;}
._20{width:32.604235pt;}
._1a{width:33.533829pt;}
._11{width:34.699358pt;}
._1b{width:35.995687pt;}
._12{width:37.746601pt;}
._2{width:39.308965pt;}
._23{width:41.943572pt;}
._19{width:43.085007pt;}
._24{width:58.543219pt;}
._1c{width:1384.558762pt;}
._1{width:1756.629387pt;}
.fs7{font-size:26.662400pt;}
.fsf{font-size:33.600000pt;}
.fsc{font-size:34.839467pt;}
.fse{font-size:36.266667pt;}
.fs8{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs6{font-size:39.999467pt;}
.fs9{font-size:42.666133pt;}
.fsd{font-size:47.421333pt;}
.fsb{font-size:49.067200pt;}
.fsa{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:60.017973pt;}
.y2c{bottom:70.676480pt;}
.y244{bottom:74.815027pt;}
.yd0{bottom:79.067733pt;}
.yd1{bottom:81.259867pt;}
.y14b{bottom:81.260267pt;}
.y218{bottom:81.260653pt;}
.y104{bottom:81.261267pt;}
.y1d2{bottom:81.262987pt;}
.y144{bottom:81.263067pt;}
.ycf{bottom:81.265040pt;}
.y99{bottom:81.267707pt;}
.y18a{bottom:81.269493pt;}
.y1a0{bottom:81.278653pt;}
.y65{bottom:81.283760pt;}
.y2b{bottom:81.335000pt;}
.y243{bottom:84.148267pt;}
.y13b{bottom:89.574933pt;}
.y2a{bottom:91.993507pt;}
.y217{bottom:93.279480pt;}
.y1d1{bottom:93.281827pt;}
.y14a{bottom:97.285067pt;}
.y103{bottom:97.286053pt;}
.y143{bottom:97.287867pt;}
.yce{bottom:97.289840pt;}
.y98{bottom:97.292507pt;}
.y189{bottom:97.294293pt;}
.y19f{bottom:97.303440pt;}
.y64{bottom:97.308560pt;}
.y29{bottom:102.652027pt;}
.y13a{bottom:102.953960pt;}
.y216{bottom:105.298320pt;}
.y1d0{bottom:105.300667pt;}
.y242{bottom:113.066800pt;}
.y149{bottom:113.234667pt;}
.y102{bottom:113.235067pt;}
.ycd{bottom:113.238853pt;}
.y97{bottom:113.241520pt;}
.y142{bottom:113.312667pt;}
.y188{bottom:113.319093pt;}
.y19e{bottom:113.328240pt;}
.y63{bottom:113.333360pt;}
.y139{bottom:116.258333pt;}
.y215{bottom:117.241173pt;}
.y1cf{bottom:117.243507pt;}
.y28{bottom:125.253733pt;}
.y101{bottom:129.259867pt;}
.y214{bottom:129.260013pt;}
.y141{bottom:129.261680pt;}
.ycc{bottom:129.263640pt;}
.y96{bottom:129.266320pt;}
.y187{bottom:129.268107pt;}
.y19d{bottom:129.277253pt;}
.y62{bottom:129.282373pt;}
.y241{bottom:129.613333pt;}
.y138{bottom:129.637360pt;}
.y27{bottom:137.272573pt;}
.y213{bottom:141.278840pt;}
.y137{bottom:142.941733pt;}
.y100{bottom:145.285067pt;}
.y140{bottom:145.286467pt;}
.ycb{bottom:145.288440pt;}
.y148{bottom:145.289080pt;}
.y95{bottom:145.291107pt;}
.y186{bottom:145.292893pt;}
.y19c{bottom:145.302053pt;}
.y61{bottom:145.307160pt;}
.y1ce{bottom:146.043120pt;}
.y240{bottom:146.159600pt;}
.y26{bottom:149.291413pt;}
.y212{bottom:153.297680pt;}
.y1cd{bottom:158.061960pt;}
.yca{bottom:161.237453pt;}
.y94{bottom:161.240120pt;}
.y25{bottom:161.310253pt;}
.y13f{bottom:161.311267pt;}
.y147{bottom:161.313880pt;}
.y185{bottom:161.317693pt;}
.y19b{bottom:161.326840pt;}
.y60{bottom:161.331960pt;}
.y23f{bottom:162.706133pt;}
.y211{bottom:165.241520pt;}
.y24{bottom:165.694387pt;}
.y1cc{bottom:170.080800pt;}
.y23{bottom:173.253587pt;}
.y13e{bottom:177.260280pt;}
.y210{bottom:177.260360pt;}
.yc9{bottom:177.262253pt;}
.y146{bottom:177.262880pt;}
.y93{bottom:177.264920pt;}
.y184{bottom:177.266707pt;}
.yff{bottom:177.269933pt;}
.y19a{bottom:177.275853pt;}
.y5f{bottom:177.280973pt;}
.y23e{bottom:179.252667pt;}
.y1cb{bottom:182.099640pt;}
.y20f{bottom:189.279200pt;}
.y13d{bottom:193.285080pt;}
.yc8{bottom:193.287040pt;}
.y145{bottom:193.287680pt;}
.y92{bottom:193.289720pt;}
.y183{bottom:193.291507pt;}
.yfe{bottom:193.294720pt;}
.y199{bottom:193.300653pt;}
.y5e{bottom:193.305773pt;}
.y1ca{bottom:194.042480pt;}
.y23d{bottom:195.799333pt;}
.y20e{bottom:201.298040pt;}
.yc7{bottom:209.236053pt;}
.y91{bottom:209.238720pt;}
.yfd{bottom:209.243733pt;}
.y182{bottom:209.316293pt;}
.y198{bottom:209.325453pt;}
.y5d{bottom:209.330560pt;}
.y20d{bottom:213.240880pt;}
.y1c9{bottom:222.842093pt;}
.y23c{bottom:223.701187pt;}
.y20c{bottom:225.259720pt;}
.yc6{bottom:225.260853pt;}
.y90{bottom:225.263520pt;}
.y181{bottom:225.265307pt;}
.yfc{bottom:225.268533pt;}
.y197{bottom:225.274453pt;}
.y5c{bottom:225.279573pt;}
.y150{bottom:228.888267pt;}
.y1c8{bottom:234.860933pt;}
.y20b{bottom:237.285293pt;}
.y23b{bottom:237.927587pt;}
.yc5{bottom:241.285653pt;}
.y8f{bottom:241.288320pt;}
.y180{bottom:241.290107pt;}
.yfb{bottom:241.293333pt;}
.y196{bottom:241.299253pt;}
.y5b{bottom:241.304373pt;}
.y14f{bottom:242.192640pt;}
.y20a{bottom:249.304133pt;}
.y22{bottom:253.601320pt;}
.y14e{bottom:255.571667pt;}
.yc4{bottom:257.234653pt;}
.y8e{bottom:257.237333pt;}
.yfa{bottom:257.242333pt;}
.y17f{bottom:257.314907pt;}
.y195{bottom:257.324053pt;}
.y5a{bottom:257.329173pt;}
.y209{bottom:261.246973pt;}
.y1c7{bottom:263.660547pt;}
.y14d{bottom:268.876040pt;}
.y21{bottom:269.626813pt;}
.yc3{bottom:273.259720pt;}
.y8d{bottom:273.262120pt;}
.y17e{bottom:273.263907pt;}
.y208{bottom:273.265813pt;}
.yf9{bottom:273.267133pt;}
.y194{bottom:273.273067pt;}
.y59{bottom:273.278187pt;}
.y1c6{bottom:275.679387pt;}
.y14c{bottom:282.255067pt;}
.y207{bottom:285.284653pt;}
.y1c5{bottom:287.698227pt;}
.y8c{bottom:289.286920pt;}
.y17d{bottom:289.288707pt;}
.yf8{bottom:289.291933pt;}
.y193{bottom:289.297853pt;}
.y58{bottom:289.302973pt;}
.y20{bottom:292.228373pt;}
.y206{bottom:297.303493pt;}
.y1c4{bottom:299.641067pt;}
.y8b{bottom:305.235933pt;}
.y17c{bottom:305.237720pt;}
.yf7{bottom:305.240947pt;}
.y192{bottom:305.246867pt;}
.y57{bottom:305.251987pt;}
.y1f{bottom:308.253867pt;}
.y205{bottom:309.246333pt;}
.yc2{bottom:310.604667pt;}
.y1c3{bottom:311.659907pt;}
.y8a{bottom:321.260733pt;}
.y17b{bottom:321.262520pt;}
.y204{bottom:321.265173pt;}
.yf6{bottom:321.265733pt;}
.y191{bottom:321.271667pt;}
.y56{bottom:321.276787pt;}
.y1c2{bottom:323.678747pt;}
.y1e{bottom:324.279360pt;}
.yc1{bottom:326.629467pt;}
.y203{bottom:333.284013pt;}
.y1c1{bottom:335.697587pt;}
.y89{bottom:337.285533pt;}
.y17a{bottom:337.287320pt;}
.yf5{bottom:337.290533pt;}
.y190{bottom:337.296467pt;}
.y55{bottom:337.301587pt;}
.yc0{bottom:342.578467pt;}
.y1d{bottom:344.235560pt;}
.y202{bottom:345.302853pt;}
.y88{bottom:353.234533pt;}
.y179{bottom:353.236320pt;}
.yf4{bottom:353.239547pt;}
.y18f{bottom:353.245480pt;}
.y54{bottom:353.250587pt;}
.y201{bottom:357.245693pt;}
.ybf{bottom:358.603267pt;}
.y1c{bottom:360.261053pt;}
.y1c0{bottom:364.500267pt;}
.y87{bottom:369.259853pt;}
.y178{bottom:369.261120pt;}
.yf3{bottom:369.264347pt;}
.y200{bottom:369.264533pt;}
.y18e{bottom:369.270267pt;}
.y53{bottom:369.275387pt;}
.ybe{bottom:374.628067pt;}
.y1b{bottom:376.286547pt;}
.y1bf{bottom:380.449280pt;}
.y1ff{bottom:381.283373pt;}
.y177{bottom:385.285920pt;}
.yf2{bottom:385.289147pt;}
.y160{bottom:385.291507pt;}
.y18d{bottom:385.295067pt;}
.y16f{bottom:385.296733pt;}
.y52{bottom:385.300187pt;}
.ybd{bottom:390.577080pt;}
.y1a{bottom:392.236040pt;}
.y1fe{bottom:393.302213pt;}
.y1be{bottom:396.474080pt;}
.y176{bottom:401.234933pt;}
.yf1{bottom:401.238147pt;}
.y15f{bottom:401.240507pt;}
.y86{bottom:401.241520pt;}
.y18c{bottom:401.244080pt;}
.y16e{bottom:401.245747pt;}
.y51{bottom:401.249200pt;}
.y1fd{bottom:405.245053pt;}
.ybc{bottom:406.601867pt;}
.y19{bottom:408.261533pt;}
.y1bd{bottom:412.498867pt;}
.y175{bottom:417.259720pt;}
.y11b{bottom:417.260733pt;}
.yf0{bottom:417.262947pt;}
.y1fc{bottom:417.263893pt;}
.y15e{bottom:417.265307pt;}
.y85{bottom:417.266320pt;}
.y18b{bottom:417.268880pt;}
.y16d{bottom:417.270547pt;}
.y50{bottom:417.274000pt;}
.ybb{bottom:422.626667pt;}
.yb9{bottom:422.628067pt;}
.y18{bottom:428.293733pt;}
.yba{bottom:428.371587pt;}
.y1bc{bottom:428.447880pt;}
.y1fb{bottom:429.282733pt;}
.y11a{bottom:433.285533pt;}
.yef{bottom:433.287747pt;}
.y15d{bottom:433.290107pt;}
.y84{bottom:433.291107pt;}
.y16c{bottom:433.295347pt;}
.y4f{bottom:433.298787pt;}
.yb8{bottom:438.577080pt;}
.y1fa{bottom:441.301573pt;}
.y17{bottom:444.243227pt;}
.y1bb{bottom:444.472680pt;}
.y119{bottom:449.234533pt;}
.yee{bottom:449.236760pt;}
.y15c{bottom:449.239120pt;}
.y83{bottom:449.240120pt;}
.y16b{bottom:449.244347pt;}
.y4e{bottom:449.247800pt;}
.y1f9{bottom:453.244413pt;}
.y1a5{bottom:453.544387pt;}
.yb7{bottom:454.601867pt;}
.y16{bottom:460.268720pt;}
.y1ba{bottom:460.497480pt;}
.y118{bottom:465.259600pt;}
.y136{bottom:465.259893pt;}
.yed{bottom:465.261547pt;}
.y1f8{bottom:465.263253pt;}
.y15b{bottom:465.263907pt;}
.y82{bottom:465.264920pt;}
.y16a{bottom:465.269147pt;}
.y4d{bottom:465.272600pt;}
.y1a4{bottom:466.923413pt;}
.yb6{bottom:470.626667pt;}
.y15{bottom:476.294213pt;}
.y1b9{bottom:476.447187pt;}
.y1f7{bottom:477.282093pt;}
.y1a3{bottom:480.227787pt;}
.y117{bottom:481.284947pt;}
.y135{bottom:481.285240pt;}
.yec{bottom:481.286347pt;}
.y15a{bottom:481.288707pt;}
.y81{bottom:481.289720pt;}
.y169{bottom:481.293947pt;}
.y4c{bottom:481.297400pt;}
.yb5{bottom:486.576253pt;}
.y1f6{bottom:489.300933pt;}
.y14{bottom:492.243707pt;}
.y1a2{bottom:493.531080pt;}
.y134{bottom:497.234533pt;}
.yeb{bottom:497.235360pt;}
.y159{bottom:497.237720pt;}
.y80{bottom:497.238720pt;}
.y168{bottom:497.242960pt;}
.y4b{bottom:497.246400pt;}
.y1f5{bottom:501.243773pt;}
.y1a1{bottom:506.910120pt;}
.y13{bottom:508.269200pt;}
.yea{bottom:513.260160pt;}
.y158{bottom:513.262520pt;}
.y1f4{bottom:513.262613pt;}
.y7f{bottom:513.263520pt;}
.y116{bottom:513.265693pt;}
.y167{bottom:513.267747pt;}
.y4a{bottom:513.271200pt;}
.y1b8{bottom:513.271733pt;}
.y23a{bottom:521.276813pt;}
.yb4{bottom:523.924413pt;}
.y12{bottom:524.294693pt;}
.y1f3{bottom:525.281453pt;}
.ye9{bottom:529.284947pt;}
.y157{bottom:529.287320pt;}
.y7e{bottom:529.288320pt;}
.y115{bottom:529.290493pt;}
.y133{bottom:529.291813pt;}
.y166{bottom:529.292547pt;}
.y49{bottom:529.296000pt;}
.y1b7{bottom:529.296533pt;}
.y239{bottom:533.295653pt;}
.y1f2{bottom:537.300293pt;}
.yb3{bottom:539.949213pt;}
.y11{bottom:544.250893pt;}
.ye8{bottom:545.234533pt;}
.y156{bottom:545.236320pt;}
.y7d{bottom:545.237333pt;}
.y238{bottom:545.238493pt;}
.y114{bottom:545.239507pt;}
.y132{bottom:545.240827pt;}
.y165{bottom:545.241560pt;}
.y48{bottom:545.245013pt;}
.y1b6{bottom:545.245547pt;}
.y1f1{bottom:549.243133pt;}
.yb2{bottom:555.974013pt;}
.y237{bottom:557.257333pt;}
.y10{bottom:560.276387pt;}
.y155{bottom:561.261120pt;}
.y1f0{bottom:561.261973pt;}
.y7c{bottom:561.262120pt;}
.y113{bottom:561.264307pt;}
.y131{bottom:561.265613pt;}
.y164{bottom:561.266360pt;}
.y47{bottom:561.269800pt;}
.y1b5{bottom:561.270333pt;}
.y236{bottom:569.276173pt;}
.yb1{bottom:571.923013pt;}
.y1ef{bottom:573.280813pt;}
.yf{bottom:576.301880pt;}
.y154{bottom:577.285920pt;}
.y7b{bottom:577.286920pt;}
.y112{bottom:577.289093pt;}
.y130{bottom:577.290413pt;}
.y163{bottom:577.291147pt;}
.ye7{bottom:577.293200pt;}
.y46{bottom:577.294600pt;}
.y1b4{bottom:577.295133pt;}
.y235{bottom:581.295013pt;}
.y1ee{bottom:585.299653pt;}
.yb0{bottom:587.947813pt;}
.ye{bottom:592.251373pt;}
.y153{bottom:593.234933pt;}
.y7a{bottom:593.235933pt;}
.y234{bottom:593.237853pt;}
.y111{bottom:593.238107pt;}
.y12f{bottom:593.239427pt;}
.y162{bottom:593.240160pt;}
.ye6{bottom:593.242213pt;}
.y45{bottom:593.243613pt;}
.y1b3{bottom:593.244147pt;}
.y1ed{bottom:597.242493pt;}
.yaf{bottom:603.972613pt;}
.y233{bottom:605.256693pt;}
.yd{bottom:608.276867pt;}
.y152{bottom:609.259720pt;}
.y79{bottom:609.260733pt;}
.y1ec{bottom:609.261333pt;}
.y110{bottom:609.262907pt;}
.y12e{bottom:609.264227pt;}
.y161{bottom:609.264960pt;}
.ye5{bottom:609.267013pt;}
.y44{bottom:609.268413pt;}
.y1b2{bottom:609.268947pt;}
.y232{bottom:617.275533pt;}
.yae{bottom:619.921627pt;}
.y1eb{bottom:621.280173pt;}
.yc{bottom:624.302360pt;}
.y78{bottom:625.285533pt;}
.y10f{bottom:625.287707pt;}
.y12d{bottom:625.289013pt;}
.ye4{bottom:625.291813pt;}
.y43{bottom:625.293200pt;}
.y1b1{bottom:625.293747pt;}
.y231{bottom:629.294373pt;}
.y1ea{bottom:633.299013pt;}
.yad{bottom:635.946413pt;}
.yb{bottom:640.251853pt;}
.y77{bottom:641.234533pt;}
.y10e{bottom:641.236720pt;}
.y230{bottom:641.237213pt;}
.y12c{bottom:641.238027pt;}
.ye3{bottom:641.240827pt;}
.y42{bottom:641.242213pt;}
.y1b0{bottom:641.242747pt;}
.y1e9{bottom:645.241853pt;}
.yac{bottom:651.971213pt;}
.y22f{bottom:653.256053pt;}
.y76{bottom:657.259720pt;}
.y1e8{bottom:657.260693pt;}
.y10d{bottom:657.261507pt;}
.y12b{bottom:657.262827pt;}
.ye2{bottom:657.265613pt;}
.y41{bottom:657.267013pt;}
.y1af{bottom:657.267547pt;}
.y174{bottom:658.015773pt;}
.ya{bottom:664.289573pt;}
.y22e{bottom:665.274893pt;}
.yab{bottom:667.920227pt;}
.y1e7{bottom:669.279533pt;}
.y173{bottom:671.394800pt;}
.y75{bottom:673.284947pt;}
.y10c{bottom:673.286307pt;}
.y12a{bottom:673.287627pt;}
.ye1{bottom:673.290413pt;}
.y40{bottom:673.291813pt;}
.y1ae{bottom:673.292347pt;}
.y22d{bottom:677.293733pt;}
.y1e6{bottom:681.298373pt;}
.yaa{bottom:683.945027pt;}
.y172{bottom:684.699173pt;}
.y10b{bottom:689.235320pt;}
.y129{bottom:689.236627pt;}
.y22c{bottom:689.237573pt;}
.ye0{bottom:689.239427pt;}
.y3f{bottom:689.240827pt;}
.y1ad{bottom:689.241360pt;}
.y1e5{bottom:693.241213pt;}
.y171{bottom:698.078200pt;}
.ya9{bottom:699.969827pt;}
.y22b{bottom:701.256413pt;}
.y1e4{bottom:705.260053pt;}
.y10a{bottom:705.260120pt;}
.y128{bottom:705.261427pt;}
.ydf{bottom:705.264227pt;}
.y3e{bottom:705.265613pt;}
.y1ac{bottom:705.266147pt;}
.y74{bottom:705.286520pt;}
.y170{bottom:711.382573pt;}
.y22a{bottom:713.275253pt;}
.y8{bottom:715.615547pt;}
.ya8{bottom:715.918827pt;}
.y1e3{bottom:717.278893pt;}
.y109{bottom:721.284907pt;}
.y127{bottom:721.286227pt;}
.yde{bottom:721.289013pt;}
.y3d{bottom:721.290413pt;}
.y1ab{bottom:721.290947pt;}
.y73{bottom:721.311320pt;}
.y9{bottom:722.116360pt;}
.y229{bottom:725.294093pt;}
.y1e2{bottom:729.297720pt;}
.ya7{bottom:731.943627pt;}
.y6{bottom:734.286360pt;}
.y108{bottom:737.234413pt;}
.y126{bottom:737.235240pt;}
.y228{bottom:737.236933pt;}
.ydd{bottom:737.238027pt;}
.y3c{bottom:737.239427pt;}
.y1aa{bottom:737.239960pt;}
.y72{bottom:737.260333pt;}
.y7{bottom:740.787347pt;}
.y1e1{bottom:741.241560pt;}
.ya5{bottom:747.968427pt;}
.y227{bottom:749.255773pt;}
.y107{bottom:753.259760pt;}
.y125{bottom:753.260040pt;}
.y1e0{bottom:753.260400pt;}
.ydc{bottom:753.262827pt;}
.y3b{bottom:753.264227pt;}
.y1a9{bottom:753.264760pt;}
.y71{bottom:753.285133pt;}
.ya6{bottom:753.713213pt;}
.y226{bottom:761.274613pt;}
.ya3{bottom:763.917973pt;}
.y1df{bottom:765.279240pt;}
.y5{bottom:766.263720pt;}
.y106{bottom:769.284827pt;}
.ydb{bottom:769.287627pt;}
.y3a{bottom:769.289013pt;}
.y1a8{bottom:769.289547pt;}
.y70{bottom:769.309920pt;}
.ya4{bottom:769.738360pt;}
.y225{bottom:773.293453pt;}
.y1de{bottom:777.298080pt;}
.ya2{bottom:779.943040pt;}
.y124{bottom:785.234413pt;}
.y224{bottom:785.236293pt;}
.yda{bottom:785.236627pt;}
.y39{bottom:785.238027pt;}
.y1a7{bottom:785.238560pt;}
.y6f{bottom:785.258933pt;}
.y1dd{bottom:789.240920pt;}
.y223{bottom:797.255133pt;}
.y4{bottom:800.958267pt;}
.y123{bottom:801.259760pt;}
.yd9{bottom:801.261427pt;}
.y38{bottom:801.262827pt;}
.y105{bottom:801.263360pt;}
.y6e{bottom:801.283733pt;}
.y222{bottom:809.273973pt;}
.y1dc{bottom:813.278560pt;}
.yd8{bottom:817.286227pt;}
.y37{bottom:817.287627pt;}
.ya1{bottom:817.288160pt;}
.y6d{bottom:817.308533pt;}
.y221{bottom:821.292813pt;}
.yd7{bottom:833.235240pt;}
.y220{bottom:833.235653pt;}
.y122{bottom:833.236427pt;}
.y36{bottom:833.236627pt;}
.ya0{bottom:833.237173pt;}
.y6c{bottom:833.257547pt;}
.y3{bottom:835.579200pt;}
.y21f{bottom:845.254493pt;}
.yd6{bottom:849.260040pt;}
.y121{bottom:849.261227pt;}
.y35{bottom:849.261427pt;}
.y9f{bottom:849.261960pt;}
.y6b{bottom:849.282333pt;}
.y1db{bottom:857.272813pt;}
.y21e{bottom:857.273333pt;}
.yd5{bottom:865.284827pt;}
.y120{bottom:865.286013pt;}
.y34{bottom:865.286227pt;}
.y9e{bottom:865.286760pt;}
.y6a{bottom:865.307133pt;}
.y21d{bottom:869.292173pt;}
.y2{bottom:870.273747pt;}
.yd4{bottom:881.234373pt;}
.y1da{bottom:881.234493pt;}
.y21c{bottom:881.235013pt;}
.y11f{bottom:881.235027pt;}
.y33{bottom:881.235240pt;}
.y9d{bottom:881.235773pt;}
.y69{bottom:881.256147pt;}
.y1d9{bottom:893.253333pt;}
.y1d7{bottom:893.253493pt;}
.y21b{bottom:893.253853pt;}
.y11e{bottom:897.259827pt;}
.y32{bottom:897.260040pt;}
.y9c{bottom:897.260573pt;}
.y68{bottom:897.280947pt;}
.y1d8{bottom:897.713213pt;}
.y1d6{bottom:905.272333pt;}
.y21a{bottom:905.272693pt;}
.yd3{bottom:913.281840pt;}
.y11d{bottom:913.284627pt;}
.y31{bottom:913.284827pt;}
.y9b{bottom:913.285360pt;}
.y67{bottom:913.305733pt;}
.y1d5{bottom:917.291173pt;}
.y219{bottom:917.291533pt;}
.y1{bottom:920.919427pt;}
.y1d4{bottom:921.675293pt;}
.yd2{bottom:929.230853pt;}
.y11c{bottom:929.233627pt;}
.y30{bottom:929.234373pt;}
.y1d3{bottom:929.236667pt;}
.y66{bottom:929.254747pt;}
.y2f{bottom:991.067160pt;}
.y151{bottom:1004.367653pt;}
.y13c{bottom:1004.367760pt;}
.y1a6{bottom:1004.370533pt;}
.y9a{bottom:1004.371507pt;}
.y2e{bottom:1004.371533pt;}
.h9{height:19.223590pt;}
.h12{height:25.200000pt;}
.hf{height:25.223774pt;}
.ha{height:26.916949pt;}
.h11{height:27.635200pt;}
.h5{height:28.196676pt;}
.h8{height:28.839615pt;}
.hc{height:30.762282pt;}
.he{height:35.377451pt;}
.h10{height:36.135056pt;}
.hb{height:37.588863pt;}
.hd{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.h4{height:42.299051pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.xc{left:79.143333pt;}
.x1{left:80.957467pt;}
.xb{left:84.283467pt;}
.xe{left:86.248907pt;}
.x19{left:95.622000pt;}
.xa{left:193.662920pt;}
.x14{left:195.628280pt;}
.x3{left:202.960533pt;}
.x15{left:205.001613pt;}
.x4{left:212.031480pt;}
.x12{left:218.834680pt;}
.x13{left:227.829880pt;}
.xd{left:240.604667pt;}
.x5{left:317.026667pt;}
.x6{left:322.015733pt;}
.x11{left:382.488120pt;}
.xf{left:406.299280pt;}
.x7{left:410.229853pt;}
.x8{left:415.218787pt;}
.x10{left:416.957653pt;}
.x18{left:426.330493pt;}
.x1b{left:429.528120pt;}
.x1a{left:430.473467pt;}
.x16{left:479.999880pt;}
.x17{left:483.552653pt;}
.x9{left:586.809320pt;}
}




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