
    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_d97d3e8377f79fdf7f57f4d3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7bca33a20f6b6b007af423f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914286;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_69be27921072a6679901fe03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_63fd6e4690c86308b0d949a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b7c2ab1e05137a781e76ada.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;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_ae0f48997b1a4a03c316705c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.019000;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_e628da3c5f9d1854022203a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_7fdf6f6b8aac792638936f86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984333;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_76af68eb53963f26d384a11d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_a0d8cdcc9266747e0b857893.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4fd5913443845c68e036e57a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_66c60eac8460ee64afab6ffc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.019000;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_9476fbc70990d002da5e737f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861000;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_7bca33a20f6b6b007af423f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914286;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_a9719800d19135f80024c29f.woff2')format("woff");}.fff{font-family:fff;line-height:1.045000;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_82fe6ac8b332b336834db114.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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_6f74f52458741b8ab6ecc979.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850000;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_69be27921072a6679901fe03.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984000;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_665e460df817444e47474758.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5210d5b5c0e0f5d9897fe97d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_861fb3aeec04b383fe2cf175.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.984333;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_10799d6c733fead21d519b94.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;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_49099d1c4681559bf42496e6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909180;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_48bd13fba6e08eec4c3a4a5a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.984000;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_c358bbf835735867f6a507db.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4b7c2ab1e05137a781e76ada.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.716000;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;}
.m4{transform:matrix(0.000000,-0.237497,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237497,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237497,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-50.189400px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.500600px;}
.v2{vertical-align:17.106000px;}
.v4{vertical-align:19.440000px;}
.v1{vertical-align:27.000600px;}
.ls96{letter-spacing:-11.070000px;}
.ls98{letter-spacing:-9.315000px;}
.ls11{letter-spacing:-8.849250px;}
.ls8{letter-spacing:-8.370000px;}
.ls10{letter-spacing:-8.208000px;}
.ls9d{letter-spacing:-6.026400px;}
.lsf{letter-spacing:-4.873500px;}
.ls9b{letter-spacing:-1.548000px;}
.lsa2{letter-spacing:-0.960000px;}
.lsa1{letter-spacing:-0.816000px;}
.ls37{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.259200px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000300px;}
.ls2b{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.025200px;}
.ls75{letter-spacing:0.043200px;}
.ls1c{letter-spacing:0.055200px;}
.lsc{letter-spacing:0.057000px;}
.ls81{letter-spacing:0.059400px;}
.ls92{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.064800px;}
.ls72{letter-spacing:0.082800px;}
.lsaa{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.114000px;}
.ls2{letter-spacing:0.121200px;}
.ls5e{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.129600px;}
.lsa8{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.171000px;}
.ls79{letter-spacing:0.172800px;}
.ls54{letter-spacing:0.191400px;}
.lse{letter-spacing:0.194400px;}
.ls78{letter-spacing:0.201000px;}
.ls91{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.252000px;}
.ls17{letter-spacing:0.259200px;}
.ls28{letter-spacing:0.274555px;}
.ls6{letter-spacing:0.283500px;}
.ls6d{letter-spacing:0.288000px;}
.ls82{letter-spacing:0.322200px;}
.ls19{letter-spacing:0.324000px;}
.ls50{letter-spacing:0.324600px;}
.lsb{letter-spacing:0.342000px;}
.lsa9{letter-spacing:0.378000px;}
.ls9c{letter-spacing:0.384000px;}
.ls1d{letter-spacing:0.388800px;}
.ls27{letter-spacing:0.405600px;}
.ls30{letter-spacing:0.408600px;}
.ls31{letter-spacing:0.417600px;}
.ls4d{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.422400px;}
.lsb0{letter-spacing:0.432000px;}
.ls6b{letter-spacing:0.433200px;}
.ls2f{letter-spacing:0.441000px;}
.ls94{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.453600px;}
.ls2e{letter-spacing:0.456000px;}
.ls8e{letter-spacing:0.462000px;}
.ls95{letter-spacing:0.462600px;}
.ls90{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.518400px;}
.ls3a{letter-spacing:0.583200px;}
.ls32{letter-spacing:0.627000px;}
.ls15{letter-spacing:0.648000px;}
.ls3c{letter-spacing:0.705600px;}
.ls29{letter-spacing:0.712800px;}
.ls8b{letter-spacing:0.726600px;}
.lsb2{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.777600px;}
.ls42{letter-spacing:0.787800px;}
.ls88{letter-spacing:0.825000px;}
.ls4a{letter-spacing:0.835200px;}
.ls2a{letter-spacing:0.842400px;}
.ls7f{letter-spacing:0.858600px;}
.ls80{letter-spacing:0.859200px;}
.ls1b{letter-spacing:0.907200px;}
.lsab{letter-spacing:0.918000px;}
.ls7d{letter-spacing:0.964200px;}
.ls7b{letter-spacing:0.964800px;}
.ls14{letter-spacing:0.972000px;}
.lsb3{letter-spacing:1.026000px;}
.ls35{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.082400px;}
.ls39{letter-spacing:1.101600px;}
.ls5a{letter-spacing:1.132800px;}
.lsac{letter-spacing:1.134000px;}
.ls33{letter-spacing:1.140000px;}
.ls23{letter-spacing:1.166400px;}
.ls5c{letter-spacing:1.296000px;}
.lsa5{letter-spacing:1.350000px;}
.ls18{letter-spacing:1.425600px;}
.ls63{letter-spacing:1.446600px;}
.ls3d{letter-spacing:1.490400px;}
.ls36{letter-spacing:1.539000px;}
.ls2c{letter-spacing:1.555200px;}
.ls22{letter-spacing:1.620000px;}
.ls67{letter-spacing:1.628400px;}
.ls68{letter-spacing:1.629000px;}
.ls48{letter-spacing:1.645800px;}
.ls9f{letter-spacing:1.728000px;}
.ls55{letter-spacing:1.749600px;}
.ls57{letter-spacing:1.768200px;}
.ls38{letter-spacing:1.814400px;}
.ls51{letter-spacing:1.845600px;}
.ls4f{letter-spacing:1.846200px;}
.ls52{letter-spacing:2.073600px;}
.ls93{letter-spacing:2.100000px;}
.ls1f{letter-spacing:2.185200px;}
.ls85{letter-spacing:2.197800px;}
.ls86{letter-spacing:2.198400px;}
.lsae{letter-spacing:2.322000px;}
.ls2d{letter-spacing:2.508000px;}
.lsa0{letter-spacing:2.544000px;}
.lsb1{letter-spacing:2.808000px;}
.ls99{letter-spacing:3.000000px;}
.ls6f{letter-spacing:3.015600px;}
.ls62{letter-spacing:3.100800px;}
.ls61{letter-spacing:3.101400px;}
.ls97{letter-spacing:3.420000px;}
.lsa4{letter-spacing:3.618000px;}
.lsb4{letter-spacing:3.780000px;}
.ls64{letter-spacing:4.044000px;}
.ls65{letter-spacing:4.044600px;}
.ls45{letter-spacing:4.062000px;}
.ls46{letter-spacing:4.062600px;}
.lsaf{letter-spacing:4.104000px;}
.ls69{letter-spacing:4.156200px;}
.ls6a{letter-spacing:4.156800px;}
.ls44{letter-spacing:4.258800px;}
.ls24{letter-spacing:4.454400px;}
.lsa3{letter-spacing:4.704000px;}
.ls73{letter-spacing:5.198400px;}
.ls9e{letter-spacing:5.376000px;}
.ls3e{letter-spacing:6.045000px;}
.lsad{letter-spacing:6.588000px;}
.ls40{letter-spacing:6.618600px;}
.ls3f{letter-spacing:6.619200px;}
.ls60{letter-spacing:6.622800px;}
.ls70{letter-spacing:7.120800px;}
.ls84{letter-spacing:7.261800px;}
.ls83{letter-spacing:7.262400px;}
.lsa7{letter-spacing:7.452000px;}
.ls66{letter-spacing:7.664400px;}
.ls4b{letter-spacing:8.099400px;}
.ls74{letter-spacing:8.142600px;}
.ls76{letter-spacing:8.143200px;}
.ls71{letter-spacing:8.183400px;}
.ls5d{letter-spacing:8.226000px;}
.ls5f{letter-spacing:8.226600px;}
.lsa6{letter-spacing:8.262000px;}
.ls53{letter-spacing:8.290800px;}
.ls77{letter-spacing:8.301000px;}
.ls6e{letter-spacing:8.388000px;}
.ls6c{letter-spacing:8.388600px;}
.ls1a{letter-spacing:8.402400px;}
.ls4c{letter-spacing:8.519400px;}
.ls4e{letter-spacing:8.520000px;}
.ls8d{letter-spacing:8.562600px;}
.ls8f{letter-spacing:8.563200px;}
.ls3b{letter-spacing:8.805600px;}
.ls8a{letter-spacing:8.826600px;}
.ls8c{letter-spacing:8.827200px;}
.ls43{letter-spacing:8.887800px;}
.ls41{letter-spacing:8.888400px;}
.ls89{letter-spacing:8.924400px;}
.ls87{letter-spacing:8.925000px;}
.ls49{letter-spacing:8.935200px;}
.ls7e{letter-spacing:8.959200px;}
.ls7c{letter-spacing:9.064200px;}
.ls7a{letter-spacing:9.064800px;}
.ls5b{letter-spacing:9.232800px;}
.ls59{letter-spacing:9.233400px;}
.ls47{letter-spacing:9.746400px;}
.ls56{letter-spacing:9.868200px;}
.ls58{letter-spacing:9.868800px;}
.ls0{letter-spacing:10.656000px;}
.ls25{letter-spacing:13.606200px;}
.ls9a{letter-spacing:53.708842px;}
.ls9{letter-spacing:1500.845400px;}
.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;}
}
.ws28{word-spacing:-65.577600px;}
.ws22{word-spacing:-64.929600px;}
.ws23{word-spacing:-64.800000px;}
.ws3d{word-spacing:-60.240000px;}
.ws3b{word-spacing:-60.000000px;}
.ws2b{word-spacing:-57.000000px;}
.ws1d{word-spacing:-55.080000px;}
.ws1a{word-spacing:-54.000000px;}
.ws26{word-spacing:-39.657600px;}
.ws39{word-spacing:-39.600000px;}
.ws2a{word-spacing:-38.491200px;}
.ws20{word-spacing:-38.361600px;}
.ws1f{word-spacing:-38.102400px;}
.ws8a{word-spacing:-19.818000px;}
.ws35{word-spacing:-17.949600px;}
.ws2f{word-spacing:-17.820000px;}
.ws2e{word-spacing:-17.690400px;}
.ws36{word-spacing:-17.301600px;}
.ws10{word-spacing:-17.172000px;}
.ws87{word-spacing:-17.118000px;}
.ws38{word-spacing:-17.107200px;}
.ws30{word-spacing:-17.042400px;}
.ws27{word-spacing:-16.977600px;}
.ws19{word-spacing:-16.912800px;}
.ws33{word-spacing:-16.848000px;}
.ws3a{word-spacing:-16.783200px;}
.ws37{word-spacing:-16.653600px;}
.ws32{word-spacing:-16.588800px;}
.ws31{word-spacing:-16.524000px;}
.ws1b{word-spacing:-16.459200px;}
.ws34{word-spacing:-16.394400px;}
.ws21{word-spacing:-16.329600px;}
.ws11{word-spacing:-16.264800px;}
.wsf{word-spacing:-16.200000px;}
.ws8b{word-spacing:-15.822000px;}
.ws7{word-spacing:-15.750000px;}
.ws2c{word-spacing:-15.552000px;}
.ws3c{word-spacing:-15.000000px;}
.ws89{word-spacing:-14.418000px;}
.ws9{word-spacing:-14.250000px;}
.ws15{word-spacing:-13.622400px;}
.ws86{word-spacing:-13.500000px;}
.wse{word-spacing:-13.344000px;}
.ws88{word-spacing:-13.230000px;}
.ws2d{word-spacing:-13.200000px;}
.ws82{word-spacing:-12.000000px;}
.ws83{word-spacing:-11.760000px;}
.ws40{word-spacing:-11.700000px;}
.ws84{word-spacing:-10.800000px;}
.ws12{word-spacing:-10.529850px;}
.ws3{word-spacing:-9.576000px;}
.ws5{word-spacing:-9.324000px;}
.ws2{word-spacing:-9.262350px;}
.ws14{word-spacing:-8.854405px;}
.ws13{word-spacing:-8.579850px;}
.wsb{word-spacing:-5.814000px;}
.wsa{word-spacing:-0.399000px;}
.ws4{word-spacing:-0.315000px;}
.ws1{word-spacing:-0.057000px;}
.ws8{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:5.728500px;}
.wsd{word-spacing:7.011000px;}
.ws3f{word-spacing:7.380000px;}
.ws3e{word-spacing:10.890000px;}
.ws80{word-spacing:12.004200px;}
.ws0{word-spacing:16.672500px;}
.ws16{word-spacing:62.221800px;}
.ws25{word-spacing:70.128150px;}
.ws7a{word-spacing:70.901811px;}
.ws17{word-spacing:80.365800px;}
.ws18{word-spacing:102.505800px;}
.ws63{word-spacing:121.727811px;}
.ws1e{word-spacing:136.470000px;}
.ws7b{word-spacing:139.013179px;}
.ws29{word-spacing:141.146550px;}
.ws7c{word-spacing:160.169811px;}
.ws55{word-spacing:179.418000px;}
.ws56{word-spacing:179.957400px;}
.ws65{word-spacing:187.826779px;}
.ws44{word-spacing:203.016600px;}
.ws70{word-spacing:206.247979px;}
.ws57{word-spacing:206.958000px;}
.ws78{word-spacing:209.085979px;}
.ws77{word-spacing:209.086611px;}
.ws24{word-spacing:217.257600px;}
.ws7e{word-spacing:228.281179px;}
.ws7d{word-spacing:228.281811px;}
.ws68{word-spacing:231.377811px;}
.ws5b{word-spacing:231.906000px;}
.ws5a{word-spacing:231.906600px;}
.ws5c{word-spacing:238.061400px;}
.ws75{word-spacing:239.788611px;}
.ws54{word-spacing:245.675400px;}
.ws53{word-spacing:245.676000px;}
.ws74{word-spacing:256.299979px;}
.ws73{word-spacing:256.300611px;}
.ws48{word-spacing:257.178000px;}
.ws67{word-spacing:265.071979px;}
.ws6e{word-spacing:265.072611px;}
.ws1c{word-spacing:271.797000px;}
.ws6d{word-spacing:275.907979px;}
.ws6c{word-spacing:275.908611px;}
.ws76{word-spacing:278.282211px;}
.ws59{word-spacing:278.723400px;}
.ws58{word-spacing:278.724000px;}
.ws66{word-spacing:280.500379px;}
.ws5f{word-spacing:284.718000px;}
.ws4d{word-spacing:284.987400px;}
.ws4c{word-spacing:284.988000px;}
.ws61{word-spacing:286.950379px;}
.ws60{word-spacing:286.951011px;}
.ws79{word-spacing:287.053579px;}
.ws5e{word-spacing:288.281400px;}
.ws5d{word-spacing:288.282000px;}
.ws4f{word-spacing:302.537400px;}
.ws4e{word-spacing:302.538000px;}
.ws52{word-spacing:305.831400px;}
.ws69{word-spacing:306.094611px;}
.ws4a{word-spacing:308.801400px;}
.ws49{word-spacing:308.802000px;}
.ws72{word-spacing:312.182779px;}
.ws71{word-spacing:312.183411px;}
.ws45{word-spacing:318.737400px;}
.ws6f{word-spacing:322.658211px;}
.ws6b{word-spacing:329.881579px;}
.ws6a{word-spacing:329.882211px;}
.ws64{word-spacing:330.449179px;}
.ws7f{word-spacing:331.120611px;}
.ws4b{word-spacing:335.802000px;}
.ws43{word-spacing:356.105400px;}
.ws42{word-spacing:356.106000px;}
.ws51{word-spacing:364.367400px;}
.ws50{word-spacing:364.368000px;}
.ws62{word-spacing:400.418779px;}
.ws41{word-spacing:401.519400px;}
.ws47{word-spacing:405.731400px;}
.ws46{word-spacing:405.732000px;}
.ws85{word-spacing:455.463300px;}
.ws81{word-spacing:709.153895px;}
._12{margin-left:-2104.445400px;}
._13{margin-left:-1824.509400px;}
._2b{margin-left:-16.595400px;}
._11{margin-left:-15.270000px;}
._1{margin-left:-10.663200px;}
._9{margin-left:-9.324000px;}
._2a{margin-left:-5.508000px;}
._21{margin-left:-4.471200px;}
._c{margin-left:-2.400000px;}
._10{margin-left:-1.296000px;}
._5{width:1.706400px;}
._3{width:3.309600px;}
._2{width:4.784400px;}
._4{width:6.045600px;}
._7{width:7.075200px;}
._6{width:8.090400px;}
._e{width:9.098400px;}
._b{width:10.654800px;}
._8{width:11.676000px;}
._0{width:13.344000px;}
._d{width:16.848000px;}
._22{width:26.696400px;}
._23{width:45.300000px;}
._7a{width:48.579600px;}
._2f{width:51.023400px;}
._52{width:53.708842px;}
._54{width:58.413979px;}
._24{width:64.315200px;}
._61{width:67.031179px;}
._15{width:76.369800px;}
._17{width:80.041800px;}
._14{width:89.125200px;}
._55{width:90.869747px;}
._1c{width:92.293200px;}
._18{width:102.505800px;}
._19{width:108.793200px;}
._16{width:128.017200px;}
._1e{width:129.912000px;}
._6a{width:139.945832px;}
._74{width:146.494547px;}
._27{width:149.199000px;}
._6c{width:150.983747px;}
._6d{width:159.395179px;}
._1d{width:160.499400px;}
._20{width:167.470200px;}
._34{width:168.671400px;}
._73{width:172.293916px;}
._28{width:175.983000px;}
._1f{width:180.969600px;}
._6b{width:185.195179px;}
._29{width:189.483000px;}
._33{width:195.672000px;}
._58{width:197.269579px;}
._46{width:198.695400px;}
._47{width:200.585400px;}
._57{width:209.909684px;}
._5e{width:212.801179px;}
._32{width:216.514800px;}
._3e{width:219.486000px;}
._25{width:222.001200px;}
._45{width:225.696000px;}
._59{width:230.499347px;}
._62{width:232.198295px;}
._53{width:242.057116px;}
._44{width:243.300000px;}
._4a{width:251.562000px;}
._56{width:259.705579px;}
._75{width:261.974716px;}
._3f{width:263.765400px;}
._37{width:265.871400px;}
._70{width:267.030253px;}
._68{width:269.579305px;}
._3b{width:270.893400px;}
._26{width:275.612400px;}
._60{width:277.971979px;}
._40{width:279.588000px;}
._48{width:282.828000px;}
._6e{width:289.685179px;}
._63{width:291.760926px;}
._35{width:292.872000px;}
._3c{width:297.894000px;}
._5f{width:299.179579px;}
._4d{width:301.134000px;}
._39{width:302.321400px;}
._66{width:304.596316px;}
._36{width:306.047400px;}
._3d{width:308.963400px;}
._64{width:318.992716px;}
._5c{width:320.025979px;}
._4b{width:323.382000px;}
._42{width:324.569400px;}
._71{width:327.149274px;}
._38{width:329.322000px;}
._77{width:332.046884px;}
._49{width:333.316800px;}
._67{width:335.556316px;}
._43{width:341.580000px;}
._5a{width:343.349179px;}
._5d{width:345.825347px;}
._4c{width:349.410000px;}
._41{width:351.570000px;}
._78{width:356.816779px;}
._65{width:357.848779px;}
._31{width:360.263400px;}
._6f{width:361.305347px;}
._76{width:370.748779px;}
._79{width:377.404547px;}
._5b{width:380.345747px;}
._69{width:383.957747px;}
._30{width:387.264000px;}
._3a{width:396.952200px;}
._72{width:403.212726px;}
._2c{width:413.445000px;}
._2e{width:420.689400px;}
._2d{width:423.907200px;}
._4e{width:427.081421px;}
._1a{width:434.319000px;}
._4f{width:437.543211px;}
._7d{width:440.590200px;}
._50{width:453.631263px;}
._7e{width:455.215200px;}
._51{width:462.765789px;}
._1b{width:464.667000px;}
._7f{width:477.392400px;}
._7c{width:586.790400px;}
._7b{width:726.297632px;}
._f{width:1171.288200px;}
._a{width:1519.516800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs18{font-size:29.250000px;}
.fsc{font-size:31.500000px;}
.fs9{font-size:34.319400px;}
.fs15{font-size:35.099400px;}
.fs8{font-size:37.049400px;}
.fs14{font-size:38.999400px;}
.fsb{font-size:42.000000px;}
.fs11{font-size:42.119400px;}
.fse{font-size:42.750000px;}
.fs10{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs17{font-size:48.600000px;}
.fs1{font-size:51.000000px;}
.fs16{font-size:51.600000px;}
.fsa{font-size:52.800000px;}
.fs13{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:58.499400px;}
.fs12{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fsf{font-size:64.800000px;}
.fsd{font-size:66.000000px;}
.fs3{font-size:67.500000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y270{bottom:68.823150px;}
.y15d{bottom:68.824650px;}
.y2a{bottom:68.825100px;}
.y112{bottom:68.825400px;}
.y2cc{bottom:68.826150px;}
.y29d{bottom:72.097500px;}
.y16a{bottom:72.099000px;}
.y57{bottom:72.099450px;}
.y122{bottom:72.099750px;}
.y2fa{bottom:72.100500px;}
.y2ca{bottom:107.147550px;}
.y39b{bottom:107.147700px;}
.y29c{bottom:107.147850px;}
.y28{bottom:107.148150px;}
.y244{bottom:107.149200px;}
.y1f4{bottom:107.149350px;}
.y1ac{bottom:107.149800px;}
.y324{bottom:107.150550px;}
.y3a4{bottom:107.150700px;}
.y110{bottom:107.185200px;}
.y150{bottom:107.572500px;}
.y18f{bottom:107.642700px;}
.y121{bottom:107.702250px;}
.y10a{bottom:107.818950px;}
.y333{bottom:108.104700px;}
.y56{bottom:108.148650px;}
.y35f{bottom:108.460800px;}
.y2f9{bottom:108.462750px;}
.yb8{bottom:108.463350px;}
.yc5{bottom:108.463500px;}
.y169{bottom:108.551400px;}
.y21b{bottom:108.868800px;}
.y39f{bottom:109.167450px;}
.y3a3{bottom:110.412450px;}
.y82{bottom:111.109500px;}
.y3a9{bottom:112.609050px;}
.y3ac{bottom:112.711650px;}
.y3b2{bottom:115.169850px;}
.y3b5{bottom:115.291350px;}
.y39e{bottom:115.917450px;}
.y3b0{bottom:116.160150px;}
.y3a2{bottom:116.539950px;}
.y38a{bottom:117.258600px;}
.y3bd{bottom:117.922650px;}
.y3be{bottom:118.739400px;}
.y27{bottom:119.149650px;}
.y3b7{bottom:119.375100px;}
.y2c9{bottom:121.540050px;}
.y1ab{bottom:121.542300px;}
.y323{bottom:121.543050px;}
.y14f{bottom:123.559500px;}
.y168{bottom:124.538400px;}
.y29b{bottom:124.979550px;}
.y26e{bottom:124.980750px;}
.y109{bottom:125.415450px;}
.y243{bottom:125.501700px;}
.y1f3{bottom:125.501850px;}
.y81{bottom:125.502000px;}
.y332{bottom:125.701200px;}
.y55{bottom:125.745150px;}
.y35e{bottom:126.057300px;}
.y2f8{bottom:126.059250px;}
.yb7{bottom:126.059850px;}
.yc4{bottom:126.060000px;}
.y21a{bottom:126.465300px;}
.y39c{bottom:128.407500px;}
.y3a0{bottom:128.407650px;}
.y3a5{bottom:128.410500px;}
.y3ba{bottom:128.410650px;}
.y12e{bottom:129.554250px;}
.y10f{bottom:131.159700px;}
.y120{bottom:131.676750px;}
.y18e{bottom:134.036550px;}
.y389{bottom:134.855100px;}
.y26{bottom:135.401550px;}
.y1aa{bottom:135.934800px;}
.y322{bottom:135.935550px;}
.y15b{bottom:135.942450px;}
.y14e{bottom:139.546350px;}
.y2c8{bottom:139.892700px;}
.ye8{bottom:139.894500px;}
.y167{bottom:140.525400px;}
.y29a{bottom:142.811250px;}
.y26d{bottom:142.812450px;}
.y108{bottom:143.011950px;}
.y54{bottom:143.341650px;}
.y35d{bottom:143.653800px;}
.yb6{bottom:143.656500px;}
.y219{bottom:144.061800px;}
.y12d{bottom:147.150750px;}
.y2c7{bottom:150.325050px;}
.ye7{bottom:150.326850px;}
.y25{bottom:150.849600px;}
.y331{bottom:152.095050px;}
.y388{bottom:152.451600px;}
.y2f7{bottom:152.453100px;}
.y1a9{bottom:154.287300px;}
.y321{bottom:154.288050px;}
.y14d{bottom:155.533500px;}
.y3aa{bottom:156.261000px;}
.y166{bottom:156.512400px;}
.y15a{bottom:159.916800px;}
.y18d{bottom:160.430400px;}
.y107{bottom:160.608450px;}
.y299{bottom:160.642800px;}
.y26c{bottom:160.644150px;}
.y53{bottom:160.938150px;}
.y35c{bottom:161.250300px;}
.yb5{bottom:161.252850px;}
.ya3{bottom:161.253000px;}
.y218{bottom:161.658300px;}
.y12c{bottom:164.747250px;}
.y3b8{bottom:164.764800px;}
.y1f2{bottom:165.321750px;}
.y24{bottom:166.282500px;}
.y2c6{bottom:168.677700px;}
.ye6{bottom:168.679500px;}
.y242{bottom:169.302150px;}
.y387{bottom:170.048100px;}
.y2f6{bottom:170.049600px;}
.y14c{bottom:171.520500px;}
.y80{bottom:175.738500px;}
.y23{bottom:177.463500px;}
.y18c{bottom:178.026900px;}
.y106{bottom:178.204950px;}
.y298{bottom:178.474500px;}
.y26b{bottom:178.475700px;}
.y52{bottom:178.534650px;}
.y35b{bottom:178.846800px;}
.yb4{bottom:178.849350px;}
.ya2{bottom:178.849500px;}
.y217{bottom:179.254800px;}
.y39d{bottom:180.062700px;}
.y165{bottom:181.296750px;}
.y3a1{bottom:181.423800px;}
.y12b{bottom:182.343750px;}
.y1f1{bottom:182.918250px;}
.ye5{bottom:183.072000px;}
.y241{bottom:186.898650px;}
.y386{bottom:187.644600px;}
.y2f5{bottom:187.646100px;}
.y22{bottom:192.896400px;}
.y7f{bottom:193.334850px;}
.y18b{bottom:195.623400px;}
.y105{bottom:195.801450px;}
.y330{bottom:196.083600px;}
.y51{bottom:196.131150px;}
.y297{bottom:196.306200px;}
.y26a{bottom:196.307400px;}
.y35a{bottom:196.443300px;}
.yb3{bottom:196.445850px;}
.ya1{bottom:196.446000px;}
.y216{bottom:196.851300px;}
.ye4{bottom:197.464500px;}
.y12a{bottom:199.940250px;}
.y14b{bottom:200.263350px;}
.y1f0{bottom:200.514750px;}
.y21{bottom:204.077400px;}
.y240{bottom:204.495150px;}
.y320{bottom:204.906000px;}
.y385{bottom:205.241100px;}
.y2f4{bottom:205.242600px;}
.y164{bottom:207.690600px;}
.y1cd{bottom:208.021200px;}
.y7e{bottom:210.931350px;}
.ye3{bottom:211.857000px;}
.y18a{bottom:213.219900px;}
.y104{bottom:213.397950px;}
.y50{bottom:213.727650px;}
.y2c5{bottom:214.036950px;}
.y359{bottom:214.039800px;}
.yb2{bottom:214.042350px;}
.ya0{bottom:214.042500px;}
.y296{bottom:214.137750px;}
.y269{bottom:214.139100px;}
.y215{bottom:214.447800px;}
.y129{bottom:217.536750px;}
.y14a{bottom:217.859850px;}
.y1ef{bottom:218.111250px;}
.y32f{bottom:220.057950px;}
.y23f{bottom:222.091650px;}
.y31f{bottom:222.502500px;}
.y384{bottom:222.837600px;}
.y2f3{bottom:222.839100px;}
.y1cc{bottom:225.617700px;}
.ye2{bottom:226.249500px;}
.y3bc{bottom:227.310750px;}
.y3b1{bottom:227.312100px;}
.y3a6{bottom:230.896800px;}
.y103{bottom:230.994450px;}
.y4f{bottom:231.324150px;}
.y2c4{bottom:231.633450px;}
.y358{bottom:231.636300px;}
.yb1{bottom:231.638850px;}
.y9f{bottom:231.639000px;}
.y295{bottom:231.969450px;}
.y268{bottom:231.970650px;}
.y128{bottom:235.133250px;}
.y20{bottom:235.156350px;}
.y1ee{bottom:235.707750px;}
.y7d{bottom:237.325200px;}
.y189{bottom:239.613600px;}
.y23e{bottom:239.688150px;}
.y383{bottom:240.434100px;}
.y2f2{bottom:240.435600px;}
.ye1{bottom:240.642000px;}
.y214{bottom:240.841650px;}
.y1cb{bottom:243.214200px;}
.y149{bottom:244.253700px;}
.y102{bottom:248.590950px;}
.y31e{bottom:248.896350px;}
.y2c3{bottom:249.229800px;}
.y357{bottom:249.232800px;}
.yb0{bottom:249.235350px;}
.y9e{bottom:249.235500px;}
.y1f{bottom:249.544350px;}
.y294{bottom:249.801000px;}
.y267{bottom:249.802350px;}
.y163{bottom:251.679000px;}
.y127{bottom:252.729750px;}
.y1ed{bottom:253.304250px;}
.y7c{bottom:253.312200px;}
.y3a7{bottom:255.883950px;}
.y23d{bottom:257.284650px;}
.y4e{bottom:257.718000px;}
.y382{bottom:258.030600px;}
.y2f1{bottom:258.032100px;}
.yc3{bottom:258.032850px;}
.y1ca{bottom:260.810700px;}
.y1e{bottom:263.932350px;}
.y188{bottom:266.007450px;}
.y101{bottom:266.187450px;}
.y2c2{bottom:266.826300px;}
.y356{bottom:266.829300px;}
.yaf{bottom:266.831850px;}
.y9d{bottom:266.832000px;}
.y213{bottom:267.235500px;}
.y293{bottom:267.632700px;}
.y266{bottom:267.633900px;}
.y162{bottom:269.275500px;}
.y7b{bottom:269.299200px;}
.y1ec{bottom:270.900750px;}
.y1a8{bottom:274.180650px;}
.y23c{bottom:274.881150px;}
.y381{bottom:275.627100px;}
.y2f0{bottom:275.628600px;}
.y1d{bottom:278.320350px;}
.y1c9{bottom:278.407200px;}
.y187{bottom:283.603950px;}
.y100{bottom:283.783950px;}
.y2c1{bottom:284.422800px;}
.y355{bottom:284.425800px;}
.yae{bottom:284.428350px;}
.y9c{bottom:284.428500px;}
.y7a{bottom:285.286200px;}
.y292{bottom:285.464400px;}
.y265{bottom:285.465600px;}
.y148{bottom:288.242100px;}
.y1eb{bottom:288.497250px;}
.y1a7{bottom:291.777150px;}
.y23b{bottom:292.477650px;}
.y1c{bottom:292.708350px;}
.y31d{bottom:292.884900px;}
.y4d{bottom:292.909200px;}
.y380{bottom:293.223600px;}
.y2ef{bottom:293.225100px;}
.y212{bottom:293.629200px;}
.y1c8{bottom:296.003700px;}
.y126{bottom:296.718150px;}
.y186{bottom:301.200450px;}
.y79{bottom:301.273200px;}
.y2c0{bottom:302.019450px;}
.yc2{bottom:302.021250px;}
.y354{bottom:302.022300px;}
.yad{bottom:302.024850px;}
.y9b{bottom:302.025000px;}
.ye0{bottom:302.026800px;}
.y291{bottom:303.295950px;}
.y264{bottom:303.297300px;}
.y147{bottom:305.838600px;}
.y1ea{bottom:306.093750px;}
.y1a6{bottom:309.373650px;}
.y23a{bottom:310.074150px;}
.yff{bottom:310.177800px;}
.y31c{bottom:310.481400px;}
.y37f{bottom:310.820100px;}
.y2ee{bottom:310.821600px;}
.y1b{bottom:311.056350px;}
.y211{bottom:311.225700px;}
.y161{bottom:313.264050px;}
.y1c7{bottom:313.600200px;}
.y185{bottom:318.796950px;}
.y2bf{bottom:319.615800px;}
.yc1{bottom:319.617900px;}
.y353{bottom:319.618800px;}
.yac{bottom:319.621350px;}
.y9a{bottom:319.621500px;}
.ydf{bottom:319.623300px;}
.y125{bottom:320.692650px;}
.y290{bottom:321.127650px;}
.y146{bottom:323.435100px;}
.y1e9{bottom:323.690250px;}
.y78{bottom:326.057550px;}
.yfe{bottom:326.164800px;}
.y1a5{bottom:326.970150px;}
.y239{bottom:327.670650px;}
.y31b{bottom:328.077900px;}
.y37e{bottom:328.416600px;}
.y2ed{bottom:328.418100px;}
.y210{bottom:328.822200px;}
.y263{bottom:329.926200px;}
.y1c6{bottom:331.196700px;}
.y184{bottom:336.393450px;}
.y2be{bottom:337.212450px;}
.yc0{bottom:337.214250px;}
.y352{bottom:337.215300px;}
.y99{bottom:337.218000px;}
.yde{bottom:337.219800px;}
.y160{bottom:337.238400px;}
.y28f{bottom:338.959350px;}
.y145{bottom:341.031600px;}
.y1e8{bottom:341.286750px;}
.yfd{bottom:342.151800px;}
.y1a4{bottom:344.566650px;}
.y238{bottom:345.267150px;}
.y31a{bottom:345.674400px;}
.y37d{bottom:346.013100px;}
.y2ec{bottom:346.014600px;}
.y20f{bottom:346.418700px;}
.y3ab{bottom:346.749150px;}
.y262{bottom:347.757900px;}
.y1c5{bottom:348.793200px;}
.y4c{bottom:349.653600px;}
.y77{bottom:352.451400px;}
.y3b3{bottom:353.127000px;}
.y1a{bottom:354.008250px;}
.y2bd{bottom:354.808800px;}
.ybf{bottom:354.810750px;}
.y351{bottom:354.811800px;}
.yab{bottom:354.814350px;}
.y98{bottom:354.814500px;}
.ydd{bottom:354.816300px;}
.y28e{bottom:356.790900px;}
.yfc{bottom:358.138800px;}
.y1a3{bottom:362.163150px;}
.y183{bottom:362.787300px;}
.y237{bottom:362.863650px;}
.y319{bottom:363.270900px;}
.y37c{bottom:363.609600px;}
.y2eb{bottom:363.611100px;}
.y20e{bottom:364.015200px;}
.y261{bottom:365.589450px;}
.y4b{bottom:365.640450px;}
.y1e7{bottom:367.680600px;}
.y76{bottom:368.438400px;}
.y19{bottom:369.996750px;}
.y144{bottom:371.384100px;}
.y2bc{bottom:372.405300px;}
.ybe{bottom:372.407250px;}
.y350{bottom:372.408300px;}
.yaa{bottom:372.410850px;}
.y97{bottom:372.411000px;}
.ydc{bottom:372.412800px;}
.y28d{bottom:374.622600px;}
.y1c4{bottom:375.187050px;}
.y236{bottom:380.460150px;}
.y318{bottom:380.867400px;}
.y37b{bottom:381.206100px;}
.y2ea{bottom:381.207600px;}
.y20d{bottom:381.611700px;}
.yfb{bottom:382.923150px;}
.y260{bottom:383.421150px;}
.y75{bottom:384.425400px;}
.y4a{bottom:385.879500px;}
.y18{bottom:385.985250px;}
.y143{bottom:387.371100px;}
.y1a2{bottom:388.557000px;}
.y2bb{bottom:390.001950px;}
.ybd{bottom:390.003900px;}
.y34f{bottom:390.004800px;}
.ya9{bottom:390.007350px;}
.y96{bottom:390.007500px;}
.ydb{bottom:390.009300px;}
.y28c{bottom:392.454300px;}
.y1e6{bottom:394.074300px;}
.y235{bottom:398.056650px;}
.y317{bottom:398.463900px;}
.y37a{bottom:398.802600px;}
.y2e9{bottom:398.804100px;}
.y20c{bottom:399.208350px;}
.y74{bottom:400.412400px;}
.y11f{bottom:400.936950px;}
.y25f{bottom:401.252850px;}
.y1c3{bottom:401.580900px;}
.y49{bottom:401.866500px;}
.y17{bottom:401.973750px;}
.y142{bottom:403.357950px;}
.y182{bottom:403.965600px;}
.y2ba{bottom:407.598300px;}
.ybc{bottom:407.600250px;}
.y34e{bottom:407.601300px;}
.y32e{bottom:407.601450px;}
.y95{bottom:407.604000px;}
.yda{bottom:407.605800px;}
.yfa{bottom:409.317000px;}
.y28b{bottom:410.285850px;}
.y1a1{bottom:414.950850px;}
.y234{bottom:415.653150px;}
.y316{bottom:416.060400px;}
.y379{bottom:416.399100px;}
.y2e8{bottom:416.400600px;}
.y20b{bottom:416.804700px;}
.y48{bottom:417.853500px;}
.y16{bottom:417.956400px;}
.y25e{bottom:419.084400px;}
.y141{bottom:419.345100px;}
.y1e5{bottom:420.468150px;}
.y11e{bottom:424.911300px;}
.y2b9{bottom:425.194950px;}
.y73{bottom:425.196750px;}
.y34d{bottom:425.197800px;}
.y32d{bottom:425.197950px;}
.ya8{bottom:425.200350px;}
.y94{bottom:425.200500px;}
.yd9{bottom:425.202300px;}
.yf9{bottom:425.303850px;}
.y3a8{bottom:425.959200px;}
.y1c2{bottom:427.974600px;}
.y28a{bottom:428.117550px;}
.y181{bottom:429.060150px;}
.y3ad{bottom:429.915300px;}
.y233{bottom:433.249650px;}
.y315{bottom:433.656900px;}
.y47{bottom:433.840500px;}
.y15{bottom:433.944900px;}
.y378{bottom:433.995600px;}
.y2e7{bottom:433.997100px;}
.y20a{bottom:434.401200px;}
.y140{bottom:435.332100px;}
.y25d{bottom:436.916100px;}
.y10e{bottom:437.758200px;}
.y1e4{bottom:438.064800px;}
.yf8{bottom:441.291000px;}
.y1a0{bottom:441.344700px;}
.y2b8{bottom:442.791300px;}
.y72{bottom:442.793250px;}
.ybb{bottom:442.793400px;}
.y34c{bottom:442.794300px;}
.y32c{bottom:442.794450px;}
.ya7{bottom:442.796850px;}
.y93{bottom:442.797000px;}
.yd8{bottom:442.798800px;}
.y1c1{bottom:445.571100px;}
.y289{bottom:445.949100px;}
.y46{bottom:449.827500px;}
.y14{bottom:449.933400px;}
.y232{bottom:450.846150px;}
.y314{bottom:451.253400px;}
.y377{bottom:451.592100px;}
.y2e6{bottom:451.593600px;}
.y209{bottom:451.997700px;}
.y159{bottom:452.460150px;}
.y25c{bottom:454.747800px;}
.y10d{bottom:455.354700px;}
.y1e3{bottom:455.661150px;}
.yf7{bottom:457.278000px;}
.y19f{bottom:458.941200px;}
.y180{bottom:459.238500px;}
.y2b7{bottom:460.387950px;}
.y71{bottom:460.389750px;}
.y34b{bottom:460.390800px;}
.y32b{bottom:460.390950px;}
.y92{bottom:460.393500px;}
.yd7{bottom:460.395300px;}
.y1c0{bottom:463.167600px;}
.y288{bottom:463.780800px;}
.y13f{bottom:464.074950px;}
.y45{bottom:465.814500px;}
.y13{bottom:465.920400px;}
.y231{bottom:468.442650px;}
.y313{bottom:468.849900px;}
.y376{bottom:469.188600px;}
.y2e5{bottom:469.190100px;}
.y208{bottom:469.594200px;}
.y25b{bottom:472.579350px;}
.y1e2{bottom:473.257650px;}
.y158{bottom:476.434650px;}
.y19e{bottom:476.537700px;}
.y2b6{bottom:477.984300px;}
.y70{bottom:477.986250px;}
.y34a{bottom:477.987300px;}
.y32a{bottom:477.987450px;}
.ya6{bottom:477.989850px;}
.y91{bottom:477.990000px;}
.yd6{bottom:477.991800px;}
.y1bf{bottom:480.764100px;}
.y17f{bottom:481.086900px;}
.y13e{bottom:481.671450px;}
.y44{bottom:481.801500px;}
.y12{bottom:481.908900px;}
.yf6{bottom:482.062200px;}
.y312{bottom:486.446400px;}
.y375{bottom:486.785100px;}
.y2e4{bottom:486.786600px;}
.y287{bottom:490.409850px;}
.y25a{bottom:490.411050px;}
.y1e1{bottom:490.854150px;}
.y19d{bottom:494.134200px;}
.y230{bottom:494.836350px;}
.y2b5{bottom:495.580800px;}
.y6f{bottom:495.582750px;}
.y349{bottom:495.583800px;}
.y329{bottom:495.583950px;}
.ya5{bottom:495.586350px;}
.y90{bottom:495.586500px;}
.yd5{bottom:495.588300px;}
.y207{bottom:495.988050px;}
.y43{bottom:497.788500px;}
.y11{bottom:497.885400px;}
.y1be{bottom:498.360600px;}
.y10c{bottom:499.343250px;}
.yf5{bottom:499.658700px;}
.y374{bottom:504.381600px;}
.y2e3{bottom:504.383100px;}
.y17e{bottom:507.480750px;}
.y13d{bottom:508.065300px;}
.y286{bottom:508.241400px;}
.y259{bottom:508.242750px;}
.y1e0{bottom:508.450800px;}
.y311{bottom:512.840100px;}
.y2b4{bottom:513.177450px;}
.y6e{bottom:513.179250px;}
.y348{bottom:513.180300px;}
.y328{bottom:513.180450px;}
.y8f{bottom:513.183000px;}
.yd4{bottom:513.184800px;}
.y42{bottom:513.775500px;}
.y10{bottom:513.873900px;}
.y1bd{bottom:515.957100px;}
.yf4{bottom:517.255350px;}
.y19c{bottom:520.527900px;}
.y373{bottom:521.978100px;}
.y2e2{bottom:521.979600px;}
.ya4{bottom:521.980200px;}
.y206{bottom:522.381900px;}
.y10b{bottom:523.317600px;}
.y285{bottom:526.073100px;}
.y258{bottom:526.074300px;}
.y41{bottom:529.762500px;}
.yf{bottom:529.862400px;}
.y310{bottom:530.436750px;}
.y2b3{bottom:530.773800px;}
.y6d{bottom:530.775750px;}
.y347{bottom:530.776800px;}
.y327{bottom:530.776950px;}
.y8e{bottom:530.779500px;}
.yd3{bottom:530.781300px;}
.y1bc{bottom:533.553600px;}
.y1df{bottom:534.844500px;}
.yf3{bottom:534.851850px;}
.y3ae{bottom:537.237300px;}
.y22f{bottom:538.824900px;}
.y372{bottom:539.574600px;}
.y2e1{bottom:539.576100px;}
.y205{bottom:539.978400px;}
.y3bf{bottom:541.487850px;}
.y3bb{bottom:541.489200px;}
.y3b6{bottom:541.489350px;}
.y284{bottom:543.904650px;}
.y257{bottom:543.906000px;}
.y17d{bottom:544.211100px;}
.y40{bottom:545.749500px;}
.ye{bottom:545.850900px;}
.y19b{bottom:546.921750px;}
.y30f{bottom:548.033100px;}
.y2b2{bottom:548.370450px;}
.y6c{bottom:548.372250px;}
.y346{bottom:548.373300px;}
.y326{bottom:548.373450px;}
.y8d{bottom:548.376000px;}
.yd2{bottom:548.377800px;}
.y1bb{bottom:551.150100px;}
.y13c{bottom:552.053700px;}
.y22e{bottom:556.421400px;}
.y371{bottom:557.171100px;}
.y2e0{bottom:557.172600px;}
.y204{bottom:557.574900px;}
.y1de{bottom:561.238350px;}
.yf2{bottom:561.245550px;}
.y3f{bottom:561.736500px;}
.y17c{bottom:561.807600px;}
.yd{bottom:561.839400px;}
.y19a{bottom:564.518250px;}
.y30e{bottom:565.629750px;}
.y2b1{bottom:565.966800px;}
.y6b{bottom:565.968750px;}
.yba{bottom:565.968900px;}
.y345{bottom:565.969800px;}
.y325{bottom:565.969950px;}
.y8c{bottom:565.972500px;}
.yd1{bottom:565.974300px;}
.y1ba{bottom:568.746600px;}
.y13b{bottom:569.650200px;}
.y283{bottom:570.533700px;}
.y256{bottom:570.534900px;}
.y22d{bottom:574.017900px;}
.y370{bottom:574.767600px;}
.y203{bottom:575.171400px;}
.y3e{bottom:577.723500px;}
.yc{bottom:577.827900px;}
.y1dd{bottom:578.834850px;}
.y17b{bottom:579.404100px;}
.y199{bottom:582.114750px;}
.y30d{bottom:583.226100px;}
.y2b0{bottom:583.563300px;}
.y6a{bottom:583.565250px;}
.y344{bottom:583.566300px;}
.y2df{bottom:583.566450px;}
.y8b{bottom:583.569000px;}
.yd0{bottom:583.570800px;}
.y13a{bottom:587.246700px;}
.y282{bottom:588.365400px;}
.y255{bottom:588.366600px;}
.y22c{bottom:591.614400px;}
.y36f{bottom:592.364100px;}
.y202{bottom:592.767900px;}
.y3d{bottom:593.710500px;}
.yb{bottom:593.816400px;}
.y1b9{bottom:595.140450px;}
.y1dc{bottom:596.431350px;}
.yf1{bottom:596.436750px;}
.y17a{bottom:597.000600px;}
.y198{bottom:599.711250px;}
.y30c{bottom:600.822750px;}
.y2af{bottom:601.159950px;}
.y69{bottom:601.161750px;}
.y343{bottom:601.162800px;}
.y2de{bottom:601.162950px;}
.y8a{bottom:601.165500px;}
.ycf{bottom:601.167300px;}
.y139{bottom:604.843200px;}
.y281{bottom:606.196950px;}
.y254{bottom:606.198300px;}
.y22b{bottom:609.210900px;}
.y3c{bottom:609.697500px;}
.ya{bottom:609.804900px;}
.y36e{bottom:609.960600px;}
.y201{bottom:610.364400px;}
.y1db{bottom:614.027850px;}
.y179{bottom:614.597100px;}
.y30b{bottom:618.419100px;}
.y2ae{bottom:618.756300px;}
.y68{bottom:618.758250px;}
.yb9{bottom:618.758400px;}
.y342{bottom:618.759300px;}
.y2dd{bottom:618.759450px;}
.yce{bottom:618.763800px;}
.y1b8{bottom:621.534300px;}
.y138{bottom:622.439700px;}
.y280{bottom:624.028650px;}
.y3b{bottom:625.684500px;}
.y197{bottom:626.105100px;}
.y22a{bottom:626.807400px;}
.y36d{bottom:627.557100px;}
.y89{bottom:627.559350px;}
.y200{bottom:627.960900px;}
.y124{bottom:629.077050px;}
.y1da{bottom:631.624350px;}
.yf0{bottom:631.627950px;}
.y178{bottom:632.193600px;}
.y253{bottom:632.827200px;}
.y15f{bottom:632.856750px;}
.y30a{bottom:636.015600px;}
.y2ad{bottom:636.352950px;}
.y67{bottom:636.354750px;}
.y341{bottom:636.355800px;}
.y2dc{bottom:636.355950px;}
.ycd{bottom:636.360300px;}
.y39a{bottom:637.224300px;}
.y1b7{bottom:639.130800px;}
.y137{bottom:640.036350px;}
.y3a{bottom:641.671500px;}
.y27f{bottom:641.860350px;}
.y229{bottom:644.403900px;}
.y36c{bottom:645.153600px;}
.y1ff{bottom:645.557400px;}
.y1d9{bottom:649.220850px;}
.y177{bottom:649.790100px;}
.y252{bottom:650.658900px;}
.y123{bottom:653.051550px;}
.y309{bottom:653.612250px;}
.y2ac{bottom:653.949300px;}
.y66{bottom:653.951250px;}
.y340{bottom:653.952300px;}
.y2db{bottom:653.952450px;}
.ycc{bottom:653.956800px;}
.y399{bottom:654.820650px;}
.y1b6{bottom:656.727300px;}
.y15e{bottom:656.831250px;}
.y136{bottom:657.632700px;}
.y39{bottom:657.658500px;}
.y27e{bottom:659.691900px;}
.y228{bottom:662.000400px;}
.y36b{bottom:662.750100px;}
.y1fe{bottom:663.153900px;}
.y1d8{bottom:666.817350px;}
.y251{bottom:668.490450px;}
.y308{bottom:671.208600px;}
.y196{bottom:671.535300px;}
.y2ab{bottom:671.545950px;}
.y65{bottom:671.547750px;}
.y33f{bottom:671.548800px;}
.y2da{bottom:671.548950px;}
.ycb{bottom:671.553300px;}
.y398{bottom:672.417300px;}
.y38{bottom:673.645500px;}
.y1b5{bottom:674.323800px;}
.y135{bottom:675.229350px;}
.y176{bottom:676.183950px;}
.y27d{bottom:677.523600px;}
.y227{bottom:679.596900px;}
.y36a{bottom:680.346600px;}
.y1d7{bottom:684.413850px;}
.y250{bottom:686.322150px;}
.y195{bottom:687.275550px;}
.y9{bottom:688.550850px;}
.y307{bottom:688.805100px;}
.y2aa{bottom:689.142450px;}
.y64{bottom:689.144250px;}
.y33e{bottom:689.145300px;}
.y2d9{bottom:689.145450px;}
.yca{bottom:689.149800px;}
.y1fd{bottom:689.547750px;}
.y37{bottom:689.632500px;}
.y397{bottom:690.013800px;}
.y1b4{bottom:691.920300px;}
.yef{bottom:694.652850px;}
.y27c{bottom:695.355300px;}
.y226{bottom:697.193400px;}
.y369{bottom:697.943100px;}
.y194{bottom:703.015650px;}
.y24f{bottom:704.153850px;}
.y36{bottom:705.619500px;}
.y306{bottom:706.401600px;}
.y2a9{bottom:706.738800px;}
.y63{bottom:706.740750px;}
.y88{bottom:706.740900px;}
.y33d{bottom:706.741800px;}
.y2d8{bottom:706.741950px;}
.yc9{bottom:706.746300px;}
.y8{bottom:707.195400px;}
.y396{bottom:707.610300px;}
.y1b3{bottom:709.516800px;}
.yee{bottom:710.392950px;}
.y1d6{bottom:710.807700px;}
.y27b{bottom:713.186850px;}
.y225{bottom:714.789900px;}
.y368{bottom:715.539600px;}
.y175{bottom:720.172500px;}
.y134{bottom:720.366150px;}
.y35{bottom:721.606500px;}
.y24e{bottom:721.985400px;}
.y305{bottom:723.998250px;}
.y2a8{bottom:724.335450px;}
.y62{bottom:724.337250px;}
.y11d{bottom:724.337700px;}
.y33c{bottom:724.338300px;}
.y2d7{bottom:724.338450px;}
.yc8{bottom:724.342800px;}
.y395{bottom:725.206800px;}
.yed{bottom:726.133350px;}
.y3af{bottom:727.725450px;}
.y193{bottom:728.110200px;}
.y3b4{bottom:729.851400px;}
.y3b9{bottom:729.851550px;}
.y27a{bottom:731.018550px;}
.y224{bottom:732.386400px;}
.y367{bottom:733.136100px;}
.y1b2{bottom:735.910650px;}
.y133{bottom:736.106250px;}
.y34{bottom:737.593500px;}
.y174{bottom:737.768850px;}
.y24d{bottom:739.817100px;}
.y304{bottom:741.594600px;}
.yec{bottom:741.873600px;}
.y2a7{bottom:741.931800px;}
.y61{bottom:741.933750px;}
.y157{bottom:741.934050px;}
.y11c{bottom:741.934200px;}
.y33b{bottom:741.934800px;}
.y2d6{bottom:741.934950px;}
.y394{bottom:742.803150px;}
.y1fc{bottom:747.440400px;}
.y1d5{bottom:747.440550px;}
.y7{bottom:748.177650px;}
.y279{bottom:748.850250px;}
.y223{bottom:749.982900px;}
.y366{bottom:750.732600px;}
.yc7{bottom:750.736650px;}
.y132{bottom:751.846650px;}
.y173{bottom:755.365500px;}
.y24c{bottom:757.648800px;}
.y192{bottom:758.288550px;}
.y303{bottom:759.191100px;}
.y2a6{bottom:759.528300px;}
.y60{bottom:759.530250px;}
.y156{bottom:759.530550px;}
.y11b{bottom:759.530700px;}
.y33a{bottom:759.531300px;}
.y2d5{bottom:759.531450px;}
.y393{bottom:760.399800px;}
.y1fb{bottom:763.180500px;}
.y1d4{bottom:763.180650px;}
.y278{bottom:766.681800px;}
.yeb{bottom:766.968000px;}
.y222{bottom:767.579400px;}
.y365{bottom:768.329100px;}
.y33{bottom:769.567950px;}
.y172{bottom:772.962000px;}
.y6{bottom:773.377650px;}
.y24b{bottom:775.480350px;}
.y302{bottom:776.787750px;}
.y131{bottom:776.941050px;}
.y2a5{bottom:777.124950px;}
.y5f{bottom:777.126750px;}
.y155{bottom:777.127050px;}
.y11a{bottom:777.127200px;}
.y339{bottom:777.127800px;}
.y2d4{bottom:777.127950px;}
.y392{bottom:777.996300px;}
.y1fa{bottom:778.920750px;}
.y1d3{bottom:778.920900px;}
.y1b1{bottom:781.047600px;}
.y191{bottom:782.263050px;}
.y277{bottom:784.513500px;}
.y221{bottom:785.175900px;}
.y32{bottom:785.554800px;}
.y364{bottom:785.925600px;}
.yc6{bottom:785.927700px;}
.y171{bottom:790.558350px;}
.y24a{bottom:793.312050px;}
.y301{bottom:794.384250px;}
.y1f9{bottom:794.660850px;}
.y1d2{bottom:794.661000px;}
.y2a4{bottom:794.721450px;}
.y5e{bottom:794.723250px;}
.y87{bottom:794.723400px;}
.y154{bottom:794.723550px;}
.y119{bottom:794.723700px;}
.y338{bottom:794.724300px;}
.y2d3{bottom:794.724450px;}
.y391{bottom:795.592800px;}
.y1b0{bottom:796.787700px;}
.yea{bottom:797.146500px;}
.y5{bottom:798.577350px;}
.y276{bottom:802.345050px;}
.y363{bottom:803.522250px;}
.y31{bottom:805.793850px;}
.y130{bottom:807.119550px;}
.y170{bottom:808.155000px;}
.y190{bottom:808.656900px;}
.y249{bottom:811.143750px;}
.y220{bottom:811.569750px;}
.y300{bottom:811.980750px;}
.y2a3{bottom:812.317950px;}
.y5d{bottom:812.319750px;}
.y86{bottom:812.319900px;}
.y118{bottom:812.320200px;}
.y337{bottom:812.320800px;}
.y2d2{bottom:812.320950px;}
.y390{bottom:813.189300px;}
.y1f8{bottom:819.755250px;}
.y1d1{bottom:819.755400px;}
.y362{bottom:821.118750px;}
.ye9{bottom:821.120850px;}
.y30{bottom:821.780850px;}
.y1af{bottom:821.882100px;}
.y4{bottom:825.577350px;}
.y16f{bottom:825.751500px;}
.y21f{bottom:827.556750px;}
.y275{bottom:828.974100px;}
.y248{bottom:828.975300px;}
.y2ff{bottom:829.577250px;}
.y2a2{bottom:829.914300px;}
.y5c{bottom:829.916250px;}
.y153{bottom:829.916550px;}
.y117{bottom:829.916700px;}
.y336{bottom:829.917300px;}
.y2d1{bottom:829.917450px;}
.y38f{bottom:830.785800px;}
.y12f{bottom:831.093900px;}
.y2f{bottom:837.768000px;}
.y361{bottom:838.715250px;}
.y16e{bottom:843.347850px;}
.y21e{bottom:843.543750px;}
.y274{bottom:846.805650px;}
.y247{bottom:846.807000px;}
.y2fe{bottom:847.173750px;}
.y2a1{bottom:847.510950px;}
.y5b{bottom:847.512750px;}
.y152{bottom:847.513050px;}
.y116{bottom:847.513200px;}
.y335{bottom:847.513800px;}
.y2d0{bottom:847.513950px;}
.y38e{bottom:848.382450px;}
.y1f7{bottom:849.933600px;}
.y1d0{bottom:849.933750px;}
.y1ae{bottom:852.060450px;}
.y2e{bottom:853.755000px;}
.y360{bottom:856.311750px;}
.y21d{bottom:859.530750px;}
.y273{bottom:864.637350px;}
.y246{bottom:864.638700px;}
.y2fd{bottom:864.770250px;}
.y2a0{bottom:865.107450px;}
.y5a{bottom:865.109250px;}
.y85{bottom:865.109400px;}
.y151{bottom:865.109550px;}
.y115{bottom:865.109700px;}
.y334{bottom:865.110300px;}
.y2cf{bottom:865.110450px;}
.y38d{bottom:865.978950px;}
.y16d{bottom:869.741700px;}
.y2d{bottom:869.742000px;}
.y1f6{bottom:873.908100px;}
.y1cf{bottom:873.908250px;}
.y1ad{bottom:873.908850px;}
.y21c{bottom:875.517750px;}
.y2fc{bottom:882.366750px;}
.y272{bottom:882.468900px;}
.y245{bottom:882.470250px;}
.y29f{bottom:882.703950px;}
.y59{bottom:882.705750px;}
.y84{bottom:882.705900px;}
.y114{bottom:882.706200px;}
.y2ce{bottom:882.706950px;}
.y38c{bottom:883.575450px;}
.y16c{bottom:885.728700px;}
.y2c{bottom:885.729000px;}
.y1{bottom:892.729200px;}
.y2fb{bottom:899.963250px;}
.y29e{bottom:900.300450px;}
.y271{bottom:900.300600px;}
.y1f5{bottom:900.301950px;}
.y1ce{bottom:900.302100px;}
.y58{bottom:900.302250px;}
.y83{bottom:900.302400px;}
.y113{bottom:900.302700px;}
.y2cd{bottom:900.303450px;}
.y38b{bottom:901.171950px;}
.y16b{bottom:901.715700px;}
.y2b{bottom:901.716000px;}
.y3{bottom:921.363000px;}
.y26f{bottom:936.768450px;}
.y15c{bottom:936.769950px;}
.y29{bottom:936.770250px;}
.y111{bottom:936.770700px;}
.y2cb{bottom:936.771450px;}
.y2{bottom:938.958000px;}
.h24{height:21.937500px;}
.he{height:25.739550px;}
.h11{height:31.206000px;}
.h28{height:31.589550px;}
.h1a{height:32.175000px;}
.h26{height:34.320000px;}
.h27{height:34.336000px;}
.h15{height:34.656000px;}
.h29{height:35.438100px;}
.h2{height:35.664000px;}
.h25{height:36.000000px;}
.h3{height:37.893000px;}
.h8{height:38.250000px;}
.h2a{height:38.628000px;}
.h23{height:38.700000px;}
.hf{height:39.600000px;}
.h10{height:40.128000px;}
.h1b{height:40.500000px;}
.h1f{height:40.755000px;}
.h1d{height:42.524550px;}
.ha{height:42.750000px;}
.hd{height:42.767400px;}
.hb{height:42.792000px;}
.h22{height:42.900000px;}
.h18{height:42.920000px;}
.h9{height:43.320000px;}
.hc{height:44.893050px;}
.h19{height:45.000000px;}
.h21{height:45.600000px;}
.h1e{height:45.897571px;}
.h13{height:46.332000px;}
.h1c{height:47.249550px;}
.h7{height:47.250000px;}
.h14{height:48.600000px;}
.h16{height:49.248000px;}
.h12{height:49.500000px;}
.h17{height:51.029550px;}
.h20{height:51.030150px;}
.h2b{height:54.259200px;}
.h6{height:63.840000px;}
.h4{height:64.350000px;}
.h5{height:70.875750px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x47{left:62.768550px;}
.x67{left:79.776300px;}
.x48{left:89.162250px;}
.xd{left:93.543300px;}
.x2{left:97.795350px;}
.x31{left:105.288150px;}
.x49{left:106.758750px;}
.xe{left:114.803100px;}
.x9{left:119.055150px;}
.xa{left:123.307050px;}
.x4a{left:124.355250px;}
.x32{left:131.682000px;}
.x2a{left:133.937100px;}
.x28{left:138.189000px;}
.x68{left:141.363150px;}
.x6{left:143.423550px;}
.x4{left:148.141650px;}
.x33{left:149.278500px;}
.x16{left:151.097850px;}
.x4b{left:153.343200px;}
.x10{left:155.349900px;}
.x88{left:156.819300px;}
.xb{left:157.951650px;}
.x69{left:158.959650px;}
.xc{left:163.200450px;}
.x34{left:166.875000px;}
.x15{left:172.357800px;}
.x4c{left:174.601050px;}
.xf{left:176.609700px;}
.xa2{left:179.885400px;}
.x8{left:187.156350px;}
.x4d{left:189.055800px;}
.x14{left:197.716500px;}
.x6a{left:202.168950px;}
.x13{left:204.074250px;}
.x2f{left:206.220450px;}
.x2c{left:210.472500px;}
.xa7{left:212.973450px;}
.x12{left:214.468350px;}
.x27{left:216.954750px;}
.x4e{left:217.965300px;}
.x89{left:220.767300px;}
.x95{left:221.987850px;}
.x6b{left:226.149450px;}
.x20{left:227.935050px;}
.x3{left:229.479150px;}
.x35{left:231.161850px;}
.x4f{left:232.420050px;}
.x5{left:236.075550px;}
.x2d{left:238.625700px;}
.x18{left:240.058200px;}
.x2b{left:242.877750px;}
.x8a{left:245.861850px;}
.x36{left:246.901950px;}
.xa8{left:252.941100px;}
.x6c{left:254.934450px;}
.x21{left:256.285350px;}
.x19{left:257.667750px;}
.x1f{left:260.375100px;}
.x37{left:262.642200px;}
.x1e{left:266.104500px;}
.x6d{left:269.326950px;}
.xae{left:273.428850px;}
.x50{left:275.784300px;}
.x38{left:278.382300px;}
.x98{left:282.496050px;}
.x96{left:285.935850px;}
.x51{left:290.239050px;}
.x29{left:292.618800px;}
.x39{left:294.122400px;}
.x99{left:298.483050px;}
.x2e{left:301.122600px;}
.x6e{left:304.324800px;}
.x26{left:305.374650px;}
.x24{left:306.379650px;}
.x7{left:307.403550px;}
.x3a{left:309.862500px;}
.x30{left:311.952000px;}
.x9a{left:314.470050px;}
.x97{left:317.909850px;}
.x52{left:319.148550px;}
.x1c{left:321.769050px;}
.x1b{left:323.974200px;}
.x3b{left:325.602750px;}
.x23{left:329.178600px;}
.x1d{left:330.235950px;}
.x6f{left:333.109800px;}
.x1a{left:334.121850px;}
.x11{left:337.174050px;}
.x17{left:338.373900px;}
.x25{left:341.426100px;}
.x9b{left:346.444050px;}
.x53{left:348.058050px;}
.xa9{left:349.977000px;}
.x71{left:353.715150px;}
.x3c{left:357.082950px;}
.x9c{left:358.991250px;}
.x54{left:362.512800px;}
.xaf{left:367.024950px;}
.x72{left:368.107650px;}
.x3d{left:372.823050px;}
.x70{left:375.303900px;}
.x55{left:376.967550px;}
.xa3{left:378.511200px;}
.x73{left:382.500150px;}
.x3e{left:388.563300px;}
.x22{left:391.181100px;}
.xa4{left:394.498200px;}
.x74{left:396.892650px;}
.x8c{left:398.852250px;}
.x3f{left:404.303400px;}
.x56{left:405.877050px;}
.x9d{left:406.952250px;}
.xa5{left:410.485200px;}
.x8d{left:414.839250px;}
.x76{left:417.498150px;}
.x40{left:420.043500px;}
.xa6{left:426.472200px;}
.x8e{left:430.826250px;}
.x77{left:431.890650px;}
.x41{left:435.783600px;}
.x75{left:439.086750px;}
.x8b{left:443.373450px;}
.x78{left:446.283150px;}
.x9e{left:448.033650px;}
.x57{left:449.241300px;}
.x42{left:451.523700px;}
.x90{left:455.920650px;}
.x1{left:458.055000px;}
.x8f{left:459.360450px;}
.x79{left:460.675650px;}
.x58{left:463.696050px;}
.x43{left:467.263800px;}
.x91{left:471.907800px;}
.xaa{left:475.547100px;}
.x59{left:478.150800px;}
.x9f{left:480.007650px;}
.x7e{left:481.281000px;}
.x44{left:483.003900px;}
.x7b{left:488.477250px;}
.xab{left:491.534100px;}
.x5a{left:492.605550px;}
.x7f{left:495.673500px;}
.x45{left:498.744000px;}
.x7c{left:502.869750px;}
.x92{left:503.881650px;}
.x5b{left:507.060300px;}
.x80{left:510.066000px;}
.xa0{left:511.981650px;}
.x46{left:514.484100px;}
.x7d{left:517.262250px;}
.xac{left:520.068450px;}
.x5c{left:521.515050px;}
.x81{left:524.458500px;}
.xa1{left:527.968650px;}
.x7a{left:534.761250px;}
.x5d{left:535.969800px;}
.x82{left:545.063850px;}
.x5e{left:550.424550px;}
.xad{left:552.042450px;}
.x83{left:559.456350px;}
.x5f{left:564.879300px;}
.x84{left:573.848850px;}
.x60{left:579.334050px;}
.x85{left:588.241350px;}
.x61{left:593.788800px;}
.x62{left:608.243550px;}
.x93{left:610.938750px;}
.x63{left:622.698150px;}
.x94{left:629.291400px;}
.x86{left:632.198700px;}
.x64{left:637.152900px;}
.x87{left:650.551200px;}
.x65{left:651.607800px;}
.x66{left:666.062400px;}
@media print{
.v6{vertical-align:-44.612800pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.000533pt;}
.v2{vertical-align:15.205333pt;}
.v4{vertical-align:17.280000pt;}
.v1{vertical-align:24.000533pt;}
.ls96{letter-spacing:-9.840000pt;}
.ls98{letter-spacing:-8.280000pt;}
.ls11{letter-spacing:-7.866000pt;}
.ls8{letter-spacing:-7.440000pt;}
.ls10{letter-spacing:-7.296000pt;}
.ls9d{letter-spacing:-5.356800pt;}
.lsf{letter-spacing:-4.332000pt;}
.ls9b{letter-spacing:-1.376000pt;}
.lsa2{letter-spacing:-0.853333pt;}
.lsa1{letter-spacing:-0.725333pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.230400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000267pt;}
.ls2b{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.022400pt;}
.ls75{letter-spacing:0.038400pt;}
.ls1c{letter-spacing:0.049067pt;}
.lsc{letter-spacing:0.050667pt;}
.ls81{letter-spacing:0.052800pt;}
.ls92{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.057600pt;}
.ls72{letter-spacing:0.073600pt;}
.lsaa{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls2{letter-spacing:0.107733pt;}
.ls5e{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.115200pt;}
.lsa8{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.152000pt;}
.ls79{letter-spacing:0.153600pt;}
.ls54{letter-spacing:0.170133pt;}
.lse{letter-spacing:0.172800pt;}
.ls78{letter-spacing:0.178667pt;}
.ls91{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.224000pt;}
.ls17{letter-spacing:0.230400pt;}
.ls28{letter-spacing:0.244049pt;}
.ls6{letter-spacing:0.252000pt;}
.ls6d{letter-spacing:0.256000pt;}
.ls82{letter-spacing:0.286400pt;}
.ls19{letter-spacing:0.288000pt;}
.ls50{letter-spacing:0.288533pt;}
.lsb{letter-spacing:0.304000pt;}
.lsa9{letter-spacing:0.336000pt;}
.ls9c{letter-spacing:0.341333pt;}
.ls1d{letter-spacing:0.345600pt;}
.ls27{letter-spacing:0.360533pt;}
.ls30{letter-spacing:0.363200pt;}
.ls31{letter-spacing:0.371200pt;}
.ls4d{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.375467pt;}
.lsb0{letter-spacing:0.384000pt;}
.ls6b{letter-spacing:0.385067pt;}
.ls2f{letter-spacing:0.392000pt;}
.ls94{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.403200pt;}
.ls2e{letter-spacing:0.405333pt;}
.ls8e{letter-spacing:0.410667pt;}
.ls95{letter-spacing:0.411200pt;}
.ls90{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.460800pt;}
.ls3a{letter-spacing:0.518400pt;}
.ls32{letter-spacing:0.557333pt;}
.ls15{letter-spacing:0.576000pt;}
.ls3c{letter-spacing:0.627200pt;}
.ls29{letter-spacing:0.633600pt;}
.ls8b{letter-spacing:0.645867pt;}
.lsb2{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.691200pt;}
.ls42{letter-spacing:0.700267pt;}
.ls88{letter-spacing:0.733333pt;}
.ls4a{letter-spacing:0.742400pt;}
.ls2a{letter-spacing:0.748800pt;}
.ls7f{letter-spacing:0.763200pt;}
.ls80{letter-spacing:0.763733pt;}
.ls1b{letter-spacing:0.806400pt;}
.lsab{letter-spacing:0.816000pt;}
.ls7d{letter-spacing:0.857067pt;}
.ls7b{letter-spacing:0.857600pt;}
.ls14{letter-spacing:0.864000pt;}
.lsb3{letter-spacing:0.912000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls34{letter-spacing:0.962133pt;}
.ls39{letter-spacing:0.979200pt;}
.ls5a{letter-spacing:1.006933pt;}
.lsac{letter-spacing:1.008000pt;}
.ls33{letter-spacing:1.013333pt;}
.ls23{letter-spacing:1.036800pt;}
.ls5c{letter-spacing:1.152000pt;}
.lsa5{letter-spacing:1.200000pt;}
.ls18{letter-spacing:1.267200pt;}
.ls63{letter-spacing:1.285867pt;}
.ls3d{letter-spacing:1.324800pt;}
.ls36{letter-spacing:1.368000pt;}
.ls2c{letter-spacing:1.382400pt;}
.ls22{letter-spacing:1.440000pt;}
.ls67{letter-spacing:1.447467pt;}
.ls68{letter-spacing:1.448000pt;}
.ls48{letter-spacing:1.462933pt;}
.ls9f{letter-spacing:1.536000pt;}
.ls55{letter-spacing:1.555200pt;}
.ls57{letter-spacing:1.571733pt;}
.ls38{letter-spacing:1.612800pt;}
.ls51{letter-spacing:1.640533pt;}
.ls4f{letter-spacing:1.641067pt;}
.ls52{letter-spacing:1.843200pt;}
.ls93{letter-spacing:1.866667pt;}
.ls1f{letter-spacing:1.942400pt;}
.ls85{letter-spacing:1.953600pt;}
.ls86{letter-spacing:1.954133pt;}
.lsae{letter-spacing:2.064000pt;}
.ls2d{letter-spacing:2.229333pt;}
.lsa0{letter-spacing:2.261333pt;}
.lsb1{letter-spacing:2.496000pt;}
.ls99{letter-spacing:2.666667pt;}
.ls6f{letter-spacing:2.680533pt;}
.ls62{letter-spacing:2.756267pt;}
.ls61{letter-spacing:2.756800pt;}
.ls97{letter-spacing:3.040000pt;}
.lsa4{letter-spacing:3.216000pt;}
.lsb4{letter-spacing:3.360000pt;}
.ls64{letter-spacing:3.594667pt;}
.ls65{letter-spacing:3.595200pt;}
.ls45{letter-spacing:3.610667pt;}
.ls46{letter-spacing:3.611200pt;}
.lsaf{letter-spacing:3.648000pt;}
.ls69{letter-spacing:3.694400pt;}
.ls6a{letter-spacing:3.694933pt;}
.ls44{letter-spacing:3.785600pt;}
.ls24{letter-spacing:3.959467pt;}
.lsa3{letter-spacing:4.181333pt;}
.ls73{letter-spacing:4.620800pt;}
.ls9e{letter-spacing:4.778667pt;}
.ls3e{letter-spacing:5.373333pt;}
.lsad{letter-spacing:5.856000pt;}
.ls40{letter-spacing:5.883200pt;}
.ls3f{letter-spacing:5.883733pt;}
.ls60{letter-spacing:5.886933pt;}
.ls70{letter-spacing:6.329600pt;}
.ls84{letter-spacing:6.454933pt;}
.ls83{letter-spacing:6.455467pt;}
.lsa7{letter-spacing:6.624000pt;}
.ls66{letter-spacing:6.812800pt;}
.ls4b{letter-spacing:7.199467pt;}
.ls74{letter-spacing:7.237867pt;}
.ls76{letter-spacing:7.238400pt;}
.ls71{letter-spacing:7.274133pt;}
.ls5d{letter-spacing:7.312000pt;}
.ls5f{letter-spacing:7.312533pt;}
.lsa6{letter-spacing:7.344000pt;}
.ls53{letter-spacing:7.369600pt;}
.ls77{letter-spacing:7.378667pt;}
.ls6e{letter-spacing:7.456000pt;}
.ls6c{letter-spacing:7.456533pt;}
.ls1a{letter-spacing:7.468800pt;}
.ls4c{letter-spacing:7.572800pt;}
.ls4e{letter-spacing:7.573333pt;}
.ls8d{letter-spacing:7.611200pt;}
.ls8f{letter-spacing:7.611733pt;}
.ls3b{letter-spacing:7.827200pt;}
.ls8a{letter-spacing:7.845867pt;}
.ls8c{letter-spacing:7.846400pt;}
.ls43{letter-spacing:7.900267pt;}
.ls41{letter-spacing:7.900800pt;}
.ls89{letter-spacing:7.932800pt;}
.ls87{letter-spacing:7.933333pt;}
.ls49{letter-spacing:7.942400pt;}
.ls7e{letter-spacing:7.963733pt;}
.ls7c{letter-spacing:8.057067pt;}
.ls7a{letter-spacing:8.057600pt;}
.ls5b{letter-spacing:8.206933pt;}
.ls59{letter-spacing:8.207467pt;}
.ls47{letter-spacing:8.663467pt;}
.ls56{letter-spacing:8.771733pt;}
.ls58{letter-spacing:8.772267pt;}
.ls0{letter-spacing:9.472000pt;}
.ls25{letter-spacing:12.094400pt;}
.ls9a{letter-spacing:47.741193pt;}
.ls9{letter-spacing:1334.084800pt;}
.ws28{word-spacing:-58.291200pt;}
.ws22{word-spacing:-57.715200pt;}
.ws23{word-spacing:-57.600000pt;}
.ws3d{word-spacing:-53.546667pt;}
.ws3b{word-spacing:-53.333333pt;}
.ws2b{word-spacing:-50.666667pt;}
.ws1d{word-spacing:-48.960000pt;}
.ws1a{word-spacing:-48.000000pt;}
.ws26{word-spacing:-35.251200pt;}
.ws39{word-spacing:-35.200000pt;}
.ws2a{word-spacing:-34.214400pt;}
.ws20{word-spacing:-34.099200pt;}
.ws1f{word-spacing:-33.868800pt;}
.ws8a{word-spacing:-17.616000pt;}
.ws35{word-spacing:-15.955200pt;}
.ws2f{word-spacing:-15.840000pt;}
.ws2e{word-spacing:-15.724800pt;}
.ws36{word-spacing:-15.379200pt;}
.ws10{word-spacing:-15.264000pt;}
.ws87{word-spacing:-15.216000pt;}
.ws38{word-spacing:-15.206400pt;}
.ws30{word-spacing:-15.148800pt;}
.ws27{word-spacing:-15.091200pt;}
.ws19{word-spacing:-15.033600pt;}
.ws33{word-spacing:-14.976000pt;}
.ws3a{word-spacing:-14.918400pt;}
.ws37{word-spacing:-14.803200pt;}
.ws32{word-spacing:-14.745600pt;}
.ws31{word-spacing:-14.688000pt;}
.ws1b{word-spacing:-14.630400pt;}
.ws34{word-spacing:-14.572800pt;}
.ws21{word-spacing:-14.515200pt;}
.ws11{word-spacing:-14.457600pt;}
.wsf{word-spacing:-14.400000pt;}
.ws8b{word-spacing:-14.064000pt;}
.ws7{word-spacing:-14.000000pt;}
.ws2c{word-spacing:-13.824000pt;}
.ws3c{word-spacing:-13.333333pt;}
.ws89{word-spacing:-12.816000pt;}
.ws9{word-spacing:-12.666667pt;}
.ws15{word-spacing:-12.108800pt;}
.ws86{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.861333pt;}
.ws88{word-spacing:-11.760000pt;}
.ws2d{word-spacing:-11.733333pt;}
.ws82{word-spacing:-10.666667pt;}
.ws83{word-spacing:-10.453333pt;}
.ws40{word-spacing:-10.400000pt;}
.ws84{word-spacing:-9.600000pt;}
.ws12{word-spacing:-9.359867pt;}
.ws3{word-spacing:-8.512000pt;}
.ws5{word-spacing:-8.288000pt;}
.ws2{word-spacing:-8.233200pt;}
.ws14{word-spacing:-7.870582pt;}
.ws13{word-spacing:-7.626533pt;}
.wsb{word-spacing:-5.168000pt;}
.wsa{word-spacing:-0.354667pt;}
.ws4{word-spacing:-0.280000pt;}
.ws1{word-spacing:-0.050667pt;}
.ws8{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:5.092000pt;}
.wsd{word-spacing:6.232000pt;}
.ws3f{word-spacing:6.560000pt;}
.ws3e{word-spacing:9.680000pt;}
.ws80{word-spacing:10.670400pt;}
.ws0{word-spacing:14.820000pt;}
.ws16{word-spacing:55.308267pt;}
.ws25{word-spacing:62.336133pt;}
.ws7a{word-spacing:63.023832pt;}
.ws17{word-spacing:71.436267pt;}
.ws18{word-spacing:91.116267pt;}
.ws63{word-spacing:108.202498pt;}
.ws1e{word-spacing:121.306667pt;}
.ws7b{word-spacing:123.567270pt;}
.ws29{word-spacing:125.463600pt;}
.ws7c{word-spacing:142.373165pt;}
.ws55{word-spacing:159.482667pt;}
.ws56{word-spacing:159.962133pt;}
.ws65{word-spacing:166.957137pt;}
.ws44{word-spacing:180.459200pt;}
.ws70{word-spacing:183.331537pt;}
.ws57{word-spacing:183.962667pt;}
.ws78{word-spacing:185.854204pt;}
.ws77{word-spacing:185.854765pt;}
.ws24{word-spacing:193.117867pt;}
.ws7e{word-spacing:202.916604pt;}
.ws7d{word-spacing:202.917165pt;}
.ws68{word-spacing:205.669165pt;}
.ws5b{word-spacing:206.138667pt;}
.ws5a{word-spacing:206.139200pt;}
.ws5c{word-spacing:211.610133pt;}
.ws75{word-spacing:213.145432pt;}
.ws54{word-spacing:218.378133pt;}
.ws53{word-spacing:218.378667pt;}
.ws74{word-spacing:227.822204pt;}
.ws73{word-spacing:227.822765pt;}
.ws48{word-spacing:228.602667pt;}
.ws67{word-spacing:235.619537pt;}
.ws6e{word-spacing:235.620098pt;}
.ws1c{word-spacing:241.597333pt;}
.ws6d{word-spacing:245.251537pt;}
.ws6c{word-spacing:245.252098pt;}
.ws76{word-spacing:247.361965pt;}
.ws59{word-spacing:247.754133pt;}
.ws58{word-spacing:247.754667pt;}
.ws66{word-spacing:249.333670pt;}
.ws5f{word-spacing:253.082667pt;}
.ws4d{word-spacing:253.322133pt;}
.ws4c{word-spacing:253.322667pt;}
.ws61{word-spacing:255.067004pt;}
.ws60{word-spacing:255.067565pt;}
.ws79{word-spacing:255.158737pt;}
.ws5e{word-spacing:256.250133pt;}
.ws5d{word-spacing:256.250667pt;}
.ws4f{word-spacing:268.922133pt;}
.ws4e{word-spacing:268.922667pt;}
.ws52{word-spacing:271.850133pt;}
.ws69{word-spacing:272.084098pt;}
.ws4a{word-spacing:274.490133pt;}
.ws49{word-spacing:274.490667pt;}
.ws72{word-spacing:277.495804pt;}
.ws71{word-spacing:277.496365pt;}
.ws45{word-spacing:283.322133pt;}
.ws6f{word-spacing:286.807298pt;}
.ws6b{word-spacing:293.228070pt;}
.ws6a{word-spacing:293.228632pt;}
.ws64{word-spacing:293.732604pt;}
.ws7f{word-spacing:294.329432pt;}
.ws4b{word-spacing:298.490667pt;}
.ws43{word-spacing:316.538133pt;}
.ws42{word-spacing:316.538667pt;}
.ws51{word-spacing:323.882133pt;}
.ws50{word-spacing:323.882667pt;}
.ws62{word-spacing:355.927804pt;}
.ws41{word-spacing:356.906133pt;}
.ws47{word-spacing:360.650133pt;}
.ws46{word-spacing:360.650667pt;}
.ws85{word-spacing:404.856267pt;}
.ws81{word-spacing:630.359018pt;}
._12{margin-left:-1870.618133pt;}
._13{margin-left:-1621.786133pt;}
._2b{margin-left:-14.751467pt;}
._11{margin-left:-13.573333pt;}
._1{margin-left:-9.478400pt;}
._9{margin-left:-8.288000pt;}
._2a{margin-left:-4.896000pt;}
._21{margin-left:-3.974400pt;}
._c{margin-left:-2.133333pt;}
._10{margin-left:-1.152000pt;}
._5{width:1.516800pt;}
._3{width:2.941867pt;}
._2{width:4.252800pt;}
._4{width:5.373867pt;}
._7{width:6.289067pt;}
._6{width:7.191467pt;}
._e{width:8.087467pt;}
._b{width:9.470933pt;}
._8{width:10.378667pt;}
._0{width:11.861333pt;}
._d{width:14.976000pt;}
._22{width:23.730133pt;}
._23{width:40.266667pt;}
._7a{width:43.181867pt;}
._2f{width:45.354133pt;}
._52{width:47.741193pt;}
._54{width:51.923537pt;}
._24{width:57.169067pt;}
._61{width:59.583270pt;}
._15{width:67.884267pt;}
._17{width:71.148267pt;}
._14{width:79.222400pt;}
._55{width:80.773109pt;}
._1c{width:82.038400pt;}
._18{width:91.116267pt;}
._19{width:96.705067pt;}
._16{width:113.793067pt;}
._1e{width:115.477333pt;}
._6a{width:124.396295pt;}
._74{width:130.217375pt;}
._27{width:132.621333pt;}
._6c{width:134.207775pt;}
._6d{width:141.684604pt;}
._1d{width:142.666133pt;}
._20{width:148.862400pt;}
._34{width:149.930133pt;}
._73{width:153.150147pt;}
._28{width:156.429333pt;}
._1f{width:160.861867pt;}
._6b{width:164.617937pt;}
._29{width:168.429333pt;}
._33{width:173.930667pt;}
._58{width:175.350737pt;}
._46{width:176.618133pt;}
._47{width:178.298133pt;}
._57{width:186.586386pt;}
._5e{width:189.156604pt;}
._32{width:192.457600pt;}
._3e{width:195.098667pt;}
._25{width:197.334400pt;}
._45{width:200.618667pt;}
._59{width:204.888309pt;}
._62{width:206.398484pt;}
._53{width:215.161881pt;}
._44{width:216.266667pt;}
._4a{width:223.610667pt;}
._56{width:230.849404pt;}
._75{width:232.866414pt;}
._3f{width:234.458133pt;}
._37{width:236.330133pt;}
._70{width:237.360225pt;}
._68{width:239.626049pt;}
._3b{width:240.794133pt;}
._26{width:244.988800pt;}
._60{width:247.086204pt;}
._40{width:248.522667pt;}
._48{width:251.402667pt;}
._6e{width:257.497937pt;}
._63{width:259.343046pt;}
._35{width:260.330667pt;}
._3c{width:264.794667pt;}
._5f{width:265.937404pt;}
._4d{width:267.674667pt;}
._39{width:268.730133pt;}
._66{width:270.752281pt;}
._36{width:272.042133pt;}
._3d{width:274.634133pt;}
._64{width:283.549081pt;}
._5c{width:284.467537pt;}
._4b{width:287.450667pt;}
._42{width:288.506133pt;}
._71{width:290.799354pt;}
._38{width:292.730667pt;}
._77{width:295.152786pt;}
._49{width:296.281600pt;}
._67{width:298.272281pt;}
._43{width:303.626667pt;}
._5a{width:305.199270pt;}
._5d{width:307.400309pt;}
._4c{width:310.586667pt;}
._41{width:312.506667pt;}
._78{width:317.170470pt;}
._65{width:318.087804pt;}
._31{width:320.234133pt;}
._6f{width:321.160309pt;}
._76{width:329.554470pt;}
._79{width:335.470709pt;}
._5b{width:338.085109pt;}
._69{width:341.295775pt;}
._30{width:344.234667pt;}
._3a{width:352.846400pt;}
._72{width:358.411312pt;}
._2c{width:367.506667pt;}
._2e{width:373.946133pt;}
._2d{width:376.806400pt;}
._4e{width:379.627930pt;}
._1a{width:386.061333pt;}
._4f{width:388.927298pt;}
._7d{width:391.635733pt;}
._50{width:403.227789pt;}
._7e{width:404.635733pt;}
._51{width:411.347368pt;}
._1b{width:413.037333pt;}
._7f{width:424.348800pt;}
._7c{width:521.591467pt;}
._7b{width:645.597895pt;}
._f{width:1041.145067pt;}
._a{width:1350.681600pt;}
.fs18{font-size:26.000000pt;}
.fsc{font-size:28.000000pt;}
.fs9{font-size:30.506133pt;}
.fs15{font-size:31.199467pt;}
.fs8{font-size:32.932800pt;}
.fs14{font-size:34.666133pt;}
.fsb{font-size:37.333333pt;}
.fs11{font-size:37.439467pt;}
.fse{font-size:38.000000pt;}
.fs10{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs17{font-size:43.200000pt;}
.fs1{font-size:45.333333pt;}
.fs16{font-size:45.866667pt;}
.fsa{font-size:46.933333pt;}
.fs13{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:51.999467pt;}
.fs12{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fsf{font-size:57.600000pt;}
.fsd{font-size:58.666667pt;}
.fs3{font-size:60.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y270{bottom:61.176133pt;}
.y15d{bottom:61.177467pt;}
.y2a{bottom:61.177867pt;}
.y112{bottom:61.178133pt;}
.y2cc{bottom:61.178800pt;}
.y29d{bottom:64.086667pt;}
.y16a{bottom:64.088000pt;}
.y57{bottom:64.088400pt;}
.y122{bottom:64.088667pt;}
.y2fa{bottom:64.089333pt;}
.y2ca{bottom:95.242267pt;}
.y39b{bottom:95.242400pt;}
.y29c{bottom:95.242533pt;}
.y28{bottom:95.242800pt;}
.y244{bottom:95.243733pt;}
.y1f4{bottom:95.243867pt;}
.y1ac{bottom:95.244267pt;}
.y324{bottom:95.244933pt;}
.y3a4{bottom:95.245067pt;}
.y110{bottom:95.275733pt;}
.y150{bottom:95.620000pt;}
.y18f{bottom:95.682400pt;}
.y121{bottom:95.735333pt;}
.y10a{bottom:95.839067pt;}
.y333{bottom:96.093067pt;}
.y56{bottom:96.132133pt;}
.y35f{bottom:96.409600pt;}
.y2f9{bottom:96.411333pt;}
.yb8{bottom:96.411867pt;}
.yc5{bottom:96.412000pt;}
.y169{bottom:96.490133pt;}
.y21b{bottom:96.772267pt;}
.y39f{bottom:97.037733pt;}
.y3a3{bottom:98.144400pt;}
.y82{bottom:98.764000pt;}
.y3a9{bottom:100.096933pt;}
.y3ac{bottom:100.188133pt;}
.y3b2{bottom:102.373200pt;}
.y3b5{bottom:102.481200pt;}
.y39e{bottom:103.037733pt;}
.y3b0{bottom:103.253467pt;}
.y3a2{bottom:103.591067pt;}
.y38a{bottom:104.229867pt;}
.y3bd{bottom:104.820133pt;}
.y3be{bottom:105.546133pt;}
.y27{bottom:105.910800pt;}
.y3b7{bottom:106.111200pt;}
.y2c9{bottom:108.035600pt;}
.y1ab{bottom:108.037600pt;}
.y323{bottom:108.038267pt;}
.y14f{bottom:109.830667pt;}
.y168{bottom:110.700800pt;}
.y29b{bottom:111.092933pt;}
.y26e{bottom:111.094000pt;}
.y109{bottom:111.480400pt;}
.y243{bottom:111.557067pt;}
.y1f3{bottom:111.557200pt;}
.y81{bottom:111.557333pt;}
.y332{bottom:111.734400pt;}
.y55{bottom:111.773467pt;}
.y35e{bottom:112.050933pt;}
.y2f8{bottom:112.052667pt;}
.yb7{bottom:112.053200pt;}
.yc4{bottom:112.053333pt;}
.y21a{bottom:112.413600pt;}
.y39c{bottom:114.140000pt;}
.y3a0{bottom:114.140133pt;}
.y3a5{bottom:114.142667pt;}
.y3ba{bottom:114.142800pt;}
.y12e{bottom:115.159333pt;}
.y10f{bottom:116.586400pt;}
.y120{bottom:117.046000pt;}
.y18e{bottom:119.143600pt;}
.y389{bottom:119.871200pt;}
.y26{bottom:120.356933pt;}
.y1aa{bottom:120.830933pt;}
.y322{bottom:120.831600pt;}
.y15b{bottom:120.837733pt;}
.y14e{bottom:124.041200pt;}
.y2c8{bottom:124.349067pt;}
.ye8{bottom:124.350667pt;}
.y167{bottom:124.911467pt;}
.y29a{bottom:126.943333pt;}
.y26d{bottom:126.944400pt;}
.y108{bottom:127.121733pt;}
.y54{bottom:127.414800pt;}
.y35d{bottom:127.692267pt;}
.yb6{bottom:127.694667pt;}
.y219{bottom:128.054933pt;}
.y12d{bottom:130.800667pt;}
.y2c7{bottom:133.622267pt;}
.ye7{bottom:133.623867pt;}
.y25{bottom:134.088533pt;}
.y331{bottom:135.195600pt;}
.y388{bottom:135.512533pt;}
.y2f7{bottom:135.513867pt;}
.y1a9{bottom:137.144267pt;}
.y321{bottom:137.144933pt;}
.y14d{bottom:138.252000pt;}
.y3aa{bottom:138.898667pt;}
.y166{bottom:139.122133pt;}
.y15a{bottom:142.148267pt;}
.y18d{bottom:142.604800pt;}
.y107{bottom:142.763067pt;}
.y299{bottom:142.793600pt;}
.y26c{bottom:142.794800pt;}
.y53{bottom:143.056133pt;}
.y35c{bottom:143.333600pt;}
.yb5{bottom:143.335867pt;}
.ya3{bottom:143.336000pt;}
.y218{bottom:143.696267pt;}
.y12c{bottom:146.442000pt;}
.y3b8{bottom:146.457600pt;}
.y1f2{bottom:146.952667pt;}
.y24{bottom:147.806667pt;}
.y2c6{bottom:149.935733pt;}
.ye6{bottom:149.937333pt;}
.y242{bottom:150.490800pt;}
.y387{bottom:151.153867pt;}
.y2f6{bottom:151.155200pt;}
.y14c{bottom:152.462667pt;}
.y80{bottom:156.212000pt;}
.y23{bottom:157.745333pt;}
.y18c{bottom:158.246133pt;}
.y106{bottom:158.404400pt;}
.y298{bottom:158.644000pt;}
.y26b{bottom:158.645067pt;}
.y52{bottom:158.697467pt;}
.y35b{bottom:158.974933pt;}
.yb4{bottom:158.977200pt;}
.ya2{bottom:158.977333pt;}
.y217{bottom:159.337600pt;}
.y39d{bottom:160.055733pt;}
.y165{bottom:161.152667pt;}
.y3a1{bottom:161.265600pt;}
.y12b{bottom:162.083333pt;}
.y1f1{bottom:162.594000pt;}
.ye5{bottom:162.730667pt;}
.y241{bottom:166.132133pt;}
.y386{bottom:166.795200pt;}
.y2f5{bottom:166.796533pt;}
.y22{bottom:171.463467pt;}
.y7f{bottom:171.853200pt;}
.y18b{bottom:173.887467pt;}
.y105{bottom:174.045733pt;}
.y330{bottom:174.296533pt;}
.y51{bottom:174.338800pt;}
.y297{bottom:174.494400pt;}
.y26a{bottom:174.495467pt;}
.y35a{bottom:174.616267pt;}
.yb3{bottom:174.618533pt;}
.ya1{bottom:174.618667pt;}
.y216{bottom:174.978933pt;}
.ye4{bottom:175.524000pt;}
.y12a{bottom:177.724667pt;}
.y14b{bottom:178.011867pt;}
.y1f0{bottom:178.235333pt;}
.y21{bottom:181.402133pt;}
.y240{bottom:181.773467pt;}
.y320{bottom:182.138667pt;}
.y385{bottom:182.436533pt;}
.y2f4{bottom:182.437867pt;}
.y164{bottom:184.613867pt;}
.y1cd{bottom:184.907733pt;}
.y7e{bottom:187.494533pt;}
.ye3{bottom:188.317333pt;}
.y18a{bottom:189.528800pt;}
.y104{bottom:189.687067pt;}
.y50{bottom:189.980133pt;}
.y2c5{bottom:190.255067pt;}
.y359{bottom:190.257600pt;}
.yb2{bottom:190.259867pt;}
.ya0{bottom:190.260000pt;}
.y296{bottom:190.344667pt;}
.y269{bottom:190.345867pt;}
.y215{bottom:190.620267pt;}
.y129{bottom:193.366000pt;}
.y14a{bottom:193.653200pt;}
.y1ef{bottom:193.876667pt;}
.y32f{bottom:195.607067pt;}
.y23f{bottom:197.414800pt;}
.y31f{bottom:197.780000pt;}
.y384{bottom:198.077867pt;}
.y2f3{bottom:198.079200pt;}
.y1cc{bottom:200.549067pt;}
.ye2{bottom:201.110667pt;}
.y3bc{bottom:202.054000pt;}
.y3b1{bottom:202.055200pt;}
.y3a6{bottom:205.241600pt;}
.y103{bottom:205.328400pt;}
.y4f{bottom:205.621467pt;}
.y2c4{bottom:205.896400pt;}
.y358{bottom:205.898933pt;}
.yb1{bottom:205.901200pt;}
.y9f{bottom:205.901333pt;}
.y295{bottom:206.195067pt;}
.y268{bottom:206.196133pt;}
.y128{bottom:209.007333pt;}
.y20{bottom:209.027867pt;}
.y1ee{bottom:209.518000pt;}
.y7d{bottom:210.955733pt;}
.y189{bottom:212.989867pt;}
.y23e{bottom:213.056133pt;}
.y383{bottom:213.719200pt;}
.y2f2{bottom:213.720533pt;}
.ye1{bottom:213.904000pt;}
.y214{bottom:214.081467pt;}
.y1cb{bottom:216.190400pt;}
.y149{bottom:217.114400pt;}
.y102{bottom:220.969733pt;}
.y31e{bottom:221.241200pt;}
.y2c3{bottom:221.537600pt;}
.y357{bottom:221.540267pt;}
.yb0{bottom:221.542533pt;}
.y9e{bottom:221.542667pt;}
.y1f{bottom:221.817200pt;}
.y294{bottom:222.045333pt;}
.y267{bottom:222.046533pt;}
.y163{bottom:223.714667pt;}
.y127{bottom:224.648667pt;}
.y1ed{bottom:225.159333pt;}
.y7c{bottom:225.166400pt;}
.y3a7{bottom:227.452400pt;}
.y23d{bottom:228.697467pt;}
.y4e{bottom:229.082667pt;}
.y382{bottom:229.360533pt;}
.y2f1{bottom:229.361867pt;}
.yc3{bottom:229.362533pt;}
.y1ca{bottom:231.831733pt;}
.y1e{bottom:234.606533pt;}
.y188{bottom:236.451067pt;}
.y101{bottom:236.611067pt;}
.y2c2{bottom:237.178933pt;}
.y356{bottom:237.181600pt;}
.yaf{bottom:237.183867pt;}
.y9d{bottom:237.184000pt;}
.y213{bottom:237.542667pt;}
.y293{bottom:237.895733pt;}
.y266{bottom:237.896800pt;}
.y162{bottom:239.356000pt;}
.y7b{bottom:239.377067pt;}
.y1ec{bottom:240.800667pt;}
.y1a8{bottom:243.716133pt;}
.y23c{bottom:244.338800pt;}
.y381{bottom:245.001867pt;}
.y2f0{bottom:245.003200pt;}
.y1d{bottom:247.395867pt;}
.y1c9{bottom:247.473067pt;}
.y187{bottom:252.092400pt;}
.y100{bottom:252.252400pt;}
.y2c1{bottom:252.820267pt;}
.y355{bottom:252.822933pt;}
.yae{bottom:252.825200pt;}
.y9c{bottom:252.825333pt;}
.y7a{bottom:253.587733pt;}
.y292{bottom:253.746133pt;}
.y265{bottom:253.747200pt;}
.y148{bottom:256.215200pt;}
.y1eb{bottom:256.442000pt;}
.y1a7{bottom:259.357467pt;}
.y23b{bottom:259.980133pt;}
.y1c{bottom:260.185200pt;}
.y31d{bottom:260.342133pt;}
.y4d{bottom:260.363733pt;}
.y380{bottom:260.643200pt;}
.y2ef{bottom:260.644533pt;}
.y212{bottom:261.003733pt;}
.y1c8{bottom:263.114400pt;}
.y126{bottom:263.749467pt;}
.y186{bottom:267.733733pt;}
.y79{bottom:267.798400pt;}
.y2c0{bottom:268.461733pt;}
.yc2{bottom:268.463333pt;}
.y354{bottom:268.464267pt;}
.yad{bottom:268.466533pt;}
.y9b{bottom:268.466667pt;}
.ye0{bottom:268.468267pt;}
.y291{bottom:269.596400pt;}
.y264{bottom:269.597600pt;}
.y147{bottom:271.856533pt;}
.y1ea{bottom:272.083333pt;}
.y1a6{bottom:274.998800pt;}
.y23a{bottom:275.621467pt;}
.yff{bottom:275.713600pt;}
.y31c{bottom:275.983467pt;}
.y37f{bottom:276.284533pt;}
.y2ee{bottom:276.285867pt;}
.y1b{bottom:276.494533pt;}
.y211{bottom:276.645067pt;}
.y161{bottom:278.456933pt;}
.y1c7{bottom:278.755733pt;}
.y185{bottom:283.375067pt;}
.y2bf{bottom:284.102933pt;}
.yc1{bottom:284.104800pt;}
.y353{bottom:284.105600pt;}
.yac{bottom:284.107867pt;}
.y9a{bottom:284.108000pt;}
.ydf{bottom:284.109600pt;}
.y125{bottom:285.060133pt;}
.y290{bottom:285.446800pt;}
.y146{bottom:287.497867pt;}
.y1e9{bottom:287.724667pt;}
.y78{bottom:289.828933pt;}
.yfe{bottom:289.924267pt;}
.y1a5{bottom:290.640133pt;}
.y239{bottom:291.262800pt;}
.y31b{bottom:291.624800pt;}
.y37e{bottom:291.925867pt;}
.y2ed{bottom:291.927200pt;}
.y210{bottom:292.286400pt;}
.y263{bottom:293.267733pt;}
.y1c6{bottom:294.397067pt;}
.y184{bottom:299.016400pt;}
.y2be{bottom:299.744400pt;}
.yc0{bottom:299.746000pt;}
.y352{bottom:299.746933pt;}
.y99{bottom:299.749333pt;}
.yde{bottom:299.750933pt;}
.y160{bottom:299.767467pt;}
.y28f{bottom:301.297200pt;}
.y145{bottom:303.139200pt;}
.y1e8{bottom:303.366000pt;}
.yfd{bottom:304.134933pt;}
.y1a4{bottom:306.281467pt;}
.y238{bottom:306.904133pt;}
.y31a{bottom:307.266133pt;}
.y37d{bottom:307.567200pt;}
.y2ec{bottom:307.568533pt;}
.y20f{bottom:307.927733pt;}
.y3ab{bottom:308.221467pt;}
.y262{bottom:309.118133pt;}
.y1c5{bottom:310.038400pt;}
.y4c{bottom:310.803200pt;}
.y77{bottom:313.290133pt;}
.y3b3{bottom:313.890667pt;}
.y1a{bottom:314.674000pt;}
.y2bd{bottom:315.385600pt;}
.ybf{bottom:315.387333pt;}
.y351{bottom:315.388267pt;}
.yab{bottom:315.390533pt;}
.y98{bottom:315.390667pt;}
.ydd{bottom:315.392267pt;}
.y28e{bottom:317.147467pt;}
.yfc{bottom:318.345600pt;}
.y1a3{bottom:321.922800pt;}
.y183{bottom:322.477600pt;}
.y237{bottom:322.545467pt;}
.y319{bottom:322.907467pt;}
.y37c{bottom:323.208533pt;}
.y2eb{bottom:323.209867pt;}
.y20e{bottom:323.569067pt;}
.y261{bottom:324.968400pt;}
.y4b{bottom:325.013733pt;}
.y1e7{bottom:326.827200pt;}
.y76{bottom:327.500800pt;}
.y19{bottom:328.886000pt;}
.y144{bottom:330.119200pt;}
.y2bc{bottom:331.026933pt;}
.ybe{bottom:331.028667pt;}
.y350{bottom:331.029600pt;}
.yaa{bottom:331.031867pt;}
.y97{bottom:331.032000pt;}
.ydc{bottom:331.033600pt;}
.y28d{bottom:332.997867pt;}
.y1c4{bottom:333.499600pt;}
.y236{bottom:338.186800pt;}
.y318{bottom:338.548800pt;}
.y37b{bottom:338.849867pt;}
.y2ea{bottom:338.851200pt;}
.y20d{bottom:339.210400pt;}
.yfb{bottom:340.376133pt;}
.y260{bottom:340.818800pt;}
.y75{bottom:341.711467pt;}
.y4a{bottom:343.004000pt;}
.y18{bottom:343.098000pt;}
.y143{bottom:344.329867pt;}
.y1a2{bottom:345.384000pt;}
.y2bb{bottom:346.668400pt;}
.ybd{bottom:346.670133pt;}
.y34f{bottom:346.670933pt;}
.ya9{bottom:346.673200pt;}
.y96{bottom:346.673333pt;}
.ydb{bottom:346.674933pt;}
.y28c{bottom:348.848267pt;}
.y1e6{bottom:350.288267pt;}
.y235{bottom:353.828133pt;}
.y317{bottom:354.190133pt;}
.y37a{bottom:354.491200pt;}
.y2e9{bottom:354.492533pt;}
.y20c{bottom:354.851867pt;}
.y74{bottom:355.922133pt;}
.y11f{bottom:356.388400pt;}
.y25f{bottom:356.669200pt;}
.y1c3{bottom:356.960800pt;}
.y49{bottom:357.214667pt;}
.y17{bottom:357.310000pt;}
.y142{bottom:358.540400pt;}
.y182{bottom:359.080533pt;}
.y2ba{bottom:362.309600pt;}
.ybc{bottom:362.311333pt;}
.y34e{bottom:362.312267pt;}
.y32e{bottom:362.312400pt;}
.y95{bottom:362.314667pt;}
.yda{bottom:362.316267pt;}
.yfa{bottom:363.837333pt;}
.y28b{bottom:364.698533pt;}
.y1a1{bottom:368.845200pt;}
.y234{bottom:369.469467pt;}
.y316{bottom:369.831467pt;}
.y379{bottom:370.132533pt;}
.y2e8{bottom:370.133867pt;}
.y20b{bottom:370.493067pt;}
.y48{bottom:371.425333pt;}
.y16{bottom:371.516800pt;}
.y25e{bottom:372.519467pt;}
.y141{bottom:372.751200pt;}
.y1e5{bottom:373.749467pt;}
.y11e{bottom:377.698933pt;}
.y2b9{bottom:377.951067pt;}
.y73{bottom:377.952667pt;}
.y34d{bottom:377.953600pt;}
.y32d{bottom:377.953733pt;}
.ya8{bottom:377.955867pt;}
.y94{bottom:377.956000pt;}
.yd9{bottom:377.957600pt;}
.yf9{bottom:378.047867pt;}
.y3a8{bottom:378.630400pt;}
.y1c2{bottom:380.421867pt;}
.y28a{bottom:380.548933pt;}
.y181{bottom:381.386800pt;}
.y3ad{bottom:382.146933pt;}
.y233{bottom:385.110800pt;}
.y315{bottom:385.472800pt;}
.y47{bottom:385.636000pt;}
.y15{bottom:385.728800pt;}
.y378{bottom:385.773867pt;}
.y2e7{bottom:385.775200pt;}
.y20a{bottom:386.134400pt;}
.y140{bottom:386.961867pt;}
.y25d{bottom:388.369867pt;}
.y10e{bottom:389.118400pt;}
.y1e4{bottom:389.390933pt;}
.yf8{bottom:392.258667pt;}
.y1a0{bottom:392.306400pt;}
.y2b8{bottom:393.592267pt;}
.y72{bottom:393.594000pt;}
.ybb{bottom:393.594133pt;}
.y34c{bottom:393.594933pt;}
.y32c{bottom:393.595067pt;}
.ya7{bottom:393.597200pt;}
.y93{bottom:393.597333pt;}
.yd8{bottom:393.598933pt;}
.y1c1{bottom:396.063200pt;}
.y289{bottom:396.399200pt;}
.y46{bottom:399.846667pt;}
.y14{bottom:399.940800pt;}
.y232{bottom:400.752133pt;}
.y314{bottom:401.114133pt;}
.y377{bottom:401.415200pt;}
.y2e6{bottom:401.416533pt;}
.y209{bottom:401.775733pt;}
.y159{bottom:402.186800pt;}
.y25c{bottom:404.220267pt;}
.y10d{bottom:404.759733pt;}
.y1e3{bottom:405.032133pt;}
.yf7{bottom:406.469333pt;}
.y19f{bottom:407.947733pt;}
.y180{bottom:408.212000pt;}
.y2b7{bottom:409.233733pt;}
.y71{bottom:409.235333pt;}
.y34b{bottom:409.236267pt;}
.y32b{bottom:409.236400pt;}
.y92{bottom:409.238667pt;}
.yd7{bottom:409.240267pt;}
.y1c0{bottom:411.704533pt;}
.y288{bottom:412.249600pt;}
.y13f{bottom:412.511067pt;}
.y45{bottom:414.057333pt;}
.y13{bottom:414.151467pt;}
.y231{bottom:416.393467pt;}
.y313{bottom:416.755467pt;}
.y376{bottom:417.056533pt;}
.y2e5{bottom:417.057867pt;}
.y208{bottom:417.417067pt;}
.y25b{bottom:420.070533pt;}
.y1e2{bottom:420.673467pt;}
.y158{bottom:423.497467pt;}
.y19e{bottom:423.589067pt;}
.y2b6{bottom:424.874933pt;}
.y70{bottom:424.876667pt;}
.y34a{bottom:424.877600pt;}
.y32a{bottom:424.877733pt;}
.ya6{bottom:424.879867pt;}
.y91{bottom:424.880000pt;}
.yd6{bottom:424.881600pt;}
.y1bf{bottom:427.345867pt;}
.y17f{bottom:427.632800pt;}
.y13e{bottom:428.152400pt;}
.y44{bottom:428.268000pt;}
.y12{bottom:428.363467pt;}
.yf6{bottom:428.499733pt;}
.y312{bottom:432.396800pt;}
.y375{bottom:432.697867pt;}
.y2e4{bottom:432.699200pt;}
.y287{bottom:435.919867pt;}
.y25a{bottom:435.920933pt;}
.y1e1{bottom:436.314800pt;}
.y19d{bottom:439.230400pt;}
.y230{bottom:439.854533pt;}
.y2b5{bottom:440.516267pt;}
.y6f{bottom:440.518000pt;}
.y349{bottom:440.518933pt;}
.y329{bottom:440.519067pt;}
.ya5{bottom:440.521200pt;}
.y90{bottom:440.521333pt;}
.yd5{bottom:440.522933pt;}
.y207{bottom:440.878267pt;}
.y43{bottom:442.478667pt;}
.y11{bottom:442.564800pt;}
.y1be{bottom:442.987200pt;}
.y10c{bottom:443.860667pt;}
.yf5{bottom:444.141067pt;}
.y374{bottom:448.339200pt;}
.y2e3{bottom:448.340533pt;}
.y17e{bottom:451.094000pt;}
.y13d{bottom:451.613600pt;}
.y286{bottom:451.770133pt;}
.y259{bottom:451.771333pt;}
.y1e0{bottom:451.956267pt;}
.y311{bottom:455.857867pt;}
.y2b4{bottom:456.157733pt;}
.y6e{bottom:456.159333pt;}
.y348{bottom:456.160267pt;}
.y328{bottom:456.160400pt;}
.y8f{bottom:456.162667pt;}
.yd4{bottom:456.164267pt;}
.y42{bottom:456.689333pt;}
.y10{bottom:456.776800pt;}
.y1bd{bottom:458.628533pt;}
.yf4{bottom:459.782533pt;}
.y19c{bottom:462.691467pt;}
.y373{bottom:463.980533pt;}
.y2e2{bottom:463.981867pt;}
.ya4{bottom:463.982400pt;}
.y206{bottom:464.339467pt;}
.y10b{bottom:465.171200pt;}
.y285{bottom:467.620533pt;}
.y258{bottom:467.621600pt;}
.y41{bottom:470.900000pt;}
.yf{bottom:470.988800pt;}
.y310{bottom:471.499333pt;}
.y2b3{bottom:471.798933pt;}
.y6d{bottom:471.800667pt;}
.y347{bottom:471.801600pt;}
.y327{bottom:471.801733pt;}
.y8e{bottom:471.804000pt;}
.yd3{bottom:471.805600pt;}
.y1bc{bottom:474.269867pt;}
.y1df{bottom:475.417333pt;}
.yf3{bottom:475.423867pt;}
.y3ae{bottom:477.544267pt;}
.y22f{bottom:478.955467pt;}
.y372{bottom:479.621867pt;}
.y2e1{bottom:479.623200pt;}
.y205{bottom:479.980800pt;}
.y3bf{bottom:481.322533pt;}
.y3bb{bottom:481.323733pt;}
.y3b6{bottom:481.323867pt;}
.y284{bottom:483.470800pt;}
.y257{bottom:483.472000pt;}
.y17d{bottom:483.743200pt;}
.y40{bottom:485.110667pt;}
.ye{bottom:485.200800pt;}
.y19b{bottom:486.152667pt;}
.y30f{bottom:487.140533pt;}
.y2b2{bottom:487.440400pt;}
.y6c{bottom:487.442000pt;}
.y346{bottom:487.442933pt;}
.y326{bottom:487.443067pt;}
.y8d{bottom:487.445333pt;}
.yd2{bottom:487.446933pt;}
.y1bb{bottom:489.911200pt;}
.y13c{bottom:490.714400pt;}
.y22e{bottom:494.596800pt;}
.y371{bottom:495.263200pt;}
.y2e0{bottom:495.264533pt;}
.y204{bottom:495.622133pt;}
.y1de{bottom:498.878533pt;}
.yf2{bottom:498.884933pt;}
.y3f{bottom:499.321333pt;}
.y17c{bottom:499.384533pt;}
.yd{bottom:499.412800pt;}
.y19a{bottom:501.794000pt;}
.y30e{bottom:502.782000pt;}
.y2b1{bottom:503.081600pt;}
.y6b{bottom:503.083333pt;}
.yba{bottom:503.083467pt;}
.y345{bottom:503.084267pt;}
.y325{bottom:503.084400pt;}
.y8c{bottom:503.086667pt;}
.yd1{bottom:503.088267pt;}
.y1ba{bottom:505.552533pt;}
.y13b{bottom:506.355733pt;}
.y283{bottom:507.141067pt;}
.y256{bottom:507.142133pt;}
.y22d{bottom:510.238133pt;}
.y370{bottom:510.904533pt;}
.y203{bottom:511.263467pt;}
.y3e{bottom:513.532000pt;}
.yc{bottom:513.624800pt;}
.y1dd{bottom:514.519867pt;}
.y17b{bottom:515.025867pt;}
.y199{bottom:517.435333pt;}
.y30d{bottom:518.423200pt;}
.y2b0{bottom:518.722933pt;}
.y6a{bottom:518.724667pt;}
.y344{bottom:518.725600pt;}
.y2df{bottom:518.725733pt;}
.y8b{bottom:518.728000pt;}
.yd0{bottom:518.729600pt;}
.y13a{bottom:521.997067pt;}
.y282{bottom:522.991467pt;}
.y255{bottom:522.992533pt;}
.y22c{bottom:525.879467pt;}
.y36f{bottom:526.545867pt;}
.y202{bottom:526.904800pt;}
.y3d{bottom:527.742667pt;}
.yb{bottom:527.836800pt;}
.y1b9{bottom:529.013733pt;}
.y1dc{bottom:530.161200pt;}
.yf1{bottom:530.166000pt;}
.y17a{bottom:530.667200pt;}
.y198{bottom:533.076667pt;}
.y30c{bottom:534.064667pt;}
.y2af{bottom:534.364400pt;}
.y69{bottom:534.366000pt;}
.y343{bottom:534.366933pt;}
.y2de{bottom:534.367067pt;}
.y8a{bottom:534.369333pt;}
.ycf{bottom:534.370933pt;}
.y139{bottom:537.638400pt;}
.y281{bottom:538.841733pt;}
.y254{bottom:538.842933pt;}
.y22b{bottom:541.520800pt;}
.y3c{bottom:541.953333pt;}
.ya{bottom:542.048800pt;}
.y36e{bottom:542.187200pt;}
.y201{bottom:542.546133pt;}
.y1db{bottom:545.802533pt;}
.y179{bottom:546.308533pt;}
.y30b{bottom:549.705867pt;}
.y2ae{bottom:550.005600pt;}
.y68{bottom:550.007333pt;}
.yb9{bottom:550.007467pt;}
.y342{bottom:550.008267pt;}
.y2dd{bottom:550.008400pt;}
.yce{bottom:550.012267pt;}
.y1b8{bottom:552.474933pt;}
.y138{bottom:553.279733pt;}
.y280{bottom:554.692133pt;}
.y3b{bottom:556.164000pt;}
.y197{bottom:556.537867pt;}
.y22a{bottom:557.162133pt;}
.y36d{bottom:557.828533pt;}
.y89{bottom:557.830533pt;}
.y200{bottom:558.187467pt;}
.y124{bottom:559.179600pt;}
.y1da{bottom:561.443867pt;}
.yf0{bottom:561.447067pt;}
.y178{bottom:561.949867pt;}
.y253{bottom:562.513067pt;}
.y15f{bottom:562.539333pt;}
.y30a{bottom:565.347200pt;}
.y2ad{bottom:565.647067pt;}
.y67{bottom:565.648667pt;}
.y341{bottom:565.649600pt;}
.y2dc{bottom:565.649733pt;}
.ycd{bottom:565.653600pt;}
.y39a{bottom:566.421600pt;}
.y1b7{bottom:568.116267pt;}
.y137{bottom:568.921200pt;}
.y3a{bottom:570.374667pt;}
.y27f{bottom:570.542533pt;}
.y229{bottom:572.803467pt;}
.y36c{bottom:573.469867pt;}
.y1ff{bottom:573.828800pt;}
.y1d9{bottom:577.085200pt;}
.y177{bottom:577.591200pt;}
.y252{bottom:578.363467pt;}
.y123{bottom:580.490267pt;}
.y309{bottom:580.988667pt;}
.y2ac{bottom:581.288267pt;}
.y66{bottom:581.290000pt;}
.y340{bottom:581.290933pt;}
.y2db{bottom:581.291067pt;}
.ycc{bottom:581.294933pt;}
.y399{bottom:582.062800pt;}
.y1b6{bottom:583.757600pt;}
.y15e{bottom:583.850000pt;}
.y136{bottom:584.562400pt;}
.y39{bottom:584.585333pt;}
.y27e{bottom:586.392800pt;}
.y228{bottom:588.444800pt;}
.y36b{bottom:589.111200pt;}
.y1fe{bottom:589.470133pt;}
.y1d8{bottom:592.726533pt;}
.y251{bottom:594.213733pt;}
.y308{bottom:596.629867pt;}
.y196{bottom:596.920267pt;}
.y2ab{bottom:596.929733pt;}
.y65{bottom:596.931333pt;}
.y33f{bottom:596.932267pt;}
.y2da{bottom:596.932400pt;}
.ycb{bottom:596.936267pt;}
.y398{bottom:597.704267pt;}
.y38{bottom:598.796000pt;}
.y1b5{bottom:599.398933pt;}
.y135{bottom:600.203867pt;}
.y176{bottom:601.052400pt;}
.y27d{bottom:602.243200pt;}
.y227{bottom:604.086133pt;}
.y36a{bottom:604.752533pt;}
.y1d7{bottom:608.367867pt;}
.y250{bottom:610.064133pt;}
.y195{bottom:610.911600pt;}
.y9{bottom:612.045200pt;}
.y307{bottom:612.271200pt;}
.y2aa{bottom:612.571067pt;}
.y64{bottom:612.572667pt;}
.y33e{bottom:612.573600pt;}
.y2d9{bottom:612.573733pt;}
.yca{bottom:612.577600pt;}
.y1fd{bottom:612.931333pt;}
.y37{bottom:613.006667pt;}
.y397{bottom:613.345600pt;}
.y1b4{bottom:615.040267pt;}
.yef{bottom:617.469200pt;}
.y27c{bottom:618.093600pt;}
.y226{bottom:619.727467pt;}
.y369{bottom:620.393867pt;}
.y194{bottom:624.902800pt;}
.y24f{bottom:625.914533pt;}
.y36{bottom:627.217333pt;}
.y306{bottom:627.912533pt;}
.y2a9{bottom:628.212267pt;}
.y63{bottom:628.214000pt;}
.y88{bottom:628.214133pt;}
.y33d{bottom:628.214933pt;}
.y2d8{bottom:628.215067pt;}
.yc9{bottom:628.218933pt;}
.y8{bottom:628.618133pt;}
.y396{bottom:628.986933pt;}
.y1b3{bottom:630.681600pt;}
.yee{bottom:631.460400pt;}
.y1d6{bottom:631.829067pt;}
.y27b{bottom:633.943867pt;}
.y225{bottom:635.368800pt;}
.y368{bottom:636.035200pt;}
.y175{bottom:640.153333pt;}
.y134{bottom:640.325467pt;}
.y35{bottom:641.428000pt;}
.y24e{bottom:641.764800pt;}
.y305{bottom:643.554000pt;}
.y2a8{bottom:643.853733pt;}
.y62{bottom:643.855333pt;}
.y11d{bottom:643.855733pt;}
.y33c{bottom:643.856267pt;}
.y2d7{bottom:643.856400pt;}
.yc8{bottom:643.860267pt;}
.y395{bottom:644.628267pt;}
.yed{bottom:645.451867pt;}
.y3af{bottom:646.867067pt;}
.y193{bottom:647.209067pt;}
.y3b4{bottom:648.756800pt;}
.y3b9{bottom:648.756933pt;}
.y27a{bottom:649.794267pt;}
.y224{bottom:651.010133pt;}
.y367{bottom:651.676533pt;}
.y1b2{bottom:654.142800pt;}
.y133{bottom:654.316667pt;}
.y34{bottom:655.638667pt;}
.y174{bottom:655.794533pt;}
.y24d{bottom:657.615200pt;}
.y304{bottom:659.195200pt;}
.yec{bottom:659.443200pt;}
.y2a7{bottom:659.494933pt;}
.y61{bottom:659.496667pt;}
.y157{bottom:659.496933pt;}
.y11c{bottom:659.497067pt;}
.y33b{bottom:659.497600pt;}
.y2d6{bottom:659.497733pt;}
.y394{bottom:660.269467pt;}
.y1fc{bottom:664.391467pt;}
.y1d5{bottom:664.391600pt;}
.y7{bottom:665.046800pt;}
.y279{bottom:665.644667pt;}
.y223{bottom:666.651467pt;}
.y366{bottom:667.317867pt;}
.yc7{bottom:667.321467pt;}
.y132{bottom:668.308133pt;}
.y173{bottom:671.436000pt;}
.y24c{bottom:673.465600pt;}
.y192{bottom:674.034267pt;}
.y303{bottom:674.836533pt;}
.y2a6{bottom:675.136267pt;}
.y60{bottom:675.138000pt;}
.y156{bottom:675.138267pt;}
.y11b{bottom:675.138400pt;}
.y33a{bottom:675.138933pt;}
.y2d5{bottom:675.139067pt;}
.y393{bottom:675.910933pt;}
.y1fb{bottom:678.382667pt;}
.y1d4{bottom:678.382800pt;}
.y278{bottom:681.494933pt;}
.yeb{bottom:681.749333pt;}
.y222{bottom:682.292800pt;}
.y365{bottom:682.959200pt;}
.y33{bottom:684.060400pt;}
.y172{bottom:687.077333pt;}
.y6{bottom:687.446800pt;}
.y24b{bottom:689.315867pt;}
.y302{bottom:690.478000pt;}
.y131{bottom:690.614267pt;}
.y2a5{bottom:690.777733pt;}
.y5f{bottom:690.779333pt;}
.y155{bottom:690.779600pt;}
.y11a{bottom:690.779733pt;}
.y339{bottom:690.780267pt;}
.y2d4{bottom:690.780400pt;}
.y392{bottom:691.552267pt;}
.y1fa{bottom:692.374000pt;}
.y1d3{bottom:692.374133pt;}
.y1b1{bottom:694.264533pt;}
.y191{bottom:695.344933pt;}
.y277{bottom:697.345333pt;}
.y221{bottom:697.934133pt;}
.y32{bottom:698.270933pt;}
.y364{bottom:698.600533pt;}
.yc6{bottom:698.602400pt;}
.y171{bottom:702.718533pt;}
.y24a{bottom:705.166267pt;}
.y301{bottom:706.119333pt;}
.y1f9{bottom:706.365200pt;}
.y1d2{bottom:706.365333pt;}
.y2a4{bottom:706.419067pt;}
.y5e{bottom:706.420667pt;}
.y87{bottom:706.420800pt;}
.y154{bottom:706.420933pt;}
.y119{bottom:706.421067pt;}
.y338{bottom:706.421600pt;}
.y2d3{bottom:706.421733pt;}
.y391{bottom:707.193600pt;}
.y1b0{bottom:708.255733pt;}
.yea{bottom:708.574667pt;}
.y5{bottom:709.846533pt;}
.y276{bottom:713.195600pt;}
.y363{bottom:714.242000pt;}
.y31{bottom:716.261200pt;}
.y130{bottom:717.439600pt;}
.y170{bottom:718.360000pt;}
.y190{bottom:718.806133pt;}
.y249{bottom:721.016667pt;}
.y220{bottom:721.395333pt;}
.y300{bottom:721.760667pt;}
.y2a3{bottom:722.060400pt;}
.y5d{bottom:722.062000pt;}
.y86{bottom:722.062133pt;}
.y118{bottom:722.062400pt;}
.y337{bottom:722.062933pt;}
.y2d2{bottom:722.063067pt;}
.y390{bottom:722.834933pt;}
.y1f8{bottom:728.671333pt;}
.y1d1{bottom:728.671467pt;}
.y362{bottom:729.883333pt;}
.ye9{bottom:729.885200pt;}
.y30{bottom:730.471867pt;}
.y1af{bottom:730.561867pt;}
.y4{bottom:733.846533pt;}
.y16f{bottom:734.001333pt;}
.y21f{bottom:735.606000pt;}
.y275{bottom:736.865867pt;}
.y248{bottom:736.866933pt;}
.y2ff{bottom:737.402000pt;}
.y2a2{bottom:737.701600pt;}
.y5c{bottom:737.703333pt;}
.y153{bottom:737.703600pt;}
.y117{bottom:737.703733pt;}
.y336{bottom:737.704267pt;}
.y2d1{bottom:737.704400pt;}
.y38f{bottom:738.476267pt;}
.y12f{bottom:738.750133pt;}
.y2f{bottom:744.682667pt;}
.y361{bottom:745.524667pt;}
.y16e{bottom:749.642533pt;}
.y21e{bottom:749.816667pt;}
.y274{bottom:752.716133pt;}
.y247{bottom:752.717333pt;}
.y2fe{bottom:753.043333pt;}
.y2a1{bottom:753.343067pt;}
.y5b{bottom:753.344667pt;}
.y152{bottom:753.344933pt;}
.y116{bottom:753.345067pt;}
.y335{bottom:753.345600pt;}
.y2d0{bottom:753.345733pt;}
.y38e{bottom:754.117733pt;}
.y1f7{bottom:755.496533pt;}
.y1d0{bottom:755.496667pt;}
.y1ae{bottom:757.387067pt;}
.y2e{bottom:758.893333pt;}
.y360{bottom:761.166000pt;}
.y21d{bottom:764.027333pt;}
.y273{bottom:768.566533pt;}
.y246{bottom:768.567733pt;}
.y2fd{bottom:768.684667pt;}
.y2a0{bottom:768.984400pt;}
.y5a{bottom:768.986000pt;}
.y85{bottom:768.986133pt;}
.y151{bottom:768.986267pt;}
.y115{bottom:768.986400pt;}
.y334{bottom:768.986933pt;}
.y2cf{bottom:768.987067pt;}
.y38d{bottom:769.759067pt;}
.y16d{bottom:773.103733pt;}
.y2d{bottom:773.104000pt;}
.y1f6{bottom:776.807200pt;}
.y1cf{bottom:776.807333pt;}
.y1ad{bottom:776.807867pt;}
.y21c{bottom:778.238000pt;}
.y2fc{bottom:784.326000pt;}
.y272{bottom:784.416800pt;}
.y245{bottom:784.418000pt;}
.y29f{bottom:784.625733pt;}
.y59{bottom:784.627333pt;}
.y84{bottom:784.627467pt;}
.y114{bottom:784.627733pt;}
.y2ce{bottom:784.628400pt;}
.y38c{bottom:785.400400pt;}
.y16c{bottom:787.314400pt;}
.y2c{bottom:787.314667pt;}
.y1{bottom:793.537067pt;}
.y2fb{bottom:799.967333pt;}
.y29e{bottom:800.267067pt;}
.y271{bottom:800.267200pt;}
.y1f5{bottom:800.268400pt;}
.y1ce{bottom:800.268533pt;}
.y58{bottom:800.268667pt;}
.y83{bottom:800.268800pt;}
.y113{bottom:800.269067pt;}
.y2cd{bottom:800.269733pt;}
.y38b{bottom:801.041733pt;}
.y16b{bottom:801.525067pt;}
.y2b{bottom:801.525333pt;}
.y3{bottom:818.989333pt;}
.y26f{bottom:832.683067pt;}
.y15c{bottom:832.684400pt;}
.y29{bottom:832.684667pt;}
.y111{bottom:832.685067pt;}
.y2cb{bottom:832.685733pt;}
.y2{bottom:834.629333pt;}
.h24{height:19.500000pt;}
.he{height:22.879600pt;}
.h11{height:27.738667pt;}
.h28{height:28.079600pt;}
.h1a{height:28.600000pt;}
.h26{height:30.506667pt;}
.h27{height:30.520889pt;}
.h15{height:30.805333pt;}
.h29{height:31.500533pt;}
.h2{height:31.701333pt;}
.h25{height:32.000000pt;}
.h3{height:33.682667pt;}
.h8{height:34.000000pt;}
.h2a{height:34.336000pt;}
.h23{height:34.400000pt;}
.hf{height:35.200000pt;}
.h10{height:35.669333pt;}
.h1b{height:36.000000pt;}
.h1f{height:36.226667pt;}
.h1d{height:37.799600pt;}
.ha{height:38.000000pt;}
.hd{height:38.015467pt;}
.hb{height:38.037333pt;}
.h22{height:38.133333pt;}
.h18{height:38.151111pt;}
.h9{height:38.506667pt;}
.hc{height:39.904933pt;}
.h19{height:40.000000pt;}
.h21{height:40.533333pt;}
.h1e{height:40.797841pt;}
.h13{height:41.184000pt;}
.h1c{height:41.999600pt;}
.h7{height:42.000000pt;}
.h14{height:43.200000pt;}
.h16{height:43.776000pt;}
.h12{height:44.000000pt;}
.h17{height:45.359600pt;}
.h20{height:45.360133pt;}
.h2b{height:48.230400pt;}
.h6{height:56.746667pt;}
.h4{height:57.200000pt;}
.h5{height:63.000667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x47{left:55.794267pt;}
.x67{left:70.912267pt;}
.x48{left:79.255333pt;}
.xd{left:83.149600pt;}
.x2{left:86.929200pt;}
.x31{left:93.589467pt;}
.x49{left:94.896667pt;}
.xe{left:102.047200pt;}
.x9{left:105.826800pt;}
.xa{left:109.606267pt;}
.x4a{left:110.538000pt;}
.x32{left:117.050667pt;}
.x2a{left:119.055200pt;}
.x28{left:122.834667pt;}
.x68{left:125.656133pt;}
.x6{left:127.487600pt;}
.x4{left:131.681467pt;}
.x33{left:132.692000pt;}
.x16{left:134.309200pt;}
.x4b{left:136.305067pt;}
.x10{left:138.088800pt;}
.x88{left:139.394933pt;}
.xb{left:140.401467pt;}
.x69{left:141.297467pt;}
.xc{left:145.067067pt;}
.x34{left:148.333333pt;}
.x15{left:153.206933pt;}
.x4c{left:155.200933pt;}
.xf{left:156.986400pt;}
.xa2{left:159.898133pt;}
.x8{left:166.361200pt;}
.x4d{left:168.049600pt;}
.x14{left:175.748000pt;}
.x6a{left:179.705733pt;}
.x13{left:181.399333pt;}
.x2f{left:183.307067pt;}
.x2c{left:187.086667pt;}
.xa7{left:189.309733pt;}
.x12{left:190.638533pt;}
.x27{left:192.848667pt;}
.x4e{left:193.746933pt;}
.x89{left:196.237600pt;}
.x95{left:197.322533pt;}
.x6b{left:201.021733pt;}
.x20{left:202.608933pt;}
.x3{left:203.981467pt;}
.x35{left:205.477200pt;}
.x4f{left:206.595600pt;}
.x5{left:209.844933pt;}
.x2d{left:212.111733pt;}
.x18{left:213.385067pt;}
.x2b{left:215.891333pt;}
.x8a{left:218.543867pt;}
.x36{left:219.468400pt;}
.xa8{left:224.836533pt;}
.x6c{left:226.608400pt;}
.x21{left:227.809200pt;}
.x19{left:229.038000pt;}
.x1f{left:231.444533pt;}
.x37{left:233.459733pt;}
.x1e{left:236.537333pt;}
.x6d{left:239.401733pt;}
.xae{left:243.047867pt;}
.x50{left:245.141600pt;}
.x38{left:247.450933pt;}
.x98{left:251.107600pt;}
.x96{left:254.165200pt;}
.x51{left:257.990267pt;}
.x29{left:260.105600pt;}
.x39{left:261.442133pt;}
.x99{left:265.318267pt;}
.x2e{left:267.664533pt;}
.x6e{left:270.510933pt;}
.x26{left:271.444133pt;}
.x24{left:272.337467pt;}
.x7{left:273.247600pt;}
.x3a{left:275.433333pt;}
.x30{left:277.290667pt;}
.x9a{left:279.528933pt;}
.x97{left:282.586533pt;}
.x52{left:283.687600pt;}
.x1c{left:286.016933pt;}
.x1b{left:287.977067pt;}
.x3b{left:289.424667pt;}
.x23{left:292.603200pt;}
.x1d{left:293.543067pt;}
.x6f{left:296.097600pt;}
.x1a{left:296.997200pt;}
.x11{left:299.710267pt;}
.x17{left:300.776800pt;}
.x25{left:303.489867pt;}
.x9b{left:307.950267pt;}
.x53{left:309.384933pt;}
.xa9{left:311.090667pt;}
.x71{left:314.413467pt;}
.x3c{left:317.407067pt;}
.x9c{left:319.103333pt;}
.x54{left:322.233600pt;}
.xaf{left:326.244400pt;}
.x72{left:327.206800pt;}
.x3d{left:331.398267pt;}
.x70{left:333.603467pt;}
.x55{left:335.082267pt;}
.xa3{left:336.454400pt;}
.x73{left:340.000133pt;}
.x3e{left:345.389600pt;}
.x22{left:347.716533pt;}
.xa4{left:350.665067pt;}
.x74{left:352.793467pt;}
.x8c{left:354.535333pt;}
.x3f{left:359.380800pt;}
.x56{left:360.779600pt;}
.x9d{left:361.735333pt;}
.xa5{left:364.875733pt;}
.x8d{left:368.746000pt;}
.x76{left:371.109467pt;}
.x40{left:373.372000pt;}
.xa6{left:379.086400pt;}
.x8e{left:382.956667pt;}
.x77{left:383.902800pt;}
.x41{left:387.363200pt;}
.x75{left:390.299333pt;}
.x8b{left:394.109733pt;}
.x78{left:396.696133pt;}
.x9e{left:398.252133pt;}
.x57{left:399.325600pt;}
.x42{left:401.354400pt;}
.x90{left:405.262800pt;}
.x1{left:407.160000pt;}
.x8f{left:408.320400pt;}
.x79{left:409.489467pt;}
.x58{left:412.174267pt;}
.x43{left:415.345600pt;}
.x91{left:419.473600pt;}
.xaa{left:422.708533pt;}
.x59{left:425.022933pt;}
.x9f{left:426.673467pt;}
.x7e{left:427.805333pt;}
.x44{left:429.336800pt;}
.x7b{left:434.202000pt;}
.xab{left:436.919200pt;}
.x5a{left:437.871600pt;}
.x7f{left:440.598667pt;}
.x45{left:443.328000pt;}
.x7c{left:446.995333pt;}
.x92{left:447.894800pt;}
.x5b{left:450.720267pt;}
.x80{left:453.392000pt;}
.xa0{left:455.094800pt;}
.x46{left:457.319200pt;}
.x7d{left:459.788667pt;}
.xac{left:462.283067pt;}
.x5c{left:463.568933pt;}
.x81{left:466.185333pt;}
.xa1{left:469.305467pt;}
.x7a{left:475.343333pt;}
.x5d{left:476.417600pt;}
.x82{left:484.501200pt;}
.x5e{left:489.266267pt;}
.xad{left:490.704400pt;}
.x83{left:497.294533pt;}
.x5f{left:502.114933pt;}
.x84{left:510.087867pt;}
.x60{left:514.963600pt;}
.x85{left:522.881200pt;}
.x61{left:527.812267pt;}
.x62{left:540.660933pt;}
.x93{left:543.056667pt;}
.x63{left:553.509467pt;}
.x94{left:559.370133pt;}
.x86{left:561.954400pt;}
.x64{left:566.358133pt;}
.x87{left:578.267733pt;}
.x65{left:579.206933pt;}
.x66{left:592.055467pt;}
}




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