
    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_aff146fec8441b05a9d59af7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1596251e856a82e59a2b178f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb43ec6436bb140cbde1ca10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.054000;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_137db46065b6a89ec97e93f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a09677dc4db154525ec8eb13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5343fdefbab067c102faa03a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6a376d0abe4f8c46d45a8636.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;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_7032745fbb3a51670941d10b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918945;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_8a2a9d09ab9211e99a367af0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a8a1104968bd1e81a68ac263.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ed34b0c9be3b1d1df15e4fd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1622daddf7e70a59deb05a61.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_899bc0c3f9f856c679456fd6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_076f9d30cb77fcc21b2a93f4.woff2')format("woff");}.fff{font-family:fff;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d1713b762bfe90bb94917dba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_55e57092c8492bf757077513.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.705078;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_66e2f3f15cc26da394efa909.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5654cc868968fe1e866d5a43.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_da5f4756c847adf3a6220c6b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3d3ff90a3f585bc12ffbfe98.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_25e4ce5fd37cb01990d719e9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_01248e1f65ea2a2faf4b56f8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cd522d8b1a5e2b63bfe0f801.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4978defeb06c83180c3a2fa9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281292,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);}
.v1{vertical-align:-6.126000px;}
.v2{vertical-align:-1.358383px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.346000px;}
.v4{vertical-align:25.170000px;}
.ls4{letter-spacing:-1.263600px;}
.ls8{letter-spacing:-1.200600px;}
.lsc{letter-spacing:-1.199985px;}
.lsd{letter-spacing:-0.359996px;}
.lsb{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.239997px;}
.ls9{letter-spacing:-0.239400px;}
.ls6{letter-spacing:-0.238497px;}
.ls5{letter-spacing:-0.237600px;}
.lsa{letter-spacing:-0.237598px;}
.ls26{letter-spacing:-0.214367px;}
.ls19{letter-spacing:-0.211976px;}
.ls22{letter-spacing:-0.211174px;}
.ls7{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.150000px;}
.ls4e{letter-spacing:0.156000px;}
.ls4b{letter-spacing:0.162000px;}
.ls30{letter-spacing:0.168000px;}
.ls49{letter-spacing:0.486000px;}
.ls3c{letter-spacing:0.492000px;}
.ls46{letter-spacing:0.504000px;}
.ls51{letter-spacing:2.934600px;}
.ls0{letter-spacing:4.766340px;}
.ls59{letter-spacing:5.102336px;}
.ls58{letter-spacing:5.107136px;}
.ls25{letter-spacing:9.256154px;}
.ls2{letter-spacing:9.446282px;}
.ls23{letter-spacing:10.257472px;}
.ls38{letter-spacing:10.348671px;}
.ls1{letter-spacing:10.387070px;}
.ls29{letter-spacing:10.660667px;}
.ls2a{letter-spacing:10.790265px;}
.ls2b{letter-spacing:11.131061px;}
.ls45{letter-spacing:11.140661px;}
.ls44{letter-spacing:11.145461px;}
.ls34{letter-spacing:12.552000px;}
.ls1e{letter-spacing:12.678000px;}
.ls50{letter-spacing:12.750000px;}
.ls54{letter-spacing:12.756000px;}
.ls53{letter-spacing:12.762000px;}
.ls12{letter-spacing:12.792000px;}
.ls16{letter-spacing:12.810000px;}
.ls28{letter-spacing:12.816000px;}
.ls1c{letter-spacing:12.822000px;}
.ls55{letter-spacing:12.864000px;}
.ls21{letter-spacing:12.882000px;}
.ls2e{letter-spacing:12.888000px;}
.ls3a{letter-spacing:12.894000px;}
.ls1f{letter-spacing:12.924000px;}
.ls18{letter-spacing:12.936000px;}
.ls1b{letter-spacing:12.942000px;}
.ls4f{letter-spacing:12.948000px;}
.ls57{letter-spacing:12.978000px;}
.ls56{letter-spacing:12.984000px;}
.ls15{letter-spacing:13.008000px;}
.lsf{letter-spacing:13.014000px;}
.ls11{letter-spacing:13.020000px;}
.ls52{letter-spacing:13.086000px;}
.ls39{letter-spacing:13.092000px;}
.ls1d{letter-spacing:13.116000px;}
.lse{letter-spacing:13.122000px;}
.ls13{letter-spacing:13.134000px;}
.ls14{letter-spacing:13.140000px;}
.ls10{letter-spacing:13.146000px;}
.ls2f{letter-spacing:13.158000px;}
.ls3b{letter-spacing:13.164000px;}
.ls35{letter-spacing:13.230000px;}
.ls20{letter-spacing:13.260000px;}
.ls17{letter-spacing:13.278000px;}
.ls47{letter-spacing:13.284000px;}
.ls27{letter-spacing:13.326000px;}
.ls1a{letter-spacing:13.344000px;}
.ls24{letter-spacing:13.476600px;}
.ls36{letter-spacing:13.494000px;}
.ls42{letter-spacing:16.560000px;}
.ls33{letter-spacing:16.566000px;}
.ls32{letter-spacing:16.728000px;}
.ls40{letter-spacing:16.734000px;}
.ls3f{letter-spacing:16.902000px;}
.ls41{letter-spacing:16.908000px;}
.ls3e{letter-spacing:17.064000px;}
.ls3d{letter-spacing:19.416600px;}
.ls31{letter-spacing:19.758600px;}
.ls4a{letter-spacing:23.838000px;}
.ls4d{letter-spacing:23.844000px;}
.ls48{letter-spacing:24.816000px;}
.ls43{letter-spacing:385.094386px;}
.ls2d{letter-spacing:696.557693px;}
.ls2c{letter-spacing:699.053662px;}
.ls4c{letter-spacing:770.376000px;}
.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;}
}
.ws26{word-spacing:-37.151856px;}
.ws2a{word-spacing:-25.247684px;}
.ws141{word-spacing:-19.994233px;}
.wsb1{word-spacing:-18.865830px;}
.wsef{word-spacing:-15.720000px;}
.ws135{word-spacing:-15.390000px;}
.wsfa{word-spacing:-15.384000px;}
.wsa1{word-spacing:-15.378000px;}
.ws13b{word-spacing:-15.318000px;}
.ws8f{word-spacing:-15.276000px;}
.wsa5{word-spacing:-15.270000px;}
.wsd0{word-spacing:-15.264000px;}
.wsaf{word-spacing:-15.258000px;}
.ws86{word-spacing:-15.198000px;}
.ws131{word-spacing:-15.180000px;}
.ws125{word-spacing:-15.162000px;}
.ws9d{word-spacing:-15.126000px;}
.wsab{word-spacing:-15.048000px;}
.ws12f{word-spacing:-15.036000px;}
.ws98{word-spacing:-14.952000px;}
.ws99{word-spacing:-14.946000px;}
.wsb0{word-spacing:-14.922000px;}
.wsa{word-spacing:-13.487831px;}
.ws129{word-spacing:-13.267034px;}
.ws10{word-spacing:-13.247834px;}
.ws6{word-spacing:-12.406335px;}
.ws12b{word-spacing:-12.331046px;}
.wsc4{word-spacing:-12.278247px;}
.wsc6{word-spacing:-12.220647px;}
.wsfd{word-spacing:-12.215847px;}
.wsfe{word-spacing:-11.975850px;}
.ws44{word-spacing:-11.639855px;}
.ws33{word-spacing:-10.799865px;}
.wsb2{word-spacing:-6.552000px;}
.wse1{word-spacing:-5.169535px;}
.ws8c{word-spacing:-4.413563px;}
.ws142{word-spacing:-4.233565px;}
.ws138{word-spacing:-4.197565px;}
.ws140{word-spacing:-4.082366px;}
.ws178{word-spacing:-3.494356px;}
.ws1aa{word-spacing:-3.484756px;}
.ws19e{word-spacing:-3.475157px;}
.ws168{word-spacing:-3.470357px;}
.ws19b{word-spacing:-3.427157px;}
.ws17{word-spacing:-3.402900px;}
.ws20{word-spacing:-3.391500px;}
.ws191{word-spacing:-3.388758px;}
.ws1a5{word-spacing:-3.383958px;}
.ws1a6{word-spacing:-3.379158px;}
.ws193{word-spacing:-3.374358px;}
.ws185{word-spacing:-3.355158px;}
.ws15b{word-spacing:-3.345558px;}
.ws7{word-spacing:-3.342600px;}
.ws157{word-spacing:-3.340758px;}
.ws167{word-spacing:-3.331158px;}
.ws198{word-spacing:-3.326358px;}
.ws12{word-spacing:-3.323100px;}
.ws170{word-spacing:-3.321558px;}
.ws171{word-spacing:-3.316759px;}
.ws172{word-spacing:-3.311959px;}
.ws164{word-spacing:-3.307159px;}
.ws17c{word-spacing:-3.302359px;}
.ws1a4{word-spacing:-3.297559px;}
.ws15d{word-spacing:-3.292759px;}
.ws156{word-spacing:-3.287959px;}
.ws17b{word-spacing:-3.283159px;}
.ws159{word-spacing:-3.278359px;}
.ws18e{word-spacing:-3.273559px;}
.wse{word-spacing:-3.263959px;}
.ws1a3{word-spacing:-3.259159px;}
.ws11{word-spacing:-3.254700px;}
.ws15c{word-spacing:-3.254359px;}
.ws19a{word-spacing:-3.249559px;}
.ws15e{word-spacing:-3.244759px;}
.ws18b{word-spacing:-3.239960px;}
.ws17a{word-spacing:-3.235160px;}
.ws197{word-spacing:-3.230360px;}
.ws1c{word-spacing:-3.226200px;}
.wsd{word-spacing:-3.225560px;}
.ws78{word-spacing:-3.215960px;}
.ws16{word-spacing:-3.214800px;}
.ws192{word-spacing:-3.211160px;}
.ws179{word-spacing:-3.206360px;}
.wsf{word-spacing:-3.201560px;}
.ws1a9{word-spacing:-3.191960px;}
.ws175{word-spacing:-3.187160px;}
.ws1e{word-spacing:-3.180600px;}
.ws190{word-spacing:-3.177560px;}
.ws5{word-spacing:-3.175200px;}
.ws11e{word-spacing:-3.167960px;}
.ws1a0{word-spacing:-3.163160px;}
.ws1a7{word-spacing:-3.153561px;}
.ws1d{word-spacing:-3.152100px;}
.ws166{word-spacing:-3.148761px;}
.ws29{word-spacing:-3.139161px;}
.ws16b{word-spacing:-3.129561px;}
.ws27{word-spacing:-3.124761px;}
.ws14{word-spacing:-3.123600px;}
.ws199{word-spacing:-3.119961px;}
.ws19{word-spacing:-3.112200px;}
.ws186{word-spacing:-3.100761px;}
.ws19c{word-spacing:-3.086361px;}
.ws165{word-spacing:-3.081561px;}
.ws163{word-spacing:-3.067162px;}
.ws19d{word-spacing:-3.062362px;}
.ws153{word-spacing:-3.057562px;}
.ws15a{word-spacing:-3.047962px;}
.ws1a1{word-spacing:-3.043162px;}
.ws16a{word-spacing:-3.033562px;}
.ws151{word-spacing:-3.028762px;}
.wsc{word-spacing:-3.023962px;}
.ws160{word-spacing:-3.019162px;}
.ws169{word-spacing:-3.014362px;}
.ws18c{word-spacing:-3.004762px;}
.ws184{word-spacing:-2.999962px;}
.ws18{word-spacing:-2.986800px;}
.ws187{word-spacing:-2.985563px;}
.ws1f{word-spacing:-2.981100px;}
.ws1a2{word-spacing:-2.980763px;}
.ws181{word-spacing:-2.971163px;}
.ws3{word-spacing:-2.970000px;}
.ws183{word-spacing:-2.966363px;}
.ws180{word-spacing:-2.961563px;}
.ws1b{word-spacing:-2.958300px;}
.ws16f{word-spacing:-2.956763px;}
.ws1ab{word-spacing:-2.951963px;}
.ws19f{word-spacing:-2.937563px;}
.ws18f{word-spacing:-2.932763px;}
.ws161{word-spacing:-2.913564px;}
.ws1a{word-spacing:-2.912700px;}
.ws16c{word-spacing:-2.908764px;}
.ws16d{word-spacing:-2.903964px;}
.ws173{word-spacing:-2.894364px;}
.ws195{word-spacing:-2.889564px;}
.ws158{word-spacing:-2.884764px;}
.ws177{word-spacing:-2.879964px;}
.ws15f{word-spacing:-2.875164px;}
.ws1{word-spacing:-2.872800px;}
.ws174{word-spacing:-2.870364px;}
.ws1a8{word-spacing:-2.860764px;}
.ws194{word-spacing:-2.855964px;}
.ws18d{word-spacing:-2.841564px;}
.ws15{word-spacing:-2.838600px;}
.ws188{word-spacing:-2.831965px;}
.ws8{word-spacing:-2.827165px;}
.ws154{word-spacing:-2.812765px;}
.ws176{word-spacing:-2.807965px;}
.ws16e{word-spacing:-2.783965px;}
.ws17f{word-spacing:-2.779165px;}
.ws13{word-spacing:-2.770200px;}
.wsb{word-spacing:-2.769565px;}
.ws2{word-spacing:-2.764800px;}
.ws189{word-spacing:-2.764765px;}
.ws150{word-spacing:-2.755166px;}
.ws155{word-spacing:-2.750366px;}
.ws196{word-spacing:-2.745566px;}
.ws9{word-spacing:-2.697566px;}
.ws18a{word-spacing:-2.692766px;}
.ws152{word-spacing:-2.683166px;}
.ws17e{word-spacing:-2.654367px;}
.ws0{word-spacing:-2.649567px;}
.ws182{word-spacing:-2.635167px;}
.ws4{word-spacing:-2.235600px;}
.ws105{word-spacing:-1.716000px;}
.ws43{word-spacing:-1.526381px;}
.ws40{word-spacing:-1.511981px;}
.ws3f{word-spacing:-1.473582px;}
.ws42{word-spacing:-1.411182px;}
.ws3e{word-spacing:-1.348783px;}
.ws41{word-spacing:-1.132786px;}
.wsf0{word-spacing:-1.116000px;}
.wsf2{word-spacing:-1.074000px;}
.ws48{word-spacing:-1.055987px;}
.ws6e{word-spacing:-0.966000px;}
.wsed{word-spacing:-0.960000px;}
.ws133{word-spacing:-0.930000px;}
.ws4b{word-spacing:-0.916789px;}
.wsee{word-spacing:-0.912000px;}
.ws45{word-spacing:-0.892789px;}
.wsec{word-spacing:-0.888000px;}
.ws39{word-spacing:-0.878389px;}
.ws137{word-spacing:-0.876000px;}
.ws7e{word-spacing:-0.859189px;}
.ws4d{word-spacing:-0.815990px;}
.ws2e{word-spacing:-0.796790px;}
.ws37{word-spacing:-0.791990px;}
.ws7d{word-spacing:-0.782390px;}
.ws36{word-spacing:-0.777590px;}
.ws7b{word-spacing:-0.767990px;}
.ws32{word-spacing:-0.758391px;}
.ws136{word-spacing:-0.756000px;}
.wsd2{word-spacing:-0.750000px;}
.ws3b{word-spacing:-0.743991px;}
.ws4f{word-spacing:-0.739191px;}
.ws12d{word-spacing:-0.734391px;}
.ws5a{word-spacing:-0.732000px;}
.ws79{word-spacing:-0.729591px;}
.ws47{word-spacing:-0.724791px;}
.wsc8{word-spacing:-0.715191px;}
.wsbc{word-spacing:-0.702000px;}
.ws3d{word-spacing:-0.691191px;}
.ws49{word-spacing:-0.676792px;}
.ws4c{word-spacing:-0.671992px;}
.wsce{word-spacing:-0.667192px;}
.ws35{word-spacing:-0.662392px;}
.ws7a{word-spacing:-0.657592px;}
.ws2d{word-spacing:-0.652792px;}
.ws2f{word-spacing:-0.647992px;}
.wsca{word-spacing:-0.643192px;}
.ws3a{word-spacing:-0.638392px;}
.ws46{word-spacing:-0.633592px;}
.wsd5{word-spacing:-0.630000px;}
.wsd1{word-spacing:-0.624000px;}
.ws2b{word-spacing:-0.623992px;}
.wsd3{word-spacing:-0.618000px;}
.ws4e{word-spacing:-0.609592px;}
.ws134{word-spacing:-0.576000px;}
.ws34{word-spacing:-0.571193px;}
.ws11d{word-spacing:-0.561593px;}
.ws30{word-spacing:-0.547193px;}
.wscb{word-spacing:-0.542393px;}
.ws13f{word-spacing:-0.534000px;}
.ws38{word-spacing:-0.532793px;}
.ws3c{word-spacing:-0.523193px;}
.ws9e{word-spacing:-0.522000px;}
.ws31{word-spacing:-0.518394px;}
.ws76{word-spacing:-0.516000px;}
.wsdc{word-spacing:-0.513594px;}
.ws67{word-spacing:-0.510000px;}
.wsdd{word-spacing:-0.508794px;}
.wsc0{word-spacing:-0.504000px;}
.ws127{word-spacing:-0.498000px;}
.ws130{word-spacing:-0.492000px;}
.wsf1{word-spacing:-0.480000px;}
.ws4a{word-spacing:-0.470394px;}
.ws59{word-spacing:-0.468000px;}
.ws123{word-spacing:-0.462000px;}
.ws7c{word-spacing:-0.460794px;}
.wsc3{word-spacing:-0.455994px;}
.wsa7{word-spacing:-0.444000px;}
.wse6{word-spacing:-0.441594px;}
.wsd8{word-spacing:-0.436795px;}
.ws22{word-spacing:-0.432000px;}
.wsff{word-spacing:-0.427195px;}
.wscc{word-spacing:-0.426962px;}
.ws96{word-spacing:-0.426000px;}
.wsf4{word-spacing:-0.420000px;}
.wsd9{word-spacing:-0.417595px;}
.ws84{word-spacing:-0.414000px;}
.wsc1{word-spacing:-0.408000px;}
.ws57{word-spacing:-0.402000px;}
.wscf{word-spacing:-0.396000px;}
.ws5f{word-spacing:-0.390000px;}
.ws6a{word-spacing:-0.384000px;}
.ws51{word-spacing:-0.378000px;}
.ws54{word-spacing:-0.366000px;}
.wse7{word-spacing:-0.364795px;}
.ws58{word-spacing:-0.360000px;}
.ws9c{word-spacing:-0.354000px;}
.ws70{word-spacing:-0.348000px;}
.ws24{word-spacing:-0.342000px;}
.wsc9{word-spacing:-0.340796px;}
.ws95{word-spacing:-0.336000px;}
.ws115{word-spacing:-0.335996px;}
.ws90{word-spacing:-0.330000px;}
.ws6d{word-spacing:-0.324000px;}
.ws12c{word-spacing:-0.321596px;}
.ws5e{word-spacing:-0.318000px;}
.ws80{word-spacing:-0.312000px;}
.ws62{word-spacing:-0.306000px;}
.wsc7{word-spacing:-0.302396px;}
.ws93{word-spacing:-0.300000px;}
.ws6f{word-spacing:-0.294000px;}
.ws2c{word-spacing:-0.292796px;}
.ws61{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.282000px;}
.wse3{word-spacing:-0.278397px;}
.ws21{word-spacing:-0.276000px;}
.ws7f{word-spacing:-0.270000px;}
.ws6c{word-spacing:-0.264000px;}
.wsa0{word-spacing:-0.258000px;}
.wse9{word-spacing:-0.252000px;}
.wsc5{word-spacing:-0.249597px;}
.ws55{word-spacing:-0.246000px;}
.ws52{word-spacing:-0.240000px;}
.ws64{word-spacing:-0.234000px;}
.ws53{word-spacing:-0.228000px;}
.ws5b{word-spacing:-0.222000px;}
.ws65{word-spacing:-0.210000px;}
.ws13d{word-spacing:-0.206397px;}
.ws25{word-spacing:-0.204000px;}
.wsd7{word-spacing:-0.201597px;}
.ws85{word-spacing:-0.198000px;}
.wsda{word-spacing:-0.196798px;}
.ws5c{word-spacing:-0.192000px;}
.ws6b{word-spacing:-0.186000px;}
.wsd4{word-spacing:-0.180000px;}
.ws77{word-spacing:-0.174000px;}
.ws72{word-spacing:-0.168000px;}
.wsfc{word-spacing:-0.162000px;}
.ws66{word-spacing:-0.156000px;}
.ws9f{word-spacing:-0.150000px;}
.wsbe{word-spacing:-0.144000px;}
.ws8e{word-spacing:-0.138000px;}
.ws11b{word-spacing:-0.134398px;}
.ws83{word-spacing:-0.132000px;}
.ws116{word-spacing:-0.124798px;}
.ws92{word-spacing:-0.108000px;}
.ws11c{word-spacing:-0.105599px;}
.wsb8{word-spacing:-0.102000px;}
.wsae{word-spacing:-0.096000px;}
.ws128{word-spacing:-0.091199px;}
.wsb7{word-spacing:-0.090000px;}
.wsf8{word-spacing:-0.084000px;}
.ws5d{word-spacing:-0.078000px;}
.wsbb{word-spacing:-0.072000px;}
.wsba{word-spacing:-0.066000px;}
.ws87{word-spacing:-0.060000px;}
.wsfb{word-spacing:-0.054000px;}
.wsa6{word-spacing:-0.048000px;}
.ws73{word-spacing:-0.042000px;}
.ws11a{word-spacing:-0.038400px;}
.ws56{word-spacing:-0.036000px;}
.wsbf{word-spacing:-0.030000px;}
.ws94{word-spacing:-0.024000px;}
.wsb3{word-spacing:-0.018000px;}
.ws139{word-spacing:-0.006000px;}
.ws10f{word-spacing:-0.004800px;}
.ws50{word-spacing:0.000000px;}
.ws121{word-spacing:0.004800px;}
.ws60{word-spacing:0.012000px;}
.wsa9{word-spacing:0.018000px;}
.wsf3{word-spacing:0.024000px;}
.ws12a{word-spacing:0.028800px;}
.ws13a{word-spacing:0.030000px;}
.wsc2{word-spacing:0.033600px;}
.ws124{word-spacing:0.042000px;}
.ws12e{word-spacing:0.048000px;}
.ws9b{word-spacing:0.054000px;}
.ws68{word-spacing:0.060000px;}
.wsb6{word-spacing:0.064799px;}
.ws88{word-spacing:0.072000px;}
.wsb9{word-spacing:0.078000px;}
.ws63{word-spacing:0.084000px;}
.ws14a{word-spacing:0.090000px;}
.wsb4{word-spacing:0.096000px;}
.ws107{word-spacing:0.102000px;}
.wsde{word-spacing:0.105599px;}
.wsb5{word-spacing:0.108000px;}
.ws101{word-spacing:0.114000px;}
.ws82{word-spacing:0.120000px;}
.ws120{word-spacing:0.124798px;}
.wsbd{word-spacing:0.132000px;}
.ws69{word-spacing:0.138000px;}
.wse0{word-spacing:0.139198px;}
.ws13c{word-spacing:0.168000px;}
.wsd6{word-spacing:0.174000px;}
.ws74{word-spacing:0.180000px;}
.ws8b{word-spacing:0.192000px;}
.wsad{word-spacing:0.198000px;}
.ws10d{word-spacing:0.204000px;}
.ws89{word-spacing:0.228000px;}
.ws103{word-spacing:0.234000px;}
.ws100{word-spacing:0.240000px;}
.wse8{word-spacing:0.249597px;}
.ws111{word-spacing:0.254397px;}
.wsaa{word-spacing:0.273598px;}
.ws13e{word-spacing:0.283196px;}
.ws81{word-spacing:0.294000px;}
.ws132{word-spacing:0.300000px;}
.ws122{word-spacing:0.306000px;}
.ws112{word-spacing:0.307196px;}
.ws126{word-spacing:0.309597px;}
.wsac{word-spacing:0.316797px;}
.wsdb{word-spacing:0.335996px;}
.wsa2{word-spacing:0.338397px;}
.ws14e{word-spacing:0.342000px;}
.ws10a{word-spacing:0.348000px;}
.ws8a{word-spacing:0.408000px;}
.ws8d{word-spacing:0.424796px;}
.ws10e{word-spacing:0.432000px;}
.ws102{word-spacing:0.444000px;}
.wsa3{word-spacing:0.450000px;}
.wse2{word-spacing:0.455994px;}
.wsf9{word-spacing:0.462000px;}
.ws91{word-spacing:0.468000px;}
.ws9a{word-spacing:0.475196px;}
.ws144{word-spacing:0.480000px;}
.ws75{word-spacing:0.528000px;}
.ws110{word-spacing:0.561593px;}
.ws71{word-spacing:0.564000px;}
.ws10c{word-spacing:0.642000px;}
.ws14c{word-spacing:0.648000px;}
.ws145{word-spacing:0.666000px;}
.ws149{word-spacing:0.708000px;}
.ws97{word-spacing:0.720000px;}
.ws146{word-spacing:0.762000px;}
.ws14b{word-spacing:0.846000px;}
.ws148{word-spacing:0.900000px;}
.wsa8{word-spacing:0.942000px;}
.ws147{word-spacing:0.978000px;}
.ws14d{word-spacing:1.026000px;}
.ws143{word-spacing:1.158000px;}
.wscd{word-spacing:2.316438px;}
.ws104{word-spacing:8.280000px;}
.ws108{word-spacing:8.556000px;}
.wsea{word-spacing:8.616000px;}
.wsf6{word-spacing:8.622000px;}
.wsf5{word-spacing:15.558000px;}
.ws28{word-spacing:34.588368px;}
.wsa4{word-spacing:35.076000px;}
.ws162{word-spacing:46.842614px;}
.ws17d{word-spacing:46.847414px;}
.ws14f{word-spacing:46.909814px;}
.ws113{word-spacing:333.605430px;}
.ws117{word-spacing:335.597405px;}
.ws118{word-spacing:338.798965px;}
.ws119{word-spacing:356.678741px;}
.ws114{word-spacing:368.774590px;}
.wse5{word-spacing:486.401920px;}
.wsdf{word-spacing:489.430682px;}
.ws109{word-spacing:617.304000px;}
.ws10b{word-spacing:632.274000px;}
.wsf7{word-spacing:639.756000px;}
.ws106{word-spacing:645.198000px;}
.wse4{word-spacing:661.604530px;}
.wseb{word-spacing:776.496000px;}
.ws11f{word-spacing:791.532000px;}
._5{margin-left:-8.421087px;}
._9{margin-left:-4.826414px;}
._4{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._23{width:1.547400px;}
._1{width:3.888000px;}
._7{width:9.441482px;}
._2{width:11.342258px;}
._8{width:12.426000px;}
._3{width:14.130300px;}
._22{width:15.753403px;}
._c{width:16.919859px;}
._f{width:20.663742px;}
._24{width:21.714929px;}
._16{width:24.078000px;}
._e{width:26.385270px;}
._a{width:29.910000px;}
._b{width:47.994000px;}
._d{width:49.344000px;}
._10{width:307.047362px;}
._13{width:312.994488px;}
._1c{width:344.976488px;}
._1e{width:349.570030px;}
._20{width:352.291596px;}
._1f{width:355.349158px;}
._1b{width:357.173135px;}
._1d{width:367.454607px;}
._14{width:418.631567px;}
._18{width:472.837289px;}
._17{width:496.856189px;}
._1a{width:503.417707px;}
._15{width:582.799115px;}
._19{width:602.891664px;}
._12{width:623.718603px;}
._11{width:647.161510px;}
._21{width:1444.393145px;}
._6{width:1470.188022px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:22.395600px;}
.fsc{font-size:31.995000px;}
.fsd{font-size:33.598800px;}
.fsf{font-size:35.998800px;}
.fs9{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fsb{font-size:47.994000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y80{bottom:4.537500px;}
.y29{bottom:8.513967px;}
.y2a{bottom:54.000000px;}
.y125{bottom:119.651090px;}
.y155{bottom:124.498482px;}
.y27{bottom:124.498500px;}
.y103{bottom:124.498650px;}
.y222{bottom:124.500000px;}
.y4b{bottom:124.500157px;}
.y216{bottom:124.501500px;}
.y7e{bottom:125.098500px;}
.y24e{bottom:131.983500px;}
.y285{bottom:132.837225px;}
.y237{bottom:133.684500px;}
.y13f{bottom:135.724500px;}
.y176{bottom:140.910150px;}
.y4a{bottom:140.997550px;}
.y101{bottom:141.505500px;}
.y1f0{bottom:142.444500px;}
.y124{bottom:142.866000px;}
.y175{bottom:142.866356px;}
.y100{bottom:143.971500px;}
.y102{bottom:143.971650px;}
.y26{bottom:143.973000px;}
.y215{bottom:143.974500px;}
.y7d{bottom:144.573000px;}
.y154{bottom:144.992100px;}
.y153{bottom:147.033000px;}
.y284{bottom:147.123047px;}
.y122{bottom:148.223550px;}
.y2c1{bottom:149.588419px;}
.y123{bottom:151.114500px;}
.y236{bottom:153.159000px;}
.y13e{bottom:155.283000px;}
.y11f{bottom:157.153378px;}
.y121{bottom:157.153500px;}
.y49{bottom:157.494944px;}
.y24d{bottom:159.027000px;}
.y1ef{bottom:161.917500px;}
.y120{bottom:162.424500px;}
.yff{bottom:163.530000px;}
.y25{bottom:163.531500px;}
.y214{bottom:163.533000px;}
.y151{bottom:163.786500px;}
.y2c0{bottom:163.875440px;}
.y7c{bottom:164.131500px;}
.y152{bottom:165.741000px;}
.y150{bottom:165.742604px;}
.y1b7{bottom:166.338000px;}
.y283{bottom:166.597603px;}
.yfe{bottom:170.163000px;}
.y11d{bottom:171.354000px;}
.y235{bottom:172.633500px;}
.y13d{bottom:174.757500px;}
.y11e{bottom:176.712000px;}
.y2bf{bottom:178.077263px;}
.y199{bottom:180.538500px;}
.y282{bottom:180.883425px;}
.y1ee{bottom:181.392000px;}
.y19a{bottom:183.004500px;}
.y24{bottom:183.006000px;}
.y48{bottom:183.006625px;}
.y213{bottom:183.007500px;}
.y7b{bottom:183.606000px;}
.y14f{bottom:184.535569px;}
.y24c{bottom:185.983500px;}
.y234{bottom:192.192000px;}
.y13c{bottom:194.230500px;}
.y281{bottom:195.085247px;}
.y2be{bottom:197.550619px;}
.y47{bottom:199.505219px;}
.y21e{bottom:200.013000px;}
.y1ed{bottom:200.950500px;}
.y23{bottom:202.479000px;}
.y221{bottom:202.480500px;}
.y212{bottom:202.482000px;}
.y7a{bottom:203.080500px;}
.y14e{bottom:203.244535px;}
.y1dc{bottom:208.517925px;}
.y99{bottom:209.196000px;}
.y139{bottom:211.237500px;}
.y1b6{bottom:211.494000px;}
.y233{bottom:211.666500px;}
.y2bd{bottom:211.837641px;}
.y24b{bottom:213.025500px;}
.y13a{bottom:213.789000px;}
.y138{bottom:213.792000px;}
.y280{bottom:214.643803px;}
.y46{bottom:216.002613px;}
.y198{bottom:217.362000px;}
.y13b{bottom:220.422000px;}
.y1ec{bottom:220.425000px;}
.y22{bottom:222.037500px;}
.yfc{bottom:222.039000px;}
.y211{bottom:222.040500px;}
.y79{bottom:222.639000px;}
.yfd{bottom:228.670500px;}
.y27f{bottom:228.845625px;}
.y232{bottom:231.139500px;}
.y2bc{bottom:231.310997px;}
.y45{bottom:232.500007px;}
.y137{bottom:233.266500px;}
.y1db{bottom:235.474500px;}
.y14c{bottom:238.791000px;}
.y1eb{bottom:239.898000px;}
.y24a{bottom:239.983500px;}
.y14d{bottom:240.747000px;}
.y14b{bottom:240.748112px;}
.y98{bottom:241.512000px;}
.y220{bottom:241.513500px;}
.y210{bottom:241.515000px;}
.y78{bottom:242.112000px;}
.y2bb{bottom:245.598019px;}
.y197{bottom:245.764500px;}
.y21{bottom:247.464000px;}
.y196{bottom:248.230500px;}
.y27e{bottom:248.405381px;}
.y44{bottom:248.997400px;}
.y231{bottom:250.698000px;}
.y136{bottom:252.741000px;}
.y1ea{bottom:259.458000px;}
.y14a{bottom:259.541077px;}
.y97{bottom:260.986500px;}
.y20f{bottom:260.988000px;}
.y77{bottom:261.586500px;}
.y27d{bottom:262.606003px;}
.y2ba{bottom:265.071375px;}
.y43{bottom:265.494794px;}
.y249{bottom:267.025500px;}
.y230{bottom:270.172500px;}
.y135{bottom:272.299500px;}
.y195{bottom:276.802500px;}
.y193{bottom:276.804000px;}
.y1da{bottom:277.228500px;}
.y1e9{bottom:278.931000px;}
.y2b9{bottom:279.358397px;}
.y96{bottom:280.459500px;}
.yfa{bottom:280.461000px;}
.y20e{bottom:280.462500px;}
.y76{bottom:281.145000px;}
.y149{bottom:281.736000px;}
.y1b5{bottom:281.907000px;}
.y27c{bottom:282.165759px;}
.y194{bottom:283.435500px;}
.yfb{bottom:287.178000px;}
.y22f{bottom:289.647000px;}
.y42{bottom:291.006475px;}
.y134{bottom:291.772500px;}
.y248{bottom:293.983500px;}
.y1d8{bottom:294.235500px;}
.y27b{bottom:296.366381px;}
.y1d9{bottom:296.787000px;}
.y1d7{bottom:296.788500px;}
.yc8{bottom:297.468000px;}
.y1e8{bottom:298.405500px;}
.y2b8{bottom:298.831753px;}
.y95{bottom:300.018000px;}
.yc7{bottom:300.019500px;}
.y93{bottom:300.021000px;}
.y75{bottom:300.619500px;}
.y94{bottom:306.652500px;}
.y41{bottom:307.503869px;}
.y22e{bottom:309.205500px;}
.y27a{bottom:310.653402px;}
.y133{bottom:311.247000px;}
.y2b7{bottom:313.118775px;}
.y1d6{bottom:316.263000px;}
.yc4{bottom:317.026500px;}
.y148{bottom:317.366569px;}
.y1e7{bottom:317.964000px;}
.yc5{bottom:319.492500px;}
.y92{bottom:319.494000px;}
.y20d{bottom:319.495500px;}
.y74{bottom:320.094000px;}
.y247{bottom:321.025500px;}
.y40{bottom:324.001263px;}
.yc6{bottom:326.125500px;}
.y1b4{bottom:327.063000px;}
.y2b6{bottom:327.320597px;}
.y22d{bottom:328.678500px;}
.y279{bottom:330.126759px;}
.y132{bottom:330.721500px;}
.y20{bottom:332.931150px;}
.y1e6{bottom:337.438500px;}
.yf9{bottom:338.967000px;}
.y91{bottom:338.968500px;}
.y21d{bottom:338.970000px;}
.y73{bottom:339.567000px;}
.y192{bottom:339.648000px;}
.y3f{bottom:340.499857px;}
.y147{bottom:340.582679px;}
.y2b4{bottom:341.606418px;}
.y2b5{bottom:341.947214px;}
.y278{bottom:344.413780px;}
.y246{bottom:347.982000px;}
.y22c{bottom:348.153000px;}
.y131{bottom:350.280000px;}
.y145{bottom:352.912500px;}
.y1f{bottom:353.935650px;}
.y144{bottom:354.868500px;}
.y1b3{bottom:355.551000px;}
.y1e5{bottom:356.911500px;}
.y3e{bottom:356.997250px;}
.yf8{bottom:358.525500px;}
.y90{bottom:358.527000px;}
.y21c{bottom:358.528500px;}
.y72{bottom:359.125500px;}
.y146{bottom:360.226500px;}
.y2b3{bottom:361.080975px;}
.y277{bottom:363.888337px;}
.y22b{bottom:367.627500px;}
.y191{bottom:368.050500px;}
.y1d5{bottom:368.052000px;}
.y130{bottom:369.753000px;}
.y190{bottom:370.516500px;}
.y3d{bottom:373.494644px;}
.y1e{bottom:374.940150px;}
.y1b2{bottom:375.024000px;}
.y245{bottom:375.025500px;}
.y2b2{bottom:375.366796px;}
.y1e4{bottom:376.386000px;}
.y8f{bottom:378.001500px;}
.y276{bottom:378.088960px;}
.y71{bottom:378.600000px;}
.yf7{bottom:384.038925px;}
.y22a{bottom:387.186000px;}
.y12f{bottom:389.227500px;}
.y2b1{bottom:389.568619px;}
.y3c{bottom:389.992038px;}
.y1b1{bottom:394.582500px;}
.y1af{bottom:394.584000px;}
.y1e3{bottom:395.944500px;}
.y1d{bottom:395.944650px;}
.y8e{bottom:397.474500px;}
.y20c{bottom:397.476000px;}
.y275{bottom:397.648715px;}
.y70{bottom:398.074500px;}
.y18f{bottom:399.004500px;}
.y18d{bottom:399.006000px;}
.y1b0{bottom:401.215500px;}
.y244{bottom:401.982000px;}
.y1d4{bottom:403.512000px;}
.y18e{bottom:405.723000px;}
.y229{bottom:406.660500px;}
.y12e{bottom:408.786000px;}
.y2b0{bottom:409.043176px;}
.yf6{bottom:410.995500px;}
.y274{bottom:411.849337px;}
.y1ae{bottom:414.058500px;}
.y1e2{bottom:415.419000px;}
.y3b{bottom:415.503719px;}
.y1c{bottom:416.950575px;}
.yc3{bottom:417.033000px;}
.yc1{bottom:417.034500px;}
.y6f{bottom:417.633000px;}
.y21f{bottom:422.985000px;}
.y8d{bottom:422.987325px;}
.y2af{bottom:423.328997px;}
.yc2{bottom:423.666000px;}
.y228{bottom:426.133500px;}
.y12d{bottom:428.260500px;}
.y243{bottom:429.024000px;}
.y273{bottom:431.409093px;}
.y1ad{bottom:433.533000px;}
.y1e1{bottom:434.892000px;}
.yc0{bottom:436.509000px;}
.y6e{bottom:437.106000px;}
.y2ae{bottom:437.616018px;}
.y1b{bottom:437.869575px;}
.y174{bottom:440.421000px;}
.y3a{bottom:441.015400px;}
.y272{bottom:445.609715px;}
.y227{bottom:445.692000px;}
.y12c{bottom:447.735000px;}
.y8c{bottom:450.028500px;}
.y1ac{bottom:453.006000px;}
.y1df{bottom:454.450500px;}
.y242{bottom:454.536000px;}
.ybf{bottom:455.982000px;}
.yf5{bottom:456.067500px;}
.y6d{bottom:456.580500px;}
.y2ad{bottom:457.089375px;}
.y1a{bottom:458.874075px;}
.y173{bottom:459.895500px;}
.y1e0{bottom:461.083500px;}
.y18c{bottom:461.934000px;}
.y1d3{bottom:464.316000px;}
.y271{bottom:465.084272px;}
.y226{bottom:465.166500px;}
.y39{bottom:466.527081px;}
.y12b{bottom:467.293500px;}
.y2ac{bottom:471.291197px;}
.y1ab{bottom:472.564500px;}
.y1de{bottom:473.925000px;}
.ybd{bottom:475.540500px;}
.y21b{bottom:475.542000px;}
.y6c{bottom:476.139000px;}
.y172{bottom:479.368500px;}
.y270{bottom:479.370093px;}
.y19{bottom:479.878575px;}
.ybe{bottom:482.173500px;}
.y225{bottom:484.641000px;}
.y12a{bottom:486.766500px;}
.y18b{bottom:490.336500px;}
.y2ab{bottom:490.849753px;}
.y38{bottom:492.038762px;}
.yf3{bottom:492.547500px;}
.y18a{bottom:492.802500px;}
.y1dd{bottom:493.398000px;}
.y20b{bottom:495.015000px;}
.yf4{bottom:495.099000px;}
.yf2{bottom:495.100500px;}
.y6b{bottom:495.613500px;}
.y26f{bottom:498.844650px;}
.y171{bottom:498.927000px;}
.y1d2{bottom:499.776000px;}
.y18{bottom:500.883075px;}
.ybc{bottom:500.967000px;}
.y224{bottom:504.199500px;}
.y1ba{bottom:504.539569px;}
.y2aa{bottom:505.051575px;}
.y129{bottom:506.241000px;}
.y37{bottom:508.536156px;}
.y26e{bottom:513.131671px;}
.y241{bottom:513.213000px;}
.y20a{bottom:514.489500px;}
.yf1{bottom:514.573500px;}
.y6a{bottom:515.088000px;}
.y170{bottom:518.401500px;}
.y2a9{bottom:519.338597px;}
.y189{bottom:521.290500px;}
.y187{bottom:521.292000px;}
.y17{bottom:521.887575px;}
.y223{bottom:523.672500px;}
.y1f4{bottom:525.458569px;}
.y128{bottom:525.715500px;}
.y1b9{bottom:527.840878px;}
.y188{bottom:528.009000px;}
.y1d1{bottom:528.264000px;}
.y1cf{bottom:528.265500px;}
.y26d{bottom:532.605028px;}
.y240{bottom:532.687500px;}
.y209{bottom:533.962500px;}
.y36{bottom:533.962638px;}
.y21a{bottom:533.964000px;}
.yf0{bottom:534.048000px;}
.y69{bottom:534.646500px;}
.y1d0{bottom:534.982500px;}
.y16f{bottom:537.876000px;}
.y2a8{bottom:538.811953px;}
.y1b8{bottom:542.041500px;}
.y16{bottom:542.893500px;}
.ybb{bottom:544.762500px;}
.y127{bottom:545.274000px;}
.y26c{bottom:546.892049px;}
.y115{bottom:547.569000px;}
.y1ce{bottom:547.824000px;}
.y1f3{bottom:548.674679px;}
.y186{bottom:549.780000px;}
.y116{bottom:550.119000px;}
.y114{bottom:550.120500px;}
.y35{bottom:550.545231px;}
.y207{bottom:550.969500px;}
.y23f{bottom:552.160500px;}
.y2a7{bottom:553.098975px;}
.y208{bottom:553.521000px;}
.yef{bottom:553.522500px;}
.y68{bottom:554.119500px;}
.y23a{bottom:555.732768px;}
.y117{bottom:556.752000px;}
.y16e{bottom:557.349000px;}
.yb9{bottom:561.769500px;}
.y1f1{bottom:562.960500px;}
.y15{bottom:563.898000px;}
.yba{bottom:564.321000px;}
.yb8{bottom:564.322500px;}
.y126{bottom:564.747000px;}
.y26b{bottom:566.365406px;}
.y185{bottom:566.787000px;}
.y34{bottom:567.042625px;}
.y1cd{bottom:567.298500px;}
.y1f2{bottom:568.318500px;}
.y184{bottom:569.338500px;}
.y113{bottom:569.593500px;}
.y111{bottom:569.595000px;}
.y2a6{bottom:572.572331px;}
.y219{bottom:572.995500px;}
.y206{bottom:572.997000px;}
.yee{bottom:573.081000px;}
.y67{bottom:573.594000px;}
.y112{bottom:576.226500px;}
.y16d{bottom:576.909000px;}
.y23e{bottom:577.672500px;}
.y239{bottom:578.948878px;}
.y26a{bottom:580.652427px;}
.yb5{bottom:581.329500px;}
.y33{bottom:583.541219px;}
.yb6{bottom:583.795500px;}
.yb4{bottom:583.797000px;}
.y14{bottom:584.902500px;}
.y110{bottom:586.602000px;}
.y1cc{bottom:586.773000px;}
.y2a4{bottom:586.859353px;}
.y2a5{bottom:587.198949px;}
.y183{bottom:588.813000px;}
.y10f{bottom:589.068000px;}
.yec{bottom:590.088000px;}
.yb7{bottom:590.428500px;}
.y205{bottom:592.470000px;}
.yed{bottom:592.554000px;}
.yeb{bottom:592.555500px;}
.y66{bottom:593.068500px;}
.y238{bottom:593.149500px;}
.y16c{bottom:596.382000px;}
.y32{bottom:600.038612px;}
.y269{bottom:600.125784px;}
.y2a3{bottom:601.061175px;}
.yb3{bottom:603.271500px;}
.y181{bottom:605.820000px;}
.y143{bottom:605.906446px;}
.y13{bottom:605.907000px;}
.y1cb{bottom:606.331500px;}
.y182{bottom:608.286000px;}
.y180{bottom:608.287500px;}
.y10e{bottom:608.626500px;}
.yea{bottom:609.562500px;}
.ye9{bottom:612.028500px;}
.y65{bottom:612.627000px;}
.y268{bottom:614.412805px;}
.y16b{bottom:615.856500px;}
.y31{bottom:616.536006px;}
.y2a2{bottom:620.619731px;}
.yb2{bottom:622.830000px;}
.y1ca{bottom:625.804500px;}
.y12{bottom:626.911500px;}
.y17f{bottom:627.846000px;}
.y10d{bottom:628.101000px;}
.y267{bottom:628.614628px;}
.ye7{bottom:629.035500px;}
.y142{bottom:629.121356px;}
.y204{bottom:631.503000px;}
.ye8{bottom:631.587000px;}
.ye6{bottom:631.588500px;}
.y64{bottom:632.101500px;}
.y2a1{bottom:634.821553px;}
.y30{bottom:641.026500px;}
.yb0{bottom:642.303000px;}
.y141{bottom:643.408378px;}
.y10b{bottom:645.108000px;}
.y23d{bottom:645.364500px;}
.y17e{bottom:647.320500px;}
.y10c{bottom:647.574000px;}
.y10a{bottom:647.577000px;}
.y11{bottom:647.916000px;}
.y266{bottom:648.087984px;}
.ye4{bottom:648.595500px;}
.yb1{bottom:648.936000px;}
.y16a{bottom:650.212500px;}
.y218{bottom:650.976000px;}
.y203{bottom:650.977500px;}
.ye5{bottom:651.061500px;}
.ye3{bottom:651.063000px;}
.y1c9{bottom:651.316500px;}
.y63{bottom:651.574500px;}
.y2a0{bottom:654.294910px;}
.y140{bottom:657.609000px;}
.yaf{bottom:661.776000px;}
.y265{bottom:662.375006px;}
.y23c{bottom:664.923000px;}
.y17d{bottom:666.795000px;}
.y109{bottom:667.135500px;}
.ye2{bottom:668.070000px;}
.y29f{bottom:668.581931px;}
.y10{bottom:668.920500px;}
.ye1{bottom:670.536000px;}
.y62{bottom:671.133000px;}
.y217{bottom:676.488000px;}
.y2ce{bottom:679.041001px;}
.y264{bottom:681.848362px;}
.y17c{bottom:686.268000px;}
.y108{bottom:686.608500px;}
.yae{bottom:687.288000px;}
.ye0{bottom:687.543000px;}
.y169{bottom:687.714000px;}
.y29e{bottom:688.055288px;}
.yf{bottom:689.925000px;}
.y202{bottom:690.009000px;}
.y200{bottom:690.012000px;}
.ydf{bottom:690.094500px;}
.y23b{bottom:690.435000px;}
.y61{bottom:690.607500px;}
.y1c8{bottom:693.072000px;}
.y2cd{bottom:693.328022px;}
.y201{bottom:696.642000px;}
.y263{bottom:701.406918px;}
.y17b{bottom:705.826500px;}
.y179{bottom:705.828000px;}
.y107{bottom:706.083000px;}
.y29d{bottom:707.615043px;}
.y1ff{bottom:709.485000px;}
.yde{bottom:709.569000px;}
.y60{bottom:710.082000px;}
.ye{bottom:710.929500px;}
.y17a{bottom:712.459500px;}
.y1c7{bottom:712.546500px;}
.y262{bottom:715.608740px;}
.y168{bottom:716.202000px;}
.y29c{bottom:721.815666px;}
.y178{bottom:725.302500px;}
.y106{bottom:725.557500px;}
.y2cc{bottom:727.088400px;}
.y2f{bottom:728.023500px;}
.y1fe{bottom:728.959500px;}
.ydd{bottom:729.043500px;}
.y5f{bottom:729.640500px;}
.yad{bottom:731.083500px;}
.yab{bottom:731.085000px;}
.yd{bottom:731.934000px;}
.y261{bottom:735.083297px;}
.y167{bottom:735.760500px;}
.yac{bottom:737.802000px;}
.y29b{bottom:741.290222px;}
.y177{bottom:744.775500px;}
.y1c6{bottom:744.777000px;}
.y105{bottom:745.116000px;}
.y2e{bottom:745.285500px;}
.y1fd{bottom:748.518000px;}
.ydc{bottom:748.602000px;}
.y5e{bottom:749.113500px;}
.y8b{bottom:749.115000px;}
.y260{bottom:749.369118px;}
.yaa{bottom:750.643500px;}
.y166{bottom:755.235000px;}
.y29a{bottom:755.577244px;}
.y2d{bottom:762.463500px;}
.y104{bottom:764.589000px;}
.yc{bottom:764.929500px;}
.y1fc{bottom:767.992500px;}
.ydb{bottom:768.075000px;}
.yd9{bottom:768.076500px;}
.y5d{bottom:768.588000px;}
.y25f{bottom:768.843675px;}
.ya9{bottom:770.116500px;}
.ya7{bottom:770.118000px;}
.y165{bottom:772.242000px;}
.yda{bottom:774.708000px;}
.y164{bottom:774.709500px;}
.y299{bottom:775.050600px;}
.ya8{bottom:776.749500px;}
.y2c{bottom:779.727000px;}
.y1c5{bottom:780.322500px;}
.y1aa{bottom:781.684739px;}
.y25e{bottom:783.129496px;}
.y1fb{bottom:787.467000px;}
.yd8{bottom:787.551000px;}
.y5c{bottom:788.062500px;}
.y298{bottom:789.337622px;}
.ya6{bottom:789.592500px;}
.y163{bottom:794.269500px;}
.y2b{bottom:796.989000px;}
.y25d{bottom:802.604053px;}
.y2cb{bottom:803.623443px;}
.yd7{bottom:807.025500px;}
.y5b{bottom:807.621000px;}
.y1a9{bottom:808.726401px;}
.y1c4{bottom:808.810500px;}
.y297{bottom:808.810978px;}
.ya5{bottom:809.067000px;}
.y11c{bottom:810.170391px;}
.y162{bottom:813.742500px;}
.y25c{bottom:816.889874px;}
.y295{bottom:823.098000px;}
.y296{bottom:823.352397px;}
.yb{bottom:825.223462px;}
.y1fa{bottom:826.498500px;}
.yd6{bottom:826.584000px;}
.y1a8{bottom:826.669777px;}
.y5a{bottom:827.095500px;}
.y1c3{bottom:828.369000px;}
.y1c1{bottom:828.370500px;}
.ya4{bottom:828.625500px;}
.y161{bottom:833.217000px;}
.y11b{bottom:833.470500px;}
.y119{bottom:833.471878px;}
.y1c2{bottom:835.002000px;}
.y25b{bottom:836.364431px;}
.y2ca{bottom:837.298622px;}
.y11a{bottom:838.828500px;}
.y294{bottom:842.571356px;}
.y1a7{bottom:844.698351px;}
.y1f9{bottom:845.973000px;}
.yd5{bottom:846.057000px;}
.y59{bottom:846.568500px;}
.y118{bottom:847.672500px;}
.y1c0{bottom:847.843500px;}
.ya3{bottom:848.098500px;}
.y25a{bottom:850.650252px;}
.y2c9{bottom:851.585644px;}
.y160{bottom:852.775500px;}
.y9{bottom:855.242287px;}
.ya{bottom:855.497884px;}
.y293{bottom:856.858378px;}
.y1a6{bottom:862.726926px;}
.y1f8{bottom:865.531500px;}
.y2c7{bottom:865.872665px;}
.y58{bottom:866.127000px;}
.y2c8{bottom:866.212261px;}
.y1bf{bottom:867.318000px;}
.ya2{bottom:867.573000px;}
.y259{bottom:870.124809px;}
.y6{bottom:870.208500px;}
.y8{bottom:870.462897px;}
.y7{bottom:870.548096px;}
.y292{bottom:871.059000px;}
.yd4{bottom:871.569000px;}
.y15f{bottom:872.250000px;}
.y258{bottom:884.411830px;}
.y1f7{bottom:885.006000px;}
.y291{bottom:885.346022px;}
.y57{bottom:885.601500px;}
.ya1{bottom:887.131500px;}
.y1a5{bottom:890.874974px;}
.y15e{bottom:891.723000px;}
.y5{bottom:897.250500px;}
.y2c6{bottom:899.547844px;}
.y1be{bottom:899.548500px;}
.y257{bottom:903.885187px;}
.y1f6{bottom:904.479000px;}
.y290{bottom:904.820578px;}
.y56{bottom:905.076000px;}
.ya0{bottom:906.606000px;}
.y1a4{bottom:909.582740px;}
.y15d{bottom:911.283000px;}
.y2c5{bottom:913.833666px;}
.yd3{bottom:916.639500px;}
.yd1{bottom:916.641000px;}
.y256{bottom:918.087009px;}
.y28f{bottom:919.106400px;}
.y8a{bottom:922.083562px;}
.yd2{bottom:923.272500px;}
.y55{bottom:924.634500px;}
.y9f{bottom:926.079000px;}
.y9d{bottom:926.080500px;}
.y1a3{bottom:928.376905px;}
.y1f5{bottom:929.991000px;}
.y15c{bottom:930.756000px;}
.y9e{bottom:932.797500px;}
.y2c4{bottom:933.308222px;}
.y4{bottom:934.670100px;}
.y1bd{bottom:935.094000px;}
.yd0{bottom:936.114000px;}
.y255{bottom:937.645565px;}
.y89{bottom:938.580956px;}
.y54{bottom:944.107500px;}
.y52{bottom:944.109000px;}
.y1a2{bottom:947.084671px;}
.y2c3{bottom:947.595244px;}
.y15b{bottom:950.230500px;}
.y53{bottom:950.740500px;}
.y28e{bottom:952.866778px;}
.y9c{bottom:954.568500px;}
.ycf{bottom:955.588500px;}
.y254{bottom:957.120122px;}
.y51{bottom:963.582000px;}
.y88{bottom:964.092637px;}
.y1a1{bottom:965.793638px;}
.y28c{bottom:967.068600px;}
.y28d{bottom:967.493395px;}
.y3{bottom:968.430900px;}
.y15a{bottom:969.703500px;}
.y158{bottom:969.705000px;}
.y253{bottom:971.405943px;}
.y9b{bottom:974.127000px;}
.yce{bottom:975.147000px;}
.y159{bottom:976.422000px;}
.y87{bottom:980.590031px;}
.y2c2{bottom:981.355622px;}
.y50{bottom:983.140500px;}
.y1a0{bottom:984.587803px;}
.y252{bottom:985.607765px;}
.y28b{bottom:986.541957px;}
.y157{bottom:989.263500px;}
.y9a{bottom:993.601500px;}
.ycd{bottom:994.621500px;}
.y86{bottom:997.087425px;}
.y28a{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y4f{bottom:1002.615000px;}
.y19f{bottom:1003.295569px;}
.y251{bottom:1005.081122px;}
.y85{bottom:1013.584819px;}
.ycc{bottom:1014.094500px;}
.y289{bottom:1015.116000px;}
.y1bb{bottom:1019.622000px;}
.y1bc{bottom:1022.088000px;}
.y4e{bottom:1022.089500px;}
.y19e{bottom:1022.089734px;}
.y156{bottom:1023.534000px;}
.y250{bottom:1024.640878px;}
.y84{bottom:1030.082212px;}
.ycb{bottom:1033.653000px;}
.y288{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y24f{bottom:1038.841500px;}
.y19b{bottom:1040.796879px;}
.y19d{bottom:1040.797500px;}
.y4d{bottom:1041.562500px;}
.y19c{bottom:1046.154000px;}
.y83{bottom:1046.579606px;}
.y287{bottom:1048.791179px;}
.yc9{bottom:1059.079500px;}
.y4c{bottom:1061.121000px;}
.y82{bottom:1063.077000px;}
.y286{bottom:1063.331397px;}
.yca{bottom:1067.158500px;}
.y28{bottom:1107.042000px;}
.y7f{bottom:1114.101000px;}
.y81{bottom:1118.692500px;}
.h18{height:17.356590px;}
.he{height:18.538650px;}
.h16{height:23.996250px;}
.h12{height:28.476725px;}
.hd{height:29.996550px;}
.h8{height:34.781100px;}
.ha{height:35.554243px;}
.h14{height:35.995500px;}
.h15{height:35.999550px;}
.h1{height:37.199535px;}
.h1c{height:37.247534px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h3{height:41.904000px;}
.h13{height:42.720000px;}
.h17{height:43.385070px;}
.h5{height:44.175000px;}
.h7{height:45.000000px;}
.h11{height:46.500000px;}
.h1a{height:51.827100px;}
.h1b{height:52.163100px;}
.h19{height:52.169100px;}
.hf{height:52.800000px;}
.h10{height:53.999550px;}
.h6{height:55.871534px;}
.h4{height:70.905000px;}
.h2{height:88.020000px;}
.h9{height:99.071616px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:52.044150px;}
.x9{left:54.000000px;}
.xa{left:71.433000px;}
.x8b{left:93.376891px;}
.x8a{left:96.352854px;}
.x89{left:99.074420px;}
.x5e{left:108.000000px;}
.x61{left:124.922700px;}
.x62{left:132.236100px;}
.x63{left:165.657000px;}
.x64{left:172.119000px;}
.x65{left:191.083500px;}
.x69{left:264.642000px;}
.x1{left:300.018000px;}
.x8c{left:307.162500px;}
.x1a{left:314.305500px;}
.xb{left:317.961000px;}
.x42{left:319.492500px;}
.x26{left:325.701000px;}
.x1b{left:326.806500px;}
.x43{left:328.081500px;}
.x27{left:331.059000px;}
.x9c{left:332.247289px;}
.x44{left:347.556000px;}
.x45{left:352.828500px;}
.xa0{left:355.208620px;}
.x9d{left:357.844987px;}
.x28{left:363.714000px;}
.x8f{left:367.710000px;}
.x17{left:369.921000px;}
.x29{left:372.303000px;}
.x90{left:373.408500px;}
.x87{left:376.299000px;}
.x2a{left:379.870500px;}
.x18{left:382.507500px;}
.x7c{left:383.697000px;}
.x2b{left:388.885500px;}
.x59{left:391.947000px;}
.x46{left:396.112500px;}
.x7{left:397.216785px;}
.x47{left:401.301000px;}
.x9e{left:410.994722px;}
.x66{left:415.077000px;}
.x2{left:416.860539px;}
.x67{left:420.435000px;}
.x9f{left:430.894074px;}
.x49{left:432.085500px;}
.x9a{left:433.785000px;}
.x96{left:435.826500px;}
.x4a{left:439.653000px;}
.x9b{left:443.055000px;}
.x97{left:455.980500px;}
.x5a{left:458.446500px;}
.xf{left:460.318500px;}
.x24{left:463.125000px;}
.x7f{left:464.146500px;}
.x68{left:466.270500px;}
.x3d{left:467.631000px;}
.x10{left:468.991500px;}
.x19{left:472.479000px;}
.x6a{left:473.499000px;}
.x3e{left:475.114500px;}
.xc{left:477.411000px;}
.x5b{left:480.813000px;}
.xd{left:483.108000px;}
.x94{left:486.510000px;}
.x79{left:487.530000px;}
.x6b{left:490.677000px;}
.x91{left:492.717000px;}
.x7a{left:494.163000px;}
.x95{left:495.184500px;}
.x6c{left:497.736000px;}
.x8d{left:501.985500px;}
.x3{left:503.005063px;}
.x93{left:509.641500px;}
.x6d{left:513.552000px;}
.x6e{left:520.611000px;}
.x4{left:522.819215px;}
.x55{left:524.523000px;}
.x80{left:527.244000px;}
.x6f{left:536.428500px;}
.x4f{left:542.635500px;}
.x56{left:544.677000px;}
.x50{left:547.908000px;}
.x81{left:550.290000px;}
.x3a{left:551.820000px;}
.x3b{left:560.494500px;}
.xe{left:563.811000px;}
.x77{left:565.597500px;}
.x83{left:571.549500px;}
.x52{left:572.995500px;}
.x21{left:580.989000px;}
.x53{left:582.264000px;}
.x70{left:585.580500px;}
.x84{left:588.472500px;}
.x85{left:591.024000px;}
.x30{left:596.296500px;}
.x5{left:598.759066px;}
.x5f{left:600.208500px;}
.x31{left:601.993500px;}
.x1e{left:619.086000px;}
.x7d{left:622.233000px;}
.x32{left:623.508000px;}
.x60{left:627.760500px;}
.x2e{left:629.290500px;}
.x22{left:630.907500px;}
.x82{left:634.989000px;}
.x1f{left:636.009000px;}
.x7e{left:639.156000px;}
.x88{left:643.323000px;}
.x98{left:644.343000px;}
.x2f{left:645.703500px;}
.x23{left:651.061500px;}
.x99{left:666.708000px;}
.x1c{left:668.835000px;}
.x20{left:674.191500px;}
.x71{left:675.297000px;}
.x7b{left:680.569500px;}
.x1d{left:683.971500px;}
.x5c{left:687.288000px;}
.x86{left:689.158500px;}
.x72{left:691.624500px;}
.x54{left:698.853000px;}
.x5d{left:699.874500px;}
.x73{left:706.591500px;}
.x3f{left:710.248500px;}
.x4b{left:711.525000px;}
.x74{left:713.650500px;}
.x40{left:715.606500px;}
.x4c{left:720.112500px;}
.x75{left:728.617500px;}
.x76{left:735.675000px;}
.x13{left:741.714000px;}
.x33{left:749.112000px;}
.x48{left:751.237500px;}
.x4d{left:753.108000px;}
.x14{left:754.299000px;}
.x2c{left:758.296500px;}
.x78{left:759.486000px;}
.x8e{left:762.037500px;}
.x25{left:763.398000px;}
.x2d{left:766.969500px;}
.x4e{left:770.031000px;}
.x34{left:777.090000px;}
.x35{left:785.679000px;}
.x57{left:790.015500px;}
.x3c{left:796.479000px;}
.x36{left:805.153500px;}
.x11{left:807.874500px;}
.x37{left:810.424500px;}
.x58{left:812.380500px;}
.x6{left:815.693554px;}
.x12{left:817.143000px;}
.x92{left:819.013500px;}
.x51{left:821.140500px;}
.x15{left:830.239500px;}
.x16{left:839.424000px;}
.x41{left:849.714000px;}
.x38{left:853.624500px;}
.x39{left:858.813000px;}
@media print{
.v1{vertical-align:-5.445333pt;}
.v2{vertical-align:-1.207452pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.418667pt;}
.v4{vertical-align:22.373333pt;}
.ls4{letter-spacing:-1.123200pt;}
.ls8{letter-spacing:-1.067200pt;}
.lsc{letter-spacing:-1.066653pt;}
.lsd{letter-spacing:-0.319996pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.213331pt;}
.ls9{letter-spacing:-0.212800pt;}
.ls6{letter-spacing:-0.211997pt;}
.ls5{letter-spacing:-0.211200pt;}
.lsa{letter-spacing:-0.211198pt;}
.ls26{letter-spacing:-0.190548pt;}
.ls19{letter-spacing:-0.188423pt;}
.ls22{letter-spacing:-0.187710pt;}
.ls7{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.133333pt;}
.ls4e{letter-spacing:0.138667pt;}
.ls4b{letter-spacing:0.144000pt;}
.ls30{letter-spacing:0.149333pt;}
.ls49{letter-spacing:0.432000pt;}
.ls3c{letter-spacing:0.437333pt;}
.ls46{letter-spacing:0.448000pt;}
.ls51{letter-spacing:2.608533pt;}
.ls0{letter-spacing:4.236747pt;}
.ls59{letter-spacing:4.535410pt;}
.ls58{letter-spacing:4.539677pt;}
.ls25{letter-spacing:8.227692pt;}
.ls2{letter-spacing:8.396695pt;}
.ls23{letter-spacing:9.117753pt;}
.ls38{letter-spacing:9.198818pt;}
.ls1{letter-spacing:9.232951pt;}
.ls29{letter-spacing:9.476148pt;}
.ls2a{letter-spacing:9.591347pt;}
.ls2b{letter-spacing:9.894276pt;}
.ls45{letter-spacing:9.902810pt;}
.ls44{letter-spacing:9.907076pt;}
.ls34{letter-spacing:11.157333pt;}
.ls1e{letter-spacing:11.269333pt;}
.ls50{letter-spacing:11.333333pt;}
.ls54{letter-spacing:11.338667pt;}
.ls53{letter-spacing:11.344000pt;}
.ls12{letter-spacing:11.370667pt;}
.ls16{letter-spacing:11.386667pt;}
.ls28{letter-spacing:11.392000pt;}
.ls1c{letter-spacing:11.397333pt;}
.ls55{letter-spacing:11.434667pt;}
.ls21{letter-spacing:11.450667pt;}
.ls2e{letter-spacing:11.456000pt;}
.ls3a{letter-spacing:11.461333pt;}
.ls1f{letter-spacing:11.488000pt;}
.ls18{letter-spacing:11.498667pt;}
.ls1b{letter-spacing:11.504000pt;}
.ls4f{letter-spacing:11.509333pt;}
.ls57{letter-spacing:11.536000pt;}
.ls56{letter-spacing:11.541333pt;}
.ls15{letter-spacing:11.562667pt;}
.lsf{letter-spacing:11.568000pt;}
.ls11{letter-spacing:11.573333pt;}
.ls52{letter-spacing:11.632000pt;}
.ls39{letter-spacing:11.637333pt;}
.ls1d{letter-spacing:11.658667pt;}
.lse{letter-spacing:11.664000pt;}
.ls13{letter-spacing:11.674667pt;}
.ls14{letter-spacing:11.680000pt;}
.ls10{letter-spacing:11.685333pt;}
.ls2f{letter-spacing:11.696000pt;}
.ls3b{letter-spacing:11.701333pt;}
.ls35{letter-spacing:11.760000pt;}
.ls20{letter-spacing:11.786667pt;}
.ls17{letter-spacing:11.802667pt;}
.ls47{letter-spacing:11.808000pt;}
.ls27{letter-spacing:11.845333pt;}
.ls1a{letter-spacing:11.861333pt;}
.ls24{letter-spacing:11.979200pt;}
.ls36{letter-spacing:11.994667pt;}
.ls42{letter-spacing:14.720000pt;}
.ls33{letter-spacing:14.725333pt;}
.ls32{letter-spacing:14.869333pt;}
.ls40{letter-spacing:14.874667pt;}
.ls3f{letter-spacing:15.024000pt;}
.ls41{letter-spacing:15.029333pt;}
.ls3e{letter-spacing:15.168000pt;}
.ls3d{letter-spacing:17.259200pt;}
.ls31{letter-spacing:17.563200pt;}
.ls4a{letter-spacing:21.189333pt;}
.ls4d{letter-spacing:21.194667pt;}
.ls48{letter-spacing:22.058667pt;}
.ls43{letter-spacing:342.306121pt;}
.ls2d{letter-spacing:619.162394pt;}
.ls2c{letter-spacing:621.381033pt;}
.ls4c{letter-spacing:684.778667pt;}
.ws26{word-spacing:-33.023872pt;}
.ws2a{word-spacing:-22.442386pt;}
.ws141{word-spacing:-17.772652pt;}
.wsb1{word-spacing:-16.769627pt;}
.wsef{word-spacing:-13.973333pt;}
.ws135{word-spacing:-13.680000pt;}
.wsfa{word-spacing:-13.674667pt;}
.wsa1{word-spacing:-13.669333pt;}
.ws13b{word-spacing:-13.616000pt;}
.ws8f{word-spacing:-13.578667pt;}
.wsa5{word-spacing:-13.573333pt;}
.wsd0{word-spacing:-13.568000pt;}
.wsaf{word-spacing:-13.562667pt;}
.ws86{word-spacing:-13.509333pt;}
.ws131{word-spacing:-13.493333pt;}
.ws125{word-spacing:-13.477333pt;}
.ws9d{word-spacing:-13.445333pt;}
.wsab{word-spacing:-13.376000pt;}
.ws12f{word-spacing:-13.365333pt;}
.ws98{word-spacing:-13.290667pt;}
.ws99{word-spacing:-13.285333pt;}
.wsb0{word-spacing:-13.264000pt;}
.wsa{word-spacing:-11.989183pt;}
.ws129{word-spacing:-11.792919pt;}
.ws10{word-spacing:-11.775853pt;}
.ws6{word-spacing:-11.027853pt;}
.ws12b{word-spacing:-10.960930pt;}
.wsc4{word-spacing:-10.913997pt;}
.wsc6{word-spacing:-10.862798pt;}
.wsfd{word-spacing:-10.858531pt;}
.wsfe{word-spacing:-10.645200pt;}
.ws44{word-spacing:-10.346537pt;}
.ws33{word-spacing:-9.599880pt;}
.wsb2{word-spacing:-5.824000pt;}
.wse1{word-spacing:-4.595143pt;}
.ws8c{word-spacing:-3.923167pt;}
.ws142{word-spacing:-3.763169pt;}
.ws138{word-spacing:-3.731169pt;}
.ws140{word-spacing:-3.628770pt;}
.ws178{word-spacing:-3.106095pt;}
.ws1aa{word-spacing:-3.097561pt;}
.ws19e{word-spacing:-3.089028pt;}
.ws168{word-spacing:-3.084761pt;}
.ws19b{word-spacing:-3.046362pt;}
.ws17{word-spacing:-3.024800pt;}
.ws20{word-spacing:-3.014667pt;}
.ws191{word-spacing:-3.012229pt;}
.ws1a5{word-spacing:-3.007962pt;}
.ws1a6{word-spacing:-3.003696pt;}
.ws193{word-spacing:-2.999429pt;}
.ws185{word-spacing:-2.982363pt;}
.ws15b{word-spacing:-2.973829pt;}
.ws7{word-spacing:-2.971200pt;}
.ws157{word-spacing:-2.969563pt;}
.ws167{word-spacing:-2.961030pt;}
.ws198{word-spacing:-2.956763pt;}
.ws12{word-spacing:-2.953867pt;}
.ws170{word-spacing:-2.952496pt;}
.ws171{word-spacing:-2.948230pt;}
.ws172{word-spacing:-2.943963pt;}
.ws164{word-spacing:-2.939697pt;}
.ws17c{word-spacing:-2.935430pt;}
.ws1a4{word-spacing:-2.931163pt;}
.ws15d{word-spacing:-2.926897pt;}
.ws156{word-spacing:-2.922630pt;}
.ws17b{word-spacing:-2.918364pt;}
.ws159{word-spacing:-2.914097pt;}
.ws18e{word-spacing:-2.909830pt;}
.wse{word-spacing:-2.901297pt;}
.ws1a3{word-spacing:-2.897030pt;}
.ws11{word-spacing:-2.893067pt;}
.ws15c{word-spacing:-2.892764pt;}
.ws19a{word-spacing:-2.888497pt;}
.ws15e{word-spacing:-2.884231pt;}
.ws18b{word-spacing:-2.879964pt;}
.ws17a{word-spacing:-2.875697pt;}
.ws197{word-spacing:-2.871431pt;}
.ws1c{word-spacing:-2.867733pt;}
.wsd{word-spacing:-2.867164pt;}
.ws78{word-spacing:-2.858631pt;}
.ws16{word-spacing:-2.857600pt;}
.ws192{word-spacing:-2.854364pt;}
.ws179{word-spacing:-2.850098pt;}
.wsf{word-spacing:-2.845831pt;}
.ws1a9{word-spacing:-2.837298pt;}
.ws175{word-spacing:-2.833031pt;}
.ws1e{word-spacing:-2.827200pt;}
.ws190{word-spacing:-2.824498pt;}
.ws5{word-spacing:-2.822400pt;}
.ws11e{word-spacing:-2.815965pt;}
.ws1a0{word-spacing:-2.811698pt;}
.ws1a7{word-spacing:-2.803165pt;}
.ws1d{word-spacing:-2.801867pt;}
.ws166{word-spacing:-2.798898pt;}
.ws29{word-spacing:-2.790365pt;}
.ws16b{word-spacing:-2.781832pt;}
.ws27{word-spacing:-2.777565pt;}
.ws14{word-spacing:-2.776533pt;}
.ws199{word-spacing:-2.773299pt;}
.ws19{word-spacing:-2.766400pt;}
.ws186{word-spacing:-2.756232pt;}
.ws19c{word-spacing:-2.743432pt;}
.ws165{word-spacing:-2.739166pt;}
.ws163{word-spacing:-2.726366pt;}
.ws19d{word-spacing:-2.722099pt;}
.ws153{word-spacing:-2.717833pt;}
.ws15a{word-spacing:-2.709299pt;}
.ws1a1{word-spacing:-2.705033pt;}
.ws16a{word-spacing:-2.696500pt;}
.ws151{word-spacing:-2.692233pt;}
.wsc{word-spacing:-2.687966pt;}
.ws160{word-spacing:-2.683700pt;}
.ws169{word-spacing:-2.679433pt;}
.ws18c{word-spacing:-2.670900pt;}
.ws184{word-spacing:-2.666633pt;}
.ws18{word-spacing:-2.654933pt;}
.ws187{word-spacing:-2.653833pt;}
.ws1f{word-spacing:-2.649867pt;}
.ws1a2{word-spacing:-2.649567pt;}
.ws181{word-spacing:-2.641034pt;}
.ws3{word-spacing:-2.640000pt;}
.ws183{word-spacing:-2.636767pt;}
.ws180{word-spacing:-2.632500pt;}
.ws1b{word-spacing:-2.629600pt;}
.ws16f{word-spacing:-2.628234pt;}
.ws1ab{word-spacing:-2.623967pt;}
.ws19f{word-spacing:-2.611167pt;}
.ws18f{word-spacing:-2.606901pt;}
.ws161{word-spacing:-2.589834pt;}
.ws1a{word-spacing:-2.589067pt;}
.ws16c{word-spacing:-2.585568pt;}
.ws16d{word-spacing:-2.581301pt;}
.ws173{word-spacing:-2.572768pt;}
.ws195{word-spacing:-2.568501pt;}
.ws158{word-spacing:-2.564235pt;}
.ws177{word-spacing:-2.559968pt;}
.ws15f{word-spacing:-2.555701pt;}
.ws1{word-spacing:-2.553600pt;}
.ws174{word-spacing:-2.551435pt;}
.ws1a8{word-spacing:-2.542902pt;}
.ws194{word-spacing:-2.538635pt;}
.ws18d{word-spacing:-2.525835pt;}
.ws15{word-spacing:-2.523200pt;}
.ws188{word-spacing:-2.517302pt;}
.ws8{word-spacing:-2.513035pt;}
.ws154{word-spacing:-2.500235pt;}
.ws176{word-spacing:-2.495969pt;}
.ws16e{word-spacing:-2.474636pt;}
.ws17f{word-spacing:-2.470369pt;}
.ws13{word-spacing:-2.462400pt;}
.wsb{word-spacing:-2.461836pt;}
.ws2{word-spacing:-2.457600pt;}
.ws189{word-spacing:-2.457569pt;}
.ws150{word-spacing:-2.449036pt;}
.ws155{word-spacing:-2.444769pt;}
.ws196{word-spacing:-2.440503pt;}
.ws9{word-spacing:-2.397837pt;}
.ws18a{word-spacing:-2.393570pt;}
.ws152{word-spacing:-2.385037pt;}
.ws17e{word-spacing:-2.359437pt;}
.ws0{word-spacing:-2.355171pt;}
.ws182{word-spacing:-2.342371pt;}
.ws4{word-spacing:-1.987200pt;}
.ws105{word-spacing:-1.525333pt;}
.ws43{word-spacing:-1.356783pt;}
.ws40{word-spacing:-1.343983pt;}
.ws3f{word-spacing:-1.309850pt;}
.ws42{word-spacing:-1.254384pt;}
.ws3e{word-spacing:-1.198918pt;}
.ws41{word-spacing:-1.006921pt;}
.wsf0{word-spacing:-0.992000pt;}
.wsf2{word-spacing:-0.954667pt;}
.ws48{word-spacing:-0.938655pt;}
.ws6e{word-spacing:-0.858667pt;}
.wsed{word-spacing:-0.853333pt;}
.ws133{word-spacing:-0.826667pt;}
.ws4b{word-spacing:-0.814923pt;}
.wsee{word-spacing:-0.810667pt;}
.ws45{word-spacing:-0.793590pt;}
.wsec{word-spacing:-0.789333pt;}
.ws39{word-spacing:-0.780790pt;}
.ws137{word-spacing:-0.778667pt;}
.ws7e{word-spacing:-0.763724pt;}
.ws4d{word-spacing:-0.725324pt;}
.ws2e{word-spacing:-0.708258pt;}
.ws37{word-spacing:-0.703991pt;}
.ws7d{word-spacing:-0.695458pt;}
.ws36{word-spacing:-0.691191pt;}
.ws7b{word-spacing:-0.682658pt;}
.ws32{word-spacing:-0.674125pt;}
.ws136{word-spacing:-0.672000pt;}
.wsd2{word-spacing:-0.666667pt;}
.ws3b{word-spacing:-0.661325pt;}
.ws4f{word-spacing:-0.657058pt;}
.ws12d{word-spacing:-0.652792pt;}
.ws5a{word-spacing:-0.650667pt;}
.ws79{word-spacing:-0.648525pt;}
.ws47{word-spacing:-0.644259pt;}
.wsc8{word-spacing:-0.635725pt;}
.wsbc{word-spacing:-0.624000pt;}
.ws3d{word-spacing:-0.614392pt;}
.ws49{word-spacing:-0.601592pt;}
.ws4c{word-spacing:-0.597326pt;}
.wsce{word-spacing:-0.593059pt;}
.ws35{word-spacing:-0.588793pt;}
.ws7a{word-spacing:-0.584526pt;}
.ws2d{word-spacing:-0.580259pt;}
.ws2f{word-spacing:-0.575993pt;}
.wsca{word-spacing:-0.571726pt;}
.ws3a{word-spacing:-0.567460pt;}
.ws46{word-spacing:-0.563193pt;}
.wsd5{word-spacing:-0.560000pt;}
.wsd1{word-spacing:-0.554667pt;}
.ws2b{word-spacing:-0.554660pt;}
.wsd3{word-spacing:-0.549333pt;}
.ws4e{word-spacing:-0.541860pt;}
.ws134{word-spacing:-0.512000pt;}
.ws34{word-spacing:-0.507727pt;}
.ws11d{word-spacing:-0.499194pt;}
.ws30{word-spacing:-0.486394pt;}
.wscb{word-spacing:-0.482127pt;}
.ws13f{word-spacing:-0.474667pt;}
.ws38{word-spacing:-0.473594pt;}
.ws3c{word-spacing:-0.465061pt;}
.ws9e{word-spacing:-0.464000pt;}
.ws31{word-spacing:-0.460794pt;}
.ws76{word-spacing:-0.458667pt;}
.wsdc{word-spacing:-0.456528pt;}
.ws67{word-spacing:-0.453333pt;}
.wsdd{word-spacing:-0.452261pt;}
.wsc0{word-spacing:-0.448000pt;}
.ws127{word-spacing:-0.442667pt;}
.ws130{word-spacing:-0.437333pt;}
.wsf1{word-spacing:-0.426667pt;}
.ws4a{word-spacing:-0.418128pt;}
.ws59{word-spacing:-0.416000pt;}
.ws123{word-spacing:-0.410667pt;}
.ws7c{word-spacing:-0.409595pt;}
.wsc3{word-spacing:-0.405328pt;}
.wsa7{word-spacing:-0.394667pt;}
.wse6{word-spacing:-0.392528pt;}
.wsd8{word-spacing:-0.388262pt;}
.ws22{word-spacing:-0.384000pt;}
.wsff{word-spacing:-0.379729pt;}
.wscc{word-spacing:-0.379522pt;}
.ws96{word-spacing:-0.378667pt;}
.wsf4{word-spacing:-0.373333pt;}
.wsd9{word-spacing:-0.371195pt;}
.ws84{word-spacing:-0.368000pt;}
.wsc1{word-spacing:-0.362667pt;}
.ws57{word-spacing:-0.357333pt;}
.wscf{word-spacing:-0.352000pt;}
.ws5f{word-spacing:-0.346667pt;}
.ws6a{word-spacing:-0.341333pt;}
.ws51{word-spacing:-0.336000pt;}
.ws54{word-spacing:-0.325333pt;}
.wse7{word-spacing:-0.324263pt;}
.ws58{word-spacing:-0.320000pt;}
.ws9c{word-spacing:-0.314667pt;}
.ws70{word-spacing:-0.309333pt;}
.ws24{word-spacing:-0.304000pt;}
.wsc9{word-spacing:-0.302930pt;}
.ws95{word-spacing:-0.298667pt;}
.ws115{word-spacing:-0.298663pt;}
.ws90{word-spacing:-0.293333pt;}
.ws6d{word-spacing:-0.288000pt;}
.ws12c{word-spacing:-0.285863pt;}
.ws5e{word-spacing:-0.282667pt;}
.ws80{word-spacing:-0.277333pt;}
.ws62{word-spacing:-0.272000pt;}
.wsc7{word-spacing:-0.268797pt;}
.ws93{word-spacing:-0.266667pt;}
.ws6f{word-spacing:-0.261333pt;}
.ws2c{word-spacing:-0.260263pt;}
.ws61{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.250667pt;}
.wse3{word-spacing:-0.247464pt;}
.ws21{word-spacing:-0.245333pt;}
.ws7f{word-spacing:-0.240000pt;}
.ws6c{word-spacing:-0.234667pt;}
.wsa0{word-spacing:-0.229333pt;}
.wse9{word-spacing:-0.224000pt;}
.wsc5{word-spacing:-0.221864pt;}
.ws55{word-spacing:-0.218667pt;}
.ws52{word-spacing:-0.213333pt;}
.ws64{word-spacing:-0.208000pt;}
.ws53{word-spacing:-0.202667pt;}
.ws5b{word-spacing:-0.197333pt;}
.ws65{word-spacing:-0.186667pt;}
.ws13d{word-spacing:-0.183464pt;}
.ws25{word-spacing:-0.181333pt;}
.wsd7{word-spacing:-0.179198pt;}
.ws85{word-spacing:-0.176000pt;}
.wsda{word-spacing:-0.174931pt;}
.ws5c{word-spacing:-0.170667pt;}
.ws6b{word-spacing:-0.165333pt;}
.wsd4{word-spacing:-0.160000pt;}
.ws77{word-spacing:-0.154667pt;}
.ws72{word-spacing:-0.149333pt;}
.wsfc{word-spacing:-0.144000pt;}
.ws66{word-spacing:-0.138667pt;}
.ws9f{word-spacing:-0.133333pt;}
.wsbe{word-spacing:-0.128000pt;}
.ws8e{word-spacing:-0.122667pt;}
.ws11b{word-spacing:-0.119465pt;}
.ws83{word-spacing:-0.117333pt;}
.ws116{word-spacing:-0.110932pt;}
.ws92{word-spacing:-0.096000pt;}
.ws11c{word-spacing:-0.093865pt;}
.wsb8{word-spacing:-0.090667pt;}
.wsae{word-spacing:-0.085333pt;}
.ws128{word-spacing:-0.081066pt;}
.wsb7{word-spacing:-0.080000pt;}
.wsf8{word-spacing:-0.074667pt;}
.ws5d{word-spacing:-0.069333pt;}
.wsbb{word-spacing:-0.064000pt;}
.wsba{word-spacing:-0.058667pt;}
.ws87{word-spacing:-0.053333pt;}
.wsfb{word-spacing:-0.048000pt;}
.wsa6{word-spacing:-0.042667pt;}
.ws73{word-spacing:-0.037333pt;}
.ws11a{word-spacing:-0.034133pt;}
.ws56{word-spacing:-0.032000pt;}
.wsbf{word-spacing:-0.026667pt;}
.ws94{word-spacing:-0.021333pt;}
.wsb3{word-spacing:-0.016000pt;}
.ws139{word-spacing:-0.005333pt;}
.ws10f{word-spacing:-0.004267pt;}
.ws50{word-spacing:0.000000pt;}
.ws121{word-spacing:0.004267pt;}
.ws60{word-spacing:0.010667pt;}
.wsa9{word-spacing:0.016000pt;}
.wsf3{word-spacing:0.021333pt;}
.ws12a{word-spacing:0.025600pt;}
.ws13a{word-spacing:0.026667pt;}
.wsc2{word-spacing:0.029866pt;}
.ws124{word-spacing:0.037333pt;}
.ws12e{word-spacing:0.042667pt;}
.ws9b{word-spacing:0.048000pt;}
.ws68{word-spacing:0.053333pt;}
.wsb6{word-spacing:0.057600pt;}
.ws88{word-spacing:0.064000pt;}
.wsb9{word-spacing:0.069333pt;}
.ws63{word-spacing:0.074667pt;}
.ws14a{word-spacing:0.080000pt;}
.wsb4{word-spacing:0.085333pt;}
.ws107{word-spacing:0.090667pt;}
.wsde{word-spacing:0.093865pt;}
.wsb5{word-spacing:0.096000pt;}
.ws101{word-spacing:0.101333pt;}
.ws82{word-spacing:0.106667pt;}
.ws120{word-spacing:0.110932pt;}
.wsbd{word-spacing:0.117333pt;}
.ws69{word-spacing:0.122667pt;}
.wse0{word-spacing:0.123732pt;}
.ws13c{word-spacing:0.149333pt;}
.wsd6{word-spacing:0.154667pt;}
.ws74{word-spacing:0.160000pt;}
.ws8b{word-spacing:0.170667pt;}
.wsad{word-spacing:0.176000pt;}
.ws10d{word-spacing:0.181333pt;}
.ws89{word-spacing:0.202667pt;}
.ws103{word-spacing:0.208000pt;}
.ws100{word-spacing:0.213333pt;}
.wse8{word-spacing:0.221864pt;}
.ws111{word-spacing:0.226131pt;}
.wsaa{word-spacing:0.243198pt;}
.ws13e{word-spacing:0.251730pt;}
.ws81{word-spacing:0.261333pt;}
.ws132{word-spacing:0.266667pt;}
.ws122{word-spacing:0.272000pt;}
.ws112{word-spacing:0.273063pt;}
.ws126{word-spacing:0.275198pt;}
.wsac{word-spacing:0.281598pt;}
.wsdb{word-spacing:0.298663pt;}
.wsa2{word-spacing:0.300797pt;}
.ws14e{word-spacing:0.304000pt;}
.ws10a{word-spacing:0.309333pt;}
.ws8a{word-spacing:0.362667pt;}
.ws8d{word-spacing:0.377597pt;}
.ws10e{word-spacing:0.384000pt;}
.ws102{word-spacing:0.394667pt;}
.wsa3{word-spacing:0.400000pt;}
.wse2{word-spacing:0.405328pt;}
.wsf9{word-spacing:0.410667pt;}
.ws91{word-spacing:0.416000pt;}
.ws9a{word-spacing:0.422396pt;}
.ws144{word-spacing:0.426667pt;}
.ws75{word-spacing:0.469333pt;}
.ws110{word-spacing:0.499194pt;}
.ws71{word-spacing:0.501333pt;}
.ws10c{word-spacing:0.570667pt;}
.ws14c{word-spacing:0.576000pt;}
.ws145{word-spacing:0.592000pt;}
.ws149{word-spacing:0.629333pt;}
.ws97{word-spacing:0.640000pt;}
.ws146{word-spacing:0.677333pt;}
.ws14b{word-spacing:0.752000pt;}
.ws148{word-spacing:0.800000pt;}
.wsa8{word-spacing:0.837333pt;}
.ws147{word-spacing:0.869333pt;}
.ws14d{word-spacing:0.912000pt;}
.ws143{word-spacing:1.029333pt;}
.wscd{word-spacing:2.059056pt;}
.ws104{word-spacing:7.360000pt;}
.ws108{word-spacing:7.605333pt;}
.wsea{word-spacing:7.658667pt;}
.wsf6{word-spacing:7.664000pt;}
.wsf5{word-spacing:13.829333pt;}
.ws28{word-spacing:30.745216pt;}
.wsa4{word-spacing:31.178667pt;}
.ws162{word-spacing:41.637880pt;}
.ws17d{word-spacing:41.642146pt;}
.ws14f{word-spacing:41.697612pt;}
.ws113{word-spacing:296.538160pt;}
.ws117{word-spacing:298.308804pt;}
.ws118{word-spacing:301.154636pt;}
.ws119{word-spacing:317.047770pt;}
.ws114{word-spacing:327.799636pt;}
.wse5{word-spacing:432.357262pt;}
.wsdf{word-spacing:435.049495pt;}
.ws109{word-spacing:548.714667pt;}
.ws10b{word-spacing:562.021333pt;}
.wsf7{word-spacing:568.672000pt;}
.ws106{word-spacing:573.509333pt;}
.wse4{word-spacing:588.092915pt;}
.wseb{word-spacing:690.218667pt;}
.ws11f{word-spacing:703.584000pt;}
._5{margin-left:-7.485411pt;}
._9{margin-left:-4.290146pt;}
._4{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._23{width:1.375467pt;}
._1{width:3.456000pt;}
._7{width:8.392428pt;}
._2{width:10.082007pt;}
._8{width:11.045333pt;}
._3{width:12.560267pt;}
._22{width:14.003025pt;}
._c{width:15.039875pt;}
._f{width:18.367770pt;}
._24{width:19.302159pt;}
._16{width:21.402667pt;}
._e{width:23.453573pt;}
._a{width:26.586667pt;}
._b{width:42.661333pt;}
._d{width:43.861333pt;}
._10{width:272.930988pt;}
._13{width:278.217322pt;}
._1c{width:306.645767pt;}
._1e{width:310.728916pt;}
._20{width:313.148086pt;}
._1f{width:315.865918pt;}
._1b{width:317.487231pt;}
._1d{width:326.626317pt;}
._14{width:372.116948pt;}
._18{width:420.299813pt;}
._17{width:441.649946pt;}
._1a{width:447.482406pt;}
._15{width:518.043658pt;}
._19{width:535.903701pt;}
._12{width:554.416536pt;}
._11{width:575.254676pt;}
._21{width:1283.905018pt;}
._6{width:1306.833798pt;}
.fse{font-size:19.907200pt;}
.fsc{font-size:28.440000pt;}
.fsd{font-size:29.865600pt;}
.fsf{font-size:31.998933pt;}
.fs9{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fsb{font-size:42.661333pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:4.033333pt;}
.y29{bottom:7.567971pt;}
.y2a{bottom:48.000000pt;}
.y125{bottom:106.356525pt;}
.y155{bottom:110.665317pt;}
.y27{bottom:110.665333pt;}
.y103{bottom:110.665467pt;}
.y222{bottom:110.666667pt;}
.y4b{bottom:110.666806pt;}
.y216{bottom:110.668000pt;}
.y7e{bottom:111.198667pt;}
.y24e{bottom:117.318667pt;}
.y285{bottom:118.077534pt;}
.y237{bottom:118.830667pt;}
.y13f{bottom:120.644000pt;}
.y176{bottom:125.253467pt;}
.y4a{bottom:125.331156pt;}
.y101{bottom:125.782667pt;}
.y1f0{bottom:126.617333pt;}
.y124{bottom:126.992000pt;}
.y175{bottom:126.992317pt;}
.y100{bottom:127.974667pt;}
.y102{bottom:127.974800pt;}
.y26{bottom:127.976000pt;}
.y215{bottom:127.977333pt;}
.y7d{bottom:128.509333pt;}
.y154{bottom:128.881867pt;}
.y153{bottom:130.696000pt;}
.y284{bottom:130.776041pt;}
.y122{bottom:131.754267pt;}
.y2c1{bottom:132.967483pt;}
.y123{bottom:134.324000pt;}
.y236{bottom:136.141333pt;}
.y13e{bottom:138.029333pt;}
.y11f{bottom:139.691891pt;}
.y121{bottom:139.692000pt;}
.y49{bottom:139.995506pt;}
.y24d{bottom:141.357333pt;}
.y1ef{bottom:143.926667pt;}
.y120{bottom:144.377333pt;}
.yff{bottom:145.360000pt;}
.y25{bottom:145.361333pt;}
.y214{bottom:145.362667pt;}
.y151{bottom:145.588000pt;}
.y2c0{bottom:145.667058pt;}
.y7c{bottom:145.894667pt;}
.y152{bottom:147.325333pt;}
.y150{bottom:147.326759pt;}
.y1b7{bottom:147.856000pt;}
.y283{bottom:148.086758pt;}
.yfe{bottom:151.256000pt;}
.y11d{bottom:152.314667pt;}
.y235{bottom:153.452000pt;}
.y13d{bottom:155.340000pt;}
.y11e{bottom:157.077333pt;}
.y2bf{bottom:158.290900pt;}
.y199{bottom:160.478667pt;}
.y282{bottom:160.785266pt;}
.y1ee{bottom:161.237333pt;}
.y19a{bottom:162.670667pt;}
.y24{bottom:162.672000pt;}
.y48{bottom:162.672556pt;}
.y213{bottom:162.673333pt;}
.y7b{bottom:163.205333pt;}
.y14f{bottom:164.031617pt;}
.y24c{bottom:165.318667pt;}
.y234{bottom:170.837333pt;}
.y13c{bottom:172.649333pt;}
.y281{bottom:173.409109pt;}
.y2be{bottom:175.600550pt;}
.y47{bottom:177.337973pt;}
.y21e{bottom:177.789333pt;}
.y1ed{bottom:178.622667pt;}
.y23{bottom:179.981333pt;}
.y221{bottom:179.982667pt;}
.y212{bottom:179.984000pt;}
.y7a{bottom:180.516000pt;}
.y14e{bottom:180.661809pt;}
.y1dc{bottom:185.349266pt;}
.y99{bottom:185.952000pt;}
.y139{bottom:187.766667pt;}
.y1b6{bottom:187.994667pt;}
.y233{bottom:188.148000pt;}
.y2bd{bottom:188.300125pt;}
.y24b{bottom:189.356000pt;}
.y13a{bottom:190.034667pt;}
.y138{bottom:190.037333pt;}
.y280{bottom:190.794491pt;}
.y46{bottom:192.002323pt;}
.y198{bottom:193.210667pt;}
.y13b{bottom:195.930667pt;}
.y1ec{bottom:195.933333pt;}
.y22{bottom:197.366667pt;}
.yfc{bottom:197.368000pt;}
.y211{bottom:197.369333pt;}
.y79{bottom:197.901333pt;}
.yfd{bottom:203.262667pt;}
.y27f{bottom:203.418333pt;}
.y232{bottom:205.457333pt;}
.y2bc{bottom:205.609775pt;}
.y45{bottom:206.666673pt;}
.y137{bottom:207.348000pt;}
.y1db{bottom:209.310667pt;}
.y14c{bottom:212.258667pt;}
.y1eb{bottom:213.242667pt;}
.y24a{bottom:213.318667pt;}
.y14d{bottom:213.997333pt;}
.y14b{bottom:213.998322pt;}
.y98{bottom:214.677333pt;}
.y220{bottom:214.678667pt;}
.y210{bottom:214.680000pt;}
.y78{bottom:215.210667pt;}
.y2bb{bottom:218.309350pt;}
.y197{bottom:218.457333pt;}
.y21{bottom:219.968000pt;}
.y196{bottom:220.649333pt;}
.y27e{bottom:220.804783pt;}
.y44{bottom:221.331023pt;}
.y231{bottom:222.842667pt;}
.y136{bottom:224.658667pt;}
.y1ea{bottom:230.629333pt;}
.y14a{bottom:230.703180pt;}
.y97{bottom:231.988000pt;}
.y20f{bottom:231.989333pt;}
.y77{bottom:232.521333pt;}
.y27d{bottom:233.427558pt;}
.y2ba{bottom:235.619000pt;}
.y43{bottom:235.995373pt;}
.y249{bottom:237.356000pt;}
.y230{bottom:240.153333pt;}
.y135{bottom:242.044000pt;}
.y195{bottom:246.046667pt;}
.y193{bottom:246.048000pt;}
.y1da{bottom:246.425333pt;}
.y1e9{bottom:247.938667pt;}
.y2b9{bottom:248.318575pt;}
.y96{bottom:249.297333pt;}
.yfa{bottom:249.298667pt;}
.y20e{bottom:249.300000pt;}
.y76{bottom:249.906667pt;}
.y149{bottom:250.432000pt;}
.y1b5{bottom:250.584000pt;}
.y27c{bottom:250.814008pt;}
.y194{bottom:251.942667pt;}
.yfb{bottom:255.269333pt;}
.y22f{bottom:257.464000pt;}
.y42{bottom:258.672422pt;}
.y134{bottom:259.353333pt;}
.y248{bottom:261.318667pt;}
.y1d8{bottom:261.542667pt;}
.y27b{bottom:263.436783pt;}
.y1d9{bottom:263.810667pt;}
.y1d7{bottom:263.812000pt;}
.yc8{bottom:264.416000pt;}
.y1e8{bottom:265.249333pt;}
.y2b8{bottom:265.628225pt;}
.y95{bottom:266.682667pt;}
.yc7{bottom:266.684000pt;}
.y93{bottom:266.685333pt;}
.y75{bottom:267.217333pt;}
.y94{bottom:272.580000pt;}
.y41{bottom:273.336773pt;}
.y22e{bottom:274.849333pt;}
.y27a{bottom:276.136358pt;}
.y133{bottom:276.664000pt;}
.y2b7{bottom:278.327800pt;}
.y1d6{bottom:281.122667pt;}
.yc4{bottom:281.801333pt;}
.y148{bottom:282.103617pt;}
.y1e7{bottom:282.634667pt;}
.yc5{bottom:283.993333pt;}
.y92{bottom:283.994667pt;}
.y20d{bottom:283.996000pt;}
.y74{bottom:284.528000pt;}
.y247{bottom:285.356000pt;}
.y40{bottom:288.001123pt;}
.yc6{bottom:289.889333pt;}
.y1b4{bottom:290.722667pt;}
.y2b6{bottom:290.951642pt;}
.y22d{bottom:292.158667pt;}
.y279{bottom:293.446008pt;}
.y132{bottom:293.974667pt;}
.y20{bottom:295.938800pt;}
.y1e6{bottom:299.945333pt;}
.yf9{bottom:301.304000pt;}
.y91{bottom:301.305333pt;}
.y21d{bottom:301.306667pt;}
.y73{bottom:301.837333pt;}
.y192{bottom:301.909333pt;}
.y3f{bottom:302.666539pt;}
.y147{bottom:302.740159pt;}
.y2b4{bottom:303.650150pt;}
.y2b5{bottom:303.953079pt;}
.y278{bottom:306.145583pt;}
.y246{bottom:309.317333pt;}
.y22c{bottom:309.469333pt;}
.y131{bottom:311.360000pt;}
.y145{bottom:313.700000pt;}
.y1f{bottom:314.609467pt;}
.y144{bottom:315.438667pt;}
.y1b3{bottom:316.045333pt;}
.y1e5{bottom:317.254667pt;}
.y3e{bottom:317.330889pt;}
.yf8{bottom:318.689333pt;}
.y90{bottom:318.690667pt;}
.y21c{bottom:318.692000pt;}
.y72{bottom:319.222667pt;}
.y146{bottom:320.201333pt;}
.y2b3{bottom:320.960867pt;}
.y277{bottom:323.456300pt;}
.y22b{bottom:326.780000pt;}
.y191{bottom:327.156000pt;}
.y1d5{bottom:327.157333pt;}
.y130{bottom:328.669333pt;}
.y190{bottom:329.348000pt;}
.y3d{bottom:331.995239pt;}
.y1e{bottom:333.280133pt;}
.y1b2{bottom:333.354667pt;}
.y245{bottom:333.356000pt;}
.y2b2{bottom:333.659375pt;}
.y1e4{bottom:334.565333pt;}
.y8f{bottom:336.001333pt;}
.y276{bottom:336.079075pt;}
.y71{bottom:336.533333pt;}
.yf7{bottom:341.367933pt;}
.y22a{bottom:344.165333pt;}
.y12f{bottom:345.980000pt;}
.y2b1{bottom:346.283217pt;}
.y3c{bottom:346.659589pt;}
.y1b1{bottom:350.740000pt;}
.y1af{bottom:350.741333pt;}
.y1e3{bottom:351.950667pt;}
.y1d{bottom:351.950800pt;}
.y8e{bottom:353.310667pt;}
.y20c{bottom:353.312000pt;}
.y275{bottom:353.465524pt;}
.y70{bottom:353.844000pt;}
.y18f{bottom:354.670667pt;}
.y18d{bottom:354.672000pt;}
.y1b0{bottom:356.636000pt;}
.y244{bottom:357.317333pt;}
.y1d4{bottom:358.677333pt;}
.y18e{bottom:360.642667pt;}
.y229{bottom:361.476000pt;}
.y12e{bottom:363.365333pt;}
.y2b0{bottom:363.593934pt;}
.yf6{bottom:365.329333pt;}
.y274{bottom:366.088300pt;}
.y1ae{bottom:368.052000pt;}
.y1e2{bottom:369.261333pt;}
.y3b{bottom:369.336639pt;}
.y1c{bottom:370.622733pt;}
.yc3{bottom:370.696000pt;}
.yc1{bottom:370.697333pt;}
.y6f{bottom:371.229333pt;}
.y21f{bottom:375.986667pt;}
.y8d{bottom:375.988734pt;}
.y2af{bottom:376.292442pt;}
.yc2{bottom:376.592000pt;}
.y228{bottom:378.785333pt;}
.y12d{bottom:380.676000pt;}
.y243{bottom:381.354667pt;}
.y273{bottom:383.474749pt;}
.y1ad{bottom:385.362667pt;}
.y1e1{bottom:386.570667pt;}
.yc0{bottom:388.008000pt;}
.y6e{bottom:388.538667pt;}
.y2ae{bottom:388.992016pt;}
.y1b{bottom:389.217400pt;}
.y174{bottom:391.485333pt;}
.y3a{bottom:392.013689pt;}
.y272{bottom:396.097525pt;}
.y227{bottom:396.170667pt;}
.y12c{bottom:397.986667pt;}
.y8c{bottom:400.025333pt;}
.y1ac{bottom:402.672000pt;}
.y1df{bottom:403.956000pt;}
.y242{bottom:404.032000pt;}
.ybf{bottom:405.317333pt;}
.yf5{bottom:405.393333pt;}
.y6d{bottom:405.849333pt;}
.y2ad{bottom:406.301667pt;}
.y1a{bottom:407.888067pt;}
.y173{bottom:408.796000pt;}
.y1e0{bottom:409.852000pt;}
.y18c{bottom:410.608000pt;}
.y1d3{bottom:412.725333pt;}
.y271{bottom:413.408242pt;}
.y226{bottom:413.481333pt;}
.y39{bottom:414.690739pt;}
.y12b{bottom:415.372000pt;}
.y2ac{bottom:418.925509pt;}
.y1ab{bottom:420.057333pt;}
.y1de{bottom:421.266667pt;}
.ybd{bottom:422.702667pt;}
.y21b{bottom:422.704000pt;}
.y6c{bottom:423.234667pt;}
.y172{bottom:426.105333pt;}
.y270{bottom:426.106750pt;}
.y19{bottom:426.558733pt;}
.ybe{bottom:428.598667pt;}
.y225{bottom:430.792000pt;}
.y12a{bottom:432.681333pt;}
.y18b{bottom:435.854667pt;}
.y2ab{bottom:436.310891pt;}
.y38{bottom:437.367789pt;}
.yf3{bottom:437.820000pt;}
.y18a{bottom:438.046667pt;}
.y1dd{bottom:438.576000pt;}
.y20b{bottom:440.013333pt;}
.yf4{bottom:440.088000pt;}
.yf2{bottom:440.089333pt;}
.y6b{bottom:440.545333pt;}
.y26f{bottom:443.417467pt;}
.y171{bottom:443.490667pt;}
.y1d2{bottom:444.245333pt;}
.y18{bottom:445.229400pt;}
.ybc{bottom:445.304000pt;}
.y224{bottom:448.177333pt;}
.y1ba{bottom:448.479617pt;}
.y2aa{bottom:448.934734pt;}
.y129{bottom:449.992000pt;}
.y37{bottom:452.032139pt;}
.y26e{bottom:456.117041pt;}
.y241{bottom:456.189333pt;}
.y20a{bottom:457.324000pt;}
.yf1{bottom:457.398667pt;}
.y6a{bottom:457.856000pt;}
.y170{bottom:460.801333pt;}
.y2a9{bottom:461.634308pt;}
.y189{bottom:463.369333pt;}
.y187{bottom:463.370667pt;}
.y17{bottom:463.900067pt;}
.y223{bottom:465.486667pt;}
.y1f4{bottom:467.074283pt;}
.y128{bottom:467.302667pt;}
.y1b9{bottom:469.191891pt;}
.y188{bottom:469.341333pt;}
.y1d1{bottom:469.568000pt;}
.y1cf{bottom:469.569333pt;}
.y26d{bottom:473.426692pt;}
.y240{bottom:473.500000pt;}
.y209{bottom:474.633333pt;}
.y36{bottom:474.633456pt;}
.y21a{bottom:474.634667pt;}
.yf0{bottom:474.709333pt;}
.y69{bottom:475.241333pt;}
.y1d0{bottom:475.540000pt;}
.y16f{bottom:478.112000pt;}
.y2a8{bottom:478.943959pt;}
.y1b8{bottom:481.814667pt;}
.y16{bottom:482.572000pt;}
.ybb{bottom:484.233333pt;}
.y127{bottom:484.688000pt;}
.y26c{bottom:486.126266pt;}
.y115{bottom:486.728000pt;}
.y1ce{bottom:486.954667pt;}
.y1f3{bottom:487.710825pt;}
.y186{bottom:488.693333pt;}
.y116{bottom:488.994667pt;}
.y114{bottom:488.996000pt;}
.y35{bottom:489.373539pt;}
.y207{bottom:489.750667pt;}
.y23f{bottom:490.809333pt;}
.y2a7{bottom:491.643533pt;}
.y208{bottom:492.018667pt;}
.yef{bottom:492.020000pt;}
.y68{bottom:492.550667pt;}
.y23a{bottom:493.984682pt;}
.y117{bottom:494.890667pt;}
.y16e{bottom:495.421333pt;}
.yb9{bottom:499.350667pt;}
.y1f1{bottom:500.409333pt;}
.y15{bottom:501.242667pt;}
.yba{bottom:501.618667pt;}
.yb8{bottom:501.620000pt;}
.y126{bottom:501.997333pt;}
.y26b{bottom:503.435916pt;}
.y185{bottom:503.810667pt;}
.y34{bottom:504.037889pt;}
.y1cd{bottom:504.265333pt;}
.y1f2{bottom:505.172000pt;}
.y184{bottom:506.078667pt;}
.y113{bottom:506.305333pt;}
.y111{bottom:506.306667pt;}
.y2a6{bottom:508.953183pt;}
.y219{bottom:509.329333pt;}
.y206{bottom:509.330667pt;}
.yee{bottom:509.405333pt;}
.y67{bottom:509.861333pt;}
.y112{bottom:512.201333pt;}
.y16d{bottom:512.808000pt;}
.y23e{bottom:513.486667pt;}
.y239{bottom:514.621224pt;}
.y26a{bottom:516.135491pt;}
.yb5{bottom:516.737333pt;}
.y33{bottom:518.703305pt;}
.yb6{bottom:518.929333pt;}
.yb4{bottom:518.930667pt;}
.y14{bottom:519.913333pt;}
.y110{bottom:521.424000pt;}
.y1cc{bottom:521.576000pt;}
.y2a4{bottom:521.652758pt;}
.y2a5{bottom:521.954621pt;}
.y183{bottom:523.389333pt;}
.y10f{bottom:523.616000pt;}
.yec{bottom:524.522667pt;}
.yb7{bottom:524.825333pt;}
.y205{bottom:526.640000pt;}
.yed{bottom:526.714667pt;}
.yeb{bottom:526.716000pt;}
.y66{bottom:527.172000pt;}
.y238{bottom:527.244000pt;}
.y16c{bottom:530.117333pt;}
.y32{bottom:533.367655pt;}
.y269{bottom:533.445141pt;}
.y2a3{bottom:534.276600pt;}
.yb3{bottom:536.241333pt;}
.y181{bottom:538.506667pt;}
.y143{bottom:538.583508pt;}
.y13{bottom:538.584000pt;}
.y1cb{bottom:538.961333pt;}
.y182{bottom:540.698667pt;}
.y180{bottom:540.700000pt;}
.y10e{bottom:541.001333pt;}
.yea{bottom:541.833333pt;}
.ye9{bottom:544.025333pt;}
.y65{bottom:544.557333pt;}
.y268{bottom:546.144716pt;}
.y16b{bottom:547.428000pt;}
.y31{bottom:548.032005pt;}
.y2a2{bottom:551.661983pt;}
.yb2{bottom:553.626667pt;}
.y1ca{bottom:556.270667pt;}
.y12{bottom:557.254667pt;}
.y17f{bottom:558.085333pt;}
.y10d{bottom:558.312000pt;}
.y267{bottom:558.768558pt;}
.ye7{bottom:559.142667pt;}
.y142{bottom:559.218983pt;}
.y204{bottom:561.336000pt;}
.ye8{bottom:561.410667pt;}
.ye6{bottom:561.412000pt;}
.y64{bottom:561.868000pt;}
.y2a1{bottom:564.285825pt;}
.y30{bottom:569.801333pt;}
.yb0{bottom:570.936000pt;}
.y141{bottom:571.918558pt;}
.y10b{bottom:573.429333pt;}
.y23d{bottom:573.657333pt;}
.y17e{bottom:575.396000pt;}
.y10c{bottom:575.621333pt;}
.y10a{bottom:575.624000pt;}
.y11{bottom:575.925333pt;}
.y266{bottom:576.078208pt;}
.ye4{bottom:576.529333pt;}
.yb1{bottom:576.832000pt;}
.y16a{bottom:577.966667pt;}
.y218{bottom:578.645333pt;}
.y203{bottom:578.646667pt;}
.ye5{bottom:578.721333pt;}
.ye3{bottom:578.722667pt;}
.y1c9{bottom:578.948000pt;}
.y63{bottom:579.177333pt;}
.y2a0{bottom:581.595475pt;}
.y140{bottom:584.541333pt;}
.yaf{bottom:588.245333pt;}
.y265{bottom:588.777783pt;}
.y23c{bottom:591.042667pt;}
.y17d{bottom:592.706667pt;}
.y109{bottom:593.009333pt;}
.ye2{bottom:593.840000pt;}
.y29f{bottom:594.295050pt;}
.y10{bottom:594.596000pt;}
.ye1{bottom:596.032000pt;}
.y62{bottom:596.562667pt;}
.y217{bottom:601.322667pt;}
.y2ce{bottom:603.592000pt;}
.y264{bottom:606.087433pt;}
.y17c{bottom:610.016000pt;}
.y108{bottom:610.318667pt;}
.yae{bottom:610.922667pt;}
.ye0{bottom:611.149333pt;}
.y169{bottom:611.301333pt;}
.y29e{bottom:611.604700pt;}
.yf{bottom:613.266667pt;}
.y202{bottom:613.341333pt;}
.y200{bottom:613.344000pt;}
.ydf{bottom:613.417333pt;}
.y23b{bottom:613.720000pt;}
.y61{bottom:613.873333pt;}
.y1c8{bottom:616.064000pt;}
.y2cd{bottom:616.291575pt;}
.y201{bottom:619.237333pt;}
.y263{bottom:623.472816pt;}
.y17b{bottom:627.401333pt;}
.y179{bottom:627.402667pt;}
.y107{bottom:627.629333pt;}
.y29d{bottom:628.991150pt;}
.y1ff{bottom:630.653333pt;}
.yde{bottom:630.728000pt;}
.y60{bottom:631.184000pt;}
.ye{bottom:631.937333pt;}
.y17a{bottom:633.297333pt;}
.y1c7{bottom:633.374667pt;}
.y262{bottom:636.096658pt;}
.y168{bottom:636.624000pt;}
.y29c{bottom:641.613925pt;}
.y178{bottom:644.713333pt;}
.y106{bottom:644.940000pt;}
.y2cc{bottom:646.300800pt;}
.y2f{bottom:647.132000pt;}
.y1fe{bottom:647.964000pt;}
.ydd{bottom:648.038667pt;}
.y5f{bottom:648.569333pt;}
.yad{bottom:649.852000pt;}
.yab{bottom:649.853333pt;}
.yd{bottom:650.608000pt;}
.y261{bottom:653.407375pt;}
.y167{bottom:654.009333pt;}
.yac{bottom:655.824000pt;}
.y29b{bottom:658.924642pt;}
.y177{bottom:662.022667pt;}
.y1c6{bottom:662.024000pt;}
.y105{bottom:662.325333pt;}
.y2e{bottom:662.476000pt;}
.y1fd{bottom:665.349333pt;}
.ydc{bottom:665.424000pt;}
.y5e{bottom:665.878667pt;}
.y8b{bottom:665.880000pt;}
.y260{bottom:666.105883pt;}
.yaa{bottom:667.238667pt;}
.y166{bottom:671.320000pt;}
.y29a{bottom:671.624217pt;}
.y2d{bottom:677.745333pt;}
.y104{bottom:679.634667pt;}
.yc{bottom:679.937333pt;}
.y1fc{bottom:682.660000pt;}
.ydb{bottom:682.733333pt;}
.yd9{bottom:682.734667pt;}
.y5d{bottom:683.189333pt;}
.y25f{bottom:683.416600pt;}
.ya9{bottom:684.548000pt;}
.ya7{bottom:684.549333pt;}
.y165{bottom:686.437333pt;}
.yda{bottom:688.629333pt;}
.y164{bottom:688.630667pt;}
.y299{bottom:688.933867pt;}
.ya8{bottom:690.444000pt;}
.y2c{bottom:693.090667pt;}
.y1c5{bottom:693.620000pt;}
.y1aa{bottom:694.830879pt;}
.y25e{bottom:696.115108pt;}
.y1fb{bottom:699.970667pt;}
.yd8{bottom:700.045333pt;}
.y5c{bottom:700.500000pt;}
.y298{bottom:701.633442pt;}
.ya6{bottom:701.860000pt;}
.y163{bottom:706.017333pt;}
.y2b{bottom:708.434667pt;}
.y25d{bottom:713.425825pt;}
.y2cb{bottom:714.331950pt;}
.yd7{bottom:717.356000pt;}
.y5b{bottom:717.885333pt;}
.y1a9{bottom:718.867912pt;}
.y1c4{bottom:718.942667pt;}
.y297{bottom:718.943092pt;}
.ya5{bottom:719.170667pt;}
.y11c{bottom:720.151459pt;}
.y162{bottom:723.326667pt;}
.y25c{bottom:726.124333pt;}
.y295{bottom:731.642666pt;}
.y296{bottom:731.868797pt;}
.yb{bottom:733.531967pt;}
.y1fa{bottom:734.665333pt;}
.yd6{bottom:734.741333pt;}
.y1a8{bottom:734.817579pt;}
.y5a{bottom:735.196000pt;}
.y1c3{bottom:736.328000pt;}
.y1c1{bottom:736.329333pt;}
.ya4{bottom:736.556000pt;}
.y161{bottom:740.637333pt;}
.y11b{bottom:740.862667pt;}
.y119{bottom:740.863891pt;}
.y1c2{bottom:742.224000pt;}
.y25b{bottom:743.435050pt;}
.y2ca{bottom:744.265442pt;}
.y11a{bottom:745.625333pt;}
.y294{bottom:748.952317pt;}
.y1a7{bottom:750.842979pt;}
.y1f9{bottom:751.976000pt;}
.yd5{bottom:752.050667pt;}
.y59{bottom:752.505333pt;}
.y118{bottom:753.486667pt;}
.y1c0{bottom:753.638667pt;}
.ya3{bottom:753.865333pt;}
.y25a{bottom:756.133558pt;}
.y2c9{bottom:756.965017pt;}
.y160{bottom:758.022667pt;}
.y9{bottom:760.215366pt;}
.ya{bottom:760.442563pt;}
.y293{bottom:761.651891pt;}
.y1a6{bottom:766.868379pt;}
.y1f8{bottom:769.361333pt;}
.y2c7{bottom:769.664591pt;}
.y58{bottom:769.890667pt;}
.y2c8{bottom:769.966454pt;}
.y1bf{bottom:770.949333pt;}
.ya2{bottom:771.176000pt;}
.y259{bottom:773.444275pt;}
.y6{bottom:773.518667pt;}
.y8{bottom:773.744797pt;}
.y7{bottom:773.820530pt;}
.y292{bottom:774.274667pt;}
.yd4{bottom:774.728000pt;}
.y15f{bottom:775.333333pt;}
.y258{bottom:786.143849pt;}
.y1f7{bottom:786.672000pt;}
.y291{bottom:786.974241pt;}
.y57{bottom:787.201333pt;}
.ya1{bottom:788.561333pt;}
.y1a5{bottom:791.888866pt;}
.y15e{bottom:792.642667pt;}
.y5{bottom:797.556000pt;}
.y2c6{bottom:799.598084pt;}
.y1be{bottom:799.598667pt;}
.y257{bottom:803.453500pt;}
.y1f6{bottom:803.981333pt;}
.y290{bottom:804.284958pt;}
.y56{bottom:804.512000pt;}
.ya0{bottom:805.872000pt;}
.y1a4{bottom:808.517991pt;}
.y15d{bottom:810.029333pt;}
.y2c5{bottom:812.296592pt;}
.yd3{bottom:814.790667pt;}
.yd1{bottom:814.792000pt;}
.y256{bottom:816.077342pt;}
.y28f{bottom:816.983466pt;}
.y8a{bottom:819.629833pt;}
.yd2{bottom:820.686667pt;}
.y55{bottom:821.897333pt;}
.y9f{bottom:823.181333pt;}
.y9d{bottom:823.182667pt;}
.y1a3{bottom:825.223916pt;}
.y1f5{bottom:826.658667pt;}
.y15c{bottom:827.338667pt;}
.y9e{bottom:829.153333pt;}
.y2c4{bottom:829.607309pt;}
.y4{bottom:830.817867pt;}
.y1bd{bottom:831.194667pt;}
.yd0{bottom:832.101333pt;}
.y255{bottom:833.462724pt;}
.y89{bottom:834.294183pt;}
.y54{bottom:839.206667pt;}
.y52{bottom:839.208000pt;}
.y1a2{bottom:841.853041pt;}
.y2c3{bottom:842.306883pt;}
.y15b{bottom:844.649333pt;}
.y53{bottom:845.102667pt;}
.y28e{bottom:846.992691pt;}
.y9c{bottom:848.505333pt;}
.ycf{bottom:849.412000pt;}
.y254{bottom:850.773441pt;}
.y51{bottom:856.517333pt;}
.y88{bottom:856.971233pt;}
.y1a1{bottom:858.483233pt;}
.y28c{bottom:859.616533pt;}
.y28d{bottom:859.994129pt;}
.y3{bottom:860.827467pt;}
.y15a{bottom:861.958667pt;}
.y158{bottom:861.960000pt;}
.y253{bottom:863.471949pt;}
.y9b{bottom:865.890667pt;}
.yce{bottom:866.797333pt;}
.y159{bottom:867.930667pt;}
.y87{bottom:871.635583pt;}
.y2c2{bottom:872.316108pt;}
.y50{bottom:873.902667pt;}
.y1a0{bottom:875.189158pt;}
.y252{bottom:876.095791pt;}
.y28b{bottom:876.926184pt;}
.y157{bottom:879.345333pt;}
.y9a{bottom:883.201333pt;}
.ycd{bottom:884.108000pt;}
.y86{bottom:886.299933pt;}
.y28a{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y4f{bottom:891.213333pt;}
.y19f{bottom:891.818283pt;}
.y251{bottom:893.405442pt;}
.y85{bottom:900.964283pt;}
.ycc{bottom:901.417333pt;}
.y289{bottom:902.325333pt;}
.y1bb{bottom:906.330667pt;}
.y1bc{bottom:908.522667pt;}
.y4e{bottom:908.524000pt;}
.y19e{bottom:908.524208pt;}
.y156{bottom:909.808000pt;}
.y250{bottom:910.791891pt;}
.y84{bottom:915.628633pt;}
.ycb{bottom:918.802667pt;}
.y288{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y24f{bottom:923.414667pt;}
.y19b{bottom:925.152781pt;}
.y19d{bottom:925.153333pt;}
.y4d{bottom:925.833333pt;}
.y19c{bottom:929.914667pt;}
.y83{bottom:930.292983pt;}
.y287{bottom:932.258825pt;}
.yc9{bottom:941.404000pt;}
.y4c{bottom:943.218667pt;}
.y82{bottom:944.957333pt;}
.y286{bottom:945.183464pt;}
.yca{bottom:948.585333pt;}
.y28{bottom:984.037333pt;}
.y7f{bottom:990.312000pt;}
.y81{bottom:994.393333pt;}
.h18{height:15.428080pt;}
.he{height:16.478800pt;}
.h16{height:21.330000pt;}
.h12{height:25.312644pt;}
.hd{height:26.663600pt;}
.h8{height:30.916533pt;}
.ha{height:31.603772pt;}
.h14{height:31.996000pt;}
.h15{height:31.999600pt;}
.h1{height:33.066253pt;}
.h1c{height:33.108919pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h3{height:37.248000pt;}
.h13{height:37.973333pt;}
.h17{height:38.564507pt;}
.h5{height:39.266667pt;}
.h7{height:40.000000pt;}
.h11{height:41.333333pt;}
.h1a{height:46.068533pt;}
.h1b{height:46.367200pt;}
.h19{height:46.372533pt;}
.hf{height:46.933333pt;}
.h10{height:47.999600pt;}
.h6{height:49.663586pt;}
.h4{height:63.026667pt;}
.h2{height:78.240000pt;}
.h9{height:88.063659pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:46.261467pt;}
.x9{left:48.000000pt;}
.xa{left:63.496000pt;}
.x8b{left:83.001681pt;}
.x8a{left:85.646981pt;}
.x89{left:88.066151pt;}
.x5e{left:96.000000pt;}
.x61{left:111.042400pt;}
.x62{left:117.543200pt;}
.x63{left:147.250667pt;}
.x64{left:152.994667pt;}
.x65{left:169.852000pt;}
.x69{left:235.237333pt;}
.x1{left:266.682667pt;}
.x8c{left:273.033333pt;}
.x1a{left:279.382667pt;}
.xb{left:282.632000pt;}
.x42{left:283.993333pt;}
.x26{left:289.512000pt;}
.x1b{left:290.494667pt;}
.x43{left:291.628000pt;}
.x27{left:294.274667pt;}
.x9c{left:295.330923pt;}
.x44{left:308.938667pt;}
.x45{left:313.625333pt;}
.xa0{left:315.740995pt;}
.x9d{left:318.084433pt;}
.x28{left:323.301333pt;}
.x8f{left:326.853333pt;}
.x17{left:328.818667pt;}
.x29{left:330.936000pt;}
.x90{left:331.918667pt;}
.x87{left:334.488000pt;}
.x2a{left:337.662667pt;}
.x18{left:340.006667pt;}
.x7c{left:341.064000pt;}
.x2b{left:345.676000pt;}
.x59{left:348.397333pt;}
.x46{left:352.100000pt;}
.x7{left:353.081587pt;}
.x47{left:356.712000pt;}
.x9e{left:365.328642pt;}
.x66{left:368.957333pt;}
.x2{left:370.542702pt;}
.x67{left:373.720000pt;}
.x9f{left:383.016954pt;}
.x49{left:384.076000pt;}
.x9a{left:385.586667pt;}
.x96{left:387.401333pt;}
.x4a{left:390.802667pt;}
.x9b{left:393.826667pt;}
.x97{left:405.316000pt;}
.x5a{left:407.508000pt;}
.xf{left:409.172000pt;}
.x24{left:411.666667pt;}
.x7f{left:412.574667pt;}
.x68{left:414.462667pt;}
.x3d{left:415.672000pt;}
.x10{left:416.881333pt;}
.x19{left:419.981333pt;}
.x6a{left:420.888000pt;}
.x3e{left:422.324000pt;}
.xc{left:424.365333pt;}
.x5b{left:427.389333pt;}
.xd{left:429.429333pt;}
.x94{left:432.453333pt;}
.x79{left:433.360000pt;}
.x6b{left:436.157333pt;}
.x91{left:437.970667pt;}
.x7a{left:439.256000pt;}
.x95{left:440.164000pt;}
.x6c{left:442.432000pt;}
.x8d{left:446.209333pt;}
.x3{left:447.115611pt;}
.x93{left:453.014667pt;}
.x6d{left:456.490667pt;}
.x6e{left:462.765333pt;}
.x4{left:464.728191pt;}
.x55{left:466.242667pt;}
.x80{left:468.661333pt;}
.x6f{left:476.825333pt;}
.x4f{left:482.342667pt;}
.x56{left:484.157333pt;}
.x50{left:487.029333pt;}
.x81{left:489.146667pt;}
.x3a{left:490.506667pt;}
.x3b{left:498.217333pt;}
.xe{left:501.165333pt;}
.x77{left:502.753333pt;}
.x83{left:508.044000pt;}
.x52{left:509.329333pt;}
.x21{left:516.434667pt;}
.x53{left:517.568000pt;}
.x70{left:520.516000pt;}
.x84{left:523.086667pt;}
.x85{left:525.354667pt;}
.x30{left:530.041333pt;}
.x5{left:532.230281pt;}
.x5f{left:533.518667pt;}
.x31{left:535.105333pt;}
.x1e{left:550.298667pt;}
.x7d{left:553.096000pt;}
.x32{left:554.229333pt;}
.x60{left:558.009333pt;}
.x2e{left:559.369333pt;}
.x22{left:560.806667pt;}
.x82{left:564.434667pt;}
.x1f{left:565.341333pt;}
.x7e{left:568.138667pt;}
.x88{left:571.842667pt;}
.x98{left:572.749333pt;}
.x2f{left:573.958667pt;}
.x23{left:578.721333pt;}
.x99{left:592.629333pt;}
.x1c{left:594.520000pt;}
.x20{left:599.281333pt;}
.x71{left:600.264000pt;}
.x7b{left:604.950667pt;}
.x1d{left:607.974667pt;}
.x5c{left:610.922667pt;}
.x86{left:612.585333pt;}
.x72{left:614.777333pt;}
.x54{left:621.202667pt;}
.x5d{left:622.110667pt;}
.x73{left:628.081333pt;}
.x3f{left:631.332000pt;}
.x4b{left:632.466667pt;}
.x74{left:634.356000pt;}
.x40{left:636.094667pt;}
.x4c{left:640.100000pt;}
.x75{left:647.660000pt;}
.x76{left:653.933333pt;}
.x13{left:659.301333pt;}
.x33{left:665.877333pt;}
.x48{left:667.766667pt;}
.x4d{left:669.429333pt;}
.x14{left:670.488000pt;}
.x2c{left:674.041333pt;}
.x78{left:675.098667pt;}
.x8e{left:677.366667pt;}
.x25{left:678.576000pt;}
.x2d{left:681.750667pt;}
.x4e{left:684.472000pt;}
.x34{left:690.746667pt;}
.x35{left:698.381333pt;}
.x57{left:702.236000pt;}
.x3c{left:707.981333pt;}
.x36{left:715.692000pt;}
.x11{left:718.110667pt;}
.x37{left:720.377333pt;}
.x58{left:722.116000pt;}
.x6{left:725.060937pt;}
.x12{left:726.349333pt;}
.x92{left:728.012000pt;}
.x51{left:729.902667pt;}
.x15{left:737.990667pt;}
.x16{left:746.154667pt;}
.x41{left:755.301333pt;}
.x38{left:758.777333pt;}
.x39{left:763.389333pt;}
}




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