
    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_e77752f923d0ae50b28e0a39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923000;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_8ef4b8221afa240cc3e124b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722000;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_542118fdce71e5d870d2d9bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923000;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_3420626edc535150d4198063.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_74cbe786cd6b53d2154e1a1b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9d4d9ade2f950760ad552d2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_e4cb4ab0dc40b1e46213147a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722000;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_89eeb57b21c78d89a3de9068.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;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_c86287389c6ed490c2161aaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_c7bb8756024215996af2ddf0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.252000;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_f2824bbe4546539320861f3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.257000;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_8c8677ea02b19937dc8c9a57.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934000;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_c42b9569c8e60c703690d16a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.213000;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_257160d93a574aa1248f33d6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e3ce161b334dd88152d105fc.woff2')format("woff");}.fff{font-family:fff;line-height:0.325000;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);}
.m1{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-5.116868px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.925395px;}
.ls60{letter-spacing:-4.565723px;}
.ls5b{letter-spacing:-1.692101px;}
.ls5d{letter-spacing:-1.424866px;}
.ls1f{letter-spacing:-1.410725px;}
.ls69{letter-spacing:-1.272042px;}
.ls25{letter-spacing:-1.243351px;}
.ls3a{letter-spacing:-1.232291px;}
.ls33{letter-spacing:-1.224223px;}
.ls21{letter-spacing:-1.181184px;}
.ls20{letter-spacing:-1.171619px;}
.ls82{letter-spacing:-1.169825px;}
.ls7a{letter-spacing:-1.164146px;}
.ls23{letter-spacing:-1.147709px;}
.ls22{letter-spacing:-1.128580px;}
.ls26{letter-spacing:-1.119016px;}
.ls24{letter-spacing:-1.099888px;}
.ls80{letter-spacing:-1.084643px;}
.ls7e{letter-spacing:-1.073286px;}
.ls4b{letter-spacing:-0.919959px;}
.ls27{letter-spacing:-0.846435px;}
.ls4f{letter-spacing:-0.840456px;}
.ls17{letter-spacing:-0.834778px;}
.ls62{letter-spacing:-0.800705px;}
.ls63{letter-spacing:-0.787376px;}
.ls28{letter-spacing:-0.779486px;}
.ls49{letter-spacing:-0.777990px;}
.ls85{letter-spacing:-0.765139px;}
.ls84{letter-spacing:-0.760357px;}
.ls5e{letter-spacing:-0.755575px;}
.ls55{letter-spacing:-0.750793px;}
.ls29{letter-spacing:-0.741229px;}
.ls56{letter-spacing:-0.736446px;}
.ls39{letter-spacing:-0.732560px;}
.ls6b{letter-spacing:-0.731664px;}
.ls16{letter-spacing:-0.726881px;}
.ls54{letter-spacing:-0.722100px;}
.ls31{letter-spacing:-0.721202px;}
.ls5a{letter-spacing:-0.715524px;}
.ls83{letter-spacing:-0.712536px;}
.ls1e{letter-spacing:-0.709845px;}
.ls1d{letter-spacing:-0.704166px;}
.ls30{letter-spacing:-0.698487px;}
.ls8a{letter-spacing:-0.698190px;}
.ls50{letter-spacing:-0.692809px;}
.ls32{letter-spacing:-0.687130px;}
.ls64{letter-spacing:-0.681451px;}
.ls4a{letter-spacing:-0.670094px;}
.ls3c{letter-spacing:-0.664415px;}
.ls88{letter-spacing:-0.004782px;}
.ls13{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.047822px;}
.ls2c{letter-spacing:0.113575px;}
.ls38{letter-spacing:0.170364px;}
.ls6d{letter-spacing:0.511088px;}
.ls77{letter-spacing:0.522446px;}
.ls47{letter-spacing:0.554726px;}
.ls1a{letter-spacing:0.562197px;}
.ls48{letter-spacing:0.564290px;}
.ls2e{letter-spacing:0.573854px;}
.ls87{letter-spacing:0.573865px;}
.ls36{letter-spacing:0.578637px;}
.ls43{letter-spacing:0.583419px;}
.lsd{letter-spacing:0.584912px;}
.ls34{letter-spacing:0.588201px;}
.ls44{letter-spacing:0.592983px;}
.ls6{letter-spacing:0.596270px;}
.ls40{letter-spacing:0.597765px;}
.ls9{letter-spacing:0.601949px;}
.ls42{letter-spacing:0.602547px;}
.ls3f{letter-spacing:0.607329px;}
.ls4{letter-spacing:0.607627px;}
.ls2f{letter-spacing:0.612111px;}
.lse{letter-spacing:0.613306px;}
.ls2{letter-spacing:0.618985px;}
.ls5{letter-spacing:0.624664px;}
.ls3{letter-spacing:0.630342px;}
.ls6c{letter-spacing:0.636021px;}
.ls58{letter-spacing:0.640804px;}
.ls19{letter-spacing:0.641700px;}
.ls1{letter-spacing:0.647379px;}
.ls59{letter-spacing:0.655150px;}
.ls18{letter-spacing:0.658736px;}
.ls6e{letter-spacing:0.664415px;}
.ls11{letter-spacing:0.670094px;}
.ls57{letter-spacing:0.675772px;}
.ls73{letter-spacing:0.687130px;}
.ls2b{letter-spacing:0.885887px;}
.ls41{letter-spacing:0.908603px;}
.ls8{letter-spacing:0.959710px;}
.ls74{letter-spacing:1.027856px;}
.ls15{letter-spacing:1.096001px;}
.lsc{letter-spacing:1.175503px;}
.lsb{letter-spacing:1.192540px;}
.lsa{letter-spacing:1.300436px;}
.ls72{letter-spacing:1.504871px;}
.ls70{letter-spacing:1.538944px;}
.ls6f{letter-spacing:1.550301px;}
.ls79{letter-spacing:1.663877px;}
.ls7{letter-spacing:1.839918px;}
.ls14{letter-spacing:1.930778px;}
.lsf{letter-spacing:9.937830px;}
.ls10{letter-spacing:10.278555px;}
.ls2a{letter-spacing:11.132775px;}
.ls86{letter-spacing:12.146585px;}
.ls5f{letter-spacing:12.674992px;}
.ls1c{letter-spacing:12.816082px;}
.ls7c{letter-spacing:13.533400px;}
.ls6a{letter-spacing:13.619478px;}
.ls65{letter-spacing:13.697169px;}
.ls89{letter-spacing:13.877712px;}
.ls0{letter-spacing:14.107252px;}
.ls67{letter-spacing:14.140112px;}
.ls4e{letter-spacing:14.821561px;}
.ls7b{letter-spacing:16.184466px;}
.ls3b{letter-spacing:16.417294px;}
.ls4d{letter-spacing:16.525191px;}
.ls7f{letter-spacing:16.644445px;}
.ls53{letter-spacing:16.865916px;}
.ls3e{letter-spacing:17.206640px;}
.ls76{letter-spacing:17.263454px;}
.ls51{letter-spacing:17.547368px;}
.ls61{letter-spacing:18.455970px;}
.ls3d{letter-spacing:18.569546px;}
.ls66{letter-spacing:18.796693px;}
.ls68{letter-spacing:18.796695px;}
.ls5c{letter-spacing:18.999363px;}
.ls81{letter-spacing:19.147565px;}
.ls2d{letter-spacing:20.658759px;}
.ls52{letter-spacing:20.897834px;}
.ls75{letter-spacing:21.181774px;}
.ls37{letter-spacing:22.059919px;}
.ls4c{letter-spacing:22.126869px;}
.ls46{letter-spacing:24.054063px;}
.ls45{letter-spacing:24.436632px;}
.ls7d{letter-spacing:25.940575px;}
.ls35{letter-spacing:28.525345px;}
.ls78{letter-spacing:31.045780px;}
.ls12{letter-spacing:35.718863px;}
.ls71{letter-spacing:36.798364px;}
.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;}
}
.ws15d{word-spacing:-31.102567px;}
.ws8e{word-spacing:-28.573166px;}
.ws17d{word-spacing:-25.997363px;}
.wsd7{word-spacing:-22.174691px;}
.ws91{word-spacing:-22.107740px;}
.ws187{word-spacing:-19.213319px;}
.ws11e{word-spacing:-19.047184px;}
.ws151{word-spacing:-18.853482px;}
.ws180{word-spacing:-16.701232px;}
.wsa9{word-spacing:-16.474082px;}
.ws1a2{word-spacing:-13.925534px;}
.ws144{word-spacing:-13.753956px;}
.ws159{word-spacing:-13.667299px;}
.ws12d{word-spacing:-12.731779px;}
.ws65{word-spacing:-11.180597px;}
.ws1a{word-spacing:-0.641700px;}
.ws1a7{word-spacing:-0.640804px;}
.ws8d{word-spacing:-0.636022px;}
.ws90{word-spacing:-0.626458px;}
.ws17c{word-spacing:-0.579233px;}
.ws194{word-spacing:-0.065754px;}
.ws4{word-spacing:-0.056788px;}
.ws29{word-spacing:-0.050809px;}
.ws26{word-spacing:-0.047821px;}
.ws1a0{word-spacing:-0.043039px;}
.ws2c{word-spacing:0.000000px;}
.wsf3{word-spacing:0.607627px;}
.ws1ab{word-spacing:0.650368px;}
.ws1e{word-spacing:0.670094px;}
.ws5b{word-spacing:0.731664px;}
.ws13e{word-spacing:0.743918px;}
.wse0{word-spacing:0.783669px;}
.wsc8{word-spacing:0.863171px;}
.ws56{word-spacing:1.071195px;}
.ws15b{word-spacing:9.277313px;}
.ws1c{word-spacing:9.540316px;}
.ws107{word-spacing:9.612061px;}
.ws108{word-spacing:9.994631px;}
.ws5e{word-spacing:10.042452px;}
.ws1d{word-spacing:10.051425px;}
.ws1a8{word-spacing:10.425022px;}
.ws20{word-spacing:10.448918px;}
.ws1a4{word-spacing:10.711949px;}
.ws64{word-spacing:10.951055px;}
.ws51{word-spacing:11.022787px;}
.ws58{word-spacing:11.094518px;}
.ws66{word-spacing:11.142340px;}
.ws93{word-spacing:11.187157px;}
.ws149{word-spacing:11.381446px;}
.ws109{word-spacing:11.429267px;}
.wsab{word-spacing:11.471095px;}
.ws10a{word-spacing:11.477088px;}
.wsb4{word-spacing:11.527882px;}
.ws15a{word-spacing:11.539256px;}
.wsaa{word-spacing:11.584670px;}
.ws98{word-spacing:11.641458px;}
.ws1f{word-spacing:11.749349px;}
.ws12e{word-spacing:11.755033px;}
.ws184{word-spacing:11.811820px;}
.ws158{word-spacing:11.897915px;}
.ws12c{word-spacing:11.982183px;}
.ws6f{word-spacing:12.038971px;}
.ws4c{word-spacing:12.095758px;}
.ws19d{word-spacing:12.098764px;}
.ws85{word-spacing:12.152546px;}
.ws76{word-spacing:12.209333px;}
.wsa7{word-spacing:12.266121px;}
.ws38{word-spacing:12.322909px;}
.wsa6{word-spacing:12.379696px;}
.ws10b{word-spacing:12.419166px;}
.ws7a{word-spacing:12.436484px;}
.wsf2{word-spacing:12.550059px;}
.ws137{word-spacing:12.606847px;}
.ws52{word-spacing:12.653490px;}
.ws18b{word-spacing:12.720422px;}
.ws4f{word-spacing:12.744350px;}
.ws5d{word-spacing:12.768260px;}
.ws10d{word-spacing:12.777209px;}
.ws104{word-spacing:12.816082px;}
.wse1{word-spacing:12.833997px;}
.ws6a{word-spacing:12.890785px;}
.ws178{word-spacing:12.911724px;}
.ws128{word-spacing:12.947572px;}
.ws3{word-spacing:12.959545px;}
.ws72{word-spacing:13.004360px;}
.ws68{word-spacing:13.007366px;}
.ws63{word-spacing:13.055188px;}
.ws77{word-spacing:13.061147px;}
.ws50{word-spacing:13.088663px;}
.ws185{word-spacing:13.103005px;}
.ws2{word-spacing:13.103009px;}
.ws13c{word-spacing:13.112256px;}
.wsc1{word-spacing:13.117935px;}
.ws1ad{word-spacing:13.150830px;}
.wsba{word-spacing:13.174723px;}
.wsf9{word-spacing:13.191759px;}
.ws25{word-spacing:13.198651px;}
.wsdb{word-spacing:13.231510px;}
.ws78{word-spacing:13.288298px;}
.ws14d{word-spacing:13.345085px;}
.ws33{word-spacing:13.401873px;}
.ws192{word-spacing:13.437757px;}
.ws145{word-spacing:13.458661px;}
.ws19e{word-spacing:13.499925px;}
.ws4a{word-spacing:13.515448px;}
.wse4{word-spacing:13.526806px;}
.ws18f{word-spacing:13.533404px;}
.wsf1{word-spacing:13.572236px;}
.ws1aa{word-spacing:13.581221px;}
.ws14a{word-spacing:13.676851px;}
.ws18c{word-spacing:13.685811px;}
.ws102{word-spacing:13.724685px;}
.wsb3{word-spacing:13.742599px;}
.ws9a{word-spacing:13.799386px;}
.wsb5{word-spacing:13.820327px;}
.ws186{word-spacing:13.820329px;}
.wse9{word-spacing:13.856174px;}
.wsb7{word-spacing:13.868148px;}
.ws9b{word-spacing:13.912961px;}
.ws1a3{word-spacing:13.915969px;}
.ws54{word-spacing:13.963791px;}
.ws55{word-spacing:14.011615px;}
.ws2b{word-spacing:14.023339px;}
.ws28{word-spacing:14.023360px;}
.wse3{word-spacing:14.026537px;}
.ws4b{word-spacing:14.083324px;}
.ws5c{word-spacing:14.107254px;}
.ws27{word-spacing:14.124957px;}
.ws44{word-spacing:14.140112px;}
.ws190{word-spacing:14.155075px;}
.wsed{word-spacing:14.191221px;}
.ws70{word-spacing:14.196899px;}
.ws11b{word-spacing:14.253687px;}
.ws17e{word-spacing:14.310475px;}
.ws99{word-spacing:14.310476px;}
.ws53{word-spacing:14.346360px;}
.wsa5{word-spacing:14.424050px;}
.ws10c{word-spacing:14.461131px;}
.ws10e{word-spacing:14.480837px;}
.ws1ac{word-spacing:14.485042px;}
.ws126{word-spacing:14.537625px;}
.ws181{word-spacing:14.543304px;}
.ws196{word-spacing:14.580684px;}
.ws62{word-spacing:14.585466px;}
.ws182{word-spacing:14.594413px;}
.ws67{word-spacing:14.599812px;}
.ws4e{word-spacing:14.609377px;}
.ws113{word-spacing:14.651200px;}
.ws122{word-spacing:14.671544px;}
.ws59{word-spacing:14.681109px;}
.ws13a{word-spacing:14.707988px;}
.ws9c{word-spacing:14.764775px;}
.ws198{word-spacing:14.776751px;}
.ws2a{word-spacing:14.785477px;}
.wsaf{word-spacing:14.821563px;}
.wsa8{word-spacing:14.878351px;}
.ws86{word-spacing:14.935138px;}
.wsb8{word-spacing:14.986247px;}
.wsec{word-spacing:14.991926px;}
.wse8{word-spacing:15.048713px;}
.ws45{word-spacing:15.105501px;}
.ws136{word-spacing:15.162289px;}
.wsf6{word-spacing:15.213397px;}
.wsc0{word-spacing:15.219076px;}
.ws195{word-spacing:15.250181px;}
.ws105{word-spacing:15.259745px;}
.ws1a5{word-spacing:15.269309px;}
.ws193{word-spacing:15.274091px;}
.ws140{word-spacing:15.275864px;}
.ws199{word-spacing:15.317130px;}
.ws127{word-spacing:15.332651px;}
.wse7{word-spacing:15.332658px;}
.ws1ae{word-spacing:15.360170px;}
.ws1a9{word-spacing:15.364952px;}
.ws7c{word-spacing:15.389439px;}
.ws197{word-spacing:15.398427px;}
.ws69{word-spacing:15.446227px;}
.ws103{word-spacing:15.494069px;}
.ws179{word-spacing:15.503014px;}
.ws173{word-spacing:15.503018px;}
.ws147{word-spacing:15.559802px;}
.wsa1{word-spacing:15.616589px;}
.wsc4{word-spacing:15.673377px;}
.wsc5{word-spacing:15.730159px;}
.wsdc{word-spacing:15.730165px;}
.ws3e{word-spacing:15.786952px;}
.ws4d{word-spacing:15.843740px;}
.ws14f{word-spacing:15.900527px;}
.wsc7{word-spacing:15.957315px;}
.wsa0{word-spacing:16.014103px;}
.ws157{word-spacing:16.070890px;}
.ws3a{word-spacing:16.127678px;}
.wsb6{word-spacing:16.163566px;}
.ws32{word-spacing:16.184465px;}
.ws3f{word-spacing:16.241253px;}
.ws73{word-spacing:16.298041px;}
.ws156{word-spacing:16.332112px;}
.ws1{word-spacing:16.354828px;}
.ws176{word-spacing:16.402672px;}
.wsae{word-spacing:16.411616px;}
.ws177{word-spacing:16.450493px;}
.wsb0{word-spacing:16.468400px;}
.ws48{word-spacing:16.468403px;}
.ws106{word-spacing:16.498314px;}
.ws96{word-spacing:16.513833px;}
.ws18a{word-spacing:16.559263px;}
.ws49{word-spacing:16.581978px;}
.wsb9{word-spacing:16.638766px;}
.ws60{word-spacing:16.689599px;}
.ws112{word-spacing:16.695554px;}
.ws5f{word-spacing:16.737420px;}
.ws119{word-spacing:16.752341px;}
.ws88{word-spacing:16.809129px;}
.ws11c{word-spacing:16.843201px;}
.wsdd{word-spacing:16.856719px;}
.wsde{word-spacing:16.865916px;}
.wsb1{word-spacing:16.911345px;}
.ws141{word-spacing:16.916494px;}
.ws11a{word-spacing:16.917025px;}
.wsa3{word-spacing:16.922704px;}
.ws14c{word-spacing:16.979492px;}
.wse5{word-spacing:17.036279px;}
.wsc9{word-spacing:17.093067px;}
.ws95{word-spacing:17.149854px;}
.ws13d{word-spacing:17.206642px;}
.ws61{word-spacing:17.215632px;}
.wsf4{word-spacing:17.263430px;}
.ws125{word-spacing:17.263453px;}
.wsbe{word-spacing:17.275148px;}
.ws35{word-spacing:17.320217px;}
.ws14b{word-spacing:17.334924px;}
.ws153{word-spacing:17.342929px;}
.ws89{word-spacing:17.377005px;}
.wsda{word-spacing:17.490580px;}
.ws36{word-spacing:17.604155px;}
.wsb2{word-spacing:17.660943px;}
.wsd8{word-spacing:17.717730px;}
.ws39{word-spacing:17.740445px;}
.wsbd{word-spacing:17.763161px;}
.wsc2{word-spacing:17.774518px;}
.ws11d{word-spacing:17.831306px;}
.ws11f{word-spacing:17.832526px;}
.ws83{word-spacing:17.836984px;}
.ws191{word-spacing:17.837308px;}
.ws82{word-spacing:17.871057px;}
.ws101{word-spacing:17.885129px;}
.ws37{word-spacing:18.001668px;}
.ws133{word-spacing:18.115244px;}
.ws146{word-spacing:18.172031px;}
.ws17f{word-spacing:18.177716px;}
.ws13f{word-spacing:18.228819px;}
.ws124{word-spacing:18.267699px;}
.ws152{word-spacing:18.342394px;}
.ws41{word-spacing:18.399182px;}
.ws94{word-spacing:18.507078px;}
.ws175{word-spacing:18.512757px;}
.ws123{word-spacing:18.554626px;}
.ws114{word-spacing:18.569544px;}
.ws134{word-spacing:18.626332px;}
.ws97{word-spacing:18.683120px;}
.ws7e{word-spacing:18.796695px;}
.ws7b{word-spacing:18.853482px;}
.ws13b{word-spacing:18.910270px;}
.ws10f{word-spacing:18.967058px;}
.ws21{word-spacing:19.068659px;}
.ws9d{word-spacing:19.080633px;}
.ws84{word-spacing:19.134413px;}
.ws117{word-spacing:19.194208px;}
.wsdf{word-spacing:19.250996px;}
.ws19a{word-spacing:19.271944px;}
.ws12a{word-spacing:19.307780px;}
.ws129{word-spacing:19.307783px;}
.ws131{word-spacing:19.364571px;}
.wsbc{word-spacing:19.421358px;}
.wsac{word-spacing:19.534934px;}
.ws3c{word-spacing:19.563327px;}
.ws7f{word-spacing:19.648509px;}
.wsf5{word-spacing:19.705296px;}
.ws9f{word-spacing:19.762084px;}
.ws87{word-spacing:19.818872px;}
.ws92{word-spacing:19.875659px;}
.ws42{word-spacing:19.932447px;}
.ws57{word-spacing:19.941441px;}
.ws170{word-spacing:19.960841px;}
.wsf7{word-spacing:20.046022px;}
.wsf0{word-spacing:20.159597px;}
.wseb{word-spacing:20.216385px;}
.ws22{word-spacing:20.227742px;}
.wsfb{word-spacing:20.273172px;}
.wsee{word-spacing:20.386748px;}
.wsfa{word-spacing:20.443533px;}
.ws3d{word-spacing:20.443535px;}
.ws18e{word-spacing:20.515295px;}
.wsa4{word-spacing:20.557110px;}
.ws43{word-spacing:20.670686px;}
.ws121{word-spacing:20.673105px;}
.wsd6{word-spacing:20.778312px;}
.ws143{word-spacing:20.784261px;}
.ws19c{word-spacing:20.840479px;}
.ws188{word-spacing:20.841048px;}
.wsc3{word-spacing:20.897836px;}
.ws8b{word-spacing:20.945686px;}
.ws34{word-spacing:20.954624px;}
.wsff{word-spacing:21.011411px;}
.ws111{word-spacing:21.068199px;}
.ws40{word-spacing:21.124986px;}
.ws1a1{word-spacing:21.136967px;}
.ws71{word-spacing:21.181774px;}
.wsbb{word-spacing:21.255598px;}
.ws5{word-spacing:21.272634px;}
.ws154{word-spacing:21.295349px;}
.ws115{word-spacing:21.465712px;}
.ws5a{word-spacing:21.572154px;}
.wsad{word-spacing:21.579287px;}
.ws9{word-spacing:21.636075px;}
.wsfe{word-spacing:21.692862px;}
.ws14e{word-spacing:21.749650px;}
.ws9e{word-spacing:21.789401px;}
.ws19f{word-spacing:21.854289px;}
.ws3b{word-spacing:21.863225px;}
.ws79{word-spacing:21.920013px;}
.ws0{word-spacing:21.991647px;}
.ws8f{word-spacing:21.997748px;}
.ws8{word-spacing:22.050624px;}
.ws16e{word-spacing:22.113091px;}
.ws6e{word-spacing:22.203951px;}
.ws47{word-spacing:22.317526px;}
.wsd4{word-spacing:22.452054px;}
.ws168{word-spacing:22.465174px;}
.ws132{word-spacing:22.544676px;}
.ws8a{word-spacing:22.552478px;}
.ws167{word-spacing:22.561713px;}
.ws120{word-spacing:22.648120px;}
.ws174{word-spacing:22.658251px;}
.wsd1{word-spacing:22.743763px;}
.wscf{word-spacing:22.762887px;}
.wsd9{word-spacing:22.771827px;}
.wsd2{word-spacing:23.221976px;}
.ws75{word-spacing:23.226127px;}
.ws12b{word-spacing:23.282915px;}
.ws172{word-spacing:23.339703px;}
.wsd3{word-spacing:23.346310px;}
.wsd0{word-spacing:23.365438px;}
.ws12f{word-spacing:23.453278px;}
.ws19b{word-spacing:23.508902px;}
.ws19{word-spacing:23.549817px;}
.ws138{word-spacing:23.623641px;}
.wsef{word-spacing:23.737216px;}
.ws81{word-spacing:23.907579px;}
.ws183{word-spacing:24.191517px;}
.ws130{word-spacing:24.248304px;}
.wse2{word-spacing:24.305092px;}
.ws166{word-spacing:24.356201px;}
.ws6c{word-spacing:24.361879px;}
.wsfd{word-spacing:24.418667px;}
.ws6b{word-spacing:24.475455px;}
.ws7d{word-spacing:24.645817px;}
.ws17b{word-spacing:24.662847px;}
.ws6d{word-spacing:24.662854px;}
.ws155{word-spacing:24.759393px;}
.ws16f{word-spacing:24.872968px;}
.wsea{word-spacing:24.929755px;}
.ws16d{word-spacing:24.946792px;}
.ws46{word-spacing:24.986543px;}
.ws171{word-spacing:25.003579px;}
.ws110{word-spacing:25.043331px;}
.wsa2{word-spacing:25.100118px;}
.ws31{word-spacing:25.105797px;}
.ws189{word-spacing:25.270481px;}
.ws150{word-spacing:25.327269px;}
.wsc6{word-spacing:25.384056px;}
.wsfc{word-spacing:25.440844px;}
.ws148{word-spacing:25.554419px;}
.wsbf{word-spacing:25.611207px;}
.wsca{word-spacing:25.781569px;}
.ws116{word-spacing:25.838357px;}
.ws23{word-spacing:25.872429px;}
.wsf8{word-spacing:25.895145px;}
.ws80{word-spacing:25.917860px;}
.ws118{word-spacing:25.957611px;}
.ws139{word-spacing:26.065507px;}
.wsb{word-spacing:26.139331px;}
.wsd5{word-spacing:26.182107px;}
.ws30{word-spacing:26.275621px;}
.wse6{word-spacing:26.292658px;}
.ws135{word-spacing:26.315373px;}
.ws16a{word-spacing:26.343767px;}
.ws142{word-spacing:26.406233px;}
.ws169{word-spacing:26.553881px;}
.ws165{word-spacing:26.570917px;}
.ws74{word-spacing:26.633383px;}
.ws2e{word-spacing:26.690171px;}
.ws164{word-spacing:26.695850px;}
.wsa{word-spacing:26.718565px;}
.ws2f{word-spacing:26.729922px;}
.ws10{word-spacing:26.940036px;}
.ws100{word-spacing:26.974109px;}
.ws16b{word-spacing:27.053611px;}
.ws160{word-spacing:27.241011px;}
.ws1b{word-spacing:27.655569px;}
.ws1a6{word-spacing:27.669347px;}
.ws12{word-spacing:27.769135px;}
.ws18{word-spacing:27.854317px;}
.wscc{word-spacing:27.855849px;}
.wscb{word-spacing:27.941927px;}
.ws16{word-spacing:28.206400px;}
.wsce{word-spacing:28.300586px;}
.ws8c{word-spacing:28.453614px;}
.wscd{word-spacing:28.568385px;}
.ws24{word-spacing:28.870815px;}
.ws2d{word-spacing:29.495478px;}
.ws15c{word-spacing:29.518193px;}
.ws15e{word-spacing:29.660162px;}
.ws6{word-spacing:30.159893px;}
.ws7{word-spacing:31.170712px;}
.ws17{word-spacing:31.982775px;}
.wsd{word-spacing:32.993594px;}
.ws162{word-spacing:33.101491px;}
.ws163{word-spacing:33.192351px;}
.ws11{word-spacing:33.226423px;}
.wse{word-spacing:33.283211px;}
.ws15{word-spacing:33.317284px;}
.ws13{word-spacing:33.334320px;}
.ws161{word-spacing:33.374071px;}
.ws14{word-spacing:33.408144px;}
.ws15f{word-spacing:33.430859px;}
.ws16c{word-spacing:33.442216px;}
.ws17a{word-spacing:33.504683px;}
.wsc{word-spacing:33.538755px;}
.ws18d{word-spacing:33.666114px;}
.wsf{word-spacing:33.737512px;}
._24{margin-left:-31.255925px;}
._23{margin-left:-30.142845px;}
._19{margin-left:-27.990316px;}
._27{margin-left:-26.349445px;}
._26{margin-left:-25.043331px;}
._1a{margin-left:-21.762824px;}
._1b{margin-left:-20.550584px;}
._1e{margin-left:-18.554626px;}
._1c{margin-left:-17.296316px;}
._22{margin-left:-16.064260px;}
._21{margin-left:-14.988901px;}
._1f{margin-left:-13.141763px;}
._16{margin-left:-10.944367px;}
._3{margin-left:-5.224459px;}
._4{margin-left:-3.861557px;}
._1{margin-left:-2.259565px;}
._0{margin-left:-1.165635px;}
._6{width:1.078964px;}
._18{width:2.235647px;}
._20{width:4.217051px;}
._9{width:5.926882px;}
._a{width:7.491811px;}
._14{width:8.763211px;}
._13{width:10.634239px;}
._f{width:11.976250px;}
._b{width:13.043346px;}
._e{width:14.917267px;}
._15{width:16.091861px;}
._d{width:17.272414px;}
._10{width:18.668299px;}
._11{width:20.533233px;}
._1d{width:21.949931px;}
._2{width:22.998977px;}
._17{width:24.723577px;}
._12{width:26.173150px;}
._5{width:28.053073px;}
._8{width:29.870276px;}
._c{width:31.505178px;}
._7{width:33.447895px;}
._25{width:35.754378px;}
._28{width:58.216384px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(19,20,19);}
.fs7{font-size:31.876199px;}
.fs6{font-size:33.869399px;}
.fs2{font-size:37.854601px;}
.fs3{font-size:47.821200px;}
.fs5{font-size:50.809198px;}
.fs1{font-size:56.787598px;}
.fs8{font-size:59.775599px;}
.fs4{font-size:65.753998px;}
.fs0{font-size:77.709000px;}
.y0{bottom:0.000000px;}
.y101{bottom:75.551643px;}
.y5e{bottom:75.592072px;}
.ydd{bottom:75.593422px;}
.y12d{bottom:75.594761px;}
.y8a{bottom:75.596112px;}
.y180{bottom:75.597462px;}
.yb9{bottom:75.598652px;}
.y168{bottom:75.600002px;}
.y25{bottom:76.360156px;}
.y200{bottom:77.870778px;}
.y167{bottom:80.872501px;}
.y5d{bottom:89.794968px;}
.ydc{bottom:89.796318px;}
.y12c{bottom:89.797657px;}
.y89{bottom:89.799008px;}
.y17f{bottom:89.800358px;}
.yb8{bottom:89.801548px;}
.y24{bottom:91.247251px;}
.y1ff{bottom:91.726971px;}
.y100{bottom:93.496524px;}
.yb7{bottom:95.074053px;}
.y23{bottom:96.944847px;}
.yb6{bottom:103.576653px;}
.y5c{bottom:103.997864px;}
.ydb{bottom:103.999214px;}
.y12b{bottom:104.000553px;}
.y88{bottom:104.001904px;}
.y17e{bottom:104.003254px;}
.y1fe{bottom:105.499476px;}
.y17d{bottom:109.275604px;}
.yff{bottom:111.441406px;}
.y1e9{bottom:111.681237px;}
.y166{bottom:111.777384px;}
.y1a5{bottom:117.778198px;}
.yb5{bottom:117.779549px;}
.y5b{bottom:118.200760px;}
.yda{bottom:118.202110px;}
.y12a{bottom:118.203449px;}
.y87{bottom:118.204800px;}
.y1fd{bottom:119.355669px;}
.y22{bottom:121.184797px;}
.yb4{bottom:123.136951px;}
.y86{bottom:123.477150px;}
.yfe{bottom:129.386287px;}
.y1e8{bottom:129.626118px;}
.y165{bottom:129.722266px;}
.y146{bottom:131.978405px;}
.y1a4{bottom:131.981094px;}
.y5a{bottom:132.403656px;}
.yd9{bottom:132.405006px;}
.y129{bottom:132.406345px;}
.y1fc{bottom:133.128175px;}
.y21{bottom:136.148106px;}
.y1a3{bottom:137.338646px;}
.y128{bottom:137.678696px;}
.y127{bottom:146.176072px;}
.y145{bottom:146.181301px;}
.y59{bottom:146.606552px;}
.yd8{bottom:146.607903px;}
.y1fb{bottom:146.984368px;}
.yfd{bottom:147.245987px;}
.y17c{bottom:147.263258px;}
.y1e7{bottom:147.571000px;}
.y164{bottom:147.667147px;}
.yd7{bottom:151.880253px;}
.y126{bottom:160.378968px;}
.y144{bottom:160.384197px;}
.y58{bottom:160.809448px;}
.y1fa{bottom:160.840561px;}
.y1c3{bottom:165.167608px;}
.yfc{bottom:165.190869px;}
.y17b{bottom:165.208139px;}
.y85{bottom:165.222106px;}
.y1e6{bottom:165.515882px;}
.y163{bottom:165.612029px;}
.yb3{bottom:165.624550px;}
.y143{bottom:165.741749px;}
.y1a2{bottom:165.875855px;}
.y57{bottom:166.081947px;}
.y1c4{bottom:171.524403px;}
.y56{bottom:174.576623px;}
.y125{bottom:174.581864px;}
.y1f9{bottom:174.613066px;}
.y1c2{bottom:183.112490px;}
.yfb{bottom:183.135750px;}
.y17a{bottom:183.153021px;}
.y84{bottom:183.166988px;}
.y1e5{bottom:183.460763px;}
.y162{bottom:183.556910px;}
.yb2{bottom:183.569431px;}
.yd6{bottom:183.590644px;}
.y1a1{bottom:183.820737px;}
.y1f8{bottom:188.469259px;}
.y55{bottom:188.779519px;}
.y124{bottom:188.784760px;}
.y1e{bottom:200.349594px;}
.y1c1{bottom:201.057371px;}
.yfa{bottom:201.080632px;}
.y179{bottom:201.097902px;}
.y83{bottom:201.111869px;}
.y142{bottom:201.116619px;}
.y1e4{bottom:201.405645px;}
.y161{bottom:201.416610px;}
.yb1{bottom:201.429131px;}
.yd5{bottom:201.450344px;}
.y1a0{bottom:201.765618px;}
.y1f7{bottom:202.241764px;}
.y54{bottom:202.982415px;}
.y123{bottom:202.987656px;}
.y1f6{bottom:216.097957px;}
.y53{bottom:217.185311px;}
.y122{bottom:217.190552px;}
.y1d{bottom:218.294475px;}
.y1c0{bottom:219.002253px;}
.yf9{bottom:219.025513px;}
.y178{bottom:219.042784px;}
.y13f{bottom:219.047404px;}
.y82{bottom:219.056751px;}
.y141{bottom:219.061501px;}
.y1e3{bottom:219.265344px;}
.y160{bottom:219.361491px;}
.yb0{bottom:219.374012px;}
.yd4{bottom:219.395225px;}
.y19f{bottom:219.710500px;}
.y121{bottom:222.463051px;}
.y140{bottom:225.354309px;}
.y1f5{bottom:229.870462px;}
.y52{bottom:231.388207px;}
.y1c{bottom:236.239357px;}
.y1bf{bottom:236.947134px;}
.yf8{bottom:236.970395px;}
.y177{bottom:236.987665px;}
.y13e{bottom:236.992286px;}
.y81{bottom:237.001632px;}
.y1e2{bottom:237.210226px;}
.y15f{bottom:237.306373px;}
.yaf{bottom:237.318894px;}
.yd3{bottom:237.340107px;}
.y19e{bottom:237.655381px;}
.y1f4{bottom:243.726656px;}
.y51{bottom:245.591103px;}
.y1be{bottom:254.892016px;}
.yf7{bottom:254.915276px;}
.y176{bottom:254.932547px;}
.y120{bottom:254.937167px;}
.y80{bottom:254.946514px;}
.y1e1{bottom:255.155107px;}
.y15e{bottom:255.251254px;}
.yae{bottom:255.263775px;}
.yd2{bottom:255.284988px;}
.y19d{bottom:255.600263px;}
.y1f3{bottom:257.499161px;}
.y50{bottom:259.793999px;}
.y1b{bottom:272.125946px;}
.y1bd{bottom:272.836898px;}
.yf6{bottom:272.860158px;}
.y175{bottom:272.877428px;}
.y11f{bottom:272.882049px;}
.y7f{bottom:272.891396px;}
.y1e0{bottom:273.099989px;}
.y15d{bottom:273.196136px;}
.yad{bottom:273.208657px;}
.yd1{bottom:273.229870px;}
.y19c{bottom:273.459962px;}
.y4f{bottom:273.996895px;}
.y4e{bottom:279.269257px;}
.y4d{bottom:287.766610px;}
.y1bc{bottom:290.696597px;}
.yf5{bottom:290.719857px;}
.y174{bottom:290.737128px;}
.y11e{bottom:290.741748px;}
.y1df{bottom:291.044870px;}
.y15c{bottom:291.141018px;}
.yac{bottom:291.153538px;}
.yd0{bottom:291.174751px;}
.y19b{bottom:291.404844px;}
.y1f2{bottom:291.940201px;}
.y4c{bottom:301.969506px;}
.y1bb{bottom:308.641479px;}
.yf4{bottom:308.664739px;}
.y173{bottom:308.682010px;}
.y11d{bottom:308.686630px;}
.y7e{bottom:308.692955px;}
.y1de{bottom:308.989752px;}
.y15b{bottom:309.085899px;}
.y19a{bottom:309.349726px;}
.y4b{bottom:316.172402px;}
.y1a{bottom:325.837983px;}
.y1ba{bottom:326.586360px;}
.yf3{bottom:326.609621px;}
.yce{bottom:326.612771px;}
.yab{bottom:326.617392px;}
.y172{bottom:326.626891px;}
.y11c{bottom:326.631511px;}
.y1dd{bottom:326.934634px;}
.y15a{bottom:327.030781px;}
.y199{bottom:327.294607px;}
.y4a{bottom:330.375298px;}
.ycf{bottom:332.929047px;}
.y1b9{bottom:344.531242px;}
.yf2{bottom:344.554502px;}
.ycd{bottom:344.557653px;}
.yaa{bottom:344.562273px;}
.y171{bottom:344.571773px;}
.y11b{bottom:344.576393px;}
.y49{bottom:344.578194px;}
.y1dc{bottom:344.879515px;}
.y159{bottom:344.890480px;}
.y198{bottom:345.239489px;}
.y1f1{bottom:346.480289px;}
.y48{bottom:358.781090px;}
.y1f0{bottom:360.336482px;}
.y19{bottom:361.727746px;}
.y1b8{bottom:362.476123px;}
.y7d{bottom:362.479137px;}
.yf1{bottom:362.499384px;}
.ya9{bottom:362.507155px;}
.y170{bottom:362.516654px;}
.y11a{bottom:362.521274px;}
.y1db{bottom:362.739215px;}
.y158{bottom:362.835362px;}
.y197{bottom:363.184370px;}
.y47{bottom:364.053452px;}
.y1ef{bottom:374.108988px;}
.y18{bottom:379.672628px;}
.y1b7{bottom:380.421005px;}
.y7c{bottom:380.424019px;}
.y13d{bottom:380.433343px;}
.y117{bottom:380.434895px;}
.yf0{bottom:380.444265px;}
.ycc{bottom:380.447416px;}
.ya8{bottom:380.452036px;}
.y16f{bottom:380.461536px;}
.y119{bottom:380.466156px;}
.y1da{bottom:380.684096px;}
.y157{bottom:380.780243px;}
.y196{bottom:381.129252px;}
.y118{bottom:386.758942px;}
.y1ee{bottom:387.965181px;}
.y17{bottom:397.617509px;}
.y1b6{bottom:398.365886px;}
.y7b{bottom:398.368900px;}
.y13c{bottom:398.378224px;}
.y116{bottom:398.379777px;}
.yef{bottom:398.389147px;}
.ycb{bottom:398.392298px;}
.ya7{bottom:398.396918px;}
.y16e{bottom:398.406417px;}
.y1d9{bottom:398.628978px;}
.y156{bottom:398.725125px;}
.y195{bottom:399.074133px;}
.y16{bottom:415.562391px;}
.y1b5{bottom:416.310768px;}
.y7a{bottom:416.313782px;}
.y13b{bottom:416.323106px;}
.y115{bottom:416.324659px;}
.yee{bottom:416.334028px;}
.y46{bottom:416.340247px;}
.y16d{bottom:416.351299px;}
.y1d8{bottom:416.573859px;}
.y155{bottom:416.670006px;}
.y194{bottom:416.933833px;}
.y1ed{bottom:430.143481px;}
.y15{bottom:433.507273px;}
.y1b4{bottom:434.170468px;}
.y79{bottom:434.173481px;}
.y13a{bottom:434.182805px;}
.y114{bottom:434.184358px;}
.yed{bottom:434.193728px;}
.yca{bottom:434.196879px;}
.y45{bottom:434.199947px;}
.ya6{bottom:434.201499px;}
.y16c{bottom:434.210999px;}
.y1d7{bottom:434.518741px;}
.y193{bottom:434.878714px;}
.y1ec{bottom:443.999674px;}
.y14{bottom:451.366972px;}
.y1b3{bottom:452.115349px;}
.y78{bottom:452.118363px;}
.y139{bottom:452.127687px;}
.y113{bottom:452.129240px;}
.y154{bottom:452.133860px;}
.yec{bottom:452.138609px;}
.yc9{bottom:452.141761px;}
.y44{bottom:452.144828px;}
.ya5{bottom:452.146381px;}
.y192{bottom:452.823596px;}
.y1eb{bottom:457.772179px;}
.y13{bottom:469.311854px;}
.y1b2{bottom:470.060231px;}
.y77{bottom:470.063245px;}
.y138{bottom:470.072569px;}
.y112{bottom:470.074121px;}
.y153{bottom:470.078741px;}
.yeb{bottom:470.083491px;}
.y43{bottom:470.089710px;}
.ya4{bottom:470.091262px;}
.y16b{bottom:470.097610px;}
.y1d6{bottom:470.493683px;}
.y191{bottom:470.768478px;}
.y1ea{bottom:471.628372px;}
.y21f{bottom:471.757859px;}
.y21e{bottom:485.530365px;}
.y12{bottom:487.256735px;}
.y1b1{bottom:488.005112px;}
.y76{bottom:488.008126px;}
.y137{bottom:488.017450px;}
.y111{bottom:488.019003px;}
.y152{bottom:488.023623px;}
.yea{bottom:488.028373px;}
.yc8{bottom:488.031524px;}
.y42{bottom:488.034591px;}
.ya3{bottom:488.036144px;}
.y1d5{bottom:488.353382px;}
.y190{bottom:488.713359px;}
.y11{bottom:505.201617px;}
.y1b0{bottom:505.949994px;}
.y75{bottom:505.953008px;}
.y136{bottom:505.962332px;}
.y110{bottom:505.963884px;}
.ye9{bottom:505.973254px;}
.yc7{bottom:505.976405px;}
.y41{bottom:505.979473px;}
.ya2{bottom:505.981025px;}
.y16a{bottom:505.982624px;}
.y1d4{bottom:506.298264px;}
.y18f{bottom:506.658241px;}
.y21d{bottom:517.678165px;}
.y10{bottom:523.146498px;}
.y1af{bottom:523.894875px;}
.y74{bottom:523.897889px;}
.y135{bottom:523.907213px;}
.y10f{bottom:523.908766px;}
.y151{bottom:523.913386px;}
.ye8{bottom:523.918136px;}
.yc6{bottom:523.921287px;}
.y40{bottom:523.924354px;}
.ya1{bottom:523.925907px;}
.y169{bottom:523.927505px;}
.y1d3{bottom:524.243145px;}
.y18e{bottom:524.603122px;}
.y21c{bottom:531.534358px;}
.yf{bottom:541.091380px;}
.y1ae{bottom:541.839757px;}
.y73{bottom:541.842771px;}
.y9e{bottom:541.850679px;}
.y134{bottom:541.852095px;}
.y10e{bottom:541.853647px;}
.y150{bottom:541.858268px;}
.ye7{bottom:541.863017px;}
.yc5{bottom:541.866168px;}
.y3f{bottom:541.869236px;}
.ya0{bottom:541.870789px;}
.y18d{bottom:542.548004px;}
.y21b{bottom:545.306864px;}
.y9f{bottom:548.163620px;}
.ye{bottom:559.036261px;}
.y21a{bottom:559.163057px;}
.y1ad{bottom:559.784638px;}
.y72{bottom:559.787652px;}
.y3c{bottom:559.790811px;}
.y9d{bottom:559.795561px;}
.y133{bottom:559.796976px;}
.y10d{bottom:559.798529px;}
.y14f{bottom:559.803149px;}
.ye6{bottom:559.807899px;}
.yc4{bottom:559.811050px;}
.y3e{bottom:559.814117px;}
.y1d2{bottom:560.132909px;}
.y18c{bottom:560.407703px;}
.y3d{bottom:566.107040px;}
.y219{bottom:572.935562px;}
.yd{bottom:576.981143px;}
.y1ac{bottom:577.644338px;}
.y71{bottom:577.647352px;}
.y3b{bottom:577.650511px;}
.y9c{bottom:577.655261px;}
.y132{bottom:577.656676px;}
.y10c{bottom:577.658229px;}
.y14e{bottom:577.662849px;}
.ye5{bottom:577.667598px;}
.yc3{bottom:577.670750px;}
.y1d1{bottom:578.077790px;}
.y18b{bottom:578.352585px;}
.y218{bottom:586.791755px;}
.yc{bottom:594.840843px;}
.y1ab{bottom:595.589220px;}
.y70{bottom:595.592233px;}
.y3a{bottom:595.595392px;}
.y9b{bottom:595.600142px;}
.y131{bottom:595.601557px;}
.y10b{bottom:595.603110px;}
.y14d{bottom:595.607730px;}
.ye4{bottom:595.612480px;}
.yc2{bottom:595.615631px;}
.y1d0{bottom:596.022672px;}
.y217{bottom:600.564260px;}
.yb{bottom:612.785724px;}
.y1aa{bottom:613.534101px;}
.y6f{bottom:613.537115px;}
.y39{bottom:613.540274px;}
.y189{bottom:613.543288px;}
.y9a{bottom:613.545024px;}
.y130{bottom:613.546439px;}
.y10a{bottom:613.547992px;}
.y14c{bottom:613.552612px;}
.ye3{bottom:613.557361px;}
.y216{bottom:614.420453px;}
.y18a{bottom:619.851883px;}
.y215{bottom:628.192958px;}
.ya{bottom:630.730606px;}
.y1a9{bottom:631.478983px;}
.y6e{bottom:631.481997px;}
.y38{bottom:631.485156px;}
.y1cf{bottom:631.486525px;}
.y188{bottom:631.488169px;}
.y99{bottom:631.489905px;}
.y12f{bottom:631.491321px;}
.y109{bottom:631.492873px;}
.y14b{bottom:631.497493px;}
.yc1{bottom:631.502243px;}
.y214{bottom:642.049152px;}
.y9{bottom:648.675487px;}
.y1a8{bottom:649.423864px;}
.y6d{bottom:649.426878px;}
.y37{bottom:649.430037px;}
.y1ce{bottom:649.431407px;}
.y187{bottom:649.433051px;}
.y98{bottom:649.434787px;}
.y12e{bottom:649.436202px;}
.y108{bottom:649.437755px;}
.y14a{bottom:649.442375px;}
.y213{bottom:655.905345px;}
.y8{bottom:666.620369px;}
.y1a7{bottom:667.368746px;}
.y6c{bottom:667.371760px;}
.y36{bottom:667.374919px;}
.y1cd{bottom:667.376288px;}
.y186{bottom:667.377932px;}
.y97{bottom:667.379668px;}
.yc0{bottom:667.381084px;}
.y107{bottom:667.382636px;}
.y149{bottom:667.387257px;}
.ye2{bottom:667.388855px;}
.y212{bottom:669.677850px;}
.y211{bottom:683.534043px;}
.y7{bottom:684.565250px;}
.y1a6{bottom:685.313627px;}
.y6b{bottom:685.316641px;}
.y35{bottom:685.319800px;}
.y1cc{bottom:685.321170px;}
.y185{bottom:685.322814px;}
.y96{bottom:685.324550px;}
.ybf{bottom:685.325965px;}
.y106{bottom:685.327518px;}
.y148{bottom:685.332138px;}
.y210{bottom:697.306548px;}
.y6{bottom:702.510132px;}
.ye1{bottom:703.258509px;}
.y6a{bottom:703.261523px;}
.y34{bottom:703.264682px;}
.y1cb{bottom:703.266051px;}
.y184{bottom:703.267695px;}
.y95{bottom:703.269431px;}
.ybe{bottom:703.270847px;}
.y105{bottom:703.272399px;}
.y20f{bottom:711.162741px;}
.ye0{bottom:721.118208px;}
.y69{bottom:721.121222px;}
.y33{bottom:721.124381px;}
.y1ca{bottom:721.125751px;}
.y183{bottom:721.127395px;}
.y94{bottom:721.129131px;}
.ybd{bottom:721.130546px;}
.y104{bottom:721.132099px;}
.y147{bottom:721.133697px;}
.y20e{bottom:724.935246px;}
.y20d{bottom:738.791440px;}
.ydf{bottom:739.063090px;}
.y68{bottom:739.066104px;}
.y32{bottom:739.069263px;}
.y182{bottom:739.072277px;}
.y93{bottom:739.074013px;}
.ybc{bottom:739.075428px;}
.y103{bottom:739.076981px;}
.y5{bottom:752.513260px;}
.y20c{bottom:752.563945px;}
.yde{bottom:757.007972px;}
.y67{bottom:757.010985px;}
.y31{bottom:757.014144px;}
.y1c9{bottom:757.015514px;}
.y181{bottom:757.017158px;}
.y92{bottom:757.018894px;}
.ybb{bottom:757.020309px;}
.y102{bottom:763.313232px;}
.y4{bottom:765.099014px;}
.y20b{bottom:766.420138px;}
.y8f{bottom:774.952853px;}
.y66{bottom:774.955867px;}
.y30{bottom:774.959026px;}
.y1c8{bottom:774.960396px;}
.y91{bottom:774.963776px;}
.y20a{bottom:780.276331px;}
.y90{bottom:781.256561px;}
.y8e{bottom:792.897735px;}
.y65{bottom:792.900749px;}
.y2f{bottom:792.903908px;}
.y1c7{bottom:792.905277px;}
.yba{bottom:792.906921px;}
.y209{bottom:794.048836px;}
.y2{bottom:803.621887px;}
.y208{bottom:807.905029px;}
.y3{bottom:809.914764px;}
.y8d{bottom:810.842616px;}
.y64{bottom:810.845630px;}
.y2e{bottom:810.848789px;}
.y1c6{bottom:810.850159px;}
.y1c5{bottom:817.143127px;}
.y207{bottom:821.677534px;}
.y8c{bottom:828.787498px;}
.y63{bottom:828.790512px;}
.y2d{bottom:828.793671px;}
.y206{bottom:835.533728px;}
.y8b{bottom:846.732379px;}
.y2b{bottom:846.733749px;}
.y62{bottom:846.735393px;}
.y1{bottom:846.906921px;}
.y205{bottom:849.306233px;}
.y2c{bottom:853.029785px;}
.y204{bottom:863.162426px;}
.y5f{bottom:864.592079px;}
.y2a{bottom:864.593449px;}
.y61{bottom:864.595093px;}
.y60{bottom:870.973022px;}
.y203{bottom:876.934931px;}
.y27{bottom:882.536960px;}
.y29{bottom:882.538330px;}
.y28{bottom:888.831299px;}
.y202{bottom:890.791124px;}
.y26{bottom:900.481842px;}
.y201{bottom:904.563629px;}
.y20{bottom:925.997453px;}
.y1f{bottom:939.769958px;}
.hf{height:22.153958px;}
.hd{height:23.539232px;}
.he{height:26.308948px;}
.h4{height:26.914621px;}
.h6{height:32.231489px;}
.h10{height:33.235734px;}
.h5{height:33.713946px;}
.hc{height:35.312393px;}
.hb{height:36.684241px;}
.h8{height:39.467380px;}
.h3{height:40.375982px;}
.h7{height:40.943858px;}
.h11{height:42.739553px;}
.ha{height:47.408632px;}
.h9{height:51.392776px;}
.h2{height:54.784845px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:70.157398px;}
.xb{left:77.981100px;}
.x1a{left:82.318050px;}
.x8{left:87.165298px;}
.x4{left:91.247251px;}
.x3{left:93.377201px;}
.x14{left:106.214104px;}
.x15{left:117.864601px;}
.xe{left:126.028347px;}
.xf{left:136.147945px;}
.x1d{left:145.247246px;}
.x16{left:172.629902px;}
.x2{left:178.922848px;}
.x17{left:189.722855px;}
.x7{left:212.003105px;}
.x18{left:288.963753px;}
.x12{left:299.848801px;}
.x19{left:303.590401px;}
.x9{left:341.943146px;}
.x5{left:344.409302px;}
.xa{left:352.403091px;}
.xd{left:353.763748px;}
.x6{left:356.740059px;}
.x1e{left:442.544678px;}
.x1f{left:457.001404px;}
.x13{left:467.376297px;}
.x10{left:485.659653px;}
.x11{left:494.588837px;}
.xc{left:526.478531px;}
.x1b{left:564.916351px;}
.x1c{left:578.692795px;}
@media print{
.v1{vertical-align:-4.548328pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.600352pt;}
.ls60{letter-spacing:-4.058420pt;}
.ls5b{letter-spacing:-1.504089pt;}
.ls5d{letter-spacing:-1.266548pt;}
.ls1f{letter-spacing:-1.253978pt;}
.ls69{letter-spacing:-1.130704pt;}
.ls25{letter-spacing:-1.105201pt;}
.ls3a{letter-spacing:-1.095370pt;}
.ls33{letter-spacing:-1.088198pt;}
.ls21{letter-spacing:-1.049941pt;}
.ls20{letter-spacing:-1.041439pt;}
.ls82{letter-spacing:-1.039844pt;}
.ls7a{letter-spacing:-1.034796pt;}
.ls23{letter-spacing:-1.020186pt;}
.ls22{letter-spacing:-1.003183pt;}
.ls26{letter-spacing:-0.994681pt;}
.ls24{letter-spacing:-0.977678pt;}
.ls80{letter-spacing:-0.964127pt;}
.ls7e{letter-spacing:-0.954032pt;}
.ls4b{letter-spacing:-0.817741pt;}
.ls27{letter-spacing:-0.752387pt;}
.ls4f{letter-spacing:-0.747072pt;}
.ls17{letter-spacing:-0.742025pt;}
.ls62{letter-spacing:-0.711738pt;}
.ls63{letter-spacing:-0.699890pt;}
.ls28{letter-spacing:-0.692876pt;}
.ls49{letter-spacing:-0.691547pt;}
.ls85{letter-spacing:-0.680124pt;}
.ls84{letter-spacing:-0.675873pt;}
.ls5e{letter-spacing:-0.671622pt;}
.ls55{letter-spacing:-0.667371pt;}
.ls29{letter-spacing:-0.658870pt;}
.ls56{letter-spacing:-0.654619pt;}
.ls39{letter-spacing:-0.651164pt;}
.ls6b{letter-spacing:-0.650368pt;}
.ls16{letter-spacing:-0.646117pt;}
.ls54{letter-spacing:-0.641867pt;}
.ls31{letter-spacing:-0.641069pt;}
.ls5a{letter-spacing:-0.636021pt;}
.ls83{letter-spacing:-0.633365pt;}
.ls1e{letter-spacing:-0.630973pt;}
.ls1d{letter-spacing:-0.625926pt;}
.ls30{letter-spacing:-0.620878pt;}
.ls8a{letter-spacing:-0.620613pt;}
.ls50{letter-spacing:-0.615830pt;}
.ls32{letter-spacing:-0.610782pt;}
.ls64{letter-spacing:-0.605734pt;}
.ls4a{letter-spacing:-0.595639pt;}
.ls3c{letter-spacing:-0.590591pt;}
.ls88{letter-spacing:-0.004251pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.042508pt;}
.ls2c{letter-spacing:0.100956pt;}
.ls38{letter-spacing:0.151435pt;}
.ls6d{letter-spacing:0.454301pt;}
.ls77{letter-spacing:0.464396pt;}
.ls47{letter-spacing:0.493090pt;}
.ls1a{letter-spacing:0.499731pt;}
.ls48{letter-spacing:0.501591pt;}
.ls2e{letter-spacing:0.510093pt;}
.ls87{letter-spacing:0.510102pt;}
.ls36{letter-spacing:0.514344pt;}
.ls43{letter-spacing:0.518594pt;}
.lsd{letter-spacing:0.519922pt;}
.ls34{letter-spacing:0.522845pt;}
.ls44{letter-spacing:0.527096pt;}
.ls6{letter-spacing:0.530018pt;}
.ls40{letter-spacing:0.531347pt;}
.ls9{letter-spacing:0.535065pt;}
.ls42{letter-spacing:0.535597pt;}
.ls3f{letter-spacing:0.539848pt;}
.ls4{letter-spacing:0.540113pt;}
.ls2f{letter-spacing:0.544099pt;}
.lse{letter-spacing:0.545161pt;}
.ls2{letter-spacing:0.550209pt;}
.ls5{letter-spacing:0.555257pt;}
.ls3{letter-spacing:0.560304pt;}
.ls6c{letter-spacing:0.565352pt;}
.ls58{letter-spacing:0.569604pt;}
.ls19{letter-spacing:0.570400pt;}
.ls1{letter-spacing:0.575448pt;}
.ls59{letter-spacing:0.582356pt;}
.ls18{letter-spacing:0.585543pt;}
.ls6e{letter-spacing:0.590591pt;}
.ls11{letter-spacing:0.595639pt;}
.ls57{letter-spacing:0.600687pt;}
.ls73{letter-spacing:0.610782pt;}
.ls2b{letter-spacing:0.787455pt;}
.ls41{letter-spacing:0.807647pt;}
.ls8{letter-spacing:0.853076pt;}
.ls74{letter-spacing:0.913649pt;}
.ls15{letter-spacing:0.974223pt;}
.lsc{letter-spacing:1.044892pt;}
.lsb{letter-spacing:1.060035pt;}
.lsa{letter-spacing:1.155943pt;}
.ls72{letter-spacing:1.337663pt;}
.ls70{letter-spacing:1.367950pt;}
.ls6f{letter-spacing:1.378046pt;}
.ls79{letter-spacing:1.479001pt;}
.ls7{letter-spacing:1.635483pt;}
.ls14{letter-spacing:1.716247pt;}
.lsf{letter-spacing:8.833627pt;}
.ls10{letter-spacing:9.136493pt;}
.ls2a{letter-spacing:9.895800pt;}
.ls86{letter-spacing:10.796964pt;}
.ls5f{letter-spacing:11.266659pt;}
.ls1c{letter-spacing:11.392073pt;}
.ls7c{letter-spacing:12.029689pt;}
.ls6a{letter-spacing:12.106203pt;}
.ls65{letter-spacing:12.175261pt;}
.ls89{letter-spacing:12.335744pt;}
.ls0{letter-spacing:12.539779pt;}
.ls67{letter-spacing:12.568989pt;}
.ls4e{letter-spacing:13.174721pt;}
.ls7b{letter-spacing:14.386192pt;}
.ls3b{letter-spacing:14.593151pt;}
.ls4d{letter-spacing:14.689059pt;}
.ls7f{letter-spacing:14.795062pt;}
.ls53{letter-spacing:14.991926pt;}
.ls3e{letter-spacing:15.294791pt;}
.ls76{letter-spacing:15.345293pt;}
.ls51{letter-spacing:15.597661pt;}
.ls61{letter-spacing:16.405306pt;}
.ls3d{letter-spacing:16.506263pt;}
.ls66{letter-spacing:16.708172pt;}
.ls68{letter-spacing:16.708173pt;}
.ls5c{letter-spacing:16.888323pt;}
.ls81{letter-spacing:17.020058pt;}
.ls2d{letter-spacing:18.363341pt;}
.ls52{letter-spacing:18.575853pt;}
.ls75{letter-spacing:18.828243pt;}
.ls37{letter-spacing:19.608817pt;}
.ls4c{letter-spacing:19.668328pt;}
.ls46{letter-spacing:21.381389pt;}
.ls45{letter-spacing:21.721451pt;}
.ls7d{letter-spacing:23.058289pt;}
.ls35{letter-spacing:25.355862pt;}
.ls78{letter-spacing:27.596249pt;}
.ls12{letter-spacing:31.750101pt;}
.ls71{letter-spacing:32.709657pt;}
.ws15d{word-spacing:-27.646726pt;}
.ws8e{word-spacing:-25.398370pt;}
.ws17d{word-spacing:-23.108767pt;}
.wsd7{word-spacing:-19.710836pt;}
.ws91{word-spacing:-19.651324pt;}
.ws187{word-spacing:-17.078506pt;}
.ws11e{word-spacing:-16.930830pt;}
.ws151{word-spacing:-16.758651pt;}
.ws180{word-spacing:-14.845540pt;}
.wsa9{word-spacing:-14.643629pt;}
.ws1a2{word-spacing:-12.378252pt;}
.ws144{word-spacing:-12.225739pt;}
.ws159{word-spacing:-12.148710pt;}
.ws12d{word-spacing:-11.317137pt;}
.ws65{word-spacing:-9.938308pt;}
.ws1a{word-spacing:-0.570400pt;}
.ws1a7{word-spacing:-0.569604pt;}
.ws8d{word-spacing:-0.565353pt;}
.ws90{word-spacing:-0.556851pt;}
.ws17c{word-spacing:-0.514874pt;}
.ws194{word-spacing:-0.058448pt;}
.ws4{word-spacing:-0.050478pt;}
.ws29{word-spacing:-0.045164pt;}
.ws26{word-spacing:-0.042508pt;}
.ws1a0{word-spacing:-0.038257pt;}
.ws2c{word-spacing:0.000000pt;}
.wsf3{word-spacing:0.540113pt;}
.ws1ab{word-spacing:0.578105pt;}
.ws1e{word-spacing:0.595639pt;}
.ws5b{word-spacing:0.650368pt;}
.ws13e{word-spacing:0.661260pt;}
.wse0{word-spacing:0.696595pt;}
.wsc8{word-spacing:0.767264pt;}
.ws56{word-spacing:0.952173pt;}
.ws15b{word-spacing:8.246500pt;}
.ws1c{word-spacing:8.480281pt;}
.ws107{word-spacing:8.544054pt;}
.ws108{word-spacing:8.884116pt;}
.ws5e{word-spacing:8.926624pt;}
.ws1d{word-spacing:8.934600pt;}
.ws1a8{word-spacing:9.266686pt;}
.ws20{word-spacing:9.287927pt;}
.ws1a4{word-spacing:9.521732pt;}
.ws64{word-spacing:9.734271pt;}
.ws51{word-spacing:9.798033pt;}
.ws58{word-spacing:9.861794pt;}
.ws66{word-spacing:9.904302pt;}
.ws93{word-spacing:9.944139pt;}
.ws149{word-spacing:10.116841pt;}
.ws109{word-spacing:10.159348pt;}
.wsab{word-spacing:10.196529pt;}
.ws10a{word-spacing:10.201856pt;}
.wsb4{word-spacing:10.247007pt;}
.ws15a{word-spacing:10.257116pt;}
.wsaa{word-spacing:10.297484pt;}
.ws98{word-spacing:10.347962pt;}
.ws1f{word-spacing:10.443866pt;}
.ws12e{word-spacing:10.448918pt;}
.ws184{word-spacing:10.499396pt;}
.ws158{word-spacing:10.575924pt;}
.ws12c{word-spacing:10.650829pt;}
.ws6f{word-spacing:10.701307pt;}
.ws4c{word-spacing:10.751785pt;}
.ws19d{word-spacing:10.754457pt;}
.ws85{word-spacing:10.802263pt;}
.ws76{word-spacing:10.852741pt;}
.wsa7{word-spacing:10.903219pt;}
.ws38{word-spacing:10.953697pt;}
.wsa6{word-spacing:11.004174pt;}
.ws10b{word-spacing:11.039258pt;}
.ws7a{word-spacing:11.054652pt;}
.wsf2{word-spacing:11.155608pt;}
.ws137{word-spacing:11.206086pt;}
.ws52{word-spacing:11.247546pt;}
.ws18b{word-spacing:11.307042pt;}
.ws4f{word-spacing:11.328311pt;}
.ws5d{word-spacing:11.349565pt;}
.ws10d{word-spacing:11.357520pt;}
.ws104{word-spacing:11.392073pt;}
.wse1{word-spacing:11.407997pt;}
.ws6a{word-spacing:11.458475pt;}
.ws178{word-spacing:11.477088pt;}
.ws128{word-spacing:11.508953pt;}
.ws3{word-spacing:11.519596pt;}
.ws72{word-spacing:11.559431pt;}
.ws68{word-spacing:11.562104pt;}
.ws63{word-spacing:11.604611pt;}
.ws77{word-spacing:11.609909pt;}
.ws50{word-spacing:11.634367pt;}
.ws185{word-spacing:11.647115pt;}
.ws2{word-spacing:11.647119pt;}
.ws13c{word-spacing:11.655339pt;}
.wsc1{word-spacing:11.660387pt;}
.ws1ad{word-spacing:11.689627pt;}
.wsba{word-spacing:11.710865pt;}
.wsf9{word-spacing:11.726008pt;}
.ws25{word-spacing:11.732134pt;}
.wsdb{word-spacing:11.761342pt;}
.ws78{word-spacing:11.811820pt;}
.ws14d{word-spacing:11.862298pt;}
.ws33{word-spacing:11.912776pt;}
.ws192{word-spacing:11.944673pt;}
.ws145{word-spacing:11.963254pt;}
.ws19e{word-spacing:11.999933pt;}
.ws4a{word-spacing:12.013732pt;}
.wse4{word-spacing:12.023827pt;}
.ws18f{word-spacing:12.029692pt;}
.wsf1{word-spacing:12.064210pt;}
.ws1aa{word-spacing:12.072196pt;}
.ws14a{word-spacing:12.157201pt;}
.ws18c{word-spacing:12.165165pt;}
.ws102{word-spacing:12.199720pt;}
.wsb3{word-spacing:12.215643pt;}
.ws9a{word-spacing:12.266121pt;}
.wsb5{word-spacing:12.284735pt;}
.ws186{word-spacing:12.284737pt;}
.wse9{word-spacing:12.316599pt;}
.wsb7{word-spacing:12.327243pt;}
.ws9b{word-spacing:12.367077pt;}
.ws1a3{word-spacing:12.369750pt;}
.ws54{word-spacing:12.412258pt;}
.ws55{word-spacing:12.454769pt;}
.ws2b{word-spacing:12.465190pt;}
.ws28{word-spacing:12.465209pt;}
.wse3{word-spacing:12.468033pt;}
.ws4b{word-spacing:12.518510pt;}
.ws5c{word-spacing:12.539781pt;}
.ws27{word-spacing:12.555517pt;}
.ws44{word-spacing:12.568988pt;}
.ws190{word-spacing:12.582289pt;}
.wsed{word-spacing:12.614418pt;}
.ws70{word-spacing:12.619466pt;}
.ws11b{word-spacing:12.669944pt;}
.ws17e{word-spacing:12.720422pt;}
.ws99{word-spacing:12.720423pt;}
.ws53{word-spacing:12.752320pt;}
.wsa5{word-spacing:12.821378pt;}
.ws10c{word-spacing:12.854339pt;}
.ws10e{word-spacing:12.871855pt;}
.ws1ac{word-spacing:12.875593pt;}
.ws126{word-spacing:12.922333pt;}
.ws181{word-spacing:12.927381pt;}
.ws196{word-spacing:12.960608pt;}
.ws62{word-spacing:12.964859pt;}
.ws182{word-spacing:12.972811pt;}
.ws67{word-spacing:12.977611pt;}
.ws4e{word-spacing:12.986113pt;}
.ws113{word-spacing:13.023289pt;}
.ws122{word-spacing:13.041373pt;}
.ws59{word-spacing:13.049874pt;}
.ws13a{word-spacing:13.073767pt;}
.ws9c{word-spacing:13.124245pt;}
.ws198{word-spacing:13.134890pt;}
.ws2a{word-spacing:13.142646pt;}
.wsaf{word-spacing:13.174723pt;}
.wsa8{word-spacing:13.225201pt;}
.ws86{word-spacing:13.275678pt;}
.wsb8{word-spacing:13.321108pt;}
.wsec{word-spacing:13.326156pt;}
.wse8{word-spacing:13.376634pt;}
.ws45{word-spacing:13.427112pt;}
.ws136{word-spacing:13.477590pt;}
.wsf6{word-spacing:13.523020pt;}
.wsc0{word-spacing:13.528068pt;}
.ws195{word-spacing:13.555716pt;}
.ws105{word-spacing:13.564218pt;}
.ws1a5{word-spacing:13.572719pt;}
.ws193{word-spacing:13.576970pt;}
.ws140{word-spacing:13.578546pt;}
.ws199{word-spacing:13.615227pt;}
.ws127{word-spacing:13.629023pt;}
.wse7{word-spacing:13.629029pt;}
.ws1ae{word-spacing:13.653484pt;}
.ws1a9{word-spacing:13.657735pt;}
.ws7c{word-spacing:13.679501pt;}
.ws197{word-spacing:13.687490pt;}
.ws69{word-spacing:13.729979pt;}
.ws103{word-spacing:13.772506pt;}
.ws179{word-spacing:13.780457pt;}
.ws173{word-spacing:13.780460pt;}
.ws147{word-spacing:13.830935pt;}
.wsa1{word-spacing:13.881413pt;}
.wsc4{word-spacing:13.931891pt;}
.wsc5{word-spacing:13.982364pt;}
.wsdc{word-spacing:13.982368pt;}
.ws3e{word-spacing:14.032846pt;}
.ws4d{word-spacing:14.083324pt;}
.ws14f{word-spacing:14.133802pt;}
.wsc7{word-spacing:14.184280pt;}
.wsa0{word-spacing:14.234758pt;}
.ws157{word-spacing:14.285236pt;}
.ws3a{word-spacing:14.335714pt;}
.wsb6{word-spacing:14.367614pt;}
.ws32{word-spacing:14.386191pt;}
.ws3f{word-spacing:14.436669pt;}
.ws73{word-spacing:14.487147pt;}
.ws156{word-spacing:14.517433pt;}
.ws1{word-spacing:14.537625pt;}
.ws176{word-spacing:14.580153pt;}
.wsae{word-spacing:14.588103pt;}
.ws177{word-spacing:14.622660pt;}
.wsb0{word-spacing:14.638578pt;}
.ws48{word-spacing:14.638581pt;}
.ws106{word-spacing:14.665168pt;}
.ws96{word-spacing:14.678963pt;}
.ws18a{word-spacing:14.719345pt;}
.ws49{word-spacing:14.739536pt;}
.wsb9{word-spacing:14.790014pt;}
.ws60{word-spacing:14.835199pt;}
.ws112{word-spacing:14.840492pt;}
.ws5f{word-spacing:14.877707pt;}
.ws119{word-spacing:14.890970pt;}
.ws88{word-spacing:14.941448pt;}
.ws11c{word-spacing:14.971735pt;}
.wsdd{word-spacing:14.983750pt;}
.wsde{word-spacing:14.991926pt;}
.wsb1{word-spacing:15.032307pt;}
.ws141{word-spacing:15.036884pt;}
.ws11a{word-spacing:15.037356pt;}
.wsa3{word-spacing:15.042404pt;}
.ws14c{word-spacing:15.092881pt;}
.wse5{word-spacing:15.143359pt;}
.wsc9{word-spacing:15.193837pt;}
.ws95{word-spacing:15.244315pt;}
.ws13d{word-spacing:15.294793pt;}
.ws61{word-spacing:15.302784pt;}
.wsf4{word-spacing:15.345271pt;}
.ws125{word-spacing:15.345292pt;}
.wsbe{word-spacing:15.355687pt;}
.ws35{word-spacing:15.395749pt;}
.ws14b{word-spacing:15.408821pt;}
.ws153{word-spacing:15.415937pt;}
.ws89{word-spacing:15.446227pt;}
.wsda{word-spacing:15.547182pt;}
.ws36{word-spacing:15.648138pt;}
.wsb2{word-spacing:15.698616pt;}
.wsd8{word-spacing:15.749094pt;}
.ws39{word-spacing:15.769285pt;}
.wsbd{word-spacing:15.789476pt;}
.wsc2{word-spacing:15.799572pt;}
.ws11d{word-spacing:15.850049pt;}
.ws11f{word-spacing:15.851134pt;}
.ws83{word-spacing:15.855097pt;}
.ws191{word-spacing:15.855385pt;}
.ws82{word-spacing:15.885384pt;}
.ws101{word-spacing:15.897892pt;}
.ws37{word-spacing:16.001483pt;}
.ws133{word-spacing:16.102439pt;}
.ws146{word-spacing:16.152917pt;}
.ws17f{word-spacing:16.157969pt;}
.ws13f{word-spacing:16.203395pt;}
.ws124{word-spacing:16.237954pt;}
.ws152{word-spacing:16.304350pt;}
.ws41{word-spacing:16.354828pt;}
.ws94{word-spacing:16.450736pt;}
.ws175{word-spacing:16.455784pt;}
.ws123{word-spacing:16.493001pt;}
.ws114{word-spacing:16.506262pt;}
.ws134{word-spacing:16.556740pt;}
.ws97{word-spacing:16.607217pt;}
.ws7e{word-spacing:16.708173pt;}
.ws7b{word-spacing:16.758651pt;}
.ws13b{word-spacing:16.809129pt;}
.ws10f{word-spacing:16.859607pt;}
.ws21{word-spacing:16.949919pt;}
.ws9d{word-spacing:16.960562pt;}
.ws84{word-spacing:17.008367pt;}
.ws117{word-spacing:17.061518pt;}
.wsdf{word-spacing:17.111996pt;}
.ws19a{word-spacing:17.130617pt;}
.ws12a{word-spacing:17.162471pt;}
.ws129{word-spacing:17.162474pt;}
.ws131{word-spacing:17.212952pt;}
.wsbc{word-spacing:17.263430pt;}
.wsac{word-spacing:17.364385pt;}
.ws3c{word-spacing:17.389624pt;}
.ws7f{word-spacing:17.465341pt;}
.wsf5{word-spacing:17.515819pt;}
.ws9f{word-spacing:17.566297pt;}
.ws87{word-spacing:17.616775pt;}
.ws92{word-spacing:17.667253pt;}
.ws42{word-spacing:17.717730pt;}
.ws57{word-spacing:17.725725pt;}
.ws170{word-spacing:17.742969pt;}
.wsf7{word-spacing:17.818686pt;}
.wsf0{word-spacing:17.919642pt;}
.wseb{word-spacing:17.970120pt;}
.ws22{word-spacing:17.980215pt;}
.wsfb{word-spacing:18.020598pt;}
.wsee{word-spacing:18.121553pt;}
.wsfa{word-spacing:18.172030pt;}
.ws3d{word-spacing:18.172031pt;}
.ws18e{word-spacing:18.235818pt;}
.wsa4{word-spacing:18.272987pt;}
.ws43{word-spacing:18.373943pt;}
.ws121{word-spacing:18.376093pt;}
.wsd6{word-spacing:18.469610pt;}
.ws143{word-spacing:18.474898pt;}
.ws19c{word-spacing:18.524870pt;}
.ws188{word-spacing:18.525376pt;}
.wsc3{word-spacing:18.575854pt;}
.ws8b{word-spacing:18.618387pt;}
.ws34{word-spacing:18.626332pt;}
.wsff{word-spacing:18.676810pt;}
.ws111{word-spacing:18.727288pt;}
.ws40{word-spacing:18.777766pt;}
.ws1a1{word-spacing:18.788415pt;}
.ws71{word-spacing:18.828243pt;}
.wsbb{word-spacing:18.893865pt;}
.ws5{word-spacing:18.909008pt;}
.ws154{word-spacing:18.929199pt;}
.ws115{word-spacing:19.080633pt;}
.ws5a{word-spacing:19.175248pt;}
.wsad{word-spacing:19.181589pt;}
.ws9{word-spacing:19.232066pt;}
.wsfe{word-spacing:19.282544pt;}
.ws14e{word-spacing:19.333022pt;}
.ws9e{word-spacing:19.368357pt;}
.ws19f{word-spacing:19.426034pt;}
.ws3b{word-spacing:19.433978pt;}
.ws79{word-spacing:19.484456pt;}
.ws0{word-spacing:19.548131pt;}
.ws8f{word-spacing:19.553554pt;}
.ws8{word-spacing:19.600555pt;}
.ws16e{word-spacing:19.656080pt;}
.ws6e{word-spacing:19.736845pt;}
.ws47{word-spacing:19.837801pt;}
.wsd4{word-spacing:19.957381pt;}
.ws168{word-spacing:19.969043pt;}
.ws132{word-spacing:20.039712pt;}
.ws8a{word-spacing:20.046647pt;}
.ws167{word-spacing:20.054856pt;}
.ws120{word-spacing:20.131663pt;}
.ws174{word-spacing:20.140668pt;}
.wsd1{word-spacing:20.216678pt;}
.wscf{word-spacing:20.233677pt;}
.wsd9{word-spacing:20.241624pt;}
.wsd2{word-spacing:20.641756pt;}
.ws75{word-spacing:20.645447pt;}
.ws12b{word-spacing:20.695924pt;}
.ws172{word-spacing:20.746402pt;}
.wsd3{word-spacing:20.752276pt;}
.wsd0{word-spacing:20.769279pt;}
.ws12f{word-spacing:20.847358pt;}
.ws19b{word-spacing:20.896802pt;}
.ws19{word-spacing:20.933170pt;}
.ws138{word-spacing:20.998792pt;}
.wsef{word-spacing:21.099747pt;}
.ws81{word-spacing:21.251181pt;}
.ws183{word-spacing:21.503570pt;}
.ws130{word-spacing:21.554048pt;}
.wse2{word-spacing:21.604526pt;}
.ws166{word-spacing:21.649956pt;}
.ws6c{word-spacing:21.655004pt;}
.wsfd{word-spacing:21.705482pt;}
.ws6b{word-spacing:21.755960pt;}
.ws7d{word-spacing:21.907393pt;}
.ws17b{word-spacing:21.922531pt;}
.ws6d{word-spacing:21.922537pt;}
.ws155{word-spacing:22.008349pt;}
.ws16f{word-spacing:22.109305pt;}
.wsea{word-spacing:22.159783pt;}
.ws16d{word-spacing:22.174926pt;}
.ws46{word-spacing:22.210260pt;}
.ws171{word-spacing:22.225404pt;}
.ws110{word-spacing:22.260738pt;}
.wsa2{word-spacing:22.311216pt;}
.ws31{word-spacing:22.316264pt;}
.ws189{word-spacing:22.462650pt;}
.ws150{word-spacing:22.513128pt;}
.wsc6{word-spacing:22.563605pt;}
.wsfc{word-spacing:22.614083pt;}
.ws148{word-spacing:22.715039pt;}
.wsbf{word-spacing:22.765517pt;}
.wsca{word-spacing:22.916950pt;}
.ws116{word-spacing:22.967428pt;}
.ws23{word-spacing:22.997715pt;}
.wsf8{word-spacing:23.017906pt;}
.ws80{word-spacing:23.038097pt;}
.ws118{word-spacing:23.073432pt;}
.ws139{word-spacing:23.169340pt;}
.wsb{word-spacing:23.234961pt;}
.wsd5{word-spacing:23.272984pt;}
.ws30{word-spacing:23.356108pt;}
.wse6{word-spacing:23.371251pt;}
.ws135{word-spacing:23.391442pt;}
.ws16a{word-spacing:23.416681pt;}
.ws142{word-spacing:23.472207pt;}
.ws169{word-spacing:23.603449pt;}
.ws165{word-spacing:23.618593pt;}
.ws74{word-spacing:23.674118pt;}
.ws2e{word-spacing:23.724596pt;}
.ws164{word-spacing:23.729644pt;}
.wsa{word-spacing:23.749835pt;}
.ws2f{word-spacing:23.759931pt;}
.ws10{word-spacing:23.946699pt;}
.ws100{word-spacing:23.976986pt;}
.ws16b{word-spacing:24.047655pt;}
.ws160{word-spacing:24.214232pt;}
.ws1b{word-spacing:24.582728pt;}
.ws1a6{word-spacing:24.594975pt;}
.ws12{word-spacing:24.683676pt;}
.ws18{word-spacing:24.759393pt;}
.wscc{word-spacing:24.760755pt;}
.wscb{word-spacing:24.837269pt;}
.ws16{word-spacing:25.072355pt;}
.wsce{word-spacing:25.156077pt;}
.ws8c{word-spacing:25.292102pt;}
.wscd{word-spacing:25.394120pt;}
.ws24{word-spacing:25.662946pt;}
.ws2d{word-spacing:26.218203pt;}
.ws15c{word-spacing:26.238394pt;}
.ws15e{word-spacing:26.364589pt;}
.ws6{word-spacing:26.808794pt;}
.ws7{word-spacing:27.707300pt;}
.ws17{word-spacing:28.429133pt;}
.wsd{word-spacing:29.327639pt;}
.ws162{word-spacing:29.423547pt;}
.ws163{word-spacing:29.504312pt;}
.ws11{word-spacing:29.534599pt;}
.wse{word-spacing:29.585076pt;}
.ws15{word-spacing:29.615363pt;}
.ws13{word-spacing:29.630506pt;}
.ws161{word-spacing:29.665841pt;}
.ws14{word-spacing:29.696128pt;}
.ws15f{word-spacing:29.716319pt;}
.ws16c{word-spacing:29.726414pt;}
.ws17a{word-spacing:29.781940pt;}
.wsc{word-spacing:29.812227pt;}
.ws18d{word-spacing:29.925435pt;}
.wsf{word-spacing:29.988899pt;}
._24{margin-left:-27.783044pt;}
._23{margin-left:-26.793640pt;}
._19{margin-left:-24.880281pt;}
._27{margin-left:-23.421729pt;}
._26{margin-left:-22.260738pt;}
._1a{margin-left:-19.344732pt;}
._1b{margin-left:-18.267185pt;}
._1e{margin-left:-16.493001pt;}
._1c{margin-left:-15.374503pt;}
._22{margin-left:-14.279342pt;}
._21{margin-left:-13.323467pt;}
._1f{margin-left:-11.681567pt;}
._16{margin-left:-9.728326pt;}
._3{margin-left:-4.643964pt;}
._4{margin-left:-3.432495pt;}
._1{margin-left:-2.008502pt;}
._0{margin-left:-1.036120pt;}
._6{width:0.959079pt;}
._18{width:1.987242pt;}
._20{width:3.748490pt;}
._9{width:5.268339pt;}
._a{width:6.659388pt;}
._14{width:7.789521pt;}
._13{width:9.452657pt;}
._f{width:10.645556pt;}
._b{width:11.594086pt;}
._e{width:13.259793pt;}
._15{width:14.303876pt;}
._d{width:15.353257pt;}
._10{width:16.594044pt;}
._11{width:18.251763pt;}
._1d{width:19.511050pt;}
._2{width:20.443535pt;}
._17{width:21.976513pt;}
._12{width:23.265022pt;}
._5{width:24.936065pt;}
._8{width:26.551357pt;}
._c{width:28.004603pt;}
._7{width:29.731462pt;}
._25{width:31.781670pt;}
._28{width:51.747897pt;}
.fs7{font-size:28.334399pt;}
.fs6{font-size:30.106132pt;}
.fs2{font-size:33.648534pt;}
.fs3{font-size:42.507734pt;}
.fs5{font-size:45.163732pt;}
.fs1{font-size:50.477865pt;}
.fs8{font-size:53.133865pt;}
.fs4{font-size:58.447998pt;}
.fs0{font-size:69.074666pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:67.157016pt;}
.y5e{bottom:67.192953pt;}
.ydd{bottom:67.194153pt;}
.y12d{bottom:67.195343pt;}
.y8a{bottom:67.196544pt;}
.y180{bottom:67.197744pt;}
.yb9{bottom:67.198802pt;}
.y168{bottom:67.200002pt;}
.y25{bottom:67.875694pt;}
.y200{bottom:69.218469pt;}
.y167{bottom:71.886668pt;}
.y5d{bottom:79.817749pt;}
.ydc{bottom:79.818950pt;}
.y12c{bottom:79.820140pt;}
.y89{bottom:79.821340pt;}
.y17f{bottom:79.822540pt;}
.yb8{bottom:79.823598pt;}
.y24{bottom:81.108668pt;}
.y1ff{bottom:81.535085pt;}
.y100{bottom:83.108022pt;}
.yb7{bottom:84.510269pt;}
.y23{bottom:86.173197pt;}
.yb6{bottom:92.068136pt;}
.y5c{bottom:92.442546pt;}
.ydb{bottom:92.443746pt;}
.y12b{bottom:92.444936pt;}
.y88{bottom:92.446137pt;}
.y17e{bottom:92.447337pt;}
.y1fe{bottom:93.777312pt;}
.y17d{bottom:97.133870pt;}
.yff{bottom:99.059027pt;}
.y1e9{bottom:99.272211pt;}
.y166{bottom:99.357675pt;}
.y1a5{bottom:104.691732pt;}
.yb5{bottom:104.692932pt;}
.y5b{bottom:105.067342pt;}
.yda{bottom:105.068543pt;}
.y12a{bottom:105.069733pt;}
.y87{bottom:105.070933pt;}
.y1fd{bottom:106.093928pt;}
.y22{bottom:107.719820pt;}
.yb4{bottom:109.455068pt;}
.y86{bottom:109.757467pt;}
.yfe{bottom:115.010033pt;}
.y1e8{bottom:115.223216pt;}
.y165{bottom:115.308680pt;}
.y146{bottom:117.314138pt;}
.y1a4{bottom:117.316528pt;}
.y5a{bottom:117.692139pt;}
.yd9{bottom:117.693339pt;}
.y129{bottom:117.694529pt;}
.y1fc{bottom:118.336155pt;}
.y21{bottom:121.020538pt;}
.y1a3{bottom:122.078796pt;}
.y128{bottom:122.381063pt;}
.y127{bottom:129.934286pt;}
.y145{bottom:129.938934pt;}
.y59{bottom:130.316935pt;}
.yd8{bottom:130.318136pt;}
.y1fb{bottom:130.652771pt;}
.yfd{bottom:130.885322pt;}
.y17c{bottom:130.900673pt;}
.y1e7{bottom:131.174222pt;}
.y164{bottom:131.259686pt;}
.yd7{bottom:135.004669pt;}
.y126{bottom:142.559082pt;}
.y144{bottom:142.563731pt;}
.y58{bottom:142.941732pt;}
.y1fa{bottom:142.969387pt;}
.y1c3{bottom:146.815652pt;}
.yfc{bottom:146.836328pt;}
.y17b{bottom:146.851679pt;}
.y85{bottom:146.864094pt;}
.y1e6{bottom:147.125228pt;}
.y163{bottom:147.210692pt;}
.yb3{bottom:147.221822pt;}
.y143{bottom:147.325999pt;}
.y1a2{bottom:147.445204pt;}
.y57{bottom:147.628398pt;}
.y1c4{bottom:152.466136pt;}
.y56{bottom:155.179220pt;}
.y125{bottom:155.183879pt;}
.y1f9{bottom:155.211614pt;}
.y1c2{bottom:162.766658pt;}
.yfb{bottom:162.787333pt;}
.y17a{bottom:162.802685pt;}
.y84{bottom:162.815100pt;}
.y1e5{bottom:163.076234pt;}
.y162{bottom:163.161698pt;}
.yb2{bottom:163.172828pt;}
.yd6{bottom:163.191683pt;}
.y1a1{bottom:163.396210pt;}
.y1f8{bottom:167.528230pt;}
.y55{bottom:167.804017pt;}
.y124{bottom:167.808675pt;}
.y1e{bottom:178.088528pt;}
.y1c1{bottom:178.717663pt;}
.yfa{bottom:178.738339pt;}
.y179{bottom:178.753691pt;}
.y83{bottom:178.766106pt;}
.y142{bottom:178.770328pt;}
.y1e4{bottom:179.027240pt;}
.y161{bottom:179.036986pt;}
.yb1{bottom:179.048116pt;}
.yd5{bottom:179.066972pt;}
.y1a0{bottom:179.347216pt;}
.y1f7{bottom:179.770457pt;}
.y54{bottom:180.428813pt;}
.y123{bottom:180.433472pt;}
.y1f6{bottom:192.087073pt;}
.y53{bottom:193.053610pt;}
.y122{bottom:193.058268pt;}
.y1d{bottom:194.039534pt;}
.y1c0{bottom:194.668669pt;}
.yf9{bottom:194.689345pt;}
.y178{bottom:194.704697pt;}
.y13f{bottom:194.708804pt;}
.y82{bottom:194.717112pt;}
.y141{bottom:194.721334pt;}
.y1e3{bottom:194.902528pt;}
.y160{bottom:194.987992pt;}
.yb0{bottom:194.999122pt;}
.yd4{bottom:195.017978pt;}
.y19f{bottom:195.298222pt;}
.y121{bottom:197.744934pt;}
.y140{bottom:200.314941pt;}
.y1f5{bottom:204.329300pt;}
.y52{bottom:205.678406pt;}
.y1c{bottom:209.990540pt;}
.y1bf{bottom:210.619675pt;}
.yf8{bottom:210.640351pt;}
.y177{bottom:210.655703pt;}
.y13e{bottom:210.659809pt;}
.y81{bottom:210.668118pt;}
.y1e2{bottom:210.853534pt;}
.y15f{bottom:210.938998pt;}
.yaf{bottom:210.950128pt;}
.yd3{bottom:210.968984pt;}
.y19e{bottom:211.249228pt;}
.y1f4{bottom:216.645916pt;}
.y51{bottom:218.303202pt;}
.y1be{bottom:226.570681pt;}
.yf7{bottom:226.591357pt;}
.y176{bottom:226.606708pt;}
.y120{bottom:226.610815pt;}
.y80{bottom:226.619124pt;}
.y1e1{bottom:226.804540pt;}
.y15e{bottom:226.890004pt;}
.yae{bottom:226.901134pt;}
.yd2{bottom:226.919989pt;}
.y19d{bottom:227.200234pt;}
.y1f3{bottom:228.888143pt;}
.y50{bottom:230.927999pt;}
.y1b{bottom:241.889730pt;}
.y1bd{bottom:242.521687pt;}
.yf6{bottom:242.542363pt;}
.y175{bottom:242.557714pt;}
.y11f{bottom:242.561821pt;}
.y7f{bottom:242.570129pt;}
.y1e0{bottom:242.755546pt;}
.y15d{bottom:242.841010pt;}
.yad{bottom:242.852140pt;}
.yd1{bottom:242.870995pt;}
.y19c{bottom:243.075522pt;}
.y4f{bottom:243.552795pt;}
.y4e{bottom:248.239339pt;}
.y4d{bottom:255.792542pt;}
.y1bc{bottom:258.396975pt;}
.yf5{bottom:258.417651pt;}
.y174{bottom:258.433003pt;}
.y11e{bottom:258.437110pt;}
.y1df{bottom:258.706551pt;}
.y15c{bottom:258.792016pt;}
.yac{bottom:258.803145pt;}
.yd0{bottom:258.822001pt;}
.y19b{bottom:259.026528pt;}
.y1f2{bottom:259.502401pt;}
.y4c{bottom:268.417338pt;}
.y1bb{bottom:274.347981pt;}
.yf4{bottom:274.368657pt;}
.y173{bottom:274.384009pt;}
.y11d{bottom:274.388115pt;}
.y7e{bottom:274.393738pt;}
.y1de{bottom:274.657557pt;}
.y15b{bottom:274.743021pt;}
.y19a{bottom:274.977534pt;}
.y4b{bottom:281.042135pt;}
.y1a{bottom:289.633763pt;}
.y1ba{bottom:290.298987pt;}
.yf3{bottom:290.319663pt;}
.yce{bottom:290.322463pt;}
.yab{bottom:290.326570pt;}
.y172{bottom:290.335014pt;}
.y11c{bottom:290.339121pt;}
.y1dd{bottom:290.608563pt;}
.y15a{bottom:290.694027pt;}
.y199{bottom:290.928540pt;}
.y4a{bottom:293.666931pt;}
.ycf{bottom:295.936930pt;}
.y1b9{bottom:306.249993pt;}
.yf2{bottom:306.270669pt;}
.ycd{bottom:306.273469pt;}
.yaa{bottom:306.277576pt;}
.y171{bottom:306.286020pt;}
.y11b{bottom:306.290127pt;}
.y49{bottom:306.291728pt;}
.y1dc{bottom:306.559569pt;}
.y159{bottom:306.569316pt;}
.y198{bottom:306.879545pt;}
.y1f1{bottom:307.982479pt;}
.y48{bottom:318.916524pt;}
.y1f0{bottom:320.299096pt;}
.y19{bottom:321.535774pt;}
.y1b8{bottom:322.200999pt;}
.y7d{bottom:322.203677pt;}
.yf1{bottom:322.221674pt;}
.ya9{bottom:322.228582pt;}
.y170{bottom:322.237026pt;}
.y11a{bottom:322.241133pt;}
.y1db{bottom:322.434857pt;}
.y158{bottom:322.520322pt;}
.y197{bottom:322.830551pt;}
.y47{bottom:323.603068pt;}
.y1ef{bottom:332.541322pt;}
.y18{bottom:337.486780pt;}
.y1b7{bottom:338.152004pt;}
.y7c{bottom:338.154683pt;}
.y13d{bottom:338.162971pt;}
.y117{bottom:338.164352pt;}
.yf0{bottom:338.172680pt;}
.ycc{bottom:338.175481pt;}
.ya8{bottom:338.179588pt;}
.y16f{bottom:338.188032pt;}
.y119{bottom:338.192139pt;}
.y1da{bottom:338.385863pt;}
.y157{bottom:338.471327pt;}
.y196{bottom:338.781557pt;}
.y118{bottom:343.785726pt;}
.y1ee{bottom:344.857938pt;}
.y17{bottom:353.437786pt;}
.y1b6{bottom:354.103010pt;}
.y7b{bottom:354.105689pt;}
.y13c{bottom:354.113977pt;}
.y116{bottom:354.115357pt;}
.yef{bottom:354.123686pt;}
.ycb{bottom:354.126487pt;}
.ya7{bottom:354.130594pt;}
.y16e{bottom:354.139038pt;}
.y1d9{bottom:354.336869pt;}
.y156{bottom:354.422333pt;}
.y195{bottom:354.732563pt;}
.y16{bottom:369.388792pt;}
.y1b5{bottom:370.054016pt;}
.y7a{bottom:370.056695pt;}
.y13b{bottom:370.064983pt;}
.y115{bottom:370.066363pt;}
.yee{bottom:370.074692pt;}
.y46{bottom:370.080220pt;}
.y16d{bottom:370.090044pt;}
.y1d8{bottom:370.287875pt;}
.y155{bottom:370.373339pt;}
.y194{bottom:370.607851pt;}
.y1ed{bottom:382.349761pt;}
.y15{bottom:385.339798pt;}
.y1b4{bottom:385.929305pt;}
.y79{bottom:385.931983pt;}
.y13a{bottom:385.940272pt;}
.y114{bottom:385.941652pt;}
.yed{bottom:385.949980pt;}
.yca{bottom:385.952781pt;}
.y45{bottom:385.955508pt;}
.ya6{bottom:385.956888pt;}
.y16c{bottom:385.965332pt;}
.y1d7{bottom:386.238881pt;}
.y193{bottom:386.558857pt;}
.y1ec{bottom:394.666377pt;}
.y14{bottom:401.215086pt;}
.y1b3{bottom:401.880310pt;}
.y78{bottom:401.882989pt;}
.y139{bottom:401.891277pt;}
.y113{bottom:401.892658pt;}
.y154{bottom:401.896764pt;}
.yec{bottom:401.900986pt;}
.yc9{bottom:401.903787pt;}
.y44{bottom:401.906514pt;}
.ya5{bottom:401.907894pt;}
.y192{bottom:402.509863pt;}
.y1eb{bottom:406.908604pt;}
.y13{bottom:417.166092pt;}
.y1b2{bottom:417.831316pt;}
.y77{bottom:417.833995pt;}
.y138{bottom:417.842283pt;}
.y112{bottom:417.843663pt;}
.y153{bottom:417.847770pt;}
.yeb{bottom:417.851992pt;}
.y43{bottom:417.857520pt;}
.ya4{bottom:417.858900pt;}
.y16b{bottom:417.864543pt;}
.y1d6{bottom:418.216607pt;}
.y191{bottom:418.460869pt;}
.y1ea{bottom:419.225220pt;}
.y21f{bottom:419.340320pt;}
.y21e{bottom:431.582546pt;}
.y12{bottom:433.117098pt;}
.y1b1{bottom:433.782322pt;}
.y76{bottom:433.785001pt;}
.y137{bottom:433.793289pt;}
.y111{bottom:433.794669pt;}
.y152{bottom:433.798776pt;}
.yea{bottom:433.802998pt;}
.yc8{bottom:433.805799pt;}
.y42{bottom:433.808526pt;}
.ya3{bottom:433.809906pt;}
.y1d5{bottom:434.091895pt;}
.y190{bottom:434.411875pt;}
.y11{bottom:449.068104pt;}
.y1b0{bottom:449.733328pt;}
.y75{bottom:449.736007pt;}
.y136{bottom:449.744295pt;}
.y110{bottom:449.745675pt;}
.ye9{bottom:449.754004pt;}
.yc7{bottom:449.756805pt;}
.y41{bottom:449.759531pt;}
.ya2{bottom:449.760912pt;}
.y16a{bottom:449.762332pt;}
.y1d4{bottom:450.042901pt;}
.y18f{bottom:450.362881pt;}
.y21d{bottom:460.158369pt;}
.y10{bottom:465.019110pt;}
.y1af{bottom:465.684334pt;}
.y74{bottom:465.687013pt;}
.y135{bottom:465.695301pt;}
.y10f{bottom:465.696681pt;}
.y151{bottom:465.700788pt;}
.ye8{bottom:465.705010pt;}
.yc6{bottom:465.707811pt;}
.y40{bottom:465.710537pt;}
.ya1{bottom:465.711917pt;}
.y169{bottom:465.713338pt;}
.y1d3{bottom:465.993907pt;}
.y18e{bottom:466.313886pt;}
.y21c{bottom:472.474985pt;}
.yf{bottom:480.970115pt;}
.y1ae{bottom:481.635339pt;}
.y73{bottom:481.638018pt;}
.y9e{bottom:481.645048pt;}
.y134{bottom:481.646306pt;}
.y10e{bottom:481.647687pt;}
.y150{bottom:481.651793pt;}
.ye7{bottom:481.656015pt;}
.yc5{bottom:481.658816pt;}
.y3f{bottom:481.661543pt;}
.ya0{bottom:481.662923pt;}
.y18d{bottom:482.264892pt;}
.y21b{bottom:484.717212pt;}
.y9f{bottom:487.256551pt;}
.ye{bottom:496.921121pt;}
.y21a{bottom:497.033828pt;}
.y1ad{bottom:497.586345pt;}
.y72{bottom:497.589024pt;}
.y3c{bottom:497.591832pt;}
.y9d{bottom:497.596054pt;}
.y133{bottom:497.597312pt;}
.y10d{bottom:497.598692pt;}
.y14f{bottom:497.602799pt;}
.ye6{bottom:497.607021pt;}
.yc4{bottom:497.609822pt;}
.y3e{bottom:497.612549pt;}
.y1d2{bottom:497.895919pt;}
.y18c{bottom:498.140181pt;}
.y3d{bottom:503.206258pt;}
.y219{bottom:509.276055pt;}
.yd{bottom:512.872127pt;}
.y1ac{bottom:513.461634pt;}
.y71{bottom:513.464313pt;}
.y3b{bottom:513.467121pt;}
.y9c{bottom:513.471343pt;}
.y132{bottom:513.472601pt;}
.y10c{bottom:513.473981pt;}
.y14e{bottom:513.478088pt;}
.ye5{bottom:513.482310pt;}
.yc3{bottom:513.485111pt;}
.y1d1{bottom:513.846925pt;}
.y18b{bottom:514.091187pt;}
.y218{bottom:521.592671pt;}
.yc{bottom:528.747416pt;}
.y1ab{bottom:529.412640pt;}
.y70{bottom:529.415319pt;}
.y3a{bottom:529.418127pt;}
.y9b{bottom:529.422349pt;}
.y131{bottom:529.423607pt;}
.y10b{bottom:529.424987pt;}
.y14d{bottom:529.429094pt;}
.ye4{bottom:529.433315pt;}
.yc2{bottom:529.436117pt;}
.y1d0{bottom:529.797930pt;}
.y217{bottom:533.834898pt;}
.yb{bottom:544.698421pt;}
.y1aa{bottom:545.363645pt;}
.y6f{bottom:545.366324pt;}
.y39{bottom:545.369132pt;}
.y189{bottom:545.371811pt;}
.y9a{bottom:545.373354pt;}
.y130{bottom:545.374612pt;}
.y10a{bottom:545.375993pt;}
.y14c{bottom:545.380099pt;}
.ye3{bottom:545.384321pt;}
.y216{bottom:546.151514pt;}
.y18a{bottom:550.979451pt;}
.y215{bottom:558.393741pt;}
.ya{bottom:560.649427pt;}
.y1a9{bottom:561.314651pt;}
.y6e{bottom:561.317330pt;}
.y38{bottom:561.320138pt;}
.y1cf{bottom:561.321356pt;}
.y188{bottom:561.322817pt;}
.y99{bottom:561.324360pt;}
.y12f{bottom:561.325618pt;}
.y109{bottom:561.326998pt;}
.y14b{bottom:561.331105pt;}
.yc1{bottom:561.335327pt;}
.y214{bottom:570.710357pt;}
.y9{bottom:576.600433pt;}
.y1a8{bottom:577.265657pt;}
.y6d{bottom:577.268336pt;}
.y37{bottom:577.271144pt;}
.y1ce{bottom:577.272361pt;}
.y187{bottom:577.273823pt;}
.y98{bottom:577.275366pt;}
.y12e{bottom:577.276624pt;}
.y108{bottom:577.278004pt;}
.y14a{bottom:577.282111pt;}
.y213{bottom:583.026973pt;}
.y8{bottom:592.551439pt;}
.y1a7{bottom:593.216663pt;}
.y6c{bottom:593.219342pt;}
.y36{bottom:593.222150pt;}
.y1cd{bottom:593.223367pt;}
.y186{bottom:593.224829pt;}
.y97{bottom:593.226372pt;}
.yc0{bottom:593.227630pt;}
.y107{bottom:593.229010pt;}
.y149{bottom:593.233117pt;}
.ye2{bottom:593.234538pt;}
.y212{bottom:595.269200pt;}
.y211{bottom:607.585816pt;}
.y7{bottom:608.502445pt;}
.y1a6{bottom:609.167669pt;}
.y6b{bottom:609.170348pt;}
.y35{bottom:609.173156pt;}
.y1cc{bottom:609.174373pt;}
.y185{bottom:609.175835pt;}
.y96{bottom:609.177378pt;}
.ybf{bottom:609.178636pt;}
.y106{bottom:609.180016pt;}
.y148{bottom:609.184123pt;}
.y210{bottom:619.828043pt;}
.y6{bottom:624.453451pt;}
.ye1{bottom:625.118675pt;}
.y6a{bottom:625.121354pt;}
.y34{bottom:625.124162pt;}
.y1cb{bottom:625.125379pt;}
.y184{bottom:625.126840pt;}
.y95{bottom:625.128383pt;}
.ybe{bottom:625.129642pt;}
.y105{bottom:625.131022pt;}
.y20f{bottom:632.144659pt;}
.ye0{bottom:640.993963pt;}
.y69{bottom:640.996642pt;}
.y33{bottom:640.999450pt;}
.y1ca{bottom:641.000667pt;}
.y183{bottom:641.002129pt;}
.y94{bottom:641.003672pt;}
.ybd{bottom:641.004930pt;}
.y104{bottom:641.006310pt;}
.y147{bottom:641.007731pt;}
.y20e{bottom:644.386886pt;}
.y20d{bottom:656.703502pt;}
.ydf{bottom:656.944969pt;}
.y68{bottom:656.947648pt;}
.y32{bottom:656.950456pt;}
.y182{bottom:656.953135pt;}
.y93{bottom:656.954678pt;}
.ybc{bottom:656.955936pt;}
.y103{bottom:656.957316pt;}
.y5{bottom:668.900675pt;}
.y20c{bottom:668.945729pt;}
.yde{bottom:672.895975pt;}
.y67{bottom:672.898654pt;}
.y31{bottom:672.901462pt;}
.y1c9{bottom:672.902679pt;}
.y181{bottom:672.904141pt;}
.y92{bottom:672.905684pt;}
.ybb{bottom:672.906942pt;}
.y102{bottom:678.500651pt;}
.y4{bottom:680.088013pt;}
.y20b{bottom:681.262345pt;}
.y8f{bottom:688.846981pt;}
.y66{bottom:688.849660pt;}
.y30{bottom:688.852468pt;}
.y1c8{bottom:688.853685pt;}
.y91{bottom:688.856689pt;}
.y20a{bottom:693.578961pt;}
.y90{bottom:694.450277pt;}
.y8e{bottom:704.797986pt;}
.y65{bottom:704.800665pt;}
.y2f{bottom:704.803473pt;}
.y1c7{bottom:704.804691pt;}
.yba{bottom:704.806152pt;}
.y209{bottom:705.821188pt;}
.y2{bottom:714.330566pt;}
.y208{bottom:718.137804pt;}
.y3{bottom:719.924235pt;}
.y8d{bottom:720.748992pt;}
.y64{bottom:720.751671pt;}
.y2e{bottom:720.754479pt;}
.y1c6{bottom:720.755697pt;}
.y1c5{bottom:726.349447pt;}
.y207{bottom:730.380031pt;}
.y8c{bottom:736.699998pt;}
.y63{bottom:736.702677pt;}
.y2d{bottom:736.705485pt;}
.y206{bottom:742.696647pt;}
.y8b{bottom:752.651004pt;}
.y2b{bottom:752.652221pt;}
.y62{bottom:752.653683pt;}
.y1{bottom:752.806152pt;}
.y205{bottom:754.938873pt;}
.y2c{bottom:758.248698pt;}
.y204{bottom:767.255490pt;}
.y5f{bottom:768.526292pt;}
.y2a{bottom:768.527510pt;}
.y61{bottom:768.528971pt;}
.y60{bottom:774.198242pt;}
.y203{bottom:779.497716pt;}
.y27{bottom:784.477298pt;}
.y29{bottom:784.478516pt;}
.y28{bottom:790.072266pt;}
.y202{bottom:791.814332pt;}
.y26{bottom:800.428304pt;}
.y201{bottom:804.056559pt;}
.y20{bottom:823.108847pt;}
.y1f{bottom:835.351074pt;}
.hf{height:19.692407pt;}
.hd{height:20.923762pt;}
.he{height:23.385731pt;}
.h4{height:23.924108pt;}
.h6{height:28.650212pt;}
.h10{height:29.542875pt;}
.h5{height:29.967952pt;}
.hc{height:31.388794pt;}
.hb{height:32.608214pt;}
.h8{height:35.082116pt;}
.h3{height:35.889762pt;}
.h7{height:36.394540pt;}
.h11{height:37.990714pt;}
.ha{height:42.141007pt;}
.h9{height:45.682467pt;}
.h2{height:48.697640pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:62.362132pt;}
.xb{left:69.316533pt;}
.x1a{left:73.171600pt;}
.x8{left:77.480265pt;}
.x4{left:81.108668pt;}
.x3{left:83.001957pt;}
.x14{left:94.412537pt;}
.x15{left:104.768534pt;}
.xe{left:112.025197pt;}
.xf{left:121.020396pt;}
.x1d{left:129.108663pt;}
.x16{left:153.448802pt;}
.x2{left:159.042531pt;}
.x17{left:168.642537pt;}
.x7{left:188.447205pt;}
.x18{left:256.856669pt;}
.x12{left:266.532267pt;}
.x19{left:269.858134pt;}
.x9{left:303.949463pt;}
.x5{left:306.141602pt;}
.xa{left:313.247192pt;}
.xd{left:314.456665pt;}
.x6{left:317.102275pt;}
.x1e{left:393.373047pt;}
.x1f{left:406.223470pt;}
.x13{left:415.445597pt;}
.x10{left:431.697469pt;}
.x11{left:439.634521pt;}
.xc{left:467.980916pt;}
.x1b{left:502.147868pt;}
.x1c{left:514.393595pt;}
}




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