
    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_d80295d66a592c1c5fe50cd6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_9588824e9377e6110f4c5635.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_9e9951794f6dbecd614be3c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_528f6473f413dc5b4bee1cb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686000;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_69709728b5f39e2e5ab69812.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_fb67870607bcf3770ad8aa9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850000;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_40334fdebdf8a1512559f91e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d735eea16e3b926c80a9322e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_37481276cf077e5547bb559b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_3277f3a28c93a6b187b9bbc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_cfaf9effdeaa793e5fe6a0ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_8246f09ee1fc92c9b6e5a2b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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_2c1cfe2396de7ab57062a29e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.905000;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_bc1479ebb08dbac2fd370fd3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899000;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_6847fe2d42eed66f8533e721.woff2')format("woff");}.fff{font-family:fff;line-height:0.678000;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_e8f798051ebab5ba75281aec.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.800000;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_2ad8a2ad63484ea62ba3bf76.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.049000;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_0e2d81d287eea908006d86be.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;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:ff13;src:url('chunks/assets/font_91fe8e6bba9340d25a9c0293.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727000;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:ff14;src:url('chunks/assets/font_256f17d37174c2e4a3a2c223.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.451000;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;}
.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);}
.v2{vertical-align:-23.041380px;}
.v9{vertical-align:-14.399976px;}
.v3{vertical-align:-8.639040px;}
.va{vertical-align:-5.758596px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.480480px;}
.v8{vertical-align:8.641380px;}
.v4{vertical-align:15.119520px;}
.vc{vertical-align:17.280480px;}
.v1{vertical-align:21.600000px;}
.v5{vertical-align:24.478140px;}
.v6{vertical-align:39.600000px;}
.vb{vertical-align:72.719400px;}
.ls3{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.018582px;}
.ls46{letter-spacing:0.020922px;}
.ls43{letter-spacing:0.023262px;}
.ls3f{letter-spacing:0.073152px;}
.ls37{letter-spacing:0.169452px;}
.ls27{letter-spacing:0.171792px;}
.ls2f{letter-spacing:0.176532px;}
.ls4{letter-spacing:0.211489px;}
.ls1a{letter-spacing:0.257815px;}
.ls2a{letter-spacing:0.294396px;}
.ls50{letter-spacing:0.318228px;}
.ls4d{letter-spacing:0.322908px;}
.ls16{letter-spacing:0.351120px;}
.ls1{letter-spacing:1.391276px;}
.ls3a{letter-spacing:1.670798px;}
.lsc{letter-spacing:1.808214px;}
.ls7{letter-spacing:1.867995px;}
.ls41{letter-spacing:2.390318px;}
.ls34{letter-spacing:2.534428px;}
.ls38{letter-spacing:2.536768px;}
.ls25{letter-spacing:2.715374px;}
.ls0{letter-spacing:2.830316px;}
.ls40{letter-spacing:2.832656px;}
.lsf{letter-spacing:3.254008px;}
.lsd{letter-spacing:3.256348px;}
.ls5{letter-spacing:3.404950px;}
.ls24{letter-spacing:3.432554px;}
.ls6{letter-spacing:3.434894px;}
.ls1e{letter-spacing:3.452834px;}
.lsb{letter-spacing:3.774845px;}
.ls8{letter-spacing:4.873934px;}
.ls2c{letter-spacing:5.045797px;}
.lse{letter-spacing:5.408214px;}
.ls29{letter-spacing:6.193478px;}
.ls2e{letter-spacing:6.359371px;}
.ls39{letter-spacing:7.078891px;}
.ls3e{letter-spacing:9.914527px;}
.ls56{letter-spacing:10.021356px;}
.ls28{letter-spacing:10.034690px;}
.ls3d{letter-spacing:13.254876px;}
.ls3c{letter-spacing:13.327740px;}
.ls36{letter-spacing:15.957876px;}
.ls35{letter-spacing:16.013232px;}
.ls15{letter-spacing:16.096855px;}
.ls13{letter-spacing:16.133196px;}
.ls17{letter-spacing:16.192560px;}
.ls58{letter-spacing:16.770049px;}
.lsa{letter-spacing:16.855596px;}
.ls12{letter-spacing:16.912080px;}
.ls55{letter-spacing:17.009995px;}
.ls20{letter-spacing:17.399316px;}
.ls52{letter-spacing:17.641305px;}
.ls4c{letter-spacing:17.834042px;}
.ls4e{letter-spacing:18.112157px;}
.ls42{letter-spacing:18.134496px;}
.ls45{letter-spacing:18.351120px;}
.ls51{letter-spacing:18.363165px;}
.ls30{letter-spacing:18.893712px;}
.ls32{letter-spacing:19.273934px;}
.ls22{letter-spacing:19.382316px;}
.ls14{letter-spacing:19.814908px;}
.ls54{letter-spacing:19.817248px;}
.ls11{letter-spacing:20.536768px;}
.ls44{letter-spacing:20.830316px;}
.ls47{letter-spacing:20.858771px;}
.ls2b{letter-spacing:20.887477px;}
.ls18{letter-spacing:21.014976px;}
.ls9{letter-spacing:21.434894px;}
.ls57{letter-spacing:21.606877px;}
.ls31{letter-spacing:21.973528px;}
.ls3b{letter-spacing:22.494245px;}
.ls53{letter-spacing:23.027848px;}
.ls21{letter-spacing:23.414908px;}
.ls1b{letter-spacing:24.421356px;}
.ls2d{letter-spacing:24.458771px;}
.ls1d{letter-spacing:24.599316px;}
.ls1c{letter-spacing:24.738295px;}
.ls4a{letter-spacing:24.831600px;}
.ls19{letter-spacing:24.856348px;}
.ls26{letter-spacing:25.206877px;}
.ls23{letter-spacing:26.813232px;}
.ls4b{letter-spacing:27.339251px;}
.ls49{letter-spacing:28.030316px;}
.ls1f{letter-spacing:28.456348px;}
.ls2{letter-spacing:30.644812px;}
.ls33{letter-spacing:35.574996px;}
.ls4f{letter-spacing:296.347984px;}
.ls10{letter-spacing:932.055388px;}
.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;}
}
.ws6{word-spacing:-28.244097px;}
.ws8c{word-spacing:-21.339975px;}
.wsba{word-spacing:-19.905355px;}
.ws65{word-spacing:-16.067750px;}
.ws64{word-spacing:-13.933752px;}
.ws9a{word-spacing:-10.094466px;}
.ws130{word-spacing:-8.215893px;}
.ws134{word-spacing:-8.214428px;}
.ws84{word-spacing:-6.266247px;}
.wse0{word-spacing:-2.879054px;}
.wse8{word-spacing:-2.878893px;}
.ws136{word-spacing:-2.159054px;}
.ws132{word-spacing:-1.014863px;}
.ws133{word-spacing:-0.923896px;}
.wse3{word-spacing:-0.862805px;}
.wse4{word-spacing:-0.862386px;}
.wse6{word-spacing:-0.370646px;}
.ws135{word-spacing:-0.295329px;}
.wse7{word-spacing:-0.262524px;}
.ws131{word-spacing:-0.216664px;}
.wse5{word-spacing:-0.216245px;}
.ws16b{word-spacing:-0.071731px;}
.ws24{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.053798px;}
.ws28{word-spacing:0.000000px;}
.ws8b{word-spacing:2.827577px;}
.ws71{word-spacing:5.368425px;}
.ws6e{word-spacing:6.200650px;}
.ws15{word-spacing:6.396924px;}
.ws80{word-spacing:6.445934px;}
.ws7f{word-spacing:6.922450px;}
.wsa{word-spacing:8.251647px;}
.ws70{word-spacing:9.573153px;}
.ws63{word-spacing:9.912186px;}
.wsb9{word-spacing:9.933055px;}
.ws6b{word-spacing:9.963099px;}
.ws9c{word-spacing:9.975273px;}
.wsae{word-spacing:9.976289px;}
.ws67{word-spacing:10.159730px;}
.ws119{word-spacing:10.371826px;}
.ws155{word-spacing:10.371945px;}
.ws129{word-spacing:10.373200px;}
.ws8e{word-spacing:11.642540px;}
.wsda{word-spacing:11.961757px;}
.wsfe{word-spacing:12.135332px;}
.ws36{word-spacing:12.136528px;}
.ws175{word-spacing:12.284676px;}
.ws5e{word-spacing:12.531288px;}
.ws185{word-spacing:12.667182px;}
.ws165{word-spacing:12.855332px;}
.wsc2{word-spacing:13.803138px;}
.ws161{word-spacing:13.971347px;}
.ws166{word-spacing:13.971826px;}
.ws178{word-spacing:14.106555px;}
.ws16e{word-spacing:14.106985px;}
.ws100{word-spacing:14.252354px;}
.wsbc{word-spacing:14.295811px;}
.ws160{word-spacing:14.412433px;}
.wsc7{word-spacing:14.412852px;}
.ws58{word-spacing:14.413151px;}
.wsd7{word-spacing:14.521703px;}
.wsb2{word-spacing:14.565275px;}
.ws181{word-spacing:14.587888px;}
.wsa5{word-spacing:14.670817px;}
.ws157{word-spacing:14.688299px;}
.ws142{word-spacing:14.691347px;}
.ws60{word-spacing:14.692244px;}
.ws114{word-spacing:14.855133px;}
.wsc3{word-spacing:14.943413px;}
.wsc4{word-spacing:14.971875px;}
.wsa4{word-spacing:15.002199px;}
.ws9d{word-spacing:15.016229px;}
.ws18{word-spacing:15.133868px;}
.ws11c{word-spacing:15.241703px;}
.wsf1{word-spacing:15.260689px;}
.wsf3{word-spacing:15.260850px;}
.wsb3{word-spacing:15.407223px;}
.wsa3{word-spacing:15.408657px;}
.ws86{word-spacing:15.412782px;}
.ws9b{word-spacing:15.413200px;}
.wsb5{word-spacing:15.454630px;}
.ws113{word-spacing:15.515703px;}
.wsfb{word-spacing:15.670484px;}
.ws61{word-spacing:15.675741px;}
.ws8f{word-spacing:15.691098px;}
.ws7c{word-spacing:15.691517px;}
.wsb4{word-spacing:15.714882px;}
.ws14b{word-spacing:15.734914px;}
.wsde{word-spacing:15.735332px;}
.ws111{word-spacing:15.772003px;}
.ws110{word-spacing:15.961225px;}
.ws38{word-spacing:15.962122px;}
.ws11f{word-spacing:15.962660px;}
.ws6a{word-spacing:16.087053px;}
.ws5c{word-spacing:16.131288px;}
.ws146{word-spacing:16.132782px;}
.ws68{word-spacing:16.294177px;}
.wsff{word-spacing:16.410919px;}
.wsc0{word-spacing:16.410979px;}
.ws15a{word-spacing:16.411098px;}
.ws10b{word-spacing:16.454854px;}
.ws7e{word-spacing:16.455186px;}
.wsb6{word-spacing:16.455452px;}
.ws62{word-spacing:16.455751px;}
.ws2b{word-spacing:16.456767px;}
.ws4f{word-spacing:16.572373px;}
.ws15b{word-spacing:16.573808px;}
.ws162{word-spacing:16.642537px;}
.ws154{word-spacing:16.681644px;}
.wsbe{word-spacing:16.682062px;}
.ws7b{word-spacing:16.682660px;}
.ws76{word-spacing:16.683198px;}
.ws6c{word-spacing:16.808906px;}
.ws15e{word-spacing:16.851825px;}
.ws123{word-spacing:16.852304px;}
.ws55{word-spacing:16.853141px;}
.ws18c{word-spacing:16.986592px;}
.ws187{word-spacing:16.987452px;}
.ws17c{word-spacing:17.110812px;}
.ws5f{word-spacing:17.176289px;}
.ws39{word-spacing:17.401165px;}
.ws4a{word-spacing:17.401584px;}
.ws13d{word-spacing:17.401763px;}
.wsbf{word-spacing:17.402062px;}
.wsa6{word-spacing:17.402182px;}
.wsc5{word-spacing:17.403078px;}
.ws109{word-spacing:17.544813px;}
.wsd6{word-spacing:17.567283px;}
.ws57{word-spacing:17.571825px;}
.wscf{word-spacing:17.572722px;}
.wsd9{word-spacing:17.573260px;}
.ws7{word-spacing:17.707435px;}
.ws179{word-spacing:17.736755px;}
.ws137{word-spacing:17.831225px;}
.ws5{word-spacing:17.831386px;}
.ws37{word-spacing:17.851457px;}
.ws90{word-spacing:17.851517px;}
.ws105{word-spacing:17.851576px;}
.ws33{word-spacing:17.895811px;}
.ws12a{word-spacing:17.895990px;}
.ws87{word-spacing:18.013330px;}
.wsa7{word-spacing:18.071910px;}
.ws1a{word-spacing:18.122002px;}
.ws1c{word-spacing:18.122182px;}
.ws188{word-spacing:18.141264px;}
.ws18b{word-spacing:18.188445px;}
.ws182{word-spacing:18.245418px;}
.ws9{word-spacing:18.245471px;}
.wsd8{word-spacing:18.248010px;}
.ws12c{word-spacing:18.284421px;}
.ws171{word-spacing:18.284529px;}
.ws34{word-spacing:18.292244px;}
.ws16a{word-spacing:18.292304px;}
.wsa2{word-spacing:18.292363px;}
.wse1{word-spacing:18.380667px;}
.ws183{word-spacing:18.426556px;}
.ws17a{word-spacing:18.426987px;}
.ws186{word-spacing:18.427041px;}
.ws172{word-spacing:18.428439px;}
.wsf0{word-spacing:18.429602px;}
.wse9{word-spacing:18.456684px;}
.ws104{word-spacing:18.542182px;}
.ws51{word-spacing:18.571576px;}
.ws5a{word-spacing:18.571875px;}
.wsd0{word-spacing:18.571995px;}
.ws121{word-spacing:18.572473px;}
.ws45{word-spacing:18.616349px;}
.wsd3{word-spacing:18.616408px;}
.wsa8{word-spacing:18.732732px;}
.ws19{word-spacing:18.841225px;}
.ws81{word-spacing:18.841703px;}
.wsc9{word-spacing:18.842122px;}
.ws103{word-spacing:18.842540px;}
.ws14a{word-spacing:18.843018px;}
.ws8d{word-spacing:19.008717px;}
.ws1e{word-spacing:19.011347px;}
.ws7a{word-spacing:19.011766px;}
.ws83{word-spacing:19.011825px;}
.ws7d{word-spacing:19.011885px;}
.ws11d{word-spacing:19.012363px;}
.ws2{word-spacing:19.012782px;}
.ws43{word-spacing:19.013200px;}
.wse{word-spacing:19.099788px;}
.ws16f{word-spacing:19.100649px;}
.ws11{word-spacing:19.101079px;}
.ws170{word-spacing:19.146485px;}
.ws17d{word-spacing:19.147991px;}
.wsb7{word-spacing:19.174655px;}
.ws107{word-spacing:19.291098px;}
.ws13c{word-spacing:19.291215px;}
.wsac{word-spacing:19.291457px;}
.ws3{word-spacing:19.291517px;}
.ws2f{word-spacing:19.292413px;}
.ws96{word-spacing:19.309044px;}
.ws89{word-spacing:19.334914px;}
.ws82{word-spacing:19.335332px;}
.ws4{word-spacing:19.335751px;}
.wsb8{word-spacing:19.335870px;}
.ws48{word-spacing:19.336348px;}
.ws41{word-spacing:19.336827px;}
.wsd5{word-spacing:19.452433px;}
.wsdf{word-spacing:19.453390px;}
.ws50{word-spacing:19.561225px;}
.ws99{word-spacing:19.561524px;}
.ws102{word-spacing:19.562122px;}
.ws92{word-spacing:19.562540px;}
.ws69{word-spacing:19.731287px;}
.ws4c{word-spacing:19.731347px;}
.ws97{word-spacing:19.731407px;}
.wscb{word-spacing:19.731825px;}
.wsd4{word-spacing:19.732304px;}
.wsa1{word-spacing:19.732782px;}
.wsfc{word-spacing:19.886114px;}
.ws13{word-spacing:19.990419px;}
.ws98{word-spacing:20.003092px;}
.ws32{word-spacing:20.010919px;}
.ws12b{word-spacing:20.011098px;}
.ws164{word-spacing:20.011517px;}
.wsf5{word-spacing:20.024647px;}
.ws95{word-spacing:20.055870px;}
.ws54{word-spacing:20.056169px;}
.ws140{word-spacing:20.056767px;}
.ws35{word-spacing:20.172911px;}
.ws1d{word-spacing:20.173390px;}
.wsbd{word-spacing:20.281165px;}
.ws118{word-spacing:20.281644px;}
.ws120{word-spacing:20.281703px;}
.ws11b{word-spacing:20.282241px;}
.wsca{word-spacing:20.282480px;}
.ws3d{word-spacing:20.282660px;}
.wsc8{word-spacing:20.283078px;}
.wsea{word-spacing:20.348823px;}
.ws9f{word-spacing:20.451407px;}
.ws13b{word-spacing:20.451825px;}
.wsa9{word-spacing:20.452304px;}
.ws88{word-spacing:20.452782px;}
.ws173{word-spacing:20.587042px;}
.ws16d{word-spacing:20.588494px;}
.ws9e{word-spacing:20.655984px;}
.ws1b{word-spacing:20.730620px;}
.wsf8{word-spacing:20.744487px;}
.ws74{word-spacing:20.753203px;}
.wsa0{word-spacing:20.774854px;}
.ws91{word-spacing:20.776289px;}
.ws163{word-spacing:20.776468px;}
.wsab{word-spacing:20.892493px;}
.ws156{word-spacing:20.893330px;}
.wsd2{word-spacing:21.001165px;}
.ws15c{word-spacing:21.001584px;}
.ws21{word-spacing:21.002600px;}
.ws5d{word-spacing:21.003078px;}
.ws29{word-spacing:21.003138px;}
.ws10{word-spacing:21.068375px;}
.ws18a{word-spacing:21.068967px;}
.wsfd{word-spacing:21.165370px;}
.ws145{word-spacing:21.171407px;}
.wsad{word-spacing:21.171825px;}
.ws10a{word-spacing:21.173260px;}
.wsf{word-spacing:21.259682px;}
.ws14{word-spacing:21.260704px;}
.ws176{word-spacing:21.261134px;}
.ws180{word-spacing:21.307024px;}
.ws49{word-spacing:21.450859px;}
.ws122{word-spacing:21.451038px;}
.ws11e{word-spacing:21.451457px;}
.ws15d{word-spacing:21.452413px;}
.wsdc{word-spacing:21.452415px;}
.ws149{word-spacing:21.452473px;}
.ws3c{word-spacing:21.495392px;}
.ws44{word-spacing:21.495810px;}
.ws73{word-spacing:21.558690px;}
.wsc1{word-spacing:21.722182px;}
.ws40{word-spacing:21.722600px;}
.ws3b{word-spacing:21.723018px;}
.ws127{word-spacing:21.879005px;}
.ws139{word-spacing:21.888299px;}
.ws30{word-spacing:21.891766px;}
.ws31{word-spacing:21.892244px;}
.ws128{word-spacing:21.892842px;}
.ws13f{word-spacing:21.893260px;}
.ws17e{word-spacing:21.979825px;}
.ws189{word-spacing:22.026953px;}
.wsd{word-spacing:22.151765px;}
.ws101{word-spacing:22.171995px;}
.ws2a{word-spacing:22.215392px;}
.ws112{word-spacing:22.217006px;}
.ws85{word-spacing:22.434650px;}
.wsb1{word-spacing:22.441225px;}
.ws56{word-spacing:22.442002px;}
.ws53{word-spacing:22.442540px;}
.ws3a{word-spacing:22.607820px;}
.ws20{word-spacing:22.612782px;}
.ws23{word-spacing:22.613200px;}
.ws174{word-spacing:22.746505px;}
.wsef{word-spacing:22.836880px;}
.ws1f{word-spacing:22.935332px;}
.wsc6{word-spacing:22.935810px;}
.ws46{word-spacing:22.936528px;}
.wsb0{word-spacing:23.000490px;}
.ws8a{word-spacing:23.053390px;}
.ws106{word-spacing:23.154052px;}
.ws4e{word-spacing:23.161225px;}
.ws47{word-spacing:23.161644px;}
.ws124{word-spacing:23.162959px;}
.ws77{word-spacing:23.331407px;}
.ws158{word-spacing:23.332782px;}
.ws12{word-spacing:23.419736px;}
.ws10e{word-spacing:23.494177px;}
.ws79{word-spacing:23.611935px;}
.ws115{word-spacing:23.655332px;}
.wsce{word-spacing:23.656946px;}
.wsdb{word-spacing:23.881046px;}
.ws4b{word-spacing:23.882062px;}
.wsb{word-spacing:23.948842px;}
.ws75{word-spacing:24.045188px;}
.ws10c{word-spacing:24.051077px;}
.ws144{word-spacing:24.330620px;}
.ws2e{word-spacing:24.331457px;}
.ws78{word-spacing:24.374854px;}
.ws143{word-spacing:24.375272px;}
.ws4d{word-spacing:24.376289px;}
.ws5b{word-spacing:24.492493px;}
.ws116{word-spacing:24.600872px;}
.ws117{word-spacing:24.601763px;}
.wsaa{word-spacing:24.602600px;}
.ws42{word-spacing:24.771407px;}
.wscd{word-spacing:24.771825px;}
.ws10d{word-spacing:24.903410px;}
.ws17b{word-spacing:24.906559px;}
.ws14c{word-spacing:25.051875px;}
.ws15f{word-spacing:25.095810px;}
.ws52{word-spacing:25.096707px;}
.ws153{word-spacing:25.214346px;}
.ws2c{word-spacing:25.321703px;}
.ws14f{word-spacing:25.323138px;}
.ws22{word-spacing:25.492244px;}
.ws93{word-spacing:25.492722px;}
.wsdd{word-spacing:25.493260px;}
.wsc{word-spacing:25.580221px;}
.ws17f{word-spacing:25.626380px;}
.ws177{word-spacing:25.626972px;}
.ws150{word-spacing:25.770979px;}
.ws152{word-spacing:25.771576px;}
.ws26{word-spacing:25.771995px;}
.ws126{word-spacing:25.815392px;}
.ws2d{word-spacing:25.816229px;}
.ws13e{word-spacing:26.042122px;}
.ws3f{word-spacing:26.043018px;}
.ws125{word-spacing:26.207820px;}
.ws14d{word-spacing:26.212782px;}
.ws94{word-spacing:26.213380px;}
.ws16c{word-spacing:26.347977px;}
.ws141{word-spacing:26.491517px;}
.ws108{word-spacing:26.932304px;}
.ws10f{word-spacing:26.932782px;}
.ws184{word-spacing:27.067959px;}
.ws159{word-spacing:27.177087px;}
.ws59{word-spacing:27.188062px;}
.ws25{word-spacing:27.211098px;}
.ws27{word-spacing:27.256169px;}
.ws148{word-spacing:27.481165px;}
.wscc{word-spacing:27.648179px;}
.ws3e{word-spacing:27.651825px;}
.ws151{word-spacing:27.652304px;}
.ws16{word-spacing:27.910817px;}
.ws147{word-spacing:27.930620px;}
.ws169{word-spacing:27.974854px;}
.ws13a{word-spacing:27.975870px;}
.ws14e{word-spacing:28.813927px;}
.ws168{word-spacing:29.092244px;}
.ws0{word-spacing:31.329863px;}
.ws1{word-spacing:31.605310px;}
.ws11a{word-spacing:32.251038px;}
.ws167{word-spacing:41.418895px;}
.ws12e{word-spacing:65.112903px;}
.wsf6{word-spacing:66.735306px;}
.wsd1{word-spacing:67.965728px;}
.wsf2{word-spacing:70.356053px;}
.ws17{word-spacing:80.473081px;}
.ws12f{word-spacing:92.694378px;}
.wseb{word-spacing:146.726616px;}
.wsf4{word-spacing:154.635350px;}
.wsed{word-spacing:164.775621px;}
.wsec{word-spacing:194.245777px;}
.wsf7{word-spacing:202.157097px;}
.wsfa{word-spacing:208.435581px;}
.wsee{word-spacing:212.294726px;}
.wsf9{word-spacing:217.547019px;}
.ws72{word-spacing:379.732599px;}
.wsbb{word-spacing:518.854889px;}
.ws6f{word-spacing:539.246534px;}
.wsaf{word-spacing:651.335485px;}
.ws66{word-spacing:700.681851px;}
.ws6d{word-spacing:729.394970px;}
.wse2{word-spacing:865.842780px;}
.ws138{word-spacing:915.478262px;}
.ws12d{word-spacing:922.350691px;}
._0{margin-left:-49.229352px;}
._16{margin-left:-40.949599px;}
._7{margin-left:-37.618577px;}
._33{margin-left:-34.080438px;}
._19{margin-left:-32.036515px;}
._20{margin-left:-30.900758px;}
._13{margin-left:-29.806937px;}
._d{margin-left:-28.298894px;}
._e{margin-left:-27.096863px;}
._a{margin-left:-22.687920px;}
._14{margin-left:-20.888217px;}
._6{margin-left:-10.565197px;}
._25{margin-left:-9.448580px;}
._9{margin-left:-7.066981px;}
._8{margin-left:-5.181226px;}
._f{margin-left:-3.771799px;}
._3{margin-left:-2.217102px;}
._4{margin-left:-1.164045px;}
._2{width:1.018053px;}
._5{width:3.002109px;}
._18{width:4.291279px;}
._4c{width:9.037941px;}
._26{width:10.216744px;}
._4e{width:11.371814px;}
._50{width:13.063778px;}
._17{width:14.117666px;}
._1c{width:15.384778px;}
._1e{width:16.526311px;}
._1b{width:17.894596px;}
._c{width:19.001219px;}
._b{width:20.342008px;}
._12{width:21.988631px;}
._11{width:23.477031px;}
._1f{width:24.477467px;}
._10{width:25.541426px;}
._1d{width:26.663412px;}
._1a{width:28.103067px;}
._15{width:29.243730px;}
._4f{width:30.299894px;}
._1{width:33.143900px;}
._34{width:34.802871px;}
._24{width:68.748404px;}
._2c{width:71.694123px;}
._35{width:78.136628px;}
._21{width:80.516102px;}
._3c{width:91.944167px;}
._47{width:95.206763px;}
._3a{width:96.248550px;}
._44{width:101.116168px;}
._3e{width:102.404045px;}
._3b{width:108.641059px;}
._3d{width:110.008896px;}
._46{width:112.419965px;}
._45{width:114.565693px;}
._40{width:116.012312px;}
._48{width:120.996129px;}
._42{width:122.966006px;}
._39{width:126.519990px;}
._41{width:130.570856px;}
._4a{width:136.850176px;}
._37{width:138.039990px;}
._4d{width:143.084336px;}
._4b{width:150.689186px;}
._36{width:217.119784px;}
._43{width:221.987402px;}
._3f{width:236.883545px;}
._29{width:253.711259px;}
._49{width:257.721409px;}
._2e{width:286.727076px;}
._2f{width:295.130662px;}
._31{width:298.446609px;}
._32{width:299.540338px;}
._38{width:356.321059px;}
._2d{width:359.734672px;}
._30{width:385.368893px;}
._2b{width:407.404050px;}
._27{width:459.203567px;}
._28{width:502.008386px;}
._2a{width:756.084365px;}
._23{width:954.263415px;}
._22{width:1254.223683px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887920px;}
.fs3{font-size:35.865480px;}
.fs2{font-size:41.843100px;}
.fs4{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yeb{bottom:248.549400px;}
.yea{bottom:266.549400px;}
.y16c{bottom:266.909100px;}
.y73{bottom:266.909700px;}
.y9f{bottom:266.910150px;}
.y52{bottom:266.910300px;}
.y26{bottom:266.910360px;}
.y14d{bottom:266.910750px;}
.y11c{bottom:271.229760px;}
.y19d{bottom:279.511050px;}
.y11b{bottom:283.469760px;}
.ye9{bottom:284.549400px;}
.y16b{bottom:284.909100px;}
.y72{bottom:284.909700px;}
.y9e{bottom:284.910150px;}
.y51{bottom:284.910300px;}
.y25{bottom:284.910360px;}
.y14c{bottom:284.910750px;}
.yc0{bottom:286.169760px;}
.y11a{bottom:295.710345px;}
.y19c{bottom:295.890900px;}
.ybf{bottom:298.410345px;}
.ye8{bottom:302.369550px;}
.y16a{bottom:302.909100px;}
.y9d{bottom:302.910150px;}
.y50{bottom:302.910300px;}
.y24{bottom:302.910360px;}
.y14b{bottom:302.910750px;}
.y119{bottom:307.950000px;}
.ybe{bottom:310.649760px;}
.y19b{bottom:311.190900px;}
.y71{bottom:313.889550px;}
.y118{bottom:320.190000px;}
.ye7{bottom:320.369550px;}
.y169{bottom:320.728650px;}
.y9c{bottom:320.729700px;}
.y4f{bottom:320.729850px;}
.y23{bottom:320.729910px;}
.y14a{bottom:320.730300px;}
.ybd{bottom:322.890345px;}
.y19a{bottom:327.570750px;}
.y117{bottom:333.149760px;}
.ybc{bottom:335.129760px;}
.ye6{bottom:338.369550px;}
.y9b{bottom:338.729700px;}
.y4e{bottom:338.729850px;}
.y22{bottom:338.729910px;}
.y149{bottom:341.610750px;}
.y199{bottom:344.130450px;}
.y116{bottom:345.390345px;}
.ybb{bottom:347.369880px;}
.ye5{bottom:356.189700px;}
.y9a{bottom:356.549850px;}
.y4d{bottom:356.550000px;}
.y21{bottom:356.550060px;}
.y115{bottom:357.629760px;}
.y70{bottom:357.809700px;}
.y198{bottom:359.250600px;}
.y148{bottom:359.430300px;}
.yba{bottom:359.790345px;}
.y168{bottom:369.328650px;}
.y114{bottom:369.870000px;}
.yb9{bottom:372.030000px;}
.ye4{bottom:374.189700px;}
.y99{bottom:374.549850px;}
.y4c{bottom:374.550000px;}
.y20{bottom:374.550060px;}
.y6f{bottom:375.629250px;}
.y197{bottom:375.810900px;}
.y147{bottom:377.430300px;}
.y113{bottom:382.110000px;}
.y167{bottom:387.328650px;}
.yb8{bottom:387.870000px;}
.ye3{bottom:392.009850px;}
.y196{bottom:392.190750px;}
.y98{bottom:392.549850px;}
.y1f{bottom:392.550060px;}
.y6e{bottom:393.629250px;}
.y112{bottom:395.069760px;}
.y146{bottom:395.430300px;}
.y4b{bottom:398.129850px;}
.yb7{bottom:401.189700px;}
.y166{bottom:405.328650px;}
.y111{bottom:407.310345px;}
.y195{bottom:407.490750px;}
.ye2{bottom:410.009850px;}
.y97{bottom:410.370000px;}
.y1e{bottom:410.370210px;}
.y6d{bottom:411.449400px;}
.y145{bottom:413.250450px;}
.y4a{bottom:415.950000px;}
.y110{bottom:419.549760px;}
.y165{bottom:423.148800px;}
.y194{bottom:423.870600px;}
.ye1{bottom:428.009850px;}
.y96{bottom:428.370000px;}
.y1d{bottom:428.370210px;}
.y6c{bottom:429.449400px;}
.yb6{bottom:430.529400px;}
.y144{bottom:431.250450px;}
.y10f{bottom:431.790000px;}
.y49{bottom:433.950000px;}
.y193{bottom:440.430300px;}
.y164{bottom:441.868950px;}
.y10e{bottom:444.030000px;}
.ye0{bottom:445.829400px;}
.y1c{bottom:446.370210px;}
.y6b{bottom:447.449400px;}
.yb5{bottom:448.529400px;}
.y143{bottom:449.250450px;}
.y48{bottom:451.770150px;}
.y95{bottom:454.470000px;}
.y192{bottom:455.550450px;}
.y10d{bottom:456.810345px;}
.y163{bottom:459.868950px;}
.ydf{bottom:463.829400px;}
.y1b{bottom:464.190360px;}
.y6a{bottom:465.269550px;}
.yb4{bottom:466.349550px;}
.y142{bottom:467.070600px;}
.y10c{bottom:469.049760px;}
.y47{bottom:469.770150px;}
.y191{bottom:470.850450px;}
.y94{bottom:475.170000px;}
.y162{bottom:477.689100px;}
.y10b{bottom:481.290345px;}
.yde{bottom:481.829400px;}
.y1a{bottom:482.190360px;}
.y69{bottom:483.269550px;}
.yb3{bottom:484.349550px;}
.y141{bottom:485.070600px;}
.y190{bottom:487.410750px;}
.y46{bottom:487.770150px;}
.y93{bottom:489.390120px;}
.y92{bottom:493.170000px;}
.y10a{bottom:493.530000px;}
.y161{bottom:495.689100px;}
.ydd{bottom:499.829400px;}
.y19{bottom:500.010510px;}
.y68{bottom:501.269550px;}
.yb2{bottom:502.349550px;}
.y18f{bottom:502.710750px;}
.y140{bottom:502.890750px;}
.y45{bottom:505.590300px;}
.y109{bottom:505.950000px;}
.y91{bottom:507.390426px;}
.y90{bottom:511.170300px;}
.y160{bottom:513.689100px;}
.ydc{bottom:517.829400px;}
.y18{bottom:518.010510px;}
.y67{bottom:519.089700px;}
.y18e{bottom:519.090600px;}
.yb1{bottom:520.169700px;}
.y108{bottom:521.790000px;}
.y44{bottom:523.590300px;}
.y13f{bottom:523.770600px;}
.y8f{bottom:528.990450px;}
.y15f{bottom:531.509250px;}
.y107{bottom:534.030000px;}
.y18d{bottom:535.470450px;}
.ydb{bottom:535.649550px;}
.y17{bottom:536.010510px;}
.yb0{bottom:538.169700px;}
.y43{bottom:541.590300px;}
.y13e{bottom:541.770600px;}
.y15e{bottom:549.509250px;}
.y66{bottom:550.769550px;}
.y18c{bottom:550.770450px;}
.y106{bottom:551.489850px;}
.yda{bottom:553.649550px;}
.y8d{bottom:554.550150px;}
.yaf{bottom:555.989850px;}
.y42{bottom:559.409850px;}
.y13d{bottom:559.590750px;}
.y8a{bottom:561.930000px;}
.y18b{bottom:567.150300px;}
.y15d{bottom:567.329400px;}
.yd9{bottom:571.649550px;}
.y16{bottom:571.650210px;}
.y89{bottom:572.189712px;}
.y8e{bottom:572.190450px;}
.y65{bottom:573.269550px;}
.yae{bottom:573.989850px;}
.y41{bottom:577.409850px;}
.y13c{bottom:577.590750px;}
.y18a{bottom:582.450300px;}
.y15c{bottom:585.329400px;}
.y8c{bottom:586.409850px;}
.y88{bottom:587.849412px;}
.yd8{bottom:589.469700px;}
.y8b{bottom:590.909850px;}
.yad{bottom:591.989850px;}
.y64{bottom:595.589700px;}
.y13b{bottom:595.590750px;}
.y189{bottom:597.750300px;}
.y105{bottom:599.549550px;}
.y40{bottom:600.809850px;}
.y15b{bottom:604.049550px;}
.y87{bottom:605.849412px;}
.yd7{bottom:607.469700px;}
.yac{bottom:609.809400px;}
.y13a{bottom:613.410300px;}
.y188{bottom:614.130150px;}
.y63{bottom:614.309235px;}
.y104{bottom:617.549550px;}
.y62{bottom:618.089700px;}
.y3f{bottom:618.809850px;}
.y15a{bottom:622.049550px;}
.y15{bottom:622.230060px;}
.y86{bottom:623.669562px;}
.yd6{bottom:625.289850px;}
.y187{bottom:629.430150px;}
.yab{bottom:629.969700px;}
.y139{bottom:631.410300px;}
.y103{bottom:635.549550px;}
.y3e{bottom:636.809850px;}
.y14{bottom:638.610510px;}
.y159{bottom:639.869700px;}
.y61{bottom:640.409850px;}
.y85{bottom:641.669562px;}
.y186{bottom:645.990450px;}
.yaa{bottom:647.969700px;}
.y138{bottom:649.229850px;}
.y102{bottom:653.369700px;}
.y3d{bottom:654.629400px;}
.yd5{bottom:656.069700px;}
.y158{bottom:657.869700px;}
.y60{bottom:659.129385px;}
.y84{bottom:659.669562px;}
.y185{bottom:662.370300px;}
.y5f{bottom:662.909850px;}
.ya9{bottom:665.789850px;}
.y137{bottom:667.229850px;}
.y101{bottom:671.369700px;}
.y13{bottom:671.550210px;}
.y3c{bottom:672.629400px;}
.y157{bottom:675.689850px;}
.y83{bottom:677.489712px;}
.y184{bottom:677.670300px;}
.y5e{bottom:683.429385px;}
.ya8{bottom:683.789850px;}
.y136{bottom:685.229850px;}
.y5d{bottom:687.209850px;}
.y12{bottom:687.930060px;}
.y100{bottom:689.369700px;}
.y3b{bottom:690.449550px;}
.y156{bottom:693.689850px;}
.y183{bottom:694.050150px;}
.y82{bottom:695.489712px;}
.ya7{bottom:701.789850px;}
.y135{bottom:703.050000px;}
.y11{bottom:704.490360px;}
.yff{bottom:707.189850px;}
.y3a{bottom:708.449550px;}
.y182{bottom:710.430000px;}
.y155{bottom:711.689850px;}
.y81{bottom:713.489712px;}
.y5c{bottom:718.169670px;}
.yd4{bottom:719.789850px;}
.y10{bottom:720.870210px;}
.y134{bottom:721.050000px;}
.y5b{bottom:721.949550px;}
.yfe{bottom:725.189850px;}
.y181{bottom:725.730000px;}
.y39{bottom:726.449550px;}
.y80{bottom:731.309862px;}
.yf{bottom:737.250060px;}
.yd3{bottom:737.789850px;}
.y133{bottom:739.050000px;}
.y5a{bottom:739.769700px;}
.y180{bottom:742.290300px;}
.ya6{bottom:742.649550px;}
.yfd{bottom:743.010000px;}
.y38{bottom:744.269700px;}
.y7f{bottom:749.309862px;}
.y154{bottom:751.289850px;}
.ye{bottom:753.810360px;}
.yd2{bottom:755.610000px;}
.y17f{bottom:757.590300px;}
.y59{bottom:757.769700px;}
.yfc{bottom:761.010000px;}
.y37{bottom:762.269700px;}
.y7e{bottom:763.529406px;}
.y7d{bottom:767.129400px;}
.yd{bottom:770.190210px;}
.yd1{bottom:773.610000px;}
.y17e{bottom:773.970150px;}
.y58{bottom:775.769700px;}
.yfb{bottom:779.010000px;}
.y36{bottom:780.269700px;}
.y7c{bottom:785.129400px;}
.yc{bottom:786.570060px;}
.y17d{bottom:789.270150px;}
.yd0{bottom:791.429550px;}
.y57{bottom:793.589850px;}
.yfa{bottom:796.829550px;}
.y132{bottom:797.910345px;}
.y35{bottom:798.089850px;}
.ya5{bottom:798.269700px;}
.y153{bottom:802.949550px;}
.y7b{bottom:803.129400px;}
.yb{bottom:803.129760px;}
.y17c{bottom:805.650000px;}
.ycf{bottom:809.610000px;}
.y131{bottom:810.149760px;}
.y56{bottom:811.589850px;}
.yf9{bottom:814.829550px;}
.y34{bottom:816.089850px;}
.ya4{bottom:816.269700px;}
.ya{bottom:819.510210px;}
.y152{bottom:820.769700px;}
.y7a{bottom:820.949550px;}
.y17b{bottom:820.950000px;}
.y130{bottom:822.390345px;}
.yce{bottom:827.610000px;}
.y55{bottom:829.410000px;}
.yf8{bottom:832.829550px;}
.y33{bottom:833.910000px;}
.ya3{bottom:834.269700px;}
.y12f{bottom:834.630000px;}
.y17a{bottom:837.329850px;}
.y151{bottom:838.769700px;}
.y79{bottom:838.949550px;}
.ycd{bottom:845.429550px;}
.y12e{bottom:847.050000px;}
.y54{bottom:847.410000px;}
.yf7{bottom:850.649700px;}
.ya2{bottom:852.089850px;}
.y179{bottom:853.890150px;}
.y150{bottom:856.769700px;}
.y78{bottom:856.949550px;}
.y32{bottom:857.489850px;}
.y12d{bottom:859.829760px;}
.ycc{bottom:863.429550px;}
.y178{bottom:869.010300px;}
.yf6{bottom:869.549700px;}
.ya1{bottom:870.089850px;}
.y12c{bottom:872.069760px;}
.y14f{bottom:874.589850px;}
.y77{bottom:874.769700px;}
.y31{bottom:875.310000px;}
.y9{bottom:880.349910px;}
.y53{bottom:882.329550px;}
.y12b{bottom:884.310345px;}
.y177{bottom:885.570000px;}
.yf5{bottom:887.549700px;}
.y14e{bottom:892.589850px;}
.y76{bottom:892.769700px;}
.y30{bottom:893.310000px;}
.ycb{bottom:894.210000px;}
.y12a{bottom:896.550000px;}
.y176{bottom:900.870000px;}
.y8{bottom:902.490105px;}
.yf4{bottom:905.369850px;}
.y129{bottom:908.790000px;}
.y75{bottom:910.589850px;}
.y2f{bottom:911.310000px;}
.y7{bottom:913.110225px;}
.ya0{bottom:916.889850px;}
.y175{bottom:917.249850px;}
.yca{bottom:920.849850px;}
.y128{bottom:921.749760px;}
.yf3{bottom:923.369850px;}
.y74{bottom:928.589850px;}
.y2e{bottom:929.129550px;}
.y174{bottom:932.549850px;}
.y127{bottom:933.990345px;}
.y6{bottom:935.249805px;}
.yc9{bottom:937.770300px;}
.yf2{bottom:941.190000px;}
.y5{bottom:946.049805px;}
.y126{bottom:946.229760px;}
.y2d{bottom:947.129550px;}
.y173{bottom:948.929700px;}
.yc8{bottom:954.510000px;}
.y125{bottom:958.470000px;}
.yf1{bottom:959.190000px;}
.y172{bottom:964.229700px;}
.y2c{bottom:965.129550px;}
.y4{bottom:968.190000px;}
.y124{bottom:970.710000px;}
.yc7{bottom:971.970000px;}
.yf0{bottom:977.190000px;}
.y171{bottom:980.609550px;}
.y2b{bottom:982.949700px;}
.y123{bottom:983.490345px;}
.yc6{bottom:989.429850px;}
.y3{bottom:993.749700px;}
.yef{bottom:995.009550px;}
.y122{bottom:995.729880px;}
.y170{bottom:995.909550px;}
.y2a{bottom:1000.949700px;}
.yc5{bottom:1006.349700px;}
.y121{bottom:1008.149760px;}
.y16f{bottom:1012.469850px;}
.yee{bottom:1013.009550px;}
.y29{bottom:1018.769850px;}
.y120{bottom:1020.390000px;}
.yc4{bottom:1023.090450px;}
.y16e{bottom:1027.590000px;}
.yed{bottom:1031.009550px;}
.y11f{bottom:1032.630000px;}
.y28{bottom:1036.769850px;}
.yc3{bottom:1040.010000px;}
.y16d{bottom:1044.149700px;}
.y2{bottom:1045.769850px;}
.y11e{bottom:1048.470000px;}
.yec{bottom:1048.829700px;}
.y27{bottom:1054.769850px;}
.yc2{bottom:1057.470000px;}
.y11d{bottom:1060.710000px;}
.y1{bottom:1072.590000px;}
.yc1{bottom:1078.350000px;}
.h15{height:2.391034px;}
.h3{height:23.850544px;}
.h1a{height:29.415699px;}
.h14{height:29.457542px;}
.h16{height:31.382325px;}
.h1b{height:31.382805px;}
.h1c{height:31.383285px;}
.h4{height:33.462530px;}
.h5{height:40.348710px;}
.h1e{height:40.349310px;}
.h1d{height:40.349910px;}
.he{height:42.082191px;}
.h13{height:42.141967px;}
.h7{height:44.831880px;}
.h6{height:50.498765px;}
.hf{height:51.057542px;}
.h2{height:52.982325px;}
.h17{height:52.982349px;}
.h10{height:53.704209px;}
.hc{height:53.935682px;}
.hd{height:53.938022px;}
.h9{height:55.860465px;}
.h11{height:59.231904px;}
.h8{height:59.951400px;}
.h18{height:59.951424px;}
.hb{height:59.953740px;}
.h1{height:60.598349px;}
.ha{height:69.057542px;}
.h19{height:75.110434px;}
.h12{height:85.151400px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:181.260000px;}
.x1f{left:200.520270px;}
.xa{left:202.142910px;}
.x28{left:208.979655px;}
.x1d{left:210.599766px;}
.x2{left:214.740120px;}
.x1{left:217.620000px;}
.x3{left:223.379775px;}
.xb{left:224.642910px;}
.x29{left:227.339655px;}
.x4{left:229.319745px;}
.x22{left:233.100000px;}
.x23{left:241.740000px;}
.x9{left:244.621530px;}
.xc{left:273.420036px;}
.x25{left:276.120000px;}
.x6{left:285.841050px;}
.x21{left:303.480000px;}
.x11{left:316.258647px;}
.x12{left:332.998962px;}
.x7{left:334.621005px;}
.xd{left:345.058416px;}
.x1e{left:350.999490px;}
.x27{left:356.580000px;}
.x8{left:359.101380px;}
.x24{left:360.359610px;}
.x20{left:375.480120px;}
.xe{left:380.878482px;}
.x16{left:384.117756px;}
.x13{left:388.258962px;}
.x14{left:399.958962px;}
.x5{left:412.020900px;}
.xf{left:419.938902px;}
.x17{left:437.760000px;}
.x10{left:451.618842px;}
.x19{left:455.760000px;}
.x1a{left:456.840470px;}
.x18{left:461.160000px;}
.x1b{left:479.880110px;}
.x1c{left:592.919291px;}
.x15{left:599.758221px;}
@media print{
.v2{vertical-align:-20.481227pt;}
.v9{vertical-align:-12.799979pt;}
.v3{vertical-align:-7.679147pt;}
.va{vertical-align:-5.118752pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.760427pt;}
.v8{vertical-align:7.681227pt;}
.v4{vertical-align:13.439573pt;}
.vc{vertical-align:15.360427pt;}
.v1{vertical-align:19.200000pt;}
.v5{vertical-align:21.758347pt;}
.v6{vertical-align:35.200000pt;}
.vb{vertical-align:64.639467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.016517pt;}
.ls46{letter-spacing:0.018597pt;}
.ls43{letter-spacing:0.020677pt;}
.ls3f{letter-spacing:0.065024pt;}
.ls37{letter-spacing:0.150624pt;}
.ls27{letter-spacing:0.152704pt;}
.ls2f{letter-spacing:0.156918pt;}
.ls4{letter-spacing:0.187990pt;}
.ls1a{letter-spacing:0.229169pt;}
.ls2a{letter-spacing:0.261686pt;}
.ls50{letter-spacing:0.282869pt;}
.ls4d{letter-spacing:0.287029pt;}
.ls16{letter-spacing:0.312107pt;}
.ls1{letter-spacing:1.236690pt;}
.ls3a{letter-spacing:1.485154pt;}
.lsc{letter-spacing:1.607301pt;}
.ls7{letter-spacing:1.660440pt;}
.ls41{letter-spacing:2.124727pt;}
.ls34{letter-spacing:2.252825pt;}
.ls38{letter-spacing:2.254905pt;}
.ls25{letter-spacing:2.413666pt;}
.ls0{letter-spacing:2.515837pt;}
.ls40{letter-spacing:2.517917pt;}
.lsf{letter-spacing:2.892451pt;}
.lsd{letter-spacing:2.894531pt;}
.ls5{letter-spacing:3.026622pt;}
.ls24{letter-spacing:3.051159pt;}
.ls6{letter-spacing:3.053239pt;}
.ls1e{letter-spacing:3.069186pt;}
.lsb{letter-spacing:3.355418pt;}
.ls8{letter-spacing:4.332386pt;}
.ls2c{letter-spacing:4.485153pt;}
.lse{letter-spacing:4.807301pt;}
.ls29{letter-spacing:5.505314pt;}
.ls2e{letter-spacing:5.652774pt;}
.ls39{letter-spacing:6.292347pt;}
.ls3e{letter-spacing:8.812913pt;}
.ls56{letter-spacing:8.907872pt;}
.ls28{letter-spacing:8.919724pt;}
.ls3d{letter-spacing:11.782112pt;}
.ls3c{letter-spacing:11.846880pt;}
.ls36{letter-spacing:14.184779pt;}
.ls35{letter-spacing:14.233984pt;}
.ls15{letter-spacing:14.308316pt;}
.ls13{letter-spacing:14.340619pt;}
.ls17{letter-spacing:14.393387pt;}
.ls58{letter-spacing:14.906710pt;}
.lsa{letter-spacing:14.982752pt;}
.ls12{letter-spacing:15.032960pt;}
.ls55{letter-spacing:15.119995pt;}
.ls20{letter-spacing:15.466059pt;}
.ls52{letter-spacing:15.681160pt;}
.ls4c{letter-spacing:15.852482pt;}
.ls4e{letter-spacing:16.099695pt;}
.ls42{letter-spacing:16.119552pt;}
.ls45{letter-spacing:16.312107pt;}
.ls51{letter-spacing:16.322813pt;}
.ls30{letter-spacing:16.794411pt;}
.ls32{letter-spacing:17.132386pt;}
.ls22{letter-spacing:17.228726pt;}
.ls14{letter-spacing:17.613251pt;}
.ls54{letter-spacing:17.615331pt;}
.ls11{letter-spacing:18.254905pt;}
.ls44{letter-spacing:18.515837pt;}
.ls47{letter-spacing:18.541130pt;}
.ls2b{letter-spacing:18.566646pt;}
.ls18{letter-spacing:18.679979pt;}
.ls9{letter-spacing:19.053239pt;}
.ls57{letter-spacing:19.206113pt;}
.ls31{letter-spacing:19.532025pt;}
.ls3b{letter-spacing:19.994884pt;}
.ls53{letter-spacing:20.469199pt;}
.ls21{letter-spacing:20.813251pt;}
.ls1b{letter-spacing:21.707872pt;}
.ls2d{letter-spacing:21.741130pt;}
.ls1d{letter-spacing:21.866059pt;}
.ls1c{letter-spacing:21.989596pt;}
.ls4a{letter-spacing:22.072533pt;}
.ls19{letter-spacing:22.094531pt;}
.ls26{letter-spacing:22.406113pt;}
.ls23{letter-spacing:23.833984pt;}
.ls4b{letter-spacing:24.301557pt;}
.ls49{letter-spacing:24.915837pt;}
.ls1f{letter-spacing:25.294531pt;}
.ls2{letter-spacing:27.239833pt;}
.ls33{letter-spacing:31.622219pt;}
.ls4f{letter-spacing:263.420430pt;}
.ls10{letter-spacing:828.493678pt;}
.ws6{word-spacing:-25.105864pt;}
.ws8c{word-spacing:-18.968867pt;}
.wsba{word-spacing:-17.693649pt;}
.ws65{word-spacing:-14.282445pt;}
.ws64{word-spacing:-12.385558pt;}
.ws9a{word-spacing:-8.972858pt;}
.ws130{word-spacing:-7.303016pt;}
.ws134{word-spacing:-7.301714pt;}
.ws84{word-spacing:-5.569998pt;}
.wse0{word-spacing:-2.559159pt;}
.wse8{word-spacing:-2.559016pt;}
.ws136{word-spacing:-1.919159pt;}
.ws132{word-spacing:-0.902100pt;}
.ws133{word-spacing:-0.821241pt;}
.wse3{word-spacing:-0.766938pt;}
.wse4{word-spacing:-0.766566pt;}
.wse6{word-spacing:-0.329463pt;}
.ws135{word-spacing:-0.262514pt;}
.wse7{word-spacing:-0.233354pt;}
.ws131{word-spacing:-0.192590pt;}
.wse5{word-spacing:-0.192218pt;}
.ws16b{word-spacing:-0.063761pt;}
.ws24{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.047821pt;}
.ws28{word-spacing:0.000000pt;}
.ws8b{word-spacing:2.513401pt;}
.ws71{word-spacing:4.771933pt;}
.ws6e{word-spacing:5.511689pt;}
.ws15{word-spacing:5.686154pt;}
.ws80{word-spacing:5.729719pt;}
.ws7f{word-spacing:6.153289pt;}
.wsa{word-spacing:7.334798pt;}
.ws70{word-spacing:8.509469pt;}
.ws63{word-spacing:8.810832pt;}
.wsb9{word-spacing:8.829383pt;}
.ws6b{word-spacing:8.856088pt;}
.ws9c{word-spacing:8.866909pt;}
.wsae{word-spacing:8.867812pt;}
.ws67{word-spacing:9.030871pt;}
.ws119{word-spacing:9.219400pt;}
.ws155{word-spacing:9.219507pt;}
.ws129{word-spacing:9.220623pt;}
.ws8e{word-spacing:10.348925pt;}
.wsda{word-spacing:10.632673pt;}
.wsfe{word-spacing:10.786962pt;}
.ws36{word-spacing:10.788025pt;}
.ws175{word-spacing:10.919712pt;}
.ws5e{word-spacing:11.138922pt;}
.ws185{word-spacing:11.259717pt;}
.ws165{word-spacing:11.426962pt;}
.wsc2{word-spacing:12.269456pt;}
.ws161{word-spacing:12.418975pt;}
.ws166{word-spacing:12.419400pt;}
.ws178{word-spacing:12.539160pt;}
.ws16e{word-spacing:12.539542pt;}
.ws100{word-spacing:12.668759pt;}
.wsbc{word-spacing:12.707387pt;}
.ws160{word-spacing:12.811052pt;}
.wsc7{word-spacing:12.811424pt;}
.ws58{word-spacing:12.811689pt;}
.wsd7{word-spacing:12.908181pt;}
.wsb2{word-spacing:12.946911pt;}
.ws181{word-spacing:12.967011pt;}
.wsa5{word-spacing:13.040726pt;}
.ws157{word-spacing:13.056266pt;}
.ws142{word-spacing:13.058975pt;}
.ws60{word-spacing:13.059772pt;}
.ws114{word-spacing:13.204563pt;}
.wsc3{word-spacing:13.283034pt;}
.wsc4{word-spacing:13.308334pt;}
.wsa4{word-spacing:13.335288pt;}
.ws9d{word-spacing:13.347759pt;}
.ws18{word-spacing:13.452327pt;}
.ws11c{word-spacing:13.548181pt;}
.wsf1{word-spacing:13.565057pt;}
.wsf3{word-spacing:13.565200pt;}
.wsb3{word-spacing:13.695309pt;}
.wsa3{word-spacing:13.696584pt;}
.ws86{word-spacing:13.700251pt;}
.ws9b{word-spacing:13.700623pt;}
.wsb5{word-spacing:13.737449pt;}
.ws113{word-spacing:13.791736pt;}
.wsfb{word-spacing:13.929319pt;}
.ws61{word-spacing:13.933992pt;}
.ws8f{word-spacing:13.947643pt;}
.ws7c{word-spacing:13.948015pt;}
.wsb4{word-spacing:13.968784pt;}
.ws14b{word-spacing:13.986590pt;}
.wsde{word-spacing:13.986962pt;}
.ws111{word-spacing:14.019558pt;}
.ws110{word-spacing:14.187756pt;}
.ws38{word-spacing:14.188553pt;}
.ws11f{word-spacing:14.189031pt;}
.ws6a{word-spacing:14.299603pt;}
.ws5c{word-spacing:14.338922pt;}
.ws146{word-spacing:14.340251pt;}
.ws68{word-spacing:14.483713pt;}
.wsff{word-spacing:14.587483pt;}
.wsc0{word-spacing:14.587537pt;}
.ws15a{word-spacing:14.587643pt;}
.ws10b{word-spacing:14.626537pt;}
.ws7e{word-spacing:14.626832pt;}
.wsb6{word-spacing:14.627068pt;}
.ws62{word-spacing:14.627334pt;}
.ws2b{word-spacing:14.628237pt;}
.ws4f{word-spacing:14.730999pt;}
.ws15b{word-spacing:14.732274pt;}
.ws162{word-spacing:14.793366pt;}
.ws154{word-spacing:14.828128pt;}
.wsbe{word-spacing:14.828500pt;}
.ws7b{word-spacing:14.829031pt;}
.ws76{word-spacing:14.829509pt;}
.ws6c{word-spacing:14.941250pt;}
.ws15e{word-spacing:14.979400pt;}
.ws123{word-spacing:14.979826pt;}
.ws55{word-spacing:14.980569pt;}
.ws18c{word-spacing:15.099193pt;}
.ws187{word-spacing:15.099958pt;}
.ws17c{word-spacing:15.209611pt;}
.ws5f{word-spacing:15.267812pt;}
.ws39{word-spacing:15.467703pt;}
.ws4a{word-spacing:15.468075pt;}
.ws13d{word-spacing:15.468234pt;}
.wsbf{word-spacing:15.468500pt;}
.wsa6{word-spacing:15.468606pt;}
.wsc5{word-spacing:15.469403pt;}
.ws109{word-spacing:15.595389pt;}
.wsd6{word-spacing:15.615362pt;}
.ws57{word-spacing:15.619400pt;}
.wscf{word-spacing:15.620197pt;}
.wsd9{word-spacing:15.620676pt;}
.ws7{word-spacing:15.739942pt;}
.ws179{word-spacing:15.766004pt;}
.ws137{word-spacing:15.849978pt;}
.ws5{word-spacing:15.850121pt;}
.ws37{word-spacing:15.867962pt;}
.ws90{word-spacing:15.868015pt;}
.ws105{word-spacing:15.868068pt;}
.ws33{word-spacing:15.907387pt;}
.ws12a{word-spacing:15.907547pt;}
.ws87{word-spacing:16.011849pt;}
.wsa7{word-spacing:16.063920pt;}
.ws1a{word-spacing:16.108446pt;}
.ws1c{word-spacing:16.108606pt;}
.ws188{word-spacing:16.125568pt;}
.ws18b{word-spacing:16.167507pt;}
.ws182{word-spacing:16.218149pt;}
.ws9{word-spacing:16.218197pt;}
.wsd8{word-spacing:16.220453pt;}
.ws12c{word-spacing:16.252819pt;}
.ws171{word-spacing:16.252915pt;}
.ws34{word-spacing:16.259772pt;}
.ws16a{word-spacing:16.259825pt;}
.wsa2{word-spacing:16.259879pt;}
.wse1{word-spacing:16.338370pt;}
.ws183{word-spacing:16.379161pt;}
.ws17a{word-spacing:16.379544pt;}
.ws186{word-spacing:16.379592pt;}
.ws172{word-spacing:16.380835pt;}
.wsf0{word-spacing:16.381869pt;}
.wse9{word-spacing:16.405941pt;}
.ws104{word-spacing:16.481939pt;}
.ws51{word-spacing:16.508068pt;}
.ws5a{word-spacing:16.508334pt;}
.wsd0{word-spacing:16.508440pt;}
.ws121{word-spacing:16.508865pt;}
.ws45{word-spacing:16.547865pt;}
.wsd3{word-spacing:16.547918pt;}
.wsa8{word-spacing:16.651317pt;}
.ws19{word-spacing:16.747756pt;}
.ws81{word-spacing:16.748181pt;}
.wsc9{word-spacing:16.748553pt;}
.ws103{word-spacing:16.748925pt;}
.ws14a{word-spacing:16.749350pt;}
.ws8d{word-spacing:16.896637pt;}
.ws1e{word-spacing:16.898975pt;}
.ws7a{word-spacing:16.899347pt;}
.ws83{word-spacing:16.899400pt;}
.ws7d{word-spacing:16.899454pt;}
.ws11d{word-spacing:16.899879pt;}
.ws2{word-spacing:16.900251pt;}
.ws43{word-spacing:16.900622pt;}
.wse{word-spacing:16.977589pt;}
.ws16f{word-spacing:16.978355pt;}
.ws11{word-spacing:16.978737pt;}
.ws170{word-spacing:17.019098pt;}
.ws17d{word-spacing:17.020437pt;}
.wsb7{word-spacing:17.044138pt;}
.ws107{word-spacing:17.147643pt;}
.ws13c{word-spacing:17.147747pt;}
.wsac{word-spacing:17.147962pt;}
.ws3{word-spacing:17.148015pt;}
.ws2f{word-spacing:17.148812pt;}
.ws96{word-spacing:17.163595pt;}
.ws89{word-spacing:17.186590pt;}
.ws82{word-spacing:17.186962pt;}
.ws4{word-spacing:17.187334pt;}
.wsb8{word-spacing:17.187440pt;}
.ws48{word-spacing:17.187865pt;}
.ws41{word-spacing:17.188290pt;}
.wsd5{word-spacing:17.291052pt;}
.wsdf{word-spacing:17.291902pt;}
.ws50{word-spacing:17.387756pt;}
.ws99{word-spacing:17.388021pt;}
.ws102{word-spacing:17.388553pt;}
.ws92{word-spacing:17.388925pt;}
.ws69{word-spacing:17.538922pt;}
.ws4c{word-spacing:17.538975pt;}
.ws97{word-spacing:17.539028pt;}
.wscb{word-spacing:17.539400pt;}
.wsd4{word-spacing:17.539825pt;}
.wsa1{word-spacing:17.540251pt;}
.wsfc{word-spacing:17.676546pt;}
.ws13{word-spacing:17.769261pt;}
.ws98{word-spacing:17.780526pt;}
.ws32{word-spacing:17.787483pt;}
.ws12b{word-spacing:17.787643pt;}
.ws164{word-spacing:17.788015pt;}
.wsf5{word-spacing:17.799686pt;}
.ws95{word-spacing:17.827440pt;}
.ws54{word-spacing:17.827706pt;}
.ws140{word-spacing:17.828237pt;}
.ws35{word-spacing:17.931477pt;}
.ws1d{word-spacing:17.931902pt;}
.wsbd{word-spacing:18.027703pt;}
.ws118{word-spacing:18.028128pt;}
.ws120{word-spacing:18.028181pt;}
.ws11b{word-spacing:18.028659pt;}
.wsca{word-spacing:18.028872pt;}
.ws3d{word-spacing:18.029031pt;}
.wsc8{word-spacing:18.029403pt;}
.wsea{word-spacing:18.087843pt;}
.ws9f{word-spacing:18.179028pt;}
.ws13b{word-spacing:18.179400pt;}
.wsa9{word-spacing:18.179825pt;}
.ws88{word-spacing:18.180251pt;}
.ws173{word-spacing:18.299593pt;}
.ws16d{word-spacing:18.300884pt;}
.ws9e{word-spacing:18.360874pt;}
.ws1b{word-spacing:18.427218pt;}
.wsf8{word-spacing:18.439544pt;}
.ws74{word-spacing:18.447292pt;}
.wsa0{word-spacing:18.466537pt;}
.ws91{word-spacing:18.467812pt;}
.ws163{word-spacing:18.467972pt;}
.wsab{word-spacing:18.571105pt;}
.ws156{word-spacing:18.571849pt;}
.wsd2{word-spacing:18.667703pt;}
.ws15c{word-spacing:18.668075pt;}
.ws21{word-spacing:18.668978pt;}
.ws5d{word-spacing:18.669403pt;}
.ws29{word-spacing:18.669456pt;}
.ws10{word-spacing:18.727444pt;}
.ws18a{word-spacing:18.727970pt;}
.wsfd{word-spacing:18.813662pt;}
.ws145{word-spacing:18.819028pt;}
.wsad{word-spacing:18.819400pt;}
.ws10a{word-spacing:18.820676pt;}
.wsf{word-spacing:18.897495pt;}
.ws14{word-spacing:18.898403pt;}
.ws176{word-spacing:18.898786pt;}
.ws180{word-spacing:18.939577pt;}
.ws49{word-spacing:19.067430pt;}
.ws122{word-spacing:19.067590pt;}
.ws11e{word-spacing:19.067962pt;}
.ws15d{word-spacing:19.068812pt;}
.wsdc{word-spacing:19.068813pt;}
.ws149{word-spacing:19.068865pt;}
.ws3c{word-spacing:19.107015pt;}
.ws44{word-spacing:19.107387pt;}
.ws73{word-spacing:19.163280pt;}
.wsc1{word-spacing:19.308606pt;}
.ws40{word-spacing:19.308978pt;}
.ws3b{word-spacing:19.309350pt;}
.ws127{word-spacing:19.448005pt;}
.ws139{word-spacing:19.456265pt;}
.ws30{word-spacing:19.459347pt;}
.ws31{word-spacing:19.459772pt;}
.ws128{word-spacing:19.460304pt;}
.ws13f{word-spacing:19.460676pt;}
.ws17e{word-spacing:19.537622pt;}
.ws189{word-spacing:19.579513pt;}
.wsd{word-spacing:19.690457pt;}
.ws101{word-spacing:19.708440pt;}
.ws2a{word-spacing:19.747015pt;}
.ws112{word-spacing:19.748450pt;}
.ws85{word-spacing:19.941911pt;}
.wsb1{word-spacing:19.947756pt;}
.ws56{word-spacing:19.948446pt;}
.ws53{word-spacing:19.948925pt;}
.ws3a{word-spacing:20.095840pt;}
.ws20{word-spacing:20.100251pt;}
.ws23{word-spacing:20.100622pt;}
.ws174{word-spacing:20.219115pt;}
.wsef{word-spacing:20.299449pt;}
.ws1f{word-spacing:20.386962pt;}
.wsc6{word-spacing:20.387387pt;}
.ws46{word-spacing:20.388025pt;}
.wsb0{word-spacing:20.444880pt;}
.ws8a{word-spacing:20.491902pt;}
.ws106{word-spacing:20.581380pt;}
.ws4e{word-spacing:20.587756pt;}
.ws47{word-spacing:20.588128pt;}
.ws124{word-spacing:20.589297pt;}
.ws77{word-spacing:20.739028pt;}
.ws158{word-spacing:20.740251pt;}
.ws12{word-spacing:20.817543pt;}
.ws10e{word-spacing:20.883713pt;}
.ws79{word-spacing:20.988387pt;}
.ws115{word-spacing:21.026962pt;}
.wsce{word-spacing:21.028397pt;}
.wsdb{word-spacing:21.227596pt;}
.ws4b{word-spacing:21.228500pt;}
.wsb{word-spacing:21.287860pt;}
.ws75{word-spacing:21.373501pt;}
.ws10c{word-spacing:21.378735pt;}
.ws144{word-spacing:21.627218pt;}
.ws2e{word-spacing:21.627962pt;}
.ws78{word-spacing:21.666537pt;}
.ws143{word-spacing:21.666909pt;}
.ws4d{word-spacing:21.667812pt;}
.ws5b{word-spacing:21.771105pt;}
.ws116{word-spacing:21.867442pt;}
.ws117{word-spacing:21.868234pt;}
.wsaa{word-spacing:21.868978pt;}
.ws42{word-spacing:22.019028pt;}
.wscd{word-spacing:22.019400pt;}
.ws10d{word-spacing:22.136364pt;}
.ws17b{word-spacing:22.139164pt;}
.ws14c{word-spacing:22.268334pt;}
.ws15f{word-spacing:22.307387pt;}
.ws52{word-spacing:22.308184pt;}
.ws153{word-spacing:22.412752pt;}
.ws2c{word-spacing:22.508181pt;}
.ws14f{word-spacing:22.509456pt;}
.ws22{word-spacing:22.659772pt;}
.ws93{word-spacing:22.660197pt;}
.wsdd{word-spacing:22.660676pt;}
.wsc{word-spacing:22.737975pt;}
.ws17f{word-spacing:22.779005pt;}
.ws177{word-spacing:22.779531pt;}
.ws150{word-spacing:22.907537pt;}
.ws152{word-spacing:22.908068pt;}
.ws26{word-spacing:22.908440pt;}
.ws126{word-spacing:22.947015pt;}
.ws2d{word-spacing:22.947759pt;}
.ws13e{word-spacing:23.148553pt;}
.ws3f{word-spacing:23.149350pt;}
.ws125{word-spacing:23.295840pt;}
.ws14d{word-spacing:23.300250pt;}
.ws94{word-spacing:23.300782pt;}
.ws16c{word-spacing:23.420424pt;}
.ws141{word-spacing:23.548015pt;}
.ws108{word-spacing:23.939825pt;}
.ws10f{word-spacing:23.940250pt;}
.ws184{word-spacing:24.060408pt;}
.ws159{word-spacing:24.157410pt;}
.ws59{word-spacing:24.167166pt;}
.ws25{word-spacing:24.187643pt;}
.ws27{word-spacing:24.227706pt;}
.ws148{word-spacing:24.427703pt;}
.wscc{word-spacing:24.576159pt;}
.ws3e{word-spacing:24.579400pt;}
.ws151{word-spacing:24.579825pt;}
.ws16{word-spacing:24.809615pt;}
.ws147{word-spacing:24.827218pt;}
.ws169{word-spacing:24.866537pt;}
.ws13a{word-spacing:24.867440pt;}
.ws14e{word-spacing:25.612380pt;}
.ws168{word-spacing:25.859772pt;}
.ws0{word-spacing:27.848767pt;}
.ws1{word-spacing:28.093609pt;}
.ws11a{word-spacing:28.667590pt;}
.ws167{word-spacing:36.816796pt;}
.ws12e{word-spacing:57.878136pt;}
.wsf6{word-spacing:59.320272pt;}
.wsd1{word-spacing:60.413980pt;}
.wsf2{word-spacing:62.538714pt;}
.ws17{word-spacing:71.531628pt;}
.ws12f{word-spacing:82.395003pt;}
.wseb{word-spacing:130.423658pt;}
.wsf4{word-spacing:137.453644pt;}
.wsed{word-spacing:146.467219pt;}
.wsec{word-spacing:172.662913pt;}
.wsf7{word-spacing:179.695197pt;}
.wsfa{word-spacing:185.276072pt;}
.wsee{word-spacing:188.706423pt;}
.wsf9{word-spacing:193.375128pt;}
.ws72{word-spacing:337.540088pt;}
.wsbb{word-spacing:461.204346pt;}
.ws6f{word-spacing:479.330252pt;}
.wsaf{word-spacing:578.964876pt;}
.ws66{word-spacing:622.828312pt;}
.ws6d{word-spacing:648.351085pt;}
.wse2{word-spacing:769.638027pt;}
.ws138{word-spacing:813.758455pt;}
.ws12d{word-spacing:819.867281pt;}
._0{margin-left:-43.759424pt;}
._16{margin-left:-36.399643pt;}
._7{margin-left:-33.438735pt;}
._33{margin-left:-30.293723pt;}
._19{margin-left:-28.476902pt;}
._20{margin-left:-27.467341pt;}
._13{margin-left:-26.495055pt;}
._d{margin-left:-25.154573pt;}
._e{margin-left:-24.086100pt;}
._a{margin-left:-20.167040pt;}
._14{margin-left:-18.567304pt;}
._6{margin-left:-9.391287pt;}
._25{margin-left:-8.398738pt;}
._9{margin-left:-6.281760pt;}
._8{margin-left:-4.605535pt;}
._f{margin-left:-3.352710pt;}
._3{margin-left:-1.970758pt;}
._4{margin-left:-1.034706pt;}
._2{width:0.904936pt;}
._5{width:2.668542pt;}
._18{width:3.814470pt;}
._4c{width:8.033725pt;}
._26{width:9.081550pt;}
._4e{width:10.108279pt;}
._50{width:11.612247pt;}
._17{width:12.549036pt;}
._1c{width:13.675358pt;}
._1e{width:14.690054pt;}
._1b{width:15.906308pt;}
._c{width:16.889972pt;}
._b{width:18.081785pt;}
._12{width:19.545450pt;}
._11{width:20.868472pt;}
._1f{width:21.757748pt;}
._10{width:22.703490pt;}
._1d{width:23.700811pt;}
._1a{width:24.980504pt;}
._15{width:25.994426pt;}
._4f{width:26.933239pt;}
._1{width:29.461245pt;}
._34{width:30.935885pt;}
._24{width:61.109692pt;}
._2c{width:63.728110pt;}
._35{width:69.454780pt;}
._21{width:71.569868pt;}
._3c{width:81.728149pt;}
._47{width:84.628234pt;}
._3a{width:85.554267pt;}
._44{width:89.881039pt;}
._3e{width:91.025818pt;}
._3b{width:96.569830pt;}
._3d{width:97.785685pt;}
._46{width:99.928858pt;}
._45{width:101.836171pt;}
._40{width:103.122055pt;}
._48{width:107.552115pt;}
._42{width:109.303116pt;}
._39{width:112.462213pt;}
._41{width:116.062983pt;}
._4a{width:121.644601pt;}
._37{width:122.702213pt;}
._4d{width:127.186076pt;}
._4b{width:133.945943pt;}
._36{width:192.995363pt;}
._43{width:197.322135pt;}
._3f{width:210.563151pt;}
._29{width:225.521119pt;}
._49{width:229.085697pt;}
._2e{width:254.868512pt;}
._2f{width:262.338366pt;}
._31{width:265.285874pt;}
._32{width:266.258078pt;}
._38{width:316.729830pt;}
._2d{width:319.764152pt;}
._30{width:342.550127pt;}
._2b{width:362.136933pt;}
._27{width:408.180948pt;}
._28{width:446.229676pt;}
._2a{width:672.074992pt;}
._23{width:848.234147pt;}
._22{width:1114.865496pt;}
.fs6{font-size:26.567040pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:37.193867pt;}
.fs4{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:220.932800pt;}
.yea{bottom:236.932800pt;}
.y16c{bottom:237.252533pt;}
.y73{bottom:237.253067pt;}
.y9f{bottom:237.253467pt;}
.y52{bottom:237.253600pt;}
.y26{bottom:237.253653pt;}
.y14d{bottom:237.254000pt;}
.y11c{bottom:241.093120pt;}
.y19d{bottom:248.454267pt;}
.y11b{bottom:251.973120pt;}
.ye9{bottom:252.932800pt;}
.y16b{bottom:253.252533pt;}
.y72{bottom:253.253067pt;}
.y9e{bottom:253.253467pt;}
.y51{bottom:253.253600pt;}
.y25{bottom:253.253653pt;}
.y14c{bottom:253.254000pt;}
.yc0{bottom:254.373120pt;}
.y11a{bottom:262.853640pt;}
.y19c{bottom:263.014133pt;}
.ybf{bottom:265.253640pt;}
.ye8{bottom:268.772933pt;}
.y16a{bottom:269.252533pt;}
.y9d{bottom:269.253467pt;}
.y50{bottom:269.253600pt;}
.y24{bottom:269.253653pt;}
.y14b{bottom:269.254000pt;}
.y119{bottom:273.733333pt;}
.ybe{bottom:276.133120pt;}
.y19b{bottom:276.614133pt;}
.y71{bottom:279.012933pt;}
.y118{bottom:284.613333pt;}
.ye7{bottom:284.772933pt;}
.y169{bottom:285.092133pt;}
.y9c{bottom:285.093067pt;}
.y4f{bottom:285.093200pt;}
.y23{bottom:285.093253pt;}
.y14a{bottom:285.093600pt;}
.ybd{bottom:287.013640pt;}
.y19a{bottom:291.174000pt;}
.y117{bottom:296.133120pt;}
.ybc{bottom:297.893120pt;}
.ye6{bottom:300.772933pt;}
.y9b{bottom:301.093067pt;}
.y4e{bottom:301.093200pt;}
.y22{bottom:301.093253pt;}
.y149{bottom:303.654000pt;}
.y199{bottom:305.893733pt;}
.y116{bottom:307.013640pt;}
.ybb{bottom:308.773227pt;}
.ye5{bottom:316.613067pt;}
.y9a{bottom:316.933200pt;}
.y4d{bottom:316.933333pt;}
.y21{bottom:316.933387pt;}
.y115{bottom:317.893120pt;}
.y70{bottom:318.053067pt;}
.y198{bottom:319.333867pt;}
.y148{bottom:319.493600pt;}
.yba{bottom:319.813640pt;}
.y168{bottom:328.292133pt;}
.y114{bottom:328.773333pt;}
.yb9{bottom:330.693333pt;}
.ye4{bottom:332.613067pt;}
.y99{bottom:332.933200pt;}
.y4c{bottom:332.933333pt;}
.y20{bottom:332.933387pt;}
.y6f{bottom:333.892667pt;}
.y197{bottom:334.054133pt;}
.y147{bottom:335.493600pt;}
.y113{bottom:339.653333pt;}
.y167{bottom:344.292133pt;}
.yb8{bottom:344.773333pt;}
.ye3{bottom:348.453200pt;}
.y196{bottom:348.614000pt;}
.y98{bottom:348.933200pt;}
.y1f{bottom:348.933387pt;}
.y6e{bottom:349.892667pt;}
.y112{bottom:351.173120pt;}
.y146{bottom:351.493600pt;}
.y4b{bottom:353.893200pt;}
.yb7{bottom:356.613067pt;}
.y166{bottom:360.292133pt;}
.y111{bottom:362.053640pt;}
.y195{bottom:362.214000pt;}
.ye2{bottom:364.453200pt;}
.y97{bottom:364.773333pt;}
.y1e{bottom:364.773520pt;}
.y6d{bottom:365.732800pt;}
.y145{bottom:367.333733pt;}
.y4a{bottom:369.733333pt;}
.y110{bottom:372.933120pt;}
.y165{bottom:376.132267pt;}
.y194{bottom:376.773867pt;}
.ye1{bottom:380.453200pt;}
.y96{bottom:380.773333pt;}
.y1d{bottom:380.773520pt;}
.y6c{bottom:381.732800pt;}
.yb6{bottom:382.692800pt;}
.y144{bottom:383.333733pt;}
.y10f{bottom:383.813333pt;}
.y49{bottom:385.733333pt;}
.y193{bottom:391.493600pt;}
.y164{bottom:392.772400pt;}
.y10e{bottom:394.693333pt;}
.ye0{bottom:396.292800pt;}
.y1c{bottom:396.773520pt;}
.y6b{bottom:397.732800pt;}
.yb5{bottom:398.692800pt;}
.y143{bottom:399.333733pt;}
.y48{bottom:401.573467pt;}
.y95{bottom:403.973333pt;}
.y192{bottom:404.933733pt;}
.y10d{bottom:406.053640pt;}
.y163{bottom:408.772400pt;}
.ydf{bottom:412.292800pt;}
.y1b{bottom:412.613653pt;}
.y6a{bottom:413.572933pt;}
.yb4{bottom:414.532933pt;}
.y142{bottom:415.173867pt;}
.y10c{bottom:416.933120pt;}
.y47{bottom:417.573467pt;}
.y191{bottom:418.533733pt;}
.y94{bottom:422.373333pt;}
.y162{bottom:424.612533pt;}
.y10b{bottom:427.813640pt;}
.yde{bottom:428.292800pt;}
.y1a{bottom:428.613653pt;}
.y69{bottom:429.572933pt;}
.yb3{bottom:430.532933pt;}
.y141{bottom:431.173867pt;}
.y190{bottom:433.254000pt;}
.y46{bottom:433.573467pt;}
.y93{bottom:435.013440pt;}
.y92{bottom:438.373333pt;}
.y10a{bottom:438.693333pt;}
.y161{bottom:440.612533pt;}
.ydd{bottom:444.292800pt;}
.y19{bottom:444.453787pt;}
.y68{bottom:445.572933pt;}
.yb2{bottom:446.532933pt;}
.y18f{bottom:446.854000pt;}
.y140{bottom:447.014000pt;}
.y45{bottom:449.413600pt;}
.y109{bottom:449.733333pt;}
.y91{bottom:451.013712pt;}
.y90{bottom:454.373600pt;}
.y160{bottom:456.612533pt;}
.ydc{bottom:460.292800pt;}
.y18{bottom:460.453787pt;}
.y67{bottom:461.413067pt;}
.y18e{bottom:461.413867pt;}
.yb1{bottom:462.373067pt;}
.y108{bottom:463.813333pt;}
.y44{bottom:465.413600pt;}
.y13f{bottom:465.573867pt;}
.y8f{bottom:470.213733pt;}
.y15f{bottom:472.452667pt;}
.y107{bottom:474.693333pt;}
.y18d{bottom:475.973733pt;}
.ydb{bottom:476.132933pt;}
.y17{bottom:476.453787pt;}
.yb0{bottom:478.373067pt;}
.y43{bottom:481.413600pt;}
.y13e{bottom:481.573867pt;}
.y15e{bottom:488.452667pt;}
.y66{bottom:489.572933pt;}
.y18c{bottom:489.573733pt;}
.y106{bottom:490.213200pt;}
.yda{bottom:492.132933pt;}
.y8d{bottom:492.933467pt;}
.yaf{bottom:494.213200pt;}
.y42{bottom:497.253200pt;}
.y13d{bottom:497.414000pt;}
.y8a{bottom:499.493333pt;}
.y18b{bottom:504.133600pt;}
.y15d{bottom:504.292800pt;}
.yd9{bottom:508.132933pt;}
.y16{bottom:508.133520pt;}
.y89{bottom:508.613077pt;}
.y8e{bottom:508.613733pt;}
.y65{bottom:509.572933pt;}
.yae{bottom:510.213200pt;}
.y41{bottom:513.253200pt;}
.y13c{bottom:513.414000pt;}
.y18a{bottom:517.733600pt;}
.y15c{bottom:520.292800pt;}
.y8c{bottom:521.253200pt;}
.y88{bottom:522.532811pt;}
.yd8{bottom:523.973067pt;}
.y8b{bottom:525.253200pt;}
.yad{bottom:526.213200pt;}
.y64{bottom:529.413067pt;}
.y13b{bottom:529.414000pt;}
.y189{bottom:531.333600pt;}
.y105{bottom:532.932933pt;}
.y40{bottom:534.053200pt;}
.y15b{bottom:536.932933pt;}
.y87{bottom:538.532811pt;}
.yd7{bottom:539.973067pt;}
.yac{bottom:542.052800pt;}
.y13a{bottom:545.253600pt;}
.y188{bottom:545.893467pt;}
.y63{bottom:546.052653pt;}
.y104{bottom:548.932933pt;}
.y62{bottom:549.413067pt;}
.y3f{bottom:550.053200pt;}
.y15a{bottom:552.932933pt;}
.y15{bottom:553.093387pt;}
.y86{bottom:554.372944pt;}
.yd6{bottom:555.813200pt;}
.y187{bottom:559.493467pt;}
.yab{bottom:559.973067pt;}
.y139{bottom:561.253600pt;}
.y103{bottom:564.932933pt;}
.y3e{bottom:566.053200pt;}
.y14{bottom:567.653787pt;}
.y159{bottom:568.773067pt;}
.y61{bottom:569.253200pt;}
.y85{bottom:570.372944pt;}
.y186{bottom:574.213733pt;}
.yaa{bottom:575.973067pt;}
.y138{bottom:577.093200pt;}
.y102{bottom:580.773067pt;}
.y3d{bottom:581.892800pt;}
.yd5{bottom:583.173067pt;}
.y158{bottom:584.773067pt;}
.y60{bottom:585.892787pt;}
.y84{bottom:586.372944pt;}
.y185{bottom:588.773600pt;}
.y5f{bottom:589.253200pt;}
.ya9{bottom:591.813200pt;}
.y137{bottom:593.093200pt;}
.y101{bottom:596.773067pt;}
.y13{bottom:596.933520pt;}
.y3c{bottom:597.892800pt;}
.y157{bottom:600.613200pt;}
.y83{bottom:602.213077pt;}
.y184{bottom:602.373600pt;}
.y5e{bottom:607.492787pt;}
.ya8{bottom:607.813200pt;}
.y136{bottom:609.093200pt;}
.y5d{bottom:610.853200pt;}
.y12{bottom:611.493387pt;}
.y100{bottom:612.773067pt;}
.y3b{bottom:613.732933pt;}
.y156{bottom:616.613200pt;}
.y183{bottom:616.933467pt;}
.y82{bottom:618.213077pt;}
.ya7{bottom:623.813200pt;}
.y135{bottom:624.933333pt;}
.y11{bottom:626.213653pt;}
.yff{bottom:628.613200pt;}
.y3a{bottom:629.732933pt;}
.y182{bottom:631.493333pt;}
.y155{bottom:632.613200pt;}
.y81{bottom:634.213077pt;}
.y5c{bottom:638.373040pt;}
.yd4{bottom:639.813200pt;}
.y10{bottom:640.773520pt;}
.y134{bottom:640.933333pt;}
.y5b{bottom:641.732933pt;}
.yfe{bottom:644.613200pt;}
.y181{bottom:645.093333pt;}
.y39{bottom:645.732933pt;}
.y80{bottom:650.053211pt;}
.yf{bottom:655.333387pt;}
.yd3{bottom:655.813200pt;}
.y133{bottom:656.933333pt;}
.y5a{bottom:657.573067pt;}
.y180{bottom:659.813600pt;}
.ya6{bottom:660.132933pt;}
.yfd{bottom:660.453333pt;}
.y38{bottom:661.573067pt;}
.y7f{bottom:666.053211pt;}
.y154{bottom:667.813200pt;}
.ye{bottom:670.053653pt;}
.yd2{bottom:671.653333pt;}
.y17f{bottom:673.413600pt;}
.y59{bottom:673.573067pt;}
.yfc{bottom:676.453333pt;}
.y37{bottom:677.573067pt;}
.y7e{bottom:678.692805pt;}
.y7d{bottom:681.892800pt;}
.yd{bottom:684.613520pt;}
.yd1{bottom:687.653333pt;}
.y17e{bottom:687.973467pt;}
.y58{bottom:689.573067pt;}
.yfb{bottom:692.453333pt;}
.y36{bottom:693.573067pt;}
.y7c{bottom:697.892800pt;}
.yc{bottom:699.173387pt;}
.y17d{bottom:701.573467pt;}
.yd0{bottom:703.492933pt;}
.y57{bottom:705.413200pt;}
.yfa{bottom:708.292933pt;}
.y132{bottom:709.253640pt;}
.y35{bottom:709.413200pt;}
.ya5{bottom:709.573067pt;}
.y153{bottom:713.732933pt;}
.y7b{bottom:713.892800pt;}
.yb{bottom:713.893120pt;}
.y17c{bottom:716.133333pt;}
.ycf{bottom:719.653333pt;}
.y131{bottom:720.133120pt;}
.y56{bottom:721.413200pt;}
.yf9{bottom:724.292933pt;}
.y34{bottom:725.413200pt;}
.ya4{bottom:725.573067pt;}
.ya{bottom:728.453520pt;}
.y152{bottom:729.573067pt;}
.y7a{bottom:729.732933pt;}
.y17b{bottom:729.733333pt;}
.y130{bottom:731.013640pt;}
.yce{bottom:735.653333pt;}
.y55{bottom:737.253333pt;}
.yf8{bottom:740.292933pt;}
.y33{bottom:741.253333pt;}
.ya3{bottom:741.573067pt;}
.y12f{bottom:741.893333pt;}
.y17a{bottom:744.293200pt;}
.y151{bottom:745.573067pt;}
.y79{bottom:745.732933pt;}
.ycd{bottom:751.492933pt;}
.y12e{bottom:752.933333pt;}
.y54{bottom:753.253333pt;}
.yf7{bottom:756.133067pt;}
.ya2{bottom:757.413200pt;}
.y179{bottom:759.013467pt;}
.y150{bottom:761.573067pt;}
.y78{bottom:761.732933pt;}
.y32{bottom:762.213200pt;}
.y12d{bottom:764.293120pt;}
.ycc{bottom:767.492933pt;}
.y178{bottom:772.453600pt;}
.yf6{bottom:772.933067pt;}
.ya1{bottom:773.413200pt;}
.y12c{bottom:775.173120pt;}
.y14f{bottom:777.413200pt;}
.y77{bottom:777.573067pt;}
.y31{bottom:778.053333pt;}
.y9{bottom:782.533253pt;}
.y53{bottom:784.292933pt;}
.y12b{bottom:786.053640pt;}
.y177{bottom:787.173333pt;}
.yf5{bottom:788.933067pt;}
.y14e{bottom:793.413200pt;}
.y76{bottom:793.573067pt;}
.y30{bottom:794.053333pt;}
.ycb{bottom:794.853333pt;}
.y12a{bottom:796.933333pt;}
.y176{bottom:800.773333pt;}
.y8{bottom:802.213427pt;}
.yf4{bottom:804.773200pt;}
.y129{bottom:807.813333pt;}
.y75{bottom:809.413200pt;}
.y2f{bottom:810.053333pt;}
.y7{bottom:811.653533pt;}
.ya0{bottom:815.013200pt;}
.y175{bottom:815.333200pt;}
.yca{bottom:818.533200pt;}
.y128{bottom:819.333120pt;}
.yf3{bottom:820.773200pt;}
.y74{bottom:825.413200pt;}
.y2e{bottom:825.892933pt;}
.y174{bottom:828.933200pt;}
.y127{bottom:830.213640pt;}
.y6{bottom:831.333160pt;}
.yc9{bottom:833.573600pt;}
.yf2{bottom:836.613333pt;}
.y5{bottom:840.933160pt;}
.y126{bottom:841.093120pt;}
.y2d{bottom:841.892933pt;}
.y173{bottom:843.493067pt;}
.yc8{bottom:848.453333pt;}
.y125{bottom:851.973333pt;}
.yf1{bottom:852.613333pt;}
.y172{bottom:857.093067pt;}
.y2c{bottom:857.892933pt;}
.y4{bottom:860.613333pt;}
.y124{bottom:862.853333pt;}
.yc7{bottom:863.973333pt;}
.yf0{bottom:868.613333pt;}
.y171{bottom:871.652933pt;}
.y2b{bottom:873.733067pt;}
.y123{bottom:874.213640pt;}
.yc6{bottom:879.493200pt;}
.y3{bottom:883.333067pt;}
.yef{bottom:884.452933pt;}
.y122{bottom:885.093227pt;}
.y170{bottom:885.252933pt;}
.y2a{bottom:889.733067pt;}
.yc5{bottom:894.533067pt;}
.y121{bottom:896.133120pt;}
.y16f{bottom:899.973200pt;}
.yee{bottom:900.452933pt;}
.y29{bottom:905.573200pt;}
.y120{bottom:907.013333pt;}
.yc4{bottom:909.413733pt;}
.y16e{bottom:913.413333pt;}
.yed{bottom:916.452933pt;}
.y11f{bottom:917.893333pt;}
.y28{bottom:921.573200pt;}
.yc3{bottom:924.453333pt;}
.y16d{bottom:928.133067pt;}
.y2{bottom:929.573200pt;}
.y11e{bottom:931.973333pt;}
.yec{bottom:932.293067pt;}
.y27{bottom:937.573200pt;}
.yc2{bottom:939.973333pt;}
.y11d{bottom:942.853333pt;}
.y1{bottom:953.413333pt;}
.yc1{bottom:958.533333pt;}
.h15{height:2.125363pt;}
.h3{height:21.200484pt;}
.h1a{height:26.147288pt;}
.h14{height:26.184482pt;}
.h16{height:27.895400pt;}
.h1b{height:27.895827pt;}
.h1c{height:27.896253pt;}
.h4{height:29.744471pt;}
.h5{height:35.865520pt;}
.h1e{height:35.866053pt;}
.h1d{height:35.866587pt;}
.he{height:37.406392pt;}
.h13{height:37.459526pt;}
.h7{height:39.850560pt;}
.h6{height:44.887791pt;}
.hf{height:45.384482pt;}
.h2{height:47.095400pt;}
.h17{height:47.095421pt;}
.h10{height:47.737075pt;}
.hc{height:47.942829pt;}
.hd{height:47.944909pt;}
.h9{height:49.653747pt;}
.h11{height:52.650581pt;}
.h8{height:53.290133pt;}
.h18{height:53.290155pt;}
.hb{height:53.292213pt;}
.h1{height:53.865199pt;}
.ha{height:61.384482pt;}
.h19{height:66.764830pt;}
.h12{height:75.690133pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:161.120000pt;}
.x1f{left:178.240240pt;}
.xa{left:179.682587pt;}
.x28{left:185.759693pt;}
.x1d{left:187.199792pt;}
.x2{left:190.880107pt;}
.x1{left:193.440000pt;}
.x3{left:198.559800pt;}
.xb{left:199.682587pt;}
.x29{left:202.079693pt;}
.x4{left:203.839773pt;}
.x22{left:207.200000pt;}
.x23{left:214.880000pt;}
.x9{left:217.441360pt;}
.xc{left:243.040032pt;}
.x25{left:245.440000pt;}
.x6{left:254.080933pt;}
.x21{left:269.760000pt;}
.x11{left:281.118797pt;}
.x12{left:295.999077pt;}
.x7{left:297.440893pt;}
.xd{left:306.718592pt;}
.x1e{left:311.999547pt;}
.x27{left:316.960000pt;}
.x8{left:319.201227pt;}
.x24{left:320.319653pt;}
.x20{left:333.760107pt;}
.xe{left:338.558651pt;}
.x16{left:341.438005pt;}
.x13{left:345.119077pt;}
.x14{left:355.519077pt;}
.x5{left:366.240800pt;}
.xf{left:373.279024pt;}
.x17{left:389.120000pt;}
.x10{left:401.438971pt;}
.x19{left:405.120000pt;}
.x1a{left:406.080417pt;}
.x18{left:409.920000pt;}
.x1b{left:426.560097pt;}
.x1c{left:527.039369pt;}
.x15{left:533.118419pt;}
}




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