
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_513ad065d26e.woff")format("woff");}.ff1{font-family:ff1;line-height:0.901000;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("fonts/font_0001_6afba77cf39c.woff")format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_00196de03af3.woff")format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_c363af7b001b.woff")format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_d90e5f38c885.woff")format("woff");}.ff5{font-family:ff5;line-height:0.901000;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("fonts/font_0005_d84cdecf1311.woff")format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_21ab4558d107.woff")format("woff");}.ff7{font-family:ff7;line-height:0.927000;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("fonts/font_0007_4010eae32e12.woff")format("woff");}.ff8{font-family:ff8;line-height:0.988000;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("fonts/font_0008_83d60489d275.woff")format("woff");}.ff9{font-family:ff9;line-height:0.901000;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("fonts/font_0009_9635a994db5d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.904000;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("fonts/font_0010_16abc025a061.woff")format("woff");}.ffb{font-family:ffb;line-height:0.932000;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("fonts/font_0011_07581424d9db.woff")format("woff");}.ffc{font-family:ffc;line-height:0.917000;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("fonts/font_0012_076f70374ef9.woff")format("woff");}.ffd{font-family:ffd;line-height:0.941895;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("fonts/font_0013_faedeeb50f60.woff")format("woff");}.ffe{font-family:ffe;line-height:0.772949;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("fonts/font_0014_0d493556f5ae.woff")format("woff");}.fff{font-family:fff;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_0a1ddee95d45.woff")format("woff");}.ff10{font-family:ff10;line-height:0.941895;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("fonts/font_0016_cea94e72e760.woff")format("woff");}.ff11{font-family:ff11;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_48cb75965c64.woff")format("woff");}.ff12{font-family:ff12;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_006b3f8c2da0.woff")format("woff");}.ff13{font-family:ff13;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-15.573043px;}
.v2{vertical-align:-8.964000px;}
.vc{vertical-align:-2.988000px;}
.v7{vertical-align:-1.526554px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.814000px;}
.vb{vertical-align:7.500000px;}
.vd{vertical-align:9.567192px;}
.v3{vertical-align:14.778000px;}
.v9{vertical-align:16.932000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:25.457203px;}
.v4{vertical-align:36.474000px;}
.va{vertical-align:38.160000px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000158px;}
.lsbb{letter-spacing:0.000300px;}
.ls38{letter-spacing:0.000538px;}
.ls0{letter-spacing:0.001002px;}
.ls5b{letter-spacing:0.001084px;}
.lsd{letter-spacing:0.001698px;}
.ls3f{letter-spacing:0.002015px;}
.ls64{letter-spacing:0.002172px;}
.lscc{letter-spacing:0.002400px;}
.lsb7{letter-spacing:0.002481px;}
.ls93{letter-spacing:0.002800px;}
.ls6{letter-spacing:0.003269px;}
.ls7e{letter-spacing:0.003652px;}
.ls9e{letter-spacing:0.004893px;}
.lsb3{letter-spacing:0.004896px;}
.ls12{letter-spacing:0.006767px;}
.ls5a{letter-spacing:1.659333px;}
.ls14{letter-spacing:1.665333px;}
.ls7{letter-spacing:2.137689px;}
.ls5{letter-spacing:2.143689px;}
.ls2c{letter-spacing:2.144174px;}
.ls1a{letter-spacing:2.144222px;}
.lsaa{letter-spacing:2.150174px;}
.ls56{letter-spacing:2.150222px;}
.ls70{letter-spacing:2.984319px;}
.ls77{letter-spacing:2.986851px;}
.lsf{letter-spacing:2.993535px;}
.lsb4{letter-spacing:3.200086px;}
.lsb5{letter-spacing:3.206086px;}
.ls25{letter-spacing:3.320172px;}
.ls30{letter-spacing:3.326172px;}
.ls19{letter-spacing:3.445010px;}
.ls7f{letter-spacing:4.275333px;}
.lsb9{letter-spacing:4.276379px;}
.ls18{letter-spacing:4.281333px;}
.ls1f{letter-spacing:4.490066px;}
.ls57{letter-spacing:4.492843px;}
.ls5c{letter-spacing:5.286444px;}
.ls33{letter-spacing:5.562136px;}
.ls3{letter-spacing:6.240990px;}
.ls32{letter-spacing:6.246990px;}
.ls1e{letter-spacing:6.302066px;}
.ls2b{letter-spacing:6.575378px;}
.ls29{letter-spacing:6.581378px;}
.ls28{letter-spacing:6.764108px;}
.ls4c{letter-spacing:7.825213px;}
.ls1c{letter-spacing:8.024066px;}
.ls1d{letter-spacing:8.030066px;}
.ls3b{letter-spacing:8.297139px;}
.ls43{letter-spacing:8.298065px;}
.ls2e{letter-spacing:8.298073px;}
.ls26{letter-spacing:8.303139px;}
.ls3d{letter-spacing:8.304065px;}
.ls22{letter-spacing:8.304073px;}
.ls2{letter-spacing:9.420479px;}
.ls4b{letter-spacing:9.962338px;}
.lsc0{letter-spacing:14.702338px;}
.ls82{letter-spacing:16.413223px;}
.lsc3{letter-spacing:16.453084px;}
.ls44{letter-spacing:16.600893px;}
.ls3a{letter-spacing:16.601607px;}
.ls24{letter-spacing:16.602538px;}
.ls4d{letter-spacing:16.607607px;}
.ls45{letter-spacing:16.608538px;}
.ls9c{letter-spacing:16.854538px;}
.ls36{letter-spacing:17.219607px;}
.ls92{letter-spacing:17.496538px;}
.lsc7{letter-spacing:17.681607px;}
.lsa1{letter-spacing:17.718538px;}
.lsbd{letter-spacing:17.816086px;}
.ls54{letter-spacing:18.074823px;}
.ls46{letter-spacing:18.132538px;}
.lsac{letter-spacing:18.146338px;}
.lsbe{letter-spacing:18.517084px;}
.lsc9{letter-spacing:18.764400px;}
.lsb0{letter-spacing:18.887607px;}
.ls97{letter-spacing:19.114200px;}
.lsd2{letter-spacing:19.203333px;}
.lsa7{letter-spacing:19.308538px;}
.ls9f{letter-spacing:19.593772px;}
.lsd4{letter-spacing:19.622400px;}
.ls4{letter-spacing:19.926538px;}
.lsa4{letter-spacing:20.550538px;}
.lsa0{letter-spacing:20.709772px;}
.ls8b{letter-spacing:20.814538px;}
.lsbf{letter-spacing:20.940990px;}
.lsad{letter-spacing:21.088843px;}
.ls6d{letter-spacing:21.092066px;}
.lsab{letter-spacing:21.094843px;}
.ls6c{letter-spacing:21.098066px;}
.lsd9{letter-spacing:21.318990px;}
.lsb6{letter-spacing:21.385084px;}
.lsb{letter-spacing:21.386685px;}
.ls8{letter-spacing:21.387269px;}
.ls42{letter-spacing:21.388893px;}
.ls51{letter-spacing:21.388896px;}
.ls21{letter-spacing:21.392685px;}
.lsd6{letter-spacing:21.684538px;}
.lsdb{letter-spacing:21.690990px;}
.ls73{letter-spacing:21.876990px;}
.ls11{letter-spacing:21.957299px;}
.lsc5{letter-spacing:22.046086px;}
.lsda{letter-spacing:22.158990px;}
.ls74{letter-spacing:22.164136px;}
.ls76{letter-spacing:22.170136px;}
.ls88{letter-spacing:22.272538px;}
.ls9b{letter-spacing:22.416136px;}
.ls9d{letter-spacing:22.536990px;}
.lscb{letter-spacing:22.596990px;}
.ls6e{letter-spacing:22.608990px;}
.lsc8{letter-spacing:22.620990px;}
.ls69{letter-spacing:22.650538px;}
.ls4a{letter-spacing:22.650990px;}
.lsc2{letter-spacing:22.692990px;}
.ls31{letter-spacing:22.842990px;}
.ls39{letter-spacing:22.848990px;}
.lsd8{letter-spacing:22.903213px;}
.ls2a{letter-spacing:22.904066px;}
.ls91{letter-spacing:23.058136px;}
.lsb2{letter-spacing:23.126086px;}
.lsc4{letter-spacing:23.246086px;}
.ls5e{letter-spacing:23.288338px;}
.ls60{letter-spacing:23.288400px;}
.ls35{letter-spacing:23.454990px;}
.lsa3{letter-spacing:23.541772px;}
.ls99{letter-spacing:23.609607px;}
.lsa6{letter-spacing:23.800843px;}
.ls65{letter-spacing:24.060990px;}
.lsc1{letter-spacing:24.120479px;}
.ls7b{letter-spacing:24.138444px;}
.lsbc{letter-spacing:24.212086px;}
.ls53{letter-spacing:24.318990px;}
.ls55{letter-spacing:24.324990px;}
.ls13{letter-spacing:24.371535px;}
.ls47{letter-spacing:24.378990px;}
.ls80{letter-spacing:24.447333px;}
.lsba{letter-spacing:24.590086px;}
.ls23{letter-spacing:24.632066px;}
.ls96{letter-spacing:24.942990px;}
.ls8d{letter-spacing:25.122538px;}
.lsaf{letter-spacing:25.128990px;}
.lsdd{letter-spacing:25.170990px;}
.ls83{letter-spacing:25.272136px;}
.ls62{letter-spacing:25.626990px;}
.ls71{letter-spacing:25.652066px;}
.ls5d{letter-spacing:25.659333px;}
.ls59{letter-spacing:25.665333px;}
.ls7c{letter-spacing:25.695333px;}
.ls58{letter-spacing:25.876843px;}
.ls2d{letter-spacing:25.880066px;}
.ls75{letter-spacing:25.956990px;}
.ls85{letter-spacing:26.016538px;}
.lscf{letter-spacing:26.022479px;}
.ls72{letter-spacing:26.064990px;}
.ls63{letter-spacing:26.150823px;}
.ls6f{letter-spacing:26.166990px;}
.ls10{letter-spacing:26.258685px;}
.ls40{letter-spacing:26.270823px;}
.ls8a{letter-spacing:26.370136px;}
.ls50{letter-spacing:26.388990px;}
.lsc6{letter-spacing:26.430479px;}
.ls95{letter-spacing:26.508538px;}
.lsce{letter-spacing:26.528086px;}
.ls67{letter-spacing:26.548851px;}
.lsa5{letter-spacing:26.730990px;}
.ls81{letter-spacing:26.808444px;}
.lsa9{letter-spacing:26.898538px;}
.ls48{letter-spacing:26.946136px;}
.ls49{letter-spacing:26.952136px;}
.ls68{letter-spacing:27.146066px;}
.lsd5{letter-spacing:27.240136px;}
.ls2f{letter-spacing:27.330990px;}
.lsb1{letter-spacing:27.540990px;}
.ls15{letter-spacing:27.624990px;}
.ls27{letter-spacing:27.630990px;}
.ls7d{letter-spacing:27.633333px;}
.lsca{letter-spacing:27.726990px;}
.ls87{letter-spacing:27.834136px;}
.ls6b{letter-spacing:27.918990px;}
.ls6a{letter-spacing:27.924990px;}
.ls37{letter-spacing:27.966990px;}
.lsd0{letter-spacing:28.092479px;}
.ls90{letter-spacing:28.746538px;}
.lsdc{letter-spacing:28.837213px;}
.ls89{letter-spacing:29.091333px;}
.ls52{letter-spacing:29.215213px;}
.ls3c{letter-spacing:29.414066px;}
.ls5f{letter-spacing:29.532990px;}
.lscd{letter-spacing:29.562990px;}
.ls4e{letter-spacing:29.682073px;}
.ls4f{letter-spacing:29.688073px;}
.ls98{letter-spacing:29.856990px;}
.ls20{letter-spacing:29.884200px;}
.ls9{letter-spacing:29.889030px;}
.ls34{letter-spacing:29.890200px;}
.lsd3{letter-spacing:30.084990px;}
.ls9a{letter-spacing:30.372990px;}
.ls8c{letter-spacing:30.684136px;}
.lsb8{letter-spacing:30.804479px;}
.ls86{letter-spacing:31.017333px;}
.ls61{letter-spacing:31.320990px;}
.lsa8{letter-spacing:31.396843px;}
.ls16{letter-spacing:31.408797px;}
.ls84{letter-spacing:31.584136px;}
.lse{letter-spacing:31.674990px;}
.lsa{letter-spacing:31.908479px;}
.ls94{letter-spacing:32.064136px;}
.lsc{letter-spacing:32.496990px;}
.ls41{letter-spacing:32.508990px;}
.ls3e{letter-spacing:32.514990px;}
.ls79{letter-spacing:33.234538px;}
.lsae{letter-spacing:33.600990px;}
.ls8f{letter-spacing:34.314136px;}
.ls8e{letter-spacing:35.180066px;}
.ls66{letter-spacing:35.718990px;}
.lsa2{letter-spacing:36.192990px;}
.ls7a{letter-spacing:37.724066px;}
.ls78{letter-spacing:37.730066px;}
.lsd7{letter-spacing:41.367333px;}
.ls17{letter-spacing:42.564990px;}
.lsd1{letter-spacing:703.077788px;}
.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;}
}
.ws84{word-spacing:-59.775600px;}
.ws67{word-spacing:-38.937826px;}
.ws79{word-spacing:-31.633157px;}
.ws64{word-spacing:-29.015076px;}
.ws6a{word-spacing:-28.995690px;}
.ws65{word-spacing:-28.955301px;}
.ws1ad{word-spacing:-25.189366px;}
.ws131{word-spacing:-21.716057px;}
.ws1c2{word-spacing:-21.538727px;}
.wsfa{word-spacing:-21.339828px;}
.ws129{word-spacing:-19.374740px;}
.ws1f6{word-spacing:-19.270264px;}
.ws99{word-spacing:-17.542347px;}
.ws6b{word-spacing:-16.605662px;}
.ws1b1{word-spacing:-16.142841px;}
.ws3{word-spacing:-15.359443px;}
.ws1a1{word-spacing:-15.302592px;}
.ws28{word-spacing:-15.278643px;}
.ws132{word-spacing:-15.089229px;}
.ws133{word-spacing:-15.076686px;}
.wsbb{word-spacing:-14.999776px;}
.wsb9{word-spacing:-14.982873px;}
.ws1fd{word-spacing:-14.507177px;}
.wsc4{word-spacing:-13.722873px;}
.ws1c4{word-spacing:-13.397088px;}
.ws1c0{word-spacing:-13.382666px;}
.ws20d{word-spacing:-12.996524px;}
.ws184{word-spacing:-12.954207px;}
.ws185{word-spacing:-12.945224px;}
.wsc7{word-spacing:-12.518926px;}
.wscd{word-spacing:-12.383562px;}
.ws18c{word-spacing:-12.105190px;}
.ws7f{word-spacing:-12.041402px;}
.ws80{word-spacing:-12.040291px;}
.wsce{word-spacing:-11.854486px;}
.wsd0{word-spacing:-11.852666px;}
.ws1d3{word-spacing:-11.681088px;}
.wsec{word-spacing:-11.638486px;}
.wsee{word-spacing:-11.624666px;}
.ws1e9{word-spacing:-10.960291px;}
.ws141{word-spacing:-10.835562px;}
.ws186{word-spacing:-10.798167px;}
.wse9{word-spacing:-10.535088px;}
.ws1cd{word-spacing:-10.496666px;}
.ws1a5{word-spacing:-10.388666px;}
.ws1c9{word-spacing:-10.358666px;}
.ws1c6{word-spacing:-10.127562px;}
.ws153{word-spacing:-9.944666px;}
.ws211{word-spacing:-9.714672px;}
.ws15b{word-spacing:-9.537190px;}
.wsc2{word-spacing:-9.496289px;}
.ws11d{word-spacing:-9.324873px;}
.wsa9{word-spacing:-8.941486px;}
.wse7{word-spacing:-8.800289px;}
.ws1fc{word-spacing:-8.703098px;}
.ws145{word-spacing:-8.621776px;}
.ws164{word-spacing:-8.577190px;}
.ws1d1{word-spacing:-8.489562px;}
.ws143{word-spacing:-8.381562px;}
.ws1b2{word-spacing:-8.077014px;}
.ws1ea{word-spacing:-8.068291px;}
.ws1b3{word-spacing:-8.065827px;}
.ws183{word-spacing:-8.061453px;}
.ws181{word-spacing:-8.058482px;}
.ws125{word-spacing:-7.770873px;}
.ws72{word-spacing:-7.555636px;}
.wsac{word-spacing:-7.452272px;}
.ws159{word-spacing:-7.112666px;}
.ws17a{word-spacing:-6.849453px;}
.wsca{word-spacing:-6.557562px;}
.ws187{word-spacing:-6.477104px;}
.ws14f{word-spacing:-6.449562px;}
.ws12e{word-spacing:-6.208962px;}
.wsab{word-spacing:-5.963059px;}
.wsaa{word-spacing:-5.956854px;}
.ws1a6{word-spacing:-5.783562px;}
.ws20c{word-spacing:-5.748524px;}
.ws20b{word-spacing:-5.736672px;}
.ws123{word-spacing:-5.220873px;}
.ws188{word-spacing:-5.115190px;}
.ws16a{word-spacing:-4.596482px;}
.ws16c{word-spacing:-4.587453px;}
.ws1fb{word-spacing:-4.354569px;}
.ws1fa{word-spacing:-4.348529px;}
.ws1aa{word-spacing:-4.136666px;}
.ws1a2{word-spacing:-3.789773px;}
.ws1a3{word-spacing:-3.335478px;}
.ws10e{word-spacing:-3.156152px;}
.ws106{word-spacing:-3.096376px;}
.wsb8{word-spacing:-2.976825px;}
.wsba{word-spacing:-2.954108px;}
.wsbc{word-spacing:-2.917049px;}
.ws12c{word-spacing:-2.844873px;}
.ws1e5{word-spacing:-2.737722px;}
.ws223{word-spacing:-2.618171px;}
.ws3c{word-spacing:-2.498620px;}
.ws1d9{word-spacing:-2.438844px;}
.wsaf{word-spacing:-2.426177px;}
.ws12{word-spacing:-2.394029px;}
.wsf3{word-spacing:-2.386289px;}
.wsf4{word-spacing:-2.319293px;}
.ws45{word-spacing:-2.259518px;}
.wsc8{word-spacing:-2.199742px;}
.ws1e0{word-spacing:-2.080191px;}
.ws1da{word-spacing:-2.020415px;}
.ws238{word-spacing:-2.017440px;}
.wsa{word-spacing:-1.963642px;}
.wsf7{word-spacing:-1.960640px;}
.ws1e4{word-spacing:-1.900864px;}
.ws103{word-spacing:-1.841088px;}
.ws1d8{word-spacing:-1.781313px;}
.wsb7{word-spacing:-1.722873px;}
.wsf5{word-spacing:-1.721537px;}
.wsc5{word-spacing:-1.694108px;}
.ws1ff{word-spacing:-1.682885px;}
.wsc3{word-spacing:-1.680986px;}
.wsc6{word-spacing:-1.661762px;}
.ws158{word-spacing:-1.655562px;}
.ws246{word-spacing:-1.587053px;}
.ws20a{word-spacing:-1.542210px;}
.wsc{word-spacing:-1.533254px;}
.ws2f{word-spacing:-1.482435px;}
.ws22a{word-spacing:-1.422659px;}
.ws1c1{word-spacing:-1.362884px;}
.ws1c3{word-spacing:-1.352108px;}
.ws206{word-spacing:-1.303108px;}
.ws21a{word-spacing:-1.243332px;}
.ws22d{word-spacing:-1.210464px;}
.ws147{word-spacing:-1.199562px;}
.ws20f{word-spacing:-1.183557px;}
.ws23f{word-spacing:-1.156666px;}
.ws218{word-spacing:-1.064006px;}
.ws2e{word-spacing:-1.004230px;}
.ws198{word-spacing:-0.969190px;}
.ws40{word-spacing:-0.944454px;}
.ws23a{word-spacing:-0.887674px;}
.wsb5{word-spacing:-0.802289px;}
.ws22{word-spacing:-0.765128px;}
.ws232{word-spacing:-0.726278px;}
.ws114{word-spacing:-0.705352px;}
.ws10{word-spacing:-0.672480px;}
.ws221{word-spacing:-0.645576px;}
.wsbf{word-spacing:-0.630873px;}
.wscc{word-spacing:-0.585801px;}
.ws21b{word-spacing:-0.526025px;}
.ws5d{word-spacing:-0.466250px;}
.wsf{word-spacing:-0.457286px;}
.ws104{word-spacing:-0.406474px;}
.ws10b{word-spacing:-0.346698px;}
.wsa6{word-spacing:-0.286923px;}
.ws5{word-spacing:-0.242093px;}
.wsf0{word-spacing:-0.227147px;}
.ws11a{word-spacing:-0.215192px;}
.ws15d{word-spacing:-0.178327px;}
.ws11b{word-spacing:-0.167372px;}
.ws1e6{word-spacing:-0.151508px;}
.wsa8{word-spacing:-0.107596px;}
.ws19e{word-spacing:-0.059776px;}
.ws18b{word-spacing:-0.059489px;}
.ws18d{word-spacing:-0.047820px;}
.ws16f{word-spacing:-0.021864px;}
.ws17b{word-spacing:-0.015864px;}
.ws90{word-spacing:-0.006785px;}
.ws173{word-spacing:-0.006247px;}
.ws25{word-spacing:0.000000px;}
.ws75{word-spacing:0.011955px;}
.ws117{word-spacing:0.071731px;}
.ws1fe{word-spacing:0.131506px;}
.wscf{word-spacing:0.183892px;}
.ws4d{word-spacing:0.191282px;}
.ws1eb{word-spacing:0.195226px;}
.ws244{word-spacing:0.242093px;}
.ws4f{word-spacing:0.251058px;}
.wse5{word-spacing:0.258224px;}
.wse3{word-spacing:0.281127px;}
.ws235{word-spacing:0.295891px;}
.ws217{word-spacing:0.310833px;}
.ws1d2{word-spacing:0.361955px;}
.ws2c{word-spacing:0.370609px;}
.wseb{word-spacing:0.390259px;}
.ws8{word-spacing:0.403488px;}
.wsea{word-spacing:0.411115px;}
.wsed{word-spacing:0.412436px;}
.wsef{word-spacing:0.430384px;}
.ws191{word-spacing:0.440810px;}
.ws113{word-spacing:0.441892px;}
.ws205{word-spacing:0.490160px;}
.wsd{word-spacing:0.511085px;}
.ws130{word-spacing:0.609711px;}
.ws199{word-spacing:0.669487px;}
.ws11{word-spacing:0.726278px;}
.ws193{word-spacing:0.729262px;}
.wsb{word-spacing:0.780077px;}
.ws35{word-spacing:0.789038px;}
.ws1d4{word-spacing:0.789115px;}
.ws250{word-spacing:0.833875px;}
.ws161{word-spacing:0.848814px;}
.ws13{word-spacing:0.887674px;}
.wsfb{word-spacing:0.908589px;}
.ws245{word-spacing:0.941472px;}
.ws140{word-spacing:0.968365px;}
.wsa7{word-spacing:1.028140px;}
.ws253{word-spacing:1.049069px;}
.ws118{word-spacing:1.087916px;}
.ws8a{word-spacing:1.099871px;}
.ws1f5{word-spacing:1.114812px;}
.ws124{word-spacing:1.147692px;}
.ws230{word-spacing:1.156666px;}
.ws88{word-spacing:1.159647px;}
.wsd5{word-spacing:1.207467px;}
.wsd4{word-spacing:1.221303px;}
.wse{word-spacing:1.264262px;}
.wsd3{word-spacing:1.267243px;}
.ws10f{word-spacing:1.327018px;}
.ws23c{word-spacing:1.371859px;}
.ws228{word-spacing:1.386794px;}
.ws24d{word-spacing:1.425658px;}
.ws3b{word-spacing:1.506345px;}
.ws1cc{word-spacing:1.520448px;}
.ws1ce{word-spacing:1.545807px;}
.ws1d0{word-spacing:1.566121px;}
.ws1a4{word-spacing:1.625896px;}
.ws1c7{word-spacing:1.677807px;}
.ws1c8{word-spacing:1.680146px;}
.ws1c5{word-spacing:1.685672px;}
.ws9d{word-spacing:1.745448px;}
.ws23b{word-spacing:1.748448px;}
.ws9f{word-spacing:1.805223px;}
.ws42{word-spacing:1.864999px;}
.ws1e3{word-spacing:1.916019px;}
.ws1cb{word-spacing:1.923892px;}
.ws189{word-spacing:1.924774px;}
.ws1ca{word-spacing:1.938163px;}
.ws227{word-spacing:1.984550px;}
.ws19a{word-spacing:2.044326px;}
.ws152{word-spacing:2.084317px;}
.ws3d{word-spacing:2.104101px;}
.wsa3{word-spacing:2.163877px;}
.ws41{word-spacing:2.175832px;}
.ws23d{word-spacing:2.178835px;}
.ws30{word-spacing:2.223652px;}
.ws110{word-spacing:2.254509px;}
.ws33{word-spacing:2.283428px;}
.ws256{word-spacing:2.286432px;}
.ws210{word-spacing:2.311026px;}
.ws243{word-spacing:2.340230px;}
.ws18f{word-spacing:2.343204px;}
.ws249{word-spacing:2.394029px;}
.ws1e{word-spacing:2.402979px;}
.ws24e{word-spacing:2.447827px;}
.ws5e{word-spacing:2.462755px;}
.ws15c{word-spacing:2.508684px;}
.wsc1{word-spacing:2.522530px;}
.ws215{word-spacing:2.582306px;}
.ws95{word-spacing:2.594261px;}
.ws176{word-spacing:2.642082px;}
.ws175{word-spacing:2.665012px;}
.ws11c{word-spacing:2.701857px;}
.ws23e{word-spacing:2.716819px;}
.ws34{word-spacing:2.761633px;}
.ws93{word-spacing:2.773588px;}
.ws1d6{word-spacing:2.821408px;}
.ws86{word-spacing:2.833363px;}
.ws85{word-spacing:2.852709px;}
.ws1bf{word-spacing:2.881184px;}
.ws128{word-spacing:2.940960px;}
.wsdf{word-spacing:3.000735px;}
.ws2{word-spacing:3.039610px;}
.ws10d{word-spacing:3.060511px;}
.ws15{word-spacing:3.093408px;}
.wsfc{word-spacing:3.120286px;}
.wse8{word-spacing:3.180062px;}
.wse6{word-spacing:3.197792px;}
.ws21{word-spacing:3.239838px;}
.wsf9{word-spacing:3.251793px;}
.ws1{word-spacing:3.299613px;}
.ws1e1{word-spacing:3.304507px;}
.ws233{word-spacing:3.308602px;}
.ws3f{word-spacing:3.359389px;}
.ws134{word-spacing:3.362400px;}
.ws142{word-spacing:3.419164px;}
.ws144{word-spacing:3.428005px;}
.ws1e7{word-spacing:3.434005px;}
.ws165{word-spacing:3.457860px;}
.ws163{word-spacing:3.465477px;}
.ws167{word-spacing:3.465892px;}
.wsd8{word-spacing:3.478940px;}
.ws112{word-spacing:3.490895px;}
.ws7{word-spacing:3.523795px;}
.ws116{word-spacing:3.538716px;}
.ws115{word-spacing:3.561115px;}
.ws21c{word-spacing:3.598491px;}
.ws24a{word-spacing:3.631392px;}
.ws12b{word-spacing:3.658267px;}
.ws5f{word-spacing:3.718042px;}
.ws248{word-spacing:3.738989px;}
.ws257{word-spacing:3.792787px;}
.ws60{word-spacing:3.801728px;}
.ws14b{word-spacing:3.837594px;}
.ws172{word-spacing:3.872547px;}
.ws16d{word-spacing:3.875518px;}
.wsa4{word-spacing:3.897369px;}
.ws17{word-spacing:3.900384px;}
.ws180{word-spacing:3.957145px;}
.ws17e{word-spacing:3.981892px;}
.ws182{word-spacing:3.987892px;}
.ws21e{word-spacing:4.016920px;}
.ws55{word-spacing:4.136472px;}
.ws24c{word-spacing:4.169376px;}
.ws21d{word-spacing:4.196247px;}
.ws22f{word-spacing:4.223174px;}
.wsd6{word-spacing:4.256023px;}
.ws234{word-spacing:4.276973px;}
.ws52{word-spacing:4.315798px;}
.ws1e2{word-spacing:4.375574px;}
.ws10a{word-spacing:4.435350px;}
.ws1ae{word-spacing:4.449892px;}
.ws1ac{word-spacing:4.464938px;}
.ws2d{word-spacing:4.495125px;}
.ws15a{word-spacing:4.554901px;}
.ws107{word-spacing:4.614676px;}
.wsf8{word-spacing:4.674452px;}
.ws9e{word-spacing:4.686407px;}
.ws241{word-spacing:4.707360px;}
.ws31{word-spacing:4.794003px;}
.wsbd{word-spacing:4.853779px;}
.ws92{word-spacing:4.865734px;}
.ws119{word-spacing:4.913554px;}
.ws39{word-spacing:4.973330px;}
.ws1ed{word-spacing:5.033106px;}
.wsa2{word-spacing:5.045061px;}
.wsdd{word-spacing:5.067115px;}
.wsdc{word-spacing:5.073303px;}
.wsde{word-spacing:5.092881px;}
.ws111{word-spacing:5.104836px;}
.ws4a{word-spacing:5.212432px;}
.ws6{word-spacing:5.245344px;}
.wsc9{word-spacing:5.250511px;}
.wscb{word-spacing:5.272208px;}
.ws150{word-spacing:5.331984px;}
.ws14e{word-spacing:5.359142px;}
.ws239{word-spacing:5.406739px;}
.ws4e{word-spacing:5.451535px;}
.ws203{word-spacing:5.538849px;}
.ws204{word-spacing:5.571086px;}
.ws109{word-spacing:5.583041px;}
.ws32{word-spacing:5.630862px;}
.ws22b{word-spacing:5.675731px;}
.ws102{word-spacing:5.677558px;}
.ws18a{word-spacing:5.685082px;}
.wsa5{word-spacing:5.690637px;}
.ws5b{word-spacing:5.742589px;}
.ws5c{word-spacing:5.750413px;}
.ws9{word-spacing:5.783328px;}
.ws78{word-spacing:5.802545px;}
.ws1dc{word-spacing:5.810188px;}
.ws76{word-spacing:5.822143px;}
.ws12f{word-spacing:5.849397px;}
.ws12d{word-spacing:5.869964px;}
.wsa0{word-spacing:5.929740px;}
.ws19f{word-spacing:5.941695px;}
.ws8b{word-spacing:5.978438px;}
.ws23{word-spacing:5.989515px;}
.ws91{word-spacing:6.014281px;}
.ws51{word-spacing:6.049291px;}
.ws7c{word-spacing:6.061246px;}
.ws98{word-spacing:6.089046px;}
.ws74{word-spacing:6.097667px;}
.ws7d{word-spacing:6.098709px;}
.ws83{word-spacing:6.104709px;}
.ws236{word-spacing:6.106118px;}
.ws6e{word-spacing:6.106896px;}
.ws9a{word-spacing:6.109066px;}
.ws61{word-spacing:6.121021px;}
.ws62{word-spacing:6.134476px;}
.ws108{word-spacing:6.168842px;}
.ws10c{word-spacing:6.228618px;}
.ws37{word-spacing:6.288393px;}
.ws20e{word-spacing:6.340233px;}
.ws4b{word-spacing:6.348169px;}
.ws43{word-spacing:6.407944px;}
.ws7a{word-spacing:6.419899px;}
.ws17d{word-spacing:6.430932px;}
.ws7b{word-spacing:6.435570px;}
.ws178{word-spacing:6.451056px;}
.ws179{word-spacing:6.467720px;}
.ws19{word-spacing:6.527496px;}
.ws212{word-spacing:6.536506px;}
.wsd9{word-spacing:6.587271px;}
.ws105{word-spacing:6.647047px;}
.ws6c{word-spacing:6.650501px;}
.ws6d{word-spacing:6.659002px;}
.ws126{word-spacing:6.706822px;}
.wsf6{word-spacing:6.766598px;}
.ws46{word-spacing:6.826374px;}
.ws169{word-spacing:6.835006px;}
.ws197{word-spacing:6.841006px;}
.ws8c{word-spacing:6.846965px;}
.ws14{word-spacing:6.859296px;}
.ws1f0{word-spacing:6.886149px;}
.wsdb{word-spacing:6.945925px;}
.ws1a0{word-spacing:7.005700px;}
.ws237{word-spacing:7.020691px;}
.ws18e{word-spacing:7.065476px;}
.ws1dd{word-spacing:7.079042px;}
.ws66{word-spacing:7.196982px;}
.ws247{word-spacing:7.235885px;}
.ws200{word-spacing:7.236823px;}
.ws50{word-spacing:7.244803px;}
.ws22e{word-spacing:7.343482px;}
.ws168{word-spacing:7.424130px;}
.ws1f7{word-spacing:7.436085px;}
.ws16b{word-spacing:7.449892px;}
.ws24f{word-spacing:7.451078px;}
.ws3e{word-spacing:7.483905px;}
.ws15f{word-spacing:7.529014px;}
.ws160{word-spacing:7.543681px;}
.ws1d7{word-spacing:7.603456px;}
.ws1af{word-spacing:7.615411px;}
.ws2a{word-spacing:7.663232px;}
.ws177{word-spacing:7.670202px;}
.ws53{word-spacing:7.723008px;}
.ws1ec{word-spacing:7.734963px;}
.ws44{word-spacing:7.782783px;}
.ws252{word-spacing:7.827667px;}
.ws19d{word-spacing:7.842559px;}
.ws19c{word-spacing:7.847042px;}
.ws22c{word-spacing:7.881466px;}
.ws1a9{word-spacing:7.898447px;}
.ws1ab{word-spacing:7.902334px;}
.ws1a8{word-spacing:7.905807px;}
.ws15e{word-spacing:7.962110px;}
.wsd7{word-spacing:8.021886px;}
.ws209{word-spacing:8.081661px;}
.ws1cf{word-spacing:8.157775px;}
.ws127{word-spacing:8.201212px;}
.ws155{word-spacing:8.260988px;}
.ws9c{word-spacing:8.320764px;}
.ws1e8{word-spacing:8.380539px;}
.ws1de{word-spacing:8.404349px;}
.wse0{word-spacing:8.440315px;}
.ws1f{word-spacing:8.619642px;}
.ws226{word-spacing:8.631597px;}
.ws1b0{word-spacing:8.693489px;}
.ws26{word-spacing:8.739193px;}
.ws69{word-spacing:8.798968px;}
.ws219{word-spacing:8.858744px;}
.ws11f{word-spacing:8.955991px;}
.ws121{word-spacing:8.978295px;}
.ws1db{word-spacing:9.038071px;}
.ws1f1{word-spacing:9.127002px;}
.wsf2{word-spacing:9.147807px;}
.ws1b{word-spacing:9.157622px;}
.ws1d{word-spacing:9.217398px;}
.ws14d{word-spacing:9.238188px;}
.ws190{word-spacing:9.277173px;}
.ws1be{word-spacing:9.336949px;}
.ws47{word-spacing:9.348904px;}
.ws1f4{word-spacing:9.396724px;}
.ws1ef{word-spacing:9.408679px;}
.ws20{word-spacing:9.456500px;}
.ws1bd{word-spacing:9.492787px;}
.ws24{word-spacing:9.516276px;}
.ws213{word-spacing:9.529126px;}
.ws162{word-spacing:9.534511px;}
.ws19b{word-spacing:9.556233px;}
.wsa1{word-spacing:9.576051px;}
.ws27{word-spacing:9.635827px;}
.ws255{word-spacing:9.656813px;}
.ws1c{word-spacing:9.695602px;}
.ws251{word-spacing:9.710611px;}
.ws36{word-spacing:9.755378px;}
.ws97{word-spacing:9.767333px;}
.ws1d5{word-spacing:9.815154px;}
.ws96{word-spacing:9.827109px;}
.ws49{word-spacing:9.874929px;}
.ws4c{word-spacing:10.054256px;}
.ws2b{word-spacing:10.066211px;}
.ws38{word-spacing:10.114032px;}
.ws122{word-spacing:10.173807px;}
.ws154{word-spacing:10.233583px;}
.wsb4{word-spacing:10.293358px;}
.wsb6{word-spacing:10.295523px;}
.ws56{word-spacing:10.353134px;}
.ws58{word-spacing:10.368589px;}
.ws135{word-spacing:10.377044px;}
.ws194{word-spacing:10.394429px;}
.ws224{word-spacing:10.407830px;}
.ws231{word-spacing:10.409990px;}
.ws196{word-spacing:10.412910px;}
.ws156{word-spacing:10.472685px;}
.wsb3{word-spacing:10.544486px;}
.ws148{word-spacing:10.587196px;}
.ws146{word-spacing:10.592236px;}
.wsfd{word-spacing:10.641889px;}
.ws3a{word-spacing:10.652012px;}
.ws201{word-spacing:10.711788px;}
.ws174{word-spacing:10.771563px;}
.wsd1{word-spacing:10.831339px;}
.ws6f{word-spacing:10.891114px;}
.ws1b7{word-spacing:10.950890px;}
.ws68{word-spacing:10.962845px;}
.ws166{word-spacing:10.969467px;}
.ws82{word-spacing:11.022621px;}
.ws1a{word-spacing:11.070441px;}
.ws24b{word-spacing:11.109370px;}
.ws207{word-spacing:11.130217px;}
.ws214{word-spacing:11.189992px;}
.ws12a{word-spacing:11.309544px;}
.ws120{word-spacing:11.321499px;}
.ws14a{word-spacing:11.332113px;}
.ws14c{word-spacing:11.353467px;}
.wsc0{word-spacing:11.369319px;}
.wsbe{word-spacing:11.429095px;}
.ws17f{word-spacing:11.482233px;}
.ws242{word-spacing:11.485958px;}
.ws54{word-spacing:11.488870px;}
.ws9b{word-spacing:11.548646px;}
.ws1ee{word-spacing:11.560601px;}
.ws157{word-spacing:11.692107px;}
.ws13f{word-spacing:11.787748px;}
.ws29{word-spacing:11.847524px;}
.ws220{word-spacing:11.907300px;}
.ws216{word-spacing:11.967075px;}
.ws5a{word-spacing:11.971269px;}
.ws1df{word-spacing:12.038806px;}
.ws208{word-spacing:12.086626px;}
.ws48{word-spacing:12.098581px;}
.ws21f{word-spacing:12.146402px;}
.ws17c{word-spacing:12.253209px;}
.wse4{word-spacing:12.309892px;}
.wse2{word-spacing:12.325729px;}
.wse1{word-spacing:12.347437px;}
.ws13b{word-spacing:12.492438px;}
.ws192{word-spacing:12.505056px;}
.ws59{word-spacing:12.595937px;}
.wsda{word-spacing:12.863709px;}
.ws171{word-spacing:12.867892px;}
.ws222{word-spacing:12.983260px;}
.ws225{word-spacing:13.125830px;}
.wsff{word-spacing:13.282138px;}
.ws101{word-spacing:13.300436px;}
.ws13e{word-spacing:13.341914px;}
.ws1b9{word-spacing:14.178772px;}
.wsfe{word-spacing:14.298324px;}
.ws1b5{word-spacing:14.694148px;}
.ws1b6{word-spacing:14.716753px;}
.wsf1{word-spacing:14.964191px;}
.ws16e{word-spacing:15.912265px;}
.ws13d{word-spacing:15.963889px;}
.ws71{word-spacing:16.103547px;}
.ws149{word-spacing:16.151367px;}
.ws240{word-spacing:16.274016px;}
.ws229{word-spacing:16.327749px;}
.ws11e{word-spacing:16.471192px;}
.ws8f{word-spacing:16.959225px;}
.ws57{word-spacing:17.495099px;}
.ws202{word-spacing:17.955892px;}
.ws1b4{word-spacing:18.363064px;}
.ws1f2{word-spacing:18.366392px;}
.ws170{word-spacing:18.690191px;}
.ws254{word-spacing:18.748742px;}
.ws89{word-spacing:18.968483px;}
.ws16{word-spacing:19.216038px;}
.ws100{word-spacing:20.791558px;}
.ws94{word-spacing:20.921460px;}
.ws87{word-spacing:20.981236px;}
.ws77{word-spacing:21.026413px;}
.ws73{word-spacing:21.306153px;}
.ws8d{word-spacing:22.616281px;}
.ws8e{word-spacing:23.448965px;}
.ws13c{word-spacing:24.280849px;}
.ws13a{word-spacing:24.295012px;}
.ws7e{word-spacing:24.687323px;}
.ws63{word-spacing:24.696647px;}
.ws137{word-spacing:25.177483px;}
.ws151{word-spacing:25.259566px;}
.wsd2{word-spacing:26.827469px;}
.ws1bb{word-spacing:27.205553px;}
.ws1bc{word-spacing:27.209853px;}
.ws1a7{word-spacing:27.797566px;}
.ws1b8{word-spacing:28.764019px;}
.ws136{word-spacing:29.361775px;}
.ws4{word-spacing:29.829450px;}
.ws195{word-spacing:30.297791px;}
.ws81{word-spacing:30.366005px;}
.ws138{word-spacing:31.573472px;}
.ws0{word-spacing:32.192873px;}
.ws1ba{word-spacing:32.589657px;}
.ws70{word-spacing:36.283789px;}
.ws139{word-spacing:44.195566px;}
.ws18{word-spacing:80.625869px;}
.ws1f3{word-spacing:141.409094px;}
.ws1f9{word-spacing:194.605157px;}
.wsb2{word-spacing:221.385635px;}
.wsb1{word-spacing:247.134092px;}
.wsad{word-spacing:430.503600px;}
.ws1f8{word-spacing:474.145519px;}
.wsae{word-spacing:638.258650px;}
.wsb0{word-spacing:788.108967px;}
._1a{margin-left:-715.327614px;}
._30{margin-left:-254.214032px;}
._1f{margin-left:-234.284931px;}
._1c{margin-left:-228.778163px;}
._1e{margin-left:-204.904512px;}
._25{margin-left:-201.399644px;}
._28{margin-left:-196.174081px;}
._18{margin-left:-157.465102px;}
._1b{margin-left:-155.447333px;}
._1d{margin-left:-150.826077px;}
._17{margin-left:-140.808618px;}
._19{margin-left:-136.060926px;}
._26{margin-left:-133.938220px;}
._24{margin-left:-112.828922px;}
._21{margin-left:-108.232156px;}
._20{margin-left:-70.691512px;}
._43{margin-left:-69.251226px;}
._27{margin-left:-63.809748px;}
._22{margin-left:-55.509443px;}
._23{margin-left:-47.892050px;}
._47{margin-left:-31.334380px;}
._48{margin-left:-29.158486px;}
._4a{margin-left:-22.185271px;}
._49{margin-left:-20.801802px;}
._e{margin-left:-6.742733px;}
._4{margin-left:-4.788058px;}
._b{margin-left:-3.713286px;}
._2{margin-left:-2.668393px;}
._3{margin-left:-1.344960px;}
._5{width:1.506355px;}
._0{width:2.668393px;}
._a{width:4.222559px;}
._1{width:5.336786px;}
._11{width:7.334743px;}
._13{width:8.535733px;}
._c{width:10.977202px;}
._6{width:15.902800px;}
._2b{width:17.313415px;}
._15{width:18.923557px;}
._16{width:20.959727px;}
._14{width:22.086913px;}
._8{width:23.607785px;}
._12{width:24.692752px;}
._2c{width:25.918147px;}
._7{width:27.086735px;}
._d{width:28.699428px;}
._f{width:29.911664px;}
._10{width:32.386981px;}
._3f{width:33.696458px;}
._46{width:35.057811px;}
._2d{width:36.929154px;}
._2e{width:38.888579px;}
._45{width:43.131658px;}
._31{width:46.574271px;}
._3e{width:50.624294px;}
._2a{width:68.741940px;}
._3a{width:73.144297px;}
._29{width:80.697600px;}
._34{width:99.634637px;}
._37{width:116.398211px;}
._3d{width:135.195379px;}
._38{width:138.477082px;}
._2f{width:142.996147px;}
._3b{width:145.095481px;}
._33{width:159.436931px;}
._36{width:162.524966px;}
._39{width:164.031322px;}
._32{width:169.572557px;}
._9{width:170.648525px;}
._3c{width:174.037824px;}
._35{width:180.117043px;}
._44{width:214.350612px;}
._41{width:224.980014px;}
._42{width:279.603870px;}
._40{width:699.454040px;}
.fc3{color:rgb(0,50,50);}
.fc2{color:rgb(192,80,70);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:10.707840px;}
.fsa{font-size:10.735296px;}
.fs1b{font-size:16.862844px;}
.fs17{font-size:19.241280px;}
.fs18{font-size:19.268004px;}
.fs19{font-size:25.655040px;}
.fs1a{font-size:25.681764px;}
.fs7{font-size:26.357760px;}
.fs8{font-size:26.385216px;}
.fs11{font-size:28.659750px;}
.fs5{font-size:32.974656px;}
.fs15{font-size:35.689500px;}
.fs14{font-size:35.739000px;}
.fs12{font-size:38.199750px;}
.fs16{font-size:38.509284px;}
.fs6{font-size:39.564096px;}
.fsb{font-size:39.591552px;}
.fs4{font-size:41.842800px;}
.fs10{font-size:47.779500px;}
.fs1e{font-size:51.336804px;}
.fs2{font-size:53.798400px;}
.fsf{font-size:57.279750px;}
.fse{font-size:57.319500px;}
.fs1{font-size:59.775600px;}
.fs1c{font-size:64.164324px;}
.fs1d{font-size:64.191048px;}
.fsd{font-size:66.711000px;}
.fsc{font-size:66.766500px;}
.fs13{font-size:71.428500px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yb5{bottom:7.982832px;}
.y112{bottom:15.803625px;}
.yb4{bottom:23.406240px;}
.yb2{bottom:28.889203px;}
.ybc{bottom:34.731840px;}
.yac{bottom:35.377056px;}
.yb0{bottom:40.511328px;}
.yaf{bottom:48.426893px;}
.y1e3{bottom:49.359228px;}
.y15f{bottom:53.006625px;}
.y1de{bottom:59.220384px;}
.y113{bottom:64.296750px;}
.yab{bottom:64.582003px;}
.y161{bottom:67.964550px;}
.ya6{bottom:71.467968px;}
.yc0{bottom:74.845056px;}
.y17e{bottom:77.878350px;}
.y180{bottom:80.056350px;}
.ybd{bottom:85.750579px;}
.y1dd{bottom:86.310503px;}
.y17d{bottom:88.590150px;}
.y160{bottom:88.674300px;}
.y17f{bottom:90.773100px;}
.ybf{bottom:91.140192px;}
.yaa{bottom:93.797933px;}
.y111{bottom:94.638600px;}
.y15b{bottom:102.396000px;}
.ybe{bottom:102.938035px;}
.y1f1{bottom:105.974022px;}
.y163{bottom:109.133625px;}
.y1eb{bottom:121.321615px;}
.y1ec{bottom:122.329110px;}
.ya9{bottom:123.002880px;}
.ya8{bottom:123.724973px;}
.y110{bottom:124.608600px;}
.y17c{bottom:127.809000px;}
.y162{bottom:128.154000px;}
.y1ea{bottom:129.023472px;}
.yad{bottom:135.481632px;}
.yba{bottom:145.714483px;}
.y182{bottom:148.292100px;}
.yb3{bottom:148.926835px;}
.yae{bottom:150.651072px;}
.y10f{bottom:152.580600px;}
.y15e{bottom:154.051125px;}
.ya7{bottom:155.236224px;}
.y181{bottom:159.008850px;}
.yb1{bottom:159.360115px;}
.yb8{bottom:166.657920px;}
.y1ee{bottom:175.389612px;}
.y1e2{bottom:178.203649px;}
.y1f2{bottom:184.964821px;}
.y1e1{bottom:188.906611px;}
.y1e6{bottom:190.502034px;}
.yb9{bottom:192.364973px;}
.y15d{bottom:196.913550px;}
.y1ed{bottom:198.126391px;}
.y1e0{bottom:199.601556px;}
.ya4{bottom:203.731757px;}
.yb7{bottom:205.604256px;}
.y1df{bottom:210.304518px;}
.yb6{bottom:220.403040px;}
.ybb{bottom:222.072365px;}
.y1e5{bottom:222.151267px;}
.y15c{bottom:223.705050px;}
.y1e4{bottom:229.845107px;}
.ya5{bottom:234.227136px;}
.y1f0{bottom:239.214541px;}
.y1e9{bottom:247.338637px;}
.y1ef{bottom:253.565329px;}
.y1f3{bottom:253.618777px;}
.y1e8{bottom:255.032477px;}
.y19a{bottom:262.840500px;}
.y26{bottom:266.956500px;}
.yf5{bottom:280.828500px;}
.y77{bottom:280.999500px;}
.y78{bottom:281.194500px;}
.y199{bottom:283.056000px;}
.y269{bottom:283.395000px;}
.y25{bottom:284.889000px;}
.y198{bottom:287.289000px;}
.y1e7{bottom:293.776932px;}
.y268{bottom:299.833500px;}
.y24{bottom:302.821500px;}
.y196{bottom:303.388500px;}
.y197{bottom:303.504000px;}
.y76{bottom:304.192500px;}
.y195{bottom:307.620000px;}
.y51{bottom:308.370000px;}
.y164{bottom:309.583500px;}
.y298{bottom:315.190500px;}
.y267{bottom:315.370500px;}
.y16c{bottom:316.639500px;}
.y75{bottom:318.886500px;}
.yf4{bottom:320.754000px;}
.y23{bottom:320.755500px;}
.y23b{bottom:321.115500px;}
.y74{bottom:322.581000px;}
.y194{bottom:325.554000px;}
.y50{bottom:326.302500px;}
.y297{bottom:331.627500px;}
.y266{bottom:331.809000px;}
.y73{bottom:337.276500px;}
.y1d1{bottom:337.701000px;}
.y22{bottom:338.688000px;}
.y23a{bottom:339.048000px;}
.y1db{bottom:339.435000px;}
.y15a{bottom:340.966500px;}
.y72{bottom:340.971000px;}
.y193{bottom:343.486500px;}
.y4f{bottom:344.235000px;}
.y296{bottom:346.984500px;}
.y265{bottom:348.247500px;}
.y71{bottom:355.665000px;}
.y21{bottom:356.620500px;}
.y239{bottom:356.980500px;}
.y183{bottom:358.603500px;}
.y70{bottom:359.359500px;}
.y192{bottom:361.419000px;}
.y4e{bottom:362.169000px;}
.y295{bottom:363.423000px;}
.y264{bottom:363.786000px;}
.y132{bottom:370.321500px;}
.y20{bottom:374.553000px;}
.y238{bottom:374.913000px;}
.y1da{bottom:375.300000px;}
.yda{bottom:377.692500px;}
.y6f{bottom:377.749500px;}
.y294{bottom:378.778500px;}
.y191{bottom:379.351500px;}
.y4d{bottom:380.101500px;}
.y263{bottom:380.223000px;}
.y17b{bottom:389.985000px;}
.y131{bottom:390.652500px;}
.y1f{bottom:392.485500px;}
.y237{bottom:392.847000px;}
.y6e{bottom:393.357000px;}
.y130{bottom:394.885500px;}
.y293{bottom:395.217000px;}
.y262{bottom:396.661500px;}
.y6d{bottom:397.051500px;}
.y190{bottom:397.284000px;}
.y4c{bottom:398.034000px;}
.ya2{bottom:410.418000px;}
.y1e{bottom:410.419500px;}
.y236{bottom:410.779500px;}
.y18f{bottom:411.100500px;}
.y292{bottom:411.655500px;}
.y12f{bottom:412.818000px;}
.y18e{bottom:415.216500px;}
.y6c{bottom:415.441500px;}
.y4b{bottom:415.966500px;}
.y261{bottom:426.529500px;}
.y291{bottom:427.012500px;}
.yf3{bottom:428.350500px;}
.y1d{bottom:428.352000px;}
.yd9{bottom:428.652000px;}
.y235{bottom:428.712000px;}
.y18d{bottom:429.034500px;}
.y12e{bottom:430.750500px;}
.y208{bottom:431.211000px;}
.y209{bottom:431.958000px;}
.y18c{bottom:433.150500px;}
.y4a{bottom:433.899000px;}
.y16b{bottom:442.168500px;}
.y290{bottom:443.451000px;}
.y1c{bottom:446.284500px;}
.yd8{bottom:446.586000px;}
.y234{bottom:446.644500px;}
.y6b{bottom:447.156000px;}
.y12d{bottom:448.683000px;}
.y206{bottom:449.143500px;}
.y18b{bottom:449.250000px;}
.y207{bottom:449.890500px;}
.y49{bottom:451.833000px;}
.y18a{bottom:453.481500px;}
.y28f{bottom:459.888000px;}
.y1b{bottom:464.217000px;}
.yd7{bottom:464.518500px;}
.y233{bottom:464.577000px;}
.y6a{bottom:465.088500px;}
.y12c{bottom:466.615500px;}
.y204{bottom:467.076000px;}
.y205{bottom:467.824500px;}
.y48{bottom:469.765500px;}
.y260{bottom:470.748000px;}
.y189{bottom:471.414000px;}
.y28e{bottom:476.326500px;}
.yd6{bottom:478.218000px;}
.y12b{bottom:480.316500px;}
.y1a{bottom:482.149500px;}
.yd5{bottom:482.451000px;}
.y232{bottom:482.511000px;}
.y69{bottom:483.021000px;}
.y12a{bottom:484.549500px;}
.y203{bottom:485.010000px;}
.y47{bottom:487.698000px;}
.y25f{bottom:488.680500px;}
.y188{bottom:489.348000px;}
.ya1{bottom:491.611500px;}
.y28d{bottom:491.683500px;}
.yf2{bottom:495.850500px;}
.yd4{bottom:498.550500px;}
.yf1{bottom:500.082000px;}
.y231{bottom:500.443500px;}
.y128{bottom:500.649000px;}
.y129{bottom:500.764500px;}
.yd3{bottom:502.783500px;}
.y201{bottom:502.942500px;}
.y202{bottom:503.689500px;}
.y127{bottom:504.880500px;}
.y46{bottom:505.630500px;}
.y25e{bottom:506.613000px;}
.y187{bottom:507.280500px;}
.y28c{bottom:508.122000px;}
.ya0{bottom:509.544000px;}
.y16a{bottom:510.009000px;}
.y115{bottom:512.104500px;}
.y68{bottom:513.241500px;}
.yf0{bottom:516.181500px;}
.y104{bottom:518.014500px;}
.y1d9{bottom:518.016000px;}
.y230{bottom:518.376000px;}
.yd2{bottom:518.883000px;}
.yef{bottom:520.414500px;}
.y19{bottom:520.818000px;}
.y1ff{bottom:520.875000px;}
.y126{bottom:520.980000px;}
.y186{bottom:521.097000px;}
.y200{bottom:521.622000px;}
.yd1{bottom:523.114500px;}
.y45{bottom:523.563000px;}
.y28b{bottom:524.560500px;}
.y125{bottom:525.213000px;}
.y9f{bottom:527.476500px;}
.y169{bottom:527.941500px;}
.y114{bottom:528.543000px;}
.y67{bottom:531.174000px;}
.y103{bottom:535.947000px;}
.y22f{bottom:536.308500px;}
.yd0{bottom:536.931000px;}
.yee{bottom:538.347000px;}
.y1fe{bottom:538.807500px;}
.y184{bottom:538.914000px;}
.y185{bottom:539.029500px;}
.y28a{bottom:540.999000px;}
.ycf{bottom:541.047000px;}
.y44{bottom:541.495500px;}
.y168{bottom:541.758000px;}
.y124{bottom:543.145500px;}
.y167{bottom:545.874000px;}
.y25d{bottom:547.843500px;}
.y1ba{bottom:552.627000px;}
.y102{bottom:553.881000px;}
.y22e{bottom:554.241000px;}
.yce{bottom:554.865000px;}
.yed{bottom:556.279500px;}
.y9e{bottom:556.365000px;}
.y1fd{bottom:556.740000px;}
.y123{bottom:556.962000px;}
.y289{bottom:557.436000px;}
.ycd{bottom:558.981000px;}
.y43{bottom:559.429500px;}
.y10e{bottom:559.924500px;}
.y122{bottom:561.078000px;}
.y66{bottom:562.431000px;}
.y166{bottom:563.808000px;}
.y25c{bottom:565.776000px;}
.y101{bottom:571.813500px;}
.yec{bottom:572.379000px;}
.y218{bottom:572.710500px;}
.y288{bottom:572.793000px;}
.ycc{bottom:572.797500px;}
.y18{bottom:573.807000px;}
.y9d{bottom:574.048500px;}
.y1fb{bottom:574.672500px;}
.y1fc{bottom:575.421000px;}
.yeb{bottom:576.612000px;}
.ycb{bottom:576.913500px;}
.y243{bottom:577.362000px;}
.y121{bottom:579.010500px;}
.y65{bottom:580.821000px;}
.y17a{bottom:580.879500px;}
.y165{bottom:581.740500px;}
.y42{bottom:582.910500px;}
.y25b{bottom:583.708500px;}
.y217{bottom:589.149000px;}
.y287{bottom:589.231500px;}
.y100{bottom:589.746000px;}
.y17{bottom:590.245500px;}
.yea{bottom:590.428500px;}
.yca{bottom:590.613000px;}
.y9c{bottom:591.481500px;}
.y22d{bottom:591.910500px;}
.y1fa{bottom:592.606500px;}
.ye9{bottom:594.544500px;}
.yc9{bottom:594.846000px;}
.y120{bottom:596.944500px;}
.y64{bottom:598.753500px;}
.y179{bottom:598.813500px;}
.y1b9{bottom:599.193000px;}
.y1d0{bottom:599.239500px;}
.y41{bottom:600.843000px;}
.y25a{bottom:601.641000px;}
.y1d8{bottom:603.987000px;}
.y9b{bottom:605.469000px;}
.y286{bottom:605.670000px;}
.yff{bottom:607.678500px;}
.ye8{bottom:608.245500px;}
.y9a{bottom:609.163500px;}
.y159{bottom:609.598500px;}
.y1f9{bottom:610.539000px;}
.ye7{bottom:612.477000px;}
.yc8{bottom:612.778500px;}
.y1cf{bottom:613.477500px;}
.y11f{bottom:614.877000px;}
.y63{bottom:616.686000px;}
.y178{bottom:616.746000px;}
.y16{bottom:616.770000px;}
.y1b8{bottom:617.127000px;}
.y1ce{bottom:617.172000px;}
.y40{bottom:618.775500px;}
.y259{bottom:619.573500px;}
.y285{bottom:622.108500px;}
.y99{bottom:623.152500px;}
.y158{bottom:623.299500px;}
.y157{bottom:623.838000px;}
.yfe{bottom:625.611000px;}
.ye5{bottom:626.178000px;}
.ye6{bottom:626.293500px;}
.y98{bottom:626.847000px;}
.y156{bottom:627.531000px;}
.y1d7{bottom:627.928500px;}
.y11e{bottom:628.576500px;}
.ye4{bottom:630.409500px;}
.y177{bottom:630.562500px;}
.yc7{bottom:630.711000px;}
.y1f7{bottom:631.330500px;}
.y1f8{bottom:632.079000px;}
.y11d{bottom:632.809500px;}
.y15{bottom:633.208500px;}
.y176{bottom:634.678500px;}
.y1b7{bottom:635.059500px;}
.y62{bottom:635.076000px;}
.y1cd{bottom:635.104500px;}
.y3f{bottom:636.708000px;}
.y258{bottom:637.506000px;}
.y284{bottom:638.545500px;}
.y22c{bottom:641.535000px;}
.y97{bottom:642.447000px;}
.yfd{bottom:643.545000px;}
.y155{bottom:643.632000px;}
.yc6{bottom:644.527500px;}
.y96{bottom:646.141500px;}
.y154{bottom:647.863500px;}
.ye3{bottom:648.342000px;}
.yc5{bottom:648.643500px;}
.y11b{bottom:648.909000px;}
.y11c{bottom:649.026000px;}
.y1f6{bottom:649.264500px;}
.y14{bottom:649.647000px;}
.y175{bottom:650.778000px;}
.y1d6{bottom:651.868500px;}
.y1b6{bottom:652.992000px;}
.y1cc{bottom:653.037000px;}
.y11a{bottom:653.142000px;}
.y61{bottom:653.464500px;}
.y283{bottom:653.902500px;}
.y3e{bottom:654.640500px;}
.y174{bottom:655.011000px;}
.y257{bottom:655.440000px;}
.y22b{bottom:659.467500px;}
.yc3{bottom:662.344500px;}
.yc4{bottom:662.461500px;}
.y95{bottom:664.074000px;}
.y153{bottom:665.796000px;}
.y13{bottom:666.085500px;}
.ye2{bottom:666.276000px;}
.yc2{bottom:666.577500px;}
.y1f5{bottom:667.197000px;}
.y282{bottom:670.341000px;}
.y1b5{bottom:670.924500px;}
.y1cb{bottom:670.971000px;}
.y119{bottom:671.074500px;}
.y173{bottom:671.110500px;}
.yfc{bottom:671.293500px;}
.y60{bottom:671.398500px;}
.y3d{bottom:672.574500px;}
.y256{bottom:673.372500px;}
.y172{bottom:675.342000px;}
.y1d5{bottom:675.810000px;}
.y22a{bottom:677.400000px;}
.y94{bottom:681.507000px;}
.y12{bottom:682.524000px;}
.y152{bottom:683.728500px;}
.ye1{bottom:684.208500px;}
.y281{bottom:685.696500px;}
.y1b4{bottom:688.857000px;}
.y1ca{bottom:688.903500px;}
.y118{bottom:689.007000px;}
.y3c{bottom:690.507000px;}
.y255{bottom:691.305000px;}
.y171{bottom:691.441500px;}
.y229{bottom:695.334000px;}
.y170{bottom:695.674500px;}
.y150{bottom:697.429500px;}
.y151{bottom:697.968000px;}
.y11{bottom:698.962500px;}
.y93{bottom:699.190500px;}
.y1d4{bottom:699.751500px;}
.y14f{bottom:701.662500px;}
.y280{bottom:702.135000px;}
.ye0{bottom:702.141000px;}
.y5f{bottom:703.111500px;}
.y1b3{bottom:706.789500px;}
.y1c9{bottom:706.836000px;}
.y117{bottom:706.939500px;}
.y3b{bottom:708.439500px;}
.y254{bottom:709.237500px;}
.y228{bottom:713.266500px;}
.y16f{bottom:713.607000px;}
.yfb{bottom:713.988000px;}
.y10{bottom:715.401000px;}
.y92{bottom:716.874000px;}
.y27f{bottom:718.573500px;}
.yc1{bottom:719.490000px;}
.y14e{bottom:719.595000px;}
.ydf{bottom:720.073500px;}
.y5e{bottom:721.045500px;}
.y1f4{bottom:724.491000px;}
.y1b2{bottom:724.723500px;}
.y1c8{bottom:724.768500px;}
.y116{bottom:724.872000px;}
.y3a{bottom:726.372000px;}
.y253{bottom:727.170000px;}
.y1d3{bottom:727.429500px;}
.y91{bottom:731.112000px;}
.y227{bottom:731.199000px;}
.y16e{bottom:731.539500px;}
.yf{bottom:731.839500px;}
.yfa{bottom:731.920500px;}
.yde{bottom:733.890000px;}
.y27e{bottom:733.930500px;}
.y90{bottom:734.806500px;}
.y14d{bottom:737.527500px;}
.ydd{bottom:738.006000px;}
.y1b1{bottom:742.656000px;}
.y1c7{bottom:742.701000px;}
.y242{bottom:744.304500px;}
.y252{bottom:745.102500px;}
.ye{bottom:748.278000px;}
.y226{bottom:749.131500px;}
.y39{bottom:749.853000px;}
.y27d{bottom:750.369000px;}
.y8f{bottom:750.655500px;}
.ya3{bottom:750.873000px;}
.y5d{bottom:751.264500px;}
.y8e{bottom:754.350000px;}
.y14c{bottom:755.460000px;}
.y1dc{bottom:755.872500px;}
.ydc{bottom:755.940000px;}
.y1b0{bottom:760.588500px;}
.y1c6{bottom:760.635000px;}
.y241{bottom:762.237000px;}
.y251{bottom:763.036500px;}
.y1d2{bottom:763.368000px;}
.yd{bottom:764.715000px;}
.y27c{bottom:765.724500px;}
.y225{bottom:767.064000px;}
.y38{bottom:767.785500px;}
.y8d{bottom:768.339000px;}
.y14a{bottom:769.161000px;}
.y5c{bottom:769.197000px;}
.y14b{bottom:769.698000px;}
.y8c{bottom:772.033500px;}
.y149{bottom:773.392500px;}
.y1af{bottom:778.521000px;}
.y1c5{bottom:778.567500px;}
.y240{bottom:780.171000px;}
.y250{bottom:780.969000px;}
.yc{bottom:781.153500px;}
.ydb{bottom:781.290000px;}
.y27b{bottom:782.163000px;}
.y224{bottom:784.996500px;}
.y37{bottom:785.718000px;}
.y5b{bottom:787.131000px;}
.y8b{bottom:789.466500px;}
.y2a5{bottom:793.191000px;}
.y1ae{bottom:796.453500px;}
.y1c4{bottom:796.500000px;}
.yb{bottom:797.592000px;}
.y23f{bottom:798.103500px;}
.y27a{bottom:798.601500px;}
.y24f{bottom:798.901500px;}
.y10d{bottom:799.536000px;}
.y148{bottom:801.252000px;}
.y223{bottom:802.930500px;}
.y36{bottom:803.652000px;}
.y8a{bottom:803.704500px;}
.y5a{bottom:805.063500px;}
.y89{bottom:807.399000px;}
.y2a4{bottom:809.629500px;}
.y279{bottom:813.957000px;}
.ya{bottom:814.030500px;}
.y1ad{bottom:814.386000px;}
.y1c3{bottom:814.432500px;}
.y23e{bottom:816.036000px;}
.y24e{bottom:816.834000px;}
.y10c{bottom:817.468500px;}
.y147{bottom:819.184500px;}
.y222{bottom:821.223000px;}
.y35{bottom:821.584500px;}
.y59{bottom:822.996000px;}
.y88{bottom:824.832000px;}
.y2a3{bottom:826.068000px;}
.y278{bottom:830.395500px;}
.y9{bottom:830.469000px;}
.y1ac{bottom:832.320000px;}
.y23d{bottom:833.968500px;}
.y24d{bottom:834.766500px;}
.y10b{bottom:835.401000px;}
.y146{bottom:837.117000px;}
.y221{bottom:839.155500px;}
.y34{bottom:839.517000px;}
.y58{bottom:840.928500px;}
.y2a2{bottom:842.506500px;}
.y87{bottom:842.515500px;}
.y1c2{bottom:846.049500px;}
.y277{bottom:846.834000px;}
.y8{bottom:846.907500px;}
.y1ab{bottom:850.252500px;}
.y23c{bottom:851.901000px;}
.y24c{bottom:852.700500px;}
.y10a{bottom:853.333500px;}
.y145{bottom:855.051000px;}
.y220{bottom:857.089500px;}
.y33{bottom:857.449500px;}
.y57{bottom:858.861000px;}
.y2a1{bottom:858.943500px;}
.y86{bottom:860.197500px;}
.y276{bottom:862.191000px;}
.y7{bottom:863.346000px;}
.y1c1{bottom:864.559500px;}
.y1aa{bottom:868.185000px;}
.y24b{bottom:870.633000px;}
.y144{bottom:872.983500px;}
.y21f{bottom:875.022000px;}
.y32{bottom:875.382000px;}
.y56{bottom:876.793500px;}
.y85{bottom:877.881000px;}
.y275{bottom:878.629500px;}
.y6{bottom:879.784500px;}
.y1c0{bottom:883.068000px;}
.y1a9{bottom:886.117500px;}
.y143{bottom:886.800000px;}
.y24a{bottom:888.565500px;}
.y216{bottom:889.593000px;}
.y142{bottom:890.916000px;}
.y2a0{bottom:891.820500px;}
.y21e{bottom:892.954500px;}
.y31{bottom:893.314500px;}
.y55{bottom:894.727500px;}
.y274{bottom:895.068000px;}
.y84{bottom:895.564500px;}
.y1bf{bottom:901.576500px;}
.y1a8{bottom:904.050000px;}
.y141{bottom:904.732500px;}
.y249{bottom:906.498000px;}
.y215{bottom:907.525500px;}
.y29f{bottom:908.259000px;}
.y140{bottom:908.848500px;}
.y21d{bottom:910.887000px;}
.y30{bottom:911.248500px;}
.y273{bottom:911.505000px;}
.y54{bottom:912.660000px;}
.y83{bottom:912.997500px;}
.y1a7{bottom:921.982500px;}
.y248{bottom:924.430500px;}
.y29e{bottom:924.697500px;}
.y109{bottom:925.065000px;}
.y214{bottom:925.458000px;}
.y13f{bottom:926.781000px;}
.y272{bottom:926.862000px;}
.y21c{bottom:928.819500px;}
.y2f{bottom:929.181000px;}
.y53{bottom:930.592500px;}
.y82{bottom:930.930000px;}
.y1be{bottom:933.771000px;}
.y1a6{bottom:935.800500px;}
.y213{bottom:939.696000px;}
.y1a5{bottom:939.916500px;}
.y29d{bottom:941.136000px;}
.y247{bottom:942.363000px;}
.yf9{bottom:942.997500px;}
.y271{bottom:943.300500px;}
.y212{bottom:943.390500px;}
.y13e{bottom:944.715000px;}
.y5{bottom:945.475500px;}
.y21b{bottom:946.753500px;}
.y2e{bottom:947.113500px;}
.y81{bottom:948.363000px;}
.y29c{bottom:957.574500px;}
.y1a4{bottom:957.849000px;}
.y13d{bottom:958.531500px;}
.y270{bottom:959.739000px;}
.y246{bottom:960.297000px;}
.y108{bottom:960.930000px;}
.y211{bottom:961.323000px;}
.y4{bottom:961.914000px;}
.y13c{bottom:962.647500px;}
.y1bd{bottom:964.470000px;}
.y21a{bottom:964.686000px;}
.y2d{bottom:965.046000px;}
.y80{bottom:966.295500px;}
.y52{bottom:968.740500px;}
.y1a3{bottom:971.665500px;}
.y29b{bottom:974.013000px;}
.y26f{bottom:975.094500px;}
.y210{bottom:975.562500px;}
.y1a2{bottom:975.781500px;}
.y245{bottom:978.229500px;}
.y20f{bottom:979.257000px;}
.y7f{bottom:980.284500px;}
.y13b{bottom:980.580000px;}
.y1bc{bottom:982.402500px;}
.y219{bottom:982.618500px;}
.y2c{bottom:982.978500px;}
.y7e{bottom:983.979000px;}
.y1a1{bottom:989.598000px;}
.y29a{bottom:990.451500px;}
.y26e{bottom:991.533000px;}
.y3{bottom:993.234000px;}
.y1a0{bottom:993.714000px;}
.y13a{bottom:994.396500px;}
.y20e{bottom:995.356500px;}
.yf8{bottom:996.679500px;}
.y107{bottom:996.795000px;}
.y7c{bottom:997.771500px;}
.y7d{bottom:997.966500px;}
.y139{bottom:998.512500px;}
.y20d{bottom:999.051000px;}
.y1bb{bottom:1000.335000px;}
.yf7{bottom:1000.911000px;}
.y2b{bottom:1000.912500px;}
.y7b{bottom:1001.661000px;}
.y299{bottom:1006.890000px;}
.y26d{bottom:1007.971500px;}
.y19f{bottom:1009.813500px;}
.y244{bottom:1010.491500px;}
.y138{bottom:1012.329000px;}
.y20c{bottom:1013.289000px;}
.y19e{bottom:1014.046500px;}
.yf6{bottom:1014.612000px;}
.y137{bottom:1016.445000px;}
.y20b{bottom:1016.983500px;}
.y2a{bottom:1018.845000px;}
.y7a{bottom:1019.344500px;}
.y26c{bottom:1023.328500px;}
.y19d{bottom:1027.863000px;}
.y19c{bottom:1031.979000px;}
.y16d{bottom:1032.544500px;}
.y106{bottom:1032.661500px;}
.y20a{bottom:1033.083000px;}
.y136{bottom:1034.377500px;}
.y29{bottom:1036.777500px;}
.y79{bottom:1037.026500px;}
.y26b{bottom:1039.765500px;}
.y2{bottom:1045.743000px;}
.y135{bottom:1048.078500px;}
.y105{bottom:1050.594000px;}
.y134{bottom:1052.311500px;}
.y28{bottom:1054.710000px;}
.y26a{bottom:1056.204000px;}
.y133{bottom:1068.411000px;}
.y19b{bottom:1068.526500px;}
.y1{bottom:1072.642500px;}
.y27{bottom:1111.497000px;}
.h14{height:8.177276px;}
.h31{height:15.483218px;}
.h32{height:15.504722px;}
.h12{height:20.128680px;}
.h13{height:20.149647px;}
.h33{height:20.644290px;}
.h34{height:20.665794px;}
.h29{height:21.886645px;}
.h10{height:25.181817px;}
.h15{height:26.376668px;}
.h2e{height:27.098229px;}
.h2d{height:27.135813px;}
.h2a{height:29.172075px;}
.h1e{height:29.833916px;}
.h11{height:30.213987px;}
.h30{height:30.987939px;}
.h28{height:36.487860px;}
.h4{height:40.348800px;}
.h37{height:41.310084px;}
.h1d{height:41.842920px;}
.h27{height:43.742934px;}
.h26{height:43.773290px;}
.h3{height:44.831700px;}
.h8{height:46.146763px;}
.h5{height:50.211840px;}
.h16{height:50.639021px;}
.h38{height:50.877276px;}
.h23{height:50.945314px;}
.h22{height:50.987698px;}
.h7{height:51.523916px;}
.h6{height:51.529916px;}
.h35{height:51.632229px;}
.h36{height:51.653734px;}
.h2c{height:54.234042px;}
.ha{height:59.609700px;}
.h2{height:60.254040px;}
.hd{height:60.389700px;}
.he{height:60.924763px;}
.h1f{height:61.073700px;}
.h18{height:61.295700px;}
.h20{height:61.301700px;}
.h1c{height:61.757700px;}
.h1a{height:61.763700px;}
.hb{height:66.301916px;}
.h9{height:66.307916px;}
.hc{height:67.087916px;}
.h1b{height:67.987916px;}
.h19{height:67.993916px;}
.h24{height:68.449916px;}
.h17{height:68.455916px;}
.h21{height:169.830000px;}
.h2b{height:175.972500px;}
.h25{height:245.655000px;}
.hf{height:247.721760px;}
.h2f{height:331.711650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:204.378747px;}
.w5{width:244.653746px;}
.w4{width:259.368746px;}
.w2{width:518.712472px;}
.w6{width:518.712832px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:2.206122px;}
.x25{left:6.074632px;}
.x27{left:9.973384px;}
.x78{left:12.461621px;}
.x77{left:15.047996px;}
.x91{left:18.426190px;}
.x98{left:43.239424px;}
.x79{left:51.430496px;}
.x7a{left:56.009246px;}
.x6e{left:59.477921px;}
.x94{left:62.809409px;}
.x93{left:69.749632px;}
.x6b{left:71.549996px;}
.x6c{left:74.300696px;}
.x6f{left:82.369946px;}
.x6d{left:84.468746px;}
.x90{left:108.111934px;}
.x26{left:112.218155px;}
.x34{left:114.815493px;}
.x28{left:118.576965px;}
.x29{left:119.831704px;}
.x92{left:128.614587px;}
.x2d{left:137.952664px;}
.x8f{left:140.560215px;}
.x53{left:143.700597px;}
.x32{left:145.165355px;}
.x76{left:162.161996px;}
.x2a{left:165.916600px;}
.x6a{left:190.156046px;}
.x69{left:193.177046px;}
.x97{left:198.965517px;}
.x7{left:202.147500px;}
.x39{left:209.884500px;}
.xa{left:211.486500px;}
.x8c{left:212.836500px;}
.x22{left:214.431352px;}
.x2e{left:216.147352px;}
.x8d{left:221.188500px;}
.x8b{left:222.424500px;}
.x8{left:224.563500px;}
.x47{left:226.177500px;}
.xb{left:227.551500px;}
.x9c{left:231.129000px;}
.x5b{left:232.477500px;}
.x4{left:234.735000px;}
.xf{left:238.012500px;}
.x30{left:239.704600px;}
.x40{left:241.998000px;}
.x60{left:243.069000px;}
.x6{left:244.666500px;}
.x3d{left:246.159000px;}
.x61{left:248.941500px;}
.x8a{left:250.086000px;}
.x13{left:252.957000px;}
.x99{left:254.952000px;}
.x9{left:259.165500px;}
.x2{left:260.878500px;}
.x10{left:262.150500px;}
.x18{left:263.418000px;}
.x5{left:269.869500px;}
.x3{left:271.063500px;}
.x43{left:274.869000px;}
.x1d{left:278.955000px;}
.x74{left:280.417500px;}
.x65{left:283.080000px;}
.x2f{left:284.320600px;}
.x37{left:286.354500px;}
.x33{left:293.284984px;}
.x45{left:296.980500px;}
.x8e{left:300.406500px;}
.x14{left:302.710500px;}
.x1{left:304.398000px;}
.x1b{left:307.449000px;}
.x16{left:308.574000px;}
.x50{left:310.497000px;}
.x9d{left:317.619000px;}
.x2b{left:318.755915px;}
.x84{left:325.372500px;}
.x96{left:326.928046px;}
.x1e{left:329.050500px;}
.x3e{left:330.636000px;}
.x2c{left:331.855173px;}
.x48{left:335.277000px;}
.x5a{left:343.075500px;}
.x75{left:345.700500px;}
.x62{left:350.388000px;}
.x85{left:354.169500px;}
.x21{left:356.831896px;}
.x4c{left:377.949000px;}
.x3f{left:380.226000px;}
.x36{left:381.987083px;}
.xa0{left:386.820000px;}
.x1c{left:390.108000px;}
.x35{left:391.335851px;}
.x72{left:398.706000px;}
.x71{left:403.894500px;}
.x46{left:406.624500px;}
.x87{left:412.396500px;}
.x42{left:414.682500px;}
.x49{left:417.718500px;}
.x95{left:423.254704px;}
.x54{left:424.584000px;}
.x31{left:427.580517px;}
.x4b{left:428.791500px;}
.x83{left:430.882500px;}
.x57{left:432.321000px;}
.x86{left:436.428000px;}
.x5d{left:438.436500px;}
.x4d{left:441.673500px;}
.x41{left:460.287000px;}
.x68{left:461.517004px;}
.xa2{left:463.069500px;}
.x24{left:471.199864px;}
.x23{left:473.286520px;}
.x70{left:476.721000px;}
.x82{left:479.628000px;}
.x3a{left:482.140500px;}
.x7c{left:484.999500px;}
.x80{left:486.195000px;}
.x4f{left:494.596500px;}
.x7b{left:498.877500px;}
.x55{left:500.227500px;}
.x3c{left:502.281000px;}
.x5e{left:506.640000px;}
.x81{left:517.075500px;}
.x51{left:526.083000px;}
.x1f{left:527.352000px;}
.x64{left:540.762000px;}
.x7e{left:543.825000px;}
.x63{left:551.503500px;}
.x9f{left:552.790500px;}
.x9e{left:559.902000px;}
.x73{left:562.248000px;}
.xc{left:563.601000px;}
.x3b{left:567.154500px;}
.x19{left:569.319000px;}
.x59{left:572.754000px;}
.x44{left:574.098000px;}
.x5c{left:576.768000px;}
.xa1{left:578.925000px;}
.x11{left:583.183500px;}
.xd{left:587.907000px;}
.x88{left:594.241500px;}
.x66{left:600.424500px;}
.x15{left:602.116500px;}
.x17{left:604.161000px;}
.x12{left:610.920000px;}
.xe{left:612.630000px;}
.x1a{left:618.612000px;}
.x7d{left:622.024500px;}
.x56{left:634.030500px;}
.x38{left:644.875500px;}
.x4e{left:646.714500px;}
.x89{left:659.580000px;}
.x67{left:666.393000px;}
.x4a{left:670.387500px;}
.x58{left:671.653500px;}
.x20{left:674.341500px;}
.x7f{left:680.319000px;}
.x5f{left:699.036000px;}
.x9a{left:701.791500px;}
.x9b{left:705.943500px;}
@media print{
.v6{vertical-align:-13.842705pt;}
.v2{vertical-align:-7.968000pt;}
.vc{vertical-align:-2.656000pt;}
.v7{vertical-align:-1.356937pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.168000pt;}
.vb{vertical-align:6.666667pt;}
.vd{vertical-align:8.504171pt;}
.v3{vertical-align:13.136000pt;}
.v9{vertical-align:15.050667pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:22.628625pt;}
.v4{vertical-align:32.421333pt;}
.va{vertical-align:33.920000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000140pt;}
.lsbb{letter-spacing:0.000267pt;}
.ls38{letter-spacing:0.000479pt;}
.ls0{letter-spacing:0.000891pt;}
.ls5b{letter-spacing:0.000964pt;}
.lsd{letter-spacing:0.001509pt;}
.ls3f{letter-spacing:0.001791pt;}
.ls64{letter-spacing:0.001931pt;}
.lscc{letter-spacing:0.002133pt;}
.lsb7{letter-spacing:0.002205pt;}
.ls93{letter-spacing:0.002489pt;}
.ls6{letter-spacing:0.002906pt;}
.ls7e{letter-spacing:0.003246pt;}
.ls9e{letter-spacing:0.004349pt;}
.lsb3{letter-spacing:0.004352pt;}
.ls12{letter-spacing:0.006015pt;}
.ls5a{letter-spacing:1.474963pt;}
.ls14{letter-spacing:1.480296pt;}
.ls7{letter-spacing:1.900168pt;}
.ls5{letter-spacing:1.905501pt;}
.ls2c{letter-spacing:1.905933pt;}
.ls1a{letter-spacing:1.905975pt;}
.lsaa{letter-spacing:1.911266pt;}
.ls56{letter-spacing:1.911309pt;}
.ls70{letter-spacing:2.652728pt;}
.ls77{letter-spacing:2.654978pt;}
.lsf{letter-spacing:2.660920pt;}
.lsb4{letter-spacing:2.844521pt;}
.lsb5{letter-spacing:2.849855pt;}
.ls25{letter-spacing:2.951264pt;}
.ls30{letter-spacing:2.956597pt;}
.ls19{letter-spacing:3.062231pt;}
.ls7f{letter-spacing:3.800296pt;}
.lsb9{letter-spacing:3.801225pt;}
.ls18{letter-spacing:3.805629pt;}
.ls1f{letter-spacing:3.991170pt;}
.ls57{letter-spacing:3.993638pt;}
.ls5c{letter-spacing:4.699061pt;}
.ls33{letter-spacing:4.944121pt;}
.ls3{letter-spacing:5.547547pt;}
.ls32{letter-spacing:5.552880pt;}
.ls1e{letter-spacing:5.601837pt;}
.ls2b{letter-spacing:5.844780pt;}
.ls29{letter-spacing:5.850113pt;}
.ls28{letter-spacing:6.012540pt;}
.ls4c{letter-spacing:6.955745pt;}
.ls1c{letter-spacing:7.132503pt;}
.ls1d{letter-spacing:7.137837pt;}
.ls3b{letter-spacing:7.375235pt;}
.ls43{letter-spacing:7.376058pt;}
.ls2e{letter-spacing:7.376065pt;}
.ls26{letter-spacing:7.380568pt;}
.ls3d{letter-spacing:7.381391pt;}
.ls22{letter-spacing:7.381399pt;}
.ls2{letter-spacing:8.373759pt;}
.ls4b{letter-spacing:8.855412pt;}
.lsc0{letter-spacing:13.068745pt;}
.ls82{letter-spacing:14.589532pt;}
.lsc3{letter-spacing:14.624964pt;}
.ls44{letter-spacing:14.756349pt;}
.ls3a{letter-spacing:14.756984pt;}
.ls24{letter-spacing:14.757812pt;}
.ls4d{letter-spacing:14.762318pt;}
.ls45{letter-spacing:14.763145pt;}
.ls9c{letter-spacing:14.981812pt;}
.ls36{letter-spacing:15.306318pt;}
.ls92{letter-spacing:15.552479pt;}
.lsc7{letter-spacing:15.716984pt;}
.lsa1{letter-spacing:15.749812pt;}
.lsbd{letter-spacing:15.836521pt;}
.ls54{letter-spacing:16.066510pt;}
.ls46{letter-spacing:16.117812pt;}
.lsac{letter-spacing:16.130079pt;}
.lsbe{letter-spacing:16.459630pt;}
.lsc9{letter-spacing:16.679467pt;}
.lsb0{letter-spacing:16.788984pt;}
.ls97{letter-spacing:16.990400pt;}
.lsd2{letter-spacing:17.069629pt;}
.lsa7{letter-spacing:17.163145pt;}
.ls9f{letter-spacing:17.416687pt;}
.lsd4{letter-spacing:17.442133pt;}
.ls4{letter-spacing:17.712479pt;}
.lsa4{letter-spacing:18.267145pt;}
.lsa0{letter-spacing:18.408687pt;}
.ls8b{letter-spacing:18.501812pt;}
.lsbf{letter-spacing:18.614214pt;}
.lsad{letter-spacing:18.745638pt;}
.ls6d{letter-spacing:18.748503pt;}
.lsab{letter-spacing:18.750972pt;}
.ls6c{letter-spacing:18.753837pt;}
.lsd9{letter-spacing:18.950214pt;}
.lsb6{letter-spacing:19.008964pt;}
.lsb{letter-spacing:19.010387pt;}
.ls8{letter-spacing:19.010906pt;}
.ls42{letter-spacing:19.012349pt;}
.ls51{letter-spacing:19.012352pt;}
.ls21{letter-spacing:19.015720pt;}
.lsd6{letter-spacing:19.275145pt;}
.lsdb{letter-spacing:19.280880pt;}
.ls73{letter-spacing:19.446214pt;}
.ls11{letter-spacing:19.517599pt;}
.lsc5{letter-spacing:19.596521pt;}
.lsda{letter-spacing:19.696880pt;}
.ls74{letter-spacing:19.701454pt;}
.ls76{letter-spacing:19.706787pt;}
.ls88{letter-spacing:19.797812pt;}
.ls9b{letter-spacing:19.925454pt;}
.ls9d{letter-spacing:20.032880pt;}
.lscb{letter-spacing:20.086214pt;}
.ls6e{letter-spacing:20.096880pt;}
.lsc8{letter-spacing:20.107547pt;}
.ls69{letter-spacing:20.133812pt;}
.ls4a{letter-spacing:20.134214pt;}
.lsc2{letter-spacing:20.171547pt;}
.ls31{letter-spacing:20.304880pt;}
.ls39{letter-spacing:20.310214pt;}
.lsd8{letter-spacing:20.358412pt;}
.ls2a{letter-spacing:20.359170pt;}
.ls91{letter-spacing:20.496121pt;}
.lsb2{letter-spacing:20.556521pt;}
.lsc4{letter-spacing:20.663188pt;}
.ls5e{letter-spacing:20.700745pt;}
.ls60{letter-spacing:20.700800pt;}
.ls35{letter-spacing:20.848880pt;}
.lsa3{letter-spacing:20.926020pt;}
.ls99{letter-spacing:20.986318pt;}
.lsa6{letter-spacing:21.156305pt;}
.ls65{letter-spacing:21.387547pt;}
.lsc1{letter-spacing:21.440425pt;}
.ls7b{letter-spacing:21.456394pt;}
.lsbc{letter-spacing:21.521855pt;}
.ls53{letter-spacing:21.616880pt;}
.ls55{letter-spacing:21.622214pt;}
.ls13{letter-spacing:21.663587pt;}
.ls47{letter-spacing:21.670214pt;}
.ls80{letter-spacing:21.730962pt;}
.lsba{letter-spacing:21.857855pt;}
.ls23{letter-spacing:21.895170pt;}
.ls96{letter-spacing:22.171547pt;}
.ls8d{letter-spacing:22.331145pt;}
.lsaf{letter-spacing:22.336880pt;}
.lsdd{letter-spacing:22.374214pt;}
.ls83{letter-spacing:22.464121pt;}
.ls62{letter-spacing:22.779547pt;}
.ls71{letter-spacing:22.801837pt;}
.ls5d{letter-spacing:22.808296pt;}
.ls59{letter-spacing:22.813629pt;}
.ls7c{letter-spacing:22.840296pt;}
.ls58{letter-spacing:23.001638pt;}
.ls2d{letter-spacing:23.004503pt;}
.ls75{letter-spacing:23.072880pt;}
.ls85{letter-spacing:23.125812pt;}
.lscf{letter-spacing:23.131092pt;}
.ls72{letter-spacing:23.168880pt;}
.ls63{letter-spacing:23.245176pt;}
.ls6f{letter-spacing:23.259547pt;}
.ls10{letter-spacing:23.341053pt;}
.ls40{letter-spacing:23.351843pt;}
.ls8a{letter-spacing:23.440121pt;}
.ls50{letter-spacing:23.456880pt;}
.lsc6{letter-spacing:23.493759pt;}
.ls95{letter-spacing:23.563145pt;}
.lsce{letter-spacing:23.580521pt;}
.ls67{letter-spacing:23.598978pt;}
.lsa5{letter-spacing:23.760880pt;}
.ls81{letter-spacing:23.829728pt;}
.lsa9{letter-spacing:23.909812pt;}
.ls48{letter-spacing:23.952121pt;}
.ls49{letter-spacing:23.957454pt;}
.ls68{letter-spacing:24.129837pt;}
.lsd5{letter-spacing:24.213454pt;}
.ls2f{letter-spacing:24.294214pt;}
.lsb1{letter-spacing:24.480880pt;}
.ls15{letter-spacing:24.555547pt;}
.ls27{letter-spacing:24.560880pt;}
.ls7d{letter-spacing:24.562962pt;}
.lsca{letter-spacing:24.646214pt;}
.ls87{letter-spacing:24.741454pt;}
.ls6b{letter-spacing:24.816880pt;}
.ls6a{letter-spacing:24.822214pt;}
.ls37{letter-spacing:24.859547pt;}
.lsd0{letter-spacing:24.971092pt;}
.ls90{letter-spacing:25.552479pt;}
.lsdc{letter-spacing:25.633078pt;}
.ls89{letter-spacing:25.858962pt;}
.ls52{letter-spacing:25.969078pt;}
.ls3c{letter-spacing:26.145837pt;}
.ls5f{letter-spacing:26.251547pt;}
.lscd{letter-spacing:26.278214pt;}
.ls4e{letter-spacing:26.384065pt;}
.ls4f{letter-spacing:26.389399pt;}
.ls98{letter-spacing:26.539547pt;}
.ls20{letter-spacing:26.563733pt;}
.ls9{letter-spacing:26.568027pt;}
.ls34{letter-spacing:26.569067pt;}
.lsd3{letter-spacing:26.742214pt;}
.ls9a{letter-spacing:26.998214pt;}
.ls8c{letter-spacing:27.274787pt;}
.lsb8{letter-spacing:27.381759pt;}
.ls86{letter-spacing:27.570962pt;}
.ls61{letter-spacing:27.840880pt;}
.lsa8{letter-spacing:27.908305pt;}
.ls16{letter-spacing:27.918930pt;}
.ls84{letter-spacing:28.074787pt;}
.lse{letter-spacing:28.155547pt;}
.lsa{letter-spacing:28.363092pt;}
.ls94{letter-spacing:28.501454pt;}
.lsc{letter-spacing:28.886214pt;}
.ls41{letter-spacing:28.896880pt;}
.ls3e{letter-spacing:28.902214pt;}
.ls79{letter-spacing:29.541812pt;}
.lsae{letter-spacing:29.867547pt;}
.ls8f{letter-spacing:30.501454pt;}
.ls8e{letter-spacing:31.271170pt;}
.ls66{letter-spacing:31.750214pt;}
.lsa2{letter-spacing:32.171547pt;}
.ls7a{letter-spacing:33.532503pt;}
.ls78{letter-spacing:33.537837pt;}
.lsd7{letter-spacing:36.770962pt;}
.ls17{letter-spacing:37.835547pt;}
.lsd1{letter-spacing:624.958033pt;}
.ws84{word-spacing:-53.133867pt;}
.ws67{word-spacing:-34.611401pt;}
.ws79{word-spacing:-28.118362pt;}
.ws64{word-spacing:-25.791179pt;}
.ws6a{word-spacing:-25.773947pt;}
.ws65{word-spacing:-25.738045pt;}
.ws1ad{word-spacing:-22.390547pt;}
.ws131{word-spacing:-19.303162pt;}
.ws1c2{word-spacing:-19.145535pt;}
.wsfa{word-spacing:-18.968736pt;}
.ws129{word-spacing:-17.221991pt;}
.ws1f6{word-spacing:-17.129124pt;}
.ws99{word-spacing:-15.593198pt;}
.ws6b{word-spacing:-14.760588pt;}
.ws1b1{word-spacing:-14.349192pt;}
.ws3{word-spacing:-13.652838pt;}
.ws1a1{word-spacing:-13.602304pt;}
.ws28{word-spacing:-13.581016pt;}
.ws132{word-spacing:-13.412648pt;}
.ws133{word-spacing:-13.401499pt;}
.wsbb{word-spacing:-13.333135pt;}
.wsb9{word-spacing:-13.318109pt;}
.ws1fd{word-spacing:-12.895268pt;}
.wsc4{word-spacing:-12.198109pt;}
.ws1c4{word-spacing:-11.908522pt;}
.ws1c0{word-spacing:-11.895703pt;}
.ws20d{word-spacing:-11.552465pt;}
.ws184{word-spacing:-11.514851pt;}
.ws185{word-spacing:-11.506865pt;}
.wsc7{word-spacing:-11.127934pt;}
.wscd{word-spacing:-11.007611pt;}
.ws18c{word-spacing:-10.760169pt;}
.ws7f{word-spacing:-10.703468pt;}
.ws80{word-spacing:-10.702481pt;}
.wsce{word-spacing:-10.537321pt;}
.wsd0{word-spacing:-10.535703pt;}
.ws1d3{word-spacing:-10.383189pt;}
.wsec{word-spacing:-10.345321pt;}
.wsee{word-spacing:-10.333037pt;}
.ws1e9{word-spacing:-9.742481pt;}
.ws141{word-spacing:-9.631611pt;}
.ws186{word-spacing:-9.598371pt;}
.wse9{word-spacing:-9.364522pt;}
.ws1cd{word-spacing:-9.330370pt;}
.ws1a5{word-spacing:-9.234370pt;}
.ws1c9{word-spacing:-9.207703pt;}
.ws1c6{word-spacing:-9.002278pt;}
.ws153{word-spacing:-8.839703pt;}
.ws211{word-spacing:-8.635264pt;}
.ws15b{word-spacing:-8.477502pt;}
.wsc2{word-spacing:-8.441145pt;}
.ws11d{word-spacing:-8.288776pt;}
.wsa9{word-spacing:-7.947987pt;}
.wse7{word-spacing:-7.822479pt;}
.ws1fc{word-spacing:-7.736087pt;}
.ws145{word-spacing:-7.663801pt;}
.ws164{word-spacing:-7.624169pt;}
.ws1d1{word-spacing:-7.546278pt;}
.ws143{word-spacing:-7.450278pt;}
.ws1b2{word-spacing:-7.179568pt;}
.ws1ea{word-spacing:-7.171815pt;}
.ws1b3{word-spacing:-7.169624pt;}
.ws183{word-spacing:-7.165736pt;}
.ws181{word-spacing:-7.163095pt;}
.ws125{word-spacing:-6.907442pt;}
.ws72{word-spacing:-6.716121pt;}
.wsac{word-spacing:-6.624242pt;}
.ws159{word-spacing:-6.322370pt;}
.ws17a{word-spacing:-6.088403pt;}
.wsca{word-spacing:-5.828944pt;}
.ws187{word-spacing:-5.757425pt;}
.ws14f{word-spacing:-5.732944pt;}
.ws12e{word-spacing:-5.519077pt;}
.wsab{word-spacing:-5.300497pt;}
.wsaa{word-spacing:-5.294981pt;}
.ws1a6{word-spacing:-5.140944pt;}
.ws20c{word-spacing:-5.109799pt;}
.ws20b{word-spacing:-5.099264pt;}
.ws123{word-spacing:-4.640776pt;}
.ws188{word-spacing:-4.546836pt;}
.ws16a{word-spacing:-4.085762pt;}
.ws16c{word-spacing:-4.077736pt;}
.ws1fb{word-spacing:-3.870728pt;}
.ws1fa{word-spacing:-3.865359pt;}
.ws1aa{word-spacing:-3.677037pt;}
.ws1a2{word-spacing:-3.368687pt;}
.ws1a3{word-spacing:-2.964870pt;}
.ws10e{word-spacing:-2.805468pt;}
.ws106{word-spacing:-2.752334pt;}
.wsb8{word-spacing:-2.646067pt;}
.wsba{word-spacing:-2.625874pt;}
.wsbc{word-spacing:-2.592933pt;}
.ws12c{word-spacing:-2.528776pt;}
.ws1e5{word-spacing:-2.433531pt;}
.ws223{word-spacing:-2.327263pt;}
.ws3c{word-spacing:-2.220996pt;}
.ws1d9{word-spacing:-2.167862pt;}
.wsaf{word-spacing:-2.156602pt;}
.ws12{word-spacing:-2.128026pt;}
.wsf3{word-spacing:-2.121145pt;}
.wsf4{word-spacing:-2.061594pt;}
.ws45{word-spacing:-2.008460pt;}
.wsc8{word-spacing:-1.955326pt;}
.ws1e0{word-spacing:-1.849059pt;}
.ws1da{word-spacing:-1.795925pt;}
.ws238{word-spacing:-1.793280pt;}
.wsa{word-spacing:-1.745459pt;}
.wsf7{word-spacing:-1.742791pt;}
.ws1e4{word-spacing:-1.689657pt;}
.ws103{word-spacing:-1.636523pt;}
.ws1d8{word-spacing:-1.583389pt;}
.wsb7{word-spacing:-1.531442pt;}
.wsf5{word-spacing:-1.530255pt;}
.wsc5{word-spacing:-1.505874pt;}
.ws1ff{word-spacing:-1.495898pt;}
.wsc3{word-spacing:-1.494210pt;}
.wsc6{word-spacing:-1.477121pt;}
.ws158{word-spacing:-1.471611pt;}
.ws246{word-spacing:-1.410714pt;}
.ws20a{word-spacing:-1.370854pt;}
.wsc{word-spacing:-1.362893pt;}
.ws2f{word-spacing:-1.317720pt;}
.ws22a{word-spacing:-1.264586pt;}
.ws1c1{word-spacing:-1.211452pt;}
.ws1c3{word-spacing:-1.201874pt;}
.ws206{word-spacing:-1.158318pt;}
.ws21a{word-spacing:-1.105184pt;}
.ws22d{word-spacing:-1.075968pt;}
.ws147{word-spacing:-1.066278pt;}
.ws20f{word-spacing:-1.052051pt;}
.ws23f{word-spacing:-1.028147pt;}
.ws218{word-spacing:-0.945783pt;}
.ws2e{word-spacing:-0.892649pt;}
.ws198{word-spacing:-0.861502pt;}
.ws40{word-spacing:-0.839515pt;}
.ws23a{word-spacing:-0.789043pt;}
.wsb5{word-spacing:-0.713145pt;}
.ws22{word-spacing:-0.680113pt;}
.ws232{word-spacing:-0.645581pt;}
.ws114{word-spacing:-0.626980pt;}
.ws10{word-spacing:-0.597760pt;}
.ws221{word-spacing:-0.573846pt;}
.wsbf{word-spacing:-0.560776pt;}
.wscc{word-spacing:-0.520712pt;}
.ws21b{word-spacing:-0.467578pt;}
.ws5d{word-spacing:-0.414444pt;}
.wsf{word-spacing:-0.406477pt;}
.ws104{word-spacing:-0.361310pt;}
.ws10b{word-spacing:-0.308176pt;}
.wsa6{word-spacing:-0.255043pt;}
.ws5{word-spacing:-0.215194pt;}
.wsf0{word-spacing:-0.201909pt;}
.ws11a{word-spacing:-0.191281pt;}
.ws15d{word-spacing:-0.158513pt;}
.ws11b{word-spacing:-0.148775pt;}
.ws1e6{word-spacing:-0.134673pt;}
.wsa8{word-spacing:-0.095641pt;}
.ws19e{word-spacing:-0.053134pt;}
.ws18b{word-spacing:-0.052879pt;}
.ws18d{word-spacing:-0.042507pt;}
.ws16f{word-spacing:-0.019434pt;}
.ws17b{word-spacing:-0.014101pt;}
.ws90{word-spacing:-0.006031pt;}
.ws173{word-spacing:-0.005553pt;}
.ws25{word-spacing:0.000000pt;}
.ws75{word-spacing:0.010627pt;}
.ws117{word-spacing:0.063761pt;}
.ws1fe{word-spacing:0.116895pt;}
.wscf{word-spacing:0.163459pt;}
.ws4d{word-spacing:0.170028pt;}
.ws1eb{word-spacing:0.173534pt;}
.ws244{word-spacing:0.215194pt;}
.ws4f{word-spacing:0.223162pt;}
.wse5{word-spacing:0.229532pt;}
.wse3{word-spacing:0.249891pt;}
.ws235{word-spacing:0.263014pt;}
.ws217{word-spacing:0.276296pt;}
.ws1d2{word-spacing:0.321738pt;}
.ws2c{word-spacing:0.329430pt;}
.wseb{word-spacing:0.346897pt;}
.ws8{word-spacing:0.358656pt;}
.wsea{word-spacing:0.365436pt;}
.wsed{word-spacing:0.366610pt;}
.wsef{word-spacing:0.382564pt;}
.ws191{word-spacing:0.391831pt;}
.ws113{word-spacing:0.392793pt;}
.ws205{word-spacing:0.435698pt;}
.wsd{word-spacing:0.454298pt;}
.ws130{word-spacing:0.541965pt;}
.ws199{word-spacing:0.595099pt;}
.ws11{word-spacing:0.645581pt;}
.ws193{word-spacing:0.648233pt;}
.wsb{word-spacing:0.693402pt;}
.ws35{word-spacing:0.701367pt;}
.ws1d4{word-spacing:0.701436pt;}
.ws250{word-spacing:0.741222pt;}
.ws161{word-spacing:0.754501pt;}
.ws13{word-spacing:0.789043pt;}
.wsfb{word-spacing:0.807635pt;}
.ws245{word-spacing:0.836864pt;}
.ws140{word-spacing:0.860769pt;}
.wsa7{word-spacing:0.913903pt;}
.ws253{word-spacing:0.932506pt;}
.ws118{word-spacing:0.967036pt;}
.ws8a{word-spacing:0.977663pt;}
.ws1f5{word-spacing:0.990944pt;}
.ws124{word-spacing:1.020170pt;}
.ws230{word-spacing:1.028147pt;}
.ws88{word-spacing:1.030797pt;}
.wsd5{word-spacing:1.073304pt;}
.wsd4{word-spacing:1.085603pt;}
.wse{word-spacing:1.123789pt;}
.wsd3{word-spacing:1.126438pt;}
.ws10f{word-spacing:1.179572pt;}
.ws23c{word-spacing:1.219430pt;}
.ws228{word-spacing:1.232706pt;}
.ws24d{word-spacing:1.267251pt;}
.ws3b{word-spacing:1.338973pt;}
.ws1cc{word-spacing:1.351509pt;}
.ws1ce{word-spacing:1.374051pt;}
.ws1d0{word-spacing:1.392107pt;}
.ws1a4{word-spacing:1.445241pt;}
.ws1c7{word-spacing:1.491384pt;}
.ws1c8{word-spacing:1.493463pt;}
.ws1c5{word-spacing:1.498375pt;}
.ws9d{word-spacing:1.551509pt;}
.ws23b{word-spacing:1.554176pt;}
.ws9f{word-spacing:1.604643pt;}
.ws42{word-spacing:1.657777pt;}
.ws1e3{word-spacing:1.703128pt;}
.ws1cb{word-spacing:1.710126pt;}
.ws189{word-spacing:1.710911pt;}
.ws1ca{word-spacing:1.722811pt;}
.ws227{word-spacing:1.764044pt;}
.ws19a{word-spacing:1.817178pt;}
.ws152{word-spacing:1.852726pt;}
.ws3d{word-spacing:1.870312pt;}
.wsa3{word-spacing:1.923446pt;}
.ws41{word-spacing:1.934073pt;}
.ws23d{word-spacing:1.936742pt;}
.ws30{word-spacing:1.976580pt;}
.ws110{word-spacing:2.004008pt;}
.ws33{word-spacing:2.029714pt;}
.ws256{word-spacing:2.032384pt;}
.ws210{word-spacing:2.054245pt;}
.ws243{word-spacing:2.080205pt;}
.ws18f{word-spacing:2.082848pt;}
.ws249{word-spacing:2.128026pt;}
.ws1e{word-spacing:2.135981pt;}
.ws24e{word-spacing:2.175846pt;}
.ws5e{word-spacing:2.189115pt;}
.ws15c{word-spacing:2.229941pt;}
.wsc1{word-spacing:2.242249pt;}
.ws215{word-spacing:2.295383pt;}
.ws95{word-spacing:2.306010pt;}
.ws176{word-spacing:2.348517pt;}
.ws175{word-spacing:2.368900pt;}
.ws11c{word-spacing:2.401651pt;}
.ws23e{word-spacing:2.414950pt;}
.ws34{word-spacing:2.454785pt;}
.ws93{word-spacing:2.465411pt;}
.ws1d6{word-spacing:2.507919pt;}
.ws86{word-spacing:2.518545pt;}
.ws85{word-spacing:2.535741pt;}
.ws1bf{word-spacing:2.561052pt;}
.ws128{word-spacing:2.614186pt;}
.wsdf{word-spacing:2.667320pt;}
.ws2{word-spacing:2.701875pt;}
.ws10d{word-spacing:2.720454pt;}
.ws15{word-spacing:2.749696pt;}
.wsfc{word-spacing:2.773588pt;}
.wse8{word-spacing:2.826722pt;}
.wse6{word-spacing:2.842482pt;}
.ws21{word-spacing:2.879856pt;}
.wsf9{word-spacing:2.890482pt;}
.ws1{word-spacing:2.932989pt;}
.ws1e1{word-spacing:2.937340pt;}
.ws233{word-spacing:2.940979pt;}
.ws3f{word-spacing:2.986123pt;}
.ws134{word-spacing:2.988800pt;}
.ws142{word-spacing:3.039257pt;}
.ws144{word-spacing:3.047116pt;}
.ws1e7{word-spacing:3.052449pt;}
.ws165{word-spacing:3.073653pt;}
.ws163{word-spacing:3.080424pt;}
.ws167{word-spacing:3.080793pt;}
.wsd8{word-spacing:3.092391pt;}
.ws112{word-spacing:3.103018pt;}
.ws7{word-spacing:3.132262pt;}
.ws116{word-spacing:3.145525pt;}
.ws115{word-spacing:3.165436pt;}
.ws21c{word-spacing:3.198659pt;}
.ws24a{word-spacing:3.227904pt;}
.ws12b{word-spacing:3.251793pt;}
.ws5f{word-spacing:3.304927pt;}
.ws248{word-spacing:3.323546pt;}
.ws257{word-spacing:3.371366pt;}
.ws60{word-spacing:3.379314pt;}
.ws14b{word-spacing:3.411194pt;}
.ws172{word-spacing:3.442264pt;}
.ws16d{word-spacing:3.444905pt;}
.wsa4{word-spacing:3.464328pt;}
.ws17{word-spacing:3.467008pt;}
.ws180{word-spacing:3.517462pt;}
.ws17e{word-spacing:3.539459pt;}
.ws182{word-spacing:3.544793pt;}
.ws21e{word-spacing:3.570596pt;}
.ws55{word-spacing:3.676864pt;}
.ws24c{word-spacing:3.706112pt;}
.ws21d{word-spacing:3.729997pt;}
.ws22f{word-spacing:3.753933pt;}
.wsd6{word-spacing:3.783131pt;}
.ws234{word-spacing:3.801754pt;}
.ws52{word-spacing:3.836265pt;}
.ws1e2{word-spacing:3.889399pt;}
.ws10a{word-spacing:3.942533pt;}
.ws1ae{word-spacing:3.955459pt;}
.ws1ac{word-spacing:3.968833pt;}
.ws2d{word-spacing:3.995667pt;}
.ws15a{word-spacing:4.048801pt;}
.ws107{word-spacing:4.101935pt;}
.wsf8{word-spacing:4.155068pt;}
.ws9e{word-spacing:4.165695pt;}
.ws241{word-spacing:4.184320pt;}
.ws31{word-spacing:4.261336pt;}
.wsbd{word-spacing:4.314470pt;}
.ws92{word-spacing:4.325097pt;}
.ws119{word-spacing:4.367604pt;}
.ws39{word-spacing:4.420738pt;}
.ws1ed{word-spacing:4.473872pt;}
.wsa2{word-spacing:4.484498pt;}
.wsdd{word-spacing:4.504102pt;}
.wsdc{word-spacing:4.509603pt;}
.wsde{word-spacing:4.527005pt;}
.ws111{word-spacing:4.537632pt;}
.ws4a{word-spacing:4.633273pt;}
.ws6{word-spacing:4.662528pt;}
.wsc9{word-spacing:4.667121pt;}
.wscb{word-spacing:4.686407pt;}
.ws150{word-spacing:4.739541pt;}
.ws14e{word-spacing:4.763681pt;}
.ws239{word-spacing:4.805990pt;}
.ws4e{word-spacing:4.845809pt;}
.ws203{word-spacing:4.923421pt;}
.ws204{word-spacing:4.952076pt;}
.ws109{word-spacing:4.962703pt;}
.ws32{word-spacing:5.005210pt;}
.ws22b{word-spacing:5.045094pt;}
.ws102{word-spacing:5.046718pt;}
.ws18a{word-spacing:5.053406pt;}
.wsa5{word-spacing:5.058344pt;}
.ws5b{word-spacing:5.104524pt;}
.ws5c{word-spacing:5.111478pt;}
.ws9{word-spacing:5.140736pt;}
.ws78{word-spacing:5.157817pt;}
.ws1dc{word-spacing:5.164612pt;}
.ws76{word-spacing:5.175239pt;}
.ws12f{word-spacing:5.199464pt;}
.ws12d{word-spacing:5.217746pt;}
.wsa0{word-spacing:5.270880pt;}
.ws19f{word-spacing:5.281506pt;}
.ws8b{word-spacing:5.314167pt;}
.ws23{word-spacing:5.324013pt;}
.ws91{word-spacing:5.346028pt;}
.ws51{word-spacing:5.377147pt;}
.ws7c{word-spacing:5.387774pt;}
.ws98{word-spacing:5.412485pt;}
.ws74{word-spacing:5.420148pt;}
.ws7d{word-spacing:5.421074pt;}
.ws83{word-spacing:5.426408pt;}
.ws236{word-spacing:5.427661pt;}
.ws6e{word-spacing:5.428352pt;}
.ws9a{word-spacing:5.430281pt;}
.ws61{word-spacing:5.440908pt;}
.ws62{word-spacing:5.452868pt;}
.ws108{word-spacing:5.483415pt;}
.ws10c{word-spacing:5.536549pt;}
.ws37{word-spacing:5.589683pt;}
.ws20e{word-spacing:5.635763pt;}
.ws4b{word-spacing:5.642817pt;}
.ws43{word-spacing:5.695951pt;}
.ws7a{word-spacing:5.706577pt;}
.ws17d{word-spacing:5.716384pt;}
.ws7b{word-spacing:5.720507pt;}
.ws178{word-spacing:5.734272pt;}
.ws179{word-spacing:5.749084pt;}
.ws19{word-spacing:5.802218pt;}
.ws212{word-spacing:5.810227pt;}
.wsd9{word-spacing:5.855352pt;}
.ws105{word-spacing:5.908486pt;}
.ws6c{word-spacing:5.911557pt;}
.ws6d{word-spacing:5.919113pt;}
.ws126{word-spacing:5.961620pt;}
.wsf6{word-spacing:6.014754pt;}
.ws46{word-spacing:6.067888pt;}
.ws169{word-spacing:6.075561pt;}
.ws197{word-spacing:6.080894pt;}
.ws8c{word-spacing:6.086191pt;}
.ws14{word-spacing:6.097152pt;}
.ws1f0{word-spacing:6.121021pt;}
.wsdb{word-spacing:6.174155pt;}
.ws1a0{word-spacing:6.227289pt;}
.ws237{word-spacing:6.240614pt;}
.ws18e{word-spacing:6.280423pt;}
.ws1dd{word-spacing:6.292481pt;}
.ws66{word-spacing:6.397318pt;}
.ws247{word-spacing:6.431898pt;}
.ws200{word-spacing:6.432732pt;}
.ws50{word-spacing:6.439825pt;}
.ws22e{word-spacing:6.527539pt;}
.ws168{word-spacing:6.599226pt;}
.ws1f7{word-spacing:6.609853pt;}
.ws16b{word-spacing:6.622126pt;}
.ws24f{word-spacing:6.623181pt;}
.ws3e{word-spacing:6.652360pt;}
.ws15f{word-spacing:6.692457pt;}
.ws160{word-spacing:6.705494pt;}
.ws1d7{word-spacing:6.758628pt;}
.ws1af{word-spacing:6.769255pt;}
.ws2a{word-spacing:6.811762pt;}
.ws177{word-spacing:6.817958pt;}
.ws53{word-spacing:6.864896pt;}
.ws1ec{word-spacing:6.875522pt;}
.ws44{word-spacing:6.918029pt;}
.ws252{word-spacing:6.957926pt;}
.ws19d{word-spacing:6.971163pt;}
.ws19c{word-spacing:6.975148pt;}
.ws22c{word-spacing:7.005747pt;}
.ws1a9{word-spacing:7.020842pt;}
.ws1ab{word-spacing:7.024297pt;}
.ws1a8{word-spacing:7.027384pt;}
.ws15e{word-spacing:7.077431pt;}
.wsd7{word-spacing:7.130565pt;}
.ws209{word-spacing:7.183699pt;}
.ws1cf{word-spacing:7.251356pt;}
.ws127{word-spacing:7.289967pt;}
.ws155{word-spacing:7.343100pt;}
.ws9c{word-spacing:7.396234pt;}
.ws1e8{word-spacing:7.449368pt;}
.ws1de{word-spacing:7.470533pt;}
.wse0{word-spacing:7.502502pt;}
.ws1f{word-spacing:7.661904pt;}
.ws226{word-spacing:7.672530pt;}
.ws1b0{word-spacing:7.727546pt;}
.ws26{word-spacing:7.768171pt;}
.ws69{word-spacing:7.821305pt;}
.ws219{word-spacing:7.874439pt;}
.ws11f{word-spacing:7.960881pt;}
.ws121{word-spacing:7.980707pt;}
.ws1db{word-spacing:8.033841pt;}
.ws1f1{word-spacing:8.112891pt;}
.wsf2{word-spacing:8.131384pt;}
.ws1b{word-spacing:8.140108pt;}
.ws1d{word-spacing:8.193242pt;}
.ws14d{word-spacing:8.211722pt;}
.ws190{word-spacing:8.246376pt;}
.ws1be{word-spacing:8.299510pt;}
.ws47{word-spacing:8.310137pt;}
.ws1f4{word-spacing:8.352644pt;}
.ws1ef{word-spacing:8.363271pt;}
.ws20{word-spacing:8.405778pt;}
.ws1bd{word-spacing:8.438033pt;}
.ws24{word-spacing:8.458912pt;}
.ws213{word-spacing:8.470334pt;}
.ws162{word-spacing:8.475121pt;}
.ws19b{word-spacing:8.494429pt;}
.wsa1{word-spacing:8.512045pt;}
.ws27{word-spacing:8.565179pt;}
.ws255{word-spacing:8.583834pt;}
.ws1c{word-spacing:8.618313pt;}
.ws251{word-spacing:8.631654pt;}
.ws36{word-spacing:8.671447pt;}
.ws97{word-spacing:8.682074pt;}
.ws1d5{word-spacing:8.724581pt;}
.ws96{word-spacing:8.735208pt;}
.ws49{word-spacing:8.777715pt;}
.ws4c{word-spacing:8.937116pt;}
.ws2b{word-spacing:8.947743pt;}
.ws38{word-spacing:8.990250pt;}
.ws122{word-spacing:9.043384pt;}
.ws154{word-spacing:9.096518pt;}
.wsb4{word-spacing:9.149652pt;}
.wsb6{word-spacing:9.151576pt;}
.ws56{word-spacing:9.202786pt;}
.ws58{word-spacing:9.216524pt;}
.ws135{word-spacing:9.224039pt;}
.ws194{word-spacing:9.239492pt;}
.ws224{word-spacing:9.251404pt;}
.ws231{word-spacing:9.253325pt;}
.ws196{word-spacing:9.255920pt;}
.ws156{word-spacing:9.309053pt;}
.wsb3{word-spacing:9.372877pt;}
.ws148{word-spacing:9.410841pt;}
.ws146{word-spacing:9.415321pt;}
.wsfd{word-spacing:9.459457pt;}
.ws3a{word-spacing:9.468455pt;}
.ws201{word-spacing:9.521589pt;}
.ws174{word-spacing:9.574723pt;}
.wsd1{word-spacing:9.627857pt;}
.ws6f{word-spacing:9.680991pt;}
.ws1b7{word-spacing:9.734124pt;}
.ws68{word-spacing:9.744751pt;}
.ws166{word-spacing:9.750637pt;}
.ws82{word-spacing:9.797885pt;}
.ws1a{word-spacing:9.840392pt;}
.ws24b{word-spacing:9.874995pt;}
.ws207{word-spacing:9.893526pt;}
.ws214{word-spacing:9.946660pt;}
.ws12a{word-spacing:10.052928pt;}
.ws120{word-spacing:10.063554pt;}
.ws14a{word-spacing:10.072990pt;}
.ws14c{word-spacing:10.091970pt;}
.wsc0{word-spacing:10.106061pt;}
.wsbe{word-spacing:10.159195pt;}
.ws17f{word-spacing:10.206429pt;}
.ws242{word-spacing:10.209741pt;}
.ws54{word-spacing:10.212329pt;}
.ws9b{word-spacing:10.265463pt;}
.ws1ee{word-spacing:10.276090pt;}
.ws157{word-spacing:10.392984pt;}
.ws13f{word-spacing:10.477999pt;}
.ws29{word-spacing:10.531132pt;}
.ws220{word-spacing:10.584266pt;}
.ws216{word-spacing:10.637400pt;}
.ws5a{word-spacing:10.641128pt;}
.ws1df{word-spacing:10.701161pt;}
.ws208{word-spacing:10.743668pt;}
.ws48{word-spacing:10.754295pt;}
.ws21f{word-spacing:10.796802pt;}
.ws17c{word-spacing:10.891741pt;}
.wse4{word-spacing:10.942126pt;}
.wse2{word-spacing:10.956203pt;}
.wse1{word-spacing:10.975500pt;}
.ws13b{word-spacing:11.104389pt;}
.ws192{word-spacing:11.115605pt;}
.ws59{word-spacing:11.196389pt;}
.wsda{word-spacing:11.434408pt;}
.ws171{word-spacing:11.438126pt;}
.ws222{word-spacing:11.540676pt;}
.ws225{word-spacing:11.667404pt;}
.wsff{word-spacing:11.806345pt;}
.ws101{word-spacing:11.822610pt;}
.ws13e{word-spacing:11.859479pt;}
.ws1b9{word-spacing:12.603353pt;}
.wsfe{word-spacing:12.709621pt;}
.ws1b5{word-spacing:13.061465pt;}
.ws1b6{word-spacing:13.081558pt;}
.wsf1{word-spacing:13.301503pt;}
.ws16e{word-spacing:14.144235pt;}
.ws13d{word-spacing:14.190124pt;}
.ws71{word-spacing:14.314264pt;}
.ws149{word-spacing:14.356771pt;}
.ws240{word-spacing:14.465792pt;}
.ws229{word-spacing:14.513555pt;}
.ws11e{word-spacing:14.641059pt;}
.ws8f{word-spacing:15.074867pt;}
.ws57{word-spacing:15.551199pt;}
.ws202{word-spacing:15.960793pt;}
.ws1b4{word-spacing:16.322724pt;}
.ws1f2{word-spacing:16.325681pt;}
.ws170{word-spacing:16.613503pt;}
.ws254{word-spacing:16.665549pt;}
.ws89{word-spacing:16.860874pt;}
.ws16{word-spacing:17.080922pt;}
.ws100{word-spacing:18.481385pt;}
.ws94{word-spacing:18.596853pt;}
.ws87{word-spacing:18.649987pt;}
.ws77{word-spacing:18.690145pt;}
.ws73{word-spacing:18.938803pt;}
.ws8d{word-spacing:20.103361pt;}
.ws8e{word-spacing:20.843524pt;}
.ws13c{word-spacing:21.582977pt;}
.ws13a{word-spacing:21.595567pt;}
.ws7e{word-spacing:21.944287pt;}
.ws63{word-spacing:21.952575pt;}
.ws137{word-spacing:22.379985pt;}
.ws151{word-spacing:22.452948pt;}
.wsd2{word-spacing:23.846639pt;}
.ws1bb{word-spacing:24.182714pt;}
.ws1bc{word-spacing:24.186536pt;}
.ws1a7{word-spacing:24.708948pt;}
.ws1b8{word-spacing:25.568017pt;}
.ws136{word-spacing:26.099355pt;}
.ws4{word-spacing:26.515067pt;}
.ws195{word-spacing:26.931370pt;}
.ws81{word-spacing:26.992004pt;}
.ws138{word-spacing:28.065308pt;}
.ws0{word-spacing:28.615887pt;}
.ws1ba{word-spacing:28.968584pt;}
.ws70{word-spacing:32.252257pt;}
.ws139{word-spacing:39.284948pt;}
.ws18{word-spacing:71.667439pt;}
.ws1f3{word-spacing:125.696973pt;}
.ws1f9{word-spacing:172.982362pt;}
.wsb2{word-spacing:196.787231pt;}
.wsb1{word-spacing:219.674748pt;}
.wsad{word-spacing:382.669867pt;}
.ws1f8{word-spacing:421.462684pt;}
.wsae{word-spacing:567.341022pt;}
.wsb0{word-spacing:700.541304pt;}
._1a{margin-left:-635.846768pt;}
._30{margin-left:-225.968028pt;}
._1f{margin-left:-208.253272pt;}
._1c{margin-left:-203.358367pt;}
._1e{margin-left:-182.137344pt;}
._25{margin-left:-179.021906pt;}
._28{margin-left:-174.376961pt;}
._18{margin-left:-139.968980pt;}
._1b{margin-left:-138.175407pt;}
._1d{margin-left:-134.067624pt;}
._17{margin-left:-125.163216pt;}
._19{margin-left:-120.943045pt;}
._26{margin-left:-119.056196pt;}
._24{margin-left:-100.292375pt;}
._21{margin-left:-96.206361pt;}
._20{margin-left:-62.836900pt;}
._43{margin-left:-61.556645pt;}
._27{margin-left:-56.719776pt;}
._22{margin-left:-49.341727pt;}
._23{margin-left:-42.570711pt;}
._47{margin-left:-27.852782pt;}
._48{margin-left:-25.918655pt;}
._4a{margin-left:-19.720241pt;}
._49{margin-left:-18.490490pt;}
._e{margin-left:-5.993540pt;}
._4{margin-left:-4.256051pt;}
._b{margin-left:-3.300699pt;}
._2{margin-left:-2.371905pt;}
._3{margin-left:-1.195520pt;}
._5{width:1.338982pt;}
._0{width:2.371905pt;}
._a{width:3.753386pt;}
._1{width:4.743810pt;}
._11{width:6.519772pt;}
._13{width:7.587318pt;}
._c{width:9.757513pt;}
._6{width:14.135822pt;}
._2b{width:15.389702pt;}
._15{width:16.820939pt;}
._16{width:18.630868pt;}
._14{width:19.632812pt;}
._8{width:20.984698pt;}
._12{width:21.949113pt;}
._2c{width:23.038353pt;}
._7{width:24.077098pt;}
._d{width:25.510602pt;}
._f{width:26.588146pt;}
._10{width:28.788428pt;}
._3f{width:29.952407pt;}
._46{width:31.162499pt;}
._2d{width:32.825915pt;}
._2e{width:34.567626pt;}
._45{width:38.339252pt;}
._31{width:41.399352pt;}
._3e{width:44.999373pt;}
._2a{width:61.103947pt;}
._3a{width:65.017153pt;}
._29{width:71.731200pt;}
._34{width:88.564122pt;}
._37{width:103.465076pt;}
._3d{width:120.173670pt;}
._38{width:123.090739pt;}
._2f{width:127.107686pt;}
._3b{width:128.973761pt;}
._33{width:141.721716pt;}
._36{width:144.466637pt;}
._39{width:145.805619pt;}
._32{width:150.731162pt;}
._9{width:151.687578pt;}
._3c{width:154.700288pt;}
._35{width:160.104038pt;}
._44{width:190.533877pt;}
._41{width:199.982235pt;}
._42{width:248.536774pt;}
._40{width:621.736924pt;}
.fs9{font-size:9.518080pt;}
.fsa{font-size:9.542485pt;}
.fs1b{font-size:14.989195pt;}
.fs17{font-size:17.103360pt;}
.fs18{font-size:17.127115pt;}
.fs19{font-size:22.804480pt;}
.fs1a{font-size:22.828235pt;}
.fs7{font-size:23.429120pt;}
.fs8{font-size:23.453525pt;}
.fs11{font-size:25.475333pt;}
.fs5{font-size:29.310805pt;}
.fs15{font-size:31.724000pt;}
.fs14{font-size:31.768000pt;}
.fs12{font-size:33.955333pt;}
.fs16{font-size:34.230475pt;}
.fs6{font-size:35.168085pt;}
.fsb{font-size:35.192491pt;}
.fs4{font-size:37.193600pt;}
.fs10{font-size:42.470667pt;}
.fs1e{font-size:45.632715pt;}
.fs2{font-size:47.820800pt;}
.fsf{font-size:50.915333pt;}
.fse{font-size:50.950667pt;}
.fs1{font-size:53.133867pt;}
.fs1c{font-size:57.034955pt;}
.fs1d{font-size:57.058709pt;}
.fsd{font-size:59.298667pt;}
.fsc{font-size:59.348000pt;}
.fs13{font-size:63.492000pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:7.095851pt;}
.y112{bottom:14.047667pt;}
.yb4{bottom:20.805547pt;}
.yb2{bottom:25.679292pt;}
.ybc{bottom:30.872747pt;}
.yac{bottom:31.446272pt;}
.yb0{bottom:36.010069pt;}
.yaf{bottom:43.046127pt;}
.y1e3{bottom:43.874869pt;}
.y15f{bottom:47.117000pt;}
.y1de{bottom:52.640341pt;}
.y113{bottom:57.152667pt;}
.yab{bottom:57.406225pt;}
.y161{bottom:60.412933pt;}
.ya6{bottom:63.527083pt;}
.yc0{bottom:66.528939pt;}
.y17e{bottom:69.225200pt;}
.y180{bottom:71.161200pt;}
.ybd{bottom:76.222737pt;}
.y1dd{bottom:76.720447pt;}
.y17d{bottom:78.746800pt;}
.y160{bottom:78.821600pt;}
.y17f{bottom:80.687200pt;}
.ybf{bottom:81.013504pt;}
.yaa{bottom:83.375940pt;}
.y111{bottom:84.123200pt;}
.y15b{bottom:91.018667pt;}
.ybe{bottom:91.500476pt;}
.y1f1{bottom:94.199131pt;}
.y163{bottom:97.007667pt;}
.y1eb{bottom:107.841436pt;}
.y1ec{bottom:108.736987pt;}
.ya9{bottom:109.335893pt;}
.ya8{bottom:109.977754pt;}
.y110{bottom:110.763200pt;}
.y17c{bottom:113.608000pt;}
.y162{bottom:113.914667pt;}
.y1ea{bottom:114.687531pt;}
.yad{bottom:120.428117pt;}
.yba{bottom:129.523985pt;}
.y182{bottom:131.815200pt;}
.yb3{bottom:132.379409pt;}
.yae{bottom:133.912064pt;}
.y10f{bottom:135.627200pt;}
.y15e{bottom:136.934333pt;}
.ya7{bottom:137.987755pt;}
.y181{bottom:141.341200pt;}
.yb1{bottom:141.653436pt;}
.yb8{bottom:148.140373pt;}
.y1ee{bottom:155.901877pt;}
.y1e2{bottom:158.403244pt;}
.y1f2{bottom:164.413174pt;}
.y1e1{bottom:167.916988pt;}
.y1e6{bottom:169.335141pt;}
.yb9{bottom:170.991087pt;}
.y15d{bottom:175.034267pt;}
.y1ed{bottom:176.112348pt;}
.y1e0{bottom:177.423605pt;}
.ya4{bottom:181.094895pt;}
.yb7{bottom:182.759339pt;}
.y1df{bottom:186.937349pt;}
.yb6{bottom:195.913813pt;}
.ybb{bottom:197.397658pt;}
.y1e5{bottom:197.467793pt;}
.y15c{bottom:198.848933pt;}
.y1e4{bottom:204.306762pt;}
.ya5{bottom:208.201899pt;}
.y1f0{bottom:212.635148pt;}
.y1e9{bottom:219.856566pt;}
.y1ef{bottom:225.391404pt;}
.y1f3{bottom:225.438913pt;}
.y1e8{bottom:226.695535pt;}
.y19a{bottom:233.636000pt;}
.y26{bottom:237.294667pt;}
.yf5{bottom:249.625333pt;}
.y77{bottom:249.777333pt;}
.y78{bottom:249.950667pt;}
.y199{bottom:251.605333pt;}
.y269{bottom:251.906667pt;}
.y25{bottom:253.234667pt;}
.y198{bottom:255.368000pt;}
.y1e7{bottom:261.135051pt;}
.y268{bottom:266.518667pt;}
.y24{bottom:269.174667pt;}
.y196{bottom:269.678667pt;}
.y197{bottom:269.781333pt;}
.y76{bottom:270.393333pt;}
.y195{bottom:273.440000pt;}
.y51{bottom:274.106667pt;}
.y164{bottom:275.185333pt;}
.y298{bottom:280.169333pt;}
.y267{bottom:280.329333pt;}
.y16c{bottom:281.457333pt;}
.y75{bottom:283.454667pt;}
.yf4{bottom:285.114667pt;}
.y23{bottom:285.116000pt;}
.y23b{bottom:285.436000pt;}
.y74{bottom:286.738667pt;}
.y194{bottom:289.381333pt;}
.y50{bottom:290.046667pt;}
.y297{bottom:294.780000pt;}
.y266{bottom:294.941333pt;}
.y73{bottom:299.801333pt;}
.y1d1{bottom:300.178667pt;}
.y22{bottom:301.056000pt;}
.y23a{bottom:301.376000pt;}
.y1db{bottom:301.720000pt;}
.y15a{bottom:303.081333pt;}
.y72{bottom:303.085333pt;}
.y193{bottom:305.321333pt;}
.y4f{bottom:305.986667pt;}
.y296{bottom:308.430667pt;}
.y265{bottom:309.553333pt;}
.y71{bottom:316.146667pt;}
.y21{bottom:316.996000pt;}
.y239{bottom:317.316000pt;}
.y183{bottom:318.758667pt;}
.y70{bottom:319.430667pt;}
.y192{bottom:321.261333pt;}
.y4e{bottom:321.928000pt;}
.y295{bottom:323.042667pt;}
.y264{bottom:323.365333pt;}
.y132{bottom:329.174667pt;}
.y20{bottom:332.936000pt;}
.y238{bottom:333.256000pt;}
.y1da{bottom:333.600000pt;}
.yda{bottom:335.726667pt;}
.y6f{bottom:335.777333pt;}
.y294{bottom:336.692000pt;}
.y191{bottom:337.201333pt;}
.y4d{bottom:337.868000pt;}
.y263{bottom:337.976000pt;}
.y17b{bottom:346.653333pt;}
.y131{bottom:347.246667pt;}
.y1f{bottom:348.876000pt;}
.y237{bottom:349.197333pt;}
.y6e{bottom:349.650667pt;}
.y130{bottom:351.009333pt;}
.y293{bottom:351.304000pt;}
.y262{bottom:352.588000pt;}
.y6d{bottom:352.934667pt;}
.y190{bottom:353.141333pt;}
.y4c{bottom:353.808000pt;}
.ya2{bottom:364.816000pt;}
.y1e{bottom:364.817333pt;}
.y236{bottom:365.137333pt;}
.y18f{bottom:365.422667pt;}
.y292{bottom:365.916000pt;}
.y12f{bottom:366.949333pt;}
.y18e{bottom:369.081333pt;}
.y6c{bottom:369.281333pt;}
.y4b{bottom:369.748000pt;}
.y261{bottom:379.137333pt;}
.y291{bottom:379.566667pt;}
.yf3{bottom:380.756000pt;}
.y1d{bottom:380.757333pt;}
.yd9{bottom:381.024000pt;}
.y235{bottom:381.077333pt;}
.y18d{bottom:381.364000pt;}
.y12e{bottom:382.889333pt;}
.y208{bottom:383.298667pt;}
.y209{bottom:383.962667pt;}
.y18c{bottom:385.022667pt;}
.y4a{bottom:385.688000pt;}
.y16b{bottom:393.038667pt;}
.y290{bottom:394.178667pt;}
.y1c{bottom:396.697333pt;}
.yd8{bottom:396.965333pt;}
.y234{bottom:397.017333pt;}
.y6b{bottom:397.472000pt;}
.y12d{bottom:398.829333pt;}
.y206{bottom:399.238667pt;}
.y18b{bottom:399.333333pt;}
.y207{bottom:399.902667pt;}
.y49{bottom:401.629333pt;}
.y18a{bottom:403.094667pt;}
.y28f{bottom:408.789333pt;}
.y1b{bottom:412.637333pt;}
.yd7{bottom:412.905333pt;}
.y233{bottom:412.957333pt;}
.y6a{bottom:413.412000pt;}
.y12c{bottom:414.769333pt;}
.y204{bottom:415.178667pt;}
.y205{bottom:415.844000pt;}
.y48{bottom:417.569333pt;}
.y260{bottom:418.442667pt;}
.y189{bottom:419.034667pt;}
.y28e{bottom:423.401333pt;}
.yd6{bottom:425.082667pt;}
.y12b{bottom:426.948000pt;}
.y1a{bottom:428.577333pt;}
.yd5{bottom:428.845333pt;}
.y232{bottom:428.898667pt;}
.y69{bottom:429.352000pt;}
.y12a{bottom:430.710667pt;}
.y203{bottom:431.120000pt;}
.y47{bottom:433.509333pt;}
.y25f{bottom:434.382667pt;}
.y188{bottom:434.976000pt;}
.ya1{bottom:436.988000pt;}
.y28d{bottom:437.052000pt;}
.yf2{bottom:440.756000pt;}
.yd4{bottom:443.156000pt;}
.yf1{bottom:444.517333pt;}
.y231{bottom:444.838667pt;}
.y128{bottom:445.021333pt;}
.y129{bottom:445.124000pt;}
.yd3{bottom:446.918667pt;}
.y201{bottom:447.060000pt;}
.y202{bottom:447.724000pt;}
.y127{bottom:448.782667pt;}
.y46{bottom:449.449333pt;}
.y25e{bottom:450.322667pt;}
.y187{bottom:450.916000pt;}
.y28c{bottom:451.664000pt;}
.ya0{bottom:452.928000pt;}
.y16a{bottom:453.341333pt;}
.y115{bottom:455.204000pt;}
.y68{bottom:456.214667pt;}
.yf0{bottom:458.828000pt;}
.y104{bottom:460.457333pt;}
.y1d9{bottom:460.458667pt;}
.y230{bottom:460.778667pt;}
.yd2{bottom:461.229333pt;}
.yef{bottom:462.590667pt;}
.y19{bottom:462.949333pt;}
.y1ff{bottom:463.000000pt;}
.y126{bottom:463.093333pt;}
.y186{bottom:463.197333pt;}
.y200{bottom:463.664000pt;}
.yd1{bottom:464.990667pt;}
.y45{bottom:465.389333pt;}
.y28b{bottom:466.276000pt;}
.y125{bottom:466.856000pt;}
.y9f{bottom:468.868000pt;}
.y169{bottom:469.281333pt;}
.y114{bottom:469.816000pt;}
.y67{bottom:472.154667pt;}
.y103{bottom:476.397333pt;}
.y22f{bottom:476.718667pt;}
.yd0{bottom:477.272000pt;}
.yee{bottom:478.530667pt;}
.y1fe{bottom:478.940000pt;}
.y184{bottom:479.034667pt;}
.y185{bottom:479.137333pt;}
.y28a{bottom:480.888000pt;}
.ycf{bottom:480.930667pt;}
.y44{bottom:481.329333pt;}
.y168{bottom:481.562667pt;}
.y124{bottom:482.796000pt;}
.y167{bottom:485.221333pt;}
.y25d{bottom:486.972000pt;}
.y1ba{bottom:491.224000pt;}
.y102{bottom:492.338667pt;}
.y22e{bottom:492.658667pt;}
.yce{bottom:493.213333pt;}
.yed{bottom:494.470667pt;}
.y9e{bottom:494.546667pt;}
.y1fd{bottom:494.880000pt;}
.y123{bottom:495.077333pt;}
.y289{bottom:495.498667pt;}
.ycd{bottom:496.872000pt;}
.y43{bottom:497.270667pt;}
.y10e{bottom:497.710667pt;}
.y122{bottom:498.736000pt;}
.y66{bottom:499.938667pt;}
.y166{bottom:501.162667pt;}
.y25c{bottom:502.912000pt;}
.y101{bottom:508.278667pt;}
.yec{bottom:508.781333pt;}
.y218{bottom:509.076000pt;}
.y288{bottom:509.149333pt;}
.ycc{bottom:509.153333pt;}
.y18{bottom:510.050667pt;}
.y9d{bottom:510.265333pt;}
.y1fb{bottom:510.820000pt;}
.y1fc{bottom:511.485333pt;}
.yeb{bottom:512.544000pt;}
.ycb{bottom:512.812000pt;}
.y243{bottom:513.210667pt;}
.y121{bottom:514.676000pt;}
.y65{bottom:516.285333pt;}
.y17a{bottom:516.337333pt;}
.y165{bottom:517.102667pt;}
.y42{bottom:518.142667pt;}
.y25b{bottom:518.852000pt;}
.y217{bottom:523.688000pt;}
.y287{bottom:523.761333pt;}
.y100{bottom:524.218667pt;}
.y17{bottom:524.662667pt;}
.yea{bottom:524.825333pt;}
.yca{bottom:524.989333pt;}
.y9c{bottom:525.761333pt;}
.y22d{bottom:526.142667pt;}
.y1fa{bottom:526.761333pt;}
.ye9{bottom:528.484000pt;}
.yc9{bottom:528.752000pt;}
.y120{bottom:530.617333pt;}
.y64{bottom:532.225333pt;}
.y179{bottom:532.278667pt;}
.y1b9{bottom:532.616000pt;}
.y1d0{bottom:532.657333pt;}
.y41{bottom:534.082667pt;}
.y25a{bottom:534.792000pt;}
.y1d8{bottom:536.877333pt;}
.y9b{bottom:538.194667pt;}
.y286{bottom:538.373333pt;}
.yff{bottom:540.158667pt;}
.ye8{bottom:540.662667pt;}
.y9a{bottom:541.478667pt;}
.y159{bottom:541.865333pt;}
.y1f9{bottom:542.701333pt;}
.ye7{bottom:544.424000pt;}
.yc8{bottom:544.692000pt;}
.y1cf{bottom:545.313333pt;}
.y11f{bottom:546.557333pt;}
.y63{bottom:548.165333pt;}
.y178{bottom:548.218667pt;}
.y16{bottom:548.240000pt;}
.y1b8{bottom:548.557333pt;}
.y1ce{bottom:548.597333pt;}
.y40{bottom:550.022667pt;}
.y259{bottom:550.732000pt;}
.y285{bottom:552.985333pt;}
.y99{bottom:553.913333pt;}
.y158{bottom:554.044000pt;}
.y157{bottom:554.522667pt;}
.yfe{bottom:556.098667pt;}
.ye5{bottom:556.602667pt;}
.ye6{bottom:556.705333pt;}
.y98{bottom:557.197333pt;}
.y156{bottom:557.805333pt;}
.y1d7{bottom:558.158667pt;}
.y11e{bottom:558.734667pt;}
.ye4{bottom:560.364000pt;}
.y177{bottom:560.500000pt;}
.yc7{bottom:560.632000pt;}
.y1f7{bottom:561.182667pt;}
.y1f8{bottom:561.848000pt;}
.y11d{bottom:562.497333pt;}
.y15{bottom:562.852000pt;}
.y176{bottom:564.158667pt;}
.y1b7{bottom:564.497333pt;}
.y62{bottom:564.512000pt;}
.y1cd{bottom:564.537333pt;}
.y3f{bottom:565.962667pt;}
.y258{bottom:566.672000pt;}
.y284{bottom:567.596000pt;}
.y22c{bottom:570.253333pt;}
.y97{bottom:571.064000pt;}
.yfd{bottom:572.040000pt;}
.y155{bottom:572.117333pt;}
.yc6{bottom:572.913333pt;}
.y96{bottom:574.348000pt;}
.y154{bottom:575.878667pt;}
.ye3{bottom:576.304000pt;}
.yc5{bottom:576.572000pt;}
.y11b{bottom:576.808000pt;}
.y11c{bottom:576.912000pt;}
.y1f6{bottom:577.124000pt;}
.y14{bottom:577.464000pt;}
.y175{bottom:578.469333pt;}
.y1d6{bottom:579.438667pt;}
.y1b6{bottom:580.437333pt;}
.y1cc{bottom:580.477333pt;}
.y11a{bottom:580.570667pt;}
.y61{bottom:580.857333pt;}
.y283{bottom:581.246667pt;}
.y3e{bottom:581.902667pt;}
.y174{bottom:582.232000pt;}
.y257{bottom:582.613333pt;}
.y22b{bottom:586.193333pt;}
.yc3{bottom:588.750667pt;}
.yc4{bottom:588.854667pt;}
.y95{bottom:590.288000pt;}
.y153{bottom:591.818667pt;}
.y13{bottom:592.076000pt;}
.ye2{bottom:592.245333pt;}
.yc2{bottom:592.513333pt;}
.y1f5{bottom:593.064000pt;}
.y282{bottom:595.858667pt;}
.y1b5{bottom:596.377333pt;}
.y1cb{bottom:596.418667pt;}
.y119{bottom:596.510667pt;}
.y173{bottom:596.542667pt;}
.yfc{bottom:596.705333pt;}
.y60{bottom:596.798667pt;}
.y3d{bottom:597.844000pt;}
.y256{bottom:598.553333pt;}
.y172{bottom:600.304000pt;}
.y1d5{bottom:600.720000pt;}
.y22a{bottom:602.133333pt;}
.y94{bottom:605.784000pt;}
.y12{bottom:606.688000pt;}
.y152{bottom:607.758667pt;}
.ye1{bottom:608.185333pt;}
.y281{bottom:609.508000pt;}
.y1b4{bottom:612.317333pt;}
.y1ca{bottom:612.358667pt;}
.y118{bottom:612.450667pt;}
.y3c{bottom:613.784000pt;}
.y255{bottom:614.493333pt;}
.y171{bottom:614.614667pt;}
.y229{bottom:618.074667pt;}
.y170{bottom:618.377333pt;}
.y150{bottom:619.937333pt;}
.y151{bottom:620.416000pt;}
.y11{bottom:621.300000pt;}
.y93{bottom:621.502667pt;}
.y1d4{bottom:622.001333pt;}
.y14f{bottom:623.700000pt;}
.y280{bottom:624.120000pt;}
.ye0{bottom:624.125333pt;}
.y5f{bottom:624.988000pt;}
.y1b3{bottom:628.257333pt;}
.y1c9{bottom:628.298667pt;}
.y117{bottom:628.390667pt;}
.y3b{bottom:629.724000pt;}
.y254{bottom:630.433333pt;}
.y228{bottom:634.014667pt;}
.y16f{bottom:634.317333pt;}
.yfb{bottom:634.656000pt;}
.y10{bottom:635.912000pt;}
.y92{bottom:637.221333pt;}
.y27f{bottom:638.732000pt;}
.yc1{bottom:639.546667pt;}
.y14e{bottom:639.640000pt;}
.ydf{bottom:640.065333pt;}
.y5e{bottom:640.929333pt;}
.y1f4{bottom:643.992000pt;}
.y1b2{bottom:644.198667pt;}
.y1c8{bottom:644.238667pt;}
.y116{bottom:644.330667pt;}
.y3a{bottom:645.664000pt;}
.y253{bottom:646.373333pt;}
.y1d3{bottom:646.604000pt;}
.y91{bottom:649.877333pt;}
.y227{bottom:649.954667pt;}
.y16e{bottom:650.257333pt;}
.yf{bottom:650.524000pt;}
.yfa{bottom:650.596000pt;}
.yde{bottom:652.346667pt;}
.y27e{bottom:652.382667pt;}
.y90{bottom:653.161333pt;}
.y14d{bottom:655.580000pt;}
.ydd{bottom:656.005333pt;}
.y1b1{bottom:660.138667pt;}
.y1c7{bottom:660.178667pt;}
.y242{bottom:661.604000pt;}
.y252{bottom:662.313333pt;}
.ye{bottom:665.136000pt;}
.y226{bottom:665.894667pt;}
.y39{bottom:666.536000pt;}
.y27d{bottom:666.994667pt;}
.y8f{bottom:667.249333pt;}
.ya3{bottom:667.442667pt;}
.y5d{bottom:667.790667pt;}
.y8e{bottom:670.533333pt;}
.y14c{bottom:671.520000pt;}
.y1dc{bottom:671.886667pt;}
.ydc{bottom:671.946667pt;}
.y1b0{bottom:676.078667pt;}
.y1c6{bottom:676.120000pt;}
.y241{bottom:677.544000pt;}
.y251{bottom:678.254667pt;}
.y1d2{bottom:678.549333pt;}
.yd{bottom:679.746667pt;}
.y27c{bottom:680.644000pt;}
.y225{bottom:681.834667pt;}
.y38{bottom:682.476000pt;}
.y8d{bottom:682.968000pt;}
.y14a{bottom:683.698667pt;}
.y5c{bottom:683.730667pt;}
.y14b{bottom:684.176000pt;}
.y8c{bottom:686.252000pt;}
.y149{bottom:687.460000pt;}
.y1af{bottom:692.018667pt;}
.y1c5{bottom:692.060000pt;}
.y240{bottom:693.485333pt;}
.y250{bottom:694.194667pt;}
.yc{bottom:694.358667pt;}
.ydb{bottom:694.480000pt;}
.y27b{bottom:695.256000pt;}
.y224{bottom:697.774667pt;}
.y37{bottom:698.416000pt;}
.y5b{bottom:699.672000pt;}
.y8b{bottom:701.748000pt;}
.y2a5{bottom:705.058667pt;}
.y1ae{bottom:707.958667pt;}
.y1c4{bottom:708.000000pt;}
.yb{bottom:708.970667pt;}
.y23f{bottom:709.425333pt;}
.y27a{bottom:709.868000pt;}
.y24f{bottom:710.134667pt;}
.y10d{bottom:710.698667pt;}
.y148{bottom:712.224000pt;}
.y223{bottom:713.716000pt;}
.y36{bottom:714.357333pt;}
.y8a{bottom:714.404000pt;}
.y5a{bottom:715.612000pt;}
.y89{bottom:717.688000pt;}
.y2a4{bottom:719.670667pt;}
.y279{bottom:723.517333pt;}
.ya{bottom:723.582667pt;}
.y1ad{bottom:723.898667pt;}
.y1c3{bottom:723.940000pt;}
.y23e{bottom:725.365333pt;}
.y24e{bottom:726.074667pt;}
.y10c{bottom:726.638667pt;}
.y147{bottom:728.164000pt;}
.y222{bottom:729.976000pt;}
.y35{bottom:730.297333pt;}
.y59{bottom:731.552000pt;}
.y88{bottom:733.184000pt;}
.y2a3{bottom:734.282667pt;}
.y278{bottom:738.129333pt;}
.y9{bottom:738.194667pt;}
.y1ac{bottom:739.840000pt;}
.y23d{bottom:741.305333pt;}
.y24d{bottom:742.014667pt;}
.y10b{bottom:742.578667pt;}
.y146{bottom:744.104000pt;}
.y221{bottom:745.916000pt;}
.y34{bottom:746.237333pt;}
.y58{bottom:747.492000pt;}
.y2a2{bottom:748.894667pt;}
.y87{bottom:748.902667pt;}
.y1c2{bottom:752.044000pt;}
.y277{bottom:752.741333pt;}
.y8{bottom:752.806667pt;}
.y1ab{bottom:755.780000pt;}
.y23c{bottom:757.245333pt;}
.y24c{bottom:757.956000pt;}
.y10a{bottom:758.518667pt;}
.y145{bottom:760.045333pt;}
.y220{bottom:761.857333pt;}
.y33{bottom:762.177333pt;}
.y57{bottom:763.432000pt;}
.y2a1{bottom:763.505333pt;}
.y86{bottom:764.620000pt;}
.y276{bottom:766.392000pt;}
.y7{bottom:767.418667pt;}
.y1c1{bottom:768.497333pt;}
.y1aa{bottom:771.720000pt;}
.y24b{bottom:773.896000pt;}
.y144{bottom:775.985333pt;}
.y21f{bottom:777.797333pt;}
.y32{bottom:778.117333pt;}
.y56{bottom:779.372000pt;}
.y85{bottom:780.338667pt;}
.y275{bottom:781.004000pt;}
.y6{bottom:782.030667pt;}
.y1c0{bottom:784.949333pt;}
.y1a9{bottom:787.660000pt;}
.y143{bottom:788.266667pt;}
.y24a{bottom:789.836000pt;}
.y216{bottom:790.749333pt;}
.y142{bottom:791.925333pt;}
.y2a0{bottom:792.729333pt;}
.y21e{bottom:793.737333pt;}
.y31{bottom:794.057333pt;}
.y55{bottom:795.313333pt;}
.y274{bottom:795.616000pt;}
.y84{bottom:796.057333pt;}
.y1bf{bottom:801.401333pt;}
.y1a8{bottom:803.600000pt;}
.y141{bottom:804.206667pt;}
.y249{bottom:805.776000pt;}
.y215{bottom:806.689333pt;}
.y29f{bottom:807.341333pt;}
.y140{bottom:807.865333pt;}
.y21d{bottom:809.677333pt;}
.y30{bottom:809.998667pt;}
.y273{bottom:810.226667pt;}
.y54{bottom:811.253333pt;}
.y83{bottom:811.553333pt;}
.y1a7{bottom:819.540000pt;}
.y248{bottom:821.716000pt;}
.y29e{bottom:821.953333pt;}
.y109{bottom:822.280000pt;}
.y214{bottom:822.629333pt;}
.y13f{bottom:823.805333pt;}
.y272{bottom:823.877333pt;}
.y21c{bottom:825.617333pt;}
.y2f{bottom:825.938667pt;}
.y53{bottom:827.193333pt;}
.y82{bottom:827.493333pt;}
.y1be{bottom:830.018667pt;}
.y1a6{bottom:831.822667pt;}
.y213{bottom:835.285333pt;}
.y1a5{bottom:835.481333pt;}
.y29d{bottom:836.565333pt;}
.y247{bottom:837.656000pt;}
.yf9{bottom:838.220000pt;}
.y271{bottom:838.489333pt;}
.y212{bottom:838.569333pt;}
.y13e{bottom:839.746667pt;}
.y5{bottom:840.422667pt;}
.y21b{bottom:841.558667pt;}
.y2e{bottom:841.878667pt;}
.y81{bottom:842.989333pt;}
.y29c{bottom:851.177333pt;}
.y1a4{bottom:851.421333pt;}
.y13d{bottom:852.028000pt;}
.y270{bottom:853.101333pt;}
.y246{bottom:853.597333pt;}
.y108{bottom:854.160000pt;}
.y211{bottom:854.509333pt;}
.y4{bottom:855.034667pt;}
.y13c{bottom:855.686667pt;}
.y1bd{bottom:857.306667pt;}
.y21a{bottom:857.498667pt;}
.y2d{bottom:857.818667pt;}
.y80{bottom:858.929333pt;}
.y52{bottom:861.102667pt;}
.y1a3{bottom:863.702667pt;}
.y29b{bottom:865.789333pt;}
.y26f{bottom:866.750667pt;}
.y210{bottom:867.166667pt;}
.y1a2{bottom:867.361333pt;}
.y245{bottom:869.537333pt;}
.y20f{bottom:870.450667pt;}
.y7f{bottom:871.364000pt;}
.y13b{bottom:871.626667pt;}
.y1bc{bottom:873.246667pt;}
.y219{bottom:873.438667pt;}
.y2c{bottom:873.758667pt;}
.y7e{bottom:874.648000pt;}
.y1a1{bottom:879.642667pt;}
.y29a{bottom:880.401333pt;}
.y26e{bottom:881.362667pt;}
.y3{bottom:882.874667pt;}
.y1a0{bottom:883.301333pt;}
.y13a{bottom:883.908000pt;}
.y20e{bottom:884.761333pt;}
.yf8{bottom:885.937333pt;}
.y107{bottom:886.040000pt;}
.y7c{bottom:886.908000pt;}
.y7d{bottom:887.081333pt;}
.y139{bottom:887.566667pt;}
.y20d{bottom:888.045333pt;}
.y1bb{bottom:889.186667pt;}
.yf7{bottom:889.698667pt;}
.y2b{bottom:889.700000pt;}
.y7b{bottom:890.365333pt;}
.y299{bottom:895.013333pt;}
.y26d{bottom:895.974667pt;}
.y19f{bottom:897.612000pt;}
.y244{bottom:898.214667pt;}
.y138{bottom:899.848000pt;}
.y20c{bottom:900.701333pt;}
.y19e{bottom:901.374667pt;}
.yf6{bottom:901.877333pt;}
.y137{bottom:903.506667pt;}
.y20b{bottom:903.985333pt;}
.y2a{bottom:905.640000pt;}
.y7a{bottom:906.084000pt;}
.y26c{bottom:909.625333pt;}
.y19d{bottom:913.656000pt;}
.y19c{bottom:917.314667pt;}
.y16d{bottom:917.817333pt;}
.y106{bottom:917.921333pt;}
.y20a{bottom:918.296000pt;}
.y136{bottom:919.446667pt;}
.y29{bottom:921.580000pt;}
.y79{bottom:921.801333pt;}
.y26b{bottom:924.236000pt;}
.y2{bottom:929.549333pt;}
.y135{bottom:931.625333pt;}
.y105{bottom:933.861333pt;}
.y134{bottom:935.388000pt;}
.y28{bottom:937.520000pt;}
.y26a{bottom:938.848000pt;}
.y133{bottom:949.698667pt;}
.y19b{bottom:949.801333pt;}
.y1{bottom:953.460000pt;}
.y27{bottom:987.997333pt;}
.h14{height:7.268690pt;}
.h31{height:13.762860pt;}
.h32{height:13.781975pt;}
.h12{height:17.892160pt;}
.h13{height:17.910798pt;}
.h33{height:18.350480pt;}
.h34{height:18.369595pt;}
.h29{height:19.454796pt;}
.h10{height:22.383838pt;}
.h15{height:23.445927pt;}
.h2e{height:24.087314pt;}
.h2d{height:24.120723pt;}
.h2a{height:25.930733pt;}
.h1e{height:26.519037pt;}
.h11{height:26.856878pt;}
.h30{height:27.544835pt;}
.h28{height:32.433654pt;}
.h4{height:35.865600pt;}
.h37{height:36.720075pt;}
.h1d{height:37.193707pt;}
.h27{height:38.882608pt;}
.h26{height:38.909591pt;}
.h3{height:39.850400pt;}
.h8{height:41.019345pt;}
.h5{height:44.632747pt;}
.h16{height:45.012463pt;}
.h38{height:45.224246pt;}
.h23{height:45.284724pt;}
.h22{height:45.322398pt;}
.h7{height:45.799037pt;}
.h6{height:45.804370pt;}
.h35{height:45.895315pt;}
.h36{height:45.914430pt;}
.h2c{height:48.208037pt;}
.ha{height:52.986400pt;}
.h2{height:53.559147pt;}
.hd{height:53.679733pt;}
.he{height:54.155345pt;}
.h1f{height:54.287733pt;}
.h18{height:54.485067pt;}
.h20{height:54.490400pt;}
.h1c{height:54.895733pt;}
.h1a{height:54.901067pt;}
.hb{height:58.935037pt;}
.h9{height:58.940370pt;}
.hc{height:59.633703pt;}
.h1b{height:60.433703pt;}
.h19{height:60.439037pt;}
.h24{height:60.844370pt;}
.h17{height:60.849703pt;}
.h21{height:150.960000pt;}
.h2b{height:156.420000pt;}
.h25{height:218.360000pt;}
.hf{height:220.197120pt;}
.h2f{height:294.854800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:181.669997pt;}
.w5{width:217.469997pt;}
.w4{width:230.549997pt;}
.w2{width:461.077753pt;}
.w6{width:461.078073pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:1.960997pt;}
.x25{left:5.399673pt;}
.x27{left:8.865230pt;}
.x78{left:11.076997pt;}
.x77{left:13.375997pt;}
.x91{left:16.378836pt;}
.x98{left:38.435044pt;}
.x79{left:45.715997pt;}
.x7a{left:49.785997pt;}
.x6e{left:52.869263pt;}
.x94{left:55.830586pt;}
.x93{left:61.999673pt;}
.x6b{left:63.599997pt;}
.x6c{left:66.045063pt;}
.x6f{left:73.217730pt;}
.x6d{left:75.083330pt;}
.x90{left:96.099497pt;}
.x26{left:99.749472pt;}
.x34{left:102.058216pt;}
.x28{left:105.401747pt;}
.x29{left:106.517070pt;}
.x92{left:114.324077pt;}
.x2d{left:122.624590pt;}
.x8f{left:124.942413pt;}
.x53{left:127.733864pt;}
.x32{left:129.035872pt;}
.x76{left:144.143997pt;}
.x2a{left:147.481422pt;}
.x6a{left:169.027597pt;}
.x69{left:171.712930pt;}
.x97{left:176.858237pt;}
.x7{left:179.686667pt;}
.x39{left:186.564000pt;}
.xa{left:187.988000pt;}
.x8c{left:189.188000pt;}
.x22{left:190.605646pt;}
.x2e{left:192.130980pt;}
.x8d{left:196.612000pt;}
.x8b{left:197.710667pt;}
.x8{left:199.612000pt;}
.x47{left:201.046667pt;}
.xb{left:202.268000pt;}
.x9c{left:205.448000pt;}
.x5b{left:206.646667pt;}
.x4{left:208.653333pt;}
.xf{left:211.566667pt;}
.x30{left:213.070756pt;}
.x40{left:215.109333pt;}
.x60{left:216.061333pt;}
.x6{left:217.481333pt;}
.x3d{left:218.808000pt;}
.x61{left:221.281333pt;}
.x8a{left:222.298667pt;}
.x13{left:224.850667pt;}
.x99{left:226.624000pt;}
.x9{left:230.369333pt;}
.x2{left:231.892000pt;}
.x10{left:233.022667pt;}
.x18{left:234.149333pt;}
.x5{left:239.884000pt;}
.x3{left:240.945333pt;}
.x43{left:244.328000pt;}
.x1d{left:247.960000pt;}
.x74{left:249.260000pt;}
.x65{left:251.626667pt;}
.x2f{left:252.729422pt;}
.x37{left:254.537333pt;}
.x33{left:260.697764pt;}
.x45{left:263.982667pt;}
.x8e{left:267.028000pt;}
.x14{left:269.076000pt;}
.x1{left:270.576000pt;}
.x1b{left:273.288000pt;}
.x16{left:274.288000pt;}
.x50{left:275.997333pt;}
.x9d{left:282.328000pt;}
.x2b{left:283.338592pt;}
.x84{left:289.220000pt;}
.x96{left:290.602708pt;}
.x1e{left:292.489333pt;}
.x3e{left:293.898667pt;}
.x2c{left:294.982376pt;}
.x48{left:298.024000pt;}
.x5a{left:304.956000pt;}
.x75{left:307.289333pt;}
.x62{left:311.456000pt;}
.x85{left:314.817333pt;}
.x21{left:317.183908pt;}
.x4c{left:335.954667pt;}
.x3f{left:337.978667pt;}
.x36{left:339.544074pt;}
.xa0{left:343.840000pt;}
.x1c{left:346.762667pt;}
.x35{left:347.854090pt;}
.x72{left:354.405333pt;}
.x71{left:359.017333pt;}
.x46{left:361.444000pt;}
.x87{left:366.574667pt;}
.x42{left:368.606667pt;}
.x49{left:371.305333pt;}
.x95{left:376.226404pt;}
.x54{left:377.408000pt;}
.x31{left:380.071571pt;}
.x4b{left:381.148000pt;}
.x83{left:383.006667pt;}
.x57{left:384.285333pt;}
.x86{left:387.936000pt;}
.x5d{left:389.721333pt;}
.x4d{left:392.598667pt;}
.x41{left:409.144000pt;}
.x68{left:410.237337pt;}
.xa2{left:411.617333pt;}
.x24{left:418.844324pt;}
.x23{left:420.699129pt;}
.x70{left:423.752000pt;}
.x82{left:426.336000pt;}
.x3a{left:428.569333pt;}
.x7c{left:431.110667pt;}
.x80{left:432.173333pt;}
.x4f{left:439.641333pt;}
.x7b{left:443.446667pt;}
.x55{left:444.646667pt;}
.x3c{left:446.472000pt;}
.x5e{left:450.346667pt;}
.x81{left:459.622667pt;}
.x51{left:467.629333pt;}
.x1f{left:468.757333pt;}
.x64{left:480.677333pt;}
.x7e{left:483.400000pt;}
.x63{left:490.225333pt;}
.x9f{left:491.369333pt;}
.x9e{left:497.690667pt;}
.x73{left:499.776000pt;}
.xc{left:500.978667pt;}
.x3b{left:504.137333pt;}
.x19{left:506.061333pt;}
.x59{left:509.114667pt;}
.x44{left:510.309333pt;}
.x5c{left:512.682667pt;}
.xa1{left:514.600000pt;}
.x11{left:518.385333pt;}
.xd{left:522.584000pt;}
.x88{left:528.214667pt;}
.x66{left:533.710667pt;}
.x15{left:535.214667pt;}
.x17{left:537.032000pt;}
.x12{left:543.040000pt;}
.xe{left:544.560000pt;}
.x1a{left:549.877333pt;}
.x7d{left:552.910667pt;}
.x56{left:563.582667pt;}
.x38{left:573.222667pt;}
.x4e{left:574.857333pt;}
.x89{left:586.293333pt;}
.x67{left:592.349333pt;}
.x4a{left:595.900000pt;}
.x58{left:597.025333pt;}
.x20{left:599.414667pt;}
.x7f{left:604.728000pt;}
.x5f{left:621.365333pt;}
.x9a{left:623.814667pt;}
.x9b{left:627.505333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
