
    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_f35f05ffbaa9bcbf8220a5bf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_686822273b5a605afb35fbb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_736d955426a9f230734d5f0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856000;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_6a4cf872396c06f081d39b54.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048340;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_457c13f775610692acd4ac88.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_77167178a89ad81b9e936269.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_569f76f6bafc93af511e9033.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.132812;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_903608a5a0b84d5d6d3f1bb6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_779872ef73c239b00254f7d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027344;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_b41ec0ee6b316d4c1b96d8bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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_7719896ea957794fa7c9eef1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.048340;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_4f61f08a6fa289ead5178437.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.856000;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_54d3e59f0ff024b07d230dbf.woff2')format("woff");}.fff{font-family:fff;line-height:1.048340;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_5172b9eca14c522b2494e317.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.962000;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_524bbeaf010c6e617d8595db.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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_0bc4fbafbf620e30dd3c3117.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.055664;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_50e87f04b2b16fe7a327f1c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.132812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_db6e085f8f2350e63baa96ad.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.055664;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:ff15;src:url('chunks/assets/font_fe76bf592192dc30fa71d636.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.973633;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:ff16;src:url('chunks/assets/font_0f37206edfbd76a240e287b7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.973633;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:ff17;src:url('chunks/assets/font_e53bd25dc51b21b06a9989c2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.722656;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:ff18;src:url('chunks/assets/font_a165614ecbe4980c081456e6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.896000;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:ff19;src:url('chunks/assets/font_1e6477162557153de1df814b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.034000;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:ff1a;src:url('chunks/assets/font_9c8fe644f2411393f7b03fda.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.896000;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:ff1b;src:url('chunks/assets/font_6901136d24d16f0d316b40d6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.034000;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:ff1c;src:url('chunks/assets/font_5937786657e62043a36b2e8a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.001000;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:ff1d;src:url('chunks/assets/font_811ae2098aa087d36ba04a15.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.031738;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:ff1e;src:url('chunks/assets/font_07be0eac3361d218cefa35a6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.031738;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:ff1f;src:url('chunks/assets/font_0335967c06c0c2f359c26474.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.132812;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:ff20;src:url('chunks/assets/font_2fe3167a35fc8a051fc65510.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.031738;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m4{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v4{vertical-align:-19.979736px;}
.v1{vertical-align:-6.255020px;}
.v5{vertical-align:-1.169940px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v6{vertical-align:6.000000px;}
.v3{vertical-align:19.979736px;}
.ls1c{letter-spacing:-9.900000px;}
.ls10{letter-spacing:-9.300000px;}
.ls23{letter-spacing:-8.400000px;}
.ls31{letter-spacing:-7.410000px;}
.ls58{letter-spacing:-5.100000px;}
.ls4a{letter-spacing:-4.980000px;}
.ls37{letter-spacing:-4.620000px;}
.ls65{letter-spacing:-4.374000px;}
.ls43{letter-spacing:-4.140000px;}
.ls16{letter-spacing:-3.780000px;}
.ls19{letter-spacing:-3.726000px;}
.ls3f{letter-spacing:-3.600000px;}
.ls4c{letter-spacing:-3.540000px;}
.ls17{letter-spacing:-3.402000px;}
.ls40{letter-spacing:-3.360000px;}
.ls13{letter-spacing:-3.300000px;}
.ls47{letter-spacing:-3.180000px;}
.ls6a{letter-spacing:-3.078000px;}
.ls41{letter-spacing:-3.060000px;}
.ls48{letter-spacing:-3.000000px;}
.ls1b{letter-spacing:-2.862000px;}
.ls33{letter-spacing:-2.820000px;}
.lsf{letter-spacing:-2.700000px;}
.ls2{letter-spacing:-2.621942px;}
.ls30{letter-spacing:-2.550000px;}
.ls18{letter-spacing:-2.538000px;}
.ls6c{letter-spacing:-2.430000px;}
.ls1a{letter-spacing:-2.214000px;}
.ls5d{letter-spacing:-2.160000px;}
.ls64{letter-spacing:-1.890000px;}
.ls54{letter-spacing:-1.800000px;}
.ls4e{letter-spacing:-1.716000px;}
.ls42{letter-spacing:-1.650000px;}
.ls1e{letter-spacing:-1.566000px;}
.ls28{letter-spacing:-1.500000px;}
.ls56{letter-spacing:-1.140000px;}
.ls35{letter-spacing:-1.026000px;}
.ls5f{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.960000px;}
.ls45{letter-spacing:-0.923400px;}
.ls57{letter-spacing:-0.840000px;}
.ls67{letter-spacing:-0.756000px;}
.ls49{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.600000px;}
.ls59{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432000px;}
.ls51{letter-spacing:-0.420000px;}
.ls4f{letter-spacing:-0.390000px;}
.ls52{letter-spacing:-0.360000px;}
.ls68{letter-spacing:-0.324000px;}
.ls38{letter-spacing:-0.312000px;}
.ls3e{letter-spacing:-0.310800px;}
.ls50{letter-spacing:-0.300000px;}
.ls69{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.239760px;}
.ls63{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.199800px;}
.ls3c{letter-spacing:-0.159840px;}
.ls39{letter-spacing:-0.119880px;}
.ls60{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.078000px;}
.ls32{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.001336px;}
.ls46{letter-spacing:0.006456px;}
.ls22{letter-spacing:0.007005px;}
.lsd{letter-spacing:0.022799px;}
.lse{letter-spacing:0.032453px;}
.ls5a{letter-spacing:0.054000px;}
.ls44{letter-spacing:0.054444px;}
.ls4d{letter-spacing:0.060000px;}
.ls6f{letter-spacing:0.078000px;}
.ls14{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.159840px;}
.ls5c{letter-spacing:0.162000px;}
.ls2c{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls53{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.378000px;}
.ls2b{letter-spacing:0.390000px;}
.ls2a{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.486000px;}
.ls6{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.594000px;}
.ls6e{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.702000px;}
.ls4b{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.756000px;}
.ls70{letter-spacing:0.785338px;}
.ls4{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.918000px;}
.ls7{letter-spacing:1.020000px;}
.ls25{letter-spacing:1.026000px;}
.ls5b{letter-spacing:1.296000px;}
.ls6b{letter-spacing:2.646000px;}
.ls6d{letter-spacing:2.973584px;}
.ls34{letter-spacing:3.477000px;}
.ls3{letter-spacing:3.745632px;}
.ls2f{letter-spacing:40.560000px;}
.lsc{letter-spacing:255.894018px;}
.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;}
}
.ws72{word-spacing:-33.450000px;}
.ws29{word-spacing:-30.150000px;}
.ws1c{word-spacing:-28.650000px;}
.ws2b{word-spacing:-19.812000px;}
.ws94{word-spacing:-19.500000px;}
.ws2a{word-spacing:-19.344000px;}
.ws3f{word-spacing:-19.110000px;}
.ws5f{word-spacing:-18.720000px;}
.ws67{word-spacing:-17.706000px;}
.ws3b{word-spacing:-17.613000px;}
.ws8d{word-spacing:-15.768000px;}
.ws61{word-spacing:-15.660000px;}
.ws5{word-spacing:-15.480000px;}
.ws65{word-spacing:-15.420000px;}
.ws93{word-spacing:-15.180000px;}
.ws63{word-spacing:-14.940000px;}
.ws34{word-spacing:-14.700000px;}
.ws68{word-spacing:-14.520000px;}
.ws77{word-spacing:-14.418000px;}
.ws7e{word-spacing:-14.148000px;}
.ws35{word-spacing:-14.100000px;}
.ws86{word-spacing:-13.878000px;}
.ws1e{word-spacing:-13.770000px;}
.ws7f{word-spacing:-13.716000px;}
.ws85{word-spacing:-13.662000px;}
.ws7c{word-spacing:-13.608000px;}
.ws59{word-spacing:-13.556556px;}
.ws84{word-spacing:-13.554000px;}
.ws91{word-spacing:-13.500000px;}
.ws79{word-spacing:-13.446000px;}
.ws6{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.338000px;}
.ws78{word-spacing:-13.284000px;}
.ws73{word-spacing:-13.230000px;}
.ws75{word-spacing:-13.176000px;}
.ws76{word-spacing:-13.122000px;}
.ws8{word-spacing:-13.068000px;}
.ws8c{word-spacing:-13.014000px;}
.ws80{word-spacing:-12.906000px;}
.ws87{word-spacing:-12.798000px;}
.ws74{word-spacing:-12.582000px;}
.ws3c{word-spacing:-12.366000px;}
.ws7d{word-spacing:-12.150000px;}
.ws36{word-spacing:-12.012000px;}
.wsd{word-spacing:-11.826000px;}
.ws7b{word-spacing:-10.962000px;}
.ws7a{word-spacing:-10.908000px;}
.ws46{word-spacing:-10.869120px;}
.ws40{word-spacing:-10.829160px;}
.ws42{word-spacing:-10.669320px;}
.ws41{word-spacing:-10.589400px;}
.ws43{word-spacing:-10.227540px;}
.ws60{word-spacing:-9.960000px;}
.ws13{word-spacing:-9.720000px;}
.ws83{word-spacing:-8.748000px;}
.ws2d{word-spacing:-1.026000px;}
.wsa{word-spacing:-1.020000px;}
.ws51{word-spacing:-0.879120px;}
.ws4{word-spacing:-0.840000px;}
.ws4c{word-spacing:-0.839160px;}
.ws95{word-spacing:-0.785338px;}
.ws9{word-spacing:-0.540000px;}
.ws2e{word-spacing:-0.480000px;}
.ws4d{word-spacing:-0.479520px;}
.ws50{word-spacing:-0.439560px;}
.ws31{word-spacing:-0.420000px;}
.ws4e{word-spacing:-0.399600px;}
.ws30{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.359640px;}
.wsc{word-spacing:-0.324000px;}
.ws27{word-spacing:-0.270000px;}
.ws26{word-spacing:-0.216000px;}
.ws4f{word-spacing:-0.199800px;}
.ws10{word-spacing:-0.198000px;}
.ws33{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.159840px;}
.ws28{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.054000px;}
.ws39{word-spacing:0.060000px;}
.ws32{word-spacing:0.078000px;}
.ws81{word-spacing:0.108000px;}
.ws47{word-spacing:0.119880px;}
.ws4b{word-spacing:0.159840px;}
.ws4a{word-spacing:0.199800px;}
.ws6a{word-spacing:0.300000px;}
.ws52{word-spacing:0.310800px;}
.ws8f{word-spacing:0.324000px;}
.ws6d{word-spacing:0.360000px;}
.ws69{word-spacing:0.390000px;}
.ws15{word-spacing:0.432000px;}
.wsf{word-spacing:0.660000px;}
.ws89{word-spacing:0.756000px;}
.ws5b{word-spacing:0.923400px;}
.ws2c{word-spacing:0.960000px;}
.ws8a{word-spacing:1.026000px;}
.ws1{word-spacing:1.428000px;}
.ws2f{word-spacing:1.500000px;}
.ws57{word-spacing:1.650000px;}
.ws6f{word-spacing:1.800000px;}
.ws88{word-spacing:1.890000px;}
.ws1a{word-spacing:2.214000px;}
.ws92{word-spacing:2.430000px;}
.ws18{word-spacing:2.538000px;}
.ws38{word-spacing:2.550000px;}
.ws17{word-spacing:2.700000px;}
.ws1b{word-spacing:2.862000px;}
.ws8e{word-spacing:3.078000px;}
.ws14{word-spacing:3.300000px;}
.ws19{word-spacing:3.726000px;}
.ws3{word-spacing:3.745632px;}
.ws16{word-spacing:3.780000px;}
.ws1d{word-spacing:6.258600px;}
.ws2{word-spacing:6.367574px;}
.ws37{word-spacing:8.400000px;}
.wse{word-spacing:9.300000px;}
.ws25{word-spacing:9.887400px;}
.ws24{word-spacing:77.603400px;}
.ws20{word-spacing:82.252800px;}
.ws23{word-spacing:112.692600px;}
.ws11{word-spacing:114.706800px;}
.ws1f{word-spacing:123.319800px;}
.ws45{word-spacing:128.844343px;}
.ws21{word-spacing:129.735000px;}
.ws22{word-spacing:134.352000px;}
.ws6c{word-spacing:205.014018px;}
.ws6e{word-spacing:207.354018px;}
.ws90{word-spacing:207.678018px;}
.ws66{word-spacing:207.894018px;}
.ws8b{word-spacing:208.794018px;}
.ws82{word-spacing:209.838018px;}
.ws6b{word-spacing:209.874018px;}
.ws71{word-spacing:210.594018px;}
.ws70{word-spacing:211.494018px;}
.ws3a{word-spacing:216.534018px;}
.ws5e{word-spacing:217.074018px;}
.ws56{word-spacing:217.254018px;}
.ws5d{word-spacing:217.614018px;}
.ws5c{word-spacing:217.974018px;}
.ws54{word-spacing:218.154018px;}
.ws62{word-spacing:218.694018px;}
.ws53{word-spacing:218.874018px;}
.ws58{word-spacing:220.494018px;}
.ws3e{word-spacing:221.934018px;}
.ws55{word-spacing:245.665200px;}
.ws44{word-spacing:245.678911px;}
.ws3d{word-spacing:673.812000px;}
.ws5a{word-spacing:929.008828px;}
.ws64{word-spacing:1042.248000px;}
.ws12{word-spacing:2120.369400px;}
._34{margin-left:-42.031172px;}
._33{margin-left:-33.089999px;}
._17{margin-left:-16.829998px;}
._15{margin-left:-15.786222px;}
._32{margin-left:-14.669999px;}
._29{margin-left:-12.989184px;}
._b{margin-left:-11.028058px;}
._35{margin-left:-9.900582px;}
._9{margin-left:-7.247798px;}
._a{margin-left:-4.932407px;}
._0{margin-left:-3.835200px;}
._4{margin-left:-2.233800px;}
._7{margin-left:-1.030049px;}
._1{width:1.713600px;}
._2{width:2.723400px;}
._3{width:3.814800px;}
._8{width:5.273524px;}
._6{width:6.564326px;}
._c{width:7.785943px;}
._5{width:9.888468px;}
._39{width:12.425746px;}
._30{width:36.524383px;}
._25{width:38.476800px;}
._2c{width:64.444075px;}
._23{width:102.020400px;}
._31{width:114.815365px;}
._2f{width:119.354400px;}
._11{width:187.736137px;}
._20{width:195.551206px;}
._1c{width:198.640699px;}
._1d{width:217.770376px;}
._26{width:374.257735px;}
._2a{width:458.998674px;}
._2d{width:510.841708px;}
._24{width:589.616935px;}
._2e{width:619.048764px;}
._10{width:724.625366px;}
._36{width:775.243264px;}
._37{width:816.080400px;}
._38{width:824.845263px;}
._14{width:826.239944px;}
._28{width:834.105601px;}
._19{width:1007.695537px;}
._12{width:1025.222828px;}
._21{width:1058.718019px;}
._13{width:1060.205337px;}
._1f{width:1082.003212px;}
._27{width:1099.153800px;}
._1e{width:1122.866170px;}
._2b{width:1345.585736px;}
._1a{width:1471.372881px;}
._18{width:1481.834339px;}
._d{width:1650.392966px;}
._16{width:1739.960391px;}
._1b{width:1787.186400px;}
._f{width:1980.268766px;}
._22{width:2045.580441px;}
._e{width:2122.501208px;}
.fc8{color:rgb(87,90,96);}
.fc7{color:rgb(103,108,114);}
.fc6{color:transparent;}
.fc5{color:rgb(112,111,111);}
.fc3{color:rgb(0,116,190);}
.fc2{color:rgb(0,155,122);}
.fc4{color:rgb(0,95,120);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.079999px;}
.fsa{font-size:34.980000px;}
.fsf{font-size:37.740000px;}
.fse{font-size:39.959999px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:44.400000px;}
.fs11{font-size:46.800000px;}
.fs8{font-size:48.000000px;}
.fs16{font-size:49.083600px;}
.fs15{font-size:51.300000px;}
.fs7{font-size:54.000000px;}
.fs14{font-size:54.000329px;}
.fs12{font-size:54.444000px;}
.fs13{font-size:54.444109px;}
.fsb{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:150.000000px;}
.fs5{font-size:187.281600px;}
.y209{bottom:-312.400078px;}
.y208{bottom:-301.078078px;}
.y207{bottom:-289.756078px;}
.y206{bottom:-278.434078px;}
.y205{bottom:-267.112078px;}
.y204{bottom:-255.790078px;}
.y213{bottom:-240.061933px;}
.y203{bottom:-237.656008px;}
.y212{bottom:-228.739933px;}
.y202{bottom:-226.334008px;}
.y211{bottom:-217.417933px;}
.y1f4{bottom:-217.283853px;}
.y1ef{bottom:-213.368328px;}
.y210{bottom:-206.095933px;}
.y1f3{bottom:-205.961853px;}
.y1ee{bottom:-202.046328px;}
.y20f{bottom:-194.773933px;}
.y1f2{bottom:-194.639853px;}
.y1ed{bottom:-190.724328px;}
.y1f1{bottom:-183.317853px;}
.y1ec{bottom:-179.402328px;}
.y1f0{bottom:-171.995853px;}
.y20e{bottom:-164.176228px;}
.y1e5{bottom:-161.406293px;}
.y20d{bottom:-152.854228px;}
.y1fa{bottom:-150.898201px;}
.y1e4{bottom:-148.086293px;}
.y20c{bottom:-141.532228px;}
.y1e3{bottom:-134.766293px;}
.y1f9{bottom:-131.887670px;}
.y20b{bottom:-130.210228px;}
.y1e2{bottom:-121.446293px;}
.y1f8{bottom:-120.565670px;}
.y1eb{bottom:-118.895673px;}
.y20a{bottom:-118.888228px;}
.y1f7{bottom:-109.243670px;}
.y1ea{bottom:-107.573673px;}
.y1f6{bottom:-97.921670px;}
.y1e9{bottom:-96.251673px;}
.y1f5{bottom:-86.599670px;}
.y201{bottom:-80.072639px;}
.y1e8{bottom:-77.277888px;}
.y1fc{bottom:-72.392549px;}
.y200{bottom:-68.750639px;}
.y1e7{bottom:-65.955888px;}
.y1fb{bottom:-61.070549px;}
.y1ff{bottom:-57.428639px;}
.y1e6{bottom:-54.633888px;}
.y1fe{bottom:-45.814154px;}
.y1fd{bottom:-34.492154px;}
.y215{bottom:-14.861252px;}
.y22d{bottom:-0.277794px;}
.y0{bottom:0.000000px;}
.y236{bottom:2.588516px;}
.y9c{bottom:2.725662px;}
.y398{bottom:41.731350px;}
.y49{bottom:56.781452px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y238{bottom:98.117203px;}
.y22e{bottom:110.707489px;}
.y21{bottom:139.264499px;}
.y2ef{bottom:142.972961px;}
.y48{bottom:144.556344px;}
.yd2{bottom:144.560706px;}
.y74{bottom:144.567004px;}
.y250{bottom:144.567146px;}
.y31b{bottom:144.679642px;}
.y11b{bottom:144.928954px;}
.y397{bottom:148.329039px;}
.y2ca{bottom:154.204475px;}
.y3a0{bottom:155.506805px;}
.y73{bottom:158.967004px;}
.y2ee{bottom:163.222961px;}
.y361{bottom:164.687892px;}
.yd1{bottom:164.810706px;}
.y31a{bottom:164.929642px;}
.y11a{bottom:165.178954px;}
.y396{bottom:167.080539px;}
.y253{bottom:168.538798px;}
.y195{bottom:171.212550px;}
.y27e{bottom:171.304695px;}
.y72{bottom:173.367004px;}
.y2c9{bottom:174.454475px;}
.y47{bottom:180.938844px;}
.y360{bottom:183.439392px;}
.y2ed{bottom:183.472961px;}
.yd0{bottom:185.060706px;}
.y319{bottom:185.179642px;}
.y119{bottom:185.428954px;}
.y93{bottom:185.725639px;}
.y395{bottom:185.832039px;}
.y27d{bottom:191.554695px;}
.y2c8{bottom:194.704475px;}
.y133{bottom:196.628998px;}
.y18{bottom:196.933500px;}
.y46{bottom:198.191844px;}
.y252{bottom:201.708298px;}
.y35f{bottom:202.190892px;}
.y2ec{bottom:203.722961px;}
.y394{bottom:204.583539px;}
.y29f{bottom:204.640354px;}
.ycf{bottom:205.310706px;}
.y318{bottom:205.429642px;}
.y118{bottom:205.678954px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y311{bottom:211.765778px;}
.y27c{bottom:211.804695px;}
.y23d{bottom:212.688150px;}
.y188{bottom:213.965820px;}
.y2c7{bottom:214.954475px;}
.y45{bottom:215.444844px;}
.y35e{bottom:220.942392px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y393{bottom:223.335039px;}
.y187{bottom:225.287820px;}
.yce{bottom:225.560706px;}
.y317{bottom:225.679642px;}
.y117{bottom:225.928954px;}
.y23c{bottom:226.728150px;}
.y310{bottom:232.015778px;}
.y27b{bottom:232.054695px;}
.y44{bottom:232.697844px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y2c6{bottom:235.204475px;}
.y186{bottom:236.609820px;}
.y29e{bottom:237.809854px;}
.y35d{bottom:239.693892px;}
.y23b{bottom:240.768150px;}
.y392{bottom:242.086539px;}
.y2eb{bottom:243.088392px;}
.yf4{bottom:245.398634px;}
.ycd{bottom:245.810706px;}
.y316{bottom:245.929642px;}
.y116{bottom:246.178954px;}
.y60{bottom:246.977394px;}
.y185{bottom:247.931820px;}
.y43{bottom:249.950844px;}
.y216{bottom:250.903954px;}
.y29d{bottom:251.849854px;}
.y30f{bottom:252.265778px;}
.y27a{bottom:252.304695px;}
.y2c5{bottom:255.454475px;}
.y9d{bottom:255.597450px;}
.y92{bottom:256.534492px;}
.y35c{bottom:258.445392px;}
.y184{bottom:259.253820px;}
.y239{bottom:259.369492px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y391{bottom:260.838039px;}
.y2ea{bottom:263.338392px;}
.yf3{bottom:265.648634px;}
.y315{bottom:266.179642px;}
.y183{bottom:270.575820px;}
.y30e{bottom:272.515778px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y279{bottom:272.554695px;}
.y2c4{bottom:275.704475px;}
.y35b{bottom:277.196892px;}
.y9b{bottom:277.560150px;}
.y390{bottom:279.589539px;}
.y29c{bottom:281.130612px;}
.y1e1{bottom:284.818497px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ycc{bottom:285.200706px;}
.y115{bottom:285.568954px;}
.yf2{bottom:285.898634px;}
.y192{bottom:286.303965px;}
.y314{bottom:286.429642px;}
.y182{bottom:288.709890px;}
.yc2{bottom:290.411259px;}
.y30d{bottom:292.765778px;}
.y278{bottom:292.804695px;}
.y9a{bottom:295.860150px;}
.y22b{bottom:295.869003px;}
.y35a{bottom:295.948392px;}
.y2c3{bottom:295.954475px;}
.y5f{bottom:296.541000px;}
.y191{bottom:297.625965px;}
.y38f{bottom:298.341039px;}
.y181{bottom:300.031890px;}
.y2e9{bottom:302.728392px;}
.ycb{bottom:305.450706px;}
.y1d5{bottom:305.811222px;}
.y114{bottom:305.818954px;}
.y1e0{bottom:306.088106px;}
.yf1{bottom:306.148634px;}
.y190{bottom:308.947965px;}
.y173{bottom:309.082045px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc1{bottom:310.661259px;}
.y16e{bottom:312.997570px;}
.y30c{bottom:313.015778px;}
.y277{bottom:313.054695px;}
.y99{bottom:314.160150px;}
.y359{bottom:314.699892px;}
.y2c2{bottom:316.204475px;}
.y38e{bottom:317.092539px;}
.y1d4{bottom:317.799222px;}
.y29b{bottom:317.895612px;}
.y1df{bottom:318.076105px;}
.y223{bottom:320.185500px;}
.y18f{bottom:320.269965px;}
.y172{bottom:320.404045px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2e8{bottom:322.978392px;}
.y16d{bottom:324.319570px;}
.yca{bottom:325.700706px;}
.y113{bottom:326.068954px;}
.yf0{bottom:326.398634px;}
.y1de{bottom:330.064105px;}
.y235{bottom:330.364517px;}
.yc0{bottom:330.911259px;}
.y237{bottom:331.322708px;}
.y18e{bottom:331.591965px;}
.y171{bottom:331.726045px;}
.y98{bottom:332.460150px;}
.y30b{bottom:333.265778px;}
.y276{bottom:333.304695px;}
.y358{bottom:333.451392px;}
.y16c{bottom:335.641570px;}
.y38d{bottom:335.844039px;}
.y2c1{bottom:336.454475px;}
.y22c{bottom:337.974152px;}
.y1d3{bottom:340.316681px;}
.y170{bottom:343.048045px;}
.y2e7{bottom:343.228392px;}
.y5e{bottom:346.104904px;}
.y112{bottom:346.318954px;}
.yef{bottom:346.648634px;}
.y16b{bottom:346.963570px;}
.yf{bottom:348.133500px;}
.y1dd{bottom:349.994155px;}
.y155{bottom:350.727164px;}
.y97{bottom:350.760150px;}
.y160{bottom:350.996894px;}
.ybf{bottom:351.161259px;}
.y357{bottom:352.202892px;}
.y1d2{bottom:352.304681px;}
.y30a{bottom:353.515778px;}
.y16f{bottom:354.370045px;}
.y38c{bottom:354.595539px;}
.y29a{bottom:354.660612px;}
.y24f{bottom:355.747971px;}
.y2c0{bottom:356.704475px;}
.y313{bottom:361.955246px;}
.y18d{bottom:362.189670px;}
.y1be{bottom:362.358321px;}
.y154{bottom:362.715164px;}
.y15f{bottom:362.984894px;}
.y2e6{bottom:363.478392px;}
.y224{bottom:364.080975px;}
.y164{bottom:364.959617px;}
.yc9{bottom:365.084564px;}
.y111{bottom:366.568954px;}
.y222{bottom:366.898634px;}
.y1c5{bottom:368.888081px;}
.y96{bottom:369.060150px;}
.y356{bottom:370.954392px;}
.ybe{bottom:371.411259px;}
.y38b{bottom:373.347039px;}
.y18c{bottom:373.511670px;}
.y309{bottom:373.765778px;}
.y1bd{bottom:374.346320px;}
.y1dc{bottom:374.579544px;}
.y15e{bottom:374.972894px;}
.y179{bottom:375.467697px;}
.y24e{bottom:375.997971px;}
.y163{bottom:378.279617px;}
.y1d1{bottom:380.576380px;}
.y1c4{bottom:380.876080px;}
.y275{bottom:381.199695px;}
.y2e5{bottom:383.728392px;}
.y18b{bottom:384.833670px;}
.y153{bottom:385.232623px;}
.yc8{bottom:385.334564px;}
.yee{bottom:386.038634px;}
.y1bc{bottom:386.334320px;}
.ye{bottom:386.785499px;}
.y110{bottom:386.818954px;}
.y221{bottom:387.148634px;}
.y95{bottom:387.360168px;}
.y355{bottom:389.705892px;}
.y299{bottom:391.425612px;}
.y162{bottom:391.599617px;}
.ybd{bottom:391.661259px;}
.y38a{bottom:392.098539px;}
.y1d0{bottom:392.564380px;}
.y308{bottom:394.015778px;}
.y178{bottom:394.478228px;}
.y15d{bottom:394.902943px;}
.y18a{bottom:396.155670px;}
.y24d{bottom:396.247971px;}
.y152{bottom:397.220623px;}
.y1db{bottom:398.690370px;}
.y5d{bottom:399.920563px;}
.y274{bottom:401.449695px;}
.y2e4{bottom:403.978392px;}
.y2bf{bottom:404.599475px;}
.y161{bottom:404.919617px;}
.yc7{bottom:405.584564px;}
.y177{bottom:405.800228px;}
.yed{bottom:406.288634px;}
.y10f{bottom:407.068954px;}
.y13e{bottom:407.276701px;}
.y220{bottom:407.398634px;}
.y16a{bottom:407.470225px;}
.y189{bottom:407.477670px;}
.y225{bottom:407.976450px;}
.yd{bottom:408.044999px;}
.y354{bottom:408.457392px;}
.y312{bottom:409.955246px;}
.y1bb{bottom:410.258704px;}
.y1da{bottom:410.678369px;}
.y389{bottom:410.850039px;}
.ybc{bottom:411.911259px;}
.y145{bottom:413.804023px;}
.y307{bottom:414.265778px;}
.y24c{bottom:416.497971px;}
.y1bf{bottom:416.632782px;}
.y176{bottom:417.122228px;}
.y169{bottom:418.792225px;}
.y13d{bottom:419.264701px;}
.y15c{bottom:419.488333px;}
.y273{bottom:421.699695px;}
.y1ba{bottom:422.246704px;}
.y1cf{bottom:422.933979px;}
.y94{bottom:423.960159px;}
.y2e3{bottom:424.228392px;}
.y2be{bottom:424.849475px;}
.y151{bottom:425.492323px;}
.y144{bottom:425.792023px;}
.yc6{bottom:425.834564px;}
.yec{bottom:426.538634px;}
.y353{bottom:427.208892px;}
.y21f{bottom:427.648634px;}
.y1d9{bottom:428.001029px;}
.y298{bottom:428.190612px;}
.y175{bottom:428.444228px;}
.y388{bottom:429.601539px;}
.y168{bottom:430.114225px;}
.y5c{bottom:430.676559px;}
.y13c{bottom:431.252701px;}
.ybb{bottom:432.161259px;}
.y306{bottom:434.515778px;}
.y1ce{bottom:434.921979px;}
.y24b{bottom:436.747971px;}
.y150{bottom:437.480322px;}
.y174{bottom:439.766228px;}
.y1d8{bottom:439.989029px;}
.y272{bottom:441.949695px;}
.y91{bottom:442.260141px;}
.y15b{bottom:443.604192px;}
.y1b5{bottom:445.054786px;}
.y2bd{bottom:445.099475px;}
.y352{bottom:445.960392px;}
.yc5{bottom:446.084564px;}
.y180{bottom:446.293259px;}
.y10e{bottom:446.452789px;}
.yeb{bottom:446.788634px;}
.y1cd{bottom:446.909979px;}
.y21e{bottom:447.898634px;}
.y387{bottom:448.353039px;}
.y297{bottom:448.440612px;}
.y167{bottom:449.088010px;}
.y226{bottom:451.871925px;}
.yba{bottom:452.411259px;}
.y17b{bottom:453.973349px;}
.y305{bottom:454.765778px;}
.y13b{bottom:455.177085px;}
.y15a{bottom:455.592192px;}
.y1d7{bottom:455.903098px;}
.y24a{bottom:456.997971px;}
.y5b{bottom:457.180481px;}
.y17f{bottom:457.615259px;}
.y1b4{bottom:458.374786px;}
.y166{bottom:460.410010px;}
.y90{bottom:460.560141px;}
.y13f{bottom:461.551208px;}
.y271{bottom:462.199695px;}
.y2e2{bottom:463.618392px;}
.y351{bottom:464.711892px;}
.y17a{bottom:465.295349px;}
.y2bc{bottom:465.349475px;}
.yc4{bottom:466.334564px;}
.yea{bottom:467.038634px;}
.y386{bottom:467.104539px;}
.y13a{bottom:467.165085px;}
.y14f{bottom:467.849922px;}
.y1d6{bottom:467.891098px;}
.y21d{bottom:468.148634px;}
.y296{bottom:468.690612px;}
.y17e{bottom:468.937259px;}
.y165{bottom:471.732010px;}
.y159{bottom:472.914851px;}
.y331{bottom:475.015778px;}
.y249{bottom:477.247971px;}
.y8f{bottom:478.860141px;}
.y14e{bottom:479.837921px;}
.y17d{bottom:480.551744px;}
.y270{bottom:482.449695px;}
.y1cc{bottom:483.333518px;}
.y350{bottom:483.463392px;}
.y1b9{bottom:483.827552px;}
.y2e1{bottom:483.868392px;}
.y1c1{bottom:484.679679px;}
.yc{bottom:484.864502px;}
.y158{bottom:484.902851px;}
.y2bb{bottom:485.599475px;}
.y385{bottom:485.856039px;}
.ye9{bottom:487.288634px;}
.y5a{bottom:489.736359px;}
.y135{bottom:489.973213px;}
.y14d{bottom:491.825921px;}
.y17c{bottom:491.873744px;}
.y304{bottom:494.149475px;}
.y330{bottom:495.265778px;}
.y227{bottom:495.767400px;}
.y1b8{bottom:495.815552px;}
.y1c0{bottom:496.667679px;}
.y8e{bottom:497.160141px;}
.y248{bottom:497.497971px;}
.y157{bottom:500.816921px;}
.y10d{bottom:502.093522px;}
.y1cb{bottom:502.204627px;}
.y34f{bottom:502.214892px;}
.y26f{bottom:502.699695px;}
.yb{bottom:502.864502px;}
.y134{bottom:503.293213px;}
.y2e0{bottom:504.118392px;}
.y384{bottom:504.607539px;}
.y295{bottom:505.455612px;}
.yc3{bottom:505.718536px;}
.y2ba{bottom:505.849475px;}
.yb9{bottom:507.056257px;}
.ye8{bottom:507.538634px;}
.y194{bottom:511.504669px;}
.y156{bottom:512.804921px;}
.y303{bottom:514.399475px;}
.y8d{bottom:515.460159px;}
.y32f{bottom:515.515778px;}
.y247{bottom:517.723539px;}
.ya{bottom:520.864502px;}
.y34e{bottom:520.966392px;}
.y1ca{bottom:521.065747px;}
.y10c{bottom:522.343522px;}
.y383{bottom:523.359039px;}
.y2df{bottom:524.368392px;}
.y1b7{bottom:525.835792px;}
.y2b9{bottom:526.099475px;}
.y59{bottom:526.544266px;}
.yb8{bottom:527.306257px;}
.ye7{bottom:527.788634px;}
.y14c{bottom:528.249460px;}
.y139{bottom:528.745933px;}
.y1c3{bottom:528.947852px;}
.y141{bottom:529.598106px;}
.y8c{bottom:533.760159px;}
.y302{bottom:534.649475px;}
.y132{bottom:534.968536px;}
.y32e{bottom:535.765778px;}
.y1b6{bottom:537.823792px;}
.y246{bottom:537.973539px;}
.y9{bottom:538.864499px;}
.y228{bottom:539.662875px;}
.y34d{bottom:539.717892px;}
.y1c9{bottom:539.946847px;}
.y138{bottom:540.733932px;}
.y1c2{bottom:540.935852px;}
.y140{bottom:541.586105px;}
.y382{bottom:542.110539px;}
.y294{bottom:542.220612px;}
.y2de{bottom:544.618392px;}
.y2b8{bottom:546.349475px;}
.y14b{bottom:547.120570px;}
.yb7{bottom:547.556257px;}
.y21c{bottom:548.038634px;}
.y31c{bottom:549.132889px;}
.y26e{bottom:550.594695px;}
.y8b{bottom:552.060159px;}
.y301{bottom:554.899475px;}
.y32d{bottom:556.015778px;}
.y8{bottom:556.864499px;}
.y58{bottom:557.300079px;}
.y245{bottom:558.223539px;}
.y34c{bottom:558.469392px;}
.y1c8{bottom:558.807966px;}
.y10b{bottom:559.108522px;}
.y381{bottom:560.862039px;}
.y2dd{bottom:564.868392px;}
.y14a{bottom:565.981689px;}
.y2b7{bottom:566.599475px;}
.ye6{bottom:567.178634px;}
.yb6{bottom:567.806257px;}
.y21b{bottom:568.288634px;}
.y8a{bottom:570.360159px;}
.y137{bottom:570.754035px;}
.y26d{bottom:570.844695px;}
.yd3{bottom:571.455734px;}
.y143{bottom:573.863795px;}
.y300{bottom:575.149475px;}
.y32c{bottom:576.265778px;}
.y34b{bottom:577.220892px;}
.y1c7{bottom:577.679076px;}
.y244{bottom:578.473539px;}
.y10a{bottom:579.358522px;}
.y380{bottom:579.613539px;}
.y136{bottom:582.742035px;}
.y229{bottom:583.558350px;}
.y131{bottom:583.958267px;}
.y149{bottom:584.862789px;}
.y293{bottom:584.982321px;}
.y2dc{bottom:585.118392px;}
.y142{bottom:585.851794px;}
.ye5{bottom:587.428634px;}
.y57{bottom:588.056122px;}
.yb5{bottom:588.056257px;}
.y21a{bottom:588.538634px;}
.y89{bottom:588.660159px;}
.y26c{bottom:591.094695px;}
.y2ff{bottom:595.399475px;}
.y34a{bottom:595.972392px;}
.y32b{bottom:596.515778px;}
.y1c6{bottom:596.540195px;}
.y37f{bottom:598.365039px;}
.y109{bottom:599.608522px;}
.y292{bottom:602.082321px;}
.y148{bottom:603.723908px;}
.y130{bottom:604.208267px;}
.y2db{bottom:605.368392px;}
.y2b6{bottom:605.989475px;}
.y88{bottom:606.960159px;}
.ye4{bottom:607.678634px;}
.yb4{bottom:608.306257px;}
.y219{bottom:608.788634px;}
.y214{bottom:608.985580px;}
.y26b{bottom:611.344695px;}
.y56{bottom:614.560043px;}
.y349{bottom:614.723892px;}
.y2fe{bottom:615.649475px;}
.y32a{bottom:616.765778px;}
.y37e{bottom:617.116539px;}
.y243{bottom:617.863539px;}
.y1a9{bottom:620.707672px;}
.y42{bottom:621.713810px;}
.y147{bottom:622.595018px;}
.y12f{bottom:624.458267px;}
.y87{bottom:625.260132px;}
.y2da{bottom:625.618392px;}
.y2b5{bottom:626.239475px;}
.y22a{bottom:627.453825px;}
.ye3{bottom:627.928634px;}
.yb3{bottom:628.556257px;}
.y218{bottom:629.038634px;}
.y26a{bottom:631.594695px;}
.y348{bottom:633.475392px;}
.y55{bottom:634.359879px;}
.y37d{bottom:635.868039px;}
.y2fd{bottom:635.899475px;}
.y108{bottom:636.373522px;}
.y329{bottom:637.015778px;}
.y242{bottom:638.113539px;}
.y41{bottom:638.966810px;}
.y146{bottom:641.456138px;}
.y7{bottom:645.510000px;}
.y2d9{bottom:645.868392px;}
.y2b4{bottom:646.489475px;}
.y1b3{bottom:647.659790px;}
.ye2{bottom:648.178634px;}
.yb2{bottom:648.806257px;}
.y291{bottom:651.072144px;}
.y269{bottom:651.844695px;}
.y347{bottom:652.226892px;}
.y193{bottom:653.903961px;}
.y37c{bottom:654.619539px;}
.y86{bottom:655.534781px;}
.y2fc{bottom:656.149475px;}
.y40{bottom:656.219810px;}
.y107{bottom:656.623522px;}
.y328{bottom:657.265778px;}
.y241{bottom:658.363539px;}
.y12e{bottom:663.842102px;}
.y2d8{bottom:666.118392px;}
.y2b3{bottom:666.739475px;}
.y6{bottom:666.771000px;}
.y54{bottom:666.915894px;}
.ye1{bottom:668.428634px;}
.yb1{bottom:669.056257px;}
.y346{bottom:670.978392px;}
.y290{bottom:671.322144px;}
.y85{bottom:672.634781px;}
.y37b{bottom:673.371039px;}
.y3f{bottom:673.472810px;}
.y2fb{bottom:676.399475px;}
.y1a8{bottom:677.503539px;}
.y240{bottom:678.613539px;}
.y2d7{bottom:686.368392px;}
.y53{bottom:686.715912px;}
.y2b2{bottom:686.989475px;}
.ye0{bottom:688.678634px;}
.y345{bottom:689.729892px;}
.y3e{bottom:690.725810px;}
.y268{bottom:691.234695px;}
.y28f{bottom:691.572144px;}
.y37a{bottom:692.122539px;}
.y106{bottom:693.388522px;}
.y1b2{bottom:696.643539px;}
.y2fa{bottom:696.649475px;}
.y1a7{bottom:697.753539px;}
.y23f{bottom:698.863539px;}
.y2b1{bottom:707.239475px;}
.yb0{bottom:708.446257px;}
.y344{bottom:708.481392px;}
.ydf{bottom:708.928634px;}
.y379{bottom:710.874039px;}
.y267{bottom:711.484695px;}
.y28e{bottom:711.822144px;}
.y105{bottom:713.638522px;}
.y1b1{bottom:716.893539px;}
.y2f9{bottom:716.899475px;}
.y1a6{bottom:718.003539px;}
.y12d{bottom:719.113539px;}
.y52{bottom:719.271744px;}
.y84{bottom:721.618392px;}
.y2d6{bottom:725.758392px;}
.y3d{bottom:727.108310px;}
.y343{bottom:727.232892px;}
.y2b0{bottom:727.489475px;}
.yaf{bottom:728.696257px;}
.yde{bottom:729.178634px;}
.y378{bottom:729.625539px;}
.y266{bottom:731.734695px;}
.y28d{bottom:732.072144px;}
.y104{bottom:733.888522px;}
.y234{bottom:735.622513px;}
.y1b0{bottom:737.143539px;}
.y2f8{bottom:737.149475px;}
.y1a5{bottom:738.253539px;}
.y12c{bottom:739.363539px;}
.y83{bottom:741.868392px;}
.y3c{bottom:744.361310px;}
.y342{bottom:745.984392px;}
.y2d5{bottom:746.008392px;}
.y377{bottom:748.377039px;}
.yae{bottom:748.946257px;}
.y27{bottom:749.238281px;}
.y217{bottom:749.428634px;}
.y265{bottom:751.984695px;}
.y28c{bottom:752.322144px;}
.y3{bottom:752.599495px;}
.y1af{bottom:757.393539px;}
.y2f7{bottom:757.399475px;}
.y1a4{bottom:758.503539px;}
.y12b{bottom:759.613539px;}
.y3b{bottom:761.614310px;}
.y82{bottom:762.118392px;}
.y22f{bottom:762.560989px;}
.y341{bottom:764.735892px;}
.y2d4{bottom:766.258392px;}
.y2af{bottom:766.879475px;}
.y376{bottom:767.128539px;}
.ydd{bottom:768.568634px;}
.y51{bottom:768.835693px;}
.yad{bottom:769.196257px;}
.y103{bottom:770.653522px;}
.y264{bottom:772.234695px;}
.y28b{bottom:772.572144px;}
.y1ae{bottom:777.643539px;}
.y2f6{bottom:777.649475px;}
.y1a3{bottom:778.753539px;}
.y3a{bottom:778.867310px;}
.y12a{bottom:779.863539px;}
.y81{bottom:782.368392px;}
.y340{bottom:783.487392px;}
.y375{bottom:785.880039px;}
.y2d3{bottom:786.508392px;}
.y2ae{bottom:787.129475px;}
.ydc{bottom:788.818634px;}
.yac{bottom:789.446257px;}
.y102{bottom:790.903522px;}
.y263{bottom:792.484695px;}
.y28a{bottom:792.822144px;}
.y1ad{bottom:797.893539px;}
.y327{bottom:797.899475px;}
.y23e{bottom:799.003539px;}
.y50{bottom:801.391479px;}
.y33f{bottom:802.238892px;}
.y80{bottom:802.618392px;}
.y26{bottom:804.329132px;}
.y374{bottom:804.631539px;}
.y2d2{bottom:806.758392px;}
.y2ad{bottom:807.379475px;}
.ydb{bottom:809.068634px;}
.yab{bottom:809.696257px;}
.y101{bottom:811.153522px;}
.y262{bottom:812.734695px;}
.y289{bottom:813.072144px;}
.y39{bottom:815.249810px;}
.y2f5{bottom:817.033539px;}
.y1a2{bottom:818.143539px;}
.y326{bottom:818.149475px;}
.y129{bottom:819.253539px;}
.y33e{bottom:820.990392px;}
.y7f{bottom:822.868392px;}
.y230{bottom:823.243488px;}
.y373{bottom:823.383039px;}
.y2d1{bottom:827.008392px;}
.y2ac{bottom:827.629475px;}
.yda{bottom:829.318634px;}
.y38{bottom:832.502810px;}
.y4f{bottom:833.947357px;}
.y2f4{bottom:837.283539px;}
.y1a1{bottom:838.393539px;}
.y325{bottom:838.399475px;}
.y128{bottom:839.503539px;}
.y33d{bottom:839.741892px;}
.y6a{bottom:840.115624px;}
.y372{bottom:842.134539px;}
.y7e{bottom:843.118392px;}
.y2d0{bottom:847.258392px;}
.y2ab{bottom:847.879475px;}
.y100{bottom:847.918522px;}
.yaa{bottom:849.086257px;}
.yd9{bottom:849.568634px;}
.y37{bottom:849.755810px;}
.y261{bottom:852.124695px;}
.y288{bottom:852.455988px;}
.y2f3{bottom:857.533539px;}
.y33c{bottom:858.493392px;}
.y1a0{bottom:858.643539px;}
.y324{bottom:858.649475px;}
.y127{bottom:859.753539px;}
.y371{bottom:860.886039px;}
.y25{bottom:862.058685px;}
.y69{bottom:862.242125px;}
.y7d{bottom:863.368392px;}
.y71{bottom:865.621484px;}
.y4e{bottom:866.503235px;}
.y23a{bottom:866.814285px;}
.y36{bottom:867.008810px;}
.y2cf{bottom:867.508392px;}
.y2aa{bottom:868.129475px;}
.yff{bottom:868.168522px;}
.ya9{bottom:869.336257px;}
.yd8{bottom:869.818634px;}
.y260{bottom:872.374695px;}
.y287{bottom:875.855988px;}
.y33b{bottom:877.244892px;}
.y2f2{bottom:877.783539px;}
.y19f{bottom:878.893539px;}
.y323{bottom:878.899475px;}
.y2{bottom:879.369000px;}
.y370{bottom:879.637539px;}
.y126{bottom:880.003539px;}
.y231{bottom:883.925986px;}
.y35{bottom:884.261810px;}
.y70{bottom:887.747984px;}
.y2ce{bottom:887.758392px;}
.y2a9{bottom:888.379475px;}
.yfe{bottom:888.418522px;}
.ya8{bottom:889.586257px;}
.y25f{bottom:892.624695px;}
.y33a{bottom:895.996392px;}
.y68{bottom:897.126124px;}
.y2f1{bottom:898.033539px;}
.y36f{bottom:898.389039px;}
.y19e{bottom:899.143539px;}
.y322{bottom:899.149475px;}
.y125{bottom:900.253539px;}
.y34{bottom:901.511810px;}
.y7c{bottom:902.758392px;}
.y2cd{bottom:908.008392px;}
.y2a8{bottom:908.629475px;}
.yd7{bottom:909.202478px;}
.ya7{bottom:909.836257px;}
.y6f{bottom:909.874484px;}
.y25e{bottom:912.874695px;}
.y339{bottom:914.747892px;}
.y4d{bottom:916.067139px;}
.y36e{bottom:917.140539px;}
.y2f0{bottom:918.283539px;}
.y67{bottom:919.243484px;}
.y19d{bottom:919.393539px;}
.y321{bottom:919.399475px;}
.y24{bottom:919.788239px;}
.y124{bottom:920.503539px;}
.y7b{bottom:923.008392px;}
.yfd{bottom:925.183522px;}
.y2cc{bottom:928.258392px;}
.y2a7{bottom:928.879475px;}
.ya6{bottom:930.086257px;}
.y286{bottom:931.138539px;}
.y6e{bottom:932.000984px;}
.yd6{bottom:932.602478px;}
.y25d{bottom:933.124695px;}
.y338{bottom:933.499392px;}
.y36d{bottom:935.892039px;}
.y1ac{bottom:938.533539px;}
.y19c{bottom:939.643539px;}
.y320{bottom:939.649475px;}
.y123{bottom:940.753539px;}
.y66{bottom:941.369984px;}
.y7a{bottom:943.258392px;}
.y232{bottom:944.621984px;}
.yfc{bottom:945.433522px;}
.y2cb{bottom:948.508392px;}
.y33{bottom:949.377039px;}
.ya5{bottom:950.336257px;}
.y285{bottom:951.388539px;}
.y337{bottom:952.250892px;}
.y25c{bottom:953.374695px;}
.y6d{bottom:954.127484px;}
.y36c{bottom:954.643539px;}
.y1ab{bottom:958.783539px;}
.y19b{bottom:959.893539px;}
.y31f{bottom:959.899475px;}
.y65{bottom:963.496484px;}
.y79{bottom:963.508392px;}
.y4c{bottom:965.630859px;}
.y32{bottom:966.630039px;}
.y1{bottom:966.726000px;}
.ya4{bottom:970.586257px;}
.y336{bottom:971.002392px;}
.y284{bottom:971.638539px;}
.y36b{bottom:973.395039px;}
.y25b{bottom:973.624695px;}
.y6c{bottom:976.253984px;}
.y2a6{bottom:976.774475px;}
.y23{bottom:977.517792px;}
.y1aa{bottom:979.033539px;}
.y122{bottom:980.143539px;}
.y31e{bottom:980.149475px;}
.yfb{bottom:982.198522px;}
.y78{bottom:983.758392px;}
.y31{bottom:983.883039px;}
.y64{bottom:985.622984px;}
.y335{bottom:989.753892px;}
.y283{bottom:991.888539px;}
.y36a{bottom:992.146539px;}
.y25a{bottom:993.874695px;}
.y2a5{bottom:997.024475px;}
.y6b{bottom:998.380484px;}
.y19a{bottom:999.283539px;}
.y121{bottom:1000.393539px;}
.y31d{bottom:1000.399475px;}
.y30{bottom:1001.136039px;}
.yfa{bottom:1002.448522px;}
.y77{bottom:1004.008392px;}
.y233{bottom:1005.304482px;}
.y334{bottom:1008.505392px;}
.ya3{bottom:1009.976257px;}
.y369{bottom:1010.898039px;}
.y282{bottom:1012.138539px;}
.y259{bottom:1014.124695px;}
.y4b{bottom:1015.194580px;}
.y2a4{bottom:1017.274475px;}
.y2f{bottom:1018.389039px;}
.y199{bottom:1019.533539px;}
.y63{bottom:1020.506984px;}
.y120{bottom:1020.643539px;}
.yd5{bottom:1024.033905px;}
.y76{bottom:1024.258392px;}
.y333{bottom:1027.256892px;}
.y368{bottom:1029.649539px;}
.ya2{bottom:1030.226257px;}
.y281{bottom:1032.388539px;}
.y258{bottom:1034.374695px;}
.y22{bottom:1035.226685px;}
.y2e{bottom:1035.642039px;}
.y2a3{bottom:1037.524475px;}
.yf9{bottom:1039.213522px;}
.y198{bottom:1039.783539px;}
.y11f{bottom:1040.893539px;}
.y62{bottom:1042.633484px;}
.y75{bottom:1044.508392px;}
.y332{bottom:1046.008392px;}
.y367{bottom:1048.401039px;}
.ya1{bottom:1050.476257px;}
.y280{bottom:1052.638539px;}
.y257{bottom:1054.624695px;}
.y2a2{bottom:1057.774475px;}
.yf8{bottom:1059.463522px;}
.y197{bottom:1060.033539px;}
.y11e{bottom:1061.143539px;}
.y39f{bottom:1065.989978px;}
.y366{bottom:1067.152539px;}
.ya0{bottom:1070.726257px;}
.y2d{bottom:1072.024539px;}
.yd4{bottom:1072.033905px;}
.y27f{bottom:1072.888539px;}
.y256{bottom:1074.874695px;}
.y2a1{bottom:1078.024475px;}
.y39e{bottom:1078.589978px;}
.y196{bottom:1080.283539px;}
.y365{bottom:1085.904039px;}
.y2c{bottom:1089.277539px;}
.y39d{bottom:1091.189978px;}
.yf7{bottom:1095.358521px;}
.y2a0{bottom:1098.274475px;}
.y11d{bottom:1100.533539px;}
.y9f{bottom:1103.236029px;}
.y39c{bottom:1103.789978px;}
.y364{bottom:1104.655539px;}
.y2b{bottom:1106.530539px;}
.y251{bottom:1112.687073px;}
.y255{bottom:1114.258539px;}
.y4a{bottom:1120.033905px;}
.y61{bottom:1120.034088px;}
.y9e{bottom:1120.336029px;}
.y11c{bottom:1120.783539px;}
.y363{bottom:1123.407039px;}
.y2a{bottom:1123.783539px;}
.yf6{bottom:1124.496039px;}
.y39b{bottom:1137.649841px;}
.y254{bottom:1137.658539px;}
.y29{bottom:1141.033539px;}
.yf5{bottom:1141.596039px;}
.y362{bottom:1142.158539px;}
.y39a{bottom:1154.898717px;}
.y399{bottom:1179.153717px;}
.y28{bottom:1183.553100px;}
.h29{height:24.863999px;}
.h26{height:27.323760px;}
.h27{height:30.229740px;}
.h25{height:32.007959px;}
.h8{height:32.130000px;}
.h24{height:32.145600px;}
.h9{height:32.172000px;}
.h39{height:34.391602px;}
.h36{height:34.699219px;}
.h28{height:35.463011px;}
.h2c{height:35.475600px;}
.h22{height:37.939453px;}
.h3a{height:39.377126px;}
.h17{height:40.500000px;}
.h2a{height:42.275391px;}
.h35{height:42.382617px;}
.h37{height:43.057617px;}
.h30{height:43.321289px;}
.h33{height:43.321553px;}
.h1a{height:43.359375px;}
.h2d{height:43.677486px;}
.h2f{height:43.677574px;}
.h10{height:44.217773px;}
.h19{height:44.613281px;}
.hf{height:45.000000px;}
.h1f{height:45.615234px;}
.h21{height:45.728027px;}
.h7{height:45.960000px;}
.h32{height:46.605103px;}
.h1c{height:47.091797px;}
.he{height:48.134766px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h11{height:48.779297px;}
.h18{height:48.815859px;}
.h1b{height:49.130859px;}
.h1e{height:49.570312px;}
.h14{height:50.176758px;}
.h12{height:52.184980px;}
.hd{height:54.043945px;}
.h16{height:54.199219px;}
.h15{height:54.527344px;}
.h2{height:55.152000px;}
.h1d{height:59.299805px;}
.h38{height:60.199219px;}
.h5{height:78.132000px;}
.hb{height:85.731000px;}
.h4{height:119.055004px;}
.h13{height:126.075000px;}
.hc{height:157.316544px;}
.h23{height:328.951492px;}
.h2b{height:341.574005px;}
.h31{height:343.921509px;}
.h2e{height:351.292511px;}
.h20{height:396.150009px;}
.h34{height:845.941498px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:579.685500px;}
.w6{width:586.771500px;}
.w7{width:616.231522px;}
.w4{width:620.788513px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa0{left:2.564999px;}
.x94{left:9.199803px;}
.x9f{left:11.547443px;}
.x58{left:16.793850px;}
.x95{left:20.951992px;}
.x31{left:24.732455px;}
.x85{left:29.040150px;}
.x32{left:31.615565px;}
.x70{left:33.875695px;}
.x30{left:36.195602px;}
.x71{left:37.291165px;}
.x6f{left:40.517935px;}
.x74{left:42.291715px;}
.x9d{left:43.441806px;}
.x75{left:49.235875px;}
.x73{left:50.679430px;}
.x72{left:54.302470px;}
.x76{left:57.689635px;}
.x8{left:63.779549px;}
.x92{left:70.019287px;}
.x9c{left:73.511706px;}
.x5{left:76.181099px;}
.x2f{left:94.585629px;}
.x28{left:97.863453px;}
.x2a{left:99.766949px;}
.x1{left:102.045000px;}
.x9b{left:103.581605px;}
.x2{left:106.297500px;}
.x2b{left:108.538168px;}
.x29{left:111.793953px;}
.x66{left:125.864697px;}
.x6a{left:129.820210px;}
.x68{left:133.490397px;}
.x67{left:134.988897px;}
.x7{left:136.063053px;}
.x6b{left:140.585545px;}
.x19{left:142.032746px;}
.x69{left:144.301797px;}
.x1a{left:145.557746px;}
.x27{left:151.426495px;}
.x25{left:153.072904px;}
.x9{left:155.196899px;}
.x24{left:157.573345px;}
.x86{left:159.264896px;}
.x18{left:162.162746px;}
.x9a{left:163.721404px;}
.x84{left:165.257549px;}
.x59{left:168.064945px;}
.x44{left:172.900639px;}
.xc{left:174.330746px;}
.x2c{left:176.638813px;}
.x43{left:179.542879px;}
.x46{left:181.316659px;}
.x2d{left:183.466816px;}
.xa{left:184.822495px;}
.xb{left:186.381752px;}
.x47{left:188.260819px;}
.x45{left:189.704374px;}
.x91{left:191.595336px;}
.x2e{left:194.275996px;}
.x48{left:196.714579px;}
.x6c{left:200.403445px;}
.x4{left:203.484001px;}
.x6e{left:211.763185px;}
.x22{left:217.115696px;}
.x6d{left:220.509430px;}
.x90{left:221.989348px;}
.x99{left:223.861202px;}
.x60{left:243.049179px;}
.x5a{left:246.327141px;}
.x5c{left:248.230499px;}
.x8f{left:252.383361px;}
.x5f{left:254.008209px;}
.x5d{left:257.001719px;}
.x5b{left:260.257641px;}
.x78{left:261.720577px;}
.x77{left:264.409802px;}
.x35{left:265.481454px;}
.x3e{left:268.845154px;}
.x33{left:270.766162px;}
.x3c{left:272.515341px;}
.x3b{left:274.013841px;}
.x34{left:275.481444px;}
.x3f{left:279.610489px;}
.x3d{left:283.326741px;}
.xa1{left:288.644554px;}
.x20{left:306.805198px;}
.x21{left:309.145198px;}
.x1e{left:310.795198px;}
.x8e{left:313.171385px;}
.x1f{left:315.835198px;}
.x1d{left:319.780198px;}
.x42{left:325.115494px;}
.x40{left:326.832664px;}
.x11{left:328.146901px;}
.x1c{left:331.690200px;}
.x5e{left:333.543891px;}
.xe{left:340.326897px;}
.x41{left:342.513634px;}
.x8d{left:343.565397px;}
.xf{left:344.691901px;}
.x26{left:350.937904px;}
.x12{left:358.566901px;}
.x37{left:361.395442px;}
.x36{left:362.664172px;}
.x7d{left:365.486709px;}
.x87{left:367.582821px;}
.x10{left:371.751901px;}
.x8c{left:373.959410px;}
.x79{left:379.497682px;}
.x7e{left:383.328294px;}
.x4a{left:400.745407px;}
.x49{left:403.434769px;}
.x1b{left:410.567093px;}
.x62{left:413.943411px;}
.xd{left:417.736221px;}
.x4b{left:419.539927px;}
.x61{left:423.943401px;}
.x8b{left:434.747434px;}
.xa2{left:452.457904px;}
.x3{left:454.959000px;}
.x9e{left:459.616207px;}
.x3a{left:463.932799px;}
.x38{left:464.951779px;}
.x39{left:466.210519px;}
.x7b{left:470.573733px;}
.x82{left:472.064465px;}
.x7c{left:473.121183px;}
.x81{left:474.319430px;}
.x7f{left:476.744225px;}
.x7a{left:483.924258px;}
.x83{left:488.877635px;}
.x80{left:493.293215px;}
.x98{left:494.490295px;}
.x8a{left:495.535458px;}
.x52{left:501.567819px;}
.x50{left:504.511539px;}
.x93{left:506.083935px;}
.x64{left:509.857399px;}
.x63{left:511.126129px;}
.x4c{left:518.522512px;}
.x51{left:522.353124px;}
.x15{left:525.339435px;}
.x17{left:527.229435px;}
.x16{left:532.494435px;}
.x14{left:533.544434px;}
.x97{left:554.630094px;}
.x89{left:556.323483px;}
.x96{left:584.699993px;}
.x88{left:586.717495px;}
.x13{left:595.088837px;}
.x4e{left:609.598563px;}
.x56{left:611.089295px;}
.x4f{left:612.146013px;}
.x55{left:613.344260px;}
.x65{left:614.668423px;}
.x53{left:615.769055px;}
.x4d{left:622.949088px;}
.x57{left:627.902465px;}
.x54{left:632.318045px;}
.x6{left:704.843262px;}
.x23{left:756.850342px;}
@media print{
.v4{vertical-align:-17.759766pt;}
.v1{vertical-align:-5.560018pt;}
.v5{vertical-align:-1.039947pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v6{vertical-align:5.333333pt;}
.v3{vertical-align:17.759766pt;}
.ls1c{letter-spacing:-8.800000pt;}
.ls10{letter-spacing:-8.266667pt;}
.ls23{letter-spacing:-7.466667pt;}
.ls31{letter-spacing:-6.586667pt;}
.ls58{letter-spacing:-4.533333pt;}
.ls4a{letter-spacing:-4.426667pt;}
.ls37{letter-spacing:-4.106667pt;}
.ls65{letter-spacing:-3.888000pt;}
.ls43{letter-spacing:-3.680000pt;}
.ls16{letter-spacing:-3.360000pt;}
.ls19{letter-spacing:-3.312000pt;}
.ls3f{letter-spacing:-3.200000pt;}
.ls4c{letter-spacing:-3.146667pt;}
.ls17{letter-spacing:-3.024000pt;}
.ls40{letter-spacing:-2.986667pt;}
.ls13{letter-spacing:-2.933333pt;}
.ls47{letter-spacing:-2.826667pt;}
.ls6a{letter-spacing:-2.736000pt;}
.ls41{letter-spacing:-2.720000pt;}
.ls48{letter-spacing:-2.666667pt;}
.ls1b{letter-spacing:-2.544000pt;}
.ls33{letter-spacing:-2.506667pt;}
.lsf{letter-spacing:-2.400000pt;}
.ls2{letter-spacing:-2.330615pt;}
.ls30{letter-spacing:-2.266667pt;}
.ls18{letter-spacing:-2.256000pt;}
.ls6c{letter-spacing:-2.160000pt;}
.ls1a{letter-spacing:-1.968000pt;}
.ls5d{letter-spacing:-1.920000pt;}
.ls64{letter-spacing:-1.680000pt;}
.ls54{letter-spacing:-1.600000pt;}
.ls4e{letter-spacing:-1.525333pt;}
.ls42{letter-spacing:-1.466667pt;}
.ls1e{letter-spacing:-1.392000pt;}
.ls28{letter-spacing:-1.333333pt;}
.ls56{letter-spacing:-1.013333pt;}
.ls35{letter-spacing:-0.912000pt;}
.ls5f{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.853333pt;}
.ls45{letter-spacing:-0.820800pt;}
.ls57{letter-spacing:-0.746667pt;}
.ls67{letter-spacing:-0.672000pt;}
.ls49{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.533333pt;}
.ls59{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls51{letter-spacing:-0.373333pt;}
.ls4f{letter-spacing:-0.346667pt;}
.ls52{letter-spacing:-0.320000pt;}
.ls68{letter-spacing:-0.288000pt;}
.ls38{letter-spacing:-0.277333pt;}
.ls3e{letter-spacing:-0.276267pt;}
.ls50{letter-spacing:-0.266667pt;}
.ls69{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.213120pt;}
.ls63{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.177600pt;}
.ls3c{letter-spacing:-0.142080pt;}
.ls39{letter-spacing:-0.106560pt;}
.ls60{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.069333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.001187pt;}
.ls46{letter-spacing:0.005739pt;}
.ls22{letter-spacing:0.006227pt;}
.lsd{letter-spacing:0.020266pt;}
.lse{letter-spacing:0.028847pt;}
.ls5a{letter-spacing:0.048000pt;}
.ls44{letter-spacing:0.048395pt;}
.ls4d{letter-spacing:0.053333pt;}
.ls6f{letter-spacing:0.069333pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.142080pt;}
.ls5c{letter-spacing:0.144000pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls53{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.336000pt;}
.ls2b{letter-spacing:0.346667pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.432000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.528000pt;}
.ls6e{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.624000pt;}
.ls4b{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.672000pt;}
.ls70{letter-spacing:0.698078pt;}
.ls4{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls25{letter-spacing:0.912000pt;}
.ls5b{letter-spacing:1.152000pt;}
.ls6b{letter-spacing:2.352000pt;}
.ls6d{letter-spacing:2.643186pt;}
.ls34{letter-spacing:3.090667pt;}
.ls3{letter-spacing:3.329451pt;}
.ls2f{letter-spacing:36.053333pt;}
.lsc{letter-spacing:227.461349pt;}
.ws72{word-spacing:-29.733333pt;}
.ws29{word-spacing:-26.800000pt;}
.ws1c{word-spacing:-25.466667pt;}
.ws2b{word-spacing:-17.610667pt;}
.ws94{word-spacing:-17.333333pt;}
.ws2a{word-spacing:-17.194667pt;}
.ws3f{word-spacing:-16.986667pt;}
.ws5f{word-spacing:-16.640000pt;}
.ws67{word-spacing:-15.738667pt;}
.ws3b{word-spacing:-15.656000pt;}
.ws8d{word-spacing:-14.016000pt;}
.ws61{word-spacing:-13.920000pt;}
.ws5{word-spacing:-13.760000pt;}
.ws65{word-spacing:-13.706667pt;}
.ws93{word-spacing:-13.493333pt;}
.ws63{word-spacing:-13.280000pt;}
.ws34{word-spacing:-13.066667pt;}
.ws68{word-spacing:-12.906667pt;}
.ws77{word-spacing:-12.816000pt;}
.ws7e{word-spacing:-12.576000pt;}
.ws35{word-spacing:-12.533333pt;}
.ws86{word-spacing:-12.336000pt;}
.ws1e{word-spacing:-12.240000pt;}
.ws7f{word-spacing:-12.192000pt;}
.ws85{word-spacing:-12.144000pt;}
.ws7c{word-spacing:-12.096000pt;}
.ws59{word-spacing:-12.050272pt;}
.ws84{word-spacing:-12.048000pt;}
.ws91{word-spacing:-12.000000pt;}
.ws79{word-spacing:-11.952000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.856000pt;}
.ws78{word-spacing:-11.808000pt;}
.ws73{word-spacing:-11.760000pt;}
.ws75{word-spacing:-11.712000pt;}
.ws76{word-spacing:-11.664000pt;}
.ws8{word-spacing:-11.616000pt;}
.ws8c{word-spacing:-11.568000pt;}
.ws80{word-spacing:-11.472000pt;}
.ws87{word-spacing:-11.376000pt;}
.ws74{word-spacing:-11.184000pt;}
.ws3c{word-spacing:-10.992000pt;}
.ws7d{word-spacing:-10.800000pt;}
.ws36{word-spacing:-10.677333pt;}
.wsd{word-spacing:-10.512000pt;}
.ws7b{word-spacing:-9.744000pt;}
.ws7a{word-spacing:-9.696000pt;}
.ws46{word-spacing:-9.661440pt;}
.ws40{word-spacing:-9.625920pt;}
.ws42{word-spacing:-9.483840pt;}
.ws41{word-spacing:-9.412800pt;}
.ws43{word-spacing:-9.091147pt;}
.ws60{word-spacing:-8.853333pt;}
.ws13{word-spacing:-8.640000pt;}
.ws83{word-spacing:-7.776000pt;}
.ws2d{word-spacing:-0.912000pt;}
.wsa{word-spacing:-0.906667pt;}
.ws51{word-spacing:-0.781440pt;}
.ws4{word-spacing:-0.746667pt;}
.ws4c{word-spacing:-0.745920pt;}
.ws95{word-spacing:-0.698078pt;}
.ws9{word-spacing:-0.480000pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws4d{word-spacing:-0.426240pt;}
.ws50{word-spacing:-0.390720pt;}
.ws31{word-spacing:-0.373333pt;}
.ws4e{word-spacing:-0.355200pt;}
.ws30{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.319680pt;}
.wsc{word-spacing:-0.288000pt;}
.ws27{word-spacing:-0.240000pt;}
.ws26{word-spacing:-0.192000pt;}
.ws4f{word-spacing:-0.177600pt;}
.ws10{word-spacing:-0.176000pt;}
.ws33{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.142080pt;}
.ws28{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.048000pt;}
.ws39{word-spacing:0.053333pt;}
.ws32{word-spacing:0.069333pt;}
.ws81{word-spacing:0.096000pt;}
.ws47{word-spacing:0.106560pt;}
.ws4b{word-spacing:0.142080pt;}
.ws4a{word-spacing:0.177600pt;}
.ws6a{word-spacing:0.266667pt;}
.ws52{word-spacing:0.276267pt;}
.ws8f{word-spacing:0.288000pt;}
.ws6d{word-spacing:0.320000pt;}
.ws69{word-spacing:0.346667pt;}
.ws15{word-spacing:0.384000pt;}
.wsf{word-spacing:0.586667pt;}
.ws89{word-spacing:0.672000pt;}
.ws5b{word-spacing:0.820800pt;}
.ws2c{word-spacing:0.853333pt;}
.ws8a{word-spacing:0.912000pt;}
.ws1{word-spacing:1.269333pt;}
.ws2f{word-spacing:1.333333pt;}
.ws57{word-spacing:1.466667pt;}
.ws6f{word-spacing:1.600000pt;}
.ws88{word-spacing:1.680000pt;}
.ws1a{word-spacing:1.968000pt;}
.ws92{word-spacing:2.160000pt;}
.ws18{word-spacing:2.256000pt;}
.ws38{word-spacing:2.266667pt;}
.ws17{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.544000pt;}
.ws8e{word-spacing:2.736000pt;}
.ws14{word-spacing:2.933333pt;}
.ws19{word-spacing:3.312000pt;}
.ws3{word-spacing:3.329451pt;}
.ws16{word-spacing:3.360000pt;}
.ws1d{word-spacing:5.563200pt;}
.ws2{word-spacing:5.660066pt;}
.ws37{word-spacing:7.466667pt;}
.wse{word-spacing:8.266667pt;}
.ws25{word-spacing:8.788800pt;}
.ws24{word-spacing:68.980800pt;}
.ws20{word-spacing:73.113600pt;}
.ws23{word-spacing:100.171200pt;}
.ws11{word-spacing:101.961600pt;}
.ws1f{word-spacing:109.617600pt;}
.ws45{word-spacing:114.528305pt;}
.ws21{word-spacing:115.320000pt;}
.ws22{word-spacing:119.424000pt;}
.ws6c{word-spacing:182.234683pt;}
.ws6e{word-spacing:184.314683pt;}
.ws90{word-spacing:184.602683pt;}
.ws66{word-spacing:184.794683pt;}
.ws8b{word-spacing:185.594683pt;}
.ws82{word-spacing:186.522683pt;}
.ws6b{word-spacing:186.554683pt;}
.ws71{word-spacing:187.194683pt;}
.ws70{word-spacing:187.994683pt;}
.ws3a{word-spacing:192.474683pt;}
.ws5e{word-spacing:192.954683pt;}
.ws56{word-spacing:193.114683pt;}
.ws5d{word-spacing:193.434683pt;}
.ws5c{word-spacing:193.754683pt;}
.ws54{word-spacing:193.914683pt;}
.ws62{word-spacing:194.394683pt;}
.ws53{word-spacing:194.554683pt;}
.ws58{word-spacing:195.994683pt;}
.ws3e{word-spacing:197.274683pt;}
.ws55{word-spacing:218.369067pt;}
.ws44{word-spacing:218.381254pt;}
.ws3d{word-spacing:598.944000pt;}
.ws5a{word-spacing:825.785625pt;}
.ws64{word-spacing:926.442667pt;}
.ws12{word-spacing:1884.772800pt;}
._34{margin-left:-37.361042pt;}
._33{margin-left:-29.413332pt;}
._17{margin-left:-14.959998pt;}
._15{margin-left:-14.032197pt;}
._32{margin-left:-13.039999pt;}
._29{margin-left:-11.545942pt;}
._b{margin-left:-9.802718pt;}
._35{margin-left:-8.800517pt;}
._9{margin-left:-6.442487pt;}
._a{margin-left:-4.384362pt;}
._0{margin-left:-3.409067pt;}
._4{margin-left:-1.985600pt;}
._7{margin-left:-0.915599pt;}
._1{width:1.523200pt;}
._2{width:2.420800pt;}
._3{width:3.390933pt;}
._8{width:4.687577pt;}
._6{width:5.834956pt;}
._c{width:6.920838pt;}
._5{width:8.789750pt;}
._39{width:11.045107pt;}
._30{width:32.466118pt;}
._25{width:34.201600pt;}
._2c{width:57.283622pt;}
._23{width:90.684800pt;}
._31{width:102.058103pt;}
._2f{width:106.092800pt;}
._11{width:166.876566pt;}
._20{width:173.823294pt;}
._1c{width:176.569510pt;}
._1d{width:193.573667pt;}
._26{width:332.673542pt;}
._2a{width:407.998821pt;}
._2d{width:454.081519pt;}
._24{width:524.103942pt;}
._2e{width:550.265568pt;}
._10{width:644.111437pt;}
._36{width:689.105124pt;}
._37{width:725.404800pt;}
._38{width:733.195789pt;}
._14{width:734.435506pt;}
._28{width:741.427201pt;}
._19{width:895.729366pt;}
._12{width:911.309181pt;}
._21{width:941.082683pt;}
._13{width:942.404744pt;}
._1f{width:961.780633pt;}
._27{width:977.025600pt;}
._1e{width:998.103263pt;}
._2b{width:1196.076210pt;}
._1a{width:1307.887005pt;}
._18{width:1317.186079pt;}
._d{width:1467.015969pt;}
._16{width:1546.631459pt;}
._1b{width:1588.610133pt;}
._f{width:1760.238903pt;}
._22{width:1818.293725pt;}
._e{width:1886.667741pt;}
.fs10{font-size:27.626666pt;}
.fsa{font-size:31.093333pt;}
.fsf{font-size:33.546667pt;}
.fse{font-size:35.519999pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:39.466667pt;}
.fs11{font-size:41.600000pt;}
.fs8{font-size:42.666667pt;}
.fs16{font-size:43.629867pt;}
.fs15{font-size:45.600000pt;}
.fs7{font-size:48.000000pt;}
.fs14{font-size:48.000293pt;}
.fs12{font-size:48.394667pt;}
.fs13{font-size:48.394764pt;}
.fsb{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:133.333333pt;}
.fs5{font-size:166.472533pt;}
.y209{bottom:-277.688958pt;}
.y208{bottom:-267.624958pt;}
.y207{bottom:-257.560958pt;}
.y206{bottom:-247.496958pt;}
.y205{bottom:-237.432958pt;}
.y204{bottom:-227.368958pt;}
.y213{bottom:-213.388385pt;}
.y203{bottom:-211.249785pt;}
.y212{bottom:-203.324385pt;}
.y202{bottom:-201.185785pt;}
.y211{bottom:-193.260385pt;}
.y1f4{bottom:-193.141203pt;}
.y1ef{bottom:-189.660736pt;}
.y210{bottom:-183.196385pt;}
.y1f3{bottom:-183.077203pt;}
.y1ee{bottom:-179.596736pt;}
.y20f{bottom:-173.132385pt;}
.y1f2{bottom:-173.013203pt;}
.y1ed{bottom:-169.532736pt;}
.y1f1{bottom:-162.949203pt;}
.y1ec{bottom:-159.468736pt;}
.y1f0{bottom:-152.885203pt;}
.y20e{bottom:-145.934425pt;}
.y1e5{bottom:-143.472260pt;}
.y20d{bottom:-135.870425pt;}
.y1fa{bottom:-134.131734pt;}
.y1e4{bottom:-131.632260pt;}
.y20c{bottom:-125.806425pt;}
.y1e3{bottom:-119.792260pt;}
.y1f9{bottom:-117.233484pt;}
.y20b{bottom:-115.742425pt;}
.y1e2{bottom:-107.952260pt;}
.y1f8{bottom:-107.169484pt;}
.y1eb{bottom:-105.685043pt;}
.y20a{bottom:-105.678425pt;}
.y1f7{bottom:-97.105484pt;}
.y1ea{bottom:-95.621043pt;}
.y1f6{bottom:-87.041484pt;}
.y1e9{bottom:-85.557043pt;}
.y1f5{bottom:-76.977484pt;}
.y201{bottom:-71.175679pt;}
.y1e8{bottom:-68.691456pt;}
.y1fc{bottom:-64.348932pt;}
.y200{bottom:-61.111679pt;}
.y1e7{bottom:-58.627456pt;}
.y1fb{bottom:-54.284932pt;}
.y1ff{bottom:-51.047679pt;}
.y1e6{bottom:-48.563456pt;}
.y1fe{bottom:-40.723692pt;}
.y1fd{bottom:-30.659692pt;}
.y215{bottom:-13.210002pt;}
.y22d{bottom:-0.246928pt;}
.y0{bottom:0.000000pt;}
.y236{bottom:2.300903pt;}
.y9c{bottom:2.422811pt;}
.y398{bottom:37.094533pt;}
.y49{bottom:50.472402pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y238{bottom:87.215291pt;}
.y22e{bottom:98.406657pt;}
.y21{bottom:123.790666pt;}
.y2ef{bottom:127.087077pt;}
.y48{bottom:128.494528pt;}
.yd2{bottom:128.498406pt;}
.y74{bottom:128.504004pt;}
.y250{bottom:128.504130pt;}
.y31b{bottom:128.604126pt;}
.y11b{bottom:128.825737pt;}
.y397{bottom:131.848035pt;}
.y2ca{bottom:137.070645pt;}
.y3a0{bottom:138.228271pt;}
.y73{bottom:141.304004pt;}
.y2ee{bottom:145.087077pt;}
.y361{bottom:146.389238pt;}
.yd1{bottom:146.498406pt;}
.y31a{bottom:146.604126pt;}
.y11a{bottom:146.825737pt;}
.y396{bottom:148.516035pt;}
.y253{bottom:149.812265pt;}
.y195{bottom:152.188933pt;}
.y27e{bottom:152.270840pt;}
.y72{bottom:154.104004pt;}
.y2c9{bottom:155.070645pt;}
.y47{bottom:160.834528pt;}
.y360{bottom:163.057238pt;}
.y2ed{bottom:163.087077pt;}
.yd0{bottom:164.498406pt;}
.y319{bottom:164.604126pt;}
.y119{bottom:164.825737pt;}
.y93{bottom:165.089457pt;}
.y395{bottom:165.184035pt;}
.y27d{bottom:170.270840pt;}
.y2c8{bottom:173.070645pt;}
.y133{bottom:174.781331pt;}
.y18{bottom:175.052000pt;}
.y46{bottom:176.170528pt;}
.y252{bottom:179.296265pt;}
.y35f{bottom:179.725238pt;}
.y2ec{bottom:181.087077pt;}
.y394{bottom:181.852035pt;}
.y29f{bottom:181.902536pt;}
.ycf{bottom:182.498406pt;}
.y318{bottom:182.604126pt;}
.y118{bottom:182.825737pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y311{bottom:188.236247pt;}
.y27c{bottom:188.270840pt;}
.y23d{bottom:189.056133pt;}
.y188{bottom:190.191840pt;}
.y2c7{bottom:191.070645pt;}
.y45{bottom:191.506528pt;}
.y35e{bottom:196.393238pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y393{bottom:198.520035pt;}
.y187{bottom:200.255840pt;}
.yce{bottom:200.498406pt;}
.y317{bottom:200.604126pt;}
.y117{bottom:200.825737pt;}
.y23c{bottom:201.536133pt;}
.y310{bottom:206.236247pt;}
.y27b{bottom:206.270840pt;}
.y44{bottom:206.842528pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y2c6{bottom:209.070645pt;}
.y186{bottom:210.319840pt;}
.y29e{bottom:211.386536pt;}
.y35d{bottom:213.061238pt;}
.y23b{bottom:214.016133pt;}
.y392{bottom:215.188035pt;}
.y2eb{bottom:216.078571pt;}
.yf4{bottom:218.132119pt;}
.ycd{bottom:218.498406pt;}
.y316{bottom:218.604126pt;}
.y116{bottom:218.825737pt;}
.y60{bottom:219.535461pt;}
.y185{bottom:220.383840pt;}
.y43{bottom:222.178528pt;}
.y216{bottom:223.025736pt;}
.y29d{bottom:223.866536pt;}
.y30f{bottom:224.236247pt;}
.y27a{bottom:224.270840pt;}
.y2c5{bottom:227.070645pt;}
.y9d{bottom:227.197733pt;}
.y92{bottom:228.030660pt;}
.y35c{bottom:229.729238pt;}
.y184{bottom:230.447840pt;}
.y239{bottom:230.550659pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y391{bottom:231.856035pt;}
.y2ea{bottom:234.078571pt;}
.yf3{bottom:236.132119pt;}
.y315{bottom:236.604126pt;}
.y183{bottom:240.511840pt;}
.y30e{bottom:242.236247pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y279{bottom:242.270840pt;}
.y2c4{bottom:245.070645pt;}
.y35b{bottom:246.397238pt;}
.y9b{bottom:246.720133pt;}
.y390{bottom:248.524035pt;}
.y29c{bottom:249.893877pt;}
.y1e1{bottom:253.171997pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ycc{bottom:253.511739pt;}
.y115{bottom:253.839071pt;}
.yf2{bottom:254.132119pt;}
.y192{bottom:254.492414pt;}
.y314{bottom:254.604126pt;}
.y182{bottom:256.631014pt;}
.yc2{bottom:258.143341pt;}
.y30d{bottom:260.236247pt;}
.y278{bottom:260.270840pt;}
.y9a{bottom:262.986800pt;}
.y22b{bottom:262.994670pt;}
.y35a{bottom:263.065238pt;}
.y2c3{bottom:263.070645pt;}
.y5f{bottom:263.592000pt;}
.y191{bottom:264.556414pt;}
.y38f{bottom:265.192035pt;}
.y181{bottom:266.695014pt;}
.y2e9{bottom:269.091904pt;}
.ycb{bottom:271.511739pt;}
.y1d5{bottom:271.832197pt;}
.y114{bottom:271.839071pt;}
.y1e0{bottom:272.078316pt;}
.yf1{bottom:272.132119pt;}
.y190{bottom:274.620414pt;}
.y173{bottom:274.739595pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc1{bottom:276.143341pt;}
.y16e{bottom:278.220062pt;}
.y30c{bottom:278.236247pt;}
.y277{bottom:278.270840pt;}
.y99{bottom:279.253467pt;}
.y359{bottom:279.733238pt;}
.y2c2{bottom:281.070645pt;}
.y38e{bottom:281.860035pt;}
.y1d4{bottom:282.488197pt;}
.y29b{bottom:282.573877pt;}
.y1df{bottom:282.734316pt;}
.y223{bottom:284.609333pt;}
.y18f{bottom:284.684414pt;}
.y172{bottom:284.803595pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2e8{bottom:287.091904pt;}
.y16d{bottom:288.284062pt;}
.yca{bottom:289.511739pt;}
.y113{bottom:289.839071pt;}
.yf0{bottom:290.132119pt;}
.y1de{bottom:293.390316pt;}
.y235{bottom:293.657349pt;}
.yc0{bottom:294.143341pt;}
.y237{bottom:294.509074pt;}
.y18e{bottom:294.748414pt;}
.y171{bottom:294.867595pt;}
.y98{bottom:295.520133pt;}
.y30b{bottom:296.236247pt;}
.y276{bottom:296.270840pt;}
.y358{bottom:296.401238pt;}
.y16c{bottom:298.348062pt;}
.y38d{bottom:298.528035pt;}
.y2c1{bottom:299.070645pt;}
.y22c{bottom:300.421468pt;}
.y1d3{bottom:302.503717pt;}
.y170{bottom:304.931595pt;}
.y2e7{bottom:305.091904pt;}
.y5e{bottom:307.648804pt;}
.y112{bottom:307.839071pt;}
.yef{bottom:308.132119pt;}
.y16b{bottom:308.412062pt;}
.yf{bottom:309.452000pt;}
.y1dd{bottom:311.105915pt;}
.y155{bottom:311.757479pt;}
.y97{bottom:311.786800pt;}
.y160{bottom:311.997239pt;}
.ybf{bottom:312.143341pt;}
.y357{bottom:313.069238pt;}
.y1d2{bottom:313.159716pt;}
.y30a{bottom:314.236247pt;}
.y16f{bottom:314.995595pt;}
.y38c{bottom:315.196035pt;}
.y29a{bottom:315.253877pt;}
.y24f{bottom:316.220418pt;}
.y2c0{bottom:317.070645pt;}
.y313{bottom:321.737996pt;}
.y18d{bottom:321.946374pt;}
.y1be{bottom:322.096285pt;}
.y154{bottom:322.413479pt;}
.y15f{bottom:322.653239pt;}
.y2e6{bottom:323.091904pt;}
.y224{bottom:323.627533pt;}
.y164{bottom:324.408548pt;}
.yc9{bottom:324.519613pt;}
.y111{bottom:325.839071pt;}
.y222{bottom:326.132119pt;}
.y1c5{bottom:327.900516pt;}
.y96{bottom:328.053467pt;}
.y356{bottom:329.737238pt;}
.ybe{bottom:330.143341pt;}
.y38b{bottom:331.864035pt;}
.y18c{bottom:332.010374pt;}
.y309{bottom:332.236247pt;}
.y1bd{bottom:332.752285pt;}
.y1dc{bottom:332.959595pt;}
.y15e{bottom:333.309239pt;}
.y179{bottom:333.749064pt;}
.y24e{bottom:334.220418pt;}
.y163{bottom:336.248548pt;}
.y1d1{bottom:338.290116pt;}
.y1c4{bottom:338.556516pt;}
.y275{bottom:338.844173pt;}
.y2e5{bottom:341.091904pt;}
.y18b{bottom:342.074374pt;}
.y153{bottom:342.428999pt;}
.yc8{bottom:342.519613pt;}
.yee{bottom:343.145452pt;}
.y1bc{bottom:343.408285pt;}
.ye{bottom:343.809333pt;}
.y110{bottom:343.839071pt;}
.y221{bottom:344.132119pt;}
.y95{bottom:344.320150pt;}
.y355{bottom:346.405238pt;}
.y299{bottom:347.933877pt;}
.y162{bottom:348.088548pt;}
.ybd{bottom:348.143341pt;}
.y38a{bottom:348.532035pt;}
.y1d0{bottom:348.946116pt;}
.y308{bottom:350.236247pt;}
.y178{bottom:350.647314pt;}
.y15d{bottom:351.024838pt;}
.y18a{bottom:352.138374pt;}
.y24d{bottom:352.220418pt;}
.y152{bottom:353.084998pt;}
.y1db{bottom:354.391440pt;}
.y5d{bottom:355.484945pt;}
.y274{bottom:356.844173pt;}
.y2e4{bottom:359.091904pt;}
.y2bf{bottom:359.643978pt;}
.y161{bottom:359.928548pt;}
.yc7{bottom:360.519613pt;}
.y177{bottom:360.711314pt;}
.yed{bottom:361.145452pt;}
.y10f{bottom:361.839071pt;}
.y13e{bottom:362.023735pt;}
.y220{bottom:362.132119pt;}
.y16a{bottom:362.195755pt;}
.y189{bottom:362.202374pt;}
.y225{bottom:362.645733pt;}
.yd{bottom:362.706666pt;}
.y354{bottom:363.073238pt;}
.y312{bottom:364.404663pt;}
.y1bb{bottom:364.674404pt;}
.y1da{bottom:365.047439pt;}
.y389{bottom:365.200035pt;}
.ybc{bottom:366.143341pt;}
.y145{bottom:367.825798pt;}
.y307{bottom:368.236247pt;}
.y24c{bottom:370.220418pt;}
.y1bf{bottom:370.340251pt;}
.y176{bottom:370.775314pt;}
.y169{bottom:372.259755pt;}
.y13d{bottom:372.679734pt;}
.y15c{bottom:372.878518pt;}
.y273{bottom:374.844173pt;}
.y1ba{bottom:375.330404pt;}
.y1cf{bottom:375.941315pt;}
.y94{bottom:376.853475pt;}
.y2e3{bottom:377.091904pt;}
.y2be{bottom:377.643978pt;}
.y151{bottom:378.215398pt;}
.y144{bottom:378.481798pt;}
.yc6{bottom:378.519613pt;}
.yec{bottom:379.145452pt;}
.y353{bottom:379.741238pt;}
.y21f{bottom:380.132119pt;}
.y1d9{bottom:380.445359pt;}
.y298{bottom:380.613877pt;}
.y175{bottom:380.839314pt;}
.y388{bottom:381.868035pt;}
.y168{bottom:382.323755pt;}
.y5c{bottom:382.823608pt;}
.y13c{bottom:383.335734pt;}
.ybb{bottom:384.143341pt;}
.y306{bottom:386.236247pt;}
.y1ce{bottom:386.597315pt;}
.y24b{bottom:388.220418pt;}
.y150{bottom:388.871398pt;}
.y174{bottom:390.903314pt;}
.y1d8{bottom:391.101359pt;}
.y272{bottom:392.844173pt;}
.y91{bottom:393.120125pt;}
.y15b{bottom:394.314837pt;}
.y1b5{bottom:395.604255pt;}
.y2bd{bottom:395.643978pt;}
.y352{bottom:396.409238pt;}
.yc5{bottom:396.519613pt;}
.y180{bottom:396.705119pt;}
.y10e{bottom:396.846924pt;}
.yeb{bottom:397.145452pt;}
.y1cd{bottom:397.253314pt;}
.y21e{bottom:398.132119pt;}
.y387{bottom:398.536035pt;}
.y297{bottom:398.613877pt;}
.y167{bottom:399.189342pt;}
.y226{bottom:401.663933pt;}
.yba{bottom:402.143341pt;}
.y17b{bottom:403.531866pt;}
.y305{bottom:404.236247pt;}
.y13b{bottom:404.601853pt;}
.y15a{bottom:404.970837pt;}
.y1d7{bottom:405.247198pt;}
.y24a{bottom:406.220418pt;}
.y5b{bottom:406.382650pt;}
.y17f{bottom:406.769119pt;}
.y1b4{bottom:407.444255pt;}
.y166{bottom:409.253342pt;}
.y90{bottom:409.386792pt;}
.y13f{bottom:410.267741pt;}
.y271{bottom:410.844173pt;}
.y2e2{bottom:412.105238pt;}
.y351{bottom:413.077238pt;}
.y17a{bottom:413.595866pt;}
.y2bc{bottom:413.643978pt;}
.yc4{bottom:414.519613pt;}
.yea{bottom:415.145452pt;}
.y386{bottom:415.204035pt;}
.y13a{bottom:415.257853pt;}
.y14f{bottom:415.866597pt;}
.y1d6{bottom:415.903198pt;}
.y21d{bottom:416.132119pt;}
.y296{bottom:416.613877pt;}
.y17e{bottom:416.833119pt;}
.y165{bottom:419.317342pt;}
.y159{bottom:420.368757pt;}
.y331{bottom:422.236247pt;}
.y249{bottom:424.220418pt;}
.y8f{bottom:425.653459pt;}
.y14e{bottom:426.522597pt;}
.y17d{bottom:427.157106pt;}
.y270{bottom:428.844173pt;}
.y1cc{bottom:429.629794pt;}
.y350{bottom:429.745238pt;}
.y1b9{bottom:430.068935pt;}
.y2e1{bottom:430.105238pt;}
.y1c1{bottom:430.826381pt;}
.yc{bottom:430.990669pt;}
.y158{bottom:431.024757pt;}
.y2bb{bottom:431.643978pt;}
.y385{bottom:431.872035pt;}
.ye9{bottom:433.145452pt;}
.y5a{bottom:435.321208pt;}
.y135{bottom:435.531745pt;}
.y14d{bottom:437.178596pt;}
.y17c{bottom:437.221106pt;}
.y304{bottom:439.243978pt;}
.y330{bottom:440.236247pt;}
.y227{bottom:440.682133pt;}
.y1b8{bottom:440.724935pt;}
.y1c0{bottom:441.482381pt;}
.y8e{bottom:441.920125pt;}
.y248{bottom:442.220418pt;}
.y157{bottom:445.170596pt;}
.y10d{bottom:446.305353pt;}
.y1cb{bottom:446.404113pt;}
.y34f{bottom:446.413238pt;}
.y26f{bottom:446.844173pt;}
.yb{bottom:446.990669pt;}
.y134{bottom:447.371745pt;}
.y2e0{bottom:448.105238pt;}
.y384{bottom:448.540035pt;}
.y295{bottom:449.293877pt;}
.yc3{bottom:449.527588pt;}
.y2ba{bottom:449.643978pt;}
.yb9{bottom:450.716673pt;}
.ye8{bottom:451.145452pt;}
.y194{bottom:454.670817pt;}
.y156{bottom:455.826596pt;}
.y303{bottom:457.243978pt;}
.y8d{bottom:458.186808pt;}
.y32f{bottom:458.236247pt;}
.y247{bottom:460.198701pt;}
.ya{bottom:462.990669pt;}
.y34e{bottom:463.081238pt;}
.y1ca{bottom:463.169553pt;}
.y10c{bottom:464.305353pt;}
.y383{bottom:465.208035pt;}
.y2df{bottom:466.105238pt;}
.y1b7{bottom:467.409593pt;}
.y2b9{bottom:467.643978pt;}
.y59{bottom:468.039347pt;}
.yb8{bottom:468.716673pt;}
.ye7{bottom:469.145452pt;}
.y14c{bottom:469.555076pt;}
.y139{bottom:469.996385pt;}
.y1c3{bottom:470.175869pt;}
.y141{bottom:470.753872pt;}
.y8c{bottom:474.453475pt;}
.y302{bottom:475.243978pt;}
.y132{bottom:475.527588pt;}
.y32e{bottom:476.236247pt;}
.y1b6{bottom:478.065592pt;}
.y246{bottom:478.198701pt;}
.y9{bottom:478.990666pt;}
.y228{bottom:479.700333pt;}
.y34d{bottom:479.749238pt;}
.y1c9{bottom:479.952753pt;}
.y138{bottom:480.652384pt;}
.y1c2{bottom:480.831868pt;}
.y140{bottom:481.409871pt;}
.y382{bottom:481.876035pt;}
.y294{bottom:481.973877pt;}
.y2de{bottom:484.105238pt;}
.y2b8{bottom:485.643978pt;}
.y14b{bottom:486.329395pt;}
.yb7{bottom:486.716673pt;}
.y21c{bottom:487.145452pt;}
.y31c{bottom:488.118123pt;}
.y26e{bottom:489.417507pt;}
.y8b{bottom:490.720142pt;}
.y301{bottom:493.243978pt;}
.y32d{bottom:494.236247pt;}
.y8{bottom:494.990666pt;}
.y58{bottom:495.377848pt;}
.y245{bottom:496.198701pt;}
.y34c{bottom:496.417238pt;}
.y1c8{bottom:496.718192pt;}
.y10b{bottom:496.985353pt;}
.y381{bottom:498.544035pt;}
.y2dd{bottom:502.105238pt;}
.y14a{bottom:503.094835pt;}
.y2b7{bottom:503.643978pt;}
.ye6{bottom:504.158786pt;}
.yb6{bottom:504.716673pt;}
.y21b{bottom:505.145452pt;}
.y8a{bottom:506.986808pt;}
.y137{bottom:507.336920pt;}
.y26d{bottom:507.417507pt;}
.yd3{bottom:507.960653pt;}
.y143{bottom:510.101151pt;}
.y300{bottom:511.243978pt;}
.y32c{bottom:512.236247pt;}
.y34b{bottom:513.085238pt;}
.y1c7{bottom:513.492512pt;}
.y244{bottom:514.198701pt;}
.y10a{bottom:514.985353pt;}
.y380{bottom:515.212035pt;}
.y136{bottom:517.992920pt;}
.y229{bottom:518.718533pt;}
.y131{bottom:519.074015pt;}
.y149{bottom:519.878035pt;}
.y293{bottom:519.984285pt;}
.y2dc{bottom:520.105238pt;}
.y142{bottom:520.757151pt;}
.ye5{bottom:522.158786pt;}
.y57{bottom:522.716553pt;}
.yb5{bottom:522.716673pt;}
.y21a{bottom:523.145452pt;}
.y89{bottom:523.253475pt;}
.y26c{bottom:525.417507pt;}
.y2ff{bottom:529.243978pt;}
.y34a{bottom:529.753238pt;}
.y32b{bottom:530.236247pt;}
.y1c6{bottom:530.257951pt;}
.y37f{bottom:531.880035pt;}
.y109{bottom:532.985353pt;}
.y292{bottom:535.184285pt;}
.y148{bottom:536.643474pt;}
.y130{bottom:537.074015pt;}
.y2db{bottom:538.105238pt;}
.y2b6{bottom:538.657311pt;}
.y88{bottom:539.520142pt;}
.ye4{bottom:540.158786pt;}
.yb4{bottom:540.716673pt;}
.y219{bottom:541.145452pt;}
.y214{bottom:541.320516pt;}
.y26b{bottom:543.417507pt;}
.y56{bottom:546.275594pt;}
.y349{bottom:546.421238pt;}
.y2fe{bottom:547.243978pt;}
.y32a{bottom:548.236247pt;}
.y37e{bottom:548.548035pt;}
.y243{bottom:549.212035pt;}
.y1a9{bottom:551.740153pt;}
.y42{bottom:552.634498pt;}
.y147{bottom:553.417794pt;}
.y12f{bottom:555.074015pt;}
.y87{bottom:555.786784pt;}
.y2da{bottom:556.105238pt;}
.y2b5{bottom:556.657311pt;}
.y22a{bottom:557.736733pt;}
.ye3{bottom:558.158786pt;}
.yb3{bottom:558.716673pt;}
.y218{bottom:559.145452pt;}
.y26a{bottom:561.417507pt;}
.y348{bottom:563.089238pt;}
.y55{bottom:563.875448pt;}
.y37d{bottom:565.216035pt;}
.y2fd{bottom:565.243978pt;}
.y108{bottom:565.665353pt;}
.y329{bottom:566.236247pt;}
.y242{bottom:567.212035pt;}
.y41{bottom:567.970498pt;}
.y146{bottom:570.183233pt;}
.y7{bottom:573.786667pt;}
.y2d9{bottom:574.105238pt;}
.y2b4{bottom:574.657311pt;}
.y1b3{bottom:575.697591pt;}
.ye2{bottom:576.158786pt;}
.yb2{bottom:576.716673pt;}
.y291{bottom:578.730794pt;}
.y269{bottom:579.417507pt;}
.y347{bottom:579.757238pt;}
.y193{bottom:581.247965pt;}
.y37c{bottom:581.884035pt;}
.y86{bottom:582.697583pt;}
.y2fc{bottom:583.243978pt;}
.y40{bottom:583.306498pt;}
.y107{bottom:583.665353pt;}
.y328{bottom:584.236247pt;}
.y241{bottom:585.212035pt;}
.y12e{bottom:590.081868pt;}
.y2d8{bottom:592.105238pt;}
.y2b3{bottom:592.657311pt;}
.y6{bottom:592.685334pt;}
.y54{bottom:592.814128pt;}
.ye1{bottom:594.158786pt;}
.yb1{bottom:594.716673pt;}
.y346{bottom:596.425238pt;}
.y290{bottom:596.730794pt;}
.y85{bottom:597.897583pt;}
.y37b{bottom:598.552035pt;}
.y3f{bottom:598.642498pt;}
.y2fb{bottom:601.243978pt;}
.y1a8{bottom:602.225368pt;}
.y240{bottom:603.212035pt;}
.y2d7{bottom:610.105238pt;}
.y53{bottom:610.414144pt;}
.y2b2{bottom:610.657311pt;}
.ye0{bottom:612.158786pt;}
.y345{bottom:613.093238pt;}
.y3e{bottom:613.978498pt;}
.y268{bottom:614.430840pt;}
.y28f{bottom:614.730794pt;}
.y37a{bottom:615.220035pt;}
.y106{bottom:616.345353pt;}
.y1b2{bottom:619.238701pt;}
.y2fa{bottom:619.243978pt;}
.y1a7{bottom:620.225368pt;}
.y23f{bottom:621.212035pt;}
.y2b1{bottom:628.657311pt;}
.yb0{bottom:629.730007pt;}
.y344{bottom:629.761238pt;}
.ydf{bottom:630.158786pt;}
.y379{bottom:631.888035pt;}
.y267{bottom:632.430840pt;}
.y28e{bottom:632.730794pt;}
.y105{bottom:634.345353pt;}
.y1b1{bottom:637.238701pt;}
.y2f9{bottom:637.243978pt;}
.y1a6{bottom:638.225368pt;}
.y12d{bottom:639.212035pt;}
.y52{bottom:639.352661pt;}
.y84{bottom:641.438571pt;}
.y2d6{bottom:645.118571pt;}
.y3d{bottom:646.318498pt;}
.y343{bottom:646.429238pt;}
.y2b0{bottom:646.657311pt;}
.yaf{bottom:647.730007pt;}
.yde{bottom:648.158786pt;}
.y378{bottom:648.556035pt;}
.y266{bottom:650.430840pt;}
.y28d{bottom:650.730794pt;}
.y104{bottom:652.345353pt;}
.y234{bottom:653.886678pt;}
.y1b0{bottom:655.238701pt;}
.y2f8{bottom:655.243978pt;}
.y1a5{bottom:656.225368pt;}
.y12c{bottom:657.212035pt;}
.y83{bottom:659.438571pt;}
.y3c{bottom:661.654498pt;}
.y342{bottom:663.097238pt;}
.y2d5{bottom:663.118571pt;}
.y377{bottom:665.224035pt;}
.yae{bottom:665.730007pt;}
.y27{bottom:665.989583pt;}
.y217{bottom:666.158786pt;}
.y265{bottom:668.430840pt;}
.y28c{bottom:668.730794pt;}
.y3{bottom:668.977329pt;}
.y1af{bottom:673.238701pt;}
.y2f7{bottom:673.243978pt;}
.y1a4{bottom:674.225368pt;}
.y12b{bottom:675.212035pt;}
.y3b{bottom:676.990498pt;}
.y82{bottom:677.438571pt;}
.y22f{bottom:677.831991pt;}
.y341{bottom:679.765238pt;}
.y2d4{bottom:681.118571pt;}
.y2af{bottom:681.670645pt;}
.y376{bottom:681.892035pt;}
.ydd{bottom:683.172119pt;}
.y51{bottom:683.409505pt;}
.yad{bottom:683.730007pt;}
.y103{bottom:685.025353pt;}
.y264{bottom:686.430840pt;}
.y28b{bottom:686.730794pt;}
.y1ae{bottom:691.238701pt;}
.y2f6{bottom:691.243978pt;}
.y1a3{bottom:692.225368pt;}
.y3a{bottom:692.326498pt;}
.y12a{bottom:693.212035pt;}
.y81{bottom:695.438571pt;}
.y340{bottom:696.433238pt;}
.y375{bottom:698.560035pt;}
.y2d3{bottom:699.118571pt;}
.y2ae{bottom:699.670645pt;}
.ydc{bottom:701.172119pt;}
.yac{bottom:701.730007pt;}
.y102{bottom:703.025353pt;}
.y263{bottom:704.430840pt;}
.y28a{bottom:704.730794pt;}
.y1ad{bottom:709.238701pt;}
.y327{bottom:709.243978pt;}
.y23e{bottom:710.225368pt;}
.y50{bottom:712.347982pt;}
.y33f{bottom:713.101238pt;}
.y80{bottom:713.438571pt;}
.y26{bottom:714.959229pt;}
.y374{bottom:715.228035pt;}
.y2d2{bottom:717.118571pt;}
.y2ad{bottom:717.670645pt;}
.ydb{bottom:719.172119pt;}
.yab{bottom:719.730007pt;}
.y101{bottom:721.025353pt;}
.y262{bottom:722.430840pt;}
.y289{bottom:722.730794pt;}
.y39{bottom:724.666498pt;}
.y2f5{bottom:726.252035pt;}
.y1a2{bottom:727.238701pt;}
.y326{bottom:727.243978pt;}
.y129{bottom:728.225368pt;}
.y33e{bottom:729.769238pt;}
.y7f{bottom:731.438571pt;}
.y230{bottom:731.771989pt;}
.y373{bottom:731.896035pt;}
.y2d1{bottom:735.118571pt;}
.y2ac{bottom:735.670645pt;}
.yda{bottom:737.172119pt;}
.y38{bottom:740.002498pt;}
.y4f{bottom:741.286540pt;}
.y2f4{bottom:744.252035pt;}
.y1a1{bottom:745.238701pt;}
.y325{bottom:745.243978pt;}
.y128{bottom:746.225368pt;}
.y33d{bottom:746.437238pt;}
.y6a{bottom:746.769444pt;}
.y372{bottom:748.564035pt;}
.y7e{bottom:749.438571pt;}
.y2d0{bottom:753.118571pt;}
.y2ab{bottom:753.670645pt;}
.y100{bottom:753.705353pt;}
.yaa{bottom:754.743340pt;}
.yd9{bottom:755.172119pt;}
.y37{bottom:755.338498pt;}
.y261{bottom:757.444173pt;}
.y288{bottom:757.738656pt;}
.y2f3{bottom:762.252035pt;}
.y33c{bottom:763.105238pt;}
.y1a0{bottom:763.238701pt;}
.y324{bottom:763.243978pt;}
.y127{bottom:764.225368pt;}
.y371{bottom:765.232035pt;}
.y25{bottom:766.274387pt;}
.y69{bottom:766.437444pt;}
.y7d{bottom:767.438571pt;}
.y71{bottom:769.441319pt;}
.y4e{bottom:770.225098pt;}
.y23a{bottom:770.501587pt;}
.y36{bottom:770.674498pt;}
.y2cf{bottom:771.118571pt;}
.y2aa{bottom:771.670645pt;}
.yff{bottom:771.705353pt;}
.ya9{bottom:772.743340pt;}
.yd8{bottom:773.172119pt;}
.y260{bottom:775.444173pt;}
.y287{bottom:778.538656pt;}
.y33b{bottom:779.773238pt;}
.y2f2{bottom:780.252035pt;}
.y19f{bottom:781.238701pt;}
.y323{bottom:781.243978pt;}
.y2{bottom:781.661334pt;}
.y370{bottom:781.900035pt;}
.y126{bottom:782.225368pt;}
.y231{bottom:785.711988pt;}
.y35{bottom:786.010498pt;}
.y70{bottom:789.109319pt;}
.y2ce{bottom:789.118571pt;}
.y2a9{bottom:789.670645pt;}
.yfe{bottom:789.705353pt;}
.ya8{bottom:790.743340pt;}
.y25f{bottom:793.444173pt;}
.y33a{bottom:796.441238pt;}
.y68{bottom:797.445444pt;}
.y2f1{bottom:798.252035pt;}
.y36f{bottom:798.568035pt;}
.y19e{bottom:799.238701pt;}
.y322{bottom:799.243978pt;}
.y125{bottom:800.225368pt;}
.y34{bottom:801.343831pt;}
.y7c{bottom:802.451904pt;}
.y2cd{bottom:807.118571pt;}
.y2a8{bottom:807.670645pt;}
.yd7{bottom:808.179980pt;}
.ya7{bottom:808.743340pt;}
.y6f{bottom:808.777319pt;}
.y25e{bottom:811.444173pt;}
.y339{bottom:813.109238pt;}
.y4d{bottom:814.281901pt;}
.y36e{bottom:815.236035pt;}
.y2f0{bottom:816.252035pt;}
.y67{bottom:817.105319pt;}
.y19d{bottom:817.238701pt;}
.y321{bottom:817.243978pt;}
.y24{bottom:817.589545pt;}
.y124{bottom:818.225368pt;}
.y7b{bottom:820.451904pt;}
.yfd{bottom:822.385353pt;}
.y2cc{bottom:825.118571pt;}
.y2a7{bottom:825.670645pt;}
.ya6{bottom:826.743340pt;}
.y286{bottom:827.678701pt;}
.y6e{bottom:828.445319pt;}
.yd6{bottom:828.979980pt;}
.y25d{bottom:829.444173pt;}
.y338{bottom:829.777238pt;}
.y36d{bottom:831.904035pt;}
.y1ac{bottom:834.252035pt;}
.y19c{bottom:835.238701pt;}
.y320{bottom:835.243978pt;}
.y123{bottom:836.225368pt;}
.y66{bottom:836.773319pt;}
.y7a{bottom:838.451904pt;}
.y232{bottom:839.663986pt;}
.yfc{bottom:840.385353pt;}
.y2cb{bottom:843.118571pt;}
.y33{bottom:843.890701pt;}
.ya5{bottom:844.743340pt;}
.y285{bottom:845.678701pt;}
.y337{bottom:846.445238pt;}
.y25c{bottom:847.444173pt;}
.y6d{bottom:848.113319pt;}
.y36c{bottom:848.572035pt;}
.y1ab{bottom:852.252035pt;}
.y19b{bottom:853.238701pt;}
.y31f{bottom:853.243978pt;}
.y65{bottom:856.441319pt;}
.y79{bottom:856.451904pt;}
.y4c{bottom:858.338542pt;}
.y32{bottom:859.226701pt;}
.y1{bottom:859.312000pt;}
.ya4{bottom:862.743340pt;}
.y336{bottom:863.113238pt;}
.y284{bottom:863.678701pt;}
.y36b{bottom:865.240035pt;}
.y25b{bottom:865.444173pt;}
.y6c{bottom:867.781319pt;}
.y2a6{bottom:868.243978pt;}
.y23{bottom:868.904704pt;}
.y1aa{bottom:870.252035pt;}
.y122{bottom:871.238701pt;}
.y31e{bottom:871.243978pt;}
.yfb{bottom:873.065353pt;}
.y78{bottom:874.451904pt;}
.y31{bottom:874.562701pt;}
.y64{bottom:876.109319pt;}
.y335{bottom:879.781238pt;}
.y283{bottom:881.678701pt;}
.y36a{bottom:881.908035pt;}
.y25a{bottom:883.444173pt;}
.y2a5{bottom:886.243978pt;}
.y6b{bottom:887.449319pt;}
.y19a{bottom:888.252035pt;}
.y121{bottom:889.238701pt;}
.y31d{bottom:889.243978pt;}
.y30{bottom:889.898701pt;}
.yfa{bottom:891.065353pt;}
.y77{bottom:892.451904pt;}
.y233{bottom:893.603984pt;}
.y334{bottom:896.449238pt;}
.ya3{bottom:897.756673pt;}
.y369{bottom:898.576035pt;}
.y282{bottom:899.678701pt;}
.y259{bottom:901.444173pt;}
.y4b{bottom:902.395182pt;}
.y2a4{bottom:904.243978pt;}
.y2f{bottom:905.234701pt;}
.y199{bottom:906.252035pt;}
.y63{bottom:907.117319pt;}
.y120{bottom:907.238701pt;}
.yd5{bottom:910.252360pt;}
.y76{bottom:910.451904pt;}
.y333{bottom:913.117238pt;}
.y368{bottom:915.244035pt;}
.ya2{bottom:915.756673pt;}
.y281{bottom:917.678701pt;}
.y258{bottom:919.444173pt;}
.y22{bottom:920.201497pt;}
.y2e{bottom:920.570701pt;}
.y2a3{bottom:922.243978pt;}
.yf9{bottom:923.745353pt;}
.y198{bottom:924.252035pt;}
.y11f{bottom:925.238701pt;}
.y62{bottom:926.785319pt;}
.y75{bottom:928.451904pt;}
.y332{bottom:929.785238pt;}
.y367{bottom:931.912035pt;}
.ya1{bottom:933.756673pt;}
.y280{bottom:935.678701pt;}
.y257{bottom:937.444173pt;}
.y2a2{bottom:940.243978pt;}
.yf8{bottom:941.745353pt;}
.y197{bottom:942.252035pt;}
.y11e{bottom:943.238701pt;}
.y39f{bottom:947.546647pt;}
.y366{bottom:948.580035pt;}
.ya0{bottom:951.756673pt;}
.y2d{bottom:952.910701pt;}
.yd4{bottom:952.919027pt;}
.y27f{bottom:953.678701pt;}
.y256{bottom:955.444173pt;}
.y2a1{bottom:958.243978pt;}
.y39e{bottom:958.746647pt;}
.y196{bottom:960.252035pt;}
.y365{bottom:965.248035pt;}
.y2c{bottom:968.246701pt;}
.y39d{bottom:969.946647pt;}
.yf7{bottom:973.652018pt;}
.y2a0{bottom:976.243978pt;}
.y11d{bottom:978.252035pt;}
.y9f{bottom:980.654248pt;}
.y39c{bottom:981.146647pt;}
.y364{bottom:981.916035pt;}
.y2b{bottom:983.582701pt;}
.y251{bottom:989.055176pt;}
.y255{bottom:990.452035pt;}
.y4a{bottom:995.585693pt;}
.y61{bottom:995.585856pt;}
.y9e{bottom:995.854248pt;}
.y11c{bottom:996.252035pt;}
.y363{bottom:998.584035pt;}
.y2a{bottom:998.918701pt;}
.yf6{bottom:999.552035pt;}
.y39b{bottom:1011.244303pt;}
.y254{bottom:1011.252035pt;}
.y29{bottom:1014.252035pt;}
.yf5{bottom:1014.752035pt;}
.y362{bottom:1015.252035pt;}
.y39a{bottom:1026.576637pt;}
.y399{bottom:1048.136637pt;}
.y28{bottom:1052.047200pt;}
.h29{height:22.101333pt;}
.h26{height:24.287787pt;}
.h27{height:26.870880pt;}
.h25{height:28.451519pt;}
.h8{height:28.560000pt;}
.h24{height:28.573867pt;}
.h9{height:28.597333pt;}
.h39{height:30.570312pt;}
.h36{height:30.843750pt;}
.h28{height:31.522677pt;}
.h2c{height:31.533867pt;}
.h22{height:33.723958pt;}
.h3a{height:35.001890pt;}
.h17{height:36.000000pt;}
.h2a{height:37.578125pt;}
.h35{height:37.673437pt;}
.h37{height:38.273438pt;}
.h30{height:38.507812pt;}
.h33{height:38.508047pt;}
.h1a{height:38.541667pt;}
.h2d{height:38.824432pt;}
.h2f{height:38.824510pt;}
.h10{height:39.304688pt;}
.h19{height:39.656250pt;}
.hf{height:40.000000pt;}
.h1f{height:40.546875pt;}
.h21{height:40.647135pt;}
.h7{height:40.853333pt;}
.h32{height:41.426758pt;}
.h1c{height:41.859375pt;}
.he{height:42.786458pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h11{height:43.359375pt;}
.h18{height:43.391875pt;}
.h1b{height:43.671875pt;}
.h1e{height:44.062500pt;}
.h14{height:44.601562pt;}
.h12{height:46.386649pt;}
.hd{height:48.039062pt;}
.h16{height:48.177083pt;}
.h15{height:48.468750pt;}
.h2{height:49.024000pt;}
.h1d{height:52.710938pt;}
.h38{height:53.510417pt;}
.h5{height:69.450667pt;}
.hb{height:76.205333pt;}
.h4{height:105.826671pt;}
.h13{height:112.066667pt;}
.hc{height:139.836928pt;}
.h23{height:292.401326pt;}
.h2b{height:303.621338pt;}
.h31{height:305.708008pt;}
.h2e{height:312.260010pt;}
.h20{height:352.133341pt;}
.h34{height:751.947998pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:515.276000pt;}
.w6{width:521.574666pt;}
.w7{width:547.761353pt;}
.w4{width:551.812012pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa0{left:2.279999pt;}
.x94{left:8.177602pt;}
.x9f{left:10.264394pt;}
.x58{left:14.927867pt;}
.x95{left:18.623993pt;}
.x31{left:21.984405pt;}
.x85{left:25.813467pt;}
.x32{left:28.102725pt;}
.x70{left:30.111729pt;}
.x30{left:32.173869pt;}
.x71{left:33.147702pt;}
.x6f{left:36.015942pt;}
.x74{left:37.592635pt;}
.x9d{left:38.614939pt;}
.x75{left:43.765222pt;}
.x73{left:45.048382pt;}
.x72{left:48.268862pt;}
.x76{left:51.279675pt;}
.x8{left:56.692932pt;}
.x92{left:62.239366pt;}
.x9c{left:65.343738pt;}
.x5{left:67.716532pt;}
.x2f{left:84.076115pt;}
.x28{left:86.989736pt;}
.x2a{left:88.681732pt;}
.x1{left:90.706667pt;}
.x9b{left:92.072538pt;}
.x2{left:94.486667pt;}
.x2b{left:96.478372pt;}
.x29{left:99.372403pt;}
.x66{left:111.879730pt;}
.x6a{left:115.395742pt;}
.x68{left:118.658130pt;}
.x67{left:119.990130pt;}
.x7{left:120.944936pt;}
.x6b{left:124.964929pt;}
.x19{left:126.251330pt;}
.x69{left:128.268264pt;}
.x1a{left:129.384663pt;}
.x27{left:134.601329pt;}
.x25{left:136.064804pt;}
.x9{left:137.952799pt;}
.x24{left:140.065196pt;}
.x86{left:141.568797pt;}
.x18{left:144.144663pt;}
.x9a{left:145.530136pt;}
.x84{left:146.895599pt;}
.x59{left:149.391062pt;}
.x44{left:153.689457pt;}
.xc{left:154.960663pt;}
.x2c{left:157.012278pt;}
.x43{left:159.593670pt;}
.x46{left:161.170363pt;}
.x2d{left:163.081614pt;}
.xa{left:164.286662pt;}
.xb{left:165.672668pt;}
.x47{left:167.342950pt;}
.x45{left:168.626110pt;}
.x91{left:170.306965pt;}
.x2e{left:172.689774pt;}
.x48{left:174.857403pt;}
.x6c{left:178.136395pt;}
.x4{left:180.874667pt;}
.x6e{left:188.233942pt;}
.x22{left:192.991730pt;}
.x6d{left:196.008382pt;}
.x90{left:197.323865pt;}
.x99{left:198.987735pt;}
.x60{left:216.043715pt;}
.x5a{left:218.957458pt;}
.x5c{left:220.649333pt;}
.x8f{left:224.340765pt;}
.x5f{left:225.785075pt;}
.x5d{left:228.445973pt;}
.x5b{left:231.340125pt;}
.x78{left:232.640513pt;}
.x77{left:235.030935pt;}
.x35{left:235.983515pt;}
.x3e{left:238.973470pt;}
.x33{left:240.681032pt;}
.x3c{left:242.235858pt;}
.x3b{left:243.567858pt;}
.x34{left:244.872394pt;}
.x3f{left:248.542657pt;}
.x3d{left:251.845992pt;}
.xa1{left:256.572937pt;}
.x20{left:272.715732pt;}
.x21{left:274.795732pt;}
.x1e{left:276.262398pt;}
.x8e{left:278.374564pt;}
.x1f{left:280.742398pt;}
.x1d{left:284.249065pt;}
.x42{left:288.991550pt;}
.x40{left:290.517923pt;}
.x11{left:291.686135pt;}
.x1c{left:294.835733pt;}
.x5e{left:296.483458pt;}
.xe{left:302.512797pt;}
.x41{left:304.456563pt;}
.x8d{left:305.391464pt;}
.xf{left:306.392801pt;}
.x26{left:311.944804pt;}
.x12{left:318.726135pt;}
.x37{left:321.240393pt;}
.x36{left:322.368153pt;}
.x7d{left:324.877075pt;}
.x87{left:326.740285pt;}
.x10{left:330.446135pt;}
.x8c{left:332.408364pt;}
.x79{left:337.331273pt;}
.x7e{left:340.736261pt;}
.x4a{left:356.218140pt;}
.x49{left:358.608683pt;}
.x1b{left:364.948527pt;}
.x62{left:367.949699pt;}
.xd{left:371.321086pt;}
.x4b{left:372.924380pt;}
.x61{left:376.838579pt;}
.x8b{left:386.442164pt;}
.xa2{left:402.184804pt;}
.x3{left:404.408000pt;}
.x9e{left:408.547740pt;}
.x3a{left:412.384710pt;}
.x38{left:413.290470pt;}
.x39{left:414.409350pt;}
.x7b{left:418.287763pt;}
.x82{left:419.612858pt;}
.x7c{left:420.552163pt;}
.x81{left:421.617271pt;}
.x7f{left:423.772644pt;}
.x7a{left:430.154896pt;}
.x83{left:434.557898pt;}
.x80{left:438.482858pt;}
.x98{left:439.546929pt;}
.x8a{left:440.475963pt;}
.x52{left:445.838061pt;}
.x50{left:448.454701pt;}
.x93{left:449.852387pt;}
.x64{left:453.206577pt;}
.x63{left:454.334337pt;}
.x4c{left:460.908900pt;}
.x51{left:464.313888pt;}
.x15{left:466.968386pt;}
.x17{left:468.648386pt;}
.x16{left:473.328386pt;}
.x14{left:474.261719pt;}
.x97{left:493.004528pt;}
.x89{left:494.509763pt;}
.x96{left:519.733327pt;}
.x88{left:521.526662pt;}
.x13{left:528.967855pt;}
.x4e{left:541.865389pt;}
.x56{left:543.190484pt;}
.x4f{left:544.129789pt;}
.x55{left:545.194897pt;}
.x65{left:546.371932pt;}
.x53{left:547.350271pt;}
.x4d{left:553.732523pt;}
.x57{left:558.135524pt;}
.x54{left:562.060484pt;}
.x6{left:626.527344pt;}
.x23{left:672.755859pt;}
}




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