
    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_c63dfd4f328b30db6d2e2129.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_4906dee1f20f1ef71e1d4664.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_db77f30f5be1162ddde47910.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_ec7a36d573337de6c5453e39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_73f68f3c12b94d73b0cf818a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_170baa08a7f1bbecfd1c01b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2064e7010f929de2b34f232b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_95f7b24587645d9511ae7e65.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_66359ec980a1c59bd49b6c21.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767090;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_923f34236083266831f88207.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffeccfcf5d38472a02b55491.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a57d44e3add8665e3d145635.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_8daa25cfe9f6e7213a9fd437.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bc77b1ad17939f77d783676d.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_514b5703f5c5d0eb0821e067.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2794708f580c4a9e49d3b4f5.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_9560cf019bdcc578bfb83a18.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;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_b5ebeff54cc5b6a486655ce2.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v3{vertical-align:-7.479600px;}
.v1{vertical-align:-6.126000px;}
.v4{vertical-align:-2.721566px;}
.v2{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.263600px;}
.lsd{letter-spacing:-1.200600px;}
.ls13{letter-spacing:-1.199985px;}
.ls14{letter-spacing:-0.359996px;}
.lse{letter-spacing:-0.241496px;}
.ls12{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.239997px;}
.lsf{letter-spacing:-0.239400px;}
.lsb{letter-spacing:-0.238497px;}
.lsa{letter-spacing:-0.237600px;}
.ls1b{letter-spacing:-0.237598px;}
.ls10{letter-spacing:-0.212772px;}
.lsc{letter-spacing:-0.212372px;}
.ls1e{letter-spacing:-0.211976px;}
.ls11{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.427195px;}
.ls24{letter-spacing:0.767990px;}
.ls25{letter-spacing:0.772790px;}
.ls26{letter-spacing:1.128000px;}
.ls27{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.363183px;}
.ls0{letter-spacing:3.442800px;}
.ls2b{letter-spacing:4.761540px;}
.ls29{letter-spacing:4.766340px;}
.ls2c{letter-spacing:5.102336px;}
.ls2a{letter-spacing:5.107136px;}
.ls1{letter-spacing:5.832000px;}
.ls7{letter-spacing:9.446282px;}
.ls4{letter-spacing:10.257472px;}
.ls5{letter-spacing:10.387070px;}
.ls21{letter-spacing:10.939063px;}
.ls20{letter-spacing:11.083061px;}
.ls22{letter-spacing:12.324000px;}
.ls15{letter-spacing:12.594000px;}
.ls1f{letter-spacing:12.822000px;}
.ls18{letter-spacing:12.930000px;}
.ls17{letter-spacing:12.936000px;}
.ls1c{letter-spacing:12.942000px;}
.ls1d{letter-spacing:13.002000px;}
.ls1a{letter-spacing:13.008000px;}
.ls16{letter-spacing:13.278000px;}
.ls19{letter-spacing:13.350000px;}
.ls28{letter-spacing:15.652604px;}
.ls2{letter-spacing:20.783740px;}
.ls3{letter-spacing:20.788540px;}
.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;}
}
.ws24{word-spacing:-37.151856px;}
.ws18c{word-spacing:-35.759553px;}
.ws28{word-spacing:-25.247684px;}
.wsef{word-spacing:-23.999700px;}
.ws140{word-spacing:-19.994233px;}
.ws9{word-spacing:-14.936400px;}
.ws90{word-spacing:-13.500000px;}
.ws18f{word-spacing:-13.487831px;}
.ws16{word-spacing:-13.247834px;}
.ws11a{word-spacing:-13.132636px;}
.wsbd{word-spacing:-13.036637px;}
.wsf7{word-spacing:-13.031837px;}
.ws41{word-spacing:-11.639855px;}
.wsda{word-spacing:-10.991863px;}
.ws32{word-spacing:-10.799865px;}
.wsba{word-spacing:-10.463869px;}
.ws8d{word-spacing:-4.456763px;}
.ws141{word-spacing:-4.233565px;}
.ws13c{word-spacing:-4.082366px;}
.ws19d{word-spacing:-3.595155px;}
.ws190{word-spacing:-3.585555px;}
.ws187{word-spacing:-3.575955px;}
.ws186{word-spacing:-3.547156px;}
.ws19a{word-spacing:-3.527956px;}
.ws179{word-spacing:-3.484756px;}
.ws1a1{word-spacing:-3.479956px;}
.ws197{word-spacing:-3.470357px;}
.ws19{word-spacing:-3.465600px;}
.ws19e{word-spacing:-3.465557px;}
.ws166{word-spacing:-3.460757px;}
.ws4e{word-spacing:-3.459900px;}
.ws13{word-spacing:-3.451157px;}
.ws172{word-spacing:-3.422357px;}
.ws183{word-spacing:-3.407957px;}
.ws175{word-spacing:-3.403157px;}
.ws18{word-spacing:-3.402900px;}
.ws1a4{word-spacing:-3.398358px;}
.ws1e{word-spacing:-3.397200px;}
.ws169{word-spacing:-3.388758px;}
.ws150{word-spacing:-3.383958px;}
.ws15e{word-spacing:-3.374358px;}
.ws171{word-spacing:-3.369558px;}
.ws1a7{word-spacing:-3.364758px;}
.ws195{word-spacing:-3.359958px;}
.ws160{word-spacing:-3.345558px;}
.ws5{word-spacing:-3.342600px;}
.wsc{word-spacing:-3.340758px;}
.ws1aa{word-spacing:-3.335958px;}
.ws177{word-spacing:-3.331158px;}
.ws191{word-spacing:-3.326358px;}
.ws1a{word-spacing:-3.323100px;}
.ws1a8{word-spacing:-3.321558px;}
.ws17e{word-spacing:-3.311959px;}
.ws14d{word-spacing:-3.307159px;}
.ws193{word-spacing:-3.302359px;}
.ws155{word-spacing:-3.297559px;}
.ws1f{word-spacing:-3.294600px;}
.ws167{word-spacing:-3.292759px;}
.ws198{word-spacing:-3.287959px;}
.ws15{word-spacing:-3.283159px;}
.ws154{word-spacing:-3.278359px;}
.ws164{word-spacing:-3.273559px;}
.ws19b{word-spacing:-3.263959px;}
.ws168{word-spacing:-3.259159px;}
.ws17{word-spacing:-3.254700px;}
.ws158{word-spacing:-3.254359px;}
.ws15c{word-spacing:-3.249559px;}
.ws1c{word-spacing:-3.249000px;}
.ws1a2{word-spacing:-3.244759px;}
.ws72{word-spacing:-3.235160px;}
.ws12{word-spacing:-3.230360px;}
.ws16a{word-spacing:-3.215960px;}
.ws15b{word-spacing:-3.211160px;}
.ws189{word-spacing:-3.206360px;}
.wsd{word-spacing:-3.201560px;}
.ws4{word-spacing:-3.196800px;}
.ws196{word-spacing:-3.196760px;}
.ws10{word-spacing:-3.191960px;}
.ws185{word-spacing:-3.187160px;}
.ws4f{word-spacing:-3.186300px;}
.ws7{word-spacing:-3.186000px;}
.ws192{word-spacing:-3.182360px;}
.ws22{word-spacing:-3.180600px;}
.ws184{word-spacing:-3.177560px;}
.wse{word-spacing:-3.172760px;}
.ws124{word-spacing:-3.167960px;}
.wsb{word-spacing:-3.163160px;}
.ws14{word-spacing:-3.158361px;}
.ws1ab{word-spacing:-3.153561px;}
.ws21{word-spacing:-3.152100px;}
.ws16f{word-spacing:-3.148761px;}
.ws194{word-spacing:-3.134361px;}
.ws8{word-spacing:-3.132000px;}
.ws15d{word-spacing:-3.129561px;}
.ws25{word-spacing:-3.124761px;}
.ws188{word-spacing:-3.119961px;}
.ws173{word-spacing:-3.115161px;}
.ws23{word-spacing:-3.112200px;}
.ws2{word-spacing:-3.110400px;}
.ws17f{word-spacing:-3.100761px;}
.ws17d{word-spacing:-3.095961px;}
.ws27{word-spacing:-3.091161px;}
.ws16d{word-spacing:-3.086361px;}
.ws18d{word-spacing:-3.076762px;}
.ws163{word-spacing:-3.067162px;}
.ws17c{word-spacing:-3.062362px;}
.ws6{word-spacing:-3.056400px;}
.ws199{word-spacing:-3.047962px;}
.ws1a9{word-spacing:-3.043162px;}
.ws17a{word-spacing:-3.033562px;}
.ws159{word-spacing:-3.023962px;}
.ws1d{word-spacing:-3.021000px;}
.ws15a{word-spacing:-3.019162px;}
.ws1b{word-spacing:-3.015300px;}
.ws19c{word-spacing:-3.014362px;}
.ws181{word-spacing:-3.004762px;}
.wsa{word-spacing:-2.999962px;}
.ws161{word-spacing:-2.971163px;}
.ws18e{word-spacing:-2.966363px;}
.ws16e{word-spacing:-2.961563px;}
.ws1{word-spacing:-2.959200px;}
.ws16b{word-spacing:-2.956763px;}
.ws1a5{word-spacing:-2.942363px;}
.ws152{word-spacing:-2.937563px;}
.ws1a0{word-spacing:-2.927963px;}
.ws17b{word-spacing:-2.923163px;}
.ws14f{word-spacing:-2.913564px;}
.ws156{word-spacing:-2.908764px;}
.wsf{word-spacing:-2.894364px;}
.ws174{word-spacing:-2.889564px;}
.ws1a3{word-spacing:-2.875164px;}
.ws157{word-spacing:-2.870364px;}
.ws20{word-spacing:-2.855700px;}
.ws170{word-spacing:-2.851164px;}
.ws180{word-spacing:-2.846364px;}
.ws19f{word-spacing:-2.841564px;}
.ws11{word-spacing:-2.831965px;}
.ws18b{word-spacing:-2.812765px;}
.ws50{word-spacing:-2.793000px;}
.ws178{word-spacing:-2.783965px;}
.ws165{word-spacing:-2.779165px;}
.ws1a6{word-spacing:-2.774365px;}
.ws15f{word-spacing:-2.769565px;}
.ws18a{word-spacing:-2.764765px;}
.ws153{word-spacing:-2.750366px;}
.ws176{word-spacing:-2.745566px;}
.ws14e{word-spacing:-2.735966px;}
.ws151{word-spacing:-2.683166px;}
.ws3{word-spacing:-2.667600px;}
.ws182{word-spacing:-2.663967px;}
.ws0{word-spacing:-2.649567px;}
.ws40{word-spacing:-1.526381px;}
.ws3d{word-spacing:-1.511981px;}
.ws3c{word-spacing:-1.473582px;}
.ws3f{word-spacing:-1.411182px;}
.ws3b{word-spacing:-1.348783px;}
.ws3e{word-spacing:-1.132786px;}
.ws49{word-spacing:-0.916789px;}
.ws42{word-spacing:-0.892789px;}
.ws37{word-spacing:-0.878389px;}
.ws109{word-spacing:-0.876000px;}
.ws75{word-spacing:-0.859189px;}
.ws53{word-spacing:-0.852000px;}
.ws10a{word-spacing:-0.840000px;}
.ws132{word-spacing:-0.828000px;}
.ws10c{word-spacing:-0.822000px;}
.ws4b{word-spacing:-0.815990px;}
.ws36{word-spacing:-0.791990px;}
.ws31{word-spacing:-0.767990px;}
.ws38{word-spacing:-0.743991px;}
.ws4c{word-spacing:-0.739191px;}
.ws10d{word-spacing:-0.732000px;}
.ws44{word-spacing:-0.729591px;}
.ws46{word-spacing:-0.715191px;}
.ws2c{word-spacing:-0.710391px;}
.ws35{word-spacing:-0.705591px;}
.ws34{word-spacing:-0.695991px;}
.ws3a{word-spacing:-0.691191px;}
.ws76{word-spacing:-0.676792px;}
.ws4a{word-spacing:-0.671992px;}
.ws52{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.633592px;}
.ws80{word-spacing:-0.624000px;}
.ws29{word-spacing:-0.623992px;}
.ws73{word-spacing:-0.614392px;}
.ws2f{word-spacing:-0.609592px;}
.ws2d{word-spacing:-0.604792px;}
.ws2e{word-spacing:-0.595193px;}
.wsad{word-spacing:-0.576000px;}
.ws105{word-spacing:-0.575993px;}
.ws33{word-spacing:-0.571193px;}
.ws10b{word-spacing:-0.570000px;}
.wsff{word-spacing:-0.566393px;}
.ws136{word-spacing:-0.558000px;}
.wsfa{word-spacing:-0.551993px;}
.ws39{word-spacing:-0.547193px;}
.ws122{word-spacing:-0.542393px;}
.ws11e{word-spacing:-0.537593px;}
.ws30{word-spacing:-0.527993px;}
.wse5{word-spacing:-0.513594px;}
.ws78{word-spacing:-0.510000px;}
.wse1{word-spacing:-0.508794px;}
.ws102{word-spacing:-0.503994px;}
.ws101{word-spacing:-0.499194px;}
.ws45{word-spacing:-0.494394px;}
.wse6{word-spacing:-0.489594px;}
.wsb2{word-spacing:-0.479994px;}
.ws108{word-spacing:-0.475194px;}
.ws48{word-spacing:-0.470394px;}
.ws6f{word-spacing:-0.468000px;}
.ws74{word-spacing:-0.465594px;}
.ws120{word-spacing:-0.460794px;}
.ws125{word-spacing:-0.456000px;}
.ws2a{word-spacing:-0.455994px;}
.wsc7{word-spacing:-0.451194px;}
.wse0{word-spacing:-0.446394px;}
.ws12f{word-spacing:-0.444000px;}
.wsc6{word-spacing:-0.441594px;}
.wsdd{word-spacing:-0.436795px;}
.ws79{word-spacing:-0.432000px;}
.wsea{word-spacing:-0.427195px;}
.ws9e{word-spacing:-0.426000px;}
.wsfd{word-spacing:-0.422395px;}
.wsac{word-spacing:-0.420000px;}
.wsf9{word-spacing:-0.417595px;}
.wsf0{word-spacing:-0.414000px;}
.ws6c{word-spacing:-0.408000px;}
.ws130{word-spacing:-0.402000px;}
.ws54{word-spacing:-0.396000px;}
.ws5b{word-spacing:-0.390000px;}
.ws60{word-spacing:-0.384000px;}
.wsdb{word-spacing:-0.383995px;}
.wsd1{word-spacing:-0.379195px;}
.ws68{word-spacing:-0.378000px;}
.ws83{word-spacing:-0.372000px;}
.ws104{word-spacing:-0.369595px;}
.ws7b{word-spacing:-0.366000px;}
.wsd3{word-spacing:-0.364795px;}
.ws55{word-spacing:-0.360000px;}
.wsdc{word-spacing:-0.359995px;}
.ws2b{word-spacing:-0.355196px;}
.ws86{word-spacing:-0.354000px;}
.ws9f{word-spacing:-0.348000px;}
.ws107{word-spacing:-0.345596px;}
.ws5c{word-spacing:-0.342000px;}
.wsfb{word-spacing:-0.340796px;}
.ws11b{word-spacing:-0.336000px;}
.ws47{word-spacing:-0.335996px;}
.wsfe{word-spacing:-0.331196px;}
.ws56{word-spacing:-0.330000px;}
.wsc9{word-spacing:-0.326396px;}
.ws66{word-spacing:-0.324000px;}
.wsb1{word-spacing:-0.321596px;}
.ws8a{word-spacing:-0.318000px;}
.wsd0{word-spacing:-0.316796px;}
.ws5a{word-spacing:-0.312000px;}
.wsd4{word-spacing:-0.307196px;}
.wse9{word-spacing:-0.302396px;}
.ws9a{word-spacing:-0.300000px;}
.wse3{word-spacing:-0.297596px;}
.ws51{word-spacing:-0.294000px;}
.wse7{word-spacing:-0.292796px;}
.ws84{word-spacing:-0.288000px;}
.wsc1{word-spacing:-0.287996px;}
.wse4{word-spacing:-0.283196px;}
.ws62{word-spacing:-0.282000px;}
.wsf5{word-spacing:-0.278397px;}
.ws61{word-spacing:-0.276000px;}
.wsbf{word-spacing:-0.273597px;}
.ws89{word-spacing:-0.270000px;}
.wsc0{word-spacing:-0.268797px;}
.ws6d{word-spacing:-0.264000px;}
.wsc8{word-spacing:-0.263997px;}
.wsdf{word-spacing:-0.259197px;}
.ws65{word-spacing:-0.258000px;}
.ws8c{word-spacing:-0.252000px;}
.ws7c{word-spacing:-0.246000px;}
.ws85{word-spacing:-0.240000px;}
.ws106{word-spacing:-0.239997px;}
.wse2{word-spacing:-0.235197px;}
.ws58{word-spacing:-0.234000px;}
.wscc{word-spacing:-0.230397px;}
.ws5f{word-spacing:-0.228000px;}
.ws100{word-spacing:-0.225597px;}
.wsa7{word-spacing:-0.222000px;}
.ws64{word-spacing:-0.216000px;}
.wsd5{word-spacing:-0.215997px;}
.ws70{word-spacing:-0.210000px;}
.wsc4{word-spacing:-0.206397px;}
.ws88{word-spacing:-0.204000px;}
.wscd{word-spacing:-0.201597px;}
.wsa1{word-spacing:-0.198000px;}
.wscb{word-spacing:-0.196798px;}
.ws5e{word-spacing:-0.192000px;}
.wsce{word-spacing:-0.191998px;}
.ws121{word-spacing:-0.187198px;}
.ws71{word-spacing:-0.186000px;}
.ws138{word-spacing:-0.180000px;}
.ws59{word-spacing:-0.174000px;}
.wsf8{word-spacing:-0.172798px;}
.ws6b{word-spacing:-0.168000px;}
.wsd9{word-spacing:-0.167998px;}
.ws8f{word-spacing:-0.162000px;}
.ws129{word-spacing:-0.156000px;}
.wsa9{word-spacing:-0.150000px;}
.wsd2{word-spacing:-0.148798px;}
.ws87{word-spacing:-0.144000px;}
.wsc3{word-spacing:-0.139198px;}
.ws77{word-spacing:-0.138000px;}
.wsed{word-spacing:-0.134398px;}
.wsb0{word-spacing:-0.132000px;}
.ws8b{word-spacing:-0.126000px;}
.wse8{word-spacing:-0.124798px;}
.ws8e{word-spacing:-0.120000px;}
.wsc5{word-spacing:-0.115199px;}
.ws103{word-spacing:-0.110399px;}
.ws96{word-spacing:-0.108000px;}
.wsf4{word-spacing:-0.105599px;}
.wsa3{word-spacing:-0.102000px;}
.wscf{word-spacing:-0.100799px;}
.ws9d{word-spacing:-0.096000px;}
.ws7d{word-spacing:-0.090000px;}
.wsde{word-spacing:-0.086399px;}
.ws135{word-spacing:-0.084000px;}
.wsd6{word-spacing:-0.081599px;}
.ws147{word-spacing:-0.078000px;}
.ws9c{word-spacing:-0.072000px;}
.wsee{word-spacing:-0.067199px;}
.ws94{word-spacing:-0.066000px;}
.ws11f{word-spacing:-0.062399px;}
.wsf2{word-spacing:-0.057599px;}
.ws127{word-spacing:-0.054000px;}
.ws123{word-spacing:-0.047999px;}
.ws81{word-spacing:-0.042000px;}
.wsf6{word-spacing:-0.038400px;}
.ws137{word-spacing:-0.036000px;}
.ws111{word-spacing:-0.030000px;}
.ws6a{word-spacing:-0.024000px;}
.wsf3{word-spacing:-0.019200px;}
.ws92{word-spacing:-0.018000px;}
.ws69{word-spacing:-0.012000px;}
.wsc2{word-spacing:-0.009600px;}
.ws139{word-spacing:-0.006000px;}
.wsfc{word-spacing:-0.004800px;}
.ws4d{word-spacing:0.000000px;}
.ws7f{word-spacing:0.006000px;}
.ws126{word-spacing:0.018000px;}
.wseb{word-spacing:0.024000px;}
.wsbe{word-spacing:0.028800px;}
.ws95{word-spacing:0.030000px;}
.wsca{word-spacing:0.033600px;}
.ws13a{word-spacing:0.036000px;}
.ws6e{word-spacing:0.042000px;}
.wsbb{word-spacing:0.043199px;}
.ws7e{word-spacing:0.054000px;}
.ws112{word-spacing:0.057599px;}
.ws5d{word-spacing:0.060000px;}
.ws93{word-spacing:0.064799px;}
.ws7a{word-spacing:0.066000px;}
.wsd7{word-spacing:0.067199px;}
.ws98{word-spacing:0.072000px;}
.wsae{word-spacing:0.078000px;}
.wsa8{word-spacing:0.090000px;}
.ws131{word-spacing:0.096000px;}
.wsb9{word-spacing:0.100799px;}
.ws99{word-spacing:0.102000px;}
.ws117{word-spacing:0.105599px;}
.ws57{word-spacing:0.108000px;}
.ws11c{word-spacing:0.110399px;}
.ws82{word-spacing:0.114000px;}
.ws134{word-spacing:0.115199px;}
.ws116{word-spacing:0.119998px;}
.wsb4{word-spacing:0.126000px;}
.wsa0{word-spacing:0.132000px;}
.wsec{word-spacing:0.134398px;}
.wsb3{word-spacing:0.136799px;}
.ws11d{word-spacing:0.143998px;}
.ws12d{word-spacing:0.144000px;}
.wsa6{word-spacing:0.151199px;}
.ws67{word-spacing:0.156000px;}
.ws63{word-spacing:0.162000px;}
.ws12e{word-spacing:0.180000px;}
.wsb7{word-spacing:0.191998px;}
.wsaf{word-spacing:0.192000px;}
.ws12b{word-spacing:0.194398px;}
.wsaa{word-spacing:0.198000px;}
.wsa2{word-spacing:0.215998px;}
.wsa5{word-spacing:0.222000px;}
.wsd8{word-spacing:0.235197px;}
.ws91{word-spacing:0.240000px;}
.wsa4{word-spacing:0.259198px;}
.ws9b{word-spacing:0.270000px;}
.ws12a{word-spacing:0.278397px;}
.ws114{word-spacing:0.297596px;}
.wsf1{word-spacing:0.316796px;}
.wsab{word-spacing:0.316797px;}
.ws13e{word-spacing:0.324000px;}
.ws97{word-spacing:0.342000px;}
.wsb6{word-spacing:0.345596px;}
.wsb5{word-spacing:0.374395px;}
.ws13d{word-spacing:0.432000px;}
.ws10e{word-spacing:0.446396px;}
.ws13b{word-spacing:0.475196px;}
.ws143{word-spacing:0.480000px;}
.wsb8{word-spacing:0.518394px;}
.wsbc{word-spacing:0.527993px;}
.ws148{word-spacing:0.648000px;}
.ws144{word-spacing:0.666000px;}
.ws115{word-spacing:0.681591px;}
.ws133{word-spacing:0.726000px;}
.ws10f{word-spacing:0.780000px;}
.ws128{word-spacing:0.786000px;}
.ws13f{word-spacing:0.876000px;}
.ws146{word-spacing:0.900000px;}
.ws145{word-spacing:0.978000px;}
.ws14a{word-spacing:1.014000px;}
.ws14b{word-spacing:1.020000px;}
.ws149{word-spacing:1.026000px;}
.ws110{word-spacing:1.044000px;}
.ws12c{word-spacing:1.062000px;}
.ws142{word-spacing:1.158000px;}
.ws26{word-spacing:34.588368px;}
.ws162{word-spacing:46.842614px;}
.ws16c{word-spacing:46.847414px;}
.ws14c{word-spacing:46.909814px;}
.ws119{word-spacing:172.946638px;}
.ws118{word-spacing:206.282221px;}
.ws113{word-spacing:1479.495106px;}
._52{margin-left:-20.798140px;}
._51{margin-left:-14.889414px;}
._8{margin-left:-8.421087px;}
._c{margin-left:-4.826414px;}
._7{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._6{width:1.140000px;}
._2{width:3.549600px;}
._12{width:4.881539px;}
._4{width:9.268684px;}
._3{width:11.275059px;}
._a{width:12.534000px;}
._5{width:13.759800px;}
._b{width:15.150000px;}
._d{width:16.826260px;}
._f{width:20.625342px;}
._53{width:21.695729px;}
._e{width:24.084000px;}
._1{width:25.142400px;}
._13{width:48.642000px;}
._40{width:53.428132px;}
._3b{width:63.522406px;}
._48{width:69.968725px;}
._43{width:72.018300px;}
._20{width:75.239059px;}
._21{width:81.176585px;}
._3a{width:89.029287px;}
._22{width:90.507669px;}
._34{width:91.952451px;}
._28{width:94.467619px;}
._38{width:100.582743px;}
._37{width:104.115499px;}
._10{width:105.521881px;}
._2e{width:108.617842px;}
._39{width:112.385795px;}
._3f{width:122.547268px;}
._4b{width:127.241609px;}
._41{width:139.126261px;}
._42{width:140.916639px;}
._23{width:147.540556px;}
._35{width:149.436532px;}
._11{width:153.866876px;}
._27{width:157.894026px;}
._33{width:160.970788px;}
._4e{width:163.567555px;}
._30{width:168.813890px;}
._2d{width:177.972175px;}
._3c{width:179.757753px;}
._45{width:181.020137px;}
._47{width:184.989688px;}
._4c{width:206.387820px;}
._3e{width:207.592605px;}
._1c{width:210.362170px;}
._49{width:213.693329px;}
._44{width:215.834102px;}
._4a{width:219.213260px;}
._32{width:224.579593px;}
._36{width:228.419545px;}
._26{width:230.147523px;}
._19{width:234.870664px;}
._2a{width:237.131436px;}
._24{width:242.152173px;}
._2c{width:247.168110px;}
._3d{width:254.027225px;}
._25{width:259.470357px;}
._31{width:262.532718px;}
._2b{width:268.019050px;}
._4f{width:274.191773px;}
._46{width:279.082911px;}
._4d{width:282.697266px;}
._29{width:285.217235px;}
._18{width:287.007612px;}
._2f{width:293.761128px;}
._1f{width:302.473019px;}
._14{width:306.394570px;}
._17{width:327.048712px;}
._1a{width:341.429332px;}
._15{width:363.105861px;}
._16{width:397.732628px;}
._1b{width:405.724528px;}
._1d{width:433.108186px;}
._1e{width:609.702779px;}
._50{width:1507.368358px;}
._9{width:1533.067236px;}
.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);}
.fse{font-size:31.995000px;}
.fs4{font-size:35.995200px;}
.fs8{font-size:37.995000px;}
.fsd{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs6{font-size:68.998800px;}
.fsb{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs9{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y80{bottom:4.537500px;}
.y2d{bottom:8.513967px;}
.y2e{bottom:54.000000px;}
.y1e9{bottom:106.469990px;}
.y107{bottom:109.361241px;}
.y251{bottom:119.651090px;}
.yfd{bottom:124.497600px;}
.y2b{bottom:124.498500px;}
.yfb{bottom:124.500000px;}
.y51{bottom:124.500064px;}
.y2e8{bottom:124.500065px;}
.y7e{bottom:124.501500px;}
.y26e{bottom:124.503000px;}
.y175{bottom:124.669500px;}
.yb6{bottom:125.100000px;}
.y16d{bottom:125.860106px;}
.y1e8{bottom:129.684900px;}
.yfc{bottom:131.130600px;}
.y2af{bottom:131.982000px;}
.y106{bottom:132.661350px;}
.y2b0{bottom:132.747000px;}
.y361{bottom:136.832578px;}
.y1f8{bottom:138.784500px;}
.y2e7{bottom:138.787087px;}
.y50{bottom:140.997458px;}
.y250{bottom:142.866000px;}
.y290{bottom:143.973000px;}
.yfa{bottom:143.974500px;}
.y7d{bottom:143.976000px;}
.y174{bottom:144.144000px;}
.yb5{bottom:144.573000px;}
.y2a{bottom:145.503000px;}
.y16c{bottom:147.545035px;}
.y325{bottom:151.119600px;}
.y2ae{bottom:151.540500px;}
.y4f{bottom:157.494852px;}
.y2e6{bottom:158.260443px;}
.y1f7{bottom:158.343000px;}
.y1f5{bottom:158.344500px;}
.y16b{bottom:161.830856px;}
.y159{bottom:161.831072px;}
.y28f{bottom:163.531500px;}
.yf9{bottom:163.533000px;}
.y7c{bottom:163.534500px;}
.y26d{bottom:163.536000px;}
.y173{bottom:163.702500px;}
.yb4{bottom:164.131500px;}
.y1f6{bottom:164.976000px;}
.y324{bottom:165.321422px;}
.y29{bottom:166.507500px;}
.y360{bottom:170.592956px;}
.y2e5{bottom:172.462266px;}
.y158{bottom:176.116894px;}
.y16a{bottom:176.117878px;}
.y2ad{bottom:176.967000px;}
.y1f4{bottom:177.819000px;}
.y322{bottom:179.607244px;}
.y323{bottom:179.948039px;}
.yf8{bottom:183.006000px;}
.y4e{bottom:183.006533px;}
.y7b{bottom:183.009000px;}
.y172{bottom:183.175500px;}
.yb3{bottom:183.606000px;}
.y35f{bottom:184.794779px;}
.y2e3{bottom:186.749287px;}
.y2e4{bottom:187.088883px;}
.y27{bottom:187.512000px;}
.y169{bottom:190.318500px;}
.y157{bottom:190.318716px;}
.y28{bottom:193.804500px;}
.y1f3{bottom:197.292000px;}
.y1f1{bottom:197.293500px;}
.y321{bottom:199.081800px;}
.y4d{bottom:199.505126px;}
.yf7{bottom:202.480500px;}
.y7a{bottom:202.482000px;}
.y26c{bottom:202.483500px;}
.y171{bottom:202.650000px;}
.yb2{bottom:203.080500px;}
.y1f2{bottom:204.009000px;}
.y156{bottom:204.605738px;}
.y167{bottom:204.605868px;}
.y2e2{bottom:206.222644px;}
.y26{bottom:208.516500px;}
.y168{bottom:209.877000px;}
.y320{bottom:213.367621px;}
.y2ac{bottom:216.001500px;}
.y4c{bottom:216.002520px;}
.y1f0{bottom:216.852000px;}
.y35e{bottom:218.555157px;}
.y155{bottom:218.806360px;}
.y166{bottom:218.807691px;}
.y2e1{bottom:220.509665px;}
.yf6{bottom:222.039000px;}
.y79{bottom:222.042000px;}
.y170{bottom:222.124500px;}
.yb1{bottom:222.639000px;}
.y31f{bottom:227.569444px;}
.y25{bottom:229.521000px;}
.y4b{bottom:232.499914px;}
.y35d{bottom:232.842178px;}
.y154{bottom:233.093382px;}
.y165{bottom:233.094712px;}
.y2e0{bottom:234.710288px;}
.y2ab{bottom:235.560000px;}
.y1ee{bottom:236.325000px;}
.y28e{bottom:241.512000px;}
.yf5{bottom:241.513500px;}
.y78{bottom:241.515000px;}
.y26b{bottom:241.516500px;}
.y16f{bottom:241.683000px;}
.yb0{bottom:242.112000px;}
.y1ef{bottom:242.958000px;}
.y31e{bottom:247.044001px;}
.y153{bottom:247.295204px;}
.y164{bottom:247.296535px;}
.y4a{bottom:248.997308px;}
.y35c{bottom:252.315535px;}
.y2df{bottom:254.270043px;}
.y24{bottom:255.033000px;}
.y2aa{bottom:255.034500px;}
.y1ed{bottom:255.798000px;}
.y1eb{bottom:255.799500px;}
.y28d{bottom:260.986500px;}
.yf4{bottom:260.988000px;}
.y77{bottom:260.989500px;}
.y16e{bottom:261.156000px;}
.y31d{bottom:261.329822px;}
.y152{bottom:261.581025px;}
.y163{bottom:261.582356px;}
.yaf{bottom:261.586500px;}
.y1ec{bottom:262.431000px;}
.y49{bottom:265.494701px;}
.y35a{bottom:266.602556px;}
.y35b{bottom:266.942152px;}
.y2de{bottom:268.470666px;}
.y2a9{bottom:274.507500px;}
.y1ea{bottom:275.272500px;}
.y31c{bottom:275.616843px;}
.y151{bottom:275.868047px;}
.y162{bottom:275.869378px;}
.yf3{bottom:280.461000px;}
.y76{bottom:280.462500px;}
.y26a{bottom:280.464000px;}
.yae{bottom:281.145000px;}
.y2dd{bottom:282.757687px;}
.y359{bottom:286.075913px;}
.y150{bottom:290.069869px;}
.y161{bottom:290.070000px;}
.y48{bottom:291.006383px;}
.y31b{bottom:295.090200px;}
.y23{bottom:295.513500px;}
.y1bc{bottom:299.593838px;}
.y2a8{bottom:300.018000px;}
.yf2{bottom:300.019500px;}
.y75{bottom:300.022500px;}
.y358{bottom:300.362934px;}
.yad{bottom:300.619500px;}
.y2dc{bottom:302.232244px;}
.y14f{bottom:304.355691px;}
.y15f{bottom:304.357378px;}
.y47{bottom:307.503776px;}
.y31a{bottom:309.292022px;}
.y160{bottom:309.628500px;}
.y230{bottom:312.180338px;}
.y356{bottom:314.564757px;}
.y357{bottom:314.989551px;}
.y22{bottom:316.432500px;}
.y2db{bottom:316.518065px;}
.y14e{bottom:318.557513px;}
.y15e{bottom:318.558000px;}
.y15c{bottom:318.558179px;}
.y28c{bottom:319.492500px;}
.yf1{bottom:319.494000px;}
.y74{bottom:319.495500px;}
.y269{bottom:319.497000px;}
.yac{bottom:320.094000px;}
.y319{bottom:323.579044px;}
.y15d{bottom:323.914500px;}
.y46{bottom:324.001170px;}
.y1bb{bottom:326.635500px;}
.y2d9{bottom:330.719888px;}
.y2da{bottom:331.144682px;}
.y1ba{bottom:331.993500px;}
.y15b{bottom:332.844000px;}
.y14d{bottom:332.844535px;}
.y355{bottom:334.123312px;}
.y21{bottom:337.437000px;}
.yf0{bottom:338.968500px;}
.y73{bottom:338.970000px;}
.y22f{bottom:339.222000px;}
.yab{bottom:339.567000px;}
.y45{bottom:340.499764px;}
.y318{bottom:343.052400px;}
.y22e{bottom:344.580000px;}
.y1b9{bottom:344.664000px;}
.y28b{bottom:345.004500px;}
.y14c{bottom:347.045157px;}
.y2a7{bottom:348.067500px;}
.y354{bottom:348.325135px;}
.y1b8{bottom:349.936500px;}
.y2d8{bottom:350.278443px;}
.y15a{bottom:352.402500px;}
.y44{bottom:356.997158px;}
.y22d{bottom:357.251310px;}
.y317{bottom:357.339422px;}
.y20{bottom:358.441500px;}
.yef{bottom:358.527000px;}
.y72{bottom:358.528500px;}
.y268{bottom:358.530000px;}
.yaa{bottom:359.125500px;}
.y14b{bottom:361.332179px;}
.y1b7{bottom:362.608125px;}
.y352{bottom:362.610956px;}
.y353{bottom:362.951752px;}
.y2d7{bottom:364.480266px;}
.y2a6{bottom:367.540500px;}
.y370{bottom:367.798491px;}
.y316{bottom:371.540044px;}
.y1da{bottom:373.494000px;}
.y43{bottom:373.494551px;}
.y22c{bottom:375.194686px;}
.y14a{bottom:375.618000px;}
.yee{bottom:378.000000px;}
.y71{bottom:378.003000px;}
.y1b5{bottom:378.595500px;}
.ya9{bottom:378.600000px;}
.y1f{bottom:379.446000px;}
.y1b6{bottom:380.635500px;}
.y1b4{bottom:380.638298px;}
.y351{bottom:382.085512px;}
.y2d6{bottom:384.038821px;}
.yd2{bottom:387.016500px;}
.y2a5{bottom:387.099000px;}
.y2a3{bottom:387.100500px;}
.y42{bottom:389.991945px;}
.y315{bottom:391.099800px;}
.y1d9{bottom:393.052500px;}
.y2a4{bottom:393.732000px;}
.y148{bottom:394.328212px;}
.y350{bottom:396.372534px;}
.y70{bottom:397.476000px;}
.y267{bottom:397.477500px;}
.ya8{bottom:398.074500px;}
.y2d5{bottom:398.240644px;}
.y1b3{bottom:398.665673px;}
.y149{bottom:399.685500px;}
.y1e{bottom:400.450500px;}
.y22b{bottom:403.342734px;}
.yed{bottom:403.512000px;}
.y314{bottom:405.301622px;}
.y2a2{bottom:406.573500px;}
.y147{bottom:408.614034px;}
.y28a{bottom:409.639500px;}
.y34f{bottom:410.573156px;}
.y1d8{bottom:412.527000px;}
.y2d4{bottom:412.527665px;}
.y41{bottom:415.503626px;}
.yd1{bottom:415.504500px;}
.y1b2{bottom:416.609048px;}
.y6f{bottom:417.036000px;}
.ya7{bottom:417.633000px;}
.y313{bottom:419.587444px;}
.y1d{bottom:421.455000px;}
.y228{bottom:422.050069px;}
.y22a{bottom:422.050500px;}
.y146{bottom:422.815856px;}
.y34e{bottom:424.860178px;}
.y2a1{bottom:426.048000px;}
.y229{bottom:427.407000px;}
.y289{bottom:429.112500px;}
.y36f{bottom:430.047713px;}
.y2d3{bottom:432.001022px;}
.y1d7{bottom:432.001500px;}
.y1b1{bottom:434.637623px;}
.yd0{bottom:434.979000px;}
.y6e{bottom:436.509000px;}
.y266{bottom:436.510500px;}
.y145{bottom:437.102878px;}
.ya6{bottom:437.107500px;}
.y312{bottom:439.062000px;}
.y227{bottom:440.844234px;}
.y40{bottom:441.015307px;}
.y34d{bottom:444.333534px;}
.y2a0{bottom:445.606500px;}
.y2d2{bottom:446.288043px;}
.yec{bottom:446.374500px;}
.y1c{bottom:446.967000px;}
.y288{bottom:448.587000px;}
.y144{bottom:451.303500px;}
.y13f{bottom:451.304691px;}
.y1d6{bottom:451.560000px;}
.y1b0{bottom:452.666198px;}
.y311{bottom:453.347822px;}
.ycf{bottom:454.537500px;}
.y6d{bottom:455.983500px;}
.ya5{bottom:456.580500px;}
.y34c{bottom:458.620556px;}
.y226{bottom:459.552000px;}
.y224{bottom:459.553069px;}
.y225{bottom:464.910000px;}
.y142{bottom:465.590878px;}
.y13e{bottom:465.591712px;}
.y2d1{bottom:465.761400px;}
.yeb{bottom:465.933000px;}
.y3f{bottom:466.526989px;}
.y310{bottom:467.549644px;}
.y287{bottom:468.145500px;}
.y143{bottom:470.947500px;}
.y1d5{bottom:471.033000px;}
.y1d3{bottom:471.034500px;}
.y34b{bottom:472.822378px;}
.y29f{bottom:474.094500px;}
.y6c{bottom:475.542000px;}
.y265{bottom:475.543500px;}
.ya4{bottom:476.139000px;}
.y1d4{bottom:477.666000px;}
.y36e{bottom:478.093912px;}
.y223{bottom:478.347234px;}
.y141{bottom:479.791500px;}
.y13d{bottom:479.793535px;}
.y2d0{bottom:479.963222px;}
.y1af{bottom:480.729047px;}
.yce{bottom:483.025500px;}
.yea{bottom:485.406000px;}
.y30f{bottom:487.108200px;}
.y1b{bottom:487.446000px;}
.y286{bottom:487.620000px;}
.y1d1{bottom:490.507500px;}
.y3e{bottom:492.038670px;}
.y34a{bottom:492.295735px;}
.y29e{bottom:493.569000px;}
.y13c{bottom:494.079356px;}
.y1ae{bottom:495.014868px;}
.y6b{bottom:495.016500px;}
.ya3{bottom:495.613500px;}
.y222{bottom:497.055000px;}
.y220{bottom:497.056069px;}
.y1d2{bottom:497.224500px;}
.y140{bottom:499.435500px;}
.y2cf{bottom:499.521778px;}
.y30e{bottom:501.310022px;}
.y221{bottom:502.413000px;}
.ycd{bottom:502.500000px;}
.ye9{bottom:504.880500px;}
.y349{bottom:506.582756px;}
.y36d{bottom:506.837153px;}
.y285{bottom:507.093000px;}
.y13b{bottom:508.366378px;}
.y1a{bottom:508.450500px;}
.y3d{bottom:508.536063px;}
.y1ad{bottom:509.216691px;}
.y1d0{bottom:510.066000px;}
.y1ce{bottom:510.067500px;}
.y29d{bottom:513.042000px;}
.y29b{bottom:513.045000px;}
.y2ce{bottom:513.723600px;}
.y6a{bottom:514.489500px;}
.y264{bottom:514.491000px;}
.ya2{bottom:515.088000px;}
.y30d{bottom:515.597044px;}
.y21f{bottom:515.850234px;}
.y1cf{bottom:516.699000px;}
.y29c{bottom:519.760500px;}
.y348{bottom:520.868578px;}
.y36c{bottom:521.209373px;}
.y13a{bottom:522.567000px;}
.y1ac{bottom:523.503712px;}
.ye8{bottom:524.439000px;}
.y284{bottom:526.651500px;}
.y2cd{bottom:528.010622px;}
.y19{bottom:529.455000px;}
.y1cd{bottom:529.540500px;}
.y1cb{bottom:529.542000px;}
.y30c{bottom:529.797666px;}
.ycc{bottom:530.988000px;}
.y29a{bottom:532.603500px;}
.y3c{bottom:533.962546px;}
.y69{bottom:533.964000px;}
.y263{bottom:533.965500px;}
.y21e{bottom:534.558000px;}
.y21c{bottom:534.560407px;}
.ya1{bottom:534.646500px;}
.y347{bottom:535.070400px;}
.y1cc{bottom:536.173500px;}
.y1ab{bottom:537.789534px;}
.y21d{bottom:539.914500px;}
.y36b{bottom:540.343134px;}
.y138{bottom:541.360856px;}
.y2cb{bottom:542.211244px;}
.y2cc{bottom:542.637239px;}
.ye7{bottom:543.913500px;}
.y283{bottom:546.126000px;}
.y139{bottom:546.633000px;}
.y1ca{bottom:549.015000px;}
.y30b{bottom:549.357422px;}
.y18{bottom:550.459500px;}
.y3b{bottom:550.545138px;}
.y1aa{bottom:551.991356px;}
.y299{bottom:552.078000px;}
.y21a{bottom:553.354572px;}
.y68{bottom:553.522500px;}
.y262{bottom:553.524000px;}
.y21b{bottom:553.949764px;}
.ya0{bottom:554.119500px;}
.y346{bottom:554.544957px;}
.y137{bottom:555.562679px;}
.ycb{bottom:559.476000px;}
.y2ca{bottom:561.771000px;}
.ye6{bottom:563.388000px;}
.y30a{bottom:563.559244px;}
.y282{bottom:565.600500px;}
.y1a9{bottom:566.278378px;}
.y3a{bottom:567.042532px;}
.y1c9{bottom:568.573500px;}
.y345{bottom:568.830778px;}
.y136{bottom:569.848500px;}
.y134{bottom:569.849878px;}
.y298{bottom:571.551000px;}
.y219{bottom:572.062338px;}
.y67{bottom:572.997000px;}
.y9f{bottom:573.594000px;}
.y135{bottom:575.206500px;}
.y17{bottom:575.971500px;}
.y309{bottom:577.845065px;}
.y1a8{bottom:580.479000px;}
.y2c9{bottom:581.244356px;}
.ye5{bottom:582.861000px;}
.y344{bottom:583.117800px;}
.y39{bottom:583.541126px;}
.y133{bottom:584.050500px;}
.y281{bottom:585.159000px;}
.yca{bottom:587.964000px;}
.y1c8{bottom:588.046500px;}
.y1c6{bottom:588.048000px;}
.y36a{bottom:588.305335px;}
.y217{bottom:590.856503px;}
.y218{bottom:591.451695px;}
.y66{bottom:592.470000px;}
.y261{bottom:592.471500px;}
.y9e{bottom:593.068500px;}
.y1c7{bottom:594.681000px;}
.y1a6{bottom:594.765712px;}
.y2c8{bottom:595.531378px;}
.y308{bottom:597.319622px;}
.y132{bottom:598.336500px;}
.y130{bottom:598.338179px;}
.y38{bottom:600.038520px;}
.y1a7{bottom:600.123000px;}
.y297{bottom:600.124500px;}
.ye4{bottom:602.419500px;}
.y343{bottom:602.591156px;}
.y131{bottom:603.694500px;}
.y280{bottom:604.633500px;}
.yc9{bottom:607.522500px;}
.y1a5{bottom:608.967535px;}
.y216{bottom:609.564269px;}
.y2c7{bottom:609.732000px;}
.y307{bottom:611.605443px;}
.y65{bottom:612.030000px;}
.y12f{bottom:612.624000px;}
.y9d{bottom:612.627000px;}
.y36{bottom:616.535913px;}
.y342{bottom:616.792979px;}
.y37{bottom:616.875509px;}
.y296{bottom:619.599000px;}
.ye3{bottom:621.894000px;}
.y1a4{bottom:623.253356px;}
.y27f{bottom:624.106500px;}
.y306{bottom:625.807266px;}
.y12d{bottom:626.826179px;}
.y1c4{bottom:626.995500px;}
.yc8{bottom:626.997000px;}
.y214{bottom:628.358434px;}
.y16{bottom:628.441500px;}
.y215{bottom:628.953627px;}
.y2c6{bottom:629.971500px;}
.y340{bottom:631.080000px;}
.y341{bottom:631.419596px;}
.y64{bottom:631.503000px;}
.y260{bottom:631.504500px;}
.y9c{bottom:632.101500px;}
.y12e{bottom:632.182500px;}
.y35{bottom:633.033307px;}
.y1c5{bottom:633.714000px;}
.y369{bottom:636.351534px;}
.y1a3{bottom:637.540378px;}
.y12a{bottom:641.111878px;}
.y12c{bottom:641.112000px;}
.ye2{bottom:641.368500px;}
.y24c{bottom:641.623500px;}
.y27e{bottom:643.665000px;}
.y305{bottom:645.365821px;}
.y12b{bottom:646.384500px;}
.yc7{bottom:646.470000px;}
.y1c3{bottom:646.554000px;}
.y1c1{bottom:646.555500px;}
.y213{bottom:647.067400px;}
.y295{bottom:648.087000px;}
.y33f{bottom:650.553357px;}
.y63{bottom:650.977500px;}
.y9b{bottom:651.574500px;}
.y1a2{bottom:651.741000px;}
.y1a0{bottom:651.743035px;}
.y19b{bottom:651.743953px;}
.y1c2{bottom:653.187000px;}
.y129{bottom:655.312500px;}
.y1a1{bottom:657.099000px;}
.y34{bottom:657.609000px;}
.y304{bottom:659.567644px;}
.ye1{bottom:660.927000px;}
.y24b{bottom:661.096500px;}
.y27d{bottom:663.139500px;}
.y33e{bottom:664.840378px;}
.y211{bottom:665.860365px;}
.yc6{bottom:666.028500px;}
.y19f{bottom:666.028856px;}
.yc4{bottom:666.030000px;}
.y19a{bottom:666.030975px;}
.y212{bottom:666.455558px;}
.y294{bottom:667.560000px;}
.y127{bottom:669.600535px;}
.y62{bottom:670.536000px;}
.y25f{bottom:670.537500px;}
.y9a{bottom:671.133000px;}
.yc5{bottom:672.661500px;}
.y303{bottom:673.854665px;}
.y128{bottom:674.958000px;}
.y19e{bottom:680.230679px;}
.y199{bottom:680.232797px;}
.ye0{bottom:680.400000px;}
.y24a{bottom:680.656500px;}
.y27c{bottom:682.614000px;}
.y126{bottom:683.801157px;}
.y33d{bottom:684.313735px;}
.y210{bottom:684.569331px;}
.yc3{bottom:685.504500px;}
.y15{bottom:688.734862px;}
.y61{bottom:690.010500px;}
.y99{bottom:690.607500px;}
.y302{bottom:693.328022px;}
.y19d{bottom:694.516500px;}
.y198{bottom:694.518618px;}
.y293{bottom:696.048000px;}
.y125{bottom:698.088179px;}
.y33c{bottom:698.600756px;}
.y19c{bottom:699.789000px;}
.y249{bottom:700.129500px;}
.y2c4{bottom:701.067000px;}
.y2c5{bottom:701.917500px;}
.y27b{bottom:702.087000px;}
.y20e{bottom:703.362296px;}
.y14{bottom:703.702275px;}
.y20f{bottom:703.957489px;}
.yc2{bottom:704.977500px;}
.y1c0{bottom:705.063000px;}
.ydf{bottom:705.912000px;}
.y301{bottom:707.615043px;}
.y197{bottom:708.720441px;}
.y60{bottom:709.483500px;}
.y25e{bottom:709.485000px;}
.y98{bottom:710.082000px;}
.y124{bottom:712.374000px;}
.y33b{bottom:712.802578px;}
.y292{bottom:715.606500px;}
.y13{bottom:718.668488px;}
.y248{bottom:719.604000px;}
.y2c3{bottom:720.627000px;}
.y27a{bottom:721.647000px;}
.y300{bottom:721.815666px;}
.y20d{bottom:722.071263px;}
.y196{bottom:723.007462px;}
.yc1{bottom:724.536000px;}
.y122{bottom:726.577679px;}
.y338{bottom:727.088400px;}
.y33a{bottom:727.343997px;}
.y339{bottom:727.429196px;}
.y5f{bottom:728.958000px;}
.y25d{bottom:728.959500px;}
.y97{bottom:729.640500px;}
.y123{bottom:731.934000px;}
.y368{bottom:732.361134px;}
.y195{bottom:737.293284px;}
.y247{bottom:739.078500px;}
.y121{bottom:740.863500px;}
.y20b{bottom:740.865428px;}
.y291{bottom:741.118500px;}
.y279{bottom:741.120000px;}
.y2ff{bottom:741.290222px;}
.y20c{bottom:741.460620px;}
.y33{bottom:744.520500px;}
.y337{bottom:746.562956px;}
.y2c1{bottom:747.583500px;}
.y2c2{bottom:748.348500px;}
.y5e{bottom:748.516500px;}
.y25c{bottom:748.518000px;}
.y12{bottom:748.687313px;}
.yde{bottom:748.773000px;}
.y96{bottom:749.115000px;}
.yc0{bottom:749.962500px;}
.y1bf{bottom:750.046500px;}
.y194{bottom:751.495106px;}
.y118{bottom:755.065638px;}
.y11f{bottom:755.065856px;}
.y2fe{bottom:755.577244px;}
.y246{bottom:758.637000px;}
.y20a{bottom:759.573194px;}
.y120{bottom:760.422000px;}
.y278{bottom:760.594500px;}
.y336{bottom:760.848778px;}
.y32{bottom:761.782500px;}
.y11{bottom:763.739925px;}
.y2c0{bottom:767.142000px;}
.y5d{bottom:767.991000px;}
.ydd{bottom:768.331500px;}
.y95{bottom:768.588000px;}
.y117{bottom:769.351459px;}
.y11e{bottom:769.352878px;}
.y2fd{bottom:769.863065px;}
.y193{bottom:770.288071px;}
.y335{bottom:775.050600px;}
.y245{bottom:778.110000px;}
.y209{bottom:778.367359px;}
.y10{bottom:778.706138px;}
.y31{bottom:778.960500px;}
.y277{bottom:780.153000px;}
.y367{bottom:780.323334px;}
.y116{bottom:783.553282px;}
.y11d{bottom:783.553500px;}
.y192{bottom:784.489894px;}
.y5c{bottom:787.464000px;}
.y25a{bottom:787.465500px;}
.ydc{bottom:787.806000px;}
.y94{bottom:788.062500px;}
.y25b{bottom:788.316000px;}
.y2fc{bottom:789.337622px;}
.ybf{bottom:791.548500px;}
.y1be{bottom:792.397500px;}
.yf{bottom:793.673550px;}
.y2bf{bottom:794.100000px;}
.y334{bottom:794.609156px;}
.y30{bottom:796.224000px;}
.y208{bottom:797.075125px;}
.y244{bottom:797.584500px;}
.y115{bottom:797.839103px;}
.y11b{bottom:797.839679px;}
.y191{bottom:798.776915px;}
.y276{bottom:799.627500px;}
.y11c{bottom:803.197500px;}
.y2fb{bottom:803.623443px;}
.y259{bottom:807.024000px;}
.ydb{bottom:807.280500px;}
.y93{bottom:807.621000px;}
.ye{bottom:808.724962px;}
.y333{bottom:808.810978px;}
.ybe{bottom:811.021500px;}
.y1bd{bottom:811.956000px;}
.y11a{bottom:812.125500px;}
.y114{bottom:812.126125px;}
.y105{bottom:812.722500px;}
.y5b{bottom:812.976000px;}
.y190{bottom:812.978738px;}
.y2f{bottom:813.486000px;}
.y207{bottom:815.869290px;}
.y243{bottom:817.143000px;}
.y2f9{bottom:817.825266px;}
.y2fa{bottom:818.080862px;}
.y275{bottom:819.100500px;}
.y2bd{bottom:821.142000px;}
.y2be{bottom:821.907000px;}
.y331{bottom:823.098000px;}
.y332{bottom:823.437596px;}
.yd{bottom:823.692375px;}
.y113{bottom:826.327947px;}
.y258{bottom:826.498500px;}
.yda{bottom:826.839000px;}
.y92{bottom:827.095500px;}
.y18f{bottom:827.264559px;}
.y366{bottom:828.369534px;}
.ybd{bottom:830.580000px;}
.y119{bottom:831.685500px;}
.y104{bottom:832.281000px;}
.y206{bottom:834.578256px;}
.y242{bottom:836.617500px;}
.y2f8{bottom:837.298622px;}
.y274{bottom:838.659000px;}
.yc{bottom:838.743787px;}
.y112{bottom:840.613768px;}
.y18e{bottom:841.466382px;}
.y330{bottom:842.571356px;}
.y257{bottom:845.971500px;}
.yd9{bottom:846.312000px;}
.y91{bottom:846.568500px;}
.y2bb{bottom:848.100000px;}
.y1e7{bottom:848.864078px;}
.y2bc{bottom:848.865000px;}
.ybc{bottom:850.054500px;}
.y2f6{bottom:851.585644px;}
.y103{bottom:851.755500px;}
.y2f7{bottom:851.925239px;}
.y204{bottom:853.371221px;}
.yb{bottom:853.710000px;}
.y205{bottom:853.966414px;}
.y18d{bottom:855.753403px;}
.y241{bottom:856.090500px;}
.y23f{bottom:856.092000px;}
.y32f{bottom:856.858378px;}
.y273{bottom:858.133500px;}
.y111{bottom:859.322735px;}
.y240{bottom:862.809000px;}
.y90{bottom:866.127000px;}
.ybb{bottom:869.529000px;}
.y18c{bottom:870.039224px;}
.y2f5{bottom:871.059000px;}
.y102{bottom:871.230000px;}
.y1e6{bottom:871.314597px;}
.y256{bottom:871.483500px;}
.yd8{bottom:871.824000px;}
.y203{bottom:872.080187px;}
.y110{bottom:873.609756px;}
.y2ba{bottom:875.142000px;}
.y23d{bottom:875.650500px;}
.y365{bottom:876.331734px;}
.y272{bottom:877.608000px;}
.y9{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.ya{bottom:881.091900px;}
.y23e{bottom:882.283500px;}
.y18b{bottom:884.241047px;}
.y2f4{bottom:885.346022px;}
.y8f{bottom:885.601500px;}
.y1e5{bottom:885.601618px;}
.y8{bottom:886.705500px;}
.y10f{bottom:887.810379px;}
.yba{bottom:889.087500px;}
.y32e{bottom:890.618756px;}
.y101{bottom:890.788500px;}
.y201{bottom:890.873153px;}
.y202{bottom:891.468345px;}
.y23c{bottom:895.125000px;}
.y271{bottom:897.081000px;}
.y5{bottom:897.250500px;}
.y18a{bottom:898.526868px;}
.y181{bottom:898.527665px;}
.y2f2{bottom:899.547844px;}
.y2f3{bottom:899.972639px;}
.y2b8{bottom:902.098500px;}
.y2b9{bottom:902.865000px;}
.y6{bottom:903.202500px;}
.y1e4{bottom:904.309385px;}
.y32d{bottom:904.820578px;}
.y8e{bottom:905.076000px;}
.yb9{bottom:908.560500px;}
.y200{bottom:909.582119px;}
.y10e{bottom:910.090500px;}
.y374{bottom:910.092112px;}
.y100{bottom:910.261500px;}
.y5a{bottom:911.452500px;}
.y189{bottom:912.728691px;}
.y180{bottom:912.729488px;}
.y23b{bottom:914.598000px;}
.y239{bottom:914.599500px;}
.yd7{bottom:914.685000px;}
.y270{bottom:916.641000px;}
.y1e3{bottom:918.596406px;}
.y2f1{bottom:919.106400px;}
.y32c{bottom:919.361996px;}
.y32b{bottom:919.447195px;}
.y23a{bottom:921.316500px;}
.y2b7{bottom:921.573000px;}
.y364{bottom:924.293935px;}
.y255{bottom:924.294000px;}
.y8d{bottom:924.634500px;}
.y17f{bottom:927.015309px;}
.y188{bottom:927.015712px;}
.y1ff{bottom:928.376284px;}
.y59{bottom:932.457000px;}
.y2f0{bottom:933.308222px;}
.yb8{bottom:934.073925px;}
.y237{bottom:934.158000px;}
.yd6{bottom:934.159500px;}
.y4{bottom:934.670100px;}
.yff{bottom:935.773500px;}
.y26f{bottom:936.114000px;}
.y1e2{bottom:937.305372px;}
.y32a{bottom:938.580956px;}
.y238{bottom:940.791000px;}
.y17e{bottom:941.217132px;}
.y187{bottom:941.217535px;}
.y254{bottom:943.767000px;}
.y8c{bottom:944.109000px;}
.y1fd{bottom:947.084050px;}
.y2ef{bottom:947.595244px;}
.y1fe{bottom:947.679242px;}
.y2b5{bottom:948.615000px;}
.y2b6{bottom:949.380000px;}
.y329{bottom:952.866778px;}
.y373{bottom:953.207573px;}
.y58{bottom:953.461500px;}
.y236{bottom:953.632500px;}
.yd5{bottom:953.718000px;}
.y185{bottom:955.503356px;}
.y17d{bottom:955.504153px;}
.y10d{bottom:955.588500px;}
.y1e1{bottom:956.098337px;}
.yb7{bottom:961.030500px;}
.y253{bottom:963.325500px;}
.y8b{bottom:963.582000px;}
.y1fc{bottom:965.793016px;}
.y2ee{bottom:967.068600px;}
.y363{bottom:967.493395px;}
.y2b4{bottom:968.089500px;}
.y3{bottom:968.430900px;}
.y17c{bottom:969.789975px;}
.y184{bottom:969.790378px;}
.y372{bottom:972.341334px;}
.y235{bottom:973.105500px;}
.y233{bottom:973.107000px;}
.yd4{bottom:973.191000px;}
.y57{bottom:974.380500px;}
.y1e0{bottom:974.807303px;}
.y10c{bottom:975.147000px;}
.y234{bottom:979.824000px;}
.y2ed{bottom:981.355622px;}
.y182{bottom:982.035000px;}
.y8a{bottom:983.140500px;}
.y183{bottom:983.991000px;}
.y17b{bottom:983.991797px;}
.y1fb{bottom:984.587181px;}
.y328{bottom:986.541957px;}
.y252{bottom:988.837500px;}
.y1df{bottom:989.093125px;}
.y231{bottom:992.580000px;}
.y10b{bottom:994.621500px;}
.y2b2{bottom:995.131500px;}
.y2ec{bottom:995.556244px;}
.y2b3{bottom:995.896500px;}
.y186{bottom:998.276821px;}
.y17a{bottom:998.278818px;}
.yd3{bottom:998.703000px;}
.y232{bottom:999.297000px;}
.y56{bottom:999.892500px;}
.y327{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y89{bottom:1002.615000px;}
.y1f9{bottom:1003.294947px;}
.y1fa{bottom:1003.975339px;}
.y85{bottom:1004.564518px;}
.y1de{bottom:1007.802091px;}
.y10a{bottom:1014.094500px;}
.y2b1{bottom:1014.606000px;}
.y2eb{bottom:1015.116000px;}
.y371{bottom:1015.455595px;}
.y179{bottom:1016.986585px;}
.y84{bottom:1021.063112px;}
.y1dd{bottom:1022.089112px;}
.y88{bottom:1022.089500px;}
.y24f{bottom:1028.212069px;}
.y2ea{bottom:1029.316622px;}
.y362{bottom:1029.742617px;}
.y178{bottom:1031.273606px;}
.y109{bottom:1033.653000px;}
.y326{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y54{bottom:1040.626500px;}
.y1dc{bottom:1040.796879px;}
.y87{bottom:1041.562500px;}
.y177{bottom:1045.475428px;}
.y83{bottom:1046.574793px;}
.y55{bottom:1046.919000px;}
.y2e9{bottom:1048.791179px;}
.y24e{bottom:1051.428179px;}
.y108{bottom:1059.079500px;}
.y86{bottom:1061.121000px;}
.y52{bottom:1061.631000px;}
.y82{bottom:1063.072186px;}
.y1db{bottom:1063.077000px;}
.y24d{bottom:1065.714000px;}
.yfe{bottom:1067.754000px;}
.y53{bottom:1067.925000px;}
.y176{bottom:1071.751500px;}
.y2c{bottom:1107.042000px;}
.y7f{bottom:1114.101000px;}
.y81{bottom:1118.692500px;}
.h11{height:18.538650px;}
.h17{height:23.996250px;}
.h4{height:27.932275px;}
.h9{height:29.446125px;}
.h14{height:29.996550px;}
.h16{height:34.175573px;}
.ha{height:34.781100px;}
.hd{height:34.968313px;}
.h15{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hf{height:39.119511px;}
.he{height:40.559493px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.hc{height:45.000000px;}
.h12{height:52.800000px;}
.h7{height:53.543069px;}
.h13{height:53.999550px;}
.h10{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.hb{height:99.071616px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:52.044150px;}
.xf{left:54.000000px;}
.x6f{left:55.870777px;}
.x49{left:58.592100px;}
.x48{left:60.718050px;}
.x1e{left:64.800000px;}
.x1f{left:68.966213px;}
.x10{left:71.433000px;}
.x57{left:86.143998px;}
.x29{left:122.540743px;}
.x20{left:126.877489px;}
.x68{left:132.660217px;}
.x21{left:141.164510px;}
.x58{left:162.169048px;}
.x6d{left:172.203322px;}
.x70{left:174.754491px;}
.x59{left:180.622417px;}
.x6e{left:187.170735px;}
.x6c{left:189.295909px;}
.x71{left:190.656692px;}
.x11{left:192.528286px;}
.x62{left:197.290209px;}
.x2a{left:213.872802px;}
.x22{left:227.223835px;}
.x72{left:230.031000px;}
.x74{left:233.092500px;}
.x69{left:266.256947px;}
.x5b{left:282.159148px;}
.x5a{left:287.601080px;}
.x73{left:294.576000px;}
.x6b{left:298.061349px;}
.x1{left:300.018000px;}
.x66{left:305.121000px;}
.x85{left:307.332000px;}
.x19{left:311.755500px;}
.x67{left:313.710000px;}
.x15{left:317.961000px;}
.x6a{left:330.121348px;}
.x86{left:332.247289px;}
.x1a{left:342.369000px;}
.x17{left:344.325000px;}
.x1b{left:351.042000px;}
.x18{left:353.593500px;}
.x8c{left:355.208620px;}
.x8a{left:367.029672px;}
.x2b{left:373.660404px;}
.x5c{left:375.871977px;}
.x4a{left:382.507500px;}
.x55{left:387.013500px;}
.x23{left:393.815352px;}
.x56{left:395.688000px;}
.x5d{left:396.876514px;}
.x89{left:397.983285px;}
.x87{left:401.640021px;}
.x16{left:411.591000px;}
.x8d{left:421.624189px;}
.x51{left:427.663500px;}
.x8{left:434.635500px;}
.x52{left:436.252500px;}
.x9{left:445.690500px;}
.x82{left:452.662500px;}
.x2{left:454.195500px;}
.x75{left:462.699000px;}
.x81{left:468.478500px;}
.x8f{left:472.817143px;}
.x3{left:475.624500px;}
.x76{left:505.899000px;}
.x79{left:509.980500px;}
.x13{left:512.617500px;}
.x77{left:514.488000px;}
.x46{left:515.679000px;}
.x7a{left:518.655000px;}
.x14{left:521.631000px;}
.x47{left:522.736500px;}
.x7b{left:532.431000px;}
.x4d{left:534.303000px;}
.x2c{left:538.551543px;}
.x1c{left:541.105500px;}
.x4e{left:542.976000px;}
.x24{left:543.993475px;}
.x1d{left:549.694500px;}
.x4{left:567.637500px;}
.xa{left:569.166900px;}
.x8b{left:575.289469px;}
.x4f{left:579.118500px;}
.x50{left:587.791500px;}
.x5{left:588.982500px;}
.x78{left:595.870500px;}
.x7f{left:597.912000px;}
.x2d{left:600.884764px;}
.x80{left:602.758500px;}
.xb{left:604.969500px;}
.x63{left:613.303500px;}
.x25{left:619.764128px;}
.x26{left:621.634904px;}
.x41{left:627.930000px;}
.x5f{left:644.425020px;}
.x53{left:648.681000px;}
.x5e{left:649.952151px;}
.x54{left:657.354000px;}
.x7d{left:662.881500px;}
.x7e{left:667.729500px;}
.x88{left:678.100965px;}
.x64{left:681.420000px;}
.x4b{left:685.417500px;}
.x65{left:690.094500px;}
.x4c{left:694.092000px;}
.x2e{left:700.211122px;}
.x90{left:714.158126px;}
.x27{left:718.579293px;}
.x3d{left:725.641500px;}
.x3e{left:729.807000px;}
.x37{left:731.424000px;}
.x28{left:733.376308px;}
.x3f{left:734.400000px;}
.x38{left:736.015500px;}
.x45{left:742.648500px;}
.x8e{left:744.346955px;}
.x6{left:745.369500px;}
.x61{left:747.237334px;}
.x33{left:748.261500px;}
.x60{left:749.532906px;}
.x3c{left:753.448500px;}
.x30{left:755.490000px;}
.x12{left:766.290000px;}
.x7{left:775.134000px;}
.x42{left:778.281000px;}
.x7c{left:779.553000px;}
.x43{left:784.998000px;}
.x32{left:788.655000px;}
.x34{left:796.224000px;}
.x40{left:798.859500px;}
.x35{left:803.622000px;}
.x44{left:817.398000px;}
.x39{left:823.266000px;}
.xc{left:825.052500px;}
.x36{left:827.433000px;}
.x84{left:829.894500px;}
.xd{left:833.980500px;}
.x83{left:837.037500px;}
.x3a{left:845.376000px;}
.x2f{left:847.417500px;}
.x3b{left:849.969000px;}
.x31{left:851.754000px;}
@media print{
.v3{vertical-align:-6.648533pt;}
.v1{vertical-align:-5.445333pt;}
.v4{vertical-align:-2.419170pt;}
.v2{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.123200pt;}
.lsd{letter-spacing:-1.067200pt;}
.ls13{letter-spacing:-1.066653pt;}
.ls14{letter-spacing:-0.319996pt;}
.lse{letter-spacing:-0.214663pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.213331pt;}
.lsf{letter-spacing:-0.212800pt;}
.lsb{letter-spacing:-0.211997pt;}
.lsa{letter-spacing:-0.211200pt;}
.ls1b{letter-spacing:-0.211198pt;}
.ls10{letter-spacing:-0.189131pt;}
.lsc{letter-spacing:-0.188775pt;}
.ls1e{letter-spacing:-0.188423pt;}
.ls11{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.379729pt;}
.ls24{letter-spacing:0.682658pt;}
.ls25{letter-spacing:0.686925pt;}
.ls26{letter-spacing:1.002667pt;}
.ls27{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.211718pt;}
.ls0{letter-spacing:3.060267pt;}
.ls2b{letter-spacing:4.232480pt;}
.ls29{letter-spacing:4.236747pt;}
.ls2c{letter-spacing:4.535410pt;}
.ls2a{letter-spacing:4.539677pt;}
.ls1{letter-spacing:5.184000pt;}
.ls7{letter-spacing:8.396695pt;}
.ls4{letter-spacing:9.117753pt;}
.ls5{letter-spacing:9.232951pt;}
.ls21{letter-spacing:9.723612pt;}
.ls20{letter-spacing:9.851610pt;}
.ls22{letter-spacing:10.954667pt;}
.ls15{letter-spacing:11.194667pt;}
.ls1f{letter-spacing:11.397333pt;}
.ls18{letter-spacing:11.493333pt;}
.ls17{letter-spacing:11.498667pt;}
.ls1c{letter-spacing:11.504000pt;}
.ls1d{letter-spacing:11.557333pt;}
.ls1a{letter-spacing:11.562667pt;}
.ls16{letter-spacing:11.802667pt;}
.ls19{letter-spacing:11.866667pt;}
.ls28{letter-spacing:13.913426pt;}
.ls2{letter-spacing:18.474436pt;}
.ls3{letter-spacing:18.478702pt;}
.ws24{word-spacing:-33.023872pt;}
.ws18c{word-spacing:-31.786269pt;}
.ws28{word-spacing:-22.442386pt;}
.wsef{word-spacing:-21.333067pt;}
.ws140{word-spacing:-17.772652pt;}
.ws9{word-spacing:-13.276800pt;}
.ws90{word-spacing:-12.000000pt;}
.ws18f{word-spacing:-11.989183pt;}
.ws16{word-spacing:-11.775853pt;}
.ws11a{word-spacing:-11.673454pt;}
.wsbd{word-spacing:-11.588122pt;}
.wsf7{word-spacing:-11.583855pt;}
.ws41{word-spacing:-10.346537pt;}
.wsda{word-spacing:-9.770545pt;}
.ws32{word-spacing:-9.599880pt;}
.wsba{word-spacing:-9.301217pt;}
.ws8d{word-spacing:-3.961567pt;}
.ws141{word-spacing:-3.763169pt;}
.ws13c{word-spacing:-3.628770pt;}
.ws19d{word-spacing:-3.195693pt;}
.ws190{word-spacing:-3.187160pt;}
.ws187{word-spacing:-3.178627pt;}
.ws186{word-spacing:-3.153027pt;}
.ws19a{word-spacing:-3.135961pt;}
.ws179{word-spacing:-3.097561pt;}
.ws1a1{word-spacing:-3.093295pt;}
.ws197{word-spacing:-3.084761pt;}
.ws19{word-spacing:-3.080533pt;}
.ws19e{word-spacing:-3.080495pt;}
.ws166{word-spacing:-3.076228pt;}
.ws4e{word-spacing:-3.075467pt;}
.ws13{word-spacing:-3.067695pt;}
.ws172{word-spacing:-3.042095pt;}
.ws183{word-spacing:-3.029295pt;}
.ws175{word-spacing:-3.025029pt;}
.ws18{word-spacing:-3.024800pt;}
.ws1a4{word-spacing:-3.020762pt;}
.ws1e{word-spacing:-3.019733pt;}
.ws169{word-spacing:-3.012229pt;}
.ws150{word-spacing:-3.007962pt;}
.ws15e{word-spacing:-2.999429pt;}
.ws171{word-spacing:-2.995163pt;}
.ws1a7{word-spacing:-2.990896pt;}
.ws195{word-spacing:-2.986629pt;}
.ws160{word-spacing:-2.973829pt;}
.ws5{word-spacing:-2.971200pt;}
.wsc{word-spacing:-2.969563pt;}
.ws1aa{word-spacing:-2.965296pt;}
.ws177{word-spacing:-2.961030pt;}
.ws191{word-spacing:-2.956763pt;}
.ws1a{word-spacing:-2.953867pt;}
.ws1a8{word-spacing:-2.952496pt;}
.ws17e{word-spacing:-2.943963pt;}
.ws14d{word-spacing:-2.939697pt;}
.ws193{word-spacing:-2.935430pt;}
.ws155{word-spacing:-2.931163pt;}
.ws1f{word-spacing:-2.928533pt;}
.ws167{word-spacing:-2.926897pt;}
.ws198{word-spacing:-2.922630pt;}
.ws15{word-spacing:-2.918364pt;}
.ws154{word-spacing:-2.914097pt;}
.ws164{word-spacing:-2.909830pt;}
.ws19b{word-spacing:-2.901297pt;}
.ws168{word-spacing:-2.897030pt;}
.ws17{word-spacing:-2.893067pt;}
.ws158{word-spacing:-2.892764pt;}
.ws15c{word-spacing:-2.888497pt;}
.ws1c{word-spacing:-2.888000pt;}
.ws1a2{word-spacing:-2.884231pt;}
.ws72{word-spacing:-2.875697pt;}
.ws12{word-spacing:-2.871431pt;}
.ws16a{word-spacing:-2.858631pt;}
.ws15b{word-spacing:-2.854364pt;}
.ws189{word-spacing:-2.850098pt;}
.wsd{word-spacing:-2.845831pt;}
.ws4{word-spacing:-2.841600pt;}
.ws196{word-spacing:-2.841564pt;}
.ws10{word-spacing:-2.837298pt;}
.ws185{word-spacing:-2.833031pt;}
.ws4f{word-spacing:-2.832267pt;}
.ws7{word-spacing:-2.832000pt;}
.ws192{word-spacing:-2.828765pt;}
.ws22{word-spacing:-2.827200pt;}
.ws184{word-spacing:-2.824498pt;}
.wse{word-spacing:-2.820231pt;}
.ws124{word-spacing:-2.815965pt;}
.wsb{word-spacing:-2.811698pt;}
.ws14{word-spacing:-2.807432pt;}
.ws1ab{word-spacing:-2.803165pt;}
.ws21{word-spacing:-2.801867pt;}
.ws16f{word-spacing:-2.798898pt;}
.ws194{word-spacing:-2.786099pt;}
.ws8{word-spacing:-2.784000pt;}
.ws15d{word-spacing:-2.781832pt;}
.ws25{word-spacing:-2.777565pt;}
.ws188{word-spacing:-2.773299pt;}
.ws173{word-spacing:-2.769032pt;}
.ws23{word-spacing:-2.766400pt;}
.ws2{word-spacing:-2.764800pt;}
.ws17f{word-spacing:-2.756232pt;}
.ws17d{word-spacing:-2.751966pt;}
.ws27{word-spacing:-2.747699pt;}
.ws16d{word-spacing:-2.743432pt;}
.ws18d{word-spacing:-2.734899pt;}
.ws163{word-spacing:-2.726366pt;}
.ws17c{word-spacing:-2.722099pt;}
.ws6{word-spacing:-2.716800pt;}
.ws199{word-spacing:-2.709299pt;}
.ws1a9{word-spacing:-2.705033pt;}
.ws17a{word-spacing:-2.696500pt;}
.ws159{word-spacing:-2.687966pt;}
.ws1d{word-spacing:-2.685333pt;}
.ws15a{word-spacing:-2.683700pt;}
.ws1b{word-spacing:-2.680267pt;}
.ws19c{word-spacing:-2.679433pt;}
.ws181{word-spacing:-2.670900pt;}
.wsa{word-spacing:-2.666633pt;}
.ws161{word-spacing:-2.641034pt;}
.ws18e{word-spacing:-2.636767pt;}
.ws16e{word-spacing:-2.632500pt;}
.ws1{word-spacing:-2.630400pt;}
.ws16b{word-spacing:-2.628234pt;}
.ws1a5{word-spacing:-2.615434pt;}
.ws152{word-spacing:-2.611167pt;}
.ws1a0{word-spacing:-2.602634pt;}
.ws17b{word-spacing:-2.598368pt;}
.ws14f{word-spacing:-2.589834pt;}
.ws156{word-spacing:-2.585568pt;}
.wsf{word-spacing:-2.572768pt;}
.ws174{word-spacing:-2.568501pt;}
.ws1a3{word-spacing:-2.555701pt;}
.ws157{word-spacing:-2.551435pt;}
.ws20{word-spacing:-2.538400pt;}
.ws170{word-spacing:-2.534368pt;}
.ws180{word-spacing:-2.530102pt;}
.ws19f{word-spacing:-2.525835pt;}
.ws11{word-spacing:-2.517302pt;}
.ws18b{word-spacing:-2.500235pt;}
.ws50{word-spacing:-2.482667pt;}
.ws178{word-spacing:-2.474636pt;}
.ws165{word-spacing:-2.470369pt;}
.ws1a6{word-spacing:-2.466103pt;}
.ws15f{word-spacing:-2.461836pt;}
.ws18a{word-spacing:-2.457569pt;}
.ws153{word-spacing:-2.444769pt;}
.ws176{word-spacing:-2.440503pt;}
.ws14e{word-spacing:-2.431970pt;}
.ws151{word-spacing:-2.385037pt;}
.ws3{word-spacing:-2.371200pt;}
.ws182{word-spacing:-2.367970pt;}
.ws0{word-spacing:-2.355171pt;}
.ws40{word-spacing:-1.356783pt;}
.ws3d{word-spacing:-1.343983pt;}
.ws3c{word-spacing:-1.309850pt;}
.ws3f{word-spacing:-1.254384pt;}
.ws3b{word-spacing:-1.198918pt;}
.ws3e{word-spacing:-1.006921pt;}
.ws49{word-spacing:-0.814923pt;}
.ws42{word-spacing:-0.793590pt;}
.ws37{word-spacing:-0.780790pt;}
.ws109{word-spacing:-0.778667pt;}
.ws75{word-spacing:-0.763724pt;}
.ws53{word-spacing:-0.757333pt;}
.ws10a{word-spacing:-0.746667pt;}
.ws132{word-spacing:-0.736000pt;}
.ws10c{word-spacing:-0.730667pt;}
.ws4b{word-spacing:-0.725324pt;}
.ws36{word-spacing:-0.703991pt;}
.ws31{word-spacing:-0.682658pt;}
.ws38{word-spacing:-0.661325pt;}
.ws4c{word-spacing:-0.657058pt;}
.ws10d{word-spacing:-0.650667pt;}
.ws44{word-spacing:-0.648525pt;}
.ws46{word-spacing:-0.635725pt;}
.ws2c{word-spacing:-0.631459pt;}
.ws35{word-spacing:-0.627192pt;}
.ws34{word-spacing:-0.618659pt;}
.ws3a{word-spacing:-0.614392pt;}
.ws76{word-spacing:-0.601592pt;}
.ws4a{word-spacing:-0.597326pt;}
.ws52{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.563193pt;}
.ws80{word-spacing:-0.554667pt;}
.ws29{word-spacing:-0.554660pt;}
.ws73{word-spacing:-0.546127pt;}
.ws2f{word-spacing:-0.541860pt;}
.ws2d{word-spacing:-0.537593pt;}
.ws2e{word-spacing:-0.529060pt;}
.wsad{word-spacing:-0.512000pt;}
.ws105{word-spacing:-0.511994pt;}
.ws33{word-spacing:-0.507727pt;}
.ws10b{word-spacing:-0.506667pt;}
.wsff{word-spacing:-0.503460pt;}
.ws136{word-spacing:-0.496000pt;}
.wsfa{word-spacing:-0.490661pt;}
.ws39{word-spacing:-0.486394pt;}
.ws122{word-spacing:-0.482127pt;}
.ws11e{word-spacing:-0.477861pt;}
.ws30{word-spacing:-0.469327pt;}
.wse5{word-spacing:-0.456528pt;}
.ws78{word-spacing:-0.453333pt;}
.wse1{word-spacing:-0.452261pt;}
.ws102{word-spacing:-0.447994pt;}
.ws101{word-spacing:-0.443728pt;}
.ws45{word-spacing:-0.439461pt;}
.wse6{word-spacing:-0.435195pt;}
.wsb2{word-spacing:-0.426661pt;}
.ws108{word-spacing:-0.422395pt;}
.ws48{word-spacing:-0.418128pt;}
.ws6f{word-spacing:-0.416000pt;}
.ws74{word-spacing:-0.413861pt;}
.ws120{word-spacing:-0.409595pt;}
.ws125{word-spacing:-0.405333pt;}
.ws2a{word-spacing:-0.405328pt;}
.wsc7{word-spacing:-0.401062pt;}
.wse0{word-spacing:-0.396795pt;}
.ws12f{word-spacing:-0.394667pt;}
.wsc6{word-spacing:-0.392528pt;}
.wsdd{word-spacing:-0.388262pt;}
.ws79{word-spacing:-0.384000pt;}
.wsea{word-spacing:-0.379729pt;}
.ws9e{word-spacing:-0.378667pt;}
.wsfd{word-spacing:-0.375462pt;}
.wsac{word-spacing:-0.373333pt;}
.wsf9{word-spacing:-0.371195pt;}
.wsf0{word-spacing:-0.368000pt;}
.ws6c{word-spacing:-0.362667pt;}
.ws130{word-spacing:-0.357333pt;}
.ws54{word-spacing:-0.352000pt;}
.ws5b{word-spacing:-0.346667pt;}
.ws60{word-spacing:-0.341333pt;}
.wsdb{word-spacing:-0.341329pt;}
.wsd1{word-spacing:-0.337062pt;}
.ws68{word-spacing:-0.336000pt;}
.ws83{word-spacing:-0.330667pt;}
.ws104{word-spacing:-0.328529pt;}
.ws7b{word-spacing:-0.325333pt;}
.wsd3{word-spacing:-0.324263pt;}
.ws55{word-spacing:-0.320000pt;}
.wsdc{word-spacing:-0.319996pt;}
.ws2b{word-spacing:-0.315729pt;}
.ws86{word-spacing:-0.314667pt;}
.ws9f{word-spacing:-0.309333pt;}
.ws107{word-spacing:-0.307196pt;}
.ws5c{word-spacing:-0.304000pt;}
.wsfb{word-spacing:-0.302930pt;}
.ws11b{word-spacing:-0.298667pt;}
.ws47{word-spacing:-0.298663pt;}
.wsfe{word-spacing:-0.294396pt;}
.ws56{word-spacing:-0.293333pt;}
.wsc9{word-spacing:-0.290130pt;}
.ws66{word-spacing:-0.288000pt;}
.wsb1{word-spacing:-0.285863pt;}
.ws8a{word-spacing:-0.282667pt;}
.wsd0{word-spacing:-0.281596pt;}
.ws5a{word-spacing:-0.277333pt;}
.wsd4{word-spacing:-0.273063pt;}
.wse9{word-spacing:-0.268797pt;}
.ws9a{word-spacing:-0.266667pt;}
.wse3{word-spacing:-0.264530pt;}
.ws51{word-spacing:-0.261333pt;}
.wse7{word-spacing:-0.260263pt;}
.ws84{word-spacing:-0.256000pt;}
.wsc1{word-spacing:-0.255997pt;}
.wse4{word-spacing:-0.251730pt;}
.ws62{word-spacing:-0.250667pt;}
.wsf5{word-spacing:-0.247464pt;}
.ws61{word-spacing:-0.245333pt;}
.wsbf{word-spacing:-0.243197pt;}
.ws89{word-spacing:-0.240000pt;}
.wsc0{word-spacing:-0.238930pt;}
.ws6d{word-spacing:-0.234667pt;}
.wsc8{word-spacing:-0.234664pt;}
.wsdf{word-spacing:-0.230397pt;}
.ws65{word-spacing:-0.229333pt;}
.ws8c{word-spacing:-0.224000pt;}
.ws7c{word-spacing:-0.218667pt;}
.ws85{word-spacing:-0.213333pt;}
.ws106{word-spacing:-0.213331pt;}
.wse2{word-spacing:-0.209064pt;}
.ws58{word-spacing:-0.208000pt;}
.wscc{word-spacing:-0.204797pt;}
.ws5f{word-spacing:-0.202667pt;}
.ws100{word-spacing:-0.200531pt;}
.wsa7{word-spacing:-0.197333pt;}
.ws64{word-spacing:-0.192000pt;}
.wsd5{word-spacing:-0.191998pt;}
.ws70{word-spacing:-0.186667pt;}
.wsc4{word-spacing:-0.183464pt;}
.ws88{word-spacing:-0.181333pt;}
.wscd{word-spacing:-0.179198pt;}
.wsa1{word-spacing:-0.176000pt;}
.wscb{word-spacing:-0.174931pt;}
.ws5e{word-spacing:-0.170667pt;}
.wsce{word-spacing:-0.170665pt;}
.ws121{word-spacing:-0.166398pt;}
.ws71{word-spacing:-0.165333pt;}
.ws138{word-spacing:-0.160000pt;}
.ws59{word-spacing:-0.154667pt;}
.wsf8{word-spacing:-0.153598pt;}
.ws6b{word-spacing:-0.149333pt;}
.wsd9{word-spacing:-0.149331pt;}
.ws8f{word-spacing:-0.144000pt;}
.ws129{word-spacing:-0.138667pt;}
.wsa9{word-spacing:-0.133333pt;}
.wsd2{word-spacing:-0.132265pt;}
.ws87{word-spacing:-0.128000pt;}
.wsc3{word-spacing:-0.123732pt;}
.ws77{word-spacing:-0.122667pt;}
.wsed{word-spacing:-0.119465pt;}
.wsb0{word-spacing:-0.117333pt;}
.ws8b{word-spacing:-0.112000pt;}
.wse8{word-spacing:-0.110932pt;}
.ws8e{word-spacing:-0.106667pt;}
.wsc5{word-spacing:-0.102399pt;}
.ws103{word-spacing:-0.098132pt;}
.ws96{word-spacing:-0.096000pt;}
.wsf4{word-spacing:-0.093865pt;}
.wsa3{word-spacing:-0.090667pt;}
.wscf{word-spacing:-0.089599pt;}
.ws9d{word-spacing:-0.085333pt;}
.ws7d{word-spacing:-0.080000pt;}
.wsde{word-spacing:-0.076799pt;}
.ws135{word-spacing:-0.074667pt;}
.wsd6{word-spacing:-0.072532pt;}
.ws147{word-spacing:-0.069333pt;}
.ws9c{word-spacing:-0.064000pt;}
.wsee{word-spacing:-0.059733pt;}
.ws94{word-spacing:-0.058667pt;}
.ws11f{word-spacing:-0.055466pt;}
.wsf2{word-spacing:-0.051199pt;}
.ws127{word-spacing:-0.048000pt;}
.ws123{word-spacing:-0.042666pt;}
.ws81{word-spacing:-0.037333pt;}
.wsf6{word-spacing:-0.034133pt;}
.ws137{word-spacing:-0.032000pt;}
.ws111{word-spacing:-0.026667pt;}
.ws6a{word-spacing:-0.021333pt;}
.wsf3{word-spacing:-0.017066pt;}
.ws92{word-spacing:-0.016000pt;}
.ws69{word-spacing:-0.010667pt;}
.wsc2{word-spacing:-0.008533pt;}
.ws139{word-spacing:-0.005333pt;}
.wsfc{word-spacing:-0.004267pt;}
.ws4d{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.005333pt;}
.ws126{word-spacing:0.016000pt;}
.wseb{word-spacing:0.021333pt;}
.wsbe{word-spacing:0.025600pt;}
.ws95{word-spacing:0.026667pt;}
.wsca{word-spacing:0.029866pt;}
.ws13a{word-spacing:0.032000pt;}
.ws6e{word-spacing:0.037333pt;}
.wsbb{word-spacing:0.038400pt;}
.ws7e{word-spacing:0.048000pt;}
.ws112{word-spacing:0.051199pt;}
.ws5d{word-spacing:0.053333pt;}
.ws93{word-spacing:0.057600pt;}
.ws7a{word-spacing:0.058667pt;}
.wsd7{word-spacing:0.059733pt;}
.ws98{word-spacing:0.064000pt;}
.wsae{word-spacing:0.069333pt;}
.wsa8{word-spacing:0.080000pt;}
.ws131{word-spacing:0.085333pt;}
.wsb9{word-spacing:0.089599pt;}
.ws99{word-spacing:0.090667pt;}
.ws117{word-spacing:0.093865pt;}
.ws57{word-spacing:0.096000pt;}
.ws11c{word-spacing:0.098132pt;}
.ws82{word-spacing:0.101333pt;}
.ws134{word-spacing:0.102399pt;}
.ws116{word-spacing:0.106665pt;}
.wsb4{word-spacing:0.112000pt;}
.wsa0{word-spacing:0.117333pt;}
.wsec{word-spacing:0.119465pt;}
.wsb3{word-spacing:0.121599pt;}
.ws11d{word-spacing:0.127998pt;}
.ws12d{word-spacing:0.128000pt;}
.wsa6{word-spacing:0.134399pt;}
.ws67{word-spacing:0.138667pt;}
.ws63{word-spacing:0.144000pt;}
.ws12e{word-spacing:0.160000pt;}
.wsb7{word-spacing:0.170665pt;}
.wsaf{word-spacing:0.170667pt;}
.ws12b{word-spacing:0.172799pt;}
.wsaa{word-spacing:0.176000pt;}
.wsa2{word-spacing:0.191998pt;}
.wsa5{word-spacing:0.197333pt;}
.wsd8{word-spacing:0.209064pt;}
.ws91{word-spacing:0.213333pt;}
.wsa4{word-spacing:0.230398pt;}
.ws9b{word-spacing:0.240000pt;}
.ws12a{word-spacing:0.247464pt;}
.ws114{word-spacing:0.264530pt;}
.wsf1{word-spacing:0.281596pt;}
.wsab{word-spacing:0.281598pt;}
.ws13e{word-spacing:0.288000pt;}
.ws97{word-spacing:0.304000pt;}
.wsb6{word-spacing:0.307196pt;}
.wsb5{word-spacing:0.332796pt;}
.ws13d{word-spacing:0.384000pt;}
.ws10e{word-spacing:0.396797pt;}
.ws13b{word-spacing:0.422396pt;}
.ws143{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.460794pt;}
.wsbc{word-spacing:0.469327pt;}
.ws148{word-spacing:0.576000pt;}
.ws144{word-spacing:0.592000pt;}
.ws115{word-spacing:0.605859pt;}
.ws133{word-spacing:0.645333pt;}
.ws10f{word-spacing:0.693333pt;}
.ws128{word-spacing:0.698667pt;}
.ws13f{word-spacing:0.778667pt;}
.ws146{word-spacing:0.800000pt;}
.ws145{word-spacing:0.869333pt;}
.ws14a{word-spacing:0.901333pt;}
.ws14b{word-spacing:0.906667pt;}
.ws149{word-spacing:0.912000pt;}
.ws110{word-spacing:0.928000pt;}
.ws12c{word-spacing:0.944000pt;}
.ws142{word-spacing:1.029333pt;}
.ws26{word-spacing:30.745216pt;}
.ws162{word-spacing:41.637880pt;}
.ws16c{word-spacing:41.642146pt;}
.ws14c{word-spacing:41.697612pt;}
.ws119{word-spacing:153.730345pt;}
.ws118{word-spacing:183.361975pt;}
.ws113{word-spacing:1315.106761pt;}
._52{margin-left:-18.487236pt;}
._51{margin-left:-13.235035pt;}
._8{margin-left:-7.485411pt;}
._c{margin-left:-4.290146pt;}
._7{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._6{width:1.013333pt;}
._2{width:3.155200pt;}
._12{width:4.339146pt;}
._4{width:8.238830pt;}
._3{width:10.022275pt;}
._a{width:11.141333pt;}
._5{width:12.230933pt;}
._b{width:13.466667pt;}
._d{width:14.956675pt;}
._f{width:18.333637pt;}
._53{width:19.285092pt;}
._e{width:21.408000pt;}
._1{width:22.348800pt;}
._13{width:43.237333pt;}
._40{width:47.491673pt;}
._3b{width:56.464361pt;}
._48{width:62.194423pt;}
._43{width:64.016266pt;}
._20{width:66.879164pt;}
._21{width:72.156965pt;}
._3a{width:79.137144pt;}
._22{width:80.451261pt;}
._34{width:81.735512pt;}
._28{width:83.971217pt;}
._38{width:89.406882pt;}
._37{width:92.547110pt;}
._10{width:93.797228pt;}
._2e{width:96.549193pt;}
._39{width:99.898485pt;}
._3f{width:108.930905pt;}
._4b{width:113.103653pt;}
._41{width:123.667787pt;}
._42{width:125.259234pt;}
._23{width:131.147161pt;}
._35{width:132.832473pt;}
._11{width:136.770556pt;}
._27{width:140.350246pt;}
._33{width:143.085145pt;}
._4e{width:145.393383pt;}
._30{width:150.056791pt;}
._2d{width:158.197489pt;}
._3c{width:159.784669pt;}
._45{width:160.906789pt;}
._47{width:164.435278pt;}
._4c{width:183.455840pt;}
._3e{width:184.526760pt;}
._1c{width:186.988596pt;}
._49{width:189.949626pt;}
._44{width:191.852535pt;}
._4a{width:194.856231pt;}
._32{width:199.626305pt;}
._36{width:203.039595pt;}
._26{width:204.575576pt;}
._19{width:208.773924pt;}
._2a{width:210.783499pt;}
._24{width:215.246376pt;}
._2c{width:219.704987pt;}
._3d{width:225.801977pt;}
._25{width:230.640317pt;}
._31{width:233.362416pt;}
._2b{width:238.239155pt;}
._4f{width:243.726020pt;}
._46{width:248.073699pt;}
._4d{width:251.286459pt;}
._29{width:253.526431pt;}
._18{width:255.117878pt;}
._2f{width:261.121003pt;}
._1f{width:268.864906pt;}
._14{width:272.350729pt;}
._17{width:290.709966pt;}
._1a{width:303.492740pt;}
._15{width:322.760765pt;}
._16{width:353.540114pt;}
._1b{width:360.644025pt;}
._1d{width:384.985054pt;}
._1e{width:541.958025pt;}
._50{width:1339.882985pt;}
._9{width:1362.726432pt;}
.fse{font-size:28.440000pt;}
.fs4{font-size:31.995733pt;}
.fs8{font-size:33.773333pt;}
.fsd{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs6{font-size:61.332267pt;}
.fsb{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs9{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:4.033333pt;}
.y2d{bottom:7.567971pt;}
.y2e{bottom:48.000000pt;}
.y1e9{bottom:94.639991pt;}
.y107{bottom:97.209992pt;}
.y251{bottom:106.356525pt;}
.yfd{bottom:110.664533pt;}
.y2b{bottom:110.665333pt;}
.yfb{bottom:110.666667pt;}
.y51{bottom:110.666724pt;}
.y2e8{bottom:110.666725pt;}
.y7e{bottom:110.668000pt;}
.y26e{bottom:110.669333pt;}
.y175{bottom:110.817333pt;}
.yb6{bottom:111.200000pt;}
.y16d{bottom:111.875650pt;}
.y1e8{bottom:115.275467pt;}
.yfc{bottom:116.560533pt;}
.y2af{bottom:117.317333pt;}
.y106{bottom:117.921200pt;}
.y2b0{bottom:117.997333pt;}
.y361{bottom:121.628958pt;}
.y1f8{bottom:123.364000pt;}
.y2e7{bottom:123.366299pt;}
.y50{bottom:125.331074pt;}
.y250{bottom:126.992000pt;}
.y290{bottom:127.976000pt;}
.yfa{bottom:127.977333pt;}
.y7d{bottom:127.978667pt;}
.y174{bottom:128.128000pt;}
.yb5{bottom:128.509333pt;}
.y2a{bottom:129.336000pt;}
.y16c{bottom:131.151142pt;}
.y325{bottom:134.328533pt;}
.y2ae{bottom:134.702667pt;}
.y4f{bottom:139.995424pt;}
.y2e6{bottom:140.675950pt;}
.y1f7{bottom:140.749333pt;}
.y1f5{bottom:140.750667pt;}
.y16b{bottom:143.849650pt;}
.y159{bottom:143.849842pt;}
.y28f{bottom:145.361333pt;}
.yf9{bottom:145.362667pt;}
.y7c{bottom:145.364000pt;}
.y26d{bottom:145.365333pt;}
.y173{bottom:145.513333pt;}
.yb4{bottom:145.894667pt;}
.y1f6{bottom:146.645333pt;}
.y324{bottom:146.952375pt;}
.y29{bottom:148.006667pt;}
.y360{bottom:151.638183pt;}
.y2e5{bottom:153.299792pt;}
.y158{bottom:156.548350pt;}
.y16a{bottom:156.549224pt;}
.y2ad{bottom:157.304000pt;}
.y1f4{bottom:158.061333pt;}
.y322{bottom:159.650883pt;}
.y323{bottom:159.953813pt;}
.yf8{bottom:162.672000pt;}
.y4e{bottom:162.672473pt;}
.y7b{bottom:162.674667pt;}
.y172{bottom:162.822667pt;}
.yb3{bottom:163.205333pt;}
.y35f{bottom:164.262025pt;}
.y2e3{bottom:165.999367pt;}
.y2e4{bottom:166.301229pt;}
.y27{bottom:166.677333pt;}
.y169{bottom:169.172000pt;}
.y157{bottom:169.172192pt;}
.y28{bottom:172.270667pt;}
.y1f3{bottom:175.370667pt;}
.y1f1{bottom:175.372000pt;}
.y321{bottom:176.961600pt;}
.y4d{bottom:177.337890pt;}
.yf7{bottom:179.982667pt;}
.y7a{bottom:179.984000pt;}
.y26c{bottom:179.985333pt;}
.y171{bottom:180.133333pt;}
.yb2{bottom:180.516000pt;}
.y1f2{bottom:181.341333pt;}
.y156{bottom:181.871767pt;}
.y167{bottom:181.871883pt;}
.y2e2{bottom:183.309017pt;}
.y26{bottom:185.348000pt;}
.y168{bottom:186.557333pt;}
.y320{bottom:189.660108pt;}
.y2ac{bottom:192.001333pt;}
.y4c{bottom:192.002240pt;}
.y1f0{bottom:192.757333pt;}
.y35e{bottom:194.271250pt;}
.y155{bottom:194.494542pt;}
.y166{bottom:194.495725pt;}
.y2e1{bottom:196.008591pt;}
.yf6{bottom:197.368000pt;}
.y79{bottom:197.370667pt;}
.y170{bottom:197.444000pt;}
.yb1{bottom:197.901333pt;}
.y31f{bottom:202.283950pt;}
.y25{bottom:204.018667pt;}
.y4b{bottom:206.666590pt;}
.y35d{bottom:206.970825pt;}
.y154{bottom:207.194117pt;}
.y165{bottom:207.195300pt;}
.y2e0{bottom:208.631367pt;}
.y2ab{bottom:209.386667pt;}
.y1ee{bottom:210.066667pt;}
.y28e{bottom:214.677333pt;}
.yf5{bottom:214.678667pt;}
.y78{bottom:214.680000pt;}
.y26b{bottom:214.681333pt;}
.y16f{bottom:214.829333pt;}
.yb0{bottom:215.210667pt;}
.y1ef{bottom:215.962667pt;}
.y31e{bottom:219.594667pt;}
.y153{bottom:219.817959pt;}
.y164{bottom:219.819142pt;}
.y4a{bottom:221.330940pt;}
.y35c{bottom:224.280475pt;}
.y2df{bottom:226.017816pt;}
.y24{bottom:226.696000pt;}
.y2aa{bottom:226.697333pt;}
.y1ed{bottom:227.376000pt;}
.y1eb{bottom:227.377333pt;}
.y28d{bottom:231.988000pt;}
.yf4{bottom:231.989333pt;}
.y77{bottom:231.990667pt;}
.y16e{bottom:232.138667pt;}
.y31d{bottom:232.293175pt;}
.y152{bottom:232.516467pt;}
.y163{bottom:232.517650pt;}
.yaf{bottom:232.521333pt;}
.y1ec{bottom:233.272000pt;}
.y49{bottom:235.995290pt;}
.y35a{bottom:236.980050pt;}
.y35b{bottom:237.281913pt;}
.y2de{bottom:238.640592pt;}
.y2a9{bottom:244.006667pt;}
.y1ea{bottom:244.686667pt;}
.y31c{bottom:244.992750pt;}
.y151{bottom:245.216042pt;}
.y162{bottom:245.217224pt;}
.yf3{bottom:249.298667pt;}
.y76{bottom:249.300000pt;}
.y26a{bottom:249.301333pt;}
.yae{bottom:249.906667pt;}
.y2dd{bottom:251.340166pt;}
.y359{bottom:254.289700pt;}
.y150{bottom:257.839884pt;}
.y161{bottom:257.840000pt;}
.y48{bottom:258.672340pt;}
.y31b{bottom:262.302400pt;}
.y23{bottom:262.678667pt;}
.y1bc{bottom:266.305634pt;}
.y2a8{bottom:266.682667pt;}
.yf2{bottom:266.684000pt;}
.y75{bottom:266.686667pt;}
.y358{bottom:266.989275pt;}
.yad{bottom:267.217333pt;}
.y2dc{bottom:268.650883pt;}
.y14f{bottom:270.538392pt;}
.y15f{bottom:270.539891pt;}
.y47{bottom:273.336690pt;}
.y31a{bottom:274.926242pt;}
.y160{bottom:275.225333pt;}
.y230{bottom:277.493634pt;}
.y356{bottom:279.613117pt;}
.y357{bottom:279.990712pt;}
.y22{bottom:281.273333pt;}
.y2db{bottom:281.349391pt;}
.y14e{bottom:283.162234pt;}
.y15e{bottom:283.162667pt;}
.y15c{bottom:283.162825pt;}
.y28c{bottom:283.993333pt;}
.yf1{bottom:283.994667pt;}
.y74{bottom:283.996000pt;}
.y269{bottom:283.997333pt;}
.yac{bottom:284.528000pt;}
.y319{bottom:287.625817pt;}
.y15d{bottom:287.924000pt;}
.y46{bottom:288.001040pt;}
.y1bb{bottom:290.342667pt;}
.y2d9{bottom:293.973234pt;}
.y2da{bottom:294.350829pt;}
.y1ba{bottom:295.105333pt;}
.y15b{bottom:295.861333pt;}
.y14d{bottom:295.861809pt;}
.y355{bottom:296.998500pt;}
.y21{bottom:299.944000pt;}
.yf0{bottom:301.305333pt;}
.y73{bottom:301.306667pt;}
.y22f{bottom:301.530667pt;}
.yab{bottom:301.837333pt;}
.y45{bottom:302.666457pt;}
.y318{bottom:304.935467pt;}
.y22e{bottom:306.293333pt;}
.y1b9{bottom:306.368000pt;}
.y28b{bottom:306.670667pt;}
.y14c{bottom:308.484584pt;}
.y2a7{bottom:309.393333pt;}
.y354{bottom:309.622342pt;}
.y1b8{bottom:311.054667pt;}
.y2d8{bottom:311.358616pt;}
.y15a{bottom:313.246667pt;}
.y44{bottom:317.330807pt;}
.y22d{bottom:317.556720pt;}
.y317{bottom:317.635042pt;}
.y20{bottom:318.614667pt;}
.yef{bottom:318.690667pt;}
.y72{bottom:318.692000pt;}
.y268{bottom:318.693333pt;}
.yaa{bottom:319.222667pt;}
.y14b{bottom:321.184159pt;}
.y1b7{bottom:322.318334pt;}
.y352{bottom:322.320850pt;}
.y353{bottom:322.623779pt;}
.y2d7{bottom:323.982458pt;}
.y2a6{bottom:326.702667pt;}
.y370{bottom:326.931992pt;}
.y316{bottom:330.257817pt;}
.y1da{bottom:331.994667pt;}
.y43{bottom:331.995157pt;}
.y22c{bottom:333.506387pt;}
.y14a{bottom:333.882667pt;}
.yee{bottom:336.000000pt;}
.y71{bottom:336.002667pt;}
.y1b5{bottom:336.529333pt;}
.ya9{bottom:336.533333pt;}
.y1f{bottom:337.285333pt;}
.y1b6{bottom:338.342667pt;}
.y1b4{bottom:338.345154pt;}
.y351{bottom:339.631567pt;}
.y2d6{bottom:341.367841pt;}
.yd2{bottom:344.014667pt;}
.y2a5{bottom:344.088000pt;}
.y2a3{bottom:344.089333pt;}
.y42{bottom:346.659507pt;}
.y315{bottom:347.644267pt;}
.y1d9{bottom:349.380000pt;}
.y2a4{bottom:349.984000pt;}
.y148{bottom:350.513966pt;}
.y350{bottom:352.331141pt;}
.y70{bottom:353.312000pt;}
.y267{bottom:353.313333pt;}
.ya8{bottom:353.844000pt;}
.y2d5{bottom:353.991683pt;}
.y1b3{bottom:354.369487pt;}
.y149{bottom:355.276000pt;}
.y1e{bottom:355.956000pt;}
.y22b{bottom:358.526875pt;}
.yed{bottom:358.677333pt;}
.y314{bottom:360.268109pt;}
.y2a2{bottom:361.398667pt;}
.y147{bottom:363.212474pt;}
.y28a{bottom:364.124000pt;}
.y34f{bottom:364.953917pt;}
.y1d8{bottom:366.690667pt;}
.y2d4{bottom:366.691258pt;}
.y41{bottom:369.336557pt;}
.yd1{bottom:369.337333pt;}
.y1b2{bottom:370.319154pt;}
.y6f{bottom:370.698667pt;}
.ya7{bottom:371.229333pt;}
.y313{bottom:372.966617pt;}
.y1d{bottom:374.626667pt;}
.y228{bottom:375.155617pt;}
.y22a{bottom:375.156000pt;}
.y146{bottom:375.836317pt;}
.y34e{bottom:377.653491pt;}
.y2a1{bottom:378.709333pt;}
.y229{bottom:379.917333pt;}
.y289{bottom:381.433333pt;}
.y36f{bottom:382.264634pt;}
.y2d3{bottom:384.000908pt;}
.y1d7{bottom:384.001333pt;}
.y1b1{bottom:386.344554pt;}
.yd0{bottom:386.648000pt;}
.y6e{bottom:388.008000pt;}
.y266{bottom:388.009333pt;}
.y145{bottom:388.535891pt;}
.ya6{bottom:388.540000pt;}
.y312{bottom:390.277334pt;}
.y227{bottom:391.861541pt;}
.y40{bottom:392.013607pt;}
.y34d{bottom:394.963142pt;}
.y2a0{bottom:396.094667pt;}
.y2d2{bottom:396.700483pt;}
.yec{bottom:396.777333pt;}
.y1c{bottom:397.304000pt;}
.y288{bottom:398.744000pt;}
.y144{bottom:401.158667pt;}
.y13f{bottom:401.159725pt;}
.y1d6{bottom:401.386667pt;}
.y1b0{bottom:402.369953pt;}
.y311{bottom:402.975842pt;}
.ycf{bottom:404.033333pt;}
.y6d{bottom:405.318667pt;}
.ya5{bottom:405.849333pt;}
.y34c{bottom:407.662716pt;}
.y226{bottom:408.490667pt;}
.y224{bottom:408.491617pt;}
.y225{bottom:413.253333pt;}
.y142{bottom:413.858558pt;}
.y13e{bottom:413.859300pt;}
.y2d1{bottom:414.010133pt;}
.yeb{bottom:414.162667pt;}
.y3f{bottom:414.690656pt;}
.y310{bottom:415.599684pt;}
.y287{bottom:416.129333pt;}
.y143{bottom:418.620000pt;}
.y1d5{bottom:418.696000pt;}
.y1d3{bottom:418.697333pt;}
.y34b{bottom:420.286558pt;}
.y29f{bottom:421.417333pt;}
.y6c{bottom:422.704000pt;}
.y265{bottom:422.705333pt;}
.ya4{bottom:423.234667pt;}
.y1d4{bottom:424.592000pt;}
.y36e{bottom:424.972367pt;}
.y223{bottom:425.197541pt;}
.y141{bottom:426.481333pt;}
.y13d{bottom:426.483142pt;}
.y2d0{bottom:426.633975pt;}
.y1af{bottom:427.314708pt;}
.yce{bottom:429.356000pt;}
.yea{bottom:431.472000pt;}
.y30f{bottom:432.985066pt;}
.y1b{bottom:433.285333pt;}
.y286{bottom:433.440000pt;}
.y1d1{bottom:436.006667pt;}
.y3e{bottom:437.367706pt;}
.y34a{bottom:437.596209pt;}
.y29e{bottom:438.728000pt;}
.y13c{bottom:439.181650pt;}
.y1ae{bottom:440.013216pt;}
.y6b{bottom:440.014667pt;}
.ya3{bottom:440.545333pt;}
.y222{bottom:441.826667pt;}
.y220{bottom:441.827617pt;}
.y1d2{bottom:441.977333pt;}
.y140{bottom:443.942667pt;}
.y2cf{bottom:444.019358pt;}
.y30e{bottom:445.608909pt;}
.y221{bottom:446.589333pt;}
.ycd{bottom:446.666667pt;}
.ye9{bottom:448.782667pt;}
.y349{bottom:450.295783pt;}
.y36d{bottom:450.521914pt;}
.y285{bottom:450.749333pt;}
.y13b{bottom:451.881224pt;}
.y1a{bottom:451.956000pt;}
.y3d{bottom:452.032056pt;}
.y1ad{bottom:452.637058pt;}
.y1d0{bottom:453.392000pt;}
.y1ce{bottom:453.393333pt;}
.y29d{bottom:456.037333pt;}
.y29b{bottom:456.040000pt;}
.y2ce{bottom:456.643200pt;}
.y6a{bottom:457.324000pt;}
.y264{bottom:457.325333pt;}
.ya2{bottom:457.856000pt;}
.y30d{bottom:458.308483pt;}
.y21f{bottom:458.533541pt;}
.y1cf{bottom:459.288000pt;}
.y29c{bottom:462.009333pt;}
.y348{bottom:462.994291pt;}
.y36c{bottom:463.297221pt;}
.y13a{bottom:464.504000pt;}
.y1ac{bottom:465.336633pt;}
.ye8{bottom:466.168000pt;}
.y284{bottom:468.134667pt;}
.y2cd{bottom:469.342775pt;}
.y19{bottom:470.626667pt;}
.y1cd{bottom:470.702667pt;}
.y1cb{bottom:470.704000pt;}
.y30c{bottom:470.931259pt;}
.ycc{bottom:471.989333pt;}
.y29a{bottom:473.425333pt;}
.y3c{bottom:474.633374pt;}
.y69{bottom:474.634667pt;}
.y263{bottom:474.636000pt;}
.y21e{bottom:475.162667pt;}
.y21c{bottom:475.164806pt;}
.ya1{bottom:475.241333pt;}
.y347{bottom:475.618133pt;}
.y1cc{bottom:476.598667pt;}
.y1ab{bottom:478.035141pt;}
.y21d{bottom:479.924000pt;}
.y36b{bottom:480.305008pt;}
.y138{bottom:481.209650pt;}
.y2cb{bottom:481.965550pt;}
.y2cc{bottom:482.344212pt;}
.ye7{bottom:483.478667pt;}
.y283{bottom:485.445333pt;}
.y139{bottom:485.896000pt;}
.y1ca{bottom:488.013333pt;}
.y30b{bottom:488.317708pt;}
.y18{bottom:489.297333pt;}
.y3b{bottom:489.373456pt;}
.y1aa{bottom:490.658983pt;}
.y299{bottom:490.736000pt;}
.y21a{bottom:491.870730pt;}
.y68{bottom:492.020000pt;}
.y262{bottom:492.021333pt;}
.y21b{bottom:492.399790pt;}
.ya0{bottom:492.550667pt;}
.y346{bottom:492.928850pt;}
.y137{bottom:493.833492pt;}
.ycb{bottom:497.312000pt;}
.y2ca{bottom:499.352000pt;}
.ye6{bottom:500.789333pt;}
.y30a{bottom:500.941550pt;}
.y282{bottom:502.756000pt;}
.y1a9{bottom:503.358558pt;}
.y3a{bottom:504.037806pt;}
.y1c9{bottom:505.398667pt;}
.y345{bottom:505.627358pt;}
.y136{bottom:506.532000pt;}
.y134{bottom:506.533224pt;}
.y298{bottom:508.045333pt;}
.y219{bottom:508.499856pt;}
.y67{bottom:509.330667pt;}
.y9f{bottom:509.861333pt;}
.y135{bottom:511.294667pt;}
.y17{bottom:511.974667pt;}
.y309{bottom:513.640058pt;}
.y1a8{bottom:515.981333pt;}
.y2c9{bottom:516.661650pt;}
.ye5{bottom:518.098667pt;}
.y344{bottom:518.326933pt;}
.y39{bottom:518.703223pt;}
.y133{bottom:519.156000pt;}
.y281{bottom:520.141333pt;}
.yca{bottom:522.634667pt;}
.y1c8{bottom:522.708000pt;}
.y1c6{bottom:522.709333pt;}
.y36a{bottom:522.938075pt;}
.y217{bottom:525.205780pt;}
.y218{bottom:525.734840pt;}
.y66{bottom:526.640000pt;}
.y261{bottom:526.641333pt;}
.y9e{bottom:527.172000pt;}
.y1c7{bottom:528.605333pt;}
.y1a6{bottom:528.680633pt;}
.y2c8{bottom:529.361224pt;}
.y308{bottom:530.950775pt;}
.y132{bottom:531.854667pt;}
.y130{bottom:531.856159pt;}
.y38{bottom:533.367573pt;}
.y1a7{bottom:533.442667pt;}
.y297{bottom:533.444000pt;}
.ye4{bottom:535.484000pt;}
.y343{bottom:535.636583pt;}
.y131{bottom:536.617333pt;}
.y280{bottom:537.452000pt;}
.yc9{bottom:540.020000pt;}
.y1a5{bottom:541.304475pt;}
.y216{bottom:541.834906pt;}
.y2c7{bottom:541.984000pt;}
.y307{bottom:543.649283pt;}
.y65{bottom:544.026667pt;}
.y12f{bottom:544.554667pt;}
.y9d{bottom:544.557333pt;}
.y36{bottom:548.031923pt;}
.y342{bottom:548.260425pt;}
.y37{bottom:548.333786pt;}
.y296{bottom:550.754667pt;}
.ye3{bottom:552.794667pt;}
.y1a4{bottom:554.002983pt;}
.y27f{bottom:554.761333pt;}
.y306{bottom:556.273125pt;}
.y12d{bottom:557.178825pt;}
.y1c4{bottom:557.329333pt;}
.yc8{bottom:557.330667pt;}
.y214{bottom:558.540830pt;}
.y16{bottom:558.614667pt;}
.y215{bottom:559.069890pt;}
.y2c6{bottom:559.974667pt;}
.y340{bottom:560.960000pt;}
.y341{bottom:561.261863pt;}
.y64{bottom:561.336000pt;}
.y260{bottom:561.337333pt;}
.y9c{bottom:561.868000pt;}
.y12e{bottom:561.940000pt;}
.y35{bottom:562.696273pt;}
.y1c5{bottom:563.301333pt;}
.y369{bottom:565.645808pt;}
.y1a3{bottom:566.702558pt;}
.y12a{bottom:569.877224pt;}
.y12c{bottom:569.877333pt;}
.ye2{bottom:570.105333pt;}
.y24c{bottom:570.332000pt;}
.y27e{bottom:572.146667pt;}
.y305{bottom:573.658508pt;}
.y12b{bottom:574.564000pt;}
.yc7{bottom:574.640000pt;}
.y1c3{bottom:574.714667pt;}
.y1c1{bottom:574.716000pt;}
.y213{bottom:575.171022pt;}
.y295{bottom:576.077333pt;}
.y33f{bottom:578.269650pt;}
.y63{bottom:578.646667pt;}
.y9b{bottom:579.177333pt;}
.y1a2{bottom:579.325333pt;}
.y1a0{bottom:579.327142pt;}
.y19b{bottom:579.327958pt;}
.y1c2{bottom:580.610667pt;}
.y129{bottom:582.500000pt;}
.y1a1{bottom:584.088000pt;}
.y34{bottom:584.541333pt;}
.y304{bottom:586.282350pt;}
.ye1{bottom:587.490667pt;}
.y24b{bottom:587.641333pt;}
.y27d{bottom:589.457333pt;}
.y33e{bottom:590.969225pt;}
.y211{bottom:591.875880pt;}
.yc6{bottom:592.025333pt;}
.y19f{bottom:592.025650pt;}
.yc4{bottom:592.026667pt;}
.y19a{bottom:592.027533pt;}
.y212{bottom:592.404940pt;}
.y294{bottom:593.386667pt;}
.y127{bottom:595.200475pt;}
.y62{bottom:596.032000pt;}
.y25f{bottom:596.033333pt;}
.y9a{bottom:596.562667pt;}
.yc5{bottom:597.921333pt;}
.y303{bottom:598.981925pt;}
.y128{bottom:599.962667pt;}
.y19e{bottom:604.649492pt;}
.y199{bottom:604.651375pt;}
.ye0{bottom:604.800000pt;}
.y24a{bottom:605.028000pt;}
.y27c{bottom:606.768000pt;}
.y126{bottom:607.823251pt;}
.y33d{bottom:608.278875pt;}
.y210{bottom:608.506072pt;}
.yc3{bottom:609.337333pt;}
.y15{bottom:612.208766pt;}
.y61{bottom:613.342667pt;}
.y99{bottom:613.873333pt;}
.y302{bottom:616.291575pt;}
.y19d{bottom:617.348000pt;}
.y198{bottom:617.349883pt;}
.y293{bottom:618.709333pt;}
.y125{bottom:620.522825pt;}
.y33c{bottom:620.978450pt;}
.y19c{bottom:622.034667pt;}
.y249{bottom:622.337333pt;}
.y2c4{bottom:623.170667pt;}
.y2c5{bottom:623.926667pt;}
.y27b{bottom:624.077333pt;}
.y20e{bottom:625.210930pt;}
.y14{bottom:625.513133pt;}
.y20f{bottom:625.739990pt;}
.yc2{bottom:626.646667pt;}
.y1c0{bottom:626.722667pt;}
.ydf{bottom:627.477333pt;}
.y301{bottom:628.991150pt;}
.y197{bottom:629.973725pt;}
.y60{bottom:630.652000pt;}
.y25e{bottom:630.653333pt;}
.y98{bottom:631.184000pt;}
.y124{bottom:633.221333pt;}
.y33b{bottom:633.602292pt;}
.y292{bottom:636.094667pt;}
.y13{bottom:638.816434pt;}
.y248{bottom:639.648000pt;}
.y2c3{bottom:640.557333pt;}
.y27a{bottom:641.464000pt;}
.y300{bottom:641.613925pt;}
.y20d{bottom:641.841122pt;}
.y196{bottom:642.673300pt;}
.yc1{bottom:644.032000pt;}
.y122{bottom:645.846825pt;}
.y338{bottom:646.300800pt;}
.y33a{bottom:646.527997pt;}
.y339{bottom:646.603729pt;}
.y5f{bottom:647.962667pt;}
.y25d{bottom:647.964000pt;}
.y97{bottom:648.569333pt;}
.y123{bottom:650.608000pt;}
.y368{bottom:650.987675pt;}
.y195{bottom:655.371808pt;}
.y247{bottom:656.958667pt;}
.y121{bottom:658.545333pt;}
.y20b{bottom:658.547047pt;}
.y291{bottom:658.772000pt;}
.y279{bottom:658.773333pt;}
.y2ff{bottom:658.924642pt;}
.y20c{bottom:659.076107pt;}
.y33{bottom:661.796000pt;}
.y337{bottom:663.611517pt;}
.y2c1{bottom:664.518667pt;}
.y2c2{bottom:665.198667pt;}
.y5e{bottom:665.348000pt;}
.y25c{bottom:665.349333pt;}
.y12{bottom:665.499834pt;}
.yde{bottom:665.576000pt;}
.y96{bottom:665.880000pt;}
.yc0{bottom:666.633333pt;}
.y1bf{bottom:666.708000pt;}
.y194{bottom:667.995650pt;}
.y118{bottom:671.169456pt;}
.y11f{bottom:671.169650pt;}
.y2fe{bottom:671.624217pt;}
.y246{bottom:674.344000pt;}
.y20a{bottom:675.176172pt;}
.y120{bottom:675.930667pt;}
.y278{bottom:676.084000pt;}
.y336{bottom:676.310025pt;}
.y32{bottom:677.140000pt;}
.y11{bottom:678.879933pt;}
.y2c0{bottom:681.904000pt;}
.y5d{bottom:682.658667pt;}
.ydd{bottom:682.961333pt;}
.y95{bottom:683.189333pt;}
.y117{bottom:683.867964pt;}
.y11e{bottom:683.869224pt;}
.y2fd{bottom:684.322725pt;}
.y193{bottom:684.700508pt;}
.y335{bottom:688.933867pt;}
.y245{bottom:691.653333pt;}
.y209{bottom:691.882097pt;}
.y10{bottom:692.183233pt;}
.y31{bottom:692.409333pt;}
.y277{bottom:693.469333pt;}
.y367{bottom:693.620742pt;}
.y116{bottom:696.491806pt;}
.y11d{bottom:696.492000pt;}
.y192{bottom:697.324350pt;}
.y5c{bottom:699.968000pt;}
.y25a{bottom:699.969333pt;}
.ydc{bottom:700.272000pt;}
.y94{bottom:700.500000pt;}
.y25b{bottom:700.725333pt;}
.y2fc{bottom:701.633442pt;}
.ybf{bottom:703.598667pt;}
.y1be{bottom:704.353333pt;}
.yf{bottom:705.487600pt;}
.y2bf{bottom:705.866667pt;}
.y334{bottom:706.319250pt;}
.y30{bottom:707.754667pt;}
.y208{bottom:708.511222pt;}
.y244{bottom:708.964000pt;}
.y115{bottom:709.190314pt;}
.y11b{bottom:709.190825pt;}
.y191{bottom:710.023925pt;}
.y276{bottom:710.780000pt;}
.y11c{bottom:713.953333pt;}
.y2fb{bottom:714.331950pt;}
.y259{bottom:717.354667pt;}
.ydb{bottom:717.582667pt;}
.y93{bottom:717.885333pt;}
.ye{bottom:718.866633pt;}
.y333{bottom:718.943092pt;}
.ybe{bottom:720.908000pt;}
.y1bd{bottom:721.738667pt;}
.y11a{bottom:721.889333pt;}
.y114{bottom:721.889889pt;}
.y105{bottom:722.420000pt;}
.y5b{bottom:722.645333pt;}
.y190{bottom:722.647767pt;}
.y2f{bottom:723.098667pt;}
.y207{bottom:725.217147pt;}
.y243{bottom:726.349333pt;}
.y2f9{bottom:726.955792pt;}
.y2fa{bottom:727.182989pt;}
.y275{bottom:728.089333pt;}
.y2bd{bottom:729.904000pt;}
.y2be{bottom:730.584000pt;}
.y331{bottom:731.642666pt;}
.y332{bottom:731.944529pt;}
.yd{bottom:732.171000pt;}
.y113{bottom:734.513731pt;}
.y258{bottom:734.665333pt;}
.yda{bottom:734.968000pt;}
.y92{bottom:735.196000pt;}
.y18f{bottom:735.346275pt;}
.y366{bottom:736.328475pt;}
.ybd{bottom:738.293333pt;}
.y119{bottom:739.276000pt;}
.y104{bottom:739.805333pt;}
.y206{bottom:741.847339pt;}
.y242{bottom:743.660000pt;}
.y2f8{bottom:744.265442pt;}
.y274{bottom:745.474667pt;}
.yc{bottom:745.550033pt;}
.y112{bottom:747.212239pt;}
.y18e{bottom:747.970117pt;}
.y330{bottom:748.952317pt;}
.y257{bottom:751.974667pt;}
.yd9{bottom:752.277333pt;}
.y91{bottom:752.505333pt;}
.y2bb{bottom:753.866667pt;}
.y1e7{bottom:754.545847pt;}
.y2bc{bottom:754.546667pt;}
.ybc{bottom:755.604000pt;}
.y2f6{bottom:756.965017pt;}
.y103{bottom:757.116000pt;}
.y2f7{bottom:757.266879pt;}
.y204{bottom:758.552197pt;}
.yb{bottom:758.853333pt;}
.y205{bottom:759.081257pt;}
.y18d{bottom:760.669692pt;}
.y241{bottom:760.969333pt;}
.y23f{bottom:760.970667pt;}
.y32f{bottom:761.651891pt;}
.y273{bottom:762.785333pt;}
.y111{bottom:763.842431pt;}
.y240{bottom:766.941333pt;}
.y90{bottom:769.890667pt;}
.ybb{bottom:772.914667pt;}
.y18c{bottom:773.368199pt;}
.y2f5{bottom:774.274667pt;}
.y102{bottom:774.426667pt;}
.y1e6{bottom:774.501864pt;}
.y256{bottom:774.652000pt;}
.yd8{bottom:774.954667pt;}
.y203{bottom:775.182389pt;}
.y110{bottom:776.542005pt;}
.y2ba{bottom:777.904000pt;}
.y23d{bottom:778.356000pt;}
.y365{bottom:778.961542pt;}
.y272{bottom:780.096000pt;}
.y9{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.ya{bottom:783.192800pt;}
.y23e{bottom:784.252000pt;}
.y18b{bottom:785.992042pt;}
.y2f4{bottom:786.974241pt;}
.y8f{bottom:787.201333pt;}
.y1e5{bottom:787.201439pt;}
.y8{bottom:788.182667pt;}
.y10f{bottom:789.164781pt;}
.yba{bottom:790.300000pt;}
.y32e{bottom:791.661116pt;}
.y101{bottom:791.812000pt;}
.y201{bottom:791.887247pt;}
.y202{bottom:792.416307pt;}
.y23c{bottom:795.666667pt;}
.y271{bottom:797.405333pt;}
.y5{bottom:797.556000pt;}
.y18a{bottom:798.690550pt;}
.y181{bottom:798.691258pt;}
.y2f2{bottom:799.598084pt;}
.y2f3{bottom:799.975679pt;}
.y2b8{bottom:801.865333pt;}
.y2b9{bottom:802.546667pt;}
.y6{bottom:802.846667pt;}
.y1e4{bottom:803.830564pt;}
.y32d{bottom:804.284958pt;}
.y8e{bottom:804.512000pt;}
.yb9{bottom:807.609333pt;}
.y200{bottom:808.517439pt;}
.y10e{bottom:808.969333pt;}
.y374{bottom:808.970767pt;}
.y100{bottom:809.121333pt;}
.y5a{bottom:810.180000pt;}
.y189{bottom:811.314392pt;}
.y180{bottom:811.315100pt;}
.y23b{bottom:812.976000pt;}
.y239{bottom:812.977333pt;}
.yd7{bottom:813.053333pt;}
.y270{bottom:814.792000pt;}
.y1e3{bottom:816.530139pt;}
.y2f1{bottom:816.983466pt;}
.y32c{bottom:817.210664pt;}
.y32b{bottom:817.286396pt;}
.y23a{bottom:818.948000pt;}
.y2b7{bottom:819.176000pt;}
.y364{bottom:821.594609pt;}
.y255{bottom:821.594667pt;}
.y8d{bottom:821.897333pt;}
.y17f{bottom:824.013608pt;}
.y188{bottom:824.013966pt;}
.y1ff{bottom:825.223363pt;}
.y59{bottom:828.850667pt;}
.y2f0{bottom:829.607309pt;}
.yb8{bottom:830.287933pt;}
.y237{bottom:830.362667pt;}
.yd6{bottom:830.364000pt;}
.y4{bottom:830.817867pt;}
.yff{bottom:831.798667pt;}
.y26f{bottom:832.101333pt;}
.y1e2{bottom:833.160331pt;}
.y32a{bottom:834.294183pt;}
.y238{bottom:836.258667pt;}
.y17e{bottom:836.637450pt;}
.y187{bottom:836.637809pt;}
.y254{bottom:838.904000pt;}
.y8c{bottom:839.208000pt;}
.y1fd{bottom:841.852489pt;}
.y2ef{bottom:842.306883pt;}
.y1fe{bottom:842.381549pt;}
.y2b5{bottom:843.213333pt;}
.y2b6{bottom:843.893333pt;}
.y329{bottom:846.992691pt;}
.y373{bottom:847.295621pt;}
.y58{bottom:847.521333pt;}
.y236{bottom:847.673333pt;}
.yd5{bottom:847.749333pt;}
.y185{bottom:849.336317pt;}
.y17d{bottom:849.337025pt;}
.y10d{bottom:849.412000pt;}
.y1e1{bottom:849.865189pt;}
.yb7{bottom:854.249333pt;}
.y253{bottom:856.289333pt;}
.y8b{bottom:856.517333pt;}
.y1fc{bottom:858.482681pt;}
.y2ee{bottom:859.616533pt;}
.y363{bottom:859.994129pt;}
.y2b4{bottom:860.524000pt;}
.y3{bottom:860.827467pt;}
.y17c{bottom:862.035533pt;}
.y184{bottom:862.035891pt;}
.y372{bottom:864.303408pt;}
.y235{bottom:864.982667pt;}
.y233{bottom:864.984000pt;}
.yd4{bottom:865.058667pt;}
.y57{bottom:866.116000pt;}
.y1e0{bottom:866.495381pt;}
.y10c{bottom:866.797333pt;}
.y234{bottom:870.954667pt;}
.y2ed{bottom:872.316108pt;}
.y182{bottom:872.920000pt;}
.y8a{bottom:873.902667pt;}
.y183{bottom:874.658667pt;}
.y17b{bottom:874.659375pt;}
.y1fb{bottom:875.188605pt;}
.y328{bottom:876.926184pt;}
.y252{bottom:878.966667pt;}
.y1df{bottom:879.193889pt;}
.y231{bottom:882.293333pt;}
.y10b{bottom:884.108000pt;}
.y2b2{bottom:884.561333pt;}
.y2ec{bottom:884.938884pt;}
.y2b3{bottom:885.241333pt;}
.y186{bottom:887.357175pt;}
.y17a{bottom:887.358950pt;}
.yd3{bottom:887.736000pt;}
.y232{bottom:888.264000pt;}
.y56{bottom:888.793333pt;}
.y327{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y89{bottom:891.213333pt;}
.y1f9{bottom:891.817731pt;}
.y1fa{bottom:892.422523pt;}
.y85{bottom:892.946238pt;}
.y1de{bottom:895.824081pt;}
.y10a{bottom:901.417333pt;}
.y2b1{bottom:901.872000pt;}
.y2eb{bottom:902.325333pt;}
.y371{bottom:902.627196pt;}
.y179{bottom:903.988075pt;}
.y84{bottom:907.611655pt;}
.y1dd{bottom:908.523655pt;}
.y88{bottom:908.524000pt;}
.y24f{bottom:913.966283pt;}
.y2ea{bottom:914.948108pt;}
.y362{bottom:915.326770pt;}
.y178{bottom:916.687650pt;}
.y109{bottom:918.802667pt;}
.y326{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y54{bottom:925.001333pt;}
.y1dc{bottom:925.152781pt;}
.y87{bottom:925.833333pt;}
.y177{bottom:929.311492pt;}
.y83{bottom:930.288705pt;}
.y55{bottom:930.594667pt;}
.y2e9{bottom:932.258825pt;}
.y24e{bottom:934.602825pt;}
.y108{bottom:941.404000pt;}
.y86{bottom:943.218667pt;}
.y52{bottom:943.672000pt;}
.y82{bottom:944.953055pt;}
.y1db{bottom:944.957333pt;}
.y24d{bottom:947.301333pt;}
.yfe{bottom:949.114667pt;}
.y53{bottom:949.266667pt;}
.y176{bottom:952.668000pt;}
.y2c{bottom:984.037333pt;}
.y7f{bottom:990.312000pt;}
.y81{bottom:994.393333pt;}
.h11{height:16.478800pt;}
.h17{height:21.330000pt;}
.h4{height:24.828689pt;}
.h9{height:26.174333pt;}
.h14{height:26.663600pt;}
.h16{height:30.378287pt;}
.ha{height:30.916533pt;}
.hd{height:31.082945pt;}
.h15{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hf{height:34.772899pt;}
.he{height:36.052883pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.hc{height:40.000000pt;}
.h12{height:46.933333pt;}
.h7{height:47.593839pt;}
.h13{height:47.999600pt;}
.h10{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.hb{height:88.063659pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:46.261467pt;}
.xf{left:48.000000pt;}
.x6f{left:49.662913pt;}
.x49{left:52.081867pt;}
.x48{left:53.971600pt;}
.x1e{left:57.600000pt;}
.x1f{left:61.303300pt;}
.x10{left:63.496000pt;}
.x57{left:76.572443pt;}
.x29{left:108.925105pt;}
.x20{left:112.779990pt;}
.x68{left:117.920193pt;}
.x21{left:125.479565pt;}
.x58{left:144.150265pt;}
.x6d{left:153.069620pt;}
.x70{left:155.337325pt;}
.x59{left:160.553260pt;}
.x6e{left:166.373987pt;}
.x6c{left:168.263030pt;}
.x71{left:169.472615pt;}
.x11{left:171.136254pt;}
.x62{left:175.369075pt;}
.x2a{left:190.109157pt;}
.x22{left:201.976742pt;}
.x72{left:204.472000pt;}
.x74{left:207.193333pt;}
.x69{left:236.672842pt;}
.x5b{left:250.808132pt;}
.x5a{left:255.645404pt;}
.x73{left:261.845333pt;}
.x6b{left:264.943422pt;}
.x1{left:266.682667pt;}
.x66{left:271.218667pt;}
.x85{left:273.184000pt;}
.x19{left:277.116000pt;}
.x67{left:278.853333pt;}
.x15{left:282.632000pt;}
.x6a{left:293.441199pt;}
.x86{left:295.330923pt;}
.x1a{left:304.328000pt;}
.x17{left:306.066667pt;}
.x1b{left:312.037333pt;}
.x18{left:314.305333pt;}
.x8c{left:315.740995pt;}
.x8a{left:326.248597pt;}
.x2b{left:332.142582pt;}
.x5c{left:334.108424pt;}
.x4a{left:340.006667pt;}
.x55{left:344.012000pt;}
.x23{left:350.058091pt;}
.x56{left:351.722667pt;}
.x5d{left:352.779124pt;}
.x89{left:353.762920pt;}
.x87{left:357.013352pt;}
.x16{left:365.858667pt;}
.x8d{left:374.777057pt;}
.x51{left:380.145333pt;}
.x8{left:386.342667pt;}
.x52{left:387.780000pt;}
.x9{left:396.169333pt;}
.x82{left:402.366667pt;}
.x2{left:403.729333pt;}
.x75{left:411.288000pt;}
.x81{left:416.425333pt;}
.x8f{left:420.281905pt;}
.x3{left:422.777333pt;}
.x76{left:449.688000pt;}
.x79{left:453.316000pt;}
.x13{left:455.660000pt;}
.x77{left:457.322667pt;}
.x46{left:458.381333pt;}
.x7a{left:461.026667pt;}
.x14{left:463.672000pt;}
.x47{left:464.654667pt;}
.x7b{left:473.272000pt;}
.x4d{left:474.936000pt;}
.x2c{left:478.712483pt;}
.x1c{left:480.982667pt;}
.x4e{left:482.645333pt;}
.x24{left:483.549756pt;}
.x1d{left:488.617333pt;}
.x4{left:504.566667pt;}
.xa{left:505.926133pt;}
.x8b{left:511.368417pt;}
.x4f{left:514.772000pt;}
.x50{left:522.481333pt;}
.x5{left:523.540000pt;}
.x78{left:529.662667pt;}
.x7f{left:531.477333pt;}
.x2d{left:534.119790pt;}
.x80{left:535.785333pt;}
.xb{left:537.750667pt;}
.x63{left:545.158667pt;}
.x25{left:550.901447pt;}
.x26{left:552.564360pt;}
.x41{left:558.160000pt;}
.x5f{left:572.822240pt;}
.x53{left:576.605333pt;}
.x5e{left:577.735245pt;}
.x54{left:584.314667pt;}
.x7d{left:589.228000pt;}
.x7e{left:593.537333pt;}
.x88{left:602.756414pt;}
.x64{left:605.706667pt;}
.x4b{left:609.260000pt;}
.x65{left:613.417333pt;}
.x4c{left:616.970667pt;}
.x2e{left:622.409886pt;}
.x90{left:634.807223pt;}
.x27{left:638.737149pt;}
.x3d{left:645.014667pt;}
.x3e{left:648.717333pt;}
.x37{left:650.154667pt;}
.x28{left:651.890051pt;}
.x3f{left:652.800000pt;}
.x38{left:654.236000pt;}
.x45{left:660.132000pt;}
.x8e{left:661.641738pt;}
.x6{left:662.550667pt;}
.x61{left:664.210964pt;}
.x33{left:665.121333pt;}
.x60{left:666.251472pt;}
.x3c{left:669.732000pt;}
.x30{left:671.546667pt;}
.x12{left:681.146667pt;}
.x7{left:689.008000pt;}
.x42{left:691.805333pt;}
.x7c{left:692.936000pt;}
.x43{left:697.776000pt;}
.x32{left:701.026667pt;}
.x34{left:707.754667pt;}
.x40{left:710.097333pt;}
.x35{left:714.330667pt;}
.x44{left:726.576000pt;}
.x39{left:731.792000pt;}
.xc{left:733.380000pt;}
.x36{left:735.496000pt;}
.x84{left:737.684000pt;}
.xd{left:741.316000pt;}
.x83{left:744.033333pt;}
.x3a{left:751.445333pt;}
.x2f{left:753.260000pt;}
.x3b{left:755.528000pt;}
.x31{left:757.114667pt;}
}




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