
    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_a0cc48f6aa33207a48b43a53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_6256825722303a2a5f434e6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_60a24c7c304bbf7f2e8cb3cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.825000;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065581;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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_eebaa4ca820c04c041de726b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_3c904b5d4488ea77d10286be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_18b81a87adfbdaf63fe9e0de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_0ce5eae97df3cd1c5fa435f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_0aedadb4400a8a79bd27d5ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81fe2efcf02e69e9f4bb0e1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_ef523cc8ecbda2d7a610a129.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;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_81abe06e205b83d0628ccab8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;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_6da0e190e673bad21daedc0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.328000;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_c8cf0b29d48590b44b5a5f21.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;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_3a2e9cb3ab0421c2239bccb2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.939000;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_4cf915dfd866502a5c3ed926.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m9{transform:matrix(0.000000,-0.245621,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245621,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245621,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249527,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249527,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249527,0.250000,0.000000,0,0);}
.m6{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);}
.md{transform:matrix(0.000000,-0.250490,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250490,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250490,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254451,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,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);}
.v2{vertical-align:-20.400055px;}
.v3{vertical-align:-14.999451px;}
.v6{vertical-align:-12.640746px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.512000px;}
.v7{vertical-align:12.750000px;}
.v4{vertical-align:15.000000px;}
.v5{vertical-align:20.324963px;}
.v1{vertical-align:24.000000px;}
.lsb1{letter-spacing:-1.989000px;}
.lsb3{letter-spacing:-1.377000px;}
.ls4c{letter-spacing:-1.326000px;}
.ls5f{letter-spacing:-1.260000px;}
.ls5e{letter-spacing:-1.200000px;}
.ls4a{letter-spacing:-1.122000px;}
.ls4b{letter-spacing:-1.071000px;}
.lsb2{letter-spacing:-1.020000px;}
.ls5d{letter-spacing:-0.900000px;}
.ls58{letter-spacing:-0.663000px;}
.ls29{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.420000px;}
.lsb4{letter-spacing:-0.408000px;}
.ls47{letter-spacing:-0.360000px;}
.lsb0{letter-spacing:-0.357000px;}
.lsac{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.300000px;}
.lsae{letter-spacing:-0.255000px;}
.ls2b{letter-spacing:-0.240000px;}
.lsad{letter-spacing:-0.204000px;}
.ls2a{letter-spacing:-0.180000px;}
.lsb5{letter-spacing:-0.153000px;}
.ls2c{letter-spacing:-0.120000px;}
.lsaf{letter-spacing:-0.102000px;}
.ls9{letter-spacing:-0.060000px;}
.ls92{letter-spacing:-0.051000px;}
.ls60{letter-spacing:-0.016835px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000037px;}
.ls2{letter-spacing:0.000085px;}
.ls3b{letter-spacing:0.000335px;}
.lsb9{letter-spacing:0.051000px;}
.ls30{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.100293px;}
.ls46{letter-spacing:0.101946px;}
.ls9e{letter-spacing:0.102000px;}
.ls1d{letter-spacing:0.120000px;}
.ls95{letter-spacing:0.153000px;}
.ls35{letter-spacing:0.176228px;}
.ls34{letter-spacing:0.176412px;}
.ls7{letter-spacing:0.178791px;}
.ls21{letter-spacing:0.180000px;}
.ls91{letter-spacing:0.204000px;}
.lsb6{letter-spacing:0.229500px;}
.ls3{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.255000px;}
.ls9b{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.275977px;}
.ls9f{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.lsa6{letter-spacing:0.306000px;}
.ls9d{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.lsa3{letter-spacing:0.382500px;}
.ls97{letter-spacing:0.408000px;}
.ls36{letter-spacing:0.420000px;}
.lsa7{letter-spacing:0.459000px;}
.ls31{letter-spacing:0.464490px;}
.ls65{letter-spacing:0.475834px;}
.ls1b{letter-spacing:0.480000px;}
.ls67{letter-spacing:0.502815px;}
.ls37{letter-spacing:0.506916px;}
.ls90{letter-spacing:0.510000px;}
.ls26{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.546000px;}
.lsa4{letter-spacing:0.561000px;}
.ls22{letter-spacing:0.600000px;}
.lsa2{letter-spacing:0.612000px;}
.ls4d{letter-spacing:0.627591px;}
.ls75{letter-spacing:0.630000px;}
.ls6b{letter-spacing:0.633625px;}
.ls20{letter-spacing:0.660000px;}
.ls98{letter-spacing:0.663000px;}
.ls2f{letter-spacing:0.696000px;}
.ls63{letter-spacing:0.699572px;}
.ls9c{letter-spacing:0.714000px;}
.ls1c{letter-spacing:0.720000px;}
.ls96{letter-spacing:0.765000px;}
.ls18{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.798008px;}
.ls28{letter-spacing:0.810000px;}
.lsa9{letter-spacing:0.816000px;}
.ls70{letter-spacing:0.839994px;}
.ls1e{letter-spacing:0.840000px;}
.lsaa{letter-spacing:0.841500px;}
.lsa0{letter-spacing:0.867000px;}
.ls32{letter-spacing:0.876000px;}
.lsb{letter-spacing:0.900000px;}
.ls99{letter-spacing:0.918000px;}
.ls27{letter-spacing:0.960000px;}
.ls93{letter-spacing:0.969000px;}
.ls3c{letter-spacing:0.990000px;}
.ls3e{letter-spacing:1.020000px;}
.ls66{letter-spacing:1.049375px;}
.ls8b{letter-spacing:1.050000px;}
.ls6a{letter-spacing:1.050007px;}
.ls68{letter-spacing:1.050062px;}
.ls13{letter-spacing:1.080000px;}
.lsa1{letter-spacing:1.122000px;}
.lsd{letter-spacing:1.140000px;}
.ls4f{letter-spacing:1.140618px;}
.ls4e{letter-spacing:1.172380px;}
.ls9a{letter-spacing:1.173000px;}
.ls15{letter-spacing:1.200000px;}
.ls3a{letter-spacing:1.206000px;}
.lsa5{letter-spacing:1.224000px;}
.ls12{letter-spacing:1.236000px;}
.lsc{letter-spacing:1.260000px;}
.ls86{letter-spacing:1.260029px;}
.ls94{letter-spacing:1.275000px;}
.ls3d{letter-spacing:1.320000px;}
.lsb7{letter-spacing:1.326000px;}
.ls64{letter-spacing:1.334424px;}
.ls62{letter-spacing:1.341603px;}
.ls17{letter-spacing:1.350000px;}
.ls16{letter-spacing:1.380000px;}
.ls72{letter-spacing:1.392598px;}
.ls69{letter-spacing:1.426838px;}
.ls42{letter-spacing:1.440000px;}
.ls6e{letter-spacing:1.470000px;}
.ls59{letter-spacing:1.488000px;}
.ls38{letter-spacing:1.500000px;}
.ls50{letter-spacing:1.517392px;}
.ls89{letter-spacing:1.547368px;}
.ls8a{letter-spacing:1.547413px;}
.lse{letter-spacing:1.560000px;}
.ls84{letter-spacing:1.593464px;}
.ls61{letter-spacing:1.619983px;}
.ls19{letter-spacing:1.620000px;}
.lsb8{letter-spacing:1.657500px;}
.ls10{letter-spacing:1.680000px;}
.lsab{letter-spacing:1.683000px;}
.ls87{letter-spacing:1.704060px;}
.ls85{letter-spacing:1.704564px;}
.ls88{letter-spacing:1.710000px;}
.ls71{letter-spacing:1.739973px;}
.ls78{letter-spacing:1.740000px;}
.ls81{letter-spacing:1.770000px;}
.ls11{letter-spacing:1.800000px;}
.ls14{letter-spacing:1.860000px;}
.ls1a{letter-spacing:1.883985px;}
.ls8c{letter-spacing:1.890000px;}
.ls24{letter-spacing:1.920000px;}
.lsa8{letter-spacing:1.938000px;}
.ls23{letter-spacing:1.980000px;}
.ls39{letter-spacing:2.040000px;}
.lsf{letter-spacing:2.100000px;}
.ls44{letter-spacing:2.160000px;}
.ls73{letter-spacing:2.220000px;}
.ls82{letter-spacing:2.250000px;}
.ls74{letter-spacing:2.280000px;}
.ls80{letter-spacing:2.340000px;}
.ls7c{letter-spacing:2.370000px;}
.ls77{letter-spacing:2.400000px;}
.ls8d{letter-spacing:2.430000px;}
.ls51{letter-spacing:2.460000px;}
.ls52{letter-spacing:2.490000px;}
.ls79{letter-spacing:2.507986px;}
.ls53{letter-spacing:2.520000px;}
.ls40{letter-spacing:2.580000px;}
.ls83{letter-spacing:2.640000px;}
.ls6d{letter-spacing:2.652000px;}
.ls8e{letter-spacing:2.670000px;}
.ls43{letter-spacing:2.700000px;}
.ls8f{letter-spacing:2.760000px;}
.ls41{letter-spacing:2.820000px;}
.ls76{letter-spacing:2.880000px;}
.ls6c{letter-spacing:2.940000px;}
.ls7a{letter-spacing:3.000000px;}
.ls7b{letter-spacing:3.060000px;}
.ls6f{letter-spacing:3.120000px;}
.ls48{letter-spacing:3.180000px;}
.ls3f{letter-spacing:3.240000px;}
.ls45{letter-spacing:3.300000px;}
.ls1{letter-spacing:3.990000px;}
.ls56{letter-spacing:39.015000px;}
.ls54{letter-spacing:40.182921px;}
.ls57{letter-spacing:47.328000px;}
.ls7f{letter-spacing:80.274000px;}
.ls7d{letter-spacing:81.427520px;}
.ls5c{letter-spacing:84.711000px;}
.ls7e{letter-spacing:88.587000px;}
.ls55{letter-spacing:337.263000px;}
.ls49{letter-spacing:553.400991px;}
.ls5b{letter-spacing:939.924000px;}
.ls5a{letter-spacing:961.685991px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws78{word-spacing:-17.520000px;}
.wsa9{word-spacing:-17.460000px;}
.wsa6{word-spacing:-17.280000px;}
.ws9c{word-spacing:-16.800000px;}
.ws37{word-spacing:-16.140000px;}
.ws79{word-spacing:-15.900000px;}
.ws4d{word-spacing:-15.720000px;}
.ws3a{word-spacing:-15.300000px;}
.ws4a{word-spacing:-15.240000px;}
.ws45{word-spacing:-15.000000px;}
.wsba{word-spacing:-14.832000px;}
.ws18{word-spacing:-14.544000px;}
.wsdc{word-spacing:-13.719000px;}
.wsb7{word-spacing:-13.005000px;}
.wsa{word-spacing:-12.750000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.360000px;}
.ws7a{word-spacing:-12.087000px;}
.ws8{word-spacing:-11.520000px;}
.ws19{word-spacing:-11.046000px;}
.wsb8{word-spacing:-10.761000px;}
.ws7{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.996000px;}
.wsb9{word-spacing:-9.588000px;}
.ws9{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws49{word-spacing:-7.500000px;}
.ws77{word-spacing:-6.375000px;}
.wsb0{word-spacing:-2.700000px;}
.wsb2{word-spacing:-2.460000px;}
.wsd{word-spacing:-2.400000px;}
.wsaf{word-spacing:-2.220000px;}
.ws7f{word-spacing:-2.160000px;}
.wsae{word-spacing:-1.920000px;}
.wsb{word-spacing:-1.890000px;}
.wsa8{word-spacing:-1.860000px;}
.wsa7{word-spacing:-1.800000px;}
.wsd3{word-spacing:-1.632000px;}
.ws2c{word-spacing:-1.620000px;}
.ws69{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.wsaa{word-spacing:-1.440000px;}
.wsd4{word-spacing:-1.326000px;}
.ws46{word-spacing:-1.320000px;}
.wsb6{word-spacing:-1.275000px;}
.ws4f{word-spacing:-1.260000px;}
.ws12{word-spacing:-1.200000px;}
.ws24{word-spacing:-1.140000px;}
.ws48{word-spacing:-1.080000px;}
.wscb{word-spacing:-1.071000px;}
.ws60{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.969000px;}
.ws28{word-spacing:-0.900000px;}
.ws33{word-spacing:-0.840000px;}
.ws3b{word-spacing:-0.780000px;}
.wscc{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.714000px;}
.ws3f{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.612000px;}
.ws34{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.570000px;}
.wsc8{word-spacing:-0.510000px;}
.wsde{word-spacing:-0.459000px;}
.ws4c{word-spacing:-0.420000px;}
.ws6a{word-spacing:-0.360000px;}
.wseb{word-spacing:-0.357000px;}
.ws2b{word-spacing:-0.300000px;}
.wsc4{word-spacing:-0.264000px;}
.wsbc{word-spacing:-0.255000px;}
.ws61{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.180000px;}
.wsc5{word-spacing:-0.153000px;}
.wsdd{word-spacing:-0.102000px;}
.ws11{word-spacing:-0.060000px;}
.ws2{word-spacing:-0.048000px;}
.ws8a{word-spacing:-0.018500px;}
.ws86{word-spacing:-0.017088px;}
.ws89{word-spacing:-0.016810px;}
.ws8b{word-spacing:-0.016797px;}
.ws8c{word-spacing:-0.016762px;}
.ws88{word-spacing:-0.016743px;}
.ws87{word-spacing:-0.016736px;}
.ws1{word-spacing:0.000000px;}
.ws92{word-spacing:0.016835px;}
.wsc9{word-spacing:0.051000px;}
.ws14{word-spacing:0.060000px;}
.wsc3{word-spacing:0.102000px;}
.ws2d{word-spacing:0.120000px;}
.ws1c{word-spacing:0.180000px;}
.wsd9{word-spacing:0.204000px;}
.wsb4{word-spacing:0.255000px;}
.ws1b{word-spacing:0.300000px;}
.wsb5{word-spacing:0.357000px;}
.ws90{word-spacing:0.360000px;}
.wsf{word-spacing:0.420000px;}
.wse2{word-spacing:0.459000px;}
.ws22{word-spacing:0.480000px;}
.wsd5{word-spacing:0.510000px;}
.ws68{word-spacing:0.540000px;}
.wsa3{word-spacing:0.600000px;}
.ws84{word-spacing:0.612000px;}
.ws50{word-spacing:0.660000px;}
.wse4{word-spacing:0.714000px;}
.ws13{word-spacing:0.720000px;}
.wsdb{word-spacing:0.765000px;}
.ws42{word-spacing:0.840000px;}
.ws52{word-spacing:0.900000px;}
.ws40{word-spacing:0.960000px;}
.ws76{word-spacing:0.969000px;}
.ws2f{word-spacing:1.020000px;}
.ws23{word-spacing:1.080000px;}
.wsce{word-spacing:1.122000px;}
.ws62{word-spacing:1.140000px;}
.wsca{word-spacing:1.173000px;}
.ws91{word-spacing:1.200000px;}
.ws41{word-spacing:1.260000px;}
.wsc0{word-spacing:1.275000px;}
.ws1a{word-spacing:1.320000px;}
.wsc7{word-spacing:1.326000px;}
.wsc6{word-spacing:1.377000px;}
.ws5e{word-spacing:1.380000px;}
.wsa0{word-spacing:1.440000px;}
.wse{word-spacing:1.500000px;}
.wse5{word-spacing:1.530000px;}
.ws25{word-spacing:1.560000px;}
.ws85{word-spacing:1.581000px;}
.ws44{word-spacing:1.620000px;}
.ws27{word-spacing:1.680000px;}
.wse1{word-spacing:1.683000px;}
.ws99{word-spacing:1.734000px;}
.ws4b{word-spacing:1.740000px;}
.wse6{word-spacing:1.785000px;}
.ws31{word-spacing:1.800000px;}
.ws2e{word-spacing:1.860000px;}
.wsbf{word-spacing:1.887000px;}
.ws2a{word-spacing:1.920000px;}
.wse0{word-spacing:1.938000px;}
.ws1e{word-spacing:1.980000px;}
.wsdf{word-spacing:1.989000px;}
.ws5d{word-spacing:2.040000px;}
.ws32{word-spacing:2.100000px;}
.ws29{word-spacing:2.160000px;}
.ws5c{word-spacing:2.220000px;}
.ws66{word-spacing:2.280000px;}
.ws53{word-spacing:2.295000px;}
.ws47{word-spacing:2.340000px;}
.ws38{word-spacing:2.400000px;}
.ws1f{word-spacing:2.460000px;}
.ws5b{word-spacing:2.520000px;}
.ws82{word-spacing:2.580000px;}
.ws3c{word-spacing:2.640000px;}
.ws21{word-spacing:2.700000px;}
.wsd8{word-spacing:2.703000px;}
.wscf{word-spacing:2.754000px;}
.ws65{word-spacing:2.820000px;}
.ws54{word-spacing:2.856000px;}
.ws20{word-spacing:2.940000px;}
.wsbe{word-spacing:2.958000px;}
.ws36{word-spacing:3.000000px;}
.wsda{word-spacing:3.009000px;}
.wsc1{word-spacing:3.060000px;}
.wse8{word-spacing:3.111000px;}
.ws43{word-spacing:3.180000px;}
.ws59{word-spacing:3.240000px;}
.ws3e{word-spacing:3.300000px;}
.ws56{word-spacing:3.315000px;}
.ws39{word-spacing:3.360000px;}
.ws98{word-spacing:3.417000px;}
.ws8f{word-spacing:3.420000px;}
.ws35{word-spacing:3.540000px;}
.wsab{word-spacing:3.600000px;}
.wse7{word-spacing:3.621000px;}
.ws5a{word-spacing:3.720000px;}
.ws93{word-spacing:3.723000px;}
.wsd2{word-spacing:3.774000px;}
.wsd0{word-spacing:3.825000px;}
.ws51{word-spacing:3.900000px;}
.ws8e{word-spacing:3.960000px;}
.wsc2{word-spacing:3.978000px;}
.ws4e{word-spacing:4.020000px;}
.ws1d{word-spacing:4.080000px;}
.wsd1{word-spacing:4.131000px;}
.wsea{word-spacing:4.182000px;}
.ws55{word-spacing:4.233000px;}
.ws80{word-spacing:4.380000px;}
.wsbb{word-spacing:4.437000px;}
.ws5f{word-spacing:4.440000px;}
.ws64{word-spacing:4.500000px;}
.wsa4{word-spacing:4.560000px;}
.wsad{word-spacing:4.620000px;}
.wse3{word-spacing:4.794000px;}
.ws58{word-spacing:4.845000px;}
.wsa1{word-spacing:4.860000px;}
.wsb1{word-spacing:4.920000px;}
.wsac{word-spacing:4.980000px;}
.ws63{word-spacing:5.100000px;}
.ws67{word-spacing:5.280000px;}
.wsa5{word-spacing:5.400000px;}
.ws57{word-spacing:5.406000px;}
.ws3d{word-spacing:5.580000px;}
.ws26{word-spacing:5.880000px;}
.wsa2{word-spacing:5.940000px;}
.ws81{word-spacing:6.000000px;}
.ws94{word-spacing:6.018000px;}
.ws9a{word-spacing:6.222000px;}
.wse9{word-spacing:6.375000px;}
.wsb3{word-spacing:6.540000px;}
.wsd6{word-spacing:7.599000px;}
.wsd7{word-spacing:7.854000px;}
.ws96{word-spacing:8.262000px;}
.ws97{word-spacing:8.466000px;}
.ws95{word-spacing:8.772000px;}
.ws9b{word-spacing:9.333000px;}
.ws83{word-spacing:10.380000px;}
.wsec{word-spacing:14.025000px;}
.wsed{word-spacing:18.258000px;}
.ws6d{word-spacing:24.990000px;}
.ws17{word-spacing:72.267000px;}
.ws7e{word-spacing:111.435000px;}
.ws7b{word-spacing:162.435000px;}
.ws9f{word-spacing:167.585988px;}
.ws6e{word-spacing:173.706000px;}
.ws6f{word-spacing:185.589000px;}
.ws6c{word-spacing:186.456000px;}
.ws9d{word-spacing:195.840000px;}
.ws70{word-spacing:199.206000px;}
.ws6b{word-spacing:223.839000px;}
.ws7c{word-spacing:226.185000px;}
.ws9e{word-spacing:259.590000px;}
.ws71{word-spacing:262.956000px;}
.ws7d{word-spacing:293.658000px;}
.ws73{word-spacing:664.836000px;}
.ws75{word-spacing:677.586000px;}
.ws8d{word-spacing:943.271983px;}
.ws74{word-spacing:1101.701977px;}
.ws72{word-spacing:1120.826977px;}
._63{margin-left:-141.878088px;}
._61{margin-left:-139.677312px;}
._64{margin-left:-137.553874px;}
._62{margin-left:-136.334714px;}
._7b{margin-left:-22.287000px;}
._66{margin-left:-19.941017px;}
._15{margin-left:-18.309000px;}
._a{margin-left:-16.575000px;}
._10{margin-left:-15.499220px;}
._9{margin-left:-14.421600px;}
._f{margin-left:-12.782368px;}
._60{margin-left:-11.481600px;}
._16{margin-left:-10.320000px;}
._8{margin-left:-8.562566px;}
._2{margin-left:-7.353600px;}
._7{margin-left:-5.432400px;}
._3{margin-left:-4.284000px;}
._12{margin-left:-3.162000px;}
._1{margin-left:-1.996800px;}
._5{width:1.190400px;}
._4{width:2.841600px;}
._14{width:4.218600px;}
._0{width:5.587200px;}
._17{width:7.566000px;}
._4e{width:11.693994px;}
._6f{width:12.792000px;}
._11{width:14.520000px;}
._13{width:15.970800px;}
._b{width:18.360000px;}
._7c{width:20.847600px;}
._78{width:22.921200px;}
._7d{width:25.029600px;}
._76{width:26.145000px;}
._77{width:27.471000px;}
._7a{width:30.378600px;}
._79{width:33.810600px;}
._d{width:36.567074px;}
._2b{width:38.351851px;}
._6{width:40.166386px;}
._6e{width:42.133788px;}
._3b{width:49.878149px;}
._c{width:54.621000px;}
._6a{width:59.211000px;}
._26{width:63.393000px;}
._6d{width:67.633788px;}
._3c{width:74.817074px;}
._29{width:75.990000px;}
._70{width:79.705188px;}
._6b{width:80.740800px;}
._2a{width:88.740000px;}
._6c{width:98.233800px;}
._23{width:101.643000px;}
._3f{width:115.118354px;}
._58{width:123.817702px;}
._2d{width:127.143000px;}
._55{width:129.540000px;}
._69{width:149.463588px;}
._3d{width:152.643000px;}
._5b{width:167.535000px;}
._5e{width:169.353600px;}
._52{width:171.087749px;}
._59{width:174.267000px;}
._1d{width:178.143000px;}
._71{width:182.987991px;}
._73{width:204.922189px;}
._75{width:207.836963px;}
._72{width:211.650000px;}
._1a{width:216.393000px;}
._46{width:221.602800px;}
._20{width:237.456000px;}
._57{width:240.975000px;}
._45{width:247.051800px;}
._25{width:253.317000px;}
._3a{width:254.540991px;}
._54{width:258.723000px;}
._24{width:266.067000px;}
._74{width:269.585988px;}
._30{width:278.817000px;}
._2e{width:291.567000px;}
._19{width:303.591646px;}
._53{width:305.508602px;}
._5c{width:306.550570px;}
._41{width:309.424800px;}
._28{width:311.770791px;}
._3e{width:317.067000px;}
._42{width:335.733000px;}
._68{width:342.835909px;}
._38{width:352.716000px;}
._22{width:361.233000px;}
._1c{width:368.067000px;}
._56{width:370.158000px;}
._1b{width:380.817000px;}
._37{width:386.682000px;}
._27{width:406.572000px;}
._4b{width:409.377000px;}
._4a{width:419.890800px;}
._1f{width:427.380000px;}
._35{width:434.877000px;}
._32{width:436.356000px;}
._1e{width:440.130000px;}
._2f{width:444.567000px;}
._31{width:449.055000px;}
._5f{width:468.059390px;}
._2c{width:485.877000px;}
._51{width:547.132718px;}
._5a{width:548.657992px;}
._5d{width:551.054990px;}
._18{width:567.058195px;}
._67{width:575.750990px;}
._49{width:652.086000px;}
._48{width:664.836000px;}
._34{width:677.705400px;}
._21{width:690.216600px;}
._44{width:703.086000px;}
._36{width:704.139577px;}
._4f{width:714.135577px;}
._40{width:722.465977px;}
._4c{width:736.779577px;}
._47{width:841.397977px;}
._50{width:842.961577px;}
._4d{width:845.817577px;}
._43{width:922.699777px;}
._65{width:961.037951px;}
._39{width:967.469977px;}
._33{width:989.254777px;}
._e{width:2639.249956px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:16.736400px;}
.fs13{font-size:16.743000px;}
.fs1f{font-size:16.762200px;}
.fs1b{font-size:16.797000px;}
.fs17{font-size:16.810200px;}
.fs21{font-size:16.835400px;}
.fsc{font-size:17.088000px;}
.fs11{font-size:18.418800px;}
.fs14{font-size:18.426600px;}
.fs20{font-size:18.447000px;}
.fs1d{font-size:18.485400px;}
.fs19{font-size:18.500400px;}
.fse{font-size:18.806399px;}
.fsf{font-size:23.854800px;}
.fs12{font-size:23.865000px;}
.fs1e{font-size:23.892000px;}
.fs1c{font-size:23.895000px;}
.fs1a{font-size:23.941800px;}
.fs16{font-size:23.961000px;}
.fsb{font-size:24.357000px;}
.fs18{font-size:24.388200px;}
.fsd{font-size:24.403200px;}
.fs9{font-size:35.699999px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs15{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:2.254807px;}
.y1cc{bottom:2.370300px;}
.y1d5{bottom:2.431824px;}
.yc{bottom:8.040000px;}
.y16{bottom:55.635000px;}
.y1e{bottom:68.547300px;}
.y1d{bottom:68.829002px;}
.y15{bottom:77.715000px;}
.y1b{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y48{bottom:112.944300px;}
.y1a{bottom:113.670000px;}
.y1a8{bottom:114.564297px;}
.y1a5{bottom:114.564308px;}
.y117{bottom:114.735306px;}
.yb6{bottom:114.874947px;}
.y167{bottom:118.862274px;}
.y18a{bottom:119.017056px;}
.y227{bottom:119.265152px;}
.ye1{bottom:122.112305px;}
.y47{bottom:127.938300px;}
.y88{bottom:129.915298px;}
.y189{bottom:133.141792px;}
.y1a7{bottom:133.314297px;}
.y1a4{bottom:133.314308px;}
.y116{bottom:133.485306px;}
.yb5{bottom:133.624809px;}
.yca{bottom:133.624947px;}
.y10{bottom:133.935000px;}
.y19{bottom:135.750000px;}
.y166{bottom:137.579274px;}
.y226{bottom:138.517056px;}
.ye0{bottom:140.862305px;}
.yd9{bottom:142.053291px;}
.y27b{bottom:144.021309px;}
.y2bb{bottom:146.647793px;}
.y248{bottom:147.888305px;}
.y46{bottom:148.032303px;}
.y87{bottom:148.665298px;}
.y1a3{bottom:152.064308px;}
.y115{bottom:152.235306px;}
.yb4{bottom:152.374809px;}
.yc9{bottom:152.374947px;}
.y225{bottom:152.687871px;}
.y17{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y165{bottom:156.296274px;}
.y18{bottom:157.830000px;}
.y27a{bottom:159.015309px;}
.ydf{bottom:159.612305px;}
.yd8{bottom:160.803291px;}
.y19e{bottom:161.213545px;}
.y2ba{bottom:161.641793px;}
.y247{bottom:162.882305px;}
.y45{bottom:165.485553px;}
.y86{bottom:167.415298px;}
.y1a6{bottom:170.814297px;}
.y1a2{bottom:170.814308px;}
.y114{bottom:170.985306px;}
.yb3{bottom:171.124809px;}
.yc8{bottom:171.124947px;}
.y279{bottom:174.009309px;}
.y164{bottom:175.013274px;}
.y2b9{bottom:176.635793px;}
.yde{bottom:178.362305px;}
.yd7{bottom:179.553291px;}
.y19d{bottom:180.007045px;}
.y23a{bottom:181.291357px;}
.y44{bottom:185.579556px;}
.y85{bottom:186.165298px;}
.y278{bottom:189.003309px;}
.y1a1{bottom:189.564308px;}
.y113{bottom:189.735306px;}
.yb2{bottom:189.874809px;}
.yc7{bottom:189.874947px;}
.y2b8{bottom:191.629793px;}
.y246{bottom:192.882294px;}
.y163{bottom:193.730274px;}
.y54{bottom:195.515995px;}
.ydd{bottom:197.112305px;}
.yd6{bottom:198.303291px;}
.y19c{bottom:198.634049px;}
.y239{bottom:200.084857px;}
.y43{bottom:203.032794px;}
.y277{bottom:203.997309px;}
.y84{bottom:204.915298px;}
.y2b7{bottom:206.623793px;}
.y1a0{bottom:208.314308px;}
.y112{bottom:208.485306px;}
.yb1{bottom:208.624809px;}
.y245{bottom:211.632294px;}
.y162{bottom:212.447274px;}
.y53{bottom:215.610008px;}
.ydc{bottom:215.862305px;}
.yd5{bottom:217.053291px;}
.y19b{bottom:217.427549px;}
.y238{bottom:218.711839px;}
.y276{bottom:218.991309px;}
.y2b6{bottom:221.617793px;}
.y42{bottom:223.126808px;}
.y83{bottom:223.665298px;}
.y19f{bottom:227.064308px;}
.y111{bottom:227.235306px;}
.yb0{bottom:227.374809px;}
.yc6{bottom:227.374947px;}
.y244{bottom:230.382294px;}
.y161{bottom:231.164274px;}
.y52{bottom:233.063259px;}
.y275{bottom:233.985309px;}
.ydb{bottom:234.612305px;}
.yd4{bottom:235.803291px;}
.y19a{bottom:236.144549px;}
.y2b5{bottom:236.611793px;}
.y237{bottom:237.505339px;}
.y41{bottom:240.580059px;}
.y82{bottom:242.415298px;}
.y110{bottom:245.985306px;}
.yaf{bottom:246.124809px;}
.y274{bottom:248.979309px;}
.y243{bottom:249.132294px;}
.y160{bottom:249.881274px;}
.y2b4{bottom:251.605793px;}
.y51{bottom:253.157249px;}
.yd3{bottom:254.553291px;}
.y199{bottom:254.848054px;}
.y236{bottom:256.222339px;}
.y40{bottom:260.674049px;}
.y81{bottom:261.165298px;}
.y10f{bottom:264.735306px;}
.yae{bottom:264.874809px;}
.yc5{bottom:264.874947px;}
.y2b3{bottom:266.599793px;}
.y242{bottom:267.882294px;}
.y15f{bottom:268.598274px;}
.y50{bottom:270.616500px;}
.yda{bottom:272.112305px;}
.yd2{bottom:273.303291px;}
.y198{bottom:273.565054px;}
.y235{bottom:274.925843px;}
.y3f{bottom:278.127300px;}
.y80{bottom:279.915298px;}
.y2b2{bottom:281.593793px;}
.y20f{bottom:282.061344px;}
.y273{bottom:282.729309px;}
.y10e{bottom:283.485306px;}
.yad{bottom:283.624809px;}
.yc4{bottom:283.624947px;}
.y4f{bottom:285.610500px;}
.y241{bottom:286.632294px;}
.y15e{bottom:287.315274px;}
.y197{bottom:292.282054px;}
.y234{bottom:293.642843px;}
.y2b1{bottom:296.587793px;}
.y3e{bottom:298.221291px;}
.y7f{bottom:298.665298px;}
.y20e{bottom:302.155357px;}
.y10d{bottom:302.235306px;}
.yac{bottom:302.374809px;}
.yc3{bottom:302.374969px;}
.y240{bottom:305.382294px;}
.y4e{bottom:305.704491px;}
.y15d{bottom:306.032274px;}
.y196{bottom:310.909059px;}
.y2b0{bottom:311.581793px;}
.y233{bottom:312.359843px;}
.y3d{bottom:315.680541px;}
.y20d{bottom:316.313396px;}
.y9f{bottom:317.415298px;}
.y7e{bottom:317.415344px;}
.ye5{bottom:318.148806px;}
.y135{bottom:320.985306px;}
.yab{bottom:321.124809px;}
.yc2{bottom:321.124969px;}
.y4d{bottom:323.157741px;}
.y23f{bottom:324.132294px;}
.y1c3{bottom:324.629608px;}
.y15c{bottom:324.749274px;}
.y2af{bottom:326.575793px;}
.y195{bottom:329.702559px;}
.y3c{bottom:330.674541px;}
.y232{bottom:330.986871px;}
.ye8{bottom:333.136806px;}
.ye4{bottom:333.142806px;}
.y9e{bottom:336.165298px;}
.y7d{bottom:336.165344px;}
.y20c{bottom:336.407249px;}
.y10c{bottom:339.735306px;}
.y15b{bottom:339.743274px;}
.yaa{bottom:339.874809px;}
.yc1{bottom:339.874969px;}
.y2ae{bottom:341.569793px;}
.y4c{bottom:343.251755px;}
.ya{bottom:344.680500px;}
.y272{bottom:344.943293px;}
.ye3{bottom:348.136806px;}
.ye7{bottom:348.149556px;}
.y194{bottom:348.419559px;}
.y231{bottom:349.780371px;}
.y20b{bottom:350.596818px;}
.y3b{bottom:350.768555px;}
.y7c{bottom:354.915344px;}
.y2ad{bottom:356.563793px;}
.y15a{bottom:358.460274px;}
.y134{bottom:358.485306px;}
.yc0{bottom:358.624969px;}
.y271{bottom:359.937293px;}
.y4b{bottom:360.711005px;}
.y23e{bottom:361.632294px;}
.ye2{bottom:363.130806px;}
.ye6{bottom:363.143556px;}
.y193{bottom:367.123063px;}
.y230{bottom:368.497371px;}
.y2ac{bottom:371.557793px;}
.y9d{bottom:373.665298px;}
.y7b{bottom:373.665344px;}
.y270{bottom:374.931293px;}
.y4a{bottom:375.705005px;}
.y3a{bottom:375.775633px;}
.y159{bottom:377.177274px;}
.y10b{bottom:377.235306px;}
.ya9{bottom:377.374809px;}
.ybf{bottom:377.374969px;}
.y21c{bottom:378.917977px;}
.y192{bottom:385.840063px;}
.yd{bottom:386.490000px;}
.y2ab{bottom:386.551793px;}
.y22f{bottom:387.200852px;}
.y26f{bottom:389.925293px;}
.y39{bottom:390.769633px;}
.y7a{bottom:392.415344px;}
.y21b{bottom:393.911977px;}
.y9{bottom:395.689500px;}
.y49{bottom:395.798996px;}
.y158{bottom:395.894274px;}
.y133{bottom:395.985306px;}
.ybe{bottom:396.124969px;}
.y2aa{bottom:401.545793px;}
.y191{bottom:404.557063px;}
.y26e{bottom:404.919293px;}
.y22e{bottom:405.917852px;}
.y9c{bottom:411.165298px;}
.y79{bottom:411.165344px;}
.y21a{bottom:412.705477px;}
.y157{bottom:414.611274px;}
.y132{bottom:414.735306px;}
.ya8{bottom:414.874786px;}
.ybd{bottom:414.874969px;}
.y2a9{bottom:416.539793px;}
.y26d{bottom:419.913293px;}
.y38{bottom:421.586383px;}
.y190{bottom:423.260545px;}
.y22d{bottom:424.634852px;}
.y219{bottom:427.699477px;}
.y9b{bottom:429.915298px;}
.y78{bottom:429.915344px;}
.y2a8{bottom:431.533793px;}
.y156{bottom:433.328274px;}
.y10a{bottom:433.485306px;}
.ya7{bottom:433.624786px;}
.ybc{bottom:433.624969px;}
.yb{bottom:434.850000px;}
.y26c{bottom:434.907293px;}
.y37{bottom:436.580383px;}
.y18f{bottom:441.977545px;}
.y22c{bottom:443.338334px;}
.y224{bottom:443.426115px;}
.y218{bottom:446.416477px;}
.y2a7{bottom:446.527793px;}
.y8{bottom:446.698500px;}
.y9a{bottom:448.665298px;}
.y77{bottom:448.665344px;}
.y26b{bottom:449.901293px;}
.y155{bottom:452.045274px;}
.y109{bottom:452.235306px;}
.ya6{bottom:452.374786px;}
.ybb{bottom:452.374969px;}
.y223{bottom:458.420115px;}
.y18e{bottom:460.694545px;}
.y2a6{bottom:461.521793px;}
.y22b{bottom:462.055334px;}
.y26a{bottom:464.895293px;}
.y217{bottom:465.133477px;}
.y99{bottom:467.415298px;}
.y76{bottom:467.415344px;}
.y154{bottom:470.762274px;}
.y108{bottom:470.985306px;}
.ya5{bottom:471.124786px;}
.y222{bottom:473.414115px;}
.y2a5{bottom:476.515793px;}
.y18d{bottom:479.407045px;}
.y269{bottom:479.889293px;}
.y216{bottom:480.127477px;}
.y22a{bottom:480.772334px;}
.y98{bottom:486.165298px;}
.y75{bottom:486.165344px;}
.y11{bottom:488.055000px;}
.y221{bottom:488.408115px;}
.y153{bottom:489.479274px;}
.y107{bottom:489.735306px;}
.ya4{bottom:489.874786px;}
.yba{bottom:489.874969px;}
.y2a4{bottom:491.509793px;}
.y268{bottom:494.883293px;}
.y7{bottom:497.707500px;}
.y215{bottom:498.844477px;}
.y229{bottom:499.488593px;}
.y220{bottom:503.414115px;}
.y97{bottom:504.915298px;}
.y74{bottom:504.915344px;}
.y2a3{bottom:506.503793px;}
.y18c{bottom:507.495295px;}
.y152{bottom:508.196274px;}
.y106{bottom:508.485306px;}
.ya3{bottom:508.624786px;}
.y267{bottom:509.877293px;}
.y214{bottom:513.838477px;}
.y21f{bottom:518.408115px;}
.y2a2{bottom:521.497793px;}
.y96{bottom:523.665298px;}
.y73{bottom:523.665344px;}
.y151{bottom:526.913274px;}
.y105{bottom:527.235306px;}
.ya2{bottom:527.374786px;}
.yb9{bottom:527.374969px;}
.y228{bottom:527.576843px;}
.y18b{bottom:531.911545px;}
.y213{bottom:532.555477px;}
.y21e{bottom:533.402115px;}
.y36{bottom:534.961349px;}
.y2a1{bottom:536.491793px;}
.y12{bottom:538.230000px;}
.y95{bottom:542.415298px;}
.y72{bottom:542.415344px;}
.y150{bottom:545.630274px;}
.y131{bottom:545.985306px;}
.ya1{bottom:546.124786px;}
.yb8{bottom:546.124947px;}
.y266{bottom:547.362293px;}
.y6{bottom:548.716500px;}
.y2a0{bottom:551.485793px;}
.y188{bottom:557.372527px;}
.y212{bottom:559.891477px;}
.y94{bottom:561.165298px;}
.y71{bottom:561.165344px;}
.y265{bottom:562.356293px;}
.y14f{bottom:564.347274px;}
.y104{bottom:564.735306px;}
.ya0{bottom:564.874786px;}
.yb7{bottom:564.874947px;}
.y29f{bottom:566.479793px;}
.y187{bottom:572.366527px;}
.y35{bottom:572.461349px;}
.y211{bottom:574.885477px;}
.y264{bottom:577.350293px;}
.y93{bottom:579.915298px;}
.y70{bottom:579.915344px;}
.y29e{bottom:581.473793px;}
.y14e{bottom:583.064274px;}
.y21d{bottom:583.485260px;}
.y130{bottom:583.485306px;}
.y1c{bottom:589.605000px;}
.y34{bottom:591.211349px;}
.y29d{bottom:596.467793px;}
.y92{bottom:598.665298px;}
.y6f{bottom:598.665344px;}
.y210{bottom:599.301727px;}
.y5{bottom:599.725500px;}
.y14d{bottom:601.781274px;}
.y103{bottom:602.235260px;}
.y12f{bottom:602.235306px;}
.y263{bottom:607.351043px;}
.y33{bottom:609.961349px;}
.y29c{bottom:611.461793px;}
.y91{bottom:617.415298px;}
.y6e{bottom:617.415344px;}
.y178{bottom:619.933823px;}
.y14c{bottom:620.498274px;}
.y102{bottom:620.985260px;}
.y12e{bottom:620.985306px;}
.y170{bottom:621.124786px;}
.y20a{bottom:624.823811px;}
.y29b{bottom:626.455793px;}
.y32{bottom:628.711349px;}
.ye{bottom:631.920000px;}
.y90{bottom:636.165298px;}
.y6d{bottom:636.165344px;}
.y262{bottom:637.351793px;}
.y177{bottom:638.683823px;}
.y14b{bottom:639.215274px;}
.y101{bottom:639.735260px;}
.y12d{bottom:639.735306px;}
.y209{bottom:639.817811px;}
.y16f{bottom:639.874786px;}
.y29a{bottom:641.449793px;}
.y31{bottom:647.461349px;}
.y261{bottom:652.345793px;}
.y8f{bottom:654.915298px;}
.y6c{bottom:654.915344px;}
.y299{bottom:656.443793px;}
.y176{bottom:657.433823px;}
.y14a{bottom:657.932274px;}
.y100{bottom:658.485260px;}
.y12c{bottom:658.485306px;}
.y16e{bottom:658.624786px;}
.y30{bottom:666.211349px;}
.y260{bottom:667.339793px;}
.y298{bottom:671.437793px;}
.y8e{bottom:673.665298px;}
.y6b{bottom:673.665344px;}
.y175{bottom:676.183823px;}
.y149{bottom:676.649274px;}
.yff{bottom:677.235260px;}
.y12b{bottom:677.235306px;}
.y16d{bottom:677.374786px;}
.y25f{bottom:682.333793px;}
.y205{bottom:683.014811px;}
.y2f{bottom:684.961349px;}
.y297{bottom:686.431793px;}
.y8d{bottom:692.415298px;}
.y6a{bottom:692.415344px;}
.y174{bottom:694.933823px;}
.y148{bottom:695.366274px;}
.yfe{bottom:695.985260px;}
.y12a{bottom:695.985306px;}
.y16c{bottom:696.124786px;}
.y25e{bottom:697.327793px;}
.y204{bottom:698.008811px;}
.y208{bottom:698.021561px;}
.y296{bottom:701.425793px;}
.y2e{bottom:703.711349px;}
.y8c{bottom:711.165298px;}
.y69{bottom:711.165344px;}
.y25d{bottom:712.321793px;}
.y203{bottom:713.002811px;}
.y207{bottom:713.015561px;}
.y173{bottom:713.683823px;}
.y147{bottom:714.083274px;}
.yfd{bottom:714.735260px;}
.y129{bottom:714.735306px;}
.y16b{bottom:714.874786px;}
.y295{bottom:716.419793px;}
.y2d{bottom:722.461349px;}
.y202{bottom:727.996811px;}
.y206{bottom:728.009561px;}
.y8b{bottom:729.915298px;}
.y68{bottom:729.915344px;}
.y294{bottom:731.413793px;}
.y172{bottom:732.433823px;}
.y146{bottom:732.800274px;}
.yfc{bottom:733.485260px;}
.y128{bottom:733.485306px;}
.y16a{bottom:733.624786px;}
.y2c{bottom:741.211395px;}
.y25c{bottom:742.321793px;}
.y293{bottom:746.407793px;}
.y8a{bottom:748.665298px;}
.y67{bottom:748.665344px;}
.y145{bottom:751.517274px;}
.yfb{bottom:752.235260px;}
.y127{bottom:752.235306px;}
.y169{bottom:752.374969px;}
.y2b{bottom:759.961395px;}
.y292{bottom:761.401793px;}
.y1c2{bottom:763.070984px;}
.y89{bottom:767.415298px;}
.y66{bottom:767.415344px;}
.y171{bottom:769.933777px;}
.y144{bottom:770.234274px;}
.yfa{bottom:770.985260px;}
.y23d{bottom:770.985306px;}
.y168{bottom:771.124969px;}
.y25b{bottom:776.159588px;}
.y1c5{bottom:776.248993px;}
.y1cd{bottom:776.352264px;}
.y1d6{bottom:776.391266px;}
.y291{bottom:776.395793px;}
.y4{bottom:778.225500px;}
.y2a{bottom:778.711395px;}
.y65{bottom:786.165344px;}
.y1ef{bottom:787.511337px;}
.y1f5{bottom:787.574468px;}
.y201{bottom:787.755461px;}
.y143{bottom:788.951274px;}
.yf9{bottom:789.735260px;}
.y23c{bottom:789.735306px;}
.y25a{bottom:791.153588px;}
.y290{bottom:791.389793px;}
.y29{bottom:797.461395px;}
.y142{bottom:803.945274px;}
.y64{bottom:804.915344px;}
.y259{bottom:806.147588px;}
.y28f{bottom:806.383793px;}
.yf8{bottom:808.485260px;}
.y23b{bottom:808.485306px;}
.y1ee{bottom:811.543871px;}
.y1f4{bottom:811.607001px;}
.y200{bottom:811.783785px;}
.y1c6{bottom:812.451416px;}
.y1d7{bottom:812.490326px;}
.y1ce{bottom:812.527771px;}
.y13{bottom:815.670000px;}
.y17c{bottom:819.348724px;}
.y2ce{bottom:821.332823px;}
.y28e{bottom:821.377793px;}
.y141{bottom:822.662274px;}
.y63{bottom:823.665344px;}
.yf7{bottom:827.235260px;}
.y126{bottom:827.235306px;}
.y17b{bottom:833.506155px;}
.y1ed{bottom:835.576404px;}
.y1f3{bottom:835.639535px;}
.y1ff{bottom:835.816319px;}
.y258{bottom:836.148338px;}
.y2cd{bottom:836.326823px;}
.y28d{bottom:836.371793px;}
.y140{bottom:841.379274px;}
.y28{bottom:841.644153px;}
.y62{bottom:842.415344px;}
.yf6{bottom:845.985260px;}
.y125{bottom:845.985306px;}
.y17a{bottom:848.500155px;}
.y257{bottom:851.142338px;}
.y2cc{bottom:851.320823px;}
.y2de{bottom:851.320824px;}
.y28c{bottom:851.365793px;}
.y27{bottom:856.638153px;}
.y1ec{bottom:859.667862px;}
.y1f2{bottom:859.730992px;}
.y1fe{bottom:859.903567px;}
.y13f{bottom:860.096274px;}
.y61{bottom:861.165344px;}
.yf5{bottom:864.735260px;}
.y124{bottom:864.735306px;}
.y256{bottom:866.136338px;}
.y2cb{bottom:866.314823px;}
.y2dd{bottom:866.314824px;}
.y28b{bottom:866.359793px;}
.y179{bottom:867.752655px;}
.y1cf{bottom:875.080811px;}
.y13e{bottom:878.813274px;}
.y60{bottom:879.915344px;}
.y1d0{bottom:881.023867px;}
.y1c7{bottom:881.046295px;}
.y255{bottom:881.130338px;}
.y2ca{bottom:881.308823px;}
.y28a{bottom:881.353793px;}
.y1d8{bottom:881.835480px;}
.yf4{bottom:883.485260px;}
.y123{bottom:883.485306px;}
.y1eb{bottom:883.700395px;}
.y1f1{bottom:883.763526px;}
.y1fd{bottom:883.936101px;}
.y1d1{bottom:886.966923px;}
.y1c8{bottom:886.994174px;}
.y1d9{bottom:887.766190px;}
.y1d2{bottom:892.909979px;}
.y1c9{bottom:892.942052px;}
.y1da{bottom:893.696901px;}
.y186{bottom:895.260277px;}
.y254{bottom:896.124338px;}
.y2c9{bottom:896.302823px;}
.y289{bottom:896.347793px;}
.y2dc{bottom:896.404823px;}
.y13d{bottom:897.530274px;}
.y5f{bottom:898.665344px;}
.y1ca{bottom:898.889931px;}
.y26{bottom:899.238190px;}
.y1db{bottom:899.627611px;}
.y1d4{bottom:901.253991px;}
.yf3{bottom:902.235260px;}
.y122{bottom:902.235306px;}
.y3{bottom:905.716500px;}
.y1cb{bottom:907.237793px;}
.y1d3{bottom:907.239441px;}
.y1ea{bottom:907.652961px;}
.y1f0{bottom:907.716091px;}
.y1fc{bottom:907.888666px;}
.y1dc{bottom:907.947418px;}
.y2c8{bottom:911.296823px;}
.y288{bottom:911.341793px;}
.y2db{bottom:911.398823px;}
.y185{bottom:914.053777px;}
.y13c{bottom:916.247274px;}
.y5e{bottom:917.415344px;}
.y25{bottom:917.988190px;}
.y1dd{bottom:918.717407px;}
.yf2{bottom:920.985260px;}
.y121{bottom:920.985306px;}
.y253{bottom:926.125088px;}
.y2c7{bottom:926.290823px;}
.y287{bottom:926.335793px;}
.y2da{bottom:926.392823px;}
.y184{bottom:932.770777px;}
.y1a9{bottom:934.666809px;}
.y13b{bottom:934.964274px;}
.y1b1{bottom:935.070282px;}
.y1ba{bottom:935.074768px;}
.y5d{bottom:936.165344px;}
.y24{bottom:936.738190px;}
.yf1{bottom:939.735260px;}
.y120{bottom:939.735306px;}
.y252{bottom:941.119088px;}
.y2c6{bottom:941.284823px;}
.y286{bottom:941.329793px;}
.y2d9{bottom:941.386823px;}
.y1aa{bottom:945.768494px;}
.y1b2{bottom:945.942261px;}
.y1bb{bottom:945.951416px;}
.y183{bottom:951.487777px;}
.y13a{bottom:953.681274px;}
.y5c{bottom:954.915344px;}
.y1e9{bottom:955.957932px;}
.y251{bottom:956.113088px;}
.y1fb{bottom:956.126296px;}
.y2c5{bottom:956.278823px;}
.y285{bottom:956.323793px;}
.y1e3{bottom:956.374610px;}
.y2d8{bottom:956.380823px;}
.yf0{bottom:958.485260px;}
.y11f{bottom:958.485306px;}
.y2{bottom:964.228500px;}
.y182{bottom:970.204777px;}
.y250{bottom:971.107088px;}
.y2c4{bottom:971.272823px;}
.y284{bottom:971.317793px;}
.y2d7{bottom:971.374823px;}
.y139{bottom:972.398274px;}
.y5b{bottom:973.665344px;}
.yef{bottom:977.235260px;}
.y11e{bottom:977.235306px;}
.y1e8{bottom:979.990466px;}
.y1fa{bottom:980.158829px;}
.y1e2{bottom:980.402934px;}
.y1ab{bottom:981.283173px;}
.y23{bottom:981.424622px;}
.y1b3{bottom:981.984924px;}
.y1bc{bottom:982.010742px;}
.y24f{bottom:986.101088px;}
.y2c3{bottom:986.266823px;}
.y283{bottom:986.311793px;}
.y2d6{bottom:986.368823px;}
.y181{bottom:988.921777px;}
.y1{bottom:989.716500px;}
.y5a{bottom:992.415344px;}
.yee{bottom:995.985260px;}
.y11d{bottom:995.985306px;}
.yd1{bottom:1000.138844px;}
.y138{bottom:1000.486524px;}
.y24e{bottom:1001.095088px;}
.y2c2{bottom:1001.260823px;}
.y282{bottom:1001.305793px;}
.y2d5{bottom:1001.362823px;}
.y1e7{bottom:1004.022999px;}
.y1f9{bottom:1004.191363px;}
.y1e1{bottom:1004.435468px;}
.y22{bottom:1008.424622px;}
.y59{bottom:1011.165344px;}
.yed{bottom:1014.735260px;}
.y11c{bottom:1014.735306px;}
.yd0{bottom:1015.132844px;}
.y24d{bottom:1016.089088px;}
.y2c1{bottom:1016.254823px;}
.y281{bottom:1016.299793px;}
.y2d4{bottom:1016.356823px;}
.y180{bottom:1016.589277px;}
.y137{bottom:1024.902774px;}
.y1e6{bottom:1028.110248px;}
.y1f8{bottom:1028.282820px;}
.y1e0{bottom:1028.526925px;}
.y58{bottom:1029.915344px;}
.ycf{bottom:1030.126844px;}
.y24c{bottom:1031.083088px;}
.y2c0{bottom:1031.248823px;}
.y280{bottom:1031.293793px;}
.y2d3{bottom:1031.350823px;}
.yec{bottom:1033.485260px;}
.y11b{bottom:1033.485306px;}
.y17f{bottom:1041.005527px;}
.yce{bottom:1045.120844px;}
.y1b4{bottom:1045.258759px;}
.y2bf{bottom:1046.242823px;}
.y27f{bottom:1046.287793px;}
.y2d2{bottom:1046.344823px;}
.y57{bottom:1048.665344px;}
.y136{bottom:1049.612274px;}
.y1ac{bottom:1050.691223px;}
.y1b5{bottom:1051.180403px;}
.y1bd{bottom:1051.277069px;}
.y1e5{bottom:1052.142781px;}
.yeb{bottom:1052.235260px;}
.y11a{bottom:1052.235306px;}
.y1f7{bottom:1052.315354px;}
.y1df{bottom:1052.559459px;}
.y1ad{bottom:1056.737481px;}
.y1b6{bottom:1057.102047px;}
.y1be{bottom:1057.201221px;}
.ycd{bottom:1060.114844px;}
.y24b{bottom:1061.083838px;}
.y2be{bottom:1061.236823px;}
.y27e{bottom:1061.281793px;}
.y2d1{bottom:1061.338823px;}
.y1ae{bottom:1062.783738px;}
.y1b7{bottom:1063.023691px;}
.y1bf{bottom:1063.125373px;}
.y17e{bottom:1065.715027px;}
.y1af{bottom:1068.829995px;}
.y1c0{bottom:1069.049525px;}
.yea{bottom:1070.985260px;}
.y119{bottom:1070.985306px;}
.y1b9{bottom:1071.331924px;}
.ycc{bottom:1075.108844px;}
.y24a{bottom:1076.077838px;}
.y1e4{bottom:1076.095346px;}
.y21{bottom:1076.132080px;}
.y2bd{bottom:1076.230823px;}
.y1f6{bottom:1076.267919px;}
.y27d{bottom:1076.275793px;}
.y2d0{bottom:1076.332823px;}
.y1de{bottom:1076.512024px;}
.y1b8{bottom:1077.295624px;}
.y1b0{bottom:1077.316956px;}
.y1c1{bottom:1077.361633px;}
.y56{bottom:1086.165344px;}
.ye9{bottom:1089.735260px;}
.y118{bottom:1089.735306px;}
.ycb{bottom:1090.102844px;}
.y17d{bottom:1090.107775px;}
.y249{bottom:1091.071838px;}
.y2bc{bottom:1091.224823px;}
.y27c{bottom:1091.269793px;}
.y2cf{bottom:1091.326823px;}
.y20{bottom:1109.586556px;}
.y1f{bottom:1126.582306px;}
.y55{bottom:1127.482361px;}
.h27{height:12.184099px;}
.h2a{height:12.188904px;}
.h37{height:12.202882px;}
.h33{height:12.228216px;}
.h2f{height:12.237826px;}
.h3a{height:12.256171px;}
.h23{height:12.440064px;}
.h28{height:13.408886px;}
.h2b{height:13.414565px;}
.h38{height:13.429416px;}
.h35{height:13.457371px;}
.h31{height:13.468291px;}
.h25{height:13.691059px;}
.h26{height:17.390149px;}
.h29{height:17.397585px;}
.h36{height:17.417268px;}
.h34{height:17.419455px;}
.h32{height:17.453572px;}
.h2e{height:17.467569px;}
.h22{height:17.756253px;}
.h30{height:17.778998px;}
.h24{height:17.789933px;}
.h17{height:25.204199px;}
.h4{height:33.000000px;}
.hb{height:33.840000px;}
.h15{height:36.006000px;}
.h16{height:36.855469px;}
.h39{height:40.014000px;}
.h2d{height:40.824000px;}
.h12{height:42.360000px;}
.hd{height:44.676000px;}
.h1e{height:45.186000px;}
.h1f{height:45.529163px;}
.h20{height:52.173000px;}
.h21{height:52.479000px;}
.h14{height:53.160000px;}
.h13{height:53.651817px;}
.h1d{height:53.651908px;}
.h19{height:53.652000px;}
.h3b{height:53.652183px;}
.hc{height:54.862258px;}
.he{height:55.461000px;}
.h3{height:58.406250px;}
.h1a{height:59.004000px;}
.h11{height:59.340000px;}
.h1b{height:61.380000px;}
.h1c{height:61.380092px;}
.h10{height:64.866000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h18{height:71.208000px;}
.hf{height:85.056000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h2c{height:336.593994px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:739.841995px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x27{left:4.541405px;}
.xc{left:76.535402px;}
.x11{left:78.746400px;}
.x2e{left:80.786550px;}
.xd{left:85.181849px;}
.x15{left:87.010115px;}
.x2f{left:91.872602px;}
.x12{left:93.545402px;}
.x28{left:95.165400px;}
.xe{left:97.796100px;}
.x3c{left:102.048152px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x33{left:162.229370px;}
.x19{left:171.763653px;}
.x5{left:174.105000px;}
.x32{left:189.788395px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x14{left:221.260345px;}
.x6{left:222.480000px;}
.x39{left:267.873139px;}
.x29{left:269.077057px;}
.x1a{left:270.614548px;}
.x1c{left:283.441040px;}
.x1b{left:290.347046px;}
.x18{left:305.568477px;}
.x17{left:323.839211px;}
.x1f{left:335.155060px;}
.x30{left:340.203168px;}
.x2a{left:341.363691px;}
.x3b{left:369.600912px;}
.x16{left:378.194619px;}
.x34{left:396.408618px;}
.x1d{left:418.207031px;}
.xf{left:459.212540px;}
.x13{left:476.227359px;}
.x10{left:480.466799px;}
.x3a{left:485.179660px;}
.x35{left:501.876618px;}
.x38{left:510.878115px;}
.x2b{left:513.307068px;}
.x1e{left:514.552185px;}
.x2c{left:525.610199px;}
.x21{left:531.380539px;}
.x20{left:533.576706px;}
.x24{left:583.610687px;}
.x31{left:589.223988px;}
.x2d{left:590.306700px;}
.x36{left:607.484868px;}
.x22{left:666.697220px;}
.x37{left:712.952868px;}
.xa{left:728.220612px;}
.xb{left:755.489868px;}
.x23{left:763.084213px;}
.x26{left:774.895020px;}
.x25{left:782.117523px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-13.332845pt;}
.v6{vertical-align:-11.236219pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.344000pt;}
.v7{vertical-align:11.333333pt;}
.v4{vertical-align:13.333333pt;}
.v5{vertical-align:18.066634pt;}
.v1{vertical-align:21.333333pt;}
.lsb1{letter-spacing:-1.768000pt;}
.lsb3{letter-spacing:-1.224000pt;}
.ls4c{letter-spacing:-1.178667pt;}
.ls5f{letter-spacing:-1.120000pt;}
.ls5e{letter-spacing:-1.066667pt;}
.ls4a{letter-spacing:-0.997333pt;}
.ls4b{letter-spacing:-0.952000pt;}
.lsb2{letter-spacing:-0.906667pt;}
.ls5d{letter-spacing:-0.800000pt;}
.ls58{letter-spacing:-0.589333pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.373333pt;}
.lsb4{letter-spacing:-0.362667pt;}
.ls47{letter-spacing:-0.320000pt;}
.lsb0{letter-spacing:-0.317333pt;}
.lsac{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsae{letter-spacing:-0.226667pt;}
.ls2b{letter-spacing:-0.213333pt;}
.lsad{letter-spacing:-0.181333pt;}
.ls2a{letter-spacing:-0.160000pt;}
.lsb5{letter-spacing:-0.136000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.lsaf{letter-spacing:-0.090667pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls92{letter-spacing:-0.045333pt;}
.ls60{letter-spacing:-0.014965pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000033pt;}
.ls2{letter-spacing:0.000076pt;}
.ls3b{letter-spacing:0.000298pt;}
.lsb9{letter-spacing:0.045333pt;}
.ls30{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.089150pt;}
.ls46{letter-spacing:0.090619pt;}
.ls9e{letter-spacing:0.090667pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls95{letter-spacing:0.136000pt;}
.ls35{letter-spacing:0.156647pt;}
.ls34{letter-spacing:0.156810pt;}
.ls7{letter-spacing:0.158926pt;}
.ls21{letter-spacing:0.160000pt;}
.ls91{letter-spacing:0.181333pt;}
.lsb6{letter-spacing:0.204000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.226667pt;}
.ls9b{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.245313pt;}
.ls9f{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.lsa6{letter-spacing:0.272000pt;}
.ls9d{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa3{letter-spacing:0.340000pt;}
.ls97{letter-spacing:0.362667pt;}
.ls36{letter-spacing:0.373333pt;}
.lsa7{letter-spacing:0.408000pt;}
.ls31{letter-spacing:0.412880pt;}
.ls65{letter-spacing:0.422964pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls67{letter-spacing:0.446947pt;}
.ls37{letter-spacing:0.450592pt;}
.ls90{letter-spacing:0.453333pt;}
.ls26{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.485333pt;}
.lsa4{letter-spacing:0.498667pt;}
.ls22{letter-spacing:0.533333pt;}
.lsa2{letter-spacing:0.544000pt;}
.ls4d{letter-spacing:0.557859pt;}
.ls75{letter-spacing:0.560000pt;}
.ls6b{letter-spacing:0.563223pt;}
.ls20{letter-spacing:0.586667pt;}
.ls98{letter-spacing:0.589333pt;}
.ls2f{letter-spacing:0.618667pt;}
.ls63{letter-spacing:0.621842pt;}
.ls9c{letter-spacing:0.634667pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls96{letter-spacing:0.680000pt;}
.ls18{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.709341pt;}
.ls28{letter-spacing:0.720000pt;}
.lsa9{letter-spacing:0.725333pt;}
.ls70{letter-spacing:0.746661pt;}
.ls1e{letter-spacing:0.746667pt;}
.lsaa{letter-spacing:0.748000pt;}
.lsa0{letter-spacing:0.770667pt;}
.ls32{letter-spacing:0.778667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls99{letter-spacing:0.816000pt;}
.ls27{letter-spacing:0.853333pt;}
.ls93{letter-spacing:0.861333pt;}
.ls3c{letter-spacing:0.880000pt;}
.ls3e{letter-spacing:0.906667pt;}
.ls66{letter-spacing:0.932778pt;}
.ls8b{letter-spacing:0.933333pt;}
.ls6a{letter-spacing:0.933340pt;}
.ls68{letter-spacing:0.933388pt;}
.ls13{letter-spacing:0.960000pt;}
.lsa1{letter-spacing:0.997333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls4f{letter-spacing:1.013883pt;}
.ls4e{letter-spacing:1.042116pt;}
.ls9a{letter-spacing:1.042667pt;}
.ls15{letter-spacing:1.066667pt;}
.ls3a{letter-spacing:1.072000pt;}
.lsa5{letter-spacing:1.088000pt;}
.ls12{letter-spacing:1.098667pt;}
.lsc{letter-spacing:1.120000pt;}
.ls86{letter-spacing:1.120026pt;}
.ls94{letter-spacing:1.133333pt;}
.ls3d{letter-spacing:1.173333pt;}
.lsb7{letter-spacing:1.178667pt;}
.ls64{letter-spacing:1.186155pt;}
.ls62{letter-spacing:1.192536pt;}
.ls17{letter-spacing:1.200000pt;}
.ls16{letter-spacing:1.226667pt;}
.ls72{letter-spacing:1.237865pt;}
.ls69{letter-spacing:1.268301pt;}
.ls42{letter-spacing:1.280000pt;}
.ls6e{letter-spacing:1.306667pt;}
.ls59{letter-spacing:1.322667pt;}
.ls38{letter-spacing:1.333333pt;}
.ls50{letter-spacing:1.348793pt;}
.ls89{letter-spacing:1.375438pt;}
.ls8a{letter-spacing:1.375479pt;}
.lse{letter-spacing:1.386667pt;}
.ls84{letter-spacing:1.416413pt;}
.ls61{letter-spacing:1.439985pt;}
.ls19{letter-spacing:1.440000pt;}
.lsb8{letter-spacing:1.473333pt;}
.ls10{letter-spacing:1.493333pt;}
.lsab{letter-spacing:1.496000pt;}
.ls87{letter-spacing:1.514720pt;}
.ls85{letter-spacing:1.515168pt;}
.ls88{letter-spacing:1.520000pt;}
.ls71{letter-spacing:1.546642pt;}
.ls78{letter-spacing:1.546667pt;}
.ls81{letter-spacing:1.573333pt;}
.ls11{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.653333pt;}
.ls1a{letter-spacing:1.674653pt;}
.ls8c{letter-spacing:1.680000pt;}
.ls24{letter-spacing:1.706667pt;}
.lsa8{letter-spacing:1.722667pt;}
.ls23{letter-spacing:1.760000pt;}
.ls39{letter-spacing:1.813333pt;}
.lsf{letter-spacing:1.866667pt;}
.ls44{letter-spacing:1.920000pt;}
.ls73{letter-spacing:1.973333pt;}
.ls82{letter-spacing:2.000000pt;}
.ls74{letter-spacing:2.026667pt;}
.ls80{letter-spacing:2.080000pt;}
.ls7c{letter-spacing:2.106667pt;}
.ls77{letter-spacing:2.133333pt;}
.ls8d{letter-spacing:2.160000pt;}
.ls51{letter-spacing:2.186667pt;}
.ls52{letter-spacing:2.213333pt;}
.ls79{letter-spacing:2.229321pt;}
.ls53{letter-spacing:2.240000pt;}
.ls40{letter-spacing:2.293333pt;}
.ls83{letter-spacing:2.346667pt;}
.ls6d{letter-spacing:2.357333pt;}
.ls8e{letter-spacing:2.373333pt;}
.ls43{letter-spacing:2.400000pt;}
.ls8f{letter-spacing:2.453333pt;}
.ls41{letter-spacing:2.506667pt;}
.ls76{letter-spacing:2.560000pt;}
.ls6c{letter-spacing:2.613333pt;}
.ls7a{letter-spacing:2.666667pt;}
.ls7b{letter-spacing:2.720000pt;}
.ls6f{letter-spacing:2.773333pt;}
.ls48{letter-spacing:2.826667pt;}
.ls3f{letter-spacing:2.880000pt;}
.ls45{letter-spacing:2.933333pt;}
.ls1{letter-spacing:3.546667pt;}
.ls56{letter-spacing:34.680000pt;}
.ls54{letter-spacing:35.718152pt;}
.ls57{letter-spacing:42.069333pt;}
.ls7f{letter-spacing:71.354667pt;}
.ls7d{letter-spacing:72.380018pt;}
.ls5c{letter-spacing:75.298667pt;}
.ls7e{letter-spacing:78.744000pt;}
.ls55{letter-spacing:299.789333pt;}
.ls49{letter-spacing:491.911992pt;}
.ls5b{letter-spacing:835.488000pt;}
.ls5a{letter-spacing:854.831992pt;}
.ws0{word-spacing:-16.874667pt;}
.ws78{word-spacing:-15.573333pt;}
.wsa9{word-spacing:-15.520000pt;}
.wsa6{word-spacing:-15.360000pt;}
.ws9c{word-spacing:-14.933333pt;}
.ws37{word-spacing:-14.346667pt;}
.ws79{word-spacing:-14.133333pt;}
.ws4d{word-spacing:-13.973333pt;}
.ws3a{word-spacing:-13.600000pt;}
.ws4a{word-spacing:-13.546667pt;}
.ws45{word-spacing:-13.333333pt;}
.wsba{word-spacing:-13.184000pt;}
.ws18{word-spacing:-12.928000pt;}
.wsdc{word-spacing:-12.194667pt;}
.wsb7{word-spacing:-11.560000pt;}
.wsa{word-spacing:-11.333333pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws7a{word-spacing:-10.744000pt;}
.ws8{word-spacing:-10.240000pt;}
.ws19{word-spacing:-9.818667pt;}
.wsb8{word-spacing:-9.565333pt;}
.ws7{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.885333pt;}
.wsb9{word-spacing:-8.522667pt;}
.ws9{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws49{word-spacing:-6.666667pt;}
.ws77{word-spacing:-5.666667pt;}
.wsb0{word-spacing:-2.400000pt;}
.wsb2{word-spacing:-2.186667pt;}
.wsd{word-spacing:-2.133333pt;}
.wsaf{word-spacing:-1.973333pt;}
.ws7f{word-spacing:-1.920000pt;}
.wsae{word-spacing:-1.706667pt;}
.wsb{word-spacing:-1.680000pt;}
.wsa8{word-spacing:-1.653333pt;}
.wsa7{word-spacing:-1.600000pt;}
.wsd3{word-spacing:-1.450667pt;}
.ws2c{word-spacing:-1.440000pt;}
.ws69{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.wsaa{word-spacing:-1.280000pt;}
.wsd4{word-spacing:-1.178667pt;}
.ws46{word-spacing:-1.173333pt;}
.wsb6{word-spacing:-1.133333pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws12{word-spacing:-1.066667pt;}
.ws24{word-spacing:-1.013333pt;}
.ws48{word-spacing:-0.960000pt;}
.wscb{word-spacing:-0.952000pt;}
.ws60{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws28{word-spacing:-0.800000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws3b{word-spacing:-0.693333pt;}
.wscc{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.634667pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.544000pt;}
.ws34{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.506667pt;}
.wsc8{word-spacing:-0.453333pt;}
.wsde{word-spacing:-0.408000pt;}
.ws4c{word-spacing:-0.373333pt;}
.ws6a{word-spacing:-0.320000pt;}
.wseb{word-spacing:-0.317333pt;}
.ws2b{word-spacing:-0.266667pt;}
.wsc4{word-spacing:-0.234667pt;}
.wsbc{word-spacing:-0.226667pt;}
.ws61{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.160000pt;}
.wsc5{word-spacing:-0.136000pt;}
.wsdd{word-spacing:-0.090667pt;}
.ws11{word-spacing:-0.053333pt;}
.ws2{word-spacing:-0.042667pt;}
.ws8a{word-spacing:-0.016445pt;}
.ws86{word-spacing:-0.015189pt;}
.ws89{word-spacing:-0.014942pt;}
.ws8b{word-spacing:-0.014931pt;}
.ws8c{word-spacing:-0.014900pt;}
.ws88{word-spacing:-0.014883pt;}
.ws87{word-spacing:-0.014877pt;}
.ws1{word-spacing:0.000000pt;}
.ws92{word-spacing:0.014965pt;}
.wsc9{word-spacing:0.045333pt;}
.ws14{word-spacing:0.053333pt;}
.wsc3{word-spacing:0.090667pt;}
.ws2d{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.160000pt;}
.wsd9{word-spacing:0.181333pt;}
.wsb4{word-spacing:0.226667pt;}
.ws1b{word-spacing:0.266667pt;}
.wsb5{word-spacing:0.317333pt;}
.ws90{word-spacing:0.320000pt;}
.wsf{word-spacing:0.373333pt;}
.wse2{word-spacing:0.408000pt;}
.ws22{word-spacing:0.426667pt;}
.wsd5{word-spacing:0.453333pt;}
.ws68{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.533333pt;}
.ws84{word-spacing:0.544000pt;}
.ws50{word-spacing:0.586667pt;}
.wse4{word-spacing:0.634667pt;}
.ws13{word-spacing:0.640000pt;}
.wsdb{word-spacing:0.680000pt;}
.ws42{word-spacing:0.746667pt;}
.ws52{word-spacing:0.800000pt;}
.ws40{word-spacing:0.853333pt;}
.ws76{word-spacing:0.861333pt;}
.ws2f{word-spacing:0.906667pt;}
.ws23{word-spacing:0.960000pt;}
.wsce{word-spacing:0.997333pt;}
.ws62{word-spacing:1.013333pt;}
.wsca{word-spacing:1.042667pt;}
.ws91{word-spacing:1.066667pt;}
.ws41{word-spacing:1.120000pt;}
.wsc0{word-spacing:1.133333pt;}
.ws1a{word-spacing:1.173333pt;}
.wsc7{word-spacing:1.178667pt;}
.wsc6{word-spacing:1.224000pt;}
.ws5e{word-spacing:1.226667pt;}
.wsa0{word-spacing:1.280000pt;}
.wse{word-spacing:1.333333pt;}
.wse5{word-spacing:1.360000pt;}
.ws25{word-spacing:1.386667pt;}
.ws85{word-spacing:1.405333pt;}
.ws44{word-spacing:1.440000pt;}
.ws27{word-spacing:1.493333pt;}
.wse1{word-spacing:1.496000pt;}
.ws99{word-spacing:1.541333pt;}
.ws4b{word-spacing:1.546667pt;}
.wse6{word-spacing:1.586667pt;}
.ws31{word-spacing:1.600000pt;}
.ws2e{word-spacing:1.653333pt;}
.wsbf{word-spacing:1.677333pt;}
.ws2a{word-spacing:1.706667pt;}
.wse0{word-spacing:1.722667pt;}
.ws1e{word-spacing:1.760000pt;}
.wsdf{word-spacing:1.768000pt;}
.ws5d{word-spacing:1.813333pt;}
.ws32{word-spacing:1.866667pt;}
.ws29{word-spacing:1.920000pt;}
.ws5c{word-spacing:1.973333pt;}
.ws66{word-spacing:2.026667pt;}
.ws53{word-spacing:2.040000pt;}
.ws47{word-spacing:2.080000pt;}
.ws38{word-spacing:2.133333pt;}
.ws1f{word-spacing:2.186667pt;}
.ws5b{word-spacing:2.240000pt;}
.ws82{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.346667pt;}
.ws21{word-spacing:2.400000pt;}
.wsd8{word-spacing:2.402667pt;}
.wscf{word-spacing:2.448000pt;}
.ws65{word-spacing:2.506667pt;}
.ws54{word-spacing:2.538667pt;}
.ws20{word-spacing:2.613333pt;}
.wsbe{word-spacing:2.629333pt;}
.ws36{word-spacing:2.666667pt;}
.wsda{word-spacing:2.674667pt;}
.wsc1{word-spacing:2.720000pt;}
.wse8{word-spacing:2.765333pt;}
.ws43{word-spacing:2.826667pt;}
.ws59{word-spacing:2.880000pt;}
.ws3e{word-spacing:2.933333pt;}
.ws56{word-spacing:2.946667pt;}
.ws39{word-spacing:2.986667pt;}
.ws98{word-spacing:3.037333pt;}
.ws8f{word-spacing:3.040000pt;}
.ws35{word-spacing:3.146667pt;}
.wsab{word-spacing:3.200000pt;}
.wse7{word-spacing:3.218667pt;}
.ws5a{word-spacing:3.306667pt;}
.ws93{word-spacing:3.309333pt;}
.wsd2{word-spacing:3.354667pt;}
.wsd0{word-spacing:3.400000pt;}
.ws51{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.520000pt;}
.wsc2{word-spacing:3.536000pt;}
.ws4e{word-spacing:3.573333pt;}
.ws1d{word-spacing:3.626667pt;}
.wsd1{word-spacing:3.672000pt;}
.wsea{word-spacing:3.717333pt;}
.ws55{word-spacing:3.762667pt;}
.ws80{word-spacing:3.893333pt;}
.wsbb{word-spacing:3.944000pt;}
.ws5f{word-spacing:3.946667pt;}
.ws64{word-spacing:4.000000pt;}
.wsa4{word-spacing:4.053333pt;}
.wsad{word-spacing:4.106667pt;}
.wse3{word-spacing:4.261333pt;}
.ws58{word-spacing:4.306667pt;}
.wsa1{word-spacing:4.320000pt;}
.wsb1{word-spacing:4.373333pt;}
.wsac{word-spacing:4.426667pt;}
.ws63{word-spacing:4.533333pt;}
.ws67{word-spacing:4.693333pt;}
.wsa5{word-spacing:4.800000pt;}
.ws57{word-spacing:4.805333pt;}
.ws3d{word-spacing:4.960000pt;}
.ws26{word-spacing:5.226667pt;}
.wsa2{word-spacing:5.280000pt;}
.ws81{word-spacing:5.333333pt;}
.ws94{word-spacing:5.349333pt;}
.ws9a{word-spacing:5.530667pt;}
.wse9{word-spacing:5.666667pt;}
.wsb3{word-spacing:5.813333pt;}
.wsd6{word-spacing:6.754667pt;}
.wsd7{word-spacing:6.981333pt;}
.ws96{word-spacing:7.344000pt;}
.ws97{word-spacing:7.525333pt;}
.ws95{word-spacing:7.797333pt;}
.ws9b{word-spacing:8.296000pt;}
.ws83{word-spacing:9.226667pt;}
.wsec{word-spacing:12.466667pt;}
.wsed{word-spacing:16.229333pt;}
.ws6d{word-spacing:22.213333pt;}
.ws17{word-spacing:64.237333pt;}
.ws7e{word-spacing:99.053333pt;}
.ws7b{word-spacing:144.386667pt;}
.ws9f{word-spacing:148.965323pt;}
.ws6e{word-spacing:154.405333pt;}
.ws6f{word-spacing:164.968000pt;}
.ws6c{word-spacing:165.738667pt;}
.ws9d{word-spacing:174.080000pt;}
.ws70{word-spacing:177.072000pt;}
.ws6b{word-spacing:198.968000pt;}
.ws7c{word-spacing:201.053333pt;}
.ws9e{word-spacing:230.746667pt;}
.ws71{word-spacing:233.738667pt;}
.ws7d{word-spacing:261.029333pt;}
.ws73{word-spacing:590.965333pt;}
.ws75{word-spacing:602.298667pt;}
.ws8d{word-spacing:838.463985pt;}
.ws74{word-spacing:979.290647pt;}
.ws72{word-spacing:996.290647pt;}
._63{margin-left:-126.113856pt;}
._61{margin-left:-124.157611pt;}
._64{margin-left:-122.270110pt;}
._62{margin-left:-121.186413pt;}
._7b{margin-left:-19.810667pt;}
._66{margin-left:-17.725349pt;}
._15{margin-left:-16.274667pt;}
._a{margin-left:-14.733333pt;}
._10{margin-left:-13.777085pt;}
._9{margin-left:-12.819200pt;}
._f{margin-left:-11.362105pt;}
._60{margin-left:-10.205867pt;}
._16{margin-left:-9.173333pt;}
._8{margin-left:-7.611170pt;}
._2{margin-left:-6.536533pt;}
._7{margin-left:-4.828800pt;}
._3{margin-left:-3.808000pt;}
._12{margin-left:-2.810667pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.058133pt;}
._4{width:2.525867pt;}
._14{width:3.749867pt;}
._0{width:4.966400pt;}
._17{width:6.725333pt;}
._4e{width:10.394661pt;}
._6f{width:11.370667pt;}
._11{width:12.906667pt;}
._13{width:14.196267pt;}
._b{width:16.320000pt;}
._7c{width:18.531200pt;}
._78{width:20.374400pt;}
._7d{width:22.248533pt;}
._76{width:23.240000pt;}
._77{width:24.418667pt;}
._7a{width:27.003200pt;}
._79{width:30.053867pt;}
._d{width:32.504066pt;}
._2b{width:34.090534pt;}
._6{width:35.703454pt;}
._6e{width:37.452256pt;}
._3b{width:44.336132pt;}
._c{width:48.552000pt;}
._6a{width:52.632000pt;}
._26{width:56.349333pt;}
._6d{width:60.118923pt;}
._3c{width:66.504066pt;}
._29{width:67.546667pt;}
._70{width:70.849056pt;}
._6b{width:71.769600pt;}
._2a{width:78.880000pt;}
._6c{width:87.318933pt;}
._23{width:90.349333pt;}
._3f{width:102.327426pt;}
._58{width:110.060180pt;}
._2d{width:113.016000pt;}
._55{width:115.146667pt;}
._69{width:132.856523pt;}
._3d{width:135.682667pt;}
._5b{width:148.920000pt;}
._5e{width:150.536533pt;}
._52{width:152.077999pt;}
._59{width:154.904000pt;}
._1d{width:158.349333pt;}
._71{width:162.655992pt;}
._73{width:182.153057pt;}
._75{width:184.743967pt;}
._72{width:188.133333pt;}
._1a{width:192.349333pt;}
._46{width:196.980267pt;}
._20{width:211.072000pt;}
._57{width:214.200000pt;}
._45{width:219.601600pt;}
._25{width:225.170667pt;}
._3a{width:226.258659pt;}
._54{width:229.976000pt;}
._24{width:236.504000pt;}
._74{width:239.631990pt;}
._30{width:247.837333pt;}
._2e{width:259.170667pt;}
._19{width:269.859241pt;}
._53{width:271.563202pt;}
._5c{width:272.489396pt;}
._41{width:275.044267pt;}
._28{width:277.129592pt;}
._3e{width:281.837333pt;}
._42{width:298.429333pt;}
._68{width:304.743030pt;}
._38{width:313.525333pt;}
._22{width:321.096000pt;}
._1c{width:327.170667pt;}
._56{width:329.029333pt;}
._1b{width:338.504000pt;}
._37{width:343.717333pt;}
._27{width:361.397333pt;}
._4b{width:363.890667pt;}
._4a{width:373.236267pt;}
._1f{width:379.893333pt;}
._35{width:386.557333pt;}
._32{width:387.872000pt;}
._1e{width:391.226667pt;}
._2f{width:395.170667pt;}
._31{width:399.160000pt;}
._5f{width:416.052791pt;}
._2c{width:431.890667pt;}
._51{width:486.340194pt;}
._5a{width:487.695993pt;}
._5d{width:489.826658pt;}
._18{width:504.051729pt;}
._67{width:511.778658pt;}
._49{width:579.632000pt;}
._48{width:590.965333pt;}
._34{width:602.404800pt;}
._21{width:613.525867pt;}
._44{width:624.965333pt;}
._36{width:625.901847pt;}
._4f{width:634.787180pt;}
._40{width:642.191980pt;}
._4c{width:654.915180pt;}
._47{width:747.909313pt;}
._50{width:749.299180pt;}
._4d{width:751.837847pt;}
._43{width:820.177580pt;}
._65{width:854.255957pt;}
._39{width:859.973313pt;}
._33{width:879.337580pt;}
._e{width:2345.999961pt;}
.fs10{font-size:14.876800pt;}
.fs13{font-size:14.882667pt;}
.fs1f{font-size:14.899733pt;}
.fs1b{font-size:14.930667pt;}
.fs17{font-size:14.942400pt;}
.fs21{font-size:14.964800pt;}
.fsc{font-size:15.189333pt;}
.fs11{font-size:16.372267pt;}
.fs14{font-size:16.379200pt;}
.fs20{font-size:16.397333pt;}
.fs1d{font-size:16.431467pt;}
.fs19{font-size:16.444800pt;}
.fse{font-size:16.716799pt;}
.fsf{font-size:21.204267pt;}
.fs12{font-size:21.213333pt;}
.fs1e{font-size:21.237333pt;}
.fs1c{font-size:21.240000pt;}
.fs1a{font-size:21.281600pt;}
.fs16{font-size:21.298667pt;}
.fsb{font-size:21.650667pt;}
.fs18{font-size:21.678400pt;}
.fsd{font-size:21.691733pt;}
.fs9{font-size:31.733332pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs15{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:2.004272pt;}
.y1cc{bottom:2.106934pt;}
.y1d5{bottom:2.161621pt;}
.yc{bottom:7.146667pt;}
.y16{bottom:49.453333pt;}
.y1e{bottom:60.930933pt;}
.y1d{bottom:61.181335pt;}
.y15{bottom:69.080000pt;}
.y1b{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y48{bottom:100.394933pt;}
.y1a{bottom:101.040000pt;}
.y1a8{bottom:101.834930pt;}
.y1a5{bottom:101.834941pt;}
.y117{bottom:101.986938pt;}
.yb6{bottom:102.111064pt;}
.y167{bottom:105.655355pt;}
.y18a{bottom:105.792938pt;}
.y227{bottom:106.013468pt;}
.ye1{bottom:108.544271pt;}
.y47{bottom:113.722933pt;}
.y88{bottom:115.480265pt;}
.y189{bottom:118.348260pt;}
.y1a7{bottom:118.501597pt;}
.y1a4{bottom:118.501607pt;}
.y116{bottom:118.653605pt;}
.yb5{bottom:118.777608pt;}
.yca{bottom:118.777730pt;}
.y10{bottom:119.053333pt;}
.y19{bottom:120.666667pt;}
.y166{bottom:122.292688pt;}
.y226{bottom:123.126272pt;}
.ye0{bottom:125.210938pt;}
.yd9{bottom:126.269592pt;}
.y27b{bottom:128.018941pt;}
.y2bb{bottom:130.353594pt;}
.y248{bottom:131.456271pt;}
.y46{bottom:131.584269pt;}
.y87{bottom:132.146932pt;}
.y1a3{bottom:135.168274pt;}
.y115{bottom:135.320272pt;}
.yb4{bottom:135.444275pt;}
.yc9{bottom:135.444397pt;}
.y225{bottom:135.722552pt;}
.y17{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y165{bottom:138.930021pt;}
.y18{bottom:140.293333pt;}
.y27a{bottom:141.346941pt;}
.ydf{bottom:141.877604pt;}
.yd8{bottom:142.936259pt;}
.y19e{bottom:143.300929pt;}
.y2ba{bottom:143.681594pt;}
.y247{bottom:144.784271pt;}
.y45{bottom:147.098270pt;}
.y86{bottom:148.813599pt;}
.y1a6{bottom:151.834930pt;}
.y1a2{bottom:151.834941pt;}
.y114{bottom:151.986938pt;}
.yb3{bottom:152.110942pt;}
.yc8{bottom:152.111064pt;}
.y279{bottom:154.674941pt;}
.y164{bottom:155.567355pt;}
.y2b9{bottom:157.009594pt;}
.yde{bottom:158.544271pt;}
.yd7{bottom:159.602926pt;}
.y19d{bottom:160.006262pt;}
.y23a{bottom:161.147873pt;}
.y44{bottom:164.959605pt;}
.y85{bottom:165.480265pt;}
.y278{bottom:168.002941pt;}
.y1a1{bottom:168.501607pt;}
.y113{bottom:168.653605pt;}
.yb2{bottom:168.777608pt;}
.yc7{bottom:168.777730pt;}
.y2b8{bottom:170.337594pt;}
.y246{bottom:171.450928pt;}
.y163{bottom:172.204688pt;}
.y54{bottom:173.791995pt;}
.ydd{bottom:175.210938pt;}
.yd6{bottom:176.269592pt;}
.y19c{bottom:176.563599pt;}
.y239{bottom:177.853206pt;}
.y43{bottom:180.473595pt;}
.y277{bottom:181.330941pt;}
.y84{bottom:182.146932pt;}
.y2b7{bottom:183.665594pt;}
.y1a0{bottom:185.168274pt;}
.y112{bottom:185.320272pt;}
.yb1{bottom:185.444275pt;}
.y245{bottom:188.117594pt;}
.y162{bottom:188.842021pt;}
.y53{bottom:191.653341pt;}
.ydc{bottom:191.877604pt;}
.yd5{bottom:192.936259pt;}
.y19b{bottom:193.268933pt;}
.y238{bottom:194.410523pt;}
.y276{bottom:194.658941pt;}
.y2b6{bottom:196.993594pt;}
.y42{bottom:198.334941pt;}
.y83{bottom:198.813599pt;}
.y19f{bottom:201.834941pt;}
.y111{bottom:201.986938pt;}
.yb0{bottom:202.110942pt;}
.yc6{bottom:202.111064pt;}
.y244{bottom:204.784261pt;}
.y161{bottom:205.479355pt;}
.y52{bottom:207.167341pt;}
.y275{bottom:207.986941pt;}
.ydb{bottom:208.544271pt;}
.yd4{bottom:209.602926pt;}
.y19a{bottom:209.906266pt;}
.y2b5{bottom:210.321594pt;}
.y237{bottom:211.115857pt;}
.y41{bottom:213.848941pt;}
.y82{bottom:215.480265pt;}
.y110{bottom:218.653605pt;}
.yaf{bottom:218.777608pt;}
.y274{bottom:221.314941pt;}
.y243{bottom:221.450928pt;}
.y160{bottom:222.116688pt;}
.y2b4{bottom:223.649594pt;}
.y51{bottom:225.028666pt;}
.yd3{bottom:226.269592pt;}
.y199{bottom:226.531604pt;}
.y236{bottom:227.753190pt;}
.y40{bottom:231.710266pt;}
.y81{bottom:232.146932pt;}
.y10f{bottom:235.320272pt;}
.yae{bottom:235.444275pt;}
.yc5{bottom:235.444397pt;}
.y2b3{bottom:236.977594pt;}
.y242{bottom:238.117594pt;}
.y15f{bottom:238.754021pt;}
.y50{bottom:240.548000pt;}
.yda{bottom:241.877604pt;}
.yd2{bottom:242.936259pt;}
.y198{bottom:243.168937pt;}
.y235{bottom:244.378527pt;}
.y3f{bottom:247.224266pt;}
.y80{bottom:248.813599pt;}
.y2b2{bottom:250.305594pt;}
.y20f{bottom:250.721194pt;}
.y273{bottom:251.314941pt;}
.y10e{bottom:251.986938pt;}
.yad{bottom:252.110942pt;}
.yc4{bottom:252.111064pt;}
.y4f{bottom:253.876000pt;}
.y241{bottom:254.784261pt;}
.y15e{bottom:255.391355pt;}
.y197{bottom:259.806270pt;}
.y234{bottom:261.015861pt;}
.y2b1{bottom:263.633594pt;}
.y3e{bottom:265.085592pt;}
.y7f{bottom:265.480265pt;}
.y20e{bottom:268.582540pt;}
.y10d{bottom:268.653605pt;}
.yac{bottom:268.777608pt;}
.yc3{bottom:268.777751pt;}
.y240{bottom:271.450928pt;}
.y4e{bottom:271.737325pt;}
.y15d{bottom:272.028688pt;}
.y196{bottom:276.363608pt;}
.y2b0{bottom:276.961594pt;}
.y233{bottom:277.653194pt;}
.y3d{bottom:280.604925pt;}
.y20d{bottom:281.167463pt;}
.y9f{bottom:282.146932pt;}
.y7e{bottom:282.146973pt;}
.ye5{bottom:282.798939pt;}
.y135{bottom:285.320272pt;}
.yab{bottom:285.444275pt;}
.yc2{bottom:285.444417pt;}
.y4d{bottom:287.251325pt;}
.y23f{bottom:288.117594pt;}
.y1c3{bottom:288.559652pt;}
.y15c{bottom:288.666021pt;}
.y2af{bottom:290.289594pt;}
.y195{bottom:293.068941pt;}
.y3c{bottom:293.932925pt;}
.y232{bottom:294.210552pt;}
.ye8{bottom:296.121605pt;}
.ye4{bottom:296.126939pt;}
.y9e{bottom:298.813599pt;}
.y7d{bottom:298.813639pt;}
.y20c{bottom:299.028666pt;}
.y10c{bottom:301.986938pt;}
.y15b{bottom:301.994021pt;}
.yaa{bottom:302.110942pt;}
.yc1{bottom:302.111084pt;}
.y2ae{bottom:303.617594pt;}
.y4c{bottom:305.112671pt;}
.ya{bottom:306.382667pt;}
.y272{bottom:306.616260pt;}
.ye3{bottom:309.454939pt;}
.ye7{bottom:309.466272pt;}
.y194{bottom:309.706274pt;}
.y231{bottom:310.915885pt;}
.y20b{bottom:311.641616pt;}
.y3b{bottom:311.794271pt;}
.y7c{bottom:315.480306pt;}
.y2ad{bottom:316.945594pt;}
.y15a{bottom:318.631355pt;}
.y134{bottom:318.653605pt;}
.yc0{bottom:318.777751pt;}
.y271{bottom:319.944260pt;}
.y4b{bottom:320.632005pt;}
.y23e{bottom:321.450928pt;}
.ye2{bottom:322.782939pt;}
.ye6{bottom:322.794272pt;}
.y193{bottom:326.331612pt;}
.y230{bottom:327.553218pt;}
.y2ac{bottom:330.273594pt;}
.y9d{bottom:332.146932pt;}
.y7b{bottom:332.146973pt;}
.y270{bottom:333.272260pt;}
.y4a{bottom:333.960005pt;}
.y3a{bottom:334.022785pt;}
.y159{bottom:335.268688pt;}
.y10b{bottom:335.320272pt;}
.ya9{bottom:335.444275pt;}
.ybf{bottom:335.444417pt;}
.y21c{bottom:336.815980pt;}
.y192{bottom:342.968945pt;}
.yd{bottom:343.546667pt;}
.y2ab{bottom:343.601594pt;}
.y22f{bottom:344.178535pt;}
.y26f{bottom:346.600260pt;}
.y39{bottom:347.350785pt;}
.y7a{bottom:348.813639pt;}
.y21b{bottom:350.143980pt;}
.y9{bottom:351.724000pt;}
.y49{bottom:351.821330pt;}
.y158{bottom:351.906021pt;}
.y133{bottom:351.986938pt;}
.ybe{bottom:352.111084pt;}
.y2aa{bottom:356.929594pt;}
.y191{bottom:359.606278pt;}
.y26e{bottom:359.928260pt;}
.y22e{bottom:360.815869pt;}
.y9c{bottom:365.480265pt;}
.y79{bottom:365.480306pt;}
.y21a{bottom:366.849313pt;}
.y157{bottom:368.543355pt;}
.y132{bottom:368.653605pt;}
.ya8{bottom:368.777588pt;}
.ybd{bottom:368.777751pt;}
.y2a9{bottom:370.257594pt;}
.y26d{bottom:373.256260pt;}
.y38{bottom:374.743452pt;}
.y190{bottom:376.231595pt;}
.y22d{bottom:377.453202pt;}
.y219{bottom:380.177313pt;}
.y9b{bottom:382.146932pt;}
.y78{bottom:382.146973pt;}
.y2a8{bottom:383.585594pt;}
.y156{bottom:385.180688pt;}
.y10a{bottom:385.320272pt;}
.ya7{bottom:385.444255pt;}
.ybc{bottom:385.444417pt;}
.yb{bottom:386.533333pt;}
.y26c{bottom:386.584260pt;}
.y37{bottom:388.071452pt;}
.y18f{bottom:392.868929pt;}
.y22c{bottom:394.078519pt;}
.y224{bottom:394.156547pt;}
.y218{bottom:396.814646pt;}
.y2a7{bottom:396.913594pt;}
.y8{bottom:397.065333pt;}
.y9a{bottom:398.813599pt;}
.y77{bottom:398.813639pt;}
.y26b{bottom:399.912260pt;}
.y155{bottom:401.818021pt;}
.y109{bottom:401.986938pt;}
.ya6{bottom:402.110921pt;}
.ybb{bottom:402.111084pt;}
.y223{bottom:407.484547pt;}
.y18e{bottom:409.506262pt;}
.y2a6{bottom:410.241594pt;}
.y22b{bottom:410.715853pt;}
.y26a{bottom:413.240260pt;}
.y217{bottom:413.451980pt;}
.y99{bottom:415.480265pt;}
.y76{bottom:415.480306pt;}
.y154{bottom:418.455355pt;}
.y108{bottom:418.653605pt;}
.ya5{bottom:418.777588pt;}
.y222{bottom:420.812547pt;}
.y2a5{bottom:423.569594pt;}
.y18d{bottom:426.139595pt;}
.y269{bottom:426.568260pt;}
.y216{bottom:426.779980pt;}
.y22a{bottom:427.353186pt;}
.y98{bottom:432.146932pt;}
.y75{bottom:432.146973pt;}
.y11{bottom:433.826667pt;}
.y221{bottom:434.140547pt;}
.y153{bottom:435.092688pt;}
.y107{bottom:435.320272pt;}
.ya4{bottom:435.444255pt;}
.yba{bottom:435.444417pt;}
.y2a4{bottom:436.897594pt;}
.y268{bottom:439.896260pt;}
.y7{bottom:442.406667pt;}
.y215{bottom:443.417313pt;}
.y229{bottom:443.989861pt;}
.y220{bottom:447.479213pt;}
.y97{bottom:448.813599pt;}
.y74{bottom:448.813639pt;}
.y2a3{bottom:450.225594pt;}
.y18c{bottom:451.106929pt;}
.y152{bottom:451.730021pt;}
.y106{bottom:451.986938pt;}
.ya3{bottom:452.110921pt;}
.y267{bottom:453.224260pt;}
.y214{bottom:456.745313pt;}
.y21f{bottom:460.807213pt;}
.y2a2{bottom:463.553594pt;}
.y96{bottom:465.480265pt;}
.y73{bottom:465.480306pt;}
.y151{bottom:468.367355pt;}
.y105{bottom:468.653605pt;}
.ya2{bottom:468.777588pt;}
.yb9{bottom:468.777751pt;}
.y228{bottom:468.957194pt;}
.y18b{bottom:472.810262pt;}
.y213{bottom:473.382646pt;}
.y21e{bottom:474.135213pt;}
.y36{bottom:475.521200pt;}
.y2a1{bottom:476.881594pt;}
.y12{bottom:478.426667pt;}
.y95{bottom:482.146932pt;}
.y72{bottom:482.146973pt;}
.y150{bottom:485.004688pt;}
.y131{bottom:485.320272pt;}
.ya1{bottom:485.444255pt;}
.yb8{bottom:485.444397pt;}
.y266{bottom:486.544260pt;}
.y6{bottom:487.748000pt;}
.y2a0{bottom:490.209594pt;}
.y188{bottom:495.442246pt;}
.y212{bottom:497.681313pt;}
.y94{bottom:498.813599pt;}
.y71{bottom:498.813639pt;}
.y265{bottom:499.872260pt;}
.y14f{bottom:501.642021pt;}
.y104{bottom:501.986938pt;}
.ya0{bottom:502.110921pt;}
.yb7{bottom:502.111064pt;}
.y29f{bottom:503.537594pt;}
.y187{bottom:508.770246pt;}
.y35{bottom:508.854533pt;}
.y211{bottom:511.009313pt;}
.y264{bottom:513.200260pt;}
.y93{bottom:515.480265pt;}
.y70{bottom:515.480306pt;}
.y29e{bottom:516.865594pt;}
.y14e{bottom:518.279355pt;}
.y21d{bottom:518.653564pt;}
.y130{bottom:518.653605pt;}
.y1c{bottom:524.093333pt;}
.y34{bottom:525.521200pt;}
.y29d{bottom:530.193594pt;}
.y92{bottom:532.146932pt;}
.y6f{bottom:532.146973pt;}
.y210{bottom:532.712646pt;}
.y5{bottom:533.089333pt;}
.y14d{bottom:534.916688pt;}
.y103{bottom:535.320231pt;}
.y12f{bottom:535.320272pt;}
.y263{bottom:539.867593pt;}
.y33{bottom:542.187866pt;}
.y29c{bottom:543.521594pt;}
.y91{bottom:548.813599pt;}
.y6e{bottom:548.813639pt;}
.y178{bottom:551.052287pt;}
.y14c{bottom:551.554021pt;}
.y102{bottom:551.986898pt;}
.y12e{bottom:551.986938pt;}
.y170{bottom:552.110921pt;}
.y20a{bottom:555.398943pt;}
.y29b{bottom:556.849594pt;}
.y32{bottom:558.854533pt;}
.ye{bottom:561.706667pt;}
.y90{bottom:565.480265pt;}
.y6d{bottom:565.480306pt;}
.y262{bottom:566.534927pt;}
.y177{bottom:567.718953pt;}
.y14b{bottom:568.191355pt;}
.y101{bottom:568.653564pt;}
.y12d{bottom:568.653605pt;}
.y209{bottom:568.726943pt;}
.y16f{bottom:568.777588pt;}
.y29a{bottom:570.177594pt;}
.y31{bottom:575.521200pt;}
.y261{bottom:579.862927pt;}
.y8f{bottom:582.146932pt;}
.y6c{bottom:582.146973pt;}
.y299{bottom:583.505594pt;}
.y176{bottom:584.385620pt;}
.y14a{bottom:584.828688pt;}
.y100{bottom:585.320231pt;}
.y12c{bottom:585.320272pt;}
.y16e{bottom:585.444255pt;}
.y30{bottom:592.187866pt;}
.y260{bottom:593.190927pt;}
.y298{bottom:596.833594pt;}
.y8e{bottom:598.813599pt;}
.y6b{bottom:598.813639pt;}
.y175{bottom:601.052287pt;}
.y149{bottom:601.466021pt;}
.yff{bottom:601.986898pt;}
.y12b{bottom:601.986938pt;}
.y16d{bottom:602.110921pt;}
.y25f{bottom:606.518927pt;}
.y205{bottom:607.124276pt;}
.y2f{bottom:608.854533pt;}
.y297{bottom:610.161594pt;}
.y8d{bottom:615.480265pt;}
.y6a{bottom:615.480306pt;}
.y174{bottom:617.718953pt;}
.y148{bottom:618.103355pt;}
.yfe{bottom:618.653564pt;}
.y12a{bottom:618.653605pt;}
.y16c{bottom:618.777588pt;}
.y25e{bottom:619.846927pt;}
.y204{bottom:620.452276pt;}
.y208{bottom:620.463610pt;}
.y296{bottom:623.489594pt;}
.y2e{bottom:625.521200pt;}
.y8c{bottom:632.146932pt;}
.y69{bottom:632.146973pt;}
.y25d{bottom:633.174927pt;}
.y203{bottom:633.780276pt;}
.y207{bottom:633.791610pt;}
.y173{bottom:634.385620pt;}
.y147{bottom:634.740688pt;}
.yfd{bottom:635.320231pt;}
.y129{bottom:635.320272pt;}
.y16b{bottom:635.444255pt;}
.y295{bottom:636.817594pt;}
.y2d{bottom:642.187866pt;}
.y202{bottom:647.108276pt;}
.y206{bottom:647.119610pt;}
.y8b{bottom:648.813599pt;}
.y68{bottom:648.813639pt;}
.y294{bottom:650.145594pt;}
.y172{bottom:651.052287pt;}
.y146{bottom:651.378021pt;}
.yfc{bottom:651.986898pt;}
.y128{bottom:651.986938pt;}
.y16a{bottom:652.110921pt;}
.y2c{bottom:658.854574pt;}
.y25c{bottom:659.841593pt;}
.y293{bottom:663.473594pt;}
.y8a{bottom:665.480265pt;}
.y67{bottom:665.480306pt;}
.y145{bottom:668.015355pt;}
.yfb{bottom:668.653564pt;}
.y127{bottom:668.653605pt;}
.y169{bottom:668.777751pt;}
.y2b{bottom:675.521240pt;}
.y292{bottom:676.801594pt;}
.y1c2{bottom:678.285319pt;}
.y89{bottom:682.146932pt;}
.y66{bottom:682.146973pt;}
.y171{bottom:684.385579pt;}
.y144{bottom:684.652688pt;}
.yfa{bottom:685.320231pt;}
.y23d{bottom:685.320272pt;}
.y168{bottom:685.444417pt;}
.y25b{bottom:689.919634pt;}
.y1c5{bottom:689.999105pt;}
.y1cd{bottom:690.090902pt;}
.y1d6{bottom:690.125570pt;}
.y291{bottom:690.129594pt;}
.y4{bottom:691.756000pt;}
.y2a{bottom:692.187907pt;}
.y65{bottom:698.813639pt;}
.y1ef{bottom:700.010078pt;}
.y1f5{bottom:700.066194pt;}
.y201{bottom:700.227076pt;}
.y143{bottom:701.290021pt;}
.yf9{bottom:701.986898pt;}
.y23c{bottom:701.986938pt;}
.y25a{bottom:703.247634pt;}
.y290{bottom:703.457594pt;}
.y29{bottom:708.854574pt;}
.y142{bottom:714.618021pt;}
.y64{bottom:715.480306pt;}
.y259{bottom:716.575634pt;}
.y28f{bottom:716.785594pt;}
.yf8{bottom:718.653564pt;}
.y23b{bottom:718.653605pt;}
.y1ee{bottom:721.372330pt;}
.y1f4{bottom:721.428446pt;}
.y200{bottom:721.585587pt;}
.y1c6{bottom:722.179036pt;}
.y1d7{bottom:722.213623pt;}
.y1ce{bottom:722.246908pt;}
.y13{bottom:725.040000pt;}
.y17c{bottom:728.309977pt;}
.y2ce{bottom:730.073620pt;}
.y28e{bottom:730.113594pt;}
.y141{bottom:731.255355pt;}
.y63{bottom:732.146973pt;}
.yf7{bottom:735.320231pt;}
.y126{bottom:735.320272pt;}
.y17b{bottom:740.894360pt;}
.y1ed{bottom:742.734582pt;}
.y1f3{bottom:742.790698pt;}
.y1ff{bottom:742.947839pt;}
.y258{bottom:743.242967pt;}
.y2cd{bottom:743.401620pt;}
.y28d{bottom:743.441594pt;}
.y140{bottom:747.892688pt;}
.y28{bottom:748.128136pt;}
.y62{bottom:748.813639pt;}
.yf6{bottom:751.986898pt;}
.y125{bottom:751.986938pt;}
.y17a{bottom:754.222360pt;}
.y257{bottom:756.570967pt;}
.y2cc{bottom:756.729620pt;}
.y2de{bottom:756.729622pt;}
.y28c{bottom:756.769594pt;}
.y27{bottom:761.456136pt;}
.y1ec{bottom:764.149210pt;}
.y1f2{bottom:764.205326pt;}
.y1fe{bottom:764.358726pt;}
.y13f{bottom:764.530021pt;}
.y61{bottom:765.480306pt;}
.yf5{bottom:768.653564pt;}
.y124{bottom:768.653605pt;}
.y256{bottom:769.898967pt;}
.y2cb{bottom:770.057620pt;}
.y2dd{bottom:770.057622pt;}
.y28b{bottom:770.097594pt;}
.y179{bottom:771.335693pt;}
.y1cf{bottom:777.849609pt;}
.y13e{bottom:781.167355pt;}
.y60{bottom:782.146973pt;}
.y1d0{bottom:783.132326pt;}
.y1c7{bottom:783.152262pt;}
.y255{bottom:783.226967pt;}
.y2ca{bottom:783.385620pt;}
.y28a{bottom:783.425594pt;}
.y1d8{bottom:783.853760pt;}
.yf4{bottom:785.320231pt;}
.y123{bottom:785.320272pt;}
.y1eb{bottom:785.511462pt;}
.y1f1{bottom:785.567578pt;}
.y1fd{bottom:785.720978pt;}
.y1d1{bottom:788.415042pt;}
.y1c8{bottom:788.439266pt;}
.y1d9{bottom:789.125502pt;}
.y1d2{bottom:793.697759pt;}
.y1c9{bottom:793.726269pt;}
.y1da{bottom:794.397245pt;}
.y186{bottom:795.786913pt;}
.y254{bottom:796.554967pt;}
.y2c9{bottom:796.713620pt;}
.y289{bottom:796.753594pt;}
.y2dc{bottom:796.804287pt;}
.y13d{bottom:797.804688pt;}
.y5f{bottom:798.813639pt;}
.y1ca{bottom:799.013272pt;}
.y26{bottom:799.322835pt;}
.y1db{bottom:799.668988pt;}
.y1d4{bottom:801.114659pt;}
.yf3{bottom:801.986898pt;}
.y122{bottom:801.986938pt;}
.y3{bottom:805.081333pt;}
.y1cb{bottom:806.433594pt;}
.y1d3{bottom:806.435059pt;}
.y1ea{bottom:806.802632pt;}
.y1f0{bottom:806.858748pt;}
.y1fc{bottom:807.012148pt;}
.y1dc{bottom:807.064372pt;}
.y2c8{bottom:810.041620pt;}
.y288{bottom:810.081594pt;}
.y2db{bottom:810.132287pt;}
.y185{bottom:812.492246pt;}
.y13c{bottom:814.442021pt;}
.y5e{bottom:815.480306pt;}
.y25{bottom:815.989502pt;}
.y1dd{bottom:816.637695pt;}
.yf2{bottom:818.653564pt;}
.y121{bottom:818.653605pt;}
.y253{bottom:823.222301pt;}
.y2c7{bottom:823.369620pt;}
.y287{bottom:823.409594pt;}
.y2da{bottom:823.460287pt;}
.y184{bottom:829.129579pt;}
.y1a9{bottom:830.814941pt;}
.y13b{bottom:831.079355pt;}
.y1b1{bottom:831.173584pt;}
.y1ba{bottom:831.177572pt;}
.y5d{bottom:832.146973pt;}
.y24{bottom:832.656169pt;}
.yf1{bottom:835.320231pt;}
.y120{bottom:835.320272pt;}
.y252{bottom:836.550301pt;}
.y2c6{bottom:836.697620pt;}
.y286{bottom:836.737594pt;}
.y2d9{bottom:836.788287pt;}
.y1aa{bottom:840.683105pt;}
.y1b2{bottom:840.837565pt;}
.y1bb{bottom:840.845703pt;}
.y183{bottom:845.766913pt;}
.y13a{bottom:847.716688pt;}
.y5c{bottom:848.813639pt;}
.y1e9{bottom:849.740384pt;}
.y251{bottom:849.878301pt;}
.y1fb{bottom:849.890041pt;}
.y2c5{bottom:850.025620pt;}
.y285{bottom:850.065594pt;}
.y1e3{bottom:850.110764pt;}
.y2d8{bottom:850.116287pt;}
.yf0{bottom:851.986898pt;}
.y11f{bottom:851.986938pt;}
.y2{bottom:857.092000pt;}
.y182{bottom:862.404246pt;}
.y250{bottom:863.206301pt;}
.y2c4{bottom:863.353620pt;}
.y284{bottom:863.393594pt;}
.y2d7{bottom:863.444287pt;}
.y139{bottom:864.354021pt;}
.y5b{bottom:865.480306pt;}
.yef{bottom:868.653564pt;}
.y11e{bottom:868.653605pt;}
.y1e8{bottom:871.102636pt;}
.y1fa{bottom:871.252293pt;}
.y1e2{bottom:871.469275pt;}
.y1ab{bottom:872.251709pt;}
.y23{bottom:872.377441pt;}
.y1b3{bottom:872.875488pt;}
.y1bc{bottom:872.898438pt;}
.y24f{bottom:876.534301pt;}
.y2c3{bottom:876.681620pt;}
.y283{bottom:876.721594pt;}
.y2d6{bottom:876.772287pt;}
.y181{bottom:879.041579pt;}
.y1{bottom:879.748000pt;}
.y5a{bottom:882.146973pt;}
.yee{bottom:885.320231pt;}
.y11d{bottom:885.320272pt;}
.yd1{bottom:889.012306pt;}
.y138{bottom:889.321355pt;}
.y24e{bottom:889.862301pt;}
.y2c2{bottom:890.009620pt;}
.y282{bottom:890.049594pt;}
.y2d5{bottom:890.100287pt;}
.y1e7{bottom:892.464888pt;}
.y1f9{bottom:892.614545pt;}
.y1e1{bottom:892.831527pt;}
.y22{bottom:896.377441pt;}
.y59{bottom:898.813639pt;}
.yed{bottom:901.986898pt;}
.y11c{bottom:901.986938pt;}
.yd0{bottom:902.340306pt;}
.y24d{bottom:903.190301pt;}
.y2c1{bottom:903.337620pt;}
.y281{bottom:903.377594pt;}
.y2d4{bottom:903.428287pt;}
.y180{bottom:903.634913pt;}
.y137{bottom:911.024688pt;}
.y1e6{bottom:913.875776pt;}
.y1f8{bottom:914.029174pt;}
.y1e0{bottom:914.246156pt;}
.y58{bottom:915.480306pt;}
.ycf{bottom:915.668306pt;}
.y24c{bottom:916.518301pt;}
.y2c0{bottom:916.665620pt;}
.y280{bottom:916.705594pt;}
.y2d3{bottom:916.756287pt;}
.yec{bottom:918.653564pt;}
.y11b{bottom:918.653605pt;}
.y17f{bottom:925.338246pt;}
.yce{bottom:928.996306pt;}
.y1b4{bottom:929.118896pt;}
.y2bf{bottom:929.993620pt;}
.y27f{bottom:930.033594pt;}
.y2d2{bottom:930.084287pt;}
.y57{bottom:932.146973pt;}
.y136{bottom:932.988688pt;}
.y1ac{bottom:933.947754pt;}
.y1b5{bottom:934.382580pt;}
.y1bd{bottom:934.468506pt;}
.y1e5{bottom:935.238028pt;}
.yeb{bottom:935.320231pt;}
.y11a{bottom:935.320272pt;}
.y1f7{bottom:935.391426pt;}
.y1df{bottom:935.608408pt;}
.y1ad{bottom:939.322205pt;}
.y1b6{bottom:939.646264pt;}
.y1be{bottom:939.734419pt;}
.ycd{bottom:942.324306pt;}
.y24b{bottom:943.185634pt;}
.y2be{bottom:943.321620pt;}
.y27e{bottom:943.361594pt;}
.y2d1{bottom:943.412287pt;}
.y1ae{bottom:944.696656pt;}
.y1b7{bottom:944.909948pt;}
.y1bf{bottom:945.000331pt;}
.y17e{bottom:947.302246pt;}
.y1af{bottom:950.071107pt;}
.y1c0{bottom:950.266244pt;}
.yea{bottom:951.986898pt;}
.y119{bottom:951.986938pt;}
.y1b9{bottom:952.295043pt;}
.ycc{bottom:955.652306pt;}
.y24a{bottom:956.513634pt;}
.y1e4{bottom:956.529197pt;}
.y21{bottom:956.561849pt;}
.y2bd{bottom:956.649620pt;}
.y1f6{bottom:956.682595pt;}
.y27d{bottom:956.689594pt;}
.y2d0{bottom:956.740287pt;}
.y1de{bottom:956.899577pt;}
.y1b8{bottom:957.596110pt;}
.y1b0{bottom:957.615072pt;}
.y1c1{bottom:957.654785pt;}
.y56{bottom:965.480306pt;}
.ye9{bottom:968.653564pt;}
.y118{bottom:968.653605pt;}
.ycb{bottom:968.980306pt;}
.y17d{bottom:968.984689pt;}
.y249{bottom:969.841634pt;}
.y2bc{bottom:969.977620pt;}
.y27c{bottom:970.017594pt;}
.y2cf{bottom:970.068287pt;}
.y20{bottom:986.299161pt;}
.y1f{bottom:1001.406494pt;}
.y55{bottom:1002.206543pt;}
.h27{height:10.830310pt;}
.h2a{height:10.834581pt;}
.h37{height:10.847006pt;}
.h33{height:10.869525pt;}
.h2f{height:10.878067pt;}
.h3a{height:10.894374pt;}
.h23{height:11.057835pt;}
.h28{height:11.919010pt;}
.h2b{height:11.924058pt;}
.h38{height:11.937259pt;}
.h35{height:11.962108pt;}
.h31{height:11.971814pt;}
.h25{height:12.169830pt;}
.h26{height:15.457910pt;}
.h29{height:15.464520pt;}
.h36{height:15.482016pt;}
.h34{height:15.483960pt;}
.h32{height:15.514286pt;}
.h2e{height:15.526728pt;}
.h22{height:15.783336pt;}
.h30{height:15.803554pt;}
.h24{height:15.813274pt;}
.h17{height:22.403733pt;}
.h4{height:29.333333pt;}
.hb{height:30.080000pt;}
.h15{height:32.005333pt;}
.h16{height:32.760417pt;}
.h39{height:35.568000pt;}
.h2d{height:36.288000pt;}
.h12{height:37.653333pt;}
.hd{height:39.712000pt;}
.h1e{height:40.165333pt;}
.h1f{height:40.470367pt;}
.h20{height:46.376000pt;}
.h21{height:46.648000pt;}
.h14{height:47.253333pt;}
.h13{height:47.690504pt;}
.h1d{height:47.690585pt;}
.h19{height:47.690667pt;}
.h3b{height:47.690829pt;}
.hc{height:48.766452pt;}
.he{height:49.298667pt;}
.h3{height:51.916667pt;}
.h1a{height:52.448000pt;}
.h11{height:52.746667pt;}
.h1b{height:54.560000pt;}
.h1c{height:54.560081pt;}
.h10{height:57.658667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h18{height:63.296000pt;}
.hf{height:75.605333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h2c{height:299.194661pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:657.637329pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x27{left:4.036804pt;}
.xc{left:68.031469pt;}
.x11{left:69.996800pt;}
.x2e{left:71.810267pt;}
.xd{left:75.717199pt;}
.x15{left:77.342324pt;}
.x2f{left:81.664536pt;}
.x12{left:83.151469pt;}
.x28{left:84.591466pt;}
.xe{left:86.929867pt;}
.x3c{left:90.709469pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x33{left:144.203884pt;}
.x19{left:152.678802pt;}
.x5{left:154.760000pt;}
.x32{left:168.700795pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x14{left:196.675863pt;}
.x6{left:197.760000pt;}
.x39{left:238.109457pt;}
.x29{left:239.179606pt;}
.x1a{left:240.546265pt;}
.x1c{left:251.947591pt;}
.x1b{left:258.086263pt;}
.x18{left:271.616424pt;}
.x17{left:287.857076pt;}
.x1f{left:297.915609pt;}
.x30{left:302.402816pt;}
.x2a{left:303.434392pt;}
.x3b{left:328.534144pt;}
.x16{left:336.172995pt;}
.x34{left:352.363216pt;}
.x1d{left:371.739583pt;}
.xf{left:408.188924pt;}
.x13{left:423.313208pt;}
.x10{left:427.081599pt;}
.x3a{left:431.270809pt;}
.x35{left:446.112549pt;}
.x38{left:454.113880pt;}
.x2b{left:456.272949pt;}
.x1e{left:457.379720pt;}
.x2c{left:467.209066pt;}
.x21{left:472.338257pt;}
.x20{left:474.290405pt;}
.x24{left:518.765055pt;}
.x31{left:523.754656pt;}
.x2d{left:524.717066pt;}
.x36{left:539.986549pt;}
.x22{left:592.619751pt;}
.x37{left:633.735883pt;}
.xa{left:647.307210pt;}
.xb{left:671.546549pt;}
.x23{left:678.297078pt;}
.x26{left:688.795573pt;}
.x25{left:695.215576pt;}
}




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