
    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_8293eb5948782754d44a55a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_f673ec792d131bec63093c26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_ed124dcc323f4eeface8e40b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_a09677dc4db154525ec8eb13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_a90ab12fc586b98b7b85f40d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a79d3bd148c207681271b086.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_af1e2e7d8ce1eb5382379691.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752930;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_212b1b47c3692ec1e6b0dcb0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_3019d86401ccf8e90d41945b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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_076f9d30cb77fcc21b2a93f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_7b399f5d588745636d3a52cf.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6c26d5801b3e7ea307a50c93.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_79264429827f7b58e0886915.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_c6714fbfd784fb3a94922f17.woff2')format("woff");}.fff{font-family:fff;line-height:0.998000;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_5485982440ddd82f373afd98.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.734000;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_f7d6951e55396c6e9ecfe3df.woff2')format("woff");}.ff11{font-family:ff11;line-height:3.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0aa781a641e5e7f0a0001746.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_83fd6c06cd5b8a4564e9df3c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.736000;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_c661cea4b590f14ea72ca036.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.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(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v14{vertical-align:-48.642000px;}
.v8{vertical-align:-14.970000px;}
.vf{vertical-align:-13.950000px;}
.v13{vertical-align:-12.246000px;}
.vb{vertical-align:-8.844000px;}
.v1{vertical-align:-6.126000px;}
.v4{vertical-align:-2.721806px;}
.v15{vertical-align:-1.363183px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:2.037201px;}
.v3{vertical-align:12.242194px;}
.vc{vertical-align:14.625315px;}
.v6{vertical-align:16.661817px;}
.v12{vertical-align:21.768000px;}
.v5{vertical-align:24.834000px;}
.v2{vertical-align:29.934000px;}
.v9{vertical-align:40.818000px;}
.ve{vertical-align:53.060194px;}
.v7{vertical-align:56.802000px;}
.vd{vertical-align:71.427315px;}
.va{vertical-align:97.956000px;}
.v11{vertical-align:121.437201px;}
.ls5{letter-spacing:-1.263600px;}
.ls9{letter-spacing:-1.200600px;}
.lsd{letter-spacing:-1.199985px;}
.ls43{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.359996px;}
.lsc{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.239997px;}
.lsa{letter-spacing:-0.239400px;}
.ls7{letter-spacing:-0.238497px;}
.ls6{letter-spacing:-0.237600px;}
.ls13{letter-spacing:-0.237598px;}
.ls47{letter-spacing:-0.214367px;}
.ls8{letter-spacing:-0.212372px;}
.ls2e{letter-spacing:-0.211976px;}
.lsb{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.048000px;}
.ls2b{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.114000px;}
.ls37{letter-spacing:0.132846px;}
.ls3a{letter-spacing:0.150000px;}
.ls2c{letter-spacing:0.192000px;}
.ls25{letter-spacing:0.259964px;}
.ls1c{letter-spacing:0.600000px;}
.ls20{letter-spacing:1.944000px;}
.ls2f{letter-spacing:2.352000px;}
.ls16{letter-spacing:2.688000px;}
.ls26{letter-spacing:2.694000px;}
.ls19{letter-spacing:2.700000px;}
.ls42{letter-spacing:2.750730px;}
.ls40{letter-spacing:2.904000px;}
.ls31{letter-spacing:3.036613px;}
.ls3d{letter-spacing:3.150564px;}
.ls50{letter-spacing:3.743953px;}
.ls4e{letter-spacing:4.766340px;}
.ls4f{letter-spacing:5.102336px;}
.ls4d{letter-spacing:5.107136px;}
.ls3{letter-spacing:9.446282px;}
.ls46{letter-spacing:10.108674px;}
.ls49{letter-spacing:10.319871px;}
.ls2{letter-spacing:10.387070px;}
.ls45{letter-spacing:10.449469px;}
.ls4a{letter-spacing:10.660667px;}
.ls33{letter-spacing:12.528000px;}
.ls11{letter-spacing:12.594000px;}
.ls34{letter-spacing:12.612000px;}
.ls3c{letter-spacing:12.672564px;}
.ls1e{letter-spacing:12.846000px;}
.ls38{letter-spacing:12.864000px;}
.ls14{letter-spacing:12.876000px;}
.ls3b{letter-spacing:12.878088px;}
.ls10{letter-spacing:12.936000px;}
.ls4c{letter-spacing:12.942000px;}
.ls27{letter-spacing:12.954000px;}
.ls3e{letter-spacing:12.960000px;}
.ls24{letter-spacing:12.960328px;}
.ls2d{letter-spacing:12.966000px;}
.ls12{letter-spacing:13.008000px;}
.ls48{letter-spacing:13.104000px;}
.ls1f{letter-spacing:13.134000px;}
.ls28{letter-spacing:13.146000px;}
.ls15{letter-spacing:13.260000px;}
.lsf{letter-spacing:13.278000px;}
.ls44{letter-spacing:13.326000px;}
.ls4b{letter-spacing:13.350000px;}
.ls2a{letter-spacing:13.476000px;}
.ls1d{letter-spacing:14.226000px;}
.ls1b{letter-spacing:16.728000px;}
.ls18{letter-spacing:17.064000px;}
.ls41{letter-spacing:18.892170px;}
.ls3f{letter-spacing:19.812564px;}
.ls35{letter-spacing:19.818473px;}
.ls0{letter-spacing:20.783740px;}
.ls1{letter-spacing:20.788540px;}
.ls21{letter-spacing:21.465860px;}
.ls17{letter-spacing:21.804237px;}
.ls29{letter-spacing:24.552000px;}
.ls22{letter-spacing:26.256000px;}
.ls36{letter-spacing:43.602000px;}
.ls1a{letter-spacing:63.300237px;}
.ls39{letter-spacing:117.072000px;}
.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;}
}
.wsc5{word-spacing:-46.860000px;}
.ws23{word-spacing:-37.151856px;}
.wsa5{word-spacing:-30.000000px;}
.ws27{word-spacing:-25.247684px;}
.ws108{word-spacing:-19.994233px;}
.wsa6{word-spacing:-17.999400px;}
.wsc1{word-spacing:-16.758000px;}
.wsea{word-spacing:-16.614000px;}
.ws7c{word-spacing:-16.350000px;}
.ws128{word-spacing:-13.487831px;}
.ws15{word-spacing:-13.247834px;}
.ws3f{word-spacing:-11.639855px;}
.ws2e{word-spacing:-10.799865px;}
.wsc0{word-spacing:-5.734097px;}
.ws109{word-spacing:-4.233565px;}
.ws106{word-spacing:-4.082366px;}
.ws145{word-spacing:-3.806352px;}
.ws16e{word-spacing:-3.614355px;}
.ws163{word-spacing:-3.599955px;}
.ws166{word-spacing:-3.595155px;}
.ws11f{word-spacing:-3.585555px;}
.ws12e{word-spacing:-3.542356px;}
.ws9{word-spacing:-3.499156px;}
.ws146{word-spacing:-3.494356px;}
.ws14d{word-spacing:-3.489556px;}
.ws142{word-spacing:-3.484756px;}
.ws143{word-spacing:-3.479957px;}
.ws152{word-spacing:-3.470357px;}
.ws144{word-spacing:-3.465557px;}
.ws22{word-spacing:-3.459900px;}
.ws12b{word-spacing:-3.451157px;}
.ws16d{word-spacing:-3.431957px;}
.ws12f{word-spacing:-3.422357px;}
.ws175{word-spacing:-3.407957px;}
.ws127{word-spacing:-3.403157px;}
.ws3{word-spacing:-3.375000px;}
.ws150{word-spacing:-3.374358px;}
.ws173{word-spacing:-3.369558px;}
.ws11e{word-spacing:-3.355158px;}
.ws4{word-spacing:-3.348000px;}
.wsd{word-spacing:-3.345558px;}
.wsb{word-spacing:-3.340758px;}
.ws162{word-spacing:-3.335958px;}
.ws169{word-spacing:-3.331158px;}
.ws151{word-spacing:-3.326358px;}
.ws1c{word-spacing:-3.323100px;}
.ws13a{word-spacing:-3.321558px;}
.ws6{word-spacing:-3.315600px;}
.wsf{word-spacing:-3.311959px;}
.ws15f{word-spacing:-3.307159px;}
.ws134{word-spacing:-3.297559px;}
.ws71{word-spacing:-3.292759px;}
.ws11a{word-spacing:-3.287959px;}
.ws11b{word-spacing:-3.283159px;}
.ws11c{word-spacing:-3.278359px;}
.ws119{word-spacing:-3.273559px;}
.ws10{word-spacing:-3.268759px;}
.wsa{word-spacing:-3.259159px;}
.ws17{word-spacing:-3.254700px;}
.ws117{word-spacing:-3.254359px;}
.ws14a{word-spacing:-3.249559px;}
.ws16{word-spacing:-3.249000px;}
.ws132{word-spacing:-3.244759px;}
.ws118{word-spacing:-3.239959px;}
.ws11{word-spacing:-3.235160px;}
.ws14{word-spacing:-3.225560px;}
.ws141{word-spacing:-3.220760px;}
.ws21{word-spacing:-3.220500px;}
.ws139{word-spacing:-3.215960px;}
.ws114{word-spacing:-3.211160px;}
.ws15a{word-spacing:-3.206360px;}
.ws159{word-spacing:-3.201560px;}
.ws148{word-spacing:-3.196760px;}
.ws15e{word-spacing:-3.191960px;}
.ws158{word-spacing:-3.187160px;}
.ws16a{word-spacing:-3.182360px;}
.wsc{word-spacing:-3.177560px;}
.ws131{word-spacing:-3.172760px;}
.ws1a{word-spacing:-3.169200px;}
.wse9{word-spacing:-3.167960px;}
.ws7{word-spacing:-3.164400px;}
.ws140{word-spacing:-3.163160px;}
.ws156{word-spacing:-3.153561px;}
.ws11d{word-spacing:-3.148761px;}
.ws8{word-spacing:-3.148200px;}
.ws16b{word-spacing:-3.143961px;}
.ws26{word-spacing:-3.139161px;}
.ws1b{word-spacing:-3.135000px;}
.ws126{word-spacing:-3.134361px;}
.ws12{word-spacing:-3.129561px;}
.ws24{word-spacing:-3.124761px;}
.ws161{word-spacing:-3.119961px;}
.ws13e{word-spacing:-3.115161px;}
.ws20{word-spacing:-3.112200px;}
.ws15c{word-spacing:-3.100761px;}
.ws157{word-spacing:-3.095961px;}
.ws16f{word-spacing:-3.091161px;}
.ws138{word-spacing:-3.086361px;}
.ws13c{word-spacing:-3.081561px;}
.ws164{word-spacing:-3.076762px;}
.ws170{word-spacing:-3.067162px;}
.ws13d{word-spacing:-3.052762px;}
.ws116{word-spacing:-3.047962px;}
.wse{word-spacing:-3.038362px;}
.ws160{word-spacing:-3.023962px;}
.ws13{word-spacing:-3.019162px;}
.ws1f{word-spacing:-3.009600px;}
.ws155{word-spacing:-3.004762px;}
.ws5{word-spacing:-3.002400px;}
.ws147{word-spacing:-2.999962px;}
.ws16c{word-spacing:-2.995163px;}
.ws171{word-spacing:-2.990363px;}
.ws172{word-spacing:-2.985563px;}
.ws129{word-spacing:-2.975963px;}
.ws14b{word-spacing:-2.966363px;}
.ws149{word-spacing:-2.961563px;}
.ws12c{word-spacing:-2.956763px;}
.ws115{word-spacing:-2.942363px;}
.ws136{word-spacing:-2.937563px;}
.ws167{word-spacing:-2.923163px;}
.ws125{word-spacing:-2.913564px;}
.ws19{word-spacing:-2.912700px;}
.ws135{word-spacing:-2.908764px;}
.ws133{word-spacing:-2.894364px;}
.ws153{word-spacing:-2.889564px;}
.ws120{word-spacing:-2.875164px;}
.ws12a{word-spacing:-2.870364px;}
.ws15d{word-spacing:-2.841564px;}
.ws174{word-spacing:-2.831965px;}
.ws154{word-spacing:-2.827165px;}
.ws1{word-spacing:-2.818800px;}
.ws168{word-spacing:-2.817565px;}
.ws122{word-spacing:-2.812765px;}
.ws165{word-spacing:-2.807965px;}
.ws1d{word-spacing:-2.798700px;}
.ws14c{word-spacing:-2.793565px;}
.ws121{word-spacing:-2.779165px;}
.ws15b{word-spacing:-2.774365px;}
.ws1e{word-spacing:-2.770200px;}
.ws14f{word-spacing:-2.769565px;}
.ws124{word-spacing:-2.764765px;}
.ws130{word-spacing:-2.750366px;}
.ws123{word-spacing:-2.745566px;}
.ws137{word-spacing:-2.697566px;}
.ws13b{word-spacing:-2.683166px;}
.ws0{word-spacing:-2.649567px;}
.ws18{word-spacing:-2.633400px;}
.ws14e{word-spacing:-2.553568px;}
.ws2{word-spacing:-2.278800px;}
.ws3e{word-spacing:-1.526381px;}
.ws3b{word-spacing:-1.511981px;}
.ws3a{word-spacing:-1.473582px;}
.ws3d{word-spacing:-1.411182px;}
.ws39{word-spacing:-1.348783px;}
.wsad{word-spacing:-1.158000px;}
.ws3c{word-spacing:-1.132786px;}
.wsae{word-spacing:-1.098000px;}
.ws43{word-spacing:-1.055987px;}
.wsa9{word-spacing:-1.050000px;}
.wsab{word-spacing:-1.044000px;}
.wsa8{word-spacing:-1.008000px;}
.ws78{word-spacing:-0.998388px;}
.ws2a{word-spacing:-0.945588px;}
.ws46{word-spacing:-0.916789px;}
.wsaa{word-spacing:-0.900000px;}
.ws76{word-spacing:-0.897589px;}
.ws40{word-spacing:-0.892789px;}
.ws34{word-spacing:-0.878389px;}
.ws7b{word-spacing:-0.859189px;}
.ws2d{word-spacing:-0.854389px;}
.ws63{word-spacing:-0.852000px;}
.ws48{word-spacing:-0.815990px;}
.wsce{word-spacing:-0.811190px;}
.ws77{word-spacing:-0.806390px;}
.ws32{word-spacing:-0.791990px;}
.wsac{word-spacing:-0.786000px;}
.wsfe{word-spacing:-0.777590px;}
.wse2{word-spacing:-0.774000px;}
.wsf5{word-spacing:-0.758391px;}
.wsf3{word-spacing:-0.753591px;}
.wse4{word-spacing:-0.750000px;}
.wse7{word-spacing:-0.748791px;}
.ws36{word-spacing:-0.743991px;}
.ws74{word-spacing:-0.739191px;}
.wsf9{word-spacing:-0.734391px;}
.ws42{word-spacing:-0.724791px;}
.wsfd{word-spacing:-0.719991px;}
.wsff{word-spacing:-0.714000px;}
.ws2b{word-spacing:-0.705591px;}
.ws30{word-spacing:-0.700791px;}
.ws38{word-spacing:-0.691191px;}
.ws93{word-spacing:-0.684000px;}
.ws4c{word-spacing:-0.681591px;}
.ws44{word-spacing:-0.676792px;}
.ws47{word-spacing:-0.671992px;}
.wsd2{word-spacing:-0.657592px;}
.ws49{word-spacing:-0.647992px;}
.ws2c{word-spacing:-0.643192px;}
.ws35{word-spacing:-0.638392px;}
.ws41{word-spacing:-0.633592px;}
.ws72{word-spacing:-0.628792px;}
.ws28{word-spacing:-0.623992px;}
.wsd5{word-spacing:-0.618000px;}
.wse8{word-spacing:-0.614392px;}
.ws7a{word-spacing:-0.609592px;}
.ws8c{word-spacing:-0.588000px;}
.wscf{word-spacing:-0.585593px;}
.wsfb{word-spacing:-0.582000px;}
.ws2f{word-spacing:-0.571193px;}
.ws73{word-spacing:-0.556793px;}
.ws4b{word-spacing:-0.542393px;}
.ws101{word-spacing:-0.534000px;}
.ws37{word-spacing:-0.532793px;}
.ws58{word-spacing:-0.528000px;}
.ws33{word-spacing:-0.527993px;}
.wsd4{word-spacing:-0.516000px;}
.ws57{word-spacing:-0.510000px;}
.ws97{word-spacing:-0.504000px;}
.ws31{word-spacing:-0.499194px;}
.wsec{word-spacing:-0.498000px;}
.wsd0{word-spacing:-0.489594px;}
.wsdb{word-spacing:-0.486000px;}
.wsf6{word-spacing:-0.474000px;}
.ws45{word-spacing:-0.470394px;}
.ws67{word-spacing:-0.468000px;}
.ws70{word-spacing:-0.462000px;}
.ws6a{word-spacing:-0.456000px;}
.ws75{word-spacing:-0.455994px;}
.ws86{word-spacing:-0.432000px;}
.ws6d{word-spacing:-0.426000px;}
.wsb7{word-spacing:-0.420000px;}
.wsf8{word-spacing:-0.417595px;}
.wse1{word-spacing:-0.414000px;}
.ws4a{word-spacing:-0.412795px;}
.wse3{word-spacing:-0.408000px;}
.ws29{word-spacing:-0.403195px;}
.ws92{word-spacing:-0.402000px;}
.ws66{word-spacing:-0.396000px;}
.ws7d{word-spacing:-0.390000px;}
.wsc8{word-spacing:-0.384000px;}
.ws4f{word-spacing:-0.378000px;}
.wsd7{word-spacing:-0.372000px;}
.ws8f{word-spacing:-0.366000px;}
.wsf4{word-spacing:-0.364795px;}
.ws5f{word-spacing:-0.360000px;}
.wsc4{word-spacing:-0.354000px;}
.ws82{word-spacing:-0.348000px;}
.ws79{word-spacing:-0.345596px;}
.ws55{word-spacing:-0.342000px;}
.wsfa{word-spacing:-0.336000px;}
.wse0{word-spacing:-0.335996px;}
.wsd8{word-spacing:-0.330000px;}
.ws8b{word-spacing:-0.324000px;}
.wsa1{word-spacing:-0.318000px;}
.ws105{word-spacing:-0.312000px;}
.wscc{word-spacing:-0.306000px;}
.ws89{word-spacing:-0.300000px;}
.ws65{word-spacing:-0.294000px;}
.wsb1{word-spacing:-0.288000px;}
.ws60{word-spacing:-0.282000px;}
.ws51{word-spacing:-0.276000px;}
.ws6f{word-spacing:-0.270000px;}
.ws52{word-spacing:-0.264000px;}
.ws7e{word-spacing:-0.258000px;}
.ws62{word-spacing:-0.252000px;}
.wsa0{word-spacing:-0.246000px;}
.wsdf{word-spacing:-0.244797px;}
.wsdc{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.234000px;}
.wsd9{word-spacing:-0.228000px;}
.ws94{word-spacing:-0.222000px;}
.wsed{word-spacing:-0.216000px;}
.wsd1{word-spacing:-0.211197px;}
.ws7f{word-spacing:-0.210000px;}
.ws4e{word-spacing:-0.204000px;}
.ws8a{word-spacing:-0.198000px;}
.ws5a{word-spacing:-0.192000px;}
.wsb5{word-spacing:-0.186000px;}
.wsc9{word-spacing:-0.180000px;}
.ws6c{word-spacing:-0.174000px;}
.ws61{word-spacing:-0.168000px;}
.wsee{word-spacing:-0.167998px;}
.ws5c{word-spacing:-0.162000px;}
.ws50{word-spacing:-0.156000px;}
.wsf0{word-spacing:-0.153598px;}
.wsd6{word-spacing:-0.150000px;}
.wsbe{word-spacing:-0.144000px;}
.wsde{word-spacing:-0.143998px;}
.wsb4{word-spacing:-0.138000px;}
.ws90{word-spacing:-0.132000px;}
.wsbb{word-spacing:-0.126000px;}
.wscb{word-spacing:-0.120000px;}
.ws69{word-spacing:-0.114000px;}
.wscd{word-spacing:-0.110399px;}
.ws83{word-spacing:-0.108000px;}
.ws54{word-spacing:-0.102000px;}
.ws9c{word-spacing:-0.096000px;}
.wsf7{word-spacing:-0.095999px;}
.ws88{word-spacing:-0.090000px;}
.wsb6{word-spacing:-0.084000px;}
.wsc2{word-spacing:-0.078000px;}
.wse6{word-spacing:-0.076799px;}
.ws5d{word-spacing:-0.072000px;}
.wse5{word-spacing:-0.067199px;}
.ws85{word-spacing:-0.066000px;}
.wsef{word-spacing:-0.062399px;}
.wsb3{word-spacing:-0.060000px;}
.wsd3{word-spacing:-0.054000px;}
.ws9a{word-spacing:-0.048000px;}
.ws98{word-spacing:-0.042000px;}
.wsbd{word-spacing:-0.036000px;}
.wsdd{word-spacing:-0.030000px;}
.wsc6{word-spacing:-0.024000px;}
.wsba{word-spacing:-0.018000px;}
.wsca{word-spacing:-0.012000px;}
.ws59{word-spacing:-0.006000px;}
.ws4d{word-spacing:0.000000px;}
.ws64{word-spacing:0.006000px;}
.ws68{word-spacing:0.012000px;}
.ws96{word-spacing:0.024000px;}
.ws104{word-spacing:0.030000px;}
.wsda{word-spacing:0.036000px;}
.ws99{word-spacing:0.042000px;}
.wsbf{word-spacing:0.048000px;}
.wsbc{word-spacing:0.054000px;}
.ws6b{word-spacing:0.060000px;}
.ws80{word-spacing:0.072000px;}
.wsa7{word-spacing:0.078000px;}
.ws9d{word-spacing:0.084000px;}
.wseb{word-spacing:0.096000px;}
.ws87{word-spacing:0.100799px;}
.wsa4{word-spacing:0.102000px;}
.ws5e{word-spacing:0.108000px;}
.ws5b{word-spacing:0.120000px;}
.ws103{word-spacing:0.126000px;}
.ws100{word-spacing:0.132000px;}
.ws8d{word-spacing:0.156000px;}
.ws9f{word-spacing:0.162000px;}
.ws8e{word-spacing:0.168000px;}
.ws9e{word-spacing:0.174000px;}
.ws6e{word-spacing:0.180000px;}
.ws81{word-spacing:0.186000px;}
.wsf2{word-spacing:0.191998px;}
.wsf1{word-spacing:0.196798px;}
.wsc7{word-spacing:0.215998px;}
.ws53{word-spacing:0.222000px;}
.ws9b{word-spacing:0.237598px;}
.wsa2{word-spacing:0.280798px;}
.wsfc{word-spacing:0.335996px;}
.ws112{word-spacing:0.342000px;}
.ws95{word-spacing:0.359997px;}
.ws102{word-spacing:0.384000px;}
.ws84{word-spacing:0.388797px;}
.ws91{word-spacing:0.431996px;}
.ws107{word-spacing:0.432000px;}
.wsa3{word-spacing:0.438000px;}
.wsb0{word-spacing:0.444000px;}
.ws10b{word-spacing:0.480000px;}
.wsaf{word-spacing:0.552000px;}
.ws10f{word-spacing:0.648000px;}
.ws10c{word-spacing:0.666000px;}
.ws10d{word-spacing:0.762000px;}
.ws10e{word-spacing:0.900000px;}
.ws111{word-spacing:1.020000px;}
.ws110{word-spacing:1.026000px;}
.wsb9{word-spacing:1.128000px;}
.ws10a{word-spacing:1.158000px;}
.wsb2{word-spacing:1.202080px;}
.wsb8{word-spacing:1.265905px;}
.wsc3{word-spacing:1.411813px;}
.ws25{word-spacing:34.588368px;}
.ws12d{word-spacing:46.842614px;}
.ws13f{word-spacing:46.847414px;}
.ws113{word-spacing:46.909814px;}
._12{margin-left:-21.249334px;}
._13{margin-left:-19.079762px;}
._6{margin-left:-8.421087px;}
._a{margin-left:-4.826414px;}
._5{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._4{width:1.128600px;}
._c{width:2.766647px;}
._1{width:4.104000px;}
._f{width:9.215885px;}
._2{width:11.035062px;}
._9{width:12.408000px;}
._3{width:13.611600px;}
._8{width:14.618400px;}
._e{width:15.988600px;}
._11{width:20.270147px;}
._d{width:29.898000px;}
._b{width:49.138800px;}
._10{width:1418.137473px;}
._7{width:1443.932351px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.000000px;}
.fse{font-size:31.995000px;}
.fs4{font-size:35.995200px;}
.fsc{font-size:35.998800px;}
.fsb{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y7e{bottom:4.537500px;}
.y29{bottom:8.513967px;}
.y2a{bottom:54.000000px;}
.y152{bottom:119.651260px;}
.y21a{bottom:124.497778px;}
.yb8{bottom:124.498500px;}
.ydd{bottom:124.500000px;}
.y4c{bottom:124.500064px;}
.y17b{bottom:125.100000px;}
.y17e{bottom:125.434500px;}
.y1ba{bottom:125.605500px;}
.y2a6{bottom:126.373509px;}
.y1a5{bottom:130.621500px;}
.y1f7{bottom:131.220000px;}
.y1d3{bottom:135.469500px;}
.y7c{bottom:136.663500px;}
.y255{bottom:136.832578px;}
.y219{bottom:138.784799px;}
.y2a5{bottom:140.575331px;}
.y4b{bottom:140.997458px;}
.y151{bottom:142.867369px;}
.yb7{bottom:143.973000px;}
.y17a{bottom:144.573000px;}
.y17d{bottom:144.993000px;}
.y1b9{bottom:145.078500px;}
.y1a4{bottom:150.096000px;}
.y1f6{bottom:150.693000px;}
.y254{bottom:151.119600px;}
.y218{bottom:152.986622px;}
.y2a4{bottom:154.861153px;}
.y1d2{bottom:154.944000px;}
.y7b{bottom:156.138000px;}
.y150{bottom:157.153191px;}
.y4a{bottom:157.494852px;}
.y280{bottom:158.602706px;}
.yb6{bottom:163.531500px;}
.y13f{bottom:163.533000px;}
.y179{bottom:164.131500px;}
.y17c{bottom:164.466000px;}
.y1b8{bottom:164.553000px;}
.y1a3{bottom:169.569000px;}
.y1f5{bottom:170.167500px;}
.y253{bottom:170.592956px;}
.y14f{bottom:171.355013px;}
.y217{bottom:172.459978px;}
.y27f{bottom:172.804529px;}
.y49{bottom:173.993445px;}
.y2a3{bottom:174.335709px;}
.y1d1{bottom:174.417000px;}
.y7a{bottom:175.612500px;}
.yb5{bottom:183.004500px;}
.ydc{bottom:183.006000px;}
.y178{bottom:183.606000px;}
.y1b7{bottom:184.027500px;}
.y252{bottom:184.794779px;}
.y14e{bottom:185.642035px;}
.y216{bottom:186.747000px;}
.y2a2{bottom:188.621531px;}
.y1a2{bottom:189.127500px;}
.y1f4{bottom:189.642000px;}
.y27e{bottom:192.363084px;}
.y1d0{bottom:193.975500px;}
.y79{bottom:195.085500px;}
.y184{bottom:196.527102px;}
.y13d{bottom:198.822951px;}
.y251{bottom:199.081800px;}
.y48{bottom:199.505126px;}
.y14d{bottom:199.842657px;}
.y214{bottom:201.032821px;}
.y215{bottom:201.373617px;}
.yb4{bottom:202.479000px;}
.ydb{bottom:202.480500px;}
.y2a0{bottom:202.823353px;}
.y2a1{bottom:203.078950px;}
.y177{bottom:203.080500px;}
.y1b6{bottom:203.586000px;}
.y13c{bottom:203.925000px;}
.y27d{bottom:206.564907px;}
.y1a1{bottom:208.602000px;}
.y1f3{bottom:209.200500px;}
.y1cf{bottom:213.450000px;}
.y14c{bottom:214.129679px;}
.y78{bottom:214.644000px;}
.y47{bottom:216.002520px;}
.y13e{bottom:216.085500px;}
.y250{bottom:218.555157px;}
.y183{bottom:219.743212px;}
.y213{bottom:220.507378px;}
.y27c{bottom:220.851928px;}
.yb3{bottom:222.037500px;}
.yda{bottom:222.039000px;}
.y29f{bottom:222.296710px;}
.y176{bottom:222.639000px;}
.y1b5{bottom:223.059000px;}
.y13b{bottom:227.311500px;}
.y1a0{bottom:228.076500px;}
.y14b{bottom:228.415500px;}
.y1f2{bottom:228.675000px;}
.y27{bottom:232.414650px;}
.y46{bottom:232.499914px;}
.y24f{bottom:232.842178px;}
.y1ce{bottom:232.924500px;}
.y182{bottom:234.029034px;}
.y77{bottom:234.118500px;}
.y212{bottom:234.708000px;}
.y29e{bottom:236.583731px;}
.y27b{bottom:240.325285px;}
.yb2{bottom:241.512000px;}
.yd9{bottom:241.513500px;}
.y175{bottom:242.112000px;}
.y1b4{bottom:242.533500px;}
.y13a{bottom:246.784500px;}
.y24e{bottom:247.044001px;}
.y19f{bottom:247.635000px;}
.y1f1{bottom:248.148000px;}
.y181{bottom:248.230856px;}
.y45{bottom:248.997308px;}
.y1cd{bottom:252.397500px;}
.y26{bottom:253.419150px;}
.y76{bottom:253.593000px;}
.y27a{bottom:254.612306px;}
.y211{bottom:255.033000px;}
.y29d{bottom:256.058288px;}
.yb1{bottom:260.985000px;}
.yd8{bottom:260.986500px;}
.y174{bottom:261.586500px;}
.y1b3{bottom:262.092000px;}
.y180{bottom:262.517878px;}
.y44{bottom:265.494701px;}
.y139{bottom:266.343000px;}
.y24d{bottom:266.602556px;}
.y19e{bottom:267.108000px;}
.y19c{bottom:267.109500px;}
.y1f0{bottom:267.706500px;}
.y29c{bottom:270.344109px;}
.y1cc{bottom:271.957500px;}
.y75{bottom:273.151500px;}
.y19d{bottom:273.741000px;}
.y279{bottom:274.085663px;}
.y25{bottom:274.423650px;}
.y17f{bottom:276.718500px;}
.y108{bottom:280.459500px;}
.yd7{bottom:280.461000px;}
.y24c{bottom:280.804379px;}
.y173{bottom:281.145000px;}
.y1b2{bottom:281.566500px;}
.y43{bottom:281.992095px;}
.yb0{bottom:286.497000px;}
.y19b{bottom:286.582500px;}
.y199{bottom:286.585500px;}
.y1ef{bottom:287.181000px;}
.y278{bottom:288.372684px;}
.y29b{bottom:289.818666px;}
.y1cb{bottom:291.430500px;}
.y74{bottom:292.626000px;}
.y19a{bottom:293.301000px;}
.y24b{bottom:295.090200px;}
.y24{bottom:295.429575px;}
.y134{bottom:295.937200px;}
.y136{bottom:296.447897px;}
.y107{bottom:300.018000px;}
.yd6{bottom:300.019500px;}
.y172{bottom:300.619500px;}
.y1b1{bottom:301.041000px;}
.y29a{bottom:304.104487px;}
.y198{bottom:306.145500px;}
.y1ee{bottom:306.655500px;}
.y210{bottom:306.909000px;}
.y42{bottom:307.503776px;}
.y277{bottom:307.846041px;}
.y138{bottom:308.523668px;}
.y132{bottom:309.033951px;}
.y1ca{bottom:310.905000px;}
.y133{bottom:311.415000px;}
.y137{bottom:312.094500px;}
.y131{bottom:312.096000px;}
.y73{bottom:312.099000px;}
.y24a{bottom:314.564757px;}
.y23{bottom:316.434075px;}
.y299{bottom:318.306310px;}
.yd5{bottom:319.494000px;}
.y171{bottom:320.094000px;}
.y1b0{bottom:320.599500px;}
.y276{bottom:322.047863px;}
.y41{bottom:324.001170px;}
.y106{bottom:325.530000px;}
.y197{bottom:325.618500px;}
.y1ed{bottom:326.214000px;}
.y20f{bottom:326.383500px;}
.y249{bottom:328.850578px;}
.y135{bottom:329.358000px;}
.yaf{bottom:330.210000px;}
.y1c9{bottom:330.463500px;}
.y72{bottom:331.657500px;}
.y22{bottom:337.438575px;}
.y298{bottom:337.864865px;}
.yd4{bottom:338.967000px;}
.y170{bottom:339.567000px;}
.y1af{bottom:340.072500px;}
.y40{bottom:340.499764px;}
.y275{bottom:341.606418px;}
.y248{bottom:343.052400px;}
.y196{bottom:345.093000px;}
.y1ec{bottom:345.688500px;}
.yae{bottom:349.684500px;}
.y1c8{bottom:349.938000px;}
.y71{bottom:351.132000px;}
.y297{bottom:352.066688px;}
.y130{bottom:353.170500px;}
.y20e{bottom:353.425500px;}
.y3f{bottom:356.997158px;}
.y21{bottom:358.443075px;}
.yd3{bottom:358.525500px;}
.y16f{bottom:359.125500px;}
.y1ae{bottom:359.547000px;}
.y274{bottom:361.080975px;}
.y247{bottom:362.610956px;}
.y195{bottom:364.567500px;}
.y1eb{bottom:365.161500px;}
.yad{bottom:369.243000px;}
.y1c7{bottom:369.411000px;}
.y70{bottom:370.606500px;}
.y296{bottom:371.540044px;}
.y105{bottom:372.558000px;}
.y12f{bottom:372.643500px;}
.y3e{bottom:373.494551px;}
.y273{bottom:375.366796px;}
.y246{bottom:376.812778px;}
.y16e{bottom:378.600000px;}
.y1ad{bottom:379.021500px;}
.y20{bottom:379.447575px;}
.y20d{bottom:380.383500px;}
.yd2{bottom:384.037500px;}
.y194{bottom:384.126000px;}
.y1ea{bottom:384.636000px;}
.y295{bottom:385.827066px;}
.yac{bottom:388.717500px;}
.y1c6{bottom:388.969500px;}
.y3d{bottom:389.991945px;}
.y6f{bottom:390.165000px;}
.y104{bottom:392.031000px;}
.y12e{bottom:392.202000px;}
.y272{bottom:394.841353px;}
.y245{bottom:396.372534px;}
.y16d{bottom:398.074500px;}
.y1ac{bottom:398.580000px;}
.y1f{bottom:400.452075px;}
.y193{bottom:403.599000px;}
.y1e9{bottom:404.194500px;}
.y294{bottom:405.301622px;}
.y3c{bottom:406.489339px;}
.y20c{bottom:407.425500px;}
.yab{bottom:408.192000px;}
.y271{bottom:409.043176px;}
.y6e{bottom:409.639500px;}
.y244{bottom:410.573156px;}
.y12d{bottom:411.676500px;}
.y1c5{bottom:414.396000px;}
.y16c{bottom:417.633000px;}
.y1ab{bottom:418.053000px;}
.y293{bottom:419.587444px;}
.y1e{bottom:421.372500px;}
.y102{bottom:422.219897px;}
.y192{bottom:423.073500px;}
.y1e8{bottom:423.669000px;}
.y243{bottom:424.860178px;}
.y100{bottom:427.579500px;}
.yaa{bottom:427.665000px;}
.y270{bottom:428.601731px;}
.y6d{bottom:429.112500px;}
.y12c{bottom:431.151000px;}
.y3b{bottom:432.001020px;}
.yff{bottom:433.701046px;}
.y20b{bottom:434.383500px;}
.yd1{bottom:436.765500px;}
.y16b{bottom:437.107500px;}
.y103{bottom:437.868000px;}
.yfe{bottom:437.869500px;}
.y292{bottom:439.062000px;}
.y1d{bottom:442.377000px;}
.y191{bottom:442.632000px;}
.y26f{bottom:442.803554px;}
.y1e7{bottom:443.142000px;}
.y242{bottom:444.333534px;}
.ya9{bottom:447.223500px;}
.y1db{bottom:448.413760px;}
.y6c{bottom:448.587000px;}
.y1c4{bottom:450.114281px;}
.y12b{bottom:450.624000px;}
.y291{bottom:453.347822px;}
.y101{bottom:455.130000px;}
.yd0{bottom:456.324000px;}
.y16a{bottom:456.580500px;}
.y3a{bottom:457.512701px;}
.y241{bottom:458.620556px;}
.y20a{bottom:461.425500px;}
.y190{bottom:462.106500px;}
.y26e{bottom:462.362109px;}
.y1e6{bottom:462.700500px;}
.y1c{bottom:463.381500px;}
.ya8{bottom:466.698000px;}
.y290{bottom:467.549644px;}
.y6b{bottom:468.145500px;}
.y12a{bottom:470.182500px;}
.y1da{bottom:471.713868px;}
.y240{bottom:472.822378px;}
.y1c3{bottom:473.329191px;}
.ycf{bottom:475.798500px;}
.y169{bottom:476.139000px;}
.y26d{bottom:476.563932px;}
.yfd{bottom:478.942500px;}
.y209{bottom:480.898500px;}
.y18f{bottom:481.579500px;}
.y1e5{bottom:482.175000px;}
.y39{bottom:483.024382px;}
.y1b{bottom:484.386000px;}
.y1d9{bottom:485.915691px;}
.ya7{bottom:486.172500px;}
.y28f{bottom:487.108200px;}
.y1c2{bottom:487.616212px;}
.y6a{bottom:487.620000px;}
.y23f{bottom:492.295735px;}
.yce{bottom:495.271500px;}
.y168{bottom:495.613500px;}
.y26c{bottom:496.122487px;}
.yfc{bottom:498.417000px;}
.y1d8{bottom:500.202712px;}
.y18e{bottom:501.139500px;}
.y28e{bottom:501.310022px;}
.y1e4{bottom:501.649500px;}
.y127{bottom:501.732000px;}
.y1c1{bottom:501.818035px;}
.y1a{bottom:505.390500px;}
.ya6{bottom:505.731000px;}
.y23e{bottom:506.582756px;}
.y69{bottom:507.093000px;}
.y125{bottom:507.175500px;}
.y208{bottom:507.942000px;}
.y38{bottom:508.536063px;}
.y124{bottom:513.807671px;}
.y129{bottom:514.403451px;}
.y1d7{bottom:514.404535px;}
.ycd{bottom:514.831500px;}
.y167{bottom:515.088000px;}
.y26b{bottom:515.597044px;}
.y1c0{bottom:516.103856px;}
.y128{bottom:517.464000px;}
.y123{bottom:517.467000px;}
.yfb{bottom:517.891500px;}
.y18d{bottom:520.612500px;}
.y23d{bottom:520.868578px;}
.y1e3{bottom:521.208000px;}
.y37{bottom:525.033457px;}
.ya5{bottom:525.204000px;}
.y19{bottom:526.395000px;}
.y68{bottom:526.651500px;}
.y1d6{bottom:528.690356px;}
.y26a{bottom:529.797666px;}
.y1bf{bottom:530.305679px;}
.ycc{bottom:534.304500px;}
.y166{bottom:534.646500px;}
.y207{bottom:534.898500px;}
.y28d{bottom:535.070400px;}
.y126{bottom:535.578000px;}
.yfa{bottom:537.450000px;}
.y18c{bottom:540.087000px;}
.y23c{bottom:540.343134px;}
.y1e2{bottom:540.682500px;}
.y1bd{bottom:542.551500px;}
.y1d5{bottom:542.977378px;}
.y269{bottom:544.084687px;}
.y1be{bottom:544.591500px;}
.y1bc{bottom:544.592878px;}
.ya4{bottom:544.678500px;}
.y67{bottom:546.126000px;}
.y18{bottom:547.399500px;}
.y28c{bottom:549.357422px;}
.y36{bottom:550.545138px;}
.ycb{bottom:553.779000px;}
.y165{bottom:554.119500px;}
.y23b{bottom:554.544957px;}
.yf9{bottom:556.923000px;}
.y1d4{bottom:557.178000px;}
.y1bb{bottom:558.793500px;}
.y122{bottom:559.476000px;}
.y18b{bottom:559.645500px;}
.y1e1{bottom:560.155500px;}
.y206{bottom:561.940500px;}
.y268{bottom:563.559244px;}
.ya3{bottom:564.237000px;}
.y66{bottom:565.600500px;}
.y35{bottom:567.042532px;}
.y17{bottom:568.404000px;}
.y23a{bottom:568.830778px;}
.yca{bottom:573.337500px;}
.y164{bottom:573.594000px;}
.y267{bottom:577.845065px;}
.y121{bottom:578.950500px;}
.y18a{bottom:579.120000px;}
.y1e0{bottom:579.714000px;}
.y28b{bottom:583.117800px;}
.y34{bottom:583.541126px;}
.ya2{bottom:583.711500px;}
.y65{bottom:585.159000px;}
.y239{bottom:588.305335px;}
.y205{bottom:588.898500px;}
.y16{bottom:589.408500px;}
.yf8{bottom:590.769000px;}
.y266{bottom:592.046888px;}
.yc9{bottom:592.812000px;}
.y163{bottom:593.068500px;}
.yf7{bottom:596.212500px;}
.y28a{bottom:597.319622px;}
.y120{bottom:598.423500px;}
.y189{bottom:598.593000px;}
.y1df{bottom:599.188500px;}
.y33{bottom:600.038520px;}
.y238{bottom:602.591156px;}
.ya1{bottom:603.186000px;}
.yf6{bottom:603.440451px;}
.y64{bottom:604.633500px;}
.yf5{bottom:606.501000px;}
.y204{bottom:608.371500px;}
.y15{bottom:610.413000px;}
.y265{bottom:611.605443px;}
.yc8{bottom:612.285000px;}
.y162{bottom:612.627000px;}
.y32{bottom:616.535913px;}
.y237{bottom:616.792979px;}
.y11f{bottom:617.898000px;}
.y188{bottom:618.067500px;}
.y1de{bottom:618.663000px;}
.ya0{bottom:622.659000px;}
.y63{bottom:624.106500px;}
.y264{bottom:625.807266px;}
.y289{bottom:631.080000px;}
.yc7{bottom:631.759500px;}
.y161{bottom:632.101500px;}
.y31{bottom:633.033307px;}
.y203{bottom:633.883500px;}
.y236{bottom:636.351534px;}
.y11e{bottom:637.456500px;}
.y187{bottom:637.626000px;}
.y1dd{bottom:638.136000px;}
.y263{bottom:640.094287px;}
.y9f{bottom:642.217500px;}
.yf4{bottom:643.153500px;}
.y14{bottom:643.407000px;}
.y62{bottom:643.665000px;}
.y288{bottom:645.365821px;}
.y235{bottom:650.553357px;}
.yc6{bottom:651.318000px;}
.y160{bottom:651.574500px;}
.y11d{bottom:656.931000px;}
.y186{bottom:657.100500px;}
.y30{bottom:657.609000px;}
.y1dc{bottom:657.694500px;}
.y262{bottom:659.567644px;}
.yf2{bottom:660.160500px;}
.y9e{bottom:661.692000px;}
.yf3{bottom:662.626500px;}
.yf1{bottom:662.629500px;}
.y61{bottom:663.139500px;}
.y234{bottom:664.840378px;}
.yc5{bottom:670.792500px;}
.y15f{bottom:671.133000px;}
.y261{bottom:673.854665px;}
.y11c{bottom:676.404000px;}
.y185{bottom:676.573500px;}
.y202{bottom:678.274500px;}
.y287{bottom:679.041001px;}
.y9d{bottom:681.166500px;}
.yf0{bottom:682.188000px;}
.y60{bottom:682.614000px;}
.y233{bottom:684.313735px;}
.y1fd{bottom:689.670403px;}
.yc4{bottom:690.265500px;}
.y15e{bottom:690.607500px;}
.y260{bottom:693.328022px;}
.y11b{bottom:695.964000px;}
.y201{bottom:697.833000px;}
.y232{bottom:698.600756px;}
.y9c{bottom:700.725000px;}
.yef{bottom:701.662500px;}
.y5f{bottom:702.087000px;}
.y13{bottom:703.702275px;}
.y1aa{bottom:708.634425px;}
.yc3{bottom:709.825500px;}
.y15d{bottom:710.082000px;}
.y231{bottom:712.802578px;}
.y1fc{bottom:712.971712px;}
.y286{bottom:713.227373px;}
.y11a{bottom:715.437000px;}
.y9b{bottom:720.198000px;}
.yee{bottom:721.135500px;}
.y5e{bottom:721.647000px;}
.y200{bottom:723.259500px;}
.y25f{bottom:727.088400px;}
.y1fb{bottom:727.173535px;}
.yc2{bottom:729.298500px;}
.y15c{bottom:729.640500px;}
.y1a9{bottom:731.850535px;}
.y230{bottom:732.361134px;}
.y12{bottom:733.721100px;}
.y119{bottom:734.911500px;}
.yed{bottom:740.694000px;}
.y5d{bottom:741.120000px;}
.y285{bottom:741.290222px;}
.y1fa{bottom:741.459356px;}
.y2f{bottom:744.520500px;}
.y9a{bottom:745.710000px;}
.y1a8{bottom:746.136356px;}
.y22f{bottom:746.562956px;}
.y11{bottom:748.687313px;}
.yc1{bottom:748.773000px;}
.y15b{bottom:749.115000px;}
.y118{bottom:754.470000px;}
.y1f9{bottom:755.661179px;}
.yec{bottom:760.168500px;}
.y1a7{bottom:760.423378px;}
.y5c{bottom:760.594500px;}
.y22e{bottom:760.848778px;}
.y2e{bottom:761.782500px;}
.y10{bottom:763.739925px;}
.y14a{bottom:765.612000px;}
.yc0{bottom:768.331500px;}
.y15a{bottom:768.588000px;}
.y1f8{bottom:769.947000px;}
.y117{bottom:773.944500px;}
.y1a6{bottom:774.624000px;}
.y22c{bottom:775.050600px;}
.y22d{bottom:775.306197px;}
.y1ff{bottom:776.665500px;}
.yf{bottom:778.706138px;}
.y2d{bottom:778.960500px;}
.yeb{bottom:779.643000px;}
.y5b{bottom:780.153000px;}
.y149{bottom:785.085000px;}
.ybf{bottom:787.806000px;}
.y159{bottom:788.062500px;}
.y25e{bottom:789.337622px;}
.y99{bottom:789.421500px;}
.y284{bottom:789.592019px;}
.y116{bottom:793.417500px;}
.ye{bottom:793.673550px;}
.y22b{bottom:794.609156px;}
.y2c{bottom:796.224000px;}
.yea{bottom:799.201500px;}
.y5a{bottom:799.627500px;}
.y148{bottom:804.559500px;}
.ybe{bottom:807.279000px;}
.y158{bottom:807.621000px;}
.yd{bottom:808.724962px;}
.y22a{bottom:808.810978px;}
.y98{bottom:808.896000px;}
.y115{bottom:812.977500px;}
.y2b{bottom:813.486000px;}
.ye9{bottom:818.674500px;}
.y59{bottom:819.100500px;}
.y1fe{bottom:821.736000px;}
.y228{bottom:823.098000px;}
.y229{bottom:823.352397px;}
.yc{bottom:823.692375px;}
.y147{bottom:824.118000px;}
.ybd{bottom:826.839000px;}
.y157{bottom:827.095500px;}
.y97{bottom:828.369000px;}
.y114{bottom:832.450500px;}
.y25d{bottom:837.298622px;}
.y283{bottom:837.724617px;}
.y58{bottom:838.659000px;}
.yb{bottom:838.743787px;}
.y227{bottom:842.571356px;}
.y146{bottom:843.592500px;}
.ybc{bottom:846.312000px;}
.y156{bottom:846.568500px;}
.y8c{bottom:847.078500px;}
.y25c{bottom:851.585644px;}
.y113{bottom:851.925000px;}
.ye8{bottom:852.434897px;}
.ya{bottom:853.710000px;}
.y96{bottom:853.881825px;}
.y226{bottom:856.858378px;}
.y57{bottom:858.133500px;}
.y145{bottom:863.065500px;}
.y8b{bottom:863.575894px;}
.ye6{bottom:864.001546px;}
.ybb{bottom:865.786500px;}
.y155{bottom:866.127000px;}
.ye5{bottom:868.167000px;}
.y225{bottom:871.059000px;}
.y112{bottom:871.398000px;}
.y56{bottom:877.608000px;}
.y9{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.y95{bottom:880.923000px;}
.y144{bottom:882.625500px;}
.yba{bottom:885.259500px;}
.ye7{bottom:885.345000px;}
.y25b{bottom:885.346022px;}
.y154{bottom:885.601500px;}
.y282{bottom:885.686817px;}
.y8{bottom:886.705500px;}
.y8a{bottom:889.087575px;}
.y224{bottom:890.618756px;}
.y111{bottom:896.910000px;}
.y55{bottom:897.081000px;}
.y5{bottom:897.250500px;}
.y143{bottom:902.098500px;}
.y6{bottom:903.202500px;}
.y223{bottom:904.820578px;}
.y153{bottom:905.076000px;}
.y89{bottom:905.584969px;}
.ye4{bottom:909.241500px;}
.yb9{bottom:910.771500px;}
.y54{bottom:916.641000px;}
.y222{bottom:919.106400px;}
.y142{bottom:921.573000px;}
.y88{bottom:922.083562px;}
.y94{bottom:924.634500px;}
.ye3{bottom:928.714500px;}
.y25a{bottom:933.308222px;}
.y4{bottom:934.670100px;}
.y53{bottom:936.114000px;}
.y87{bottom:938.580956px;}
.y141{bottom:941.046000px;}
.y93{bottom:944.109000px;}
.y258{bottom:947.595244px;}
.y259{bottom:947.934839px;}
.y221{bottom:952.866778px;}
.y110{bottom:953.206500px;}
.y86{bottom:955.078350px;}
.y52{bottom:955.588500px;}
.ye2{bottom:961.710951px;}
.y92{bottom:963.582000px;}
.ye1{bottom:964.771500px;}
.y140{bottom:966.558000px;}
.y220{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y85{bottom:971.575744px;}
.y10f{bottom:972.765000px;}
.y51{bottom:975.147000px;}
.y257{bottom:981.355622px;}
.y91{bottom:983.140500px;}
.y21f{bottom:986.541957px;}
.y84{bottom:988.073138px;}
.ydf{bottom:992.154000px;}
.ye0{bottom:994.620000px;}
.y50{bottom:994.621500px;}
.y21e{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y90{bottom:1002.615000px;}
.y10d{bottom:1004.314397px;}
.yde{bottom:1011.628500px;}
.y83{bottom:1013.584819px;}
.y4f{bottom:1014.094500px;}
.y21d{bottom:1015.116000px;}
.y281{bottom:1015.370396px;}
.y10b{bottom:1016.390171px;}
.y10e{bottom:1020.046500px;}
.y10a{bottom:1020.048000px;}
.y8f{bottom:1022.089500px;}
.y256{bottom:1029.316622px;}
.y82{bottom:1030.082212px;}
.y4e{bottom:1033.653000px;}
.y21c{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y10c{bottom:1037.224500px;}
.y8e{bottom:1041.562500px;}
.y81{bottom:1046.579606px;}
.y21b{bottom:1048.791179px;}
.y109{bottom:1058.569500px;}
.y4d{bottom:1059.079500px;}
.y8d{bottom:1061.121000px;}
.y80{bottom:1063.077000px;}
.y2a7{bottom:1063.331397px;}
.y28{bottom:1107.042000px;}
.y7d{bottom:1114.101000px;}
.y7f{bottom:1118.692500px;}
.hf{height:18.538650px;}
.h2a{height:22.492485px;}
.h18{height:25.631146px;}
.h27{height:26.999100px;}
.h19{height:27.899070px;}
.h4{height:27.932275px;}
.h13{height:28.476725px;}
.h29{height:29.996550px;}
.h8{height:34.781100px;}
.hb{height:35.554243px;}
.h28{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hd{height:39.119511px;}
.hc{height:40.559493px;}
.h3{height:41.904000px;}
.h1a{height:42.720000px;}
.h7{height:44.175000px;}
.ha{height:45.000000px;}
.h24{height:46.320000px;}
.h12{height:46.500000px;}
.h26{height:48.767100px;}
.h1d{height:50.453146px;}
.h16{height:50.465146px;}
.h10{height:52.800000px;}
.h11{height:53.999550px;}
.h21{height:55.553146px;}
.h1f{height:55.559146px;}
.h14{height:55.565146px;}
.he{height:55.871534px;}
.h15{height:58.742194px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h1b{height:98.060194px;}
.h9{height:99.071616px;}
.h22{height:100.443315px;}
.h1e{height:102.485817px;}
.h20{height:117.747315px;}
.h17{height:119.783817px;}
.h1c{height:144.276000px;}
.h23{height:144.282000px;}
.h25{height:167.757201px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:52.044150px;}
.x10{left:54.000000px;}
.x11{left:71.433000px;}
.x38{left:259.200000px;}
.x3d{left:270.000000px;}
.x1{left:300.018000px;}
.x44{left:307.332000px;}
.x12{left:317.961000px;}
.x45{left:332.247289px;}
.x47{left:340.497185px;}
.x4e{left:357.589390px;}
.x4d{left:373.661989px;}
.x4b{left:399.939261px;}
.xa{left:406.063500px;}
.xb{left:411.591000px;}
.x2{left:414.312000px;}
.x3{left:419.839500px;}
.x3b{left:435.996000px;}
.x3e{left:441.525000px;}
.x3c{left:444.585000px;}
.x29{left:452.664000px;}
.x48{left:455.468948px;}
.x2a{left:461.679000px;}
.x4f{left:463.888861px;}
.x4a{left:465.674439px;}
.x3f{left:471.883500px;}
.x40{left:475.369500px;}
.xc{left:501.987000px;}
.x32{left:505.728000px;}
.xd{left:507.600000px;}
.x33{left:510.747023px;}
.x46{left:529.113228px;}
.x4{left:530.646000px;}
.x24{left:534.130500px;}
.x5{left:536.173500px;}
.x25{left:539.151023px;}
.x1a{left:540.253500px;}
.x2b{left:542.040620px;}
.x2e{left:543.912023px;}
.x16{left:545.272500px;}
.x20{left:549.864617px;}
.x17{left:551.140500px;}
.x18{left:557.433000px;}
.x19{left:562.450523px;}
.x2f{left:568.830000px;}
.x26{left:571.465500px;}
.x13{left:573.079500px;}
.x2c{left:578.692950px;}
.x1c{left:583.114976px;}
.x1b{left:588.387000px;}
.x21{left:590.088000px;}
.x27{left:592.725000px;}
.x30{left:595.446000px;}
.x2d{left:599.953500px;}
.x1d{left:603.354000px;}
.x4c{left:606.669076px;}
.x28{left:609.391500px;}
.x22{left:612.112500px;}
.x23{left:617.216120px;}
.x31{left:621.298523px;}
.x34{left:625.294500px;}
.x6{left:627.675000px;}
.x41{left:629.971500px;}
.x49{left:636.347499px;}
.xe{left:642.813000px;}
.x7{left:649.870500px;}
.x35{left:653.274023px;}
.x42{left:656.758500px;}
.x43{left:661.180500px;}
.x39{left:714.670500px;}
.x3a{left:723.259500px;}
.x8{left:738.226500px;}
.x37{left:748.347000px;}
.x9{left:752.088000px;}
.x36{left:755.064000px;}
.x1e{left:769.351500px;}
.x1f{left:772.413000px;}
.x14{left:792.226500px;}
.x15{left:798.435000px;}
@media print{
.v14{vertical-align:-43.237333pt;}
.v8{vertical-align:-13.306667pt;}
.vf{vertical-align:-12.400000pt;}
.v13{vertical-align:-10.885333pt;}
.vb{vertical-align:-7.861333pt;}
.v1{vertical-align:-5.445333pt;}
.v4{vertical-align:-2.419383pt;}
.v15{vertical-align:-1.211718pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.810846pt;}
.v3{vertical-align:10.881950pt;}
.vc{vertical-align:13.000280pt;}
.v6{vertical-align:14.810504pt;}
.v12{vertical-align:19.349333pt;}
.v5{vertical-align:22.074667pt;}
.v2{vertical-align:26.608000pt;}
.v9{vertical-align:36.282667pt;}
.ve{vertical-align:47.164617pt;}
.v7{vertical-align:50.490667pt;}
.vd{vertical-align:63.490946pt;}
.va{vertical-align:87.072000pt;}
.v11{vertical-align:107.944179pt;}
.ls5{letter-spacing:-1.123200pt;}
.ls9{letter-spacing:-1.067200pt;}
.lsd{letter-spacing:-1.066653pt;}
.ls43{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.319996pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.213331pt;}
.lsa{letter-spacing:-0.212800pt;}
.ls7{letter-spacing:-0.211997pt;}
.ls6{letter-spacing:-0.211200pt;}
.ls13{letter-spacing:-0.211198pt;}
.ls47{letter-spacing:-0.190548pt;}
.ls8{letter-spacing:-0.188775pt;}
.ls2e{letter-spacing:-0.188423pt;}
.lsb{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.042667pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.101333pt;}
.ls37{letter-spacing:0.118085pt;}
.ls3a{letter-spacing:0.133333pt;}
.ls2c{letter-spacing:0.170667pt;}
.ls25{letter-spacing:0.231079pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls20{letter-spacing:1.728000pt;}
.ls2f{letter-spacing:2.090667pt;}
.ls16{letter-spacing:2.389333pt;}
.ls26{letter-spacing:2.394667pt;}
.ls19{letter-spacing:2.400000pt;}
.ls42{letter-spacing:2.445093pt;}
.ls40{letter-spacing:2.581333pt;}
.ls31{letter-spacing:2.699212pt;}
.ls3d{letter-spacing:2.800501pt;}
.ls50{letter-spacing:3.327958pt;}
.ls4e{letter-spacing:4.236747pt;}
.ls4f{letter-spacing:4.535410pt;}
.ls4d{letter-spacing:4.539677pt;}
.ls3{letter-spacing:8.396695pt;}
.ls46{letter-spacing:8.985488pt;}
.ls49{letter-spacing:9.173219pt;}
.ls2{letter-spacing:9.232951pt;}
.ls45{letter-spacing:9.288417pt;}
.ls4a{letter-spacing:9.476148pt;}
.ls33{letter-spacing:11.136000pt;}
.ls11{letter-spacing:11.194667pt;}
.ls34{letter-spacing:11.210667pt;}
.ls3c{letter-spacing:11.264501pt;}
.ls1e{letter-spacing:11.418667pt;}
.ls38{letter-spacing:11.434667pt;}
.ls14{letter-spacing:11.445333pt;}
.ls3b{letter-spacing:11.447189pt;}
.ls10{letter-spacing:11.498667pt;}
.ls4c{letter-spacing:11.504000pt;}
.ls27{letter-spacing:11.514667pt;}
.ls3e{letter-spacing:11.520000pt;}
.ls24{letter-spacing:11.520291pt;}
.ls2d{letter-spacing:11.525333pt;}
.ls12{letter-spacing:11.562667pt;}
.ls48{letter-spacing:11.648000pt;}
.ls1f{letter-spacing:11.674667pt;}
.ls28{letter-spacing:11.685333pt;}
.ls15{letter-spacing:11.786667pt;}
.lsf{letter-spacing:11.802667pt;}
.ls44{letter-spacing:11.845333pt;}
.ls4b{letter-spacing:11.866667pt;}
.ls2a{letter-spacing:11.978667pt;}
.ls1d{letter-spacing:12.645333pt;}
.ls1b{letter-spacing:14.869333pt;}
.ls18{letter-spacing:15.168000pt;}
.ls41{letter-spacing:16.793040pt;}
.ls3f{letter-spacing:17.611168pt;}
.ls35{letter-spacing:17.616421pt;}
.ls0{letter-spacing:18.474436pt;}
.ls1{letter-spacing:18.478702pt;}
.ls21{letter-spacing:19.080764pt;}
.ls17{letter-spacing:19.381544pt;}
.ls29{letter-spacing:21.824000pt;}
.ls22{letter-spacing:23.338667pt;}
.ls36{letter-spacing:38.757333pt;}
.ls1a{letter-spacing:56.266877pt;}
.ls39{letter-spacing:104.064000pt;}
.wsc5{word-spacing:-41.653333pt;}
.ws23{word-spacing:-33.023872pt;}
.wsa5{word-spacing:-26.666667pt;}
.ws27{word-spacing:-22.442386pt;}
.ws108{word-spacing:-17.772652pt;}
.wsa6{word-spacing:-15.999467pt;}
.wsc1{word-spacing:-14.896000pt;}
.wsea{word-spacing:-14.768000pt;}
.ws7c{word-spacing:-14.533333pt;}
.ws128{word-spacing:-11.989183pt;}
.ws15{word-spacing:-11.775853pt;}
.ws3f{word-spacing:-10.346537pt;}
.ws2e{word-spacing:-9.599880pt;}
.wsc0{word-spacing:-5.096975pt;}
.ws109{word-spacing:-3.763169pt;}
.ws106{word-spacing:-3.628770pt;}
.ws145{word-spacing:-3.383424pt;}
.ws16e{word-spacing:-3.212760pt;}
.ws163{word-spacing:-3.199960pt;}
.ws166{word-spacing:-3.195693pt;}
.ws11f{word-spacing:-3.187160pt;}
.ws12e{word-spacing:-3.148761pt;}
.ws9{word-spacing:-3.110361pt;}
.ws146{word-spacing:-3.106095pt;}
.ws14d{word-spacing:-3.101828pt;}
.ws142{word-spacing:-3.097561pt;}
.ws143{word-spacing:-3.093295pt;}
.ws152{word-spacing:-3.084761pt;}
.ws144{word-spacing:-3.080495pt;}
.ws22{word-spacing:-3.075467pt;}
.ws12b{word-spacing:-3.067695pt;}
.ws16d{word-spacing:-3.050629pt;}
.ws12f{word-spacing:-3.042095pt;}
.ws175{word-spacing:-3.029295pt;}
.ws127{word-spacing:-3.025029pt;}
.ws3{word-spacing:-3.000000pt;}
.ws150{word-spacing:-2.999429pt;}
.ws173{word-spacing:-2.995163pt;}
.ws11e{word-spacing:-2.982363pt;}
.ws4{word-spacing:-2.976000pt;}
.wsd{word-spacing:-2.973829pt;}
.wsb{word-spacing:-2.969563pt;}
.ws162{word-spacing:-2.965296pt;}
.ws169{word-spacing:-2.961030pt;}
.ws151{word-spacing:-2.956763pt;}
.ws1c{word-spacing:-2.953867pt;}
.ws13a{word-spacing:-2.952496pt;}
.ws6{word-spacing:-2.947200pt;}
.wsf{word-spacing:-2.943963pt;}
.ws15f{word-spacing:-2.939697pt;}
.ws134{word-spacing:-2.931163pt;}
.ws71{word-spacing:-2.926897pt;}
.ws11a{word-spacing:-2.922630pt;}
.ws11b{word-spacing:-2.918364pt;}
.ws11c{word-spacing:-2.914097pt;}
.ws119{word-spacing:-2.909830pt;}
.ws10{word-spacing:-2.905564pt;}
.wsa{word-spacing:-2.897030pt;}
.ws17{word-spacing:-2.893067pt;}
.ws117{word-spacing:-2.892764pt;}
.ws14a{word-spacing:-2.888497pt;}
.ws16{word-spacing:-2.888000pt;}
.ws132{word-spacing:-2.884231pt;}
.ws118{word-spacing:-2.879964pt;}
.ws11{word-spacing:-2.875697pt;}
.ws14{word-spacing:-2.867164pt;}
.ws141{word-spacing:-2.862898pt;}
.ws21{word-spacing:-2.862667pt;}
.ws139{word-spacing:-2.858631pt;}
.ws114{word-spacing:-2.854364pt;}
.ws15a{word-spacing:-2.850098pt;}
.ws159{word-spacing:-2.845831pt;}
.ws148{word-spacing:-2.841564pt;}
.ws15e{word-spacing:-2.837298pt;}
.ws158{word-spacing:-2.833031pt;}
.ws16a{word-spacing:-2.828765pt;}
.wsc{word-spacing:-2.824498pt;}
.ws131{word-spacing:-2.820231pt;}
.ws1a{word-spacing:-2.817067pt;}
.wse9{word-spacing:-2.815965pt;}
.ws7{word-spacing:-2.812800pt;}
.ws140{word-spacing:-2.811698pt;}
.ws156{word-spacing:-2.803165pt;}
.ws11d{word-spacing:-2.798898pt;}
.ws8{word-spacing:-2.798400pt;}
.ws16b{word-spacing:-2.794632pt;}
.ws26{word-spacing:-2.790365pt;}
.ws1b{word-spacing:-2.786667pt;}
.ws126{word-spacing:-2.786099pt;}
.ws12{word-spacing:-2.781832pt;}
.ws24{word-spacing:-2.777565pt;}
.ws161{word-spacing:-2.773299pt;}
.ws13e{word-spacing:-2.769032pt;}
.ws20{word-spacing:-2.766400pt;}
.ws15c{word-spacing:-2.756232pt;}
.ws157{word-spacing:-2.751966pt;}
.ws16f{word-spacing:-2.747699pt;}
.ws138{word-spacing:-2.743432pt;}
.ws13c{word-spacing:-2.739166pt;}
.ws164{word-spacing:-2.734899pt;}
.ws170{word-spacing:-2.726366pt;}
.ws13d{word-spacing:-2.713566pt;}
.ws116{word-spacing:-2.709299pt;}
.wse{word-spacing:-2.700766pt;}
.ws160{word-spacing:-2.687966pt;}
.ws13{word-spacing:-2.683700pt;}
.ws1f{word-spacing:-2.675200pt;}
.ws155{word-spacing:-2.670900pt;}
.ws5{word-spacing:-2.668800pt;}
.ws147{word-spacing:-2.666633pt;}
.ws16c{word-spacing:-2.662367pt;}
.ws171{word-spacing:-2.658100pt;}
.ws172{word-spacing:-2.653833pt;}
.ws129{word-spacing:-2.645300pt;}
.ws14b{word-spacing:-2.636767pt;}
.ws149{word-spacing:-2.632500pt;}
.ws12c{word-spacing:-2.628234pt;}
.ws115{word-spacing:-2.615434pt;}
.ws136{word-spacing:-2.611167pt;}
.ws167{word-spacing:-2.598368pt;}
.ws125{word-spacing:-2.589834pt;}
.ws19{word-spacing:-2.589067pt;}
.ws135{word-spacing:-2.585568pt;}
.ws133{word-spacing:-2.572768pt;}
.ws153{word-spacing:-2.568501pt;}
.ws120{word-spacing:-2.555701pt;}
.ws12a{word-spacing:-2.551435pt;}
.ws15d{word-spacing:-2.525835pt;}
.ws174{word-spacing:-2.517302pt;}
.ws154{word-spacing:-2.513035pt;}
.ws1{word-spacing:-2.505600pt;}
.ws168{word-spacing:-2.504502pt;}
.ws122{word-spacing:-2.500235pt;}
.ws165{word-spacing:-2.495969pt;}
.ws1d{word-spacing:-2.487733pt;}
.ws14c{word-spacing:-2.483169pt;}
.ws121{word-spacing:-2.470369pt;}
.ws15b{word-spacing:-2.466103pt;}
.ws1e{word-spacing:-2.462400pt;}
.ws14f{word-spacing:-2.461836pt;}
.ws124{word-spacing:-2.457569pt;}
.ws130{word-spacing:-2.444769pt;}
.ws123{word-spacing:-2.440503pt;}
.ws137{word-spacing:-2.397837pt;}
.ws13b{word-spacing:-2.385037pt;}
.ws0{word-spacing:-2.355171pt;}
.ws18{word-spacing:-2.340800pt;}
.ws14e{word-spacing:-2.269838pt;}
.ws2{word-spacing:-2.025600pt;}
.ws3e{word-spacing:-1.356783pt;}
.ws3b{word-spacing:-1.343983pt;}
.ws3a{word-spacing:-1.309850pt;}
.ws3d{word-spacing:-1.254384pt;}
.ws39{word-spacing:-1.198918pt;}
.wsad{word-spacing:-1.029333pt;}
.ws3c{word-spacing:-1.006921pt;}
.wsae{word-spacing:-0.976000pt;}
.ws43{word-spacing:-0.938655pt;}
.wsa9{word-spacing:-0.933333pt;}
.wsab{word-spacing:-0.928000pt;}
.wsa8{word-spacing:-0.896000pt;}
.ws78{word-spacing:-0.887456pt;}
.ws2a{word-spacing:-0.840523pt;}
.ws46{word-spacing:-0.814923pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws76{word-spacing:-0.797857pt;}
.ws40{word-spacing:-0.793590pt;}
.ws34{word-spacing:-0.780790pt;}
.ws7b{word-spacing:-0.763724pt;}
.ws2d{word-spacing:-0.759457pt;}
.ws63{word-spacing:-0.757333pt;}
.ws48{word-spacing:-0.725324pt;}
.wsce{word-spacing:-0.721058pt;}
.ws77{word-spacing:-0.716791pt;}
.ws32{word-spacing:-0.703991pt;}
.wsac{word-spacing:-0.698667pt;}
.wsfe{word-spacing:-0.691191pt;}
.wse2{word-spacing:-0.688000pt;}
.wsf5{word-spacing:-0.674125pt;}
.wsf3{word-spacing:-0.669858pt;}
.wse4{word-spacing:-0.666667pt;}
.wse7{word-spacing:-0.665592pt;}
.ws36{word-spacing:-0.661325pt;}
.ws74{word-spacing:-0.657058pt;}
.wsf9{word-spacing:-0.652792pt;}
.ws42{word-spacing:-0.644259pt;}
.wsfd{word-spacing:-0.639992pt;}
.wsff{word-spacing:-0.634667pt;}
.ws2b{word-spacing:-0.627192pt;}
.ws30{word-spacing:-0.622926pt;}
.ws38{word-spacing:-0.614392pt;}
.ws93{word-spacing:-0.608000pt;}
.ws4c{word-spacing:-0.605859pt;}
.ws44{word-spacing:-0.601592pt;}
.ws47{word-spacing:-0.597326pt;}
.wsd2{word-spacing:-0.584526pt;}
.ws49{word-spacing:-0.575993pt;}
.ws2c{word-spacing:-0.571726pt;}
.ws35{word-spacing:-0.567460pt;}
.ws41{word-spacing:-0.563193pt;}
.ws72{word-spacing:-0.558926pt;}
.ws28{word-spacing:-0.554660pt;}
.wsd5{word-spacing:-0.549333pt;}
.wse8{word-spacing:-0.546127pt;}
.ws7a{word-spacing:-0.541860pt;}
.ws8c{word-spacing:-0.522667pt;}
.wscf{word-spacing:-0.520527pt;}
.wsfb{word-spacing:-0.517333pt;}
.ws2f{word-spacing:-0.507727pt;}
.ws73{word-spacing:-0.494927pt;}
.ws4b{word-spacing:-0.482127pt;}
.ws101{word-spacing:-0.474667pt;}
.ws37{word-spacing:-0.473594pt;}
.ws58{word-spacing:-0.469333pt;}
.ws33{word-spacing:-0.469327pt;}
.wsd4{word-spacing:-0.458667pt;}
.ws57{word-spacing:-0.453333pt;}
.ws97{word-spacing:-0.448000pt;}
.ws31{word-spacing:-0.443728pt;}
.wsec{word-spacing:-0.442667pt;}
.wsd0{word-spacing:-0.435195pt;}
.wsdb{word-spacing:-0.432000pt;}
.wsf6{word-spacing:-0.421333pt;}
.ws45{word-spacing:-0.418128pt;}
.ws67{word-spacing:-0.416000pt;}
.ws70{word-spacing:-0.410667pt;}
.ws6a{word-spacing:-0.405333pt;}
.ws75{word-spacing:-0.405328pt;}
.ws86{word-spacing:-0.384000pt;}
.ws6d{word-spacing:-0.378667pt;}
.wsb7{word-spacing:-0.373333pt;}
.wsf8{word-spacing:-0.371195pt;}
.wse1{word-spacing:-0.368000pt;}
.ws4a{word-spacing:-0.366929pt;}
.wse3{word-spacing:-0.362667pt;}
.ws29{word-spacing:-0.358396pt;}
.ws92{word-spacing:-0.357333pt;}
.ws66{word-spacing:-0.352000pt;}
.ws7d{word-spacing:-0.346667pt;}
.wsc8{word-spacing:-0.341333pt;}
.ws4f{word-spacing:-0.336000pt;}
.wsd7{word-spacing:-0.330667pt;}
.ws8f{word-spacing:-0.325333pt;}
.wsf4{word-spacing:-0.324263pt;}
.ws5f{word-spacing:-0.320000pt;}
.wsc4{word-spacing:-0.314667pt;}
.ws82{word-spacing:-0.309333pt;}
.ws79{word-spacing:-0.307196pt;}
.ws55{word-spacing:-0.304000pt;}
.wsfa{word-spacing:-0.298667pt;}
.wse0{word-spacing:-0.298663pt;}
.wsd8{word-spacing:-0.293333pt;}
.ws8b{word-spacing:-0.288000pt;}
.wsa1{word-spacing:-0.282667pt;}
.ws105{word-spacing:-0.277333pt;}
.wscc{word-spacing:-0.272000pt;}
.ws89{word-spacing:-0.266667pt;}
.ws65{word-spacing:-0.261333pt;}
.wsb1{word-spacing:-0.256000pt;}
.ws60{word-spacing:-0.250667pt;}
.ws51{word-spacing:-0.245333pt;}
.ws6f{word-spacing:-0.240000pt;}
.ws52{word-spacing:-0.234667pt;}
.ws7e{word-spacing:-0.229333pt;}
.ws62{word-spacing:-0.224000pt;}
.wsa0{word-spacing:-0.218667pt;}
.wsdf{word-spacing:-0.217597pt;}
.wsdc{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.208000pt;}
.wsd9{word-spacing:-0.202667pt;}
.ws94{word-spacing:-0.197333pt;}
.wsed{word-spacing:-0.192000pt;}
.wsd1{word-spacing:-0.187731pt;}
.ws7f{word-spacing:-0.186667pt;}
.ws4e{word-spacing:-0.181333pt;}
.ws8a{word-spacing:-0.176000pt;}
.ws5a{word-spacing:-0.170667pt;}
.wsb5{word-spacing:-0.165333pt;}
.wsc9{word-spacing:-0.160000pt;}
.ws6c{word-spacing:-0.154667pt;}
.ws61{word-spacing:-0.149333pt;}
.wsee{word-spacing:-0.149331pt;}
.ws5c{word-spacing:-0.144000pt;}
.ws50{word-spacing:-0.138667pt;}
.wsf0{word-spacing:-0.136532pt;}
.wsd6{word-spacing:-0.133333pt;}
.wsbe{word-spacing:-0.128000pt;}
.wsde{word-spacing:-0.127998pt;}
.wsb4{word-spacing:-0.122667pt;}
.ws90{word-spacing:-0.117333pt;}
.wsbb{word-spacing:-0.112000pt;}
.wscb{word-spacing:-0.106667pt;}
.ws69{word-spacing:-0.101333pt;}
.wscd{word-spacing:-0.098132pt;}
.ws83{word-spacing:-0.096000pt;}
.ws54{word-spacing:-0.090667pt;}
.ws9c{word-spacing:-0.085333pt;}
.wsf7{word-spacing:-0.085332pt;}
.ws88{word-spacing:-0.080000pt;}
.wsb6{word-spacing:-0.074667pt;}
.wsc2{word-spacing:-0.069333pt;}
.wse6{word-spacing:-0.068266pt;}
.ws5d{word-spacing:-0.064000pt;}
.wse5{word-spacing:-0.059733pt;}
.ws85{word-spacing:-0.058667pt;}
.wsef{word-spacing:-0.055466pt;}
.wsb3{word-spacing:-0.053333pt;}
.wsd3{word-spacing:-0.048000pt;}
.ws9a{word-spacing:-0.042667pt;}
.ws98{word-spacing:-0.037333pt;}
.wsbd{word-spacing:-0.032000pt;}
.wsdd{word-spacing:-0.026667pt;}
.wsc6{word-spacing:-0.021333pt;}
.wsba{word-spacing:-0.016000pt;}
.wsca{word-spacing:-0.010667pt;}
.ws59{word-spacing:-0.005333pt;}
.ws4d{word-spacing:0.000000pt;}
.ws64{word-spacing:0.005333pt;}
.ws68{word-spacing:0.010667pt;}
.ws96{word-spacing:0.021333pt;}
.ws104{word-spacing:0.026667pt;}
.wsda{word-spacing:0.032000pt;}
.ws99{word-spacing:0.037333pt;}
.wsbf{word-spacing:0.042667pt;}
.wsbc{word-spacing:0.048000pt;}
.ws6b{word-spacing:0.053333pt;}
.ws80{word-spacing:0.064000pt;}
.wsa7{word-spacing:0.069333pt;}
.ws9d{word-spacing:0.074667pt;}
.wseb{word-spacing:0.085333pt;}
.ws87{word-spacing:0.089599pt;}
.wsa4{word-spacing:0.090667pt;}
.ws5e{word-spacing:0.096000pt;}
.ws5b{word-spacing:0.106667pt;}
.ws103{word-spacing:0.112000pt;}
.ws100{word-spacing:0.117333pt;}
.ws8d{word-spacing:0.138667pt;}
.ws9f{word-spacing:0.144000pt;}
.ws8e{word-spacing:0.149333pt;}
.ws9e{word-spacing:0.154667pt;}
.ws6e{word-spacing:0.160000pt;}
.ws81{word-spacing:0.165333pt;}
.wsf2{word-spacing:0.170665pt;}
.wsf1{word-spacing:0.174931pt;}
.wsc7{word-spacing:0.191998pt;}
.ws53{word-spacing:0.197333pt;}
.ws9b{word-spacing:0.211198pt;}
.wsa2{word-spacing:0.249598pt;}
.wsfc{word-spacing:0.298663pt;}
.ws112{word-spacing:0.304000pt;}
.ws95{word-spacing:0.319997pt;}
.ws102{word-spacing:0.341333pt;}
.ws84{word-spacing:0.345597pt;}
.ws91{word-spacing:0.383997pt;}
.ws107{word-spacing:0.384000pt;}
.wsa3{word-spacing:0.389333pt;}
.wsb0{word-spacing:0.394667pt;}
.ws10b{word-spacing:0.426667pt;}
.wsaf{word-spacing:0.490667pt;}
.ws10f{word-spacing:0.576000pt;}
.ws10c{word-spacing:0.592000pt;}
.ws10d{word-spacing:0.677333pt;}
.ws10e{word-spacing:0.800000pt;}
.ws111{word-spacing:0.906667pt;}
.ws110{word-spacing:0.912000pt;}
.wsb9{word-spacing:1.002667pt;}
.ws10a{word-spacing:1.029333pt;}
.wsb2{word-spacing:1.068516pt;}
.wsb8{word-spacing:1.125249pt;}
.wsc3{word-spacing:1.254945pt;}
.ws25{word-spacing:30.745216pt;}
.ws12d{word-spacing:41.637880pt;}
.ws13f{word-spacing:41.642146pt;}
.ws113{word-spacing:41.697612pt;}
._12{margin-left:-18.888297pt;}
._13{margin-left:-16.959788pt;}
._6{margin-left:-7.485411pt;}
._a{margin-left:-4.290146pt;}
._5{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._4{width:1.003200pt;}
._c{width:2.459242pt;}
._1{width:3.648000pt;}
._f{width:8.191898pt;}
._2{width:9.808944pt;}
._9{width:11.029333pt;}
._3{width:12.099200pt;}
._8{width:12.994133pt;}
._e{width:14.212089pt;}
._11{width:18.017908pt;}
._d{width:26.576000pt;}
._b{width:43.678933pt;}
._10{width:1260.566643pt;}
._7{width:1283.495423pt;}
.fsd{font-size:26.666667pt;}
.fse{font-size:28.440000pt;}
.fs4{font-size:31.995733pt;}
.fsc{font-size:31.998933pt;}
.fsb{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:4.033333pt;}
.y29{bottom:7.567971pt;}
.y2a{bottom:48.000000pt;}
.y152{bottom:106.356675pt;}
.y21a{bottom:110.664691pt;}
.yb8{bottom:110.665333pt;}
.ydd{bottom:110.666667pt;}
.y4c{bottom:110.666724pt;}
.y17b{bottom:111.200000pt;}
.y17e{bottom:111.497333pt;}
.y1ba{bottom:111.649333pt;}
.y2a6{bottom:112.332008pt;}
.y1a5{bottom:116.108000pt;}
.y1f7{bottom:116.640000pt;}
.y1d3{bottom:120.417333pt;}
.y7c{bottom:121.478667pt;}
.y255{bottom:121.628958pt;}
.y219{bottom:123.364266pt;}
.y2a5{bottom:124.955850pt;}
.y4b{bottom:125.331074pt;}
.y151{bottom:126.993217pt;}
.yb7{bottom:127.976000pt;}
.y17a{bottom:128.509333pt;}
.y17d{bottom:128.882667pt;}
.y1b9{bottom:128.958667pt;}
.y1a4{bottom:133.418667pt;}
.y1f6{bottom:133.949333pt;}
.y254{bottom:134.328533pt;}
.y218{bottom:135.988108pt;}
.y2a4{bottom:137.654358pt;}
.y1d2{bottom:137.728000pt;}
.y7b{bottom:138.789333pt;}
.y150{bottom:139.691725pt;}
.y4a{bottom:139.995424pt;}
.y280{bottom:140.980183pt;}
.yb6{bottom:145.361333pt;}
.y13f{bottom:145.362667pt;}
.y179{bottom:145.894667pt;}
.y17c{bottom:146.192000pt;}
.y1b8{bottom:146.269333pt;}
.y1a3{bottom:150.728000pt;}
.y1f5{bottom:151.260000pt;}
.y253{bottom:151.638183pt;}
.y14f{bottom:152.315567pt;}
.y217{bottom:153.297758pt;}
.y27f{bottom:153.604025pt;}
.y49{bottom:154.660840pt;}
.y2a3{bottom:154.965075pt;}
.y1d1{bottom:155.037333pt;}
.y7a{bottom:156.100000pt;}
.yb5{bottom:162.670667pt;}
.ydc{bottom:162.672000pt;}
.y178{bottom:163.205333pt;}
.y1b7{bottom:163.580000pt;}
.y252{bottom:164.262025pt;}
.y14e{bottom:165.015142pt;}
.y216{bottom:165.997333pt;}
.y2a2{bottom:167.663583pt;}
.y1a2{bottom:168.113333pt;}
.y1f4{bottom:168.570667pt;}
.y27e{bottom:170.989408pt;}
.y1d0{bottom:172.422667pt;}
.y79{bottom:173.409333pt;}
.y184{bottom:174.690758pt;}
.y13d{bottom:176.731512pt;}
.y251{bottom:176.961600pt;}
.y48{bottom:177.337890pt;}
.y14d{bottom:177.637917pt;}
.y214{bottom:178.695841pt;}
.y215{bottom:178.998770pt;}
.yb4{bottom:179.981333pt;}
.ydb{bottom:179.982667pt;}
.y2a0{bottom:180.287425pt;}
.y2a1{bottom:180.514622pt;}
.y177{bottom:180.516000pt;}
.y1b6{bottom:180.965333pt;}
.y13c{bottom:181.266667pt;}
.y27d{bottom:183.613250pt;}
.y1a1{bottom:185.424000pt;}
.y1f3{bottom:185.956000pt;}
.y1cf{bottom:189.733333pt;}
.y14c{bottom:190.337492pt;}
.y78{bottom:190.794667pt;}
.y47{bottom:192.002240pt;}
.y13e{bottom:192.076000pt;}
.y250{bottom:194.271250pt;}
.y183{bottom:195.327300pt;}
.y213{bottom:196.006558pt;}
.y27c{bottom:196.312825pt;}
.yb3{bottom:197.366667pt;}
.yda{bottom:197.368000pt;}
.y29f{bottom:197.597075pt;}
.y176{bottom:197.901333pt;}
.y1b5{bottom:198.274667pt;}
.y13b{bottom:202.054667pt;}
.y1a0{bottom:202.734667pt;}
.y14b{bottom:203.036000pt;}
.y1f2{bottom:203.266667pt;}
.y27{bottom:206.590800pt;}
.y46{bottom:206.666590pt;}
.y24f{bottom:206.970825pt;}
.y1ce{bottom:207.044000pt;}
.y182{bottom:208.025808pt;}
.y77{bottom:208.105333pt;}
.y212{bottom:208.629333pt;}
.y29e{bottom:210.296650pt;}
.y27b{bottom:213.622475pt;}
.yb2{bottom:214.677333pt;}
.yd9{bottom:214.678667pt;}
.y175{bottom:215.210667pt;}
.y1b4{bottom:215.585333pt;}
.y13a{bottom:219.364000pt;}
.y24e{bottom:219.594667pt;}
.y19f{bottom:220.120000pt;}
.y1f1{bottom:220.576000pt;}
.y181{bottom:220.649650pt;}
.y45{bottom:221.330940pt;}
.y1cd{bottom:224.353333pt;}
.y26{bottom:225.261467pt;}
.y76{bottom:225.416000pt;}
.y27a{bottom:226.322050pt;}
.y211{bottom:226.696000pt;}
.y29d{bottom:227.607367pt;}
.yb1{bottom:231.986667pt;}
.yd8{bottom:231.988000pt;}
.y174{bottom:232.521333pt;}
.y1b3{bottom:232.970667pt;}
.y180{bottom:233.349224pt;}
.y44{bottom:235.995290pt;}
.y139{bottom:236.749333pt;}
.y24d{bottom:236.980050pt;}
.y19e{bottom:237.429333pt;}
.y19c{bottom:237.430667pt;}
.y1f0{bottom:237.961333pt;}
.y29c{bottom:240.305875pt;}
.y1cc{bottom:241.740000pt;}
.y75{bottom:242.801333pt;}
.y19d{bottom:243.325333pt;}
.y279{bottom:243.631700pt;}
.y25{bottom:243.932133pt;}
.y17f{bottom:245.972000pt;}
.y108{bottom:249.297333pt;}
.yd7{bottom:249.298667pt;}
.y24c{bottom:249.603892pt;}
.y173{bottom:249.906667pt;}
.y1b2{bottom:250.281333pt;}
.y43{bottom:250.659640pt;}
.yb0{bottom:254.664000pt;}
.y19b{bottom:254.740000pt;}
.y199{bottom:254.742667pt;}
.y1ef{bottom:255.272000pt;}
.y278{bottom:256.331275pt;}
.y29b{bottom:257.616592pt;}
.y1cb{bottom:259.049333pt;}
.y74{bottom:260.112000pt;}
.y19a{bottom:260.712000pt;}
.y24b{bottom:262.302400pt;}
.y24{bottom:262.604067pt;}
.y134{bottom:263.055289pt;}
.y136{bottom:263.509242pt;}
.y107{bottom:266.682667pt;}
.yd6{bottom:266.684000pt;}
.y172{bottom:267.217333pt;}
.y1b1{bottom:267.592000pt;}
.y29a{bottom:270.315100pt;}
.y198{bottom:272.129333pt;}
.y1ee{bottom:272.582667pt;}
.y210{bottom:272.808000pt;}
.y42{bottom:273.336690pt;}
.y277{bottom:273.640925pt;}
.y138{bottom:274.243261pt;}
.y132{bottom:274.696846pt;}
.y1ca{bottom:276.360000pt;}
.y133{bottom:276.813333pt;}
.y137{bottom:277.417333pt;}
.y131{bottom:277.418667pt;}
.y73{bottom:277.421333pt;}
.y24a{bottom:279.613117pt;}
.y23{bottom:281.274733pt;}
.y299{bottom:282.938942pt;}
.yd5{bottom:283.994667pt;}
.y171{bottom:284.528000pt;}
.y1b0{bottom:284.977333pt;}
.y276{bottom:286.264767pt;}
.y41{bottom:288.001040pt;}
.y106{bottom:289.360000pt;}
.y197{bottom:289.438667pt;}
.y1ed{bottom:289.968000pt;}
.y20f{bottom:290.118667pt;}
.y249{bottom:292.311625pt;}
.y135{bottom:292.762667pt;}
.yaf{bottom:293.520000pt;}
.y1c9{bottom:293.745333pt;}
.y72{bottom:294.806667pt;}
.y22{bottom:299.945400pt;}
.y298{bottom:300.324325pt;}
.yd4{bottom:301.304000pt;}
.y170{bottom:301.837333pt;}
.y1af{bottom:302.286667pt;}
.y40{bottom:302.666457pt;}
.y275{bottom:303.650150pt;}
.y248{bottom:304.935467pt;}
.y196{bottom:306.749333pt;}
.y1ec{bottom:307.278667pt;}
.yae{bottom:310.830667pt;}
.y1c8{bottom:311.056000pt;}
.y71{bottom:312.117333pt;}
.y297{bottom:312.948167pt;}
.y130{bottom:313.929333pt;}
.y20e{bottom:314.156000pt;}
.y3f{bottom:317.330807pt;}
.y21{bottom:318.616067pt;}
.yd3{bottom:318.689333pt;}
.y16f{bottom:319.222667pt;}
.y1ae{bottom:319.597333pt;}
.y274{bottom:320.960867pt;}
.y247{bottom:322.320850pt;}
.y195{bottom:324.060000pt;}
.y1eb{bottom:324.588000pt;}
.yad{bottom:328.216000pt;}
.y1c7{bottom:328.365333pt;}
.y70{bottom:329.428000pt;}
.y296{bottom:330.257817pt;}
.y105{bottom:331.162667pt;}
.y12f{bottom:331.238667pt;}
.y3e{bottom:331.995157pt;}
.y273{bottom:333.659375pt;}
.y246{bottom:334.944692pt;}
.y16e{bottom:336.533333pt;}
.y1ad{bottom:336.908000pt;}
.y20{bottom:337.286733pt;}
.y20d{bottom:338.118667pt;}
.yd2{bottom:341.366667pt;}
.y194{bottom:341.445333pt;}
.y1ea{bottom:341.898667pt;}
.y295{bottom:342.957392pt;}
.yac{bottom:345.526667pt;}
.y1c6{bottom:345.750667pt;}
.y3d{bottom:346.659507pt;}
.y6f{bottom:346.813333pt;}
.y104{bottom:348.472000pt;}
.y12e{bottom:348.624000pt;}
.y272{bottom:350.970092pt;}
.y245{bottom:352.331141pt;}
.y16d{bottom:353.844000pt;}
.y1ac{bottom:354.293333pt;}
.y1f{bottom:355.957400pt;}
.y193{bottom:358.754667pt;}
.y1e9{bottom:359.284000pt;}
.y294{bottom:360.268109pt;}
.y3c{bottom:361.323857pt;}
.y20c{bottom:362.156000pt;}
.yab{bottom:362.837333pt;}
.y271{bottom:363.593934pt;}
.y6e{bottom:364.124000pt;}
.y244{bottom:364.953917pt;}
.y12d{bottom:365.934667pt;}
.y1c5{bottom:368.352000pt;}
.y16c{bottom:371.229333pt;}
.y1ab{bottom:371.602667pt;}
.y293{bottom:372.966617pt;}
.y1e{bottom:374.553333pt;}
.y102{bottom:375.306575pt;}
.y192{bottom:376.065333pt;}
.y1e8{bottom:376.594667pt;}
.y243{bottom:377.653491pt;}
.y100{bottom:380.070667pt;}
.yaa{bottom:380.146667pt;}
.y270{bottom:380.979316pt;}
.y6d{bottom:381.433333pt;}
.y12c{bottom:383.245333pt;}
.y3b{bottom:384.000907pt;}
.yff{bottom:385.512041pt;}
.y20b{bottom:386.118667pt;}
.yd1{bottom:388.236000pt;}
.y16b{bottom:388.540000pt;}
.y103{bottom:389.216000pt;}
.yfe{bottom:389.217333pt;}
.y292{bottom:390.277334pt;}
.y1d{bottom:393.224000pt;}
.y191{bottom:393.450667pt;}
.y26f{bottom:393.603159pt;}
.y1e7{bottom:393.904000pt;}
.y242{bottom:394.963142pt;}
.ya9{bottom:397.532000pt;}
.y1db{bottom:398.590009pt;}
.y6c{bottom:398.744000pt;}
.y1c4{bottom:400.101583pt;}
.y12b{bottom:400.554667pt;}
.y291{bottom:402.975842pt;}
.y101{bottom:404.560000pt;}
.yd0{bottom:405.621333pt;}
.y16a{bottom:405.849333pt;}
.y3a{bottom:406.677957pt;}
.y241{bottom:407.662716pt;}
.y20a{bottom:410.156000pt;}
.y190{bottom:410.761333pt;}
.y26e{bottom:410.988541pt;}
.y1e6{bottom:411.289333pt;}
.y1c{bottom:411.894667pt;}
.ya8{bottom:414.842667pt;}
.y290{bottom:415.599684pt;}
.y6b{bottom:416.129333pt;}
.y12a{bottom:417.940000pt;}
.y1da{bottom:419.301216pt;}
.y240{bottom:420.286558pt;}
.y1c3{bottom:420.737058pt;}
.ycf{bottom:422.932000pt;}
.y169{bottom:423.234667pt;}
.y26d{bottom:423.612384pt;}
.yfd{bottom:425.726667pt;}
.y209{bottom:427.465333pt;}
.y18f{bottom:428.070667pt;}
.y1e5{bottom:428.600000pt;}
.y39{bottom:429.355007pt;}
.y1b{bottom:430.565333pt;}
.y1d9{bottom:431.925058pt;}
.ya7{bottom:432.153333pt;}
.y28f{bottom:432.985066pt;}
.y1c2{bottom:433.436633pt;}
.y6a{bottom:433.440000pt;}
.y23f{bottom:437.596209pt;}
.yce{bottom:440.241333pt;}
.y168{bottom:440.545333pt;}
.y26c{bottom:440.997766pt;}
.yfc{bottom:443.037333pt;}
.y1d8{bottom:444.624633pt;}
.y18e{bottom:445.457333pt;}
.y28e{bottom:445.608909pt;}
.y1e4{bottom:445.910667pt;}
.y127{bottom:445.984000pt;}
.y1c1{bottom:446.060475pt;}
.y1a{bottom:449.236000pt;}
.ya6{bottom:449.538667pt;}
.y23e{bottom:450.295783pt;}
.y69{bottom:450.749333pt;}
.y125{bottom:450.822667pt;}
.y208{bottom:451.504000pt;}
.y38{bottom:452.032056pt;}
.y124{bottom:456.717930pt;}
.y129{bottom:457.247512pt;}
.y1d7{bottom:457.248475pt;}
.ycd{bottom:457.628000pt;}
.y167{bottom:457.856000pt;}
.y26b{bottom:458.308483pt;}
.y1c0{bottom:458.758983pt;}
.y128{bottom:459.968000pt;}
.y123{bottom:459.970667pt;}
.yfb{bottom:460.348000pt;}
.y18d{bottom:462.766667pt;}
.y23d{bottom:462.994291pt;}
.y1e3{bottom:463.296000pt;}
.y37{bottom:466.696406pt;}
.ya5{bottom:466.848000pt;}
.y19{bottom:467.906667pt;}
.y68{bottom:468.134667pt;}
.y1d6{bottom:469.946983pt;}
.y26a{bottom:470.931259pt;}
.y1bf{bottom:471.382825pt;}
.ycc{bottom:474.937333pt;}
.y166{bottom:475.241333pt;}
.y207{bottom:475.465333pt;}
.y28d{bottom:475.618133pt;}
.y126{bottom:476.069333pt;}
.yfa{bottom:477.733333pt;}
.y18c{bottom:480.077333pt;}
.y23c{bottom:480.305008pt;}
.y1e2{bottom:480.606667pt;}
.y1bd{bottom:482.268000pt;}
.y1d5{bottom:482.646558pt;}
.y269{bottom:483.630833pt;}
.y1be{bottom:484.081333pt;}
.y1bc{bottom:484.082558pt;}
.ya4{bottom:484.158667pt;}
.y67{bottom:485.445333pt;}
.y18{bottom:486.577333pt;}
.y28c{bottom:488.317708pt;}
.y36{bottom:489.373456pt;}
.ycb{bottom:492.248000pt;}
.y165{bottom:492.550667pt;}
.y23b{bottom:492.928850pt;}
.yf9{bottom:495.042667pt;}
.y1d4{bottom:495.269333pt;}
.y1bb{bottom:496.705333pt;}
.y122{bottom:497.312000pt;}
.y18b{bottom:497.462667pt;}
.y1e1{bottom:497.916000pt;}
.y206{bottom:499.502667pt;}
.y268{bottom:500.941550pt;}
.ya3{bottom:501.544000pt;}
.y66{bottom:502.756000pt;}
.y35{bottom:504.037806pt;}
.y17{bottom:505.248000pt;}
.y23a{bottom:505.627358pt;}
.yca{bottom:509.633333pt;}
.y164{bottom:509.861333pt;}
.y267{bottom:513.640058pt;}
.y121{bottom:514.622667pt;}
.y18a{bottom:514.773333pt;}
.y1e0{bottom:515.301333pt;}
.y28b{bottom:518.326933pt;}
.y34{bottom:518.703223pt;}
.ya2{bottom:518.854667pt;}
.y65{bottom:520.141333pt;}
.y239{bottom:522.938075pt;}
.y205{bottom:523.465333pt;}
.y16{bottom:523.918667pt;}
.yf8{bottom:525.128000pt;}
.y266{bottom:526.263900pt;}
.yc9{bottom:526.944000pt;}
.y163{bottom:527.172000pt;}
.yf7{bottom:529.966667pt;}
.y28a{bottom:530.950775pt;}
.y120{bottom:531.932000pt;}
.y189{bottom:532.082667pt;}
.y1df{bottom:532.612000pt;}
.y33{bottom:533.367573pt;}
.y238{bottom:535.636583pt;}
.ya1{bottom:536.165333pt;}
.yf6{bottom:536.391512pt;}
.y64{bottom:537.452000pt;}
.yf5{bottom:539.112000pt;}
.y204{bottom:540.774667pt;}
.y15{bottom:542.589333pt;}
.y265{bottom:543.649283pt;}
.yc8{bottom:544.253333pt;}
.y162{bottom:544.557333pt;}
.y32{bottom:548.031923pt;}
.y237{bottom:548.260425pt;}
.y11f{bottom:549.242667pt;}
.y188{bottom:549.393333pt;}
.y1de{bottom:549.922667pt;}
.ya0{bottom:553.474667pt;}
.y63{bottom:554.761333pt;}
.y264{bottom:556.273125pt;}
.y289{bottom:560.960000pt;}
.yc7{bottom:561.564000pt;}
.y161{bottom:561.868000pt;}
.y31{bottom:562.696273pt;}
.y203{bottom:563.452000pt;}
.y236{bottom:565.645808pt;}
.y11e{bottom:566.628000pt;}
.y187{bottom:566.778667pt;}
.y1dd{bottom:567.232000pt;}
.y263{bottom:568.972700pt;}
.y9f{bottom:570.860000pt;}
.yf4{bottom:571.692000pt;}
.y14{bottom:571.917333pt;}
.y62{bottom:572.146667pt;}
.y288{bottom:573.658508pt;}
.y235{bottom:578.269650pt;}
.yc6{bottom:578.949333pt;}
.y160{bottom:579.177333pt;}
.y11d{bottom:583.938667pt;}
.y186{bottom:584.089333pt;}
.y30{bottom:584.541333pt;}
.y1dc{bottom:584.617333pt;}
.y262{bottom:586.282350pt;}
.yf2{bottom:586.809333pt;}
.y9e{bottom:588.170667pt;}
.yf3{bottom:589.001333pt;}
.yf1{bottom:589.004000pt;}
.y61{bottom:589.457333pt;}
.y234{bottom:590.969225pt;}
.yc5{bottom:596.260000pt;}
.y15f{bottom:596.562667pt;}
.y261{bottom:598.981925pt;}
.y11c{bottom:601.248000pt;}
.y185{bottom:601.398667pt;}
.y202{bottom:602.910667pt;}
.y287{bottom:603.592000pt;}
.y9d{bottom:605.481333pt;}
.yf0{bottom:606.389333pt;}
.y60{bottom:606.768000pt;}
.y233{bottom:608.278875pt;}
.y1fd{bottom:613.040359pt;}
.yc4{bottom:613.569333pt;}
.y15e{bottom:613.873333pt;}
.y260{bottom:616.291575pt;}
.y11b{bottom:618.634667pt;}
.y201{bottom:620.296000pt;}
.y232{bottom:620.978450pt;}
.y9c{bottom:622.866667pt;}
.yef{bottom:623.700000pt;}
.y5f{bottom:624.077333pt;}
.y13{bottom:625.513133pt;}
.y1aa{bottom:629.897267pt;}
.yc3{bottom:630.956000pt;}
.y15d{bottom:631.184000pt;}
.y231{bottom:633.602292pt;}
.y1fc{bottom:633.752633pt;}
.y286{bottom:633.979887pt;}
.y11a{bottom:635.944000pt;}
.y9b{bottom:640.176000pt;}
.yee{bottom:641.009333pt;}
.y5e{bottom:641.464000pt;}
.y200{bottom:642.897333pt;}
.y25f{bottom:646.300800pt;}
.y1fb{bottom:646.376475pt;}
.yc2{bottom:648.265333pt;}
.y15c{bottom:648.569333pt;}
.y1a9{bottom:650.533809pt;}
.y230{bottom:650.987675pt;}
.y12{bottom:652.196533pt;}
.y119{bottom:653.254667pt;}
.yed{bottom:658.394667pt;}
.y5d{bottom:658.773333pt;}
.y285{bottom:658.924642pt;}
.y1fa{bottom:659.074983pt;}
.y2f{bottom:661.796000pt;}
.y9a{bottom:662.853333pt;}
.y1a8{bottom:663.232317pt;}
.y22f{bottom:663.611517pt;}
.y11{bottom:665.499834pt;}
.yc1{bottom:665.576000pt;}
.y15b{bottom:665.880000pt;}
.y118{bottom:670.640000pt;}
.y1f9{bottom:671.698825pt;}
.yec{bottom:675.705333pt;}
.y1a7{bottom:675.931891pt;}
.y5c{bottom:676.084000pt;}
.y22e{bottom:676.310025pt;}
.y2e{bottom:677.140000pt;}
.y10{bottom:678.879933pt;}
.y14a{bottom:680.544000pt;}
.yc0{bottom:682.961333pt;}
.y15a{bottom:683.189333pt;}
.y1f8{bottom:684.397333pt;}
.y117{bottom:687.950667pt;}
.y1a6{bottom:688.554667pt;}
.y22c{bottom:688.933867pt;}
.y22d{bottom:689.161064pt;}
.y1ff{bottom:690.369333pt;}
.yf{bottom:692.183233pt;}
.y2d{bottom:692.409333pt;}
.yeb{bottom:693.016000pt;}
.y5b{bottom:693.469333pt;}
.y149{bottom:697.853333pt;}
.ybf{bottom:700.272000pt;}
.y159{bottom:700.500000pt;}
.y25e{bottom:701.633442pt;}
.y99{bottom:701.708000pt;}
.y284{bottom:701.859572pt;}
.y116{bottom:705.260000pt;}
.ye{bottom:705.487600pt;}
.y22b{bottom:706.319250pt;}
.y2c{bottom:707.754667pt;}
.yea{bottom:710.401333pt;}
.y5a{bottom:710.780000pt;}
.y148{bottom:715.164000pt;}
.ybe{bottom:717.581333pt;}
.y158{bottom:717.885333pt;}
.yd{bottom:718.866633pt;}
.y22a{bottom:718.943092pt;}
.y98{bottom:719.018667pt;}
.y115{bottom:722.646667pt;}
.y2b{bottom:723.098667pt;}
.ye9{bottom:727.710667pt;}
.y59{bottom:728.089333pt;}
.y1fe{bottom:730.432000pt;}
.y228{bottom:731.642666pt;}
.y229{bottom:731.868797pt;}
.yc{bottom:732.171000pt;}
.y147{bottom:732.549333pt;}
.ybd{bottom:734.968000pt;}
.y157{bottom:735.196000pt;}
.y97{bottom:736.328000pt;}
.y114{bottom:739.956000pt;}
.y25d{bottom:744.265442pt;}
.y283{bottom:744.644104pt;}
.y58{bottom:745.474667pt;}
.yb{bottom:745.550033pt;}
.y227{bottom:748.952317pt;}
.y146{bottom:749.860000pt;}
.ybc{bottom:752.277333pt;}
.y156{bottom:752.505333pt;}
.y8c{bottom:752.958667pt;}
.y25c{bottom:756.965017pt;}
.y113{bottom:757.266667pt;}
.ye8{bottom:757.719908pt;}
.ya{bottom:758.853333pt;}
.y96{bottom:759.006067pt;}
.y226{bottom:761.651891pt;}
.y57{bottom:762.785333pt;}
.y145{bottom:767.169333pt;}
.y8b{bottom:767.623017pt;}
.ye6{bottom:768.001374pt;}
.ybb{bottom:769.588000pt;}
.y155{bottom:769.890667pt;}
.ye5{bottom:771.704000pt;}
.y225{bottom:774.274667pt;}
.y112{bottom:774.576000pt;}
.y56{bottom:780.096000pt;}
.y9{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.y95{bottom:783.042667pt;}
.y144{bottom:784.556000pt;}
.yba{bottom:786.897333pt;}
.ye7{bottom:786.973333pt;}
.y25b{bottom:786.974241pt;}
.y154{bottom:787.201333pt;}
.y282{bottom:787.277171pt;}
.y8{bottom:788.182667pt;}
.y8a{bottom:790.300067pt;}
.y224{bottom:791.661116pt;}
.y111{bottom:797.253333pt;}
.y55{bottom:797.405333pt;}
.y5{bottom:797.556000pt;}
.y143{bottom:801.865333pt;}
.y6{bottom:802.846667pt;}
.y223{bottom:804.284958pt;}
.y153{bottom:804.512000pt;}
.y89{bottom:804.964417pt;}
.ye4{bottom:808.214667pt;}
.yb9{bottom:809.574667pt;}
.y54{bottom:814.792000pt;}
.y222{bottom:816.983466pt;}
.y142{bottom:819.176000pt;}
.y88{bottom:819.629833pt;}
.y94{bottom:821.897333pt;}
.ye3{bottom:825.524000pt;}
.y25a{bottom:829.607309pt;}
.y4{bottom:830.817867pt;}
.y53{bottom:832.101333pt;}
.y87{bottom:834.294183pt;}
.y141{bottom:836.485333pt;}
.y93{bottom:839.208000pt;}
.y258{bottom:842.306883pt;}
.y259{bottom:842.608746pt;}
.y221{bottom:846.992691pt;}
.y110{bottom:847.294667pt;}
.y86{bottom:848.958533pt;}
.y52{bottom:849.412000pt;}
.ye2{bottom:854.854179pt;}
.y92{bottom:856.517333pt;}
.ye1{bottom:857.574667pt;}
.y140{bottom:859.162667pt;}
.y220{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y85{bottom:863.622883pt;}
.y10f{bottom:864.680000pt;}
.y51{bottom:866.797333pt;}
.y257{bottom:872.316108pt;}
.y91{bottom:873.902667pt;}
.y21f{bottom:876.926184pt;}
.y84{bottom:878.287233pt;}
.ydf{bottom:881.914667pt;}
.ye0{bottom:884.106667pt;}
.y50{bottom:884.108000pt;}
.y21e{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y90{bottom:891.213333pt;}
.y10d{bottom:892.723908pt;}
.yde{bottom:899.225333pt;}
.y83{bottom:900.964283pt;}
.y4f{bottom:901.417333pt;}
.y21d{bottom:902.325333pt;}
.y281{bottom:902.551463pt;}
.y10b{bottom:903.457930pt;}
.y10e{bottom:906.708000pt;}
.y10a{bottom:906.709333pt;}
.y8f{bottom:908.524000pt;}
.y256{bottom:914.948108pt;}
.y82{bottom:915.628633pt;}
.y4e{bottom:918.802667pt;}
.y21c{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y10c{bottom:921.977333pt;}
.y8e{bottom:925.833333pt;}
.y81{bottom:930.292983pt;}
.y21b{bottom:932.258825pt;}
.y109{bottom:940.950667pt;}
.y4d{bottom:941.404000pt;}
.y8d{bottom:943.218667pt;}
.y80{bottom:944.957333pt;}
.y2a7{bottom:945.183464pt;}
.y28{bottom:984.037333pt;}
.y7d{bottom:990.312000pt;}
.y7f{bottom:994.393333pt;}
.hf{height:16.478800pt;}
.h2a{height:19.993320pt;}
.h18{height:22.783241pt;}
.h27{height:23.999200pt;}
.h19{height:24.799173pt;}
.h4{height:24.828689pt;}
.h13{height:25.312644pt;}
.h29{height:26.663600pt;}
.h8{height:30.916533pt;}
.hb{height:31.603772pt;}
.h28{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hd{height:34.772899pt;}
.hc{height:36.052883pt;}
.h3{height:37.248000pt;}
.h1a{height:37.973333pt;}
.h7{height:39.266667pt;}
.ha{height:40.000000pt;}
.h24{height:41.173333pt;}
.h12{height:41.333333pt;}
.h26{height:43.348533pt;}
.h1d{height:44.847241pt;}
.h16{height:44.857907pt;}
.h10{height:46.933333pt;}
.h11{height:47.999600pt;}
.h21{height:49.380574pt;}
.h1f{height:49.385907pt;}
.h14{height:49.391241pt;}
.he{height:49.663586pt;}
.h15{height:52.215284pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h1b{height:87.164617pt;}
.h9{height:88.063659pt;}
.h22{height:89.282946pt;}
.h1e{height:91.098504pt;}
.h20{height:104.664280pt;}
.h17{height:106.474504pt;}
.h1c{height:128.245333pt;}
.h23{height:128.250667pt;}
.h25{height:149.117512pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:46.261467pt;}
.x10{left:48.000000pt;}
.x11{left:63.496000pt;}
.x38{left:230.400000pt;}
.x3d{left:240.000000pt;}
.x1{left:266.682667pt;}
.x44{left:273.184000pt;}
.x12{left:282.632000pt;}
.x45{left:295.330923pt;}
.x47{left:302.664165pt;}
.x4e{left:317.857235pt;}
.x4d{left:332.143990pt;}
.x4b{left:355.501565pt;}
.xa{left:360.945333pt;}
.xb{left:365.858667pt;}
.x2{left:368.277333pt;}
.x3{left:373.190667pt;}
.x3b{left:387.552000pt;}
.x3e{left:392.466667pt;}
.x3c{left:395.186667pt;}
.x29{left:402.368000pt;}
.x48{left:404.861287pt;}
.x2a{left:410.381333pt;}
.x4f{left:412.345654pt;}
.x4a{left:413.932835pt;}
.x3f{left:419.452000pt;}
.x40{left:422.550667pt;}
.xc{left:446.210667pt;}
.x32{left:449.536000pt;}
.xd{left:451.200000pt;}
.x33{left:453.997353pt;}
.x46{left:470.322869pt;}
.x4{left:471.685333pt;}
.x24{left:474.782667pt;}
.x5{left:476.598667pt;}
.x25{left:479.245353pt;}
.x1a{left:480.225333pt;}
.x2b{left:481.813884pt;}
.x2e{left:483.477353pt;}
.x16{left:484.686667pt;}
.x20{left:488.768548pt;}
.x17{left:489.902667pt;}
.x18{left:495.496000pt;}
.x19{left:499.956020pt;}
.x2f{left:505.626667pt;}
.x26{left:507.969333pt;}
.x13{left:509.404000pt;}
.x2c{left:514.393734pt;}
.x1c{left:518.324423pt;}
.x1b{left:523.010667pt;}
.x21{left:524.522667pt;}
.x27{left:526.866667pt;}
.x30{left:529.285333pt;}
.x2d{left:533.292000pt;}
.x1d{left:536.314667pt;}
.x4c{left:539.261401pt;}
.x28{left:541.681333pt;}
.x22{left:544.100000pt;}
.x23{left:548.636551pt;}
.x31{left:552.265353pt;}
.x34{left:555.817333pt;}
.x6{left:557.933333pt;}
.x41{left:559.974667pt;}
.x49{left:565.642221pt;}
.xe{left:571.389333pt;}
.x7{left:577.662667pt;}
.x35{left:580.688020pt;}
.x42{left:583.785333pt;}
.x43{left:587.716000pt;}
.x39{left:635.262667pt;}
.x3a{left:642.897333pt;}
.x8{left:656.201333pt;}
.x37{left:665.197333pt;}
.x9{left:668.522667pt;}
.x36{left:671.168000pt;}
.x1e{left:683.868000pt;}
.x1f{left:686.589333pt;}
.x14{left:704.201333pt;}
.x15{left:709.720000pt;}
}




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