
/* 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_b70353d8e775.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_fd1312cff50c.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_103043ff4c7f.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_de5f8f54309a.woff")format("woff");}.ff7{font-family:ff7;line-height:1.151000;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_ac563ba40ec5.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_51259d20dbe8.woff")format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_75c9d7843393.woff")format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_fa1c30a1425a.woff")format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_b7c53b8cfa42.woff")format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_7016197f7650.woff")format("woff");}.ffd{font-family:ffd;line-height:0.752441;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_9fe0ee7d8dab.woff")format("woff");}.ffe{font-family:ffe;line-height:0.482000;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_7c61f00fac84.woff")format("woff");}.fff{font-family:fff;line-height:1.000488;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_51259d20dbe8.woff")format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_bbc21d0c19df.woff")format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_649b80bf0bae.woff")format("woff");}.ff12{font-family:ff12;line-height:1.206055;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_e91a74aef8a5.woff")format("woff");}.ff13{font-family:ff13;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_7016197f7650.woff")format("woff");}.ff14{font-family:ff14;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_11d3552dc3a3.woff")format("woff");}.ff15{font-family:ff15;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_7c61f00fac84.woff")format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_51259d20dbe8.woff")format("woff");}.ff17{font-family:ff17;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_bc5f05be3b29.woff")format("woff");}.ff18{font-family:ff18;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_fba0fa227f23.woff")format("woff");}.ff19{font-family:ff19;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_b7c53b8cfa42.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_7016197f7650.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_e22e561cd129.woff")format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url("fonts/font_0028_49d01c143c35.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-12.438000px;}
.v2{vertical-align:-10.488000px;}
.v8{vertical-align:-8.964000px;}
.vf{vertical-align:-1.482000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.286000px;}
.ve{vertical-align:7.176000px;}
.v5{vertical-align:8.406000px;}
.vc{vertical-align:9.462000px;}
.v7{vertical-align:10.920000px;}
.va{vertical-align:23.910000px;}
.v4{vertical-align:28.392000px;}
.v1{vertical-align:32.874000px;}
.v3{vertical-align:33.912000px;}
.v9{vertical-align:37.488000px;}
.vb{vertical-align:47.820000px;}
.ls8d{letter-spacing:-0.492984px;}
.ls57{letter-spacing:-0.486972px;}
.lsd5{letter-spacing:-0.480960px;}
.ls94{letter-spacing:-0.444888px;}
.ls90{letter-spacing:-0.438876px;}
.lsd6{letter-spacing:-0.420840px;}
.ls56{letter-spacing:-0.408816px;}
.ls82{letter-spacing:-0.396792px;}
.ls85{letter-spacing:-0.390780px;}
.lsd4{letter-spacing:-0.378756px;}
.ls68{letter-spacing:-0.348696px;}
.ls81{letter-spacing:-0.342684px;}
.ls75{letter-spacing:-0.336672px;}
.ls59{letter-spacing:-0.330660px;}
.ls64{letter-spacing:-0.324648px;}
.lsac{letter-spacing:-0.318636px;}
.ls76{letter-spacing:-0.312624px;}
.ls92{letter-spacing:-0.300600px;}
.ls54{letter-spacing:-0.288576px;}
.ls6e{letter-spacing:-0.282564px;}
.lsd7{letter-spacing:-0.276552px;}
.ls6b{letter-spacing:-0.270540px;}
.ls89{letter-spacing:-0.264528px;}
.ls7d{letter-spacing:-0.258516px;}
.ls72{letter-spacing:-0.252504px;}
.ls7f{letter-spacing:-0.246492px;}
.ls6a{letter-spacing:-0.240480px;}
.lsab{letter-spacing:-0.234468px;}
.lsd3{letter-spacing:-0.228456px;}
.ls88{letter-spacing:-0.222444px;}
.ls8f{letter-spacing:-0.216432px;}
.ls5b{letter-spacing:-0.210420px;}
.lsd2{letter-spacing:-0.204408px;}
.ls95{letter-spacing:-0.198396px;}
.ls66{letter-spacing:-0.192384px;}
.ls84{letter-spacing:-0.186372px;}
.ls70{letter-spacing:-0.180360px;}
.ls62{letter-spacing:-0.168336px;}
.ls7c{letter-spacing:-0.162324px;}
.ls61{letter-spacing:-0.156312px;}
.ls5a{letter-spacing:-0.150300px;}
.ls60{letter-spacing:-0.144288px;}
.ls7e{letter-spacing:-0.132264px;}
.ls65{letter-spacing:-0.126252px;}
.ls5f{letter-spacing:-0.120240px;}
.ls73{letter-spacing:-0.114228px;}
.ls5e{letter-spacing:-0.108216px;}
.ls83{letter-spacing:-0.102204px;}
.ls55{letter-spacing:-0.096192px;}
.ls51{letter-spacing:-0.090180px;}
.ls6d{letter-spacing:-0.084168px;}
.ls52{letter-spacing:-0.078156px;}
.ls87{letter-spacing:-0.072144px;}
.ls8e{letter-spacing:-0.066132px;}
.ls6c{letter-spacing:-0.060120px;}
.ls53{letter-spacing:-0.054108px;}
.ls50{letter-spacing:-0.048096px;}
.ls63{letter-spacing:-0.042084px;}
.ls7a{letter-spacing:-0.037800px;}
.ls71{letter-spacing:-0.036072px;}
.lsad{letter-spacing:-0.032400px;}
.ls5d{letter-spacing:-0.030060px;}
.ls4e{letter-spacing:-0.028728px;}
.ls69{letter-spacing:-0.024048px;}
.ls8a{letter-spacing:-0.018036px;}
.ls7b{letter-spacing:-0.016200px;}
.ls5c{letter-spacing:-0.012024px;}
.ls78{letter-spacing:-0.010800px;}
.ls6f{letter-spacing:-0.006012px;}
.lsae{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.000145px;}
.lse9{letter-spacing:0.001036px;}
.lse2{letter-spacing:0.001613px;}
.ls98{letter-spacing:0.002458px;}
.lse1{letter-spacing:0.003178px;}
.lse6{letter-spacing:0.004800px;}
.lsaf{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.006012px;}
.lsc9{letter-spacing:0.007200px;}
.ls79{letter-spacing:0.010800px;}
.ls2d{letter-spacing:0.012024px;}
.ls17{letter-spacing:0.018036px;}
.ls6{letter-spacing:0.019152px;}
.ls16{letter-spacing:0.024048px;}
.ls93{letter-spacing:0.025200px;}
.lsa7{letter-spacing:0.027000px;}
.ls1d{letter-spacing:0.030060px;}
.lsa9{letter-spacing:0.032400px;}
.lsf{letter-spacing:0.036072px;}
.ls29{letter-spacing:0.042084px;}
.lsa8{letter-spacing:0.043200px;}
.ls25{letter-spacing:0.048096px;}
.lscf{letter-spacing:0.048600px;}
.ls2f{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.054108px;}
.ls20{letter-spacing:0.060120px;}
.ls1b{letter-spacing:0.066132px;}
.ls10{letter-spacing:0.072144px;}
.ls8c{letter-spacing:0.078156px;}
.ls31{letter-spacing:0.081000px;}
.ls13{letter-spacing:0.084168px;}
.ls67{letter-spacing:0.090180px;}
.ls36{letter-spacing:0.096192px;}
.lsc4{letter-spacing:0.097200px;}
.ls9{letter-spacing:0.100548px;}
.ls15{letter-spacing:0.102204px;}
.ls30{letter-spacing:0.102600px;}
.ls34{letter-spacing:0.108216px;}
.ls35{letter-spacing:0.114228px;}
.ls91{letter-spacing:0.120240px;}
.lsd1{letter-spacing:0.124200px;}
.ls3d{letter-spacing:0.126252px;}
.ls33{letter-spacing:0.132264px;}
.ls80{letter-spacing:0.138276px;}
.ls8{letter-spacing:0.143640px;}
.ls3c{letter-spacing:0.144288px;}
.ls3b{letter-spacing:0.150300px;}
.ls4f{letter-spacing:0.153216px;}
.ls86{letter-spacing:0.156312px;}
.lsd0{letter-spacing:0.162000px;}
.ls74{letter-spacing:0.174348px;}
.ls8b{letter-spacing:0.180360px;}
.ls2e{letter-spacing:0.183600px;}
.ls7{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.192384px;}
.ls58{letter-spacing:0.198396px;}
.ls4d{letter-spacing:0.272916px;}
.lscb{letter-spacing:0.432864px;}
.ls38{letter-spacing:0.456912px;}
.lsda{letter-spacing:0.467882px;}
.lsd9{letter-spacing:0.473882px;}
.ls77{letter-spacing:0.511020px;}
.lsdb{letter-spacing:0.526976px;}
.lsa4{letter-spacing:0.642088px;}
.lsa3{letter-spacing:0.648088px;}
.lscc{letter-spacing:0.802232px;}
.ls37{letter-spacing:0.817632px;}
.lsdc{letter-spacing:0.995882px;}
.lsdd{letter-spacing:1.025764px;}
.lsca{letter-spacing:1.083600px;}
.ls14{letter-spacing:1.178352px;}
.ls4{letter-spacing:1.275394px;}
.ls12{letter-spacing:1.539072px;}
.ls0{letter-spacing:1.861130px;}
.ls32{letter-spacing:1.893780px;}
.lsc5{letter-spacing:1.899792px;}
.ls19{letter-spacing:2.254500px;}
.ls18{letter-spacing:2.615220px;}
.ls21{letter-spacing:2.975940px;}
.lsb8{letter-spacing:2.985986px;}
.lsd8{letter-spacing:2.986514px;}
.ls97{letter-spacing:2.988600px;}
.lsbe{letter-spacing:2.989200px;}
.lsba{letter-spacing:2.991986px;}
.lsbf{letter-spacing:2.992514px;}
.ls22{letter-spacing:3.336660px;}
.lsc6{letter-spacing:3.697380px;}
.ls2b{letter-spacing:4.058100px;}
.ls2c{letter-spacing:4.418820px;}
.ls3a{letter-spacing:4.779540px;}
.ls39{letter-spacing:5.140260px;}
.ls2a{letter-spacing:5.466560px;}
.ls28{letter-spacing:5.494968px;}
.ls26{letter-spacing:5.500980px;}
.ls27{letter-spacing:5.855688px;}
.lse{letter-spacing:6.577128px;}
.lsd{letter-spacing:6.937848px;}
.lsc8{letter-spacing:9.456876px;}
.lsc7{letter-spacing:9.817596px;}
.ls45{letter-spacing:10.539036px;}
.ls46{letter-spacing:10.899756px;}
.lsa6{letter-spacing:11.260476px;}
.lsb6{letter-spacing:11.357400px;}
.ls24{letter-spacing:11.621196px;}
.lsb{letter-spacing:11.797632px;}
.lsc{letter-spacing:11.802420px;}
.lse3{letter-spacing:11.953613px;}
.ls2{letter-spacing:11.954850px;}
.lsc2{letter-spacing:11.955150px;}
.ls23{letter-spacing:11.981916px;}
.ls42{letter-spacing:12.703356px;}
.ls41{letter-spacing:13.058064px;}
.ls40{letter-spacing:13.064076px;}
.lsea{letter-spacing:13.319631px;}
.lse8{letter-spacing:13.353971px;}
.lse7{letter-spacing:13.391216px;}
.lse4{letter-spacing:13.448400px;}
.lse5{letter-spacing:13.454400px;}
.ls3f{letter-spacing:14.140224px;}
.ls3e{letter-spacing:14.500944px;}
.ls5{letter-spacing:14.943900px;}
.lsc1{letter-spacing:15.063451px;}
.ls96{letter-spacing:15.123227px;}
.lsb2{letter-spacing:15.663483px;}
.lsb4{letter-spacing:15.702685px;}
.lsb0{letter-spacing:15.708685px;}
.ls49{letter-spacing:16.267531px;}
.ls47{letter-spacing:16.304544px;}
.lsde{letter-spacing:16.434600px;}
.ls4a{letter-spacing:16.659252px;}
.ls48{letter-spacing:16.665264px;}
.lsaa{letter-spacing:17.872904px;}
.lsb3{letter-spacing:17.931986px;}
.lsbb{letter-spacing:17.935200px;}
.lsbd{letter-spacing:17.937986px;}
.lsa5{letter-spacing:18.291334px;}
.lsb1{letter-spacing:18.675986px;}
.lsb7{letter-spacing:18.681986px;}
.ls4c{letter-spacing:18.823572px;}
.ls4b{letter-spacing:19.184292px;}
.lsce{letter-spacing:19.511610px;}
.lscd{letter-spacing:19.545012px;}
.ls43{letter-spacing:22.064040px;}
.ls1f{letter-spacing:22.424760px;}
.ls1e{letter-spacing:22.785480px;}
.ls44{letter-spacing:23.146200px;}
.ls1{letter-spacing:28.453654px;}
.ls9f{letter-spacing:82.939200px;}
.lsa0{letter-spacing:90.487200px;}
.lsa2{letter-spacing:96.000600px;}
.lsa1{letter-spacing:98.629200px;}
.ls9e{letter-spacing:104.856600px;}
.ls9d{letter-spacing:108.810600px;}
.ls9c{letter-spacing:166.937866px;}
.ls99{letter-spacing:167.322600px;}
.ls9b{letter-spacing:214.404600px;}
.ls9a{letter-spacing:217.392600px;}
.lsdf{letter-spacing:310.866600px;}
.lse0{letter-spacing:381.636600px;}
.lsb9{letter-spacing:788.745986px;}
.lsbc{letter-spacing:965.323200px;}
.lsc0{letter-spacing:965.923200px;}
.lsc3{letter-spacing:1960.207200px;}
.lsa{letter-spacing:1983.974832px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws72{word-spacing:-60.120000px;}
.wse1{word-spacing:-54.000000px;}
.ws33{word-spacing:-47.880000px;}
.wsf3{word-spacing:-29.887800px;}
.wsf2{word-spacing:-22.714800px;}
.wsea{word-spacing:-14.943900px;}
.wsa7{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.wseb{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.wsee{word-spacing:-3.526760px;}
.ws143{word-spacing:-3.347434px;}
.wsb1{word-spacing:-3.287658px;}
.wscf{word-spacing:-3.227882px;}
.wsce{word-spacing:-3.168107px;}
.ws175{word-spacing:-2.958912px;}
.ws135{word-spacing:-2.749678px;}
.ws10b{word-spacing:-2.689902px;}
.ws12a{word-spacing:-2.450800px;}
.ws14a{word-spacing:-2.391024px;}
.ws12c{word-spacing:-2.331248px;}
.ws9e{word-spacing:-2.032370px;}
.ws144{word-spacing:-1.972595px;}
.ws127{word-spacing:-1.912819px;}
.ws2{word-spacing:-1.908367px;}
.ws136{word-spacing:-1.793268px;}
.ws19{word-spacing:-1.721549px;}
.wsa1{word-spacing:-1.673717px;}
.wse9{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws18{word-spacing:-1.291162px;}
.ws121{word-spacing:-1.255288px;}
.wsfc{word-spacing:-1.195512px;}
.wsd2{word-spacing:-1.135736px;}
.ws155{word-spacing:-1.075961px;}
.ws134{word-spacing:-0.956410px;}
.ws145{word-spacing:-0.896634px;}
.ws149{word-spacing:-0.777083px;}
.ws13d{word-spacing:-0.717307px;}
.ws9f{word-spacing:-0.657532px;}
.wsdd{word-spacing:-0.597756px;}
.ws71{word-spacing:-0.571140px;}
.ws11c{word-spacing:-0.492984px;}
.ws14b{word-spacing:-0.478205px;}
.ws132{word-spacing:-0.418429px;}
.wsd5{word-spacing:-0.358654px;}
.ws13e{word-spacing:-0.322790px;}
.ws37{word-spacing:-0.320796px;}
.wsa5{word-spacing:-0.298878px;}
.ws17f{word-spacing:-0.268992px;}
.ws49{word-spacing:-0.258516px;}
.ws3c{word-spacing:-0.252504px;}
.ws8e{word-spacing:-0.240480px;}
.ws34{word-spacing:-0.239400px;}
.ws23{word-spacing:-0.239102px;}
.ws6e{word-spacing:-0.234468px;}
.ws89{word-spacing:-0.216432px;}
.ws118{word-spacing:-0.216000px;}
.ws186{word-spacing:-0.215194px;}
.ws54{word-spacing:-0.210420px;}
.ws90{word-spacing:-0.204408px;}
.ws39{word-spacing:-0.201096px;}
.ws7f{word-spacing:-0.198396px;}
.ws81{word-spacing:-0.192384px;}
.ws92{word-spacing:-0.186372px;}
.ws96{word-spacing:-0.180360px;}
.ws1f{word-spacing:-0.179327px;}
.ws119{word-spacing:-0.178200px;}
.ws86{word-spacing:-0.174348px;}
.ws84{word-spacing:-0.168336px;}
.ws47{word-spacing:-0.162324px;}
.ws13{word-spacing:-0.161395px;}
.ws76{word-spacing:-0.156600px;}
.ws82{word-spacing:-0.156312px;}
.ws117{word-spacing:-0.151200px;}
.ws5f{word-spacing:-0.150300px;}
.ws36{word-spacing:-0.148428px;}
.ws45{word-spacing:-0.144288px;}
.ws8f{word-spacing:-0.138276px;}
.ws78{word-spacing:-0.135000px;}
.ws40{word-spacing:-0.132264px;}
.ws53{word-spacing:-0.126252px;}
.ws5e{word-spacing:-0.120240px;}
.ws9d{word-spacing:-0.119551px;}
.ws50{word-spacing:-0.114228px;}
.ws64{word-spacing:-0.108216px;}
.ws75{word-spacing:-0.108000px;}
.ws176{word-spacing:-0.107597px;}
.ws116{word-spacing:-0.102600px;}
.ws69{word-spacing:-0.102204px;}
.wse2{word-spacing:-0.097200px;}
.ws3f{word-spacing:-0.096192px;}
.ws56{word-spacing:-0.090180px;}
.wse4{word-spacing:-0.086400px;}
.ws4b{word-spacing:-0.084168px;}
.wse0{word-spacing:-0.081000px;}
.ws4d{word-spacing:-0.078156px;}
.ws6c{word-spacing:-0.072144px;}
.ws32{word-spacing:-0.067032px;}
.ws43{word-spacing:-0.066132px;}
.ws74{word-spacing:-0.064800px;}
.ws3d{word-spacing:-0.060120px;}
.ws22{word-spacing:-0.059776px;}
.wse6{word-spacing:-0.059400px;}
.ws67{word-spacing:-0.054108px;}
.ws7a{word-spacing:-0.054000px;}
.ws12e{word-spacing:-0.053798px;}
.wse5{word-spacing:-0.048600px;}
.ws4f{word-spacing:-0.048096px;}
.ws35{word-spacing:-0.047880px;}
.ws2f{word-spacing:-0.047821px;}
.ws73{word-spacing:-0.043200px;}
.ws8d{word-spacing:-0.042084px;}
.ws4{word-spacing:-0.041843px;}
.ws79{word-spacing:-0.037800px;}
.ws61{word-spacing:-0.036072px;}
.ws51{word-spacing:-0.030060px;}
.ws6a{word-spacing:-0.024048px;}
.wse3{word-spacing:-0.021600px;}
.ws38{word-spacing:-0.019152px;}
.ws5a{word-spacing:-0.018036px;}
.ws77{word-spacing:-0.016200px;}
.ws3a{word-spacing:-0.012024px;}
.ws41{word-spacing:-0.006012px;}
.ws18d{word-spacing:-0.001978px;}
.ws0{word-spacing:0.000000px;}
.ws93{word-spacing:0.006012px;}
.ws8a{word-spacing:0.012024px;}
.ws3e{word-spacing:0.018036px;}
.ws65{word-spacing:0.024048px;}
.ws3b{word-spacing:0.030060px;}
.ws44{word-spacing:0.036072px;}
.ws85{word-spacing:0.042084px;}
.ws52{word-spacing:0.048096px;}
.ws12{word-spacing:0.053798px;}
.ws6d{word-spacing:0.054108px;}
.ws24{word-spacing:0.059776px;}
.ws55{word-spacing:0.060120px;}
.ws5c{word-spacing:0.066132px;}
.ws7d{word-spacing:0.072144px;}
.ws57{word-spacing:0.084168px;}
.ws4c{word-spacing:0.090180px;}
.ws58{word-spacing:0.096192px;}
.ws7b{word-spacing:0.102204px;}
.ws101{word-spacing:0.107597px;}
.ws59{word-spacing:0.108216px;}
.ws9b{word-spacing:0.119551px;}
.ws68{word-spacing:0.120240px;}
.ws87{word-spacing:0.126252px;}
.ws5d{word-spacing:0.132264px;}
.ws99{word-spacing:0.138276px;}
.ws11a{word-spacing:0.144288px;}
.ws4e{word-spacing:0.150300px;}
.ws94{word-spacing:0.156312px;}
.ws1a{word-spacing:0.161395px;}
.ws8b{word-spacing:0.162324px;}
.ws11b{word-spacing:0.168336px;}
.wsde{word-spacing:0.174348px;}
.ws26{word-spacing:0.179327px;}
.ws62{word-spacing:0.180360px;}
.ws7e{word-spacing:0.186372px;}
.ws6b{word-spacing:0.192384px;}
.ws7c{word-spacing:0.198396px;}
.ws8c{word-spacing:0.204408px;}
.ws7{word-spacing:0.209214px;}
.ws63{word-spacing:0.210420px;}
.ws151{word-spacing:0.215194px;}
.ws120{word-spacing:0.216432px;}
.ws66{word-spacing:0.222444px;}
.ws42{word-spacing:0.228456px;}
.ws25{word-spacing:0.239102px;}
.ws97{word-spacing:0.240480px;}
.ws70{word-spacing:0.252504px;}
.wsdf{word-spacing:0.258516px;}
.ws5b{word-spacing:0.264528px;}
.ws16e{word-spacing:0.268992px;}
.ws4a{word-spacing:0.270540px;}
.ws6f{word-spacing:0.276552px;}
.ws80{word-spacing:0.282564px;}
.ws60{word-spacing:0.288576px;}
.ws9{word-spacing:0.292900px;}
.ws28{word-spacing:0.298878px;}
.ws11d{word-spacing:0.318636px;}
.ws197{word-spacing:0.322790px;}
.ws88{word-spacing:0.330660px;}
.ws83{word-spacing:0.336672px;}
.ws46{word-spacing:0.348696px;}
.ws10f{word-spacing:0.358654px;}
.ws11f{word-spacing:0.360720px;}
.ws179{word-spacing:0.376589px;}
.ws95{word-spacing:0.378756px;}
.ws98{word-spacing:0.384768px;}
.wsd6{word-spacing:0.418429px;}
.ws11e{word-spacing:0.420840px;}
.ws48{word-spacing:0.426852px;}
.ws16{word-spacing:0.430387px;}
.ws91{word-spacing:0.432864px;}
.wsd7{word-spacing:0.478205px;}
.ws196{word-spacing:0.484186px;}
.wsef{word-spacing:0.537980px;}
.ws12d{word-spacing:0.597756px;}
.ws142{word-spacing:0.657532px;}
.ws2c{word-spacing:0.717307px;}
.ws13c{word-spacing:0.777083px;}
.ws104{word-spacing:0.836858px;}
.ws18f{word-spacing:0.860774px;}
.wsf5{word-spacing:0.896634px;}
.ws27{word-spacing:0.956410px;}
.ws1b{word-spacing:0.968371px;}
.ws110{word-spacing:1.016185px;}
.ws1c{word-spacing:1.022170px;}
.ws31{word-spacing:1.075961px;}
.ws2a{word-spacing:1.135736px;}
.ws9a{word-spacing:1.195512px;}
.wsd9{word-spacing:1.255288px;}
.ws122{word-spacing:1.315063px;}
.ws181{word-spacing:1.344960px;}
.wsf0{word-spacing:1.374839px;}
.ws180{word-spacing:1.398758px;}
.wsd4{word-spacing:1.434614px;}
.ws16f{word-spacing:1.506355px;}
.ws125{word-spacing:1.613941px;}
.ws183{word-spacing:1.667750px;}
.ws188{word-spacing:1.721549px;}
.ws103{word-spacing:1.793268px;}
.ws10d{word-spacing:1.853044px;}
.wsaf{word-spacing:1.912819px;}
.ws18c{word-spacing:1.936742px;}
.ws17{word-spacing:1.990541px;}
.ws8{word-spacing:2.008454px;}
.ws133{word-spacing:2.032370px;}
.wsdc{word-spacing:2.092146px;}
.ws108{word-spacing:2.151922px;}
.ws167{word-spacing:2.151936px;}
.ws194{word-spacing:2.205734px;}
.ws128{word-spacing:2.211697px;}
.wsa2{word-spacing:2.271473px;}
.ws30{word-spacing:2.331248px;}
.ws19c{word-spacing:2.420928px;}
.wsd8{word-spacing:2.450800px;}
.ws148{word-spacing:2.510575px;}
.ws126{word-spacing:2.630126px;}
.ws10c{word-spacing:2.689902px;}
.ws14{word-spacing:2.689920px;}
.ws19b{word-spacing:2.743718px;}
.ws177{word-spacing:2.797517px;}
.ws14c{word-spacing:2.809453px;}
.ws193{word-spacing:2.822295px;}
.wsf1{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.wse7{word-spacing:2.929004px;}
.ws131{word-spacing:2.970839px;}
.ws20{word-spacing:2.988780px;}
.ws106{word-spacing:3.048556px;}
.ws15{word-spacing:3.066509px;}
.ws137{word-spacing:3.108331px;}
.wsdb{word-spacing:3.168107px;}
.ws172{word-spacing:3.174106px;}
.ws152{word-spacing:3.224822px;}
.ws192{word-spacing:3.226032px;}
.ws100{word-spacing:3.227904px;}
.ws189{word-spacing:3.228691px;}
.ws14d{word-spacing:3.287658px;}
.ws198{word-spacing:3.335501px;}
.wsd0{word-spacing:3.347434px;}
.ws109{word-spacing:3.407209px;}
.ws18a{word-spacing:3.443098px;}
.ws112{word-spacing:3.466985px;}
.ws12f{word-spacing:3.510379px;}
.ws130{word-spacing:3.511032px;}
.ws12b{word-spacing:3.526760px;}
.ws1e{word-spacing:3.586536px;}
.ws138{word-spacing:3.646312px;}
.ws182{word-spacing:3.712090px;}
.ws140{word-spacing:3.765863px;}
.ws191{word-spacing:3.819686px;}
.wsa3{word-spacing:3.825638px;}
.ws1d{word-spacing:3.873485px;}
.ws10e{word-spacing:3.885414px;}
.ws107{word-spacing:3.945190px;}
.ws123{word-spacing:4.124516px;}
.ws146{word-spacing:4.184292px;}
.wse8{word-spacing:4.542946px;}
.ws13b{word-spacing:4.602721px;}
.ws111{word-spacing:4.662497px;}
.ws124{word-spacing:4.782048px;}
.ws105{word-spacing:4.841824px;}
.wsda{word-spacing:5.140702px;}
.ws14f{word-spacing:5.379840px;}
.ws141{word-spacing:5.439580px;}
.ws129{word-spacing:5.499355px;}
.wsfb{word-spacing:5.559131px;}
.ws29{word-spacing:5.618906px;}
.ws173{word-spacing:5.648832px;}
.ws21{word-spacing:5.678682px;}
.ws10a{word-spacing:5.858009px;}
.wsf{word-spacing:6.067206px;}
.ws10{word-spacing:6.150892px;}
.wsd1{word-spacing:6.336214px;}
.ws2b{word-spacing:6.455765px;}
.wsf8{word-spacing:6.573101px;}
.wsf6{word-spacing:6.575786px;}
.ws14e{word-spacing:6.754643px;}
.wsa4{word-spacing:6.933970px;}
.ws185{word-spacing:6.939994px;}
.ws184{word-spacing:7.047590px;}
.wsfa{word-spacing:7.113296px;}
.ws18b{word-spacing:7.262784px;}
.wsb0{word-spacing:7.651277px;}
.ws150{word-spacing:7.693171px;}
.ws147{word-spacing:7.711052px;}
.wsd3{word-spacing:8.069706px;}
.wsa0{word-spacing:8.129482px;}
.wsd{word-spacing:8.661460px;}
.ws5{word-spacing:10.415996px;}
.ws170{word-spacing:10.867277px;}
.ws2d{word-spacing:11.904248px;}
.ws199{word-spacing:13.126810px;}
.ws17d{word-spacing:13.234406px;}
.ws187{word-spacing:13.288205px;}
.ws17e{word-spacing:13.386499px;}
.ws19a{word-spacing:13.390157px;}
.ws195{word-spacing:13.392499px;}
.ws18e{word-spacing:13.394995px;}
.ws178{word-spacing:13.395802px;}
.ws17a{word-spacing:13.718592px;}
.ws9c{word-spacing:14.884124px;}
.ws3{word-spacing:15.483541px;}
.ws17b{word-spacing:16.031923px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.ws17c{word-spacing:16.620365px;}
.ws174{word-spacing:16.623706px;}
.ws190{word-spacing:16.625482px;}
.wsc{word-spacing:17.699504px;}
.wsfd{word-spacing:18.470660px;}
.wse{word-spacing:27.448877px;}
.ws171{word-spacing:27.490982px;}
.ws164{word-spacing:50.466743px;}
.ws163{word-spacing:67.973556px;}
.wsa9{word-spacing:69.023347px;}
.wsbf{word-spacing:72.878594px;}
.ws161{word-spacing:74.197992px;}
.wsb7{word-spacing:82.634342px;}
.wsad{word-spacing:88.444570px;}
.wsb6{word-spacing:89.359142px;}
.wsc0{word-spacing:93.584914px;}
.wsae{word-spacing:99.258048px;}
.wsff{word-spacing:104.246755px;}
.wsa6{word-spacing:111.144221px;}
.wsc6{word-spacing:111.147494px;}
.ws162{word-spacing:112.524094px;}
.wsc9{word-spacing:114.060000px;}
.ws113{word-spacing:118.980134px;}
.wsac{word-spacing:119.271053px;}
.ws114{word-spacing:120.324134px;}
.wsa8{word-spacing:122.693933px;}
.wsaa{word-spacing:123.413530px;}
.wsca{word-spacing:127.512000px;}
.wsc8{word-spacing:127.513200px;}
.wsc7{word-spacing:130.144694px;}
.ws139{word-spacing:133.796621px;}
.wscb{word-spacing:140.965200px;}
.wsc1{word-spacing:144.274750px;}
.wsab{word-spacing:150.043738px;}
.wsb8{word-spacing:156.494557px;}
.wscd{word-spacing:165.914266px;}
.wscc{word-spacing:171.778291px;}
.wsbc{word-spacing:172.201981px;}
.ws16c{word-spacing:178.752442px;}
.wsfe{word-spacing:179.081414px;}
.ws168{word-spacing:182.244307px;}
.wsbe{word-spacing:182.961616px;}
.wsbd{word-spacing:183.009436px;}
.ws13a{word-spacing:188.832384px;}
.wsc5{word-spacing:189.746957px;}
.wsbb{word-spacing:194.964586px;}
.wsb9{word-spacing:196.112281px;}
.ws165{word-spacing:199.673842px;}
.ws115{word-spacing:201.044621px;}
.wsb5{word-spacing:202.497178px;}
.wsc4{word-spacing:203.196557px;}
.wsba{word-spacing:206.871916px;}
.wsb4{word-spacing:216.000576px;}
.wsc3{word-spacing:216.592358px;}
.wsc2{word-spacing:216.646157px;}
.ws102{word-spacing:225.576691px;}
.wsb2{word-spacing:229.396378px;}
.wsb3{word-spacing:229.450176px;}
.ws16d{word-spacing:236.286292px;}
.ws15e{word-spacing:263.211080px;}
.ws15f{word-spacing:275.991631px;}
.ws169{word-spacing:279.590285px;}
.ws166{word-spacing:300.807889px;}
.ws153{word-spacing:335.110829px;}
.ws160{word-spacing:343.664179px;}
.ws13f{word-spacing:344.524954px;}
.ws154{word-spacing:355.936829px;}
.ws159{word-spacing:424.674883px;}
.ws156{word-spacing:426.211392px;}
.ws158{word-spacing:454.506509px;}
.ws15c{word-spacing:458.298883px;}
.ws15b{word-spacing:459.001642px;}
.ws157{word-spacing:466.822176px;}
.ws15d{word-spacing:468.196694px;}
.ws15a{word-spacing:481.648694px;}
.ws16a{word-spacing:639.572897px;}
.ws16b{word-spacing:671.457830px;}
.wsf9{word-spacing:811.214668px;}
.wsed{word-spacing:811.393994px;}
.wsf7{word-spacing:817.012901px;}
.wsec{word-spacing:823.647992px;}
.wsf4{word-spacing:863.279215px;}
._42{margin-left:-14.944512px;}
._0{margin-left:-11.943245px;}
._2f{margin-left:-7.464383px;}
._c{margin-left:-5.864026px;}
._1{margin-left:-4.423394px;}
._2{margin-left:-3.287658px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._7{width:2.301354px;}
._40{width:3.726647px;}
._41{width:7.156279px;}
._a{width:11.094379px;}
._5{width:12.220258px;}
._4f{width:13.337526px;}
._8{width:14.406926px;}
._b{width:16.462310px;}
._10{width:18.231558px;}
._e{width:19.313626px;}
._11{width:20.443255px;}
._dc{width:21.585084px;}
._d{width:22.680595px;}
._14{width:24.396935px;}
._6{width:25.943736px;}
._de{width:26.971560px;}
._f{width:28.034756px;}
._60{width:29.260537px;}
._4d{width:31.150655px;}
._9{width:32.637384px;}
._3e{width:34.027451px;}
._83{width:35.207828px;}
._3d{width:38.077057px;}
._dd{width:49.673797px;}
._cb{width:51.411600px;}
._cd{width:60.902295px;}
._4e{width:70.355881px;}
._ca{width:79.039101px;}
._cc{width:80.663332px;}
._27{width:84.248294px;}
._2c{width:87.637594px;}
._17{width:93.609216px;}
._ce{width:96.747110px;}
._c9{width:98.988642px;}
._1f{width:101.959894px;}
._16{width:104.046106px;}
._99{width:105.332902px;}
._90{width:108.296179px;}
._9b{width:110.294486px;}
._c8{width:113.173452px;}
._15{width:114.214003px;}
._33{width:116.305316px;}
._9a{width:119.916634px;}
._cf{width:122.038171px;}
._2a{width:126.587635px;}
._35{width:128.565672px;}
._1a{width:132.666854px;}
._29{width:133.689024px;}
._34{width:141.153901px;}
._20{width:143.277065px;}
._1b{width:144.448704px;}
._43{width:145.941830px;}
._23{width:147.138624px;}
._2d{width:148.698778px;}
._d0{width:150.108863px;}
._22{width:151.729068px;}
._1c{width:152.733658px;}
._77{width:154.885594px;}
._39{width:159.082214px;}
._5a{width:160.911014px;}
._91{width:163.009152px;}
._19{width:164.515507px;}
._37{width:166.498673px;}
._2b{width:167.528218px;}
._18{width:169.598179px;}
._8e{width:172.183056px;}
._1d{width:174.306816px;}
._36{width:179.218812px;}
._65{width:181.462003px;}
._31{width:183.667738px;}
._8f{width:184.987075px;}
._8c{width:189.153485px;}
._28{width:190.715328px;}
._3a{width:193.351450px;}
._81{width:194.804006px;}
._25{width:195.885629px;}
._32{width:198.946483px;}
._d8{width:199.959377px;}
._30{width:201.044621px;}
._8b{width:202.682918px;}
._66{width:205.025702px;}
._45{width:208.038413px;}
._bf{width:210.096810px;}
._db{width:211.459802px;}
._21{width:212.772672px;}
._58{width:214.103935px;}
._5b{width:215.408794px;}
._61{width:217.453133px;}
._56{width:218.798093px;}
._d7{width:221.584190px;}
._3c{width:223.370957px;}
._c0{width:225.825592px;}
._89{width:227.298240px;}
._63{width:228.696998px;}
._73{width:229.988160px;}
._c6{width:231.300470px;}
._84{width:232.410154px;}
._24{width:234.883814px;}
._8a{width:236.115523px;}
._c7{width:237.460433px;}
._1e{width:239.128234px;}
._c4{width:241.558484px;}
._79{width:243.491558px;}
._2e{width:246.020083px;}
._55{width:248.225818px;}
._49{width:250.054963px;}
._c3{width:251.103245px;}
._c5{width:252.312084px;}
._80{width:253.605658px;}
._d9{width:257.249534px;}
._5c{width:258.608909px;}
._c2{width:260.051076px;}
._85{width:261.191232px;}
._87{width:263.450765px;}
._26{width:265.226112px;}
._7a{width:267.485645px;}
._da{width:268.583000px;}
._51{width:269.906573px;}
._52{width:271.897114px;}
._86{width:272.973082px;}
._3b{width:274.856026px;}
._c1{width:276.413537px;}
._bc{width:287.982835px;}
._64{width:293.147482px;}
._74{width:294.976627px;}
._47{width:297.074765px;}
._50{width:298.385424px;}
._4a{width:300.195072px;}
._6c{width:303.907162px;}
._d1{width:306.435686px;}
._68{width:309.986381px;}
._69{width:311.600333px;}
._62{width:313.321882px;}
._88{width:315.366221px;}
._46{width:318.701722px;}
._8d{width:320.853658px;}
._6a{width:324.081562px;}
._82{width:325.695514px;}
._be{width:327.367741px;}
._48{width:332.151322px;}
._bb{width:335.379226px;}
._75{width:338.230541px;}
._4c{width:339.683098px;}
._67{width:340.759066px;}
._4b{width:343.341389px;}
._a7{width:345.994224px;}
._78{width:352.218125px;}
._bd{width:358.732208px;}
._a2{width:360.414595px;}
._7f{width:364.322765px;}
._9c{width:373.629888px;}
._a6{width:374.782368px;}
._a4{width:380.591395px;}
._7b{width:382.076237px;}
._7e{width:384.497165px;}
._93{width:392.028941px;}
._76{width:394.880256px;}
._57{width:398.484749px;}
._7d{width:403.708848px;}
._a5{width:404.779162px;}
._53{width:411.772954px;}
._95{width:417.206592px;}
._a1{width:424.845965px;}
._ab{width:426.513715px;}
._92{width:428.396659px;}
._9d{width:433.884096px;}
._9e{width:442.061453px;}
._97{width:444.320986px;}
._96{width:445.450752px;}
._38{width:455.242061px;}
._94{width:457.770586px;}
._6e{width:462.128256px;}
._6d{width:475.577856px;}
._a0{width:477.084211px;}
._a8{width:479.289946px;}
._6b{width:489.027456px;}
._a3{width:491.932570px;}
._ad{width:495.106675px;}
._b2{width:506.942323px;}
._b5{width:513.667123px;}
._ac{width:514.743091px;}
._af{width:518.486650px;}
._b7{width:520.284326px;}
._b1{width:523.135642px;}
._54{width:526.901530px;}
._b0{width:528.192691px;}
._ae{width:536.692838px;}
._9f{width:545.730970px;}
._b6{width:551.003213px;}
._5d{width:552.617165px;}
._b9{width:563.753434px;}
._a9{width:566.604749px;}
._d5{width:569.509862px;}
._b4{width:574.728307px;}
._b3{width:580.861325px;}
._98{width:585.218995px;}
._d3{width:589.684262px;}
._b8{width:591.190618px;}
._d2{width:593.880538px;}
._aa{width:623.415859px;}
._d4{width:730.205683px;}
._12{width:733.075072px;}
._d6{width:735.639322px;}
._72{width:789.760512px;}
._71{width:823.384512px;}
._59{width:889.825536px;}
._7c{width:898.002893px;}
._70{width:906.825830px;}
._6f{width:958.526093px;}
._3f{width:989.936144px;}
._5e{width:1129.336013px;}
._ba{width:1326.620701px;}
._44{width:1562.090342px;}
._5f{width:2408.624700px;}
._13{width:2432.534700px;}
.fc7{color:rgb(112,173,71);}
.fc5{color:rgb(68,114,196);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc6{color:rgb(237,125,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fsd{font-size:35.865600px;}
.fsc{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs11{font-size:43.600200px;}
.fs8{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fse{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs10{font-size:83.686200px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y1e8{bottom:-747.572196px;}
.y1e7{bottom:-728.402934px;}
.y1e6{bottom:-709.143492px;}
.y1e5{bottom:-689.881458px;}
.y1e4{bottom:-670.712196px;}
.y1e3{bottom:-651.452754px;}
.y85{bottom:-641.733516px;}
.y1e2{bottom:-632.283492px;}
.y84{bottom:-622.564254px;}
.y1e1{bottom:-613.022196px;}
.y83{bottom:-603.304812px;}
.y1e0{bottom:-593.762754px;}
.y82{bottom:-584.133138px;}
.y1df{bottom:-574.593492px;}
.y81{bottom:-564.873696px;}
.y1de{bottom:-555.332196px;}
.y80{bottom:-545.614254px;}
.y1dd{bottom:-536.162934px;}
.y7f{bottom:-526.444992px;}
.y1dc{bottom:-516.903492px;}
.y7e{bottom:-507.185550px;}
.y7d{bottom:-507.184311px;}
.y1db{bottom:-497.641308px;}
.y7c{bottom:-488.013546px;}
.y1da{bottom:-478.472046px;}
.y7b{bottom:-468.754104px;}
.y1d9{bottom:-459.212604px;}
.y7a{bottom:-449.494662px;}
.y1d8{bottom:-440.043342px;}
.y79{bottom:-430.322400px;}
.y1d7{bottom:-420.783549px;}
.y78{bottom:-411.062958px;}
.y1d6{bottom:-401.524107px;}
.y77{bottom:-391.803516px;}
.y1d5{bottom:-382.353342px;}
.y76{bottom:-372.634254px;}
.y1d4{bottom:-363.093900px;}
.y1d3{bottom:-363.093492px;}
.y75{bottom:-353.374812px;}
.y1d2{bottom:-343.834050px;}
.y1d1{bottom:-343.833312px;}
.y74{bottom:-334.204491px;}
.y1d0{bottom:-324.661638px;}
.y73{bottom:-314.945049px;}
.y1cf{bottom:-305.402196px;}
.y72{bottom:-295.685607px;}
.y1ce{bottom:-286.232934px;}
.y71{bottom:-276.514842px;}
.y1cd{bottom:-266.973492px;}
.y70{bottom:-257.255400px;}
.y6f{bottom:-257.252310px;}
.y1cb{bottom:-247.714815px;}
.y1cc{bottom:-247.714050px;}
.y6e{bottom:-238.083048px;}
.y1ca{bottom:-228.542196px;}
.y6d{bottom:-218.823606px;}
.y1c9{bottom:-209.282754px;}
.y6c{bottom:-195.154362px;}
.y1c8{bottom:-190.113492px;}
.y1c7{bottom:-170.852313px;}
.y6b{bottom:-157.894992px;}
.y1c6{bottom:-151.592871px;}
.y6a{bottom:-138.632940px;}
.y1c5{bottom:-127.922124px;}
.y69{bottom:-119.463678px;}
.y68{bottom:-100.204236px;}
.y1c4{bottom:-90.662754px;}
.y67{bottom:-80.944794px;}
.y1c3{bottom:-71.493492px;}
.y66{bottom:-57.275550px;}
.y1c2{bottom:-52.234050px;}
.y65{bottom:-20.465550px;}
.y11a{bottom:-19.431750px;}
.y1c1{bottom:-15.423900px;}
.y0{bottom:0.000000px;}
.y64{bottom:2.125197px;}
.y119{bottom:3.069033px;}
.y9{bottom:3.425340px;}
.y1c0{bottom:7.076100px;}
.y8{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y4e{bottom:31.890000px;}
.y24f{bottom:88.993500px;}
.y2a8{bottom:91.752000px;}
.y17f{bottom:91.986000px;}
.y29a{bottom:95.452500px;}
.y153{bottom:95.935500px;}
.y22{bottom:102.823500px;}
.y24e{bottom:107.823000px;}
.y1f3{bottom:108.993000px;}
.y2a7{bottom:110.580000px;}
.y17e{bottom:110.815500px;}
.y4d{bottom:112.638000px;}
.y299{bottom:114.282000px;}
.y152{bottom:114.765000px;}
.y39c{bottom:116.334000px;}
.y36d{bottom:117.238500px;}
.y121{bottom:118.695000px;}
.ya9{bottom:118.870500px;}
.y21{bottom:120.711000px;}
.y225{bottom:121.041000px;}
.ye0{bottom:124.549500px;}
.y2d9{bottom:126.222000px;}
.y24d{bottom:126.652500px;}
.y1f2{bottom:127.822500px;}
.y36c{bottom:129.193500px;}
.y2a6{bottom:129.409500px;}
.y17d{bottom:129.645000px;}
.y4c{bottom:131.467500px;}
.y298{bottom:133.111500px;}
.ydd{bottom:133.293000px;}
.y39b{bottom:133.594500px;}
.y33c{bottom:134.413500px;}
.y120{bottom:137.524500px;}
.ya8{bottom:137.700000px;}
.y20{bottom:138.600000px;}
.y224{bottom:139.870500px;}
.ydf{bottom:140.988000px;}
.y36b{bottom:141.150000px;}
.y2d8{bottom:142.660500px;}
.y24c{bottom:145.482000px;}
.y1f1{bottom:146.652000px;}
.y2a5{bottom:148.239000px;}
.y17c{bottom:148.474500px;}
.y151{bottom:149.286000px;}
.ydc{bottom:149.731500px;}
.y4b{bottom:150.297000px;}
.y33b{bottom:150.852000px;}
.y39a{bottom:150.855000px;}
.y297{bottom:151.941000px;}
.y36a{bottom:153.105000px;}
.y11f{bottom:156.354000px;}
.y1f{bottom:156.487500px;}
.ya7{bottom:156.529500px;}
.yde{bottom:157.426500px;}
.y223{bottom:158.700000px;}
.y2d7{bottom:159.097500px;}
.y24b{bottom:164.311500px;}
.y369{bottom:165.060000px;}
.y1f0{bottom:165.481500px;}
.y2a4{bottom:167.068500px;}
.y33a{bottom:167.290500px;}
.y17b{bottom:167.304000px;}
.y399{bottom:168.115500px;}
.y4a{bottom:169.126500px;}
.y296{bottom:170.770500px;}
.ydb{bottom:173.865000px;}
.y1e{bottom:174.375000px;}
.y11e{bottom:175.183500px;}
.ya6{bottom:175.359000px;}
.y2d6{bottom:175.536000px;}
.y368{bottom:177.015000px;}
.y222{bottom:177.529500px;}
.y24a{bottom:183.141000px;}
.y339{bottom:183.729000px;}
.y150{bottom:183.807000px;}
.y1ef{bottom:184.311000px;}
.y398{bottom:185.376000px;}
.y2a3{bottom:185.898000px;}
.y17a{bottom:186.133500px;}
.y49{bottom:187.956000px;}
.y367{bottom:188.970000px;}
.y295{bottom:189.600000px;}
.y2d5{bottom:191.974500px;}
.y1d{bottom:192.264000px;}
.y11d{bottom:194.013000px;}
.ya5{bottom:194.188500px;}
.y63{bottom:195.535746px;}
.y221{bottom:196.359000px;}
.yda{bottom:197.506500px;}
.y338{bottom:200.167500px;}
.y10f{bottom:200.842500px;}
.y249{bottom:201.970500px;}
.y14f{bottom:202.636500px;}
.y1ee{bottom:203.140500px;}
.y2a2{bottom:204.727500px;}
.y179{bottom:204.963000px;}
.y48{bottom:206.785500px;}
.y366{bottom:208.128000px;}
.y2d4{bottom:208.413000px;}
.y294{bottom:208.429500px;}
.y1c{bottom:210.151500px;}
.y11c{bottom:212.842500px;}
.ya4{bottom:213.018000px;}
.y62{bottom:214.705008px;}
.y220{bottom:215.188500px;}
.y10e{bottom:219.672000px;}
.y397{bottom:219.895500px;}
.y365{bottom:220.083000px;}
.y26e{bottom:220.800000px;}
.y14e{bottom:221.464500px;}
.y1ed{bottom:221.970000px;}
.y2a1{bottom:223.557000px;}
.y178{bottom:223.792500px;}
.y337{bottom:223.807500px;}
.y248{bottom:225.283500px;}
.y47{bottom:225.615000px;}
.y293{bottom:227.259000px;}
.y1b{bottom:228.039000px;}
.yd9{bottom:229.125000px;}
.ya3{bottom:231.847500px;}
.y2d3{bottom:232.054500px;}
.y61{bottom:233.967042px;}
.y21f{bottom:234.018000px;}
.y396{bottom:237.156000px;}
.y14d{bottom:237.219000px;}
.y10d{bottom:238.501500px;}
.y2f9{bottom:239.152500px;}
.y26d{bottom:239.629500px;}
.y14c{bottom:240.294000px;}
.y1ec{bottom:240.799500px;}
.y2a0{bottom:242.386500px;}
.y177{bottom:242.622000px;}
.y46{bottom:244.444500px;}
.y292{bottom:246.088500px;}
.y11b{bottom:246.408000px;}
.y364{bottom:248.563500px;}
.ya2{bottom:250.677000px;}
.y21e{bottom:252.847500px;}
.y60{bottom:253.226484px;}
.y395{bottom:254.416500px;}
.y336{bottom:255.427500px;}
.y2f8{bottom:255.591000px;}
.y14b{bottom:256.048500px;}
.y10c{bottom:257.331000px;}
.y26c{bottom:258.459000px;}
.y14a{bottom:259.123500px;}
.y1eb{bottom:259.629000px;}
.y1a6{bottom:261.216000px;}
.y176{bottom:261.451500px;}
.y45{bottom:263.274000px;}
.y2d2{bottom:263.673000px;}
.y291{bottom:264.916500px;}
.y247{bottom:265.270500px;}
.y110{bottom:268.837200px;}
.ya1{bottom:269.506500px;}
.yd8{bottom:270.042000px;}
.y21d{bottom:271.677000px;}
.y2f7{bottom:272.029500px;}
.y5f{bottom:272.395746px;}
.y10b{bottom:276.160500px;}
.yd5{bottom:277.141500px;}
.y26b{bottom:277.288500px;}
.y1ea{bottom:278.458500px;}
.y1a5{bottom:280.045500px;}
.y175{bottom:280.281000px;}
.y246{bottom:281.709000px;}
.y44{bottom:282.103500px;}
.y290{bottom:283.746000px;}
.yd7{bottom:284.239500px;}
.y394{bottom:286.315500px;}
.y149{bottom:287.368500px;}
.ya0{bottom:288.336000px;}
.y2f6{bottom:288.468000px;}
.y393{bottom:288.937500px;}
.y21c{bottom:290.506500px;}
.yd4{bottom:291.337500px;}
.y5e{bottom:291.655188px;}
.y335{bottom:292.531500px;}
.y10a{bottom:294.990000px;}
.y363{bottom:297.775500px;}
.y245{bottom:298.146000px;}
.yd6{bottom:298.435500px;}
.y1a4{bottom:298.875000px;}
.y174{bottom:299.110500px;}
.y43{bottom:300.933000px;}
.y28f{bottom:302.575500px;}
.y2f5{bottom:304.906500px;}
.y2d1{bottom:305.263500px;}
.y392{bottom:306.198000px;}
.y9f{bottom:307.165500px;}
.y1a{bottom:307.299000px;}
.y21b{bottom:309.336000px;}
.y362{bottom:309.730500px;}
.yd3{bottom:310.531500px;}
.y3c9{bottom:310.681500px;}
.y5d{bottom:310.824801px;}
.y1e9{bottom:312.024000px;}
.yd2{bottom:312.633000px;}
.y109{bottom:313.819500px;}
.y244{bottom:314.584500px;}
.y1a3{bottom:317.704500px;}
.y173{bottom:317.940000px;}
.y42{bottom:319.762500px;}
.y2f4{bottom:321.345000px;}
.y28e{bottom:321.405000px;}
.y361{bottom:321.685500px;}
.y2d0{bottom:321.702000px;}
.y148{bottom:321.889500px;}
.y26a{bottom:322.143000px;}
.y9e{bottom:323.265000px;}
.y391{bottom:323.458500px;}
.y19{bottom:325.186500px;}
.y9d{bottom:325.993500px;}
.y3c8{bottom:327.940500px;}
.y21a{bottom:328.165500px;}
.y1bf{bottom:328.556085px;}
.y5c{bottom:330.084243px;}
.y243{bottom:331.023000px;}
.y108{bottom:332.649000px;}
.y360{bottom:333.640500px;}
.yd1{bottom:334.032000px;}
.y1bd{bottom:334.453500px;}
.y1a2{bottom:336.534000px;}
.y334{bottom:336.648000px;}
.y172{bottom:336.769500px;}
.y28d{bottom:337.504500px;}
.y2f3{bottom:337.783500px;}
.y2cf{bottom:338.140500px;}
.y1be{bottom:338.185950px;}
.y269{bottom:338.581500px;}
.y41{bottom:338.592000px;}
.y318{bottom:340.086000px;}
.y28c{bottom:340.234500px;}
.y390{bottom:340.719000px;}
.y18{bottom:343.074000px;}
.y9c{bottom:344.823000px;}
.y3c7{bottom:345.201000px;}
.y35f{bottom:345.595500px;}
.y219{bottom:346.995000px;}
.yd0{bottom:348.229500px;}
.y333{bottom:348.603000px;}
.y5b{bottom:349.343685px;}
.y107{bottom:351.478500px;}
.y2f2{bottom:354.222000px;}
.y242{bottom:354.664500px;}
.y40{bottom:354.691500px;}
.y268{bottom:355.018500px;}
.y1a1{bottom:355.363500px;}
.y171{bottom:355.599000px;}
.y147{bottom:356.409000px;}
.y317{bottom:356.524500px;}
.y3f{bottom:357.421500px;}
.y35e{bottom:357.550500px;}
.y38f{bottom:357.978000px;}
.y28b{bottom:359.064000px;}
.y332{bottom:360.559500px;}
.y17{bottom:360.963000px;}
.y2ce{bottom:361.780500px;}
.y3c6{bottom:362.461500px;}
.y9b{bottom:363.652500px;}
.y218{bottom:365.824500px;}
.y5a{bottom:368.514450px;}
.y35d{bottom:369.507000px;}
.y106{bottom:370.308000px;}
.y2f1{bottom:370.660500px;}
.y267{bottom:371.457000px;}
.y146{bottom:372.163500px;}
.y331{bottom:372.514500px;}
.y316{bottom:372.961500px;}
.y145{bottom:372.997500px;}
.y1a0{bottom:374.193000px;}
.y170{bottom:374.427000px;}
.y144{bottom:375.238500px;}
.y3e{bottom:376.251000px;}
.y28a{bottom:377.893500px;}
.ycf{bottom:378.279000px;}
.y3c5{bottom:379.722000px;}
.y9a{bottom:382.482000px;}
.y330{bottom:384.469500px;}
.y217{bottom:384.654000px;}
.y241{bottom:386.283000px;}
.y2f0{bottom:387.097500px;}
.y266{bottom:387.895500px;}
.y35c{bottom:388.663500px;}
.y105{bottom:389.137500px;}
.y315{bottom:389.400000px;}
.y38e{bottom:392.499000px;}
.y19f{bottom:393.022500px;}
.y16f{bottom:393.256500px;}
.y2cd{bottom:393.400500px;}
.y3d{bottom:395.080500px;}
.y32f{bottom:396.424500px;}
.y289{bottom:396.723000px;}
.y3c4{bottom:396.982500px;}
.y16{bottom:399.024000px;}
.y35b{bottom:400.618500px;}
.y99{bottom:401.311500px;}
.y216{bottom:403.483500px;}
.y2ef{bottom:403.536000px;}
.y314{bottom:405.838500px;}
.y104{bottom:407.967000px;}
.y32e{bottom:408.379500px;}
.y143{bottom:409.759500px;}
.y265{bottom:411.537000px;}
.y19e{bottom:411.852000px;}
.y16e{bottom:412.086000px;}
.y3c{bottom:413.910000px;}
.y3c3{bottom:414.243000px;}
.y288{bottom:415.552500px;}
.y15{bottom:416.913000px;}
.y240{bottom:417.157500px;}
.yce{bottom:418.374000px;}
.y98{bottom:420.141000px;}
.y313{bottom:422.277000px;}
.y215{bottom:422.313000px;}
.y59{bottom:423.234585px;}
.y103{bottom:426.796500px;}
.y38d{bottom:427.020000px;}
.y2ee{bottom:427.177500px;}
.y32d{bottom:427.537500px;}
.y35a{bottom:429.100500px;}
.y3b{bottom:430.009500px;}
.y19d{bottom:430.681500px;}
.y16d{bottom:430.915500px;}
.y3c2{bottom:431.503500px;}
.y3a{bottom:432.739500px;}
.y58{bottom:432.864450px;}
.y287{bottom:434.382000px;}
.y14{bottom:434.800500px;}
.ycd{bottom:434.812500px;}
.y2cc{bottom:434.989500px;}
.y23f{bottom:435.987000px;}
.y312{bottom:438.715500px;}
.y97{bottom:438.970500px;}
.y32c{bottom:439.492500px;}
.y214{bottom:441.142500px;}
.y264{bottom:443.155500px;}
.y142{bottom:444.280500px;}
.y102{bottom:445.626000px;}
.y3c1{bottom:448.764000px;}
.y19c{bottom:449.511000px;}
.y16c{bottom:449.745000px;}
.y2cb{bottom:451.428000px;}
.y286{bottom:453.211500px;}
.y23e{bottom:454.816500px;}
.y311{bottom:455.154000px;}
.y39{bottom:456.052500px;}
.y96{bottom:457.800000px;}
.ycc{bottom:458.454000px;}
.y2ed{bottom:458.797500px;}
.y213{bottom:459.972000px;}
.y38c{bottom:461.541000px;}
.y101{bottom:464.454000px;}
.y3c0{bottom:466.024500px;}
.y2ca{bottom:467.866500px;}
.y32b{bottom:467.973000px;}
.y19b{bottom:468.340500px;}
.y16b{bottom:468.574500px;}
.y13{bottom:470.622000px;}
.y285{bottom:472.041000px;}
.y23d{bottom:473.646000px;}
.y263{bottom:475.759500px;}
.y95{bottom:476.629500px;}
.y310{bottom:478.794000px;}
.y141{bottom:478.801500px;}
.y359{bottom:479.656500px;}
.y100{bottom:483.283500px;}
.y19a{bottom:487.170000px;}
.y16a{bottom:487.404000px;}
.y12{bottom:488.509500px;}
.ycb{bottom:490.074000px;}
.y284{bottom:490.870500px;}
.y2c9{bottom:491.508000px;}
.y23c{bottom:492.475500px;}
.y262{bottom:494.589000px;}
.y94{bottom:495.459000px;}
.y2ec{bottom:495.901500px;}
.y38b{bottom:496.062000px;}
.y358{bottom:496.095000px;}
.y212{bottom:497.631000px;}
.y3bf{bottom:500.544000px;}
.yff{bottom:502.113000px;}
.y199{bottom:505.999500px;}
.y169{bottom:506.233500px;}
.y11{bottom:506.397000px;}
.y283{bottom:509.700000px;}
.y30f{bottom:510.414000px;}
.y23b{bottom:511.305000px;}
.y357{bottom:512.533500px;}
.y140{bottom:513.321000px;}
.y261{bottom:513.418500px;}
.y93{bottom:514.288500px;}
.y2eb{bottom:514.731000px;}
.y211{bottom:516.460500px;}
.y3be{bottom:517.804500px;}
.y32a{bottom:518.529000px;}
.yfe{bottom:520.942500px;}
.y2c8{bottom:523.126500px;}
.y198{bottom:524.829000px;}
.y168{bottom:525.063000px;}
.yca{bottom:527.178000px;}
.y282{bottom:528.529500px;}
.y356{bottom:528.972000px;}
.y23a{bottom:530.134500px;}
.y38a{bottom:530.581500px;}
.y38{bottom:531.202500px;}
.y13f{bottom:532.150500px;}
.y260{bottom:532.248000px;}
.y92{bottom:533.118000px;}
.y2ea{bottom:533.560500px;}
.y329{bottom:534.967500px;}
.y3bd{bottom:535.065000px;}
.y210{bottom:535.290000px;}
.yfd{bottom:539.772000px;}
.y10{bottom:542.218500px;}
.y197{bottom:543.658500px;}
.y355{bottom:545.410500px;}
.yc9{bottom:546.007500px;}
.y281{bottom:547.359000px;}
.y389{bottom:547.842000px;}
.y239{bottom:548.964000px;}
.y91{bottom:549.217500px;}
.y37{bottom:550.659000px;}
.y13e{bottom:550.980000px;}
.y25f{bottom:551.077500px;}
.y328{bottom:551.406000px;}
.y90{bottom:551.947500px;}
.y3bc{bottom:552.325500px;}
.y20f{bottom:554.118000px;}
.yfc{bottom:558.601500px;}
.y2c7{bottom:558.781500px;}
.yf{bottom:560.106000px;}
.y30e{bottom:560.970000px;}
.y354{bottom:561.849000px;}
.y196{bottom:562.488000px;}
.yc8{bottom:564.837000px;}
.y388{bottom:565.102500px;}
.y280{bottom:566.188500px;}
.y238{bottom:567.793500px;}
.y327{bottom:567.844500px;}
.y3bb{bottom:569.586000px;}
.y13d{bottom:569.809500px;}
.y25e{bottom:569.907000px;}
.y167{bottom:570.525000px;}
.y8f{bottom:570.777000px;}
.y20e{bottom:572.947500px;}
.y30d{bottom:577.408500px;}
.yfb{bottom:577.431000px;}
.y2c6{bottom:577.611000px;}
.ye{bottom:577.993500px;}
.y2e9{bottom:579.022500px;}
.y195{bottom:581.317500px;}
.y387{bottom:582.363000px;}
.yc7{bottom:583.666500px;}
.y326{bottom:584.283000px;}
.y27f{bottom:585.018000px;}
.y353{bottom:585.489000px;}
.y237{bottom:586.623000px;}
.y3ba{bottom:586.846500px;}
.y166{bottom:586.963500px;}
.y36{bottom:588.049500px;}
.y25d{bottom:588.736500px;}
.y8e{bottom:589.606500px;}
.y20d{bottom:591.777000px;}
.y30c{bottom:593.847000px;}
.y2c5{bottom:594.199500px;}
.y2e8{bottom:595.459500px;}
.yd{bottom:595.882500px;}
.yfa{bottom:596.260500px;}
.y2c4{bottom:596.440500px;}
.y13c{bottom:598.054500px;}
.y386{bottom:599.623500px;}
.y29f{bottom:600.147000px;}
.yc6{bottom:602.494500px;}
.y165{bottom:603.402000px;}
.y27e{bottom:603.847500px;}
.y3b9{bottom:604.107000px;}
.y236{bottom:605.452500px;}
.y35{bottom:607.506000px;}
.y25c{bottom:607.566000px;}
.y194{bottom:607.618500px;}
.y325{bottom:607.924500px;}
.y30b{bottom:610.285500px;}
.y20c{bottom:610.606500px;}
.y8d{bottom:612.919500px;}
.yc{bottom:613.770000px;}
.yf9{bottom:615.090000px;}
.y2c3{bottom:615.270000px;}
.y13b{bottom:616.884000px;}
.y352{bottom:617.109000px;}
.y29e{bottom:618.975000px;}
.y2e7{bottom:619.101000px;}
.yc5{bottom:621.324000px;}
.y3b8{bottom:621.366000px;}
.y27d{bottom:622.677000px;}
.y25b{bottom:626.395500px;}
.y193{bottom:626.448000px;}
.y30a{bottom:626.724000px;}
.y34{bottom:626.962500px;}
.y164{bottom:627.042000px;}
.y235{bottom:628.765500px;}
.y20b{bottom:629.436000px;}
.yb{bottom:631.657500px;}
.yf8{bottom:633.919500px;}
.y385{bottom:634.144500px;}
.y13a{bottom:635.713500px;}
.y29d{bottom:637.804500px;}
.y2c2{bottom:638.583000px;}
.y3b7{bottom:638.626500px;}
.y324{bottom:639.543000px;}
.yc4{bottom:640.153500px;}
.y27c{bottom:641.506500px;}
.y309{bottom:643.162500px;}
.y163{bottom:643.480500px;}
.y25a{bottom:645.225000px;}
.y192{bottom:645.277500px;}
.y33{bottom:646.420500px;}
.y8c{bottom:646.543500px;}
.y20a{bottom:648.265500px;}
.ya{bottom:649.546500px;}
.y2e6{bottom:650.721000px;}
.y384{bottom:651.403500px;}
.yf7{bottom:652.749000px;}
.y139{bottom:654.543000px;}
.y3b6{bottom:655.887000px;}
.y29c{bottom:656.634000px;}
.yc3{bottom:658.983000px;}
.y308{bottom:659.601000px;}
.y162{bottom:659.919000px;}
.y1bc{bottom:659.976000px;}
.y27b{bottom:660.336000px;}
.y259{bottom:664.054500px;}
.y191{bottom:664.107000px;}
.y8b{bottom:665.373000px;}
.y32{bottom:665.877000px;}
.y209{bottom:667.095000px;}
.y351{bottom:667.665000px;}
.y383{bottom:668.664000px;}
.y234{bottom:668.752500px;}
.y3b5{bottom:670.525500px;}
.yf6{bottom:671.578500px;}
.y7{bottom:671.917464px;}
.y3b4{bottom:673.147500px;}
.y138{bottom:673.372500px;}
.y2c1{bottom:675.345000px;}
.y29b{bottom:675.463500px;}
.y307{bottom:676.039500px;}
.y323{bottom:676.647000px;}
.yc2{bottom:677.812500px;}
.y1bb{bottom:678.819000px;}
.y27a{bottom:679.165500px;}
.y190{bottom:682.936500px;}
.y160{bottom:683.560500px;}
.y8a{bottom:684.202500px;}
.y233{bottom:685.191000px;}
.y31{bottom:685.333500px;}
.y1ba{bottom:685.885500px;}
.y208{bottom:685.924500px;}
.y2e5{bottom:687.825000px;}
.y137{bottom:689.472000px;}
.yf5{bottom:690.408000px;}
.y350{bottom:691.305000px;}
.y15f{bottom:691.779000px;}
.y136{bottom:692.202000px;}
.y306{bottom:692.478000px;}
.y2b9{bottom:694.293000px;}
.yc1{bottom:696.642000px;}
.y161{bottom:699.999000px;}
.y232{bottom:701.629500px;}
.y18f{bottom:701.766000px;}
.y2c0{bottom:701.886000px;}
.y89{bottom:703.032000px;}
.y382{bottom:703.185000px;}
.y207{bottom:704.754000px;}
.y30{bottom:704.791500px;}
.y279{bottom:705.466500px;}
.y2e4{bottom:706.654500px;}
.y3b3{bottom:707.668500px;}
.y34f{bottom:707.743500px;}
.y135{bottom:708.301500px;}
.y258{bottom:708.909000px;}
.y305{bottom:708.915000px;}
.yf4{bottom:709.237500px;}
.y134{bottom:711.031500px;}
.y2b8{bottom:713.122500px;}
.yc0{bottom:715.471500px;}
.y231{bottom:718.068000px;}
.y1b9{bottom:718.899000px;}
.y381{bottom:720.445500px;}
.y18e{bottom:720.595500px;}
.y88{bottom:721.861500px;}
.y322{bottom:722.109000px;}
.y2e3{bottom:723.241500px;}
.y206{bottom:723.583500px;}
.y2f{bottom:724.248000px;}
.y3b2{bottom:724.929000px;}
.y257{bottom:725.347500px;}
.y304{bottom:725.353500px;}
.y2e2{bottom:725.484000px;}
.y1b8{bottom:725.965500px;}
.y133{bottom:727.131000px;}
.yf3{bottom:728.067000px;}
.y2bf{bottom:728.425500px;}
.y132{bottom:729.859500px;}
.y15e{bottom:731.617500px;}
.y278{bottom:731.767500px;}
.y2b7{bottom:731.952000px;}
.ybf{bottom:734.301000px;}
.y230{bottom:734.505000px;}
.y380{bottom:737.706000px;}
.y321{bottom:738.547500px;}
.y34e{bottom:739.363500px;}
.y18d{bottom:739.425000px;}
.y256{bottom:741.784500px;}
.y3b1{bottom:742.189500px;}
.y205{bottom:742.413000px;}
.y2e{bottom:743.706000px;}
.y87{bottom:745.173000px;}
.yf2{bottom:746.896500px;}
.y22f{bottom:748.962000px;}
.y303{bottom:748.995000px;}
.y277{bottom:750.597000px;}
.y2b6{bottom:750.781500px;}
.y2be{bottom:754.966500px;}
.y320{bottom:754.986000px;}
.y131{bottom:758.104500px;}
.y255{bottom:758.223000px;}
.y18c{bottom:758.254500px;}
.y1b7{bottom:758.977500px;}
.y3b0{bottom:759.450000px;}
.y204{bottom:761.242500px;}
.y22e{bottom:761.596500px;}
.y2d{bottom:763.162500px;}
.y15d{bottom:764.829000px;}
.yf1{bottom:765.726000px;}
.y1b6{bottom:766.044000px;}
.y276{bottom:769.426500px;}
.y2b5{bottom:769.611000px;}
.y2e1{bottom:770.980500px;}
.y31f{bottom:771.424500px;}
.y37f{bottom:772.227000px;}
.y22d{bottom:774.598500px;}
.y254{bottom:774.661500px;}
.y86{bottom:775.600500px;}
.y3af{bottom:776.709000px;}
.y18b{bottom:777.084000px;}
.ybe{bottom:779.763000px;}
.y203{bottom:780.072000px;}
.y302{bottom:780.615000px;}
.y2bd{bottom:781.507500px;}
.y2c{bottom:782.619000px;}
.y15c{bottom:783.658500px;}
.yf0{bottom:784.555500px;}
.y2e0{bottom:787.455000px;}
.ybd{bottom:787.723500px;}
.y31e{bottom:787.863000px;}
.y2b4{bottom:788.440500px;}
.y34d{bottom:789.247500px;}
.y37e{bottom:789.487500px;}
.y22c{bottom:791.037000px;}
.y253{bottom:791.100000px;}
.y130{bottom:792.625500px;}
.y275{bottom:792.739500px;}
.y3ae{bottom:793.969500px;}
.y18a{bottom:795.912000px;}
.y57{bottom:798.030000px;}
.y202{bottom:798.901500px;}
.y1b5{bottom:799.057500px;}
.y2b{bottom:802.077000px;}
.y15b{bottom:802.488000px;}
.yef{bottom:803.385000px;}
.y34c{bottom:803.443500px;}
.y2df{bottom:803.929500px;}
.y31d{bottom:804.301500px;}
.y37d{bottom:806.746500px;}
.y2b3{bottom:807.270000px;}
.y2bc{bottom:808.047000px;}
.y3ad{bottom:811.230000px;}
.ybc{bottom:812.640000px;}
.y22b{bottom:814.677000px;}
.y189{bottom:814.741500px;}
.y1b4{bottom:815.496000px;}
.y34b{bottom:817.641000px;}
.y301{bottom:817.719000px;}
.y201{bottom:817.731000px;}
.y31c{bottom:820.740000px;}
.y15a{bottom:821.317500px;}
.y2a{bottom:821.533500px;}
.yee{bottom:822.214500px;}
.y251{bottom:822.960000px;}
.y37c{bottom:824.007000px;}
.y2bb{bottom:825.621000px;}
.y2b2{bottom:826.099500px;}
.y12f{bottom:827.145000px;}
.y2de{bottom:827.569500px;}
.y3ac{bottom:828.490500px;}
.ybb{bottom:829.078500px;}
.y22a{bottom:831.115500px;}
.y252{bottom:831.180000px;}
.y34a{bottom:831.837000px;}
.y188{bottom:833.571000px;}
.y274{bottom:835.063500px;}
.y200{bottom:836.560500px;}
.y31b{bottom:837.178500px;}
.y29{bottom:840.990000px;}
.y300{bottom:841.030500px;}
.yed{bottom:841.044000px;}
.y37b{bottom:841.267500px;}
.y2ba{bottom:843.195000px;}
.y159{bottom:844.630500px;}
.y2b1{bottom:844.929000px;}
.yba{bottom:845.517000px;}
.y3ab{bottom:845.751000px;}
.y12e{bottom:845.974500px;}
.y349{bottom:846.034500px;}
.y1b3{bottom:847.114500px;}
.y229{bottom:847.554000px;}
.y273{bottom:851.502000px;}
.y187{bottom:852.400500px;}
.y31a{bottom:853.617000px;}
.y1ff{bottom:855.390000px;}
.y37a{bottom:858.528000px;}
.y2dd{bottom:859.189500px;}
.yec{bottom:859.873500px;}
.y28{bottom:860.448000px;}
.yb9{bottom:861.955500px;}
.y250{bottom:862.798500px;}
.y3aa{bottom:863.011500px;}
.y2b0{bottom:863.758500px;}
.y228{bottom:863.992500px;}
.y12d{bottom:864.804000px;}
.y118{bottom:866.799546px;}
.y348{bottom:867.433500px;}
.y272{bottom:867.940500px;}
.y319{bottom:870.055500px;}
.y186{bottom:871.230000px;}
.y1fe{bottom:874.219500px;}
.y379{bottom:875.788500px;}
.y27{bottom:877.282500px;}
.yb6{bottom:878.134500px;}
.y158{bottom:878.254500px;}
.yb8{bottom:878.394000px;}
.yeb{bottom:878.703000px;}
.y26{bottom:879.904500px;}
.y3a9{bottom:880.272000px;}
.y2af{bottom:882.588000px;}
.y12c{bottom:883.633500px;}
.y1b2{bottom:884.218500px;}
.y271{bottom:884.377500px;}
.y117{bottom:886.058988px;}
.y2ff{bottom:886.492500px;}
.y227{bottom:887.634000px;}
.y185{bottom:890.059500px;}
.y1fd{bottom:890.806500px;}
.y1fc{bottom:893.049000px;}
.yb7{bottom:894.832500px;}
.y2dc{bottom:896.293500px;}
.y157{bottom:897.084000px;}
.y347{bottom:897.483000px;}
.yea{bottom:897.532500px;}
.y2ae{bottom:901.417500px;}
.y12b{bottom:902.463000px;}
.y2fe{bottom:902.931000px;}
.y1b1{bottom:903.048000px;}
.y116{bottom:905.228601px;}
.y270{bottom:908.019000px;}
.y184{bottom:908.889000px;}
.y378{bottom:910.309500px;}
.yb5{bottom:911.269500px;}
.y1fb{bottom:911.878500px;}
.y3a8{bottom:914.793000px;}
.y2db{bottom:915.123000px;}
.y156{bottom:915.913500px;}
.ye9{bottom:916.362000px;}
.y25{bottom:918.490500px;}
.y226{bottom:919.252500px;}
.y2fd{bottom:919.369500px;}
.y2ad{bottom:920.247000px;}
.y12a{bottom:921.292500px;}
.y115{bottom:924.488043px;}
.y1b0{bottom:926.361000px;}
.y377{bottom:927.570000px;}
.yb4{bottom:927.708000px;}
.y183{bottom:927.718500px;}
.y346{bottom:930.694500px;}
.y1fa{bottom:930.708000px;}
.y3a7{bottom:932.052000px;}
.y24{bottom:934.630500px;}
.y155{bottom:934.743000px;}
.ye8{bottom:935.191500px;}
.y2fc{bottom:935.808000px;}
.y2ac{bottom:939.076500px;}
.y26f{bottom:939.639000px;}
.y129{bottom:940.122000px;}
.y114{bottom:943.747485px;}
.yb1{bottom:943.888500px;}
.yb3{bottom:944.146500px;}
.y376{bottom:944.829000px;}
.y182{bottom:946.548000px;}
.y3a6{bottom:946.690500px;}
.y3a5{bottom:949.312500px;}
.y1f9{bottom:949.537500px;}
.y23{bottom:950.769000px;}
.y2fb{bottom:952.246500px;}
.ye7{bottom:954.021000px;}
.y2ab{bottom:957.906000px;}
.y154{bottom:958.054500px;}
.y128{bottom:958.951500px;}
.yb2{bottom:960.585000px;}
.y375{bottom:962.089500px;}
.y113{bottom:962.918250px;}
.y181{bottom:965.377500px;}
.y3a4{bottom:966.573000px;}
.y1f8{bottom:968.367000px;}
.y1af{bottom:968.685000px;}
.ye6{bottom:972.849000px;}
.y345{bottom:974.812500px;}
.y2aa{bottom:976.735500px;}
.yb0{bottom:977.023500px;}
.y127{bottom:977.781000px;}
.y374{bottom:979.350000px;}
.y3a3{bottom:983.833500px;}
.y180{bottom:984.207000px;}
.y1f7{bottom:984.466500px;}
.y1ae{bottom:985.123500px;}
.y344{bottom:986.767500px;}
.y1f6{bottom:987.196500px;}
.ye5{bottom:991.678500px;}
.y2da{bottom:993.462000px;}
.y373{bottom:993.988500px;}
.y56{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y126{bottom:996.610500px;}
.y343{bottom:998.722500px;}
.yae{bottom:1000.665000px;}
.y3a2{bottom:1001.094000px;}
.y1ad{bottom:1001.562000px;}
.y2a9{bottom:1003.036500px;}
.y1f5{bottom:1006.026000px;}
.yad{bottom:1008.883500px;}
.ye4{bottom:1010.508000px;}
.y342{bottom:1010.677500px;}
.y55{bottom:1013.181000px;}
.y372{bottom:1013.871000px;}
.y125{bottom:1015.440000px;}
.yaf{bottom:1017.102000px;}
.y112{bottom:1017.638385px;}
.y1ac{bottom:1018.000500px;}
.y3a1{bottom:1018.354500px;}
.y341{bottom:1022.632500px;}
.y1f4{bottom:1024.855500px;}
.y111{bottom:1027.268250px;}
.ye3{bottom:1029.337500px;}
.y371{bottom:1031.131500px;}
.y54{bottom:1032.010500px;}
.y1ab{bottom:1034.439000px;}
.y340{bottom:1034.587500px;}
.y3a0{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y124{bottom:1043.685000px;}
.y33f{bottom:1046.542500px;}
.ye2{bottom:1048.167000px;}
.y370{bottom:1048.392000px;}
.yac{bottom:1048.722000px;}
.y53{bottom:1050.840000px;}
.y2fa{bottom:1050.876000px;}
.y39f{bottom:1052.875500px;}
.y1a9{bottom:1058.079000px;}
.y123{bottom:1062.513000px;}
.y36f{bottom:1065.652500px;}
.y33e{bottom:1065.700500px;}
.y1a8{bottom:1066.297500px;}
.ye1{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.y39e{bottom:1070.134500px;}
.y1aa{bottom:1074.517500px;}
.y33d{bottom:1077.655500px;}
.y122{bottom:1081.342500px;}
.y36e{bottom:1082.913000px;}
.yab{bottom:1085.826000px;}
.y39d{bottom:1087.395000px;}
.y51{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.yaa{bottom:1104.655500px;}
.y1a7{bottom:1106.137500px;}
.y50{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h28{height:30.252344px;}
.h20{height:30.582721px;}
.h1d{height:31.131341px;}
.h12{height:33.034395px;}
.h9{height:33.112997px;}
.h18{height:33.292969px;}
.h8{height:34.199443px;}
.h1b{height:34.574294px;}
.ha{height:36.319550px;}
.hc{height:38.896243px;}
.hf{height:39.432893px;}
.h14{height:41.479277px;}
.hb{height:41.508281px;}
.h6{height:43.217759px;}
.h17{height:43.269961px;}
.h4{height:43.815515px;}
.h16{height:44.268047px;}
.h11{height:44.279648px;}
.hd{height:46.697011px;}
.h2a{height:49.117939px;}
.h1e{height:49.914281px;}
.h15{height:49.939453px;}
.h2{height:50.931027px;}
.he{height:51.885221px;}
.h22{height:52.586177px;}
.h23{height:52.592177px;}
.h13{height:55.599258px;}
.h1c{height:62.966294px;}
.h3{height:69.505289px;}
.h1f{height:69.900281px;}
.h19{height:71.770243px;}
.h24{height:71.776243px;}
.h5{height:77.792486px;}
.h29{height:78.072344px;}
.h1a{height:80.609011px;}
.h26{height:84.185011px;}
.h25{height:104.650243px;}
.h10{height:172.680000px;}
.h27{height:293.758500px;}
.h21{height:850.764300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w5{width:484.174500px;}
.w6{width:500.332500px;}
.w4{width:580.342500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7b{left:-196.960500px;}
.x15{left:-193.248000px;}
.x4b{left:-190.728000px;}
.x7c{left:-1.390500px;}
.x0{left:0.000000px;}
.x16{left:2.322000px;}
.x4c{left:4.842000px;}
.x4{left:29.274117px;}
.x7d{left:30.469500px;}
.x18{left:34.181894px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x34{left:70.104000px;}
.x39{left:71.407500px;}
.x3a{left:81.516000px;}
.xc1{left:84.645000px;}
.xc0{left:86.272500px;}
.x33{left:91.188000px;}
.x80{left:102.559500px;}
.x81{left:107.059500px;}
.x7e{left:121.279500px;}
.x7f{left:137.659500px;}
.x82{left:162.949500px;}
.x83{left:168.349500px;}
.x35{left:177.522000px;}
.x36{left:205.992000px;}
.x37{left:211.222500px;}
.x38{left:220.431000px;}
.x6{left:249.832500px;}
.x5{left:250.897500px;}
.x64{left:259.863000px;}
.x2e{left:261.021000px;}
.x2d{left:264.384000px;}
.x8c{left:265.746000px;}
.x99{left:268.026000px;}
.x66{left:269.563500px;}
.x30{left:270.793500px;}
.x73{left:271.833000px;}
.x25{left:272.836500px;}
.x95{left:274.237500px;}
.x72{left:275.800500px;}
.x96{left:276.969000px;}
.x32{left:280.167000px;}
.xb{left:282.786000px;}
.xaf{left:284.100000px;}
.x6b{left:285.490500px;}
.x9d{left:287.460000px;}
.x8a{left:289.444500px;}
.x13{left:290.518500px;}
.x8b{left:291.649500px;}
.xa5{left:292.668000px;}
.xe{left:294.667500px;}
.x87{left:296.440500px;}
.x14{left:297.991500px;}
.xae{left:299.217000px;}
.x5a{left:300.597000px;}
.xf{left:302.139000px;}
.xa6{left:304.107000px;}
.xa0{left:306.211500px;}
.x7{left:309.453000px;}
.x88{left:311.385000px;}
.x9a{left:312.510000px;}
.x9c{left:314.211000px;}
.x2a{left:315.733500px;}
.x10{left:317.119500px;}
.x9b{left:319.849500px;}
.xa{left:321.193500px;}
.x1a{left:322.902000px;}
.xa8{left:326.298000px;}
.xa9{left:328.827000px;}
.x2f{left:329.970000px;}
.xa7{left:331.717500px;}
.x9e{left:334.110000px;}
.x1b{left:336.762000px;}
.x4e{left:338.968500px;}
.x91{left:344.292000px;}
.x90{left:351.657000px;}
.x85{left:353.113500px;}
.x61{left:354.984000px;}
.x65{left:357.654000px;}
.x86{left:359.539500px;}
.x4f{left:361.072500px;}
.x8e{left:362.946000px;}
.x8f{left:365.151000px;}
.xb6{left:366.288000px;}
.xc2{left:368.161500px;}
.x84{left:370.537500px;}
.xba{left:372.682500px;}
.x92{left:374.776500px;}
.xc3{left:377.512500px;}
.xb9{left:380.901000px;}
.xa1{left:384.909000px;}
.x74{left:388.023000px;}
.x75{left:391.540500px;}
.x93{left:396.543000px;}
.x2b{left:402.915000px;}
.x3f{left:420.975000px;}
.x3e{left:424.713000px;}
.x3d{left:427.014000px;}
.x1e{left:435.453000px;}
.x89{left:437.067000px;}
.x1f{left:442.924500px;}
.x20{left:446.586000px;}
.x6f{left:450.402000px;}
.x21{left:454.059000px;}
.x11{left:457.270500px;}
.x8d{left:459.534000px;}
.x9f{left:461.296500px;}
.x19{left:463.392000px;}
.x22{left:465.192000px;}
.x12{left:467.419500px;}
.x31{left:470.485500px;}
.x23{left:472.513500px;}
.x2c{left:474.265500px;}
.x5c{left:476.311500px;}
.x4d{left:477.975000px;}
.xbb{left:480.100500px;}
.x3c{left:484.887000px;}
.x24{left:487.458000px;}
.xaa{left:488.746500px;}
.xb4{left:493.945500px;}
.x44{left:499.650000px;}
.x6c{left:502.207500px;}
.x59{left:508.905000px;}
.xb0{left:509.977500px;}
.xab{left:511.839000px;}
.xb3{left:513.306000px;}
.x45{left:514.593000px;}
.x6d{left:517.152000px;}
.x46{left:518.404500px;}
.xac{left:521.227500px;}
.x3b{left:523.260000px;}
.xb2{left:527.085000px;}
.xb1{left:528.456000px;}
.xad{left:531.381000px;}
.x26{left:533.629500px;}
.x63{left:538.180500px;}
.x76{left:539.856000px;}
.x27{left:541.101000px;}
.x47{left:546.883500px;}
.x28{left:548.439000px;}
.x77{left:558.307500px;}
.x48{left:561.826500px;}
.x29{left:563.382000px;}
.x49{left:565.638000px;}
.x17{left:576.254251px;}
.xbc{left:578.103000px;}
.x4a{left:580.582500px;}
.x70{left:586.342500px;}
.x54{left:594.717000px;}
.xa4{left:598.089000px;}
.x40{left:602.986500px;}
.x67{left:604.881000px;}
.x41{left:610.459500px;}
.xa2{left:612.130500px;}
.x6e{left:613.933500px;}
.x68{left:617.173500px;}
.xa3{left:628.417500px;}
.x55{left:629.493000px;}
.x56{left:633.544500px;}
.x78{left:636.483000px;}
.xc{left:645.054000px;}
.x8{left:647.373000px;}
.x42{left:650.988000px;}
.xd{left:655.225500px;}
.x9{left:656.718000px;}
.xbd{left:661.647000px;}
.x43{left:665.931000px;}
.x69{left:671.067000px;}
.x5b{left:673.533000px;}
.xc7{left:675.319500px;}
.x6a{left:678.540000px;}
.xcb{left:683.935500px;}
.xc8{left:685.077000px;}
.xb5{left:694.005000px;}
.x1c{left:698.155500px;}
.x50{left:705.219000px;}
.x1d{left:707.743500px;}
.x51{left:712.984500px;}
.x5d{left:715.333500px;}
.x62{left:722.443500px;}
.x97{left:728.257500px;}
.x5e{left:731.742000px;}
.x57{left:736.588500px;}
.x98{left:740.805000px;}
.x52{left:743.412000px;}
.x94{left:745.965000px;}
.x53{left:747.463500px;}
.x58{left:751.116000px;}
.xcc{left:752.446500px;}
.x71{left:756.856500px;}
.xbf{left:759.651000px;}
.xcd{left:761.938500px;}
.xbe{left:769.065000px;}
.xb7{left:773.382000px;}
.x79{left:777.139500px;}
.xb8{left:780.061500px;}
.x7a{left:786.997500px;}
.xc5{left:790.644000px;}
.xc9{left:796.774500px;}
.xc4{left:810.400500px;}
.xc6{left:817.542000px;}
.x5f{left:820.561500px;}
.xca{left:823.672500px;}
.x60{left:836.970000px;}
@media print{
.v6{vertical-align:-11.056000pt;}
.v2{vertical-align:-9.322667pt;}
.v8{vertical-align:-7.968000pt;}
.vf{vertical-align:-1.317333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.032000pt;}
.ve{vertical-align:6.378667pt;}
.v5{vertical-align:7.472000pt;}
.vc{vertical-align:8.410667pt;}
.v7{vertical-align:9.706667pt;}
.va{vertical-align:21.253333pt;}
.v4{vertical-align:25.237333pt;}
.v1{vertical-align:29.221333pt;}
.v3{vertical-align:30.144000pt;}
.v9{vertical-align:33.322667pt;}
.vb{vertical-align:42.506667pt;}
.ls8d{letter-spacing:-0.438208pt;}
.ls57{letter-spacing:-0.432864pt;}
.lsd5{letter-spacing:-0.427520pt;}
.ls94{letter-spacing:-0.395456pt;}
.ls90{letter-spacing:-0.390112pt;}
.lsd6{letter-spacing:-0.374080pt;}
.ls56{letter-spacing:-0.363392pt;}
.ls82{letter-spacing:-0.352704pt;}
.ls85{letter-spacing:-0.347360pt;}
.lsd4{letter-spacing:-0.336672pt;}
.ls68{letter-spacing:-0.309952pt;}
.ls81{letter-spacing:-0.304608pt;}
.ls75{letter-spacing:-0.299264pt;}
.ls59{letter-spacing:-0.293920pt;}
.ls64{letter-spacing:-0.288576pt;}
.lsac{letter-spacing:-0.283232pt;}
.ls76{letter-spacing:-0.277888pt;}
.ls92{letter-spacing:-0.267200pt;}
.ls54{letter-spacing:-0.256512pt;}
.ls6e{letter-spacing:-0.251168pt;}
.lsd7{letter-spacing:-0.245824pt;}
.ls6b{letter-spacing:-0.240480pt;}
.ls89{letter-spacing:-0.235136pt;}
.ls7d{letter-spacing:-0.229792pt;}
.ls72{letter-spacing:-0.224448pt;}
.ls7f{letter-spacing:-0.219104pt;}
.ls6a{letter-spacing:-0.213760pt;}
.lsab{letter-spacing:-0.208416pt;}
.lsd3{letter-spacing:-0.203072pt;}
.ls88{letter-spacing:-0.197728pt;}
.ls8f{letter-spacing:-0.192384pt;}
.ls5b{letter-spacing:-0.187040pt;}
.lsd2{letter-spacing:-0.181696pt;}
.ls95{letter-spacing:-0.176352pt;}
.ls66{letter-spacing:-0.171008pt;}
.ls84{letter-spacing:-0.165664pt;}
.ls70{letter-spacing:-0.160320pt;}
.ls62{letter-spacing:-0.149632pt;}
.ls7c{letter-spacing:-0.144288pt;}
.ls61{letter-spacing:-0.138944pt;}
.ls5a{letter-spacing:-0.133600pt;}
.ls60{letter-spacing:-0.128256pt;}
.ls7e{letter-spacing:-0.117568pt;}
.ls65{letter-spacing:-0.112224pt;}
.ls5f{letter-spacing:-0.106880pt;}
.ls73{letter-spacing:-0.101536pt;}
.ls5e{letter-spacing:-0.096192pt;}
.ls83{letter-spacing:-0.090848pt;}
.ls55{letter-spacing:-0.085504pt;}
.ls51{letter-spacing:-0.080160pt;}
.ls6d{letter-spacing:-0.074816pt;}
.ls52{letter-spacing:-0.069472pt;}
.ls87{letter-spacing:-0.064128pt;}
.ls8e{letter-spacing:-0.058784pt;}
.ls6c{letter-spacing:-0.053440pt;}
.ls53{letter-spacing:-0.048096pt;}
.ls50{letter-spacing:-0.042752pt;}
.ls63{letter-spacing:-0.037408pt;}
.ls7a{letter-spacing:-0.033600pt;}
.ls71{letter-spacing:-0.032064pt;}
.lsad{letter-spacing:-0.028800pt;}
.ls5d{letter-spacing:-0.026720pt;}
.ls4e{letter-spacing:-0.025536pt;}
.ls69{letter-spacing:-0.021376pt;}
.ls8a{letter-spacing:-0.016032pt;}
.ls7b{letter-spacing:-0.014400pt;}
.ls5c{letter-spacing:-0.010688pt;}
.ls78{letter-spacing:-0.009600pt;}
.ls6f{letter-spacing:-0.005344pt;}
.lsae{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.000129pt;}
.lse9{letter-spacing:0.000921pt;}
.lse2{letter-spacing:0.001434pt;}
.ls98{letter-spacing:0.002185pt;}
.lse1{letter-spacing:0.002825pt;}
.lse6{letter-spacing:0.004267pt;}
.lsaf{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.005344pt;}
.lsc9{letter-spacing:0.006400pt;}
.ls79{letter-spacing:0.009600pt;}
.ls2d{letter-spacing:0.010688pt;}
.ls17{letter-spacing:0.016032pt;}
.ls6{letter-spacing:0.017024pt;}
.ls16{letter-spacing:0.021376pt;}
.ls93{letter-spacing:0.022400pt;}
.lsa7{letter-spacing:0.024000pt;}
.ls1d{letter-spacing:0.026720pt;}
.lsa9{letter-spacing:0.028800pt;}
.lsf{letter-spacing:0.032064pt;}
.ls29{letter-spacing:0.037408pt;}
.lsa8{letter-spacing:0.038400pt;}
.ls25{letter-spacing:0.042752pt;}
.lscf{letter-spacing:0.043200pt;}
.ls2f{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls20{letter-spacing:0.053440pt;}
.ls1b{letter-spacing:0.058784pt;}
.ls10{letter-spacing:0.064128pt;}
.ls8c{letter-spacing:0.069472pt;}
.ls31{letter-spacing:0.072000pt;}
.ls13{letter-spacing:0.074816pt;}
.ls67{letter-spacing:0.080160pt;}
.ls36{letter-spacing:0.085504pt;}
.lsc4{letter-spacing:0.086400pt;}
.ls9{letter-spacing:0.089376pt;}
.ls15{letter-spacing:0.090848pt;}
.ls30{letter-spacing:0.091200pt;}
.ls34{letter-spacing:0.096192pt;}
.ls35{letter-spacing:0.101536pt;}
.ls91{letter-spacing:0.106880pt;}
.lsd1{letter-spacing:0.110400pt;}
.ls3d{letter-spacing:0.112224pt;}
.ls33{letter-spacing:0.117568pt;}
.ls80{letter-spacing:0.122912pt;}
.ls8{letter-spacing:0.127680pt;}
.ls3c{letter-spacing:0.128256pt;}
.ls3b{letter-spacing:0.133600pt;}
.ls4f{letter-spacing:0.136192pt;}
.ls86{letter-spacing:0.138944pt;}
.lsd0{letter-spacing:0.144000pt;}
.ls74{letter-spacing:0.154976pt;}
.ls8b{letter-spacing:0.160320pt;}
.ls2e{letter-spacing:0.163200pt;}
.ls7{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.171008pt;}
.ls58{letter-spacing:0.176352pt;}
.ls4d{letter-spacing:0.242592pt;}
.lscb{letter-spacing:0.384768pt;}
.ls38{letter-spacing:0.406144pt;}
.lsda{letter-spacing:0.415895pt;}
.lsd9{letter-spacing:0.421229pt;}
.ls77{letter-spacing:0.454240pt;}
.lsdb{letter-spacing:0.468423pt;}
.lsa4{letter-spacing:0.570745pt;}
.lsa3{letter-spacing:0.576078pt;}
.lscc{letter-spacing:0.713095pt;}
.ls37{letter-spacing:0.726784pt;}
.lsdc{letter-spacing:0.885229pt;}
.lsdd{letter-spacing:0.911791pt;}
.lsca{letter-spacing:0.963200pt;}
.ls14{letter-spacing:1.047424pt;}
.ls4{letter-spacing:1.133683pt;}
.ls12{letter-spacing:1.368064pt;}
.ls0{letter-spacing:1.654338pt;}
.ls32{letter-spacing:1.683360pt;}
.lsc5{letter-spacing:1.688704pt;}
.ls19{letter-spacing:2.004000pt;}
.ls18{letter-spacing:2.324640pt;}
.ls21{letter-spacing:2.645280pt;}
.lsb8{letter-spacing:2.654210pt;}
.lsd8{letter-spacing:2.654679pt;}
.ls97{letter-spacing:2.656533pt;}
.lsbe{letter-spacing:2.657067pt;}
.lsba{letter-spacing:2.659543pt;}
.lsbf{letter-spacing:2.660013pt;}
.ls22{letter-spacing:2.965920pt;}
.lsc6{letter-spacing:3.286560pt;}
.ls2b{letter-spacing:3.607200pt;}
.ls2c{letter-spacing:3.927840pt;}
.ls3a{letter-spacing:4.248480pt;}
.ls39{letter-spacing:4.569120pt;}
.ls2a{letter-spacing:4.859164pt;}
.ls28{letter-spacing:4.884416pt;}
.ls26{letter-spacing:4.889760pt;}
.ls27{letter-spacing:5.205056pt;}
.lse{letter-spacing:5.846336pt;}
.lsd{letter-spacing:6.166976pt;}
.lsc8{letter-spacing:8.406112pt;}
.lsc7{letter-spacing:8.726752pt;}
.ls45{letter-spacing:9.368032pt;}
.ls46{letter-spacing:9.688672pt;}
.lsa6{letter-spacing:10.009312pt;}
.lsb6{letter-spacing:10.095467pt;}
.ls24{letter-spacing:10.329952pt;}
.lsb{letter-spacing:10.486784pt;}
.lsc{letter-spacing:10.491040pt;}
.lse3{letter-spacing:10.625434pt;}
.ls2{letter-spacing:10.626533pt;}
.lsc2{letter-spacing:10.626800pt;}
.ls23{letter-spacing:10.650592pt;}
.ls42{letter-spacing:11.291872pt;}
.ls41{letter-spacing:11.607168pt;}
.ls40{letter-spacing:11.612512pt;}
.lsea{letter-spacing:11.839672pt;}
.lse8{letter-spacing:11.870197pt;}
.lse7{letter-spacing:11.903303pt;}
.lse4{letter-spacing:11.954133pt;}
.lse5{letter-spacing:11.959467pt;}
.ls3f{letter-spacing:12.569088pt;}
.ls3e{letter-spacing:12.889728pt;}
.ls5{letter-spacing:13.283467pt;}
.lsc1{letter-spacing:13.389734pt;}
.ls96{letter-spacing:13.442868pt;}
.lsb2{letter-spacing:13.923096pt;}
.lsb4{letter-spacing:13.957942pt;}
.lsb0{letter-spacing:13.963275pt;}
.ls49{letter-spacing:14.460027pt;}
.ls47{letter-spacing:14.492928pt;}
.lsde{letter-spacing:14.608533pt;}
.ls4a{letter-spacing:14.808224pt;}
.ls48{letter-spacing:14.813568pt;}
.lsaa{letter-spacing:15.887026pt;}
.lsb3{letter-spacing:15.939543pt;}
.lsbb{letter-spacing:15.942400pt;}
.lsbd{letter-spacing:15.944877pt;}
.lsa5{letter-spacing:16.258963pt;}
.lsb1{letter-spacing:16.600877pt;}
.lsb7{letter-spacing:16.606210pt;}
.ls4c{letter-spacing:16.732064pt;}
.ls4b{letter-spacing:17.052704pt;}
.lsce{letter-spacing:17.343653pt;}
.lscd{letter-spacing:17.373344pt;}
.ls43{letter-spacing:19.612480pt;}
.ls1f{letter-spacing:19.933120pt;}
.ls1e{letter-spacing:20.253760pt;}
.ls44{letter-spacing:20.574400pt;}
.ls1{letter-spacing:25.292137pt;}
.ls9f{letter-spacing:73.723733pt;}
.lsa0{letter-spacing:80.433067pt;}
.lsa2{letter-spacing:85.333867pt;}
.lsa1{letter-spacing:87.670400pt;}
.ls9e{letter-spacing:93.205867pt;}
.ls9d{letter-spacing:96.720533pt;}
.ls9c{letter-spacing:148.389214pt;}
.ls99{letter-spacing:148.731200pt;}
.ls9b{letter-spacing:190.581867pt;}
.ls9a{letter-spacing:193.237867pt;}
.lsdf{letter-spacing:276.325867pt;}
.lse0{letter-spacing:339.232533pt;}
.lsb9{letter-spacing:701.107543pt;}
.lsbc{letter-spacing:858.065067pt;}
.lsc0{letter-spacing:858.598400pt;}
.lsc3{letter-spacing:1742.406400pt;}
.lsa{letter-spacing:1763.533184pt;}
.ws72{word-spacing:-53.440000pt;}
.wse1{word-spacing:-48.000000pt;}
.ws33{word-spacing:-42.560000pt;}
.wsf3{word-spacing:-26.566933pt;}
.wsf2{word-spacing:-20.190933pt;}
.wsea{word-spacing:-13.283467pt;}
.wsa7{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.wseb{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.wsee{word-spacing:-3.134898pt;}
.ws143{word-spacing:-2.975497pt;}
.wsb1{word-spacing:-2.922363pt;}
.wscf{word-spacing:-2.869229pt;}
.wsce{word-spacing:-2.816095pt;}
.ws175{word-spacing:-2.630144pt;}
.ws135{word-spacing:-2.444158pt;}
.ws10b{word-spacing:-2.391024pt;}
.ws12a{word-spacing:-2.178489pt;}
.ws14a{word-spacing:-2.125355pt;}
.ws12c{word-spacing:-2.072221pt;}
.ws9e{word-spacing:-1.806551pt;}
.ws144{word-spacing:-1.753418pt;}
.ws127{word-spacing:-1.700284pt;}
.ws2{word-spacing:-1.696326pt;}
.ws136{word-spacing:-1.594016pt;}
.ws19{word-spacing:-1.530266pt;}
.wsa1{word-spacing:-1.487748pt;}
.wse9{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws18{word-spacing:-1.147699pt;}
.ws121{word-spacing:-1.115811pt;}
.wsfc{word-spacing:-1.062677pt;}
.wsd2{word-spacing:-1.009543pt;}
.ws155{word-spacing:-0.956410pt;}
.ws134{word-spacing:-0.850142pt;}
.ws145{word-spacing:-0.797008pt;}
.ws149{word-spacing:-0.690740pt;}
.ws13d{word-spacing:-0.637606pt;}
.ws9f{word-spacing:-0.584473pt;}
.wsdd{word-spacing:-0.531339pt;}
.ws71{word-spacing:-0.507680pt;}
.ws11c{word-spacing:-0.438208pt;}
.ws14b{word-spacing:-0.425071pt;}
.ws132{word-spacing:-0.371937pt;}
.wsd5{word-spacing:-0.318803pt;}
.ws13e{word-spacing:-0.286925pt;}
.ws37{word-spacing:-0.285152pt;}
.wsa5{word-spacing:-0.265669pt;}
.ws17f{word-spacing:-0.239104pt;}
.ws49{word-spacing:-0.229792pt;}
.ws3c{word-spacing:-0.224448pt;}
.ws8e{word-spacing:-0.213760pt;}
.ws34{word-spacing:-0.212800pt;}
.ws23{word-spacing:-0.212535pt;}
.ws6e{word-spacing:-0.208416pt;}
.ws89{word-spacing:-0.192384pt;}
.ws118{word-spacing:-0.192000pt;}
.ws186{word-spacing:-0.191283pt;}
.ws54{word-spacing:-0.187040pt;}
.ws90{word-spacing:-0.181696pt;}
.ws39{word-spacing:-0.178752pt;}
.ws7f{word-spacing:-0.176352pt;}
.ws81{word-spacing:-0.171008pt;}
.ws92{word-spacing:-0.165664pt;}
.ws96{word-spacing:-0.160320pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws119{word-spacing:-0.158400pt;}
.ws86{word-spacing:-0.154976pt;}
.ws84{word-spacing:-0.149632pt;}
.ws47{word-spacing:-0.144288pt;}
.ws13{word-spacing:-0.143462pt;}
.ws76{word-spacing:-0.139200pt;}
.ws82{word-spacing:-0.138944pt;}
.ws117{word-spacing:-0.134400pt;}
.ws5f{word-spacing:-0.133600pt;}
.ws36{word-spacing:-0.131936pt;}
.ws45{word-spacing:-0.128256pt;}
.ws8f{word-spacing:-0.122912pt;}
.ws78{word-spacing:-0.120000pt;}
.ws40{word-spacing:-0.117568pt;}
.ws53{word-spacing:-0.112224pt;}
.ws5e{word-spacing:-0.106880pt;}
.ws9d{word-spacing:-0.106268pt;}
.ws50{word-spacing:-0.101536pt;}
.ws64{word-spacing:-0.096192pt;}
.ws75{word-spacing:-0.096000pt;}
.ws176{word-spacing:-0.095642pt;}
.ws116{word-spacing:-0.091200pt;}
.ws69{word-spacing:-0.090848pt;}
.wse2{word-spacing:-0.086400pt;}
.ws3f{word-spacing:-0.085504pt;}
.ws56{word-spacing:-0.080160pt;}
.wse4{word-spacing:-0.076800pt;}
.ws4b{word-spacing:-0.074816pt;}
.wse0{word-spacing:-0.072000pt;}
.ws4d{word-spacing:-0.069472pt;}
.ws6c{word-spacing:-0.064128pt;}
.ws32{word-spacing:-0.059584pt;}
.ws43{word-spacing:-0.058784pt;}
.ws74{word-spacing:-0.057600pt;}
.ws3d{word-spacing:-0.053440pt;}
.ws22{word-spacing:-0.053134pt;}
.wse6{word-spacing:-0.052800pt;}
.ws67{word-spacing:-0.048096pt;}
.ws7a{word-spacing:-0.048000pt;}
.ws12e{word-spacing:-0.047821pt;}
.wse5{word-spacing:-0.043200pt;}
.ws4f{word-spacing:-0.042752pt;}
.ws35{word-spacing:-0.042560pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws73{word-spacing:-0.038400pt;}
.ws8d{word-spacing:-0.037408pt;}
.ws4{word-spacing:-0.037194pt;}
.ws79{word-spacing:-0.033600pt;}
.ws61{word-spacing:-0.032064pt;}
.ws51{word-spacing:-0.026720pt;}
.ws6a{word-spacing:-0.021376pt;}
.wse3{word-spacing:-0.019200pt;}
.ws38{word-spacing:-0.017024pt;}
.ws5a{word-spacing:-0.016032pt;}
.ws77{word-spacing:-0.014400pt;}
.ws3a{word-spacing:-0.010688pt;}
.ws41{word-spacing:-0.005344pt;}
.ws18d{word-spacing:-0.001758pt;}
.ws0{word-spacing:0.000000pt;}
.ws93{word-spacing:0.005344pt;}
.ws8a{word-spacing:0.010688pt;}
.ws3e{word-spacing:0.016032pt;}
.ws65{word-spacing:0.021376pt;}
.ws3b{word-spacing:0.026720pt;}
.ws44{word-spacing:0.032064pt;}
.ws85{word-spacing:0.037408pt;}
.ws52{word-spacing:0.042752pt;}
.ws12{word-spacing:0.047821pt;}
.ws6d{word-spacing:0.048096pt;}
.ws24{word-spacing:0.053134pt;}
.ws55{word-spacing:0.053440pt;}
.ws5c{word-spacing:0.058784pt;}
.ws7d{word-spacing:0.064128pt;}
.ws57{word-spacing:0.074816pt;}
.ws4c{word-spacing:0.080160pt;}
.ws58{word-spacing:0.085504pt;}
.ws7b{word-spacing:0.090848pt;}
.ws101{word-spacing:0.095642pt;}
.ws59{word-spacing:0.096192pt;}
.ws9b{word-spacing:0.106268pt;}
.ws68{word-spacing:0.106880pt;}
.ws87{word-spacing:0.112224pt;}
.ws5d{word-spacing:0.117568pt;}
.ws99{word-spacing:0.122912pt;}
.ws11a{word-spacing:0.128256pt;}
.ws4e{word-spacing:0.133600pt;}
.ws94{word-spacing:0.138944pt;}
.ws1a{word-spacing:0.143462pt;}
.ws8b{word-spacing:0.144288pt;}
.ws11b{word-spacing:0.149632pt;}
.wsde{word-spacing:0.154976pt;}
.ws26{word-spacing:0.159402pt;}
.ws62{word-spacing:0.160320pt;}
.ws7e{word-spacing:0.165664pt;}
.ws6b{word-spacing:0.171008pt;}
.ws7c{word-spacing:0.176352pt;}
.ws8c{word-spacing:0.181696pt;}
.ws7{word-spacing:0.185968pt;}
.ws63{word-spacing:0.187040pt;}
.ws151{word-spacing:0.191283pt;}
.ws120{word-spacing:0.192384pt;}
.ws66{word-spacing:0.197728pt;}
.ws42{word-spacing:0.203072pt;}
.ws25{word-spacing:0.212535pt;}
.ws97{word-spacing:0.213760pt;}
.ws70{word-spacing:0.224448pt;}
.wsdf{word-spacing:0.229792pt;}
.ws5b{word-spacing:0.235136pt;}
.ws16e{word-spacing:0.239104pt;}
.ws4a{word-spacing:0.240480pt;}
.ws6f{word-spacing:0.245824pt;}
.ws80{word-spacing:0.251168pt;}
.ws60{word-spacing:0.256512pt;}
.ws9{word-spacing:0.260355pt;}
.ws28{word-spacing:0.265669pt;}
.ws11d{word-spacing:0.283232pt;}
.ws197{word-spacing:0.286925pt;}
.ws88{word-spacing:0.293920pt;}
.ws83{word-spacing:0.299264pt;}
.ws46{word-spacing:0.309952pt;}
.ws10f{word-spacing:0.318803pt;}
.ws11f{word-spacing:0.320640pt;}
.ws179{word-spacing:0.334746pt;}
.ws95{word-spacing:0.336672pt;}
.ws98{word-spacing:0.342016pt;}
.wsd6{word-spacing:0.371937pt;}
.ws11e{word-spacing:0.374080pt;}
.ws48{word-spacing:0.379424pt;}
.ws16{word-spacing:0.382566pt;}
.ws91{word-spacing:0.384768pt;}
.wsd7{word-spacing:0.425071pt;}
.ws196{word-spacing:0.430387pt;}
.wsef{word-spacing:0.478205pt;}
.ws12d{word-spacing:0.531339pt;}
.ws142{word-spacing:0.584473pt;}
.ws2c{word-spacing:0.637606pt;}
.ws13c{word-spacing:0.690740pt;}
.ws104{word-spacing:0.743874pt;}
.ws18f{word-spacing:0.765133pt;}
.wsf5{word-spacing:0.797008pt;}
.ws27{word-spacing:0.850142pt;}
.ws1b{word-spacing:0.860774pt;}
.ws110{word-spacing:0.903276pt;}
.ws1c{word-spacing:0.908595pt;}
.ws31{word-spacing:0.956410pt;}
.ws2a{word-spacing:1.009543pt;}
.ws9a{word-spacing:1.062677pt;}
.wsd9{word-spacing:1.115811pt;}
.ws122{word-spacing:1.168945pt;}
.ws181{word-spacing:1.195520pt;}
.wsf0{word-spacing:1.222079pt;}
.ws180{word-spacing:1.243341pt;}
.wsd4{word-spacing:1.275213pt;}
.ws16f{word-spacing:1.338982pt;}
.ws125{word-spacing:1.434614pt;}
.ws183{word-spacing:1.482445pt;}
.ws188{word-spacing:1.530266pt;}
.ws103{word-spacing:1.594016pt;}
.ws10d{word-spacing:1.647150pt;}
.wsaf{word-spacing:1.700284pt;}
.ws18c{word-spacing:1.721549pt;}
.ws17{word-spacing:1.769370pt;}
.ws8{word-spacing:1.785293pt;}
.ws133{word-spacing:1.806551pt;}
.wsdc{word-spacing:1.859685pt;}
.ws108{word-spacing:1.912819pt;}
.ws167{word-spacing:1.912832pt;}
.ws194{word-spacing:1.960653pt;}
.ws128{word-spacing:1.965953pt;}
.wsa2{word-spacing:2.019087pt;}
.ws30{word-spacing:2.072221pt;}
.ws19c{word-spacing:2.151936pt;}
.wsd8{word-spacing:2.178489pt;}
.ws148{word-spacing:2.231622pt;}
.ws126{word-spacing:2.337890pt;}
.ws10c{word-spacing:2.391024pt;}
.ws14{word-spacing:2.391040pt;}
.ws19b{word-spacing:2.438861pt;}
.ws177{word-spacing:2.486682pt;}
.ws14c{word-spacing:2.497292pt;}
.ws193{word-spacing:2.508706pt;}
.wsf1{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.wse7{word-spacing:2.603559pt;}
.ws131{word-spacing:2.640746pt;}
.ws20{word-spacing:2.656693pt;}
.ws106{word-spacing:2.709827pt;}
.ws15{word-spacing:2.725786pt;}
.ws137{word-spacing:2.762961pt;}
.wsdb{word-spacing:2.816095pt;}
.ws172{word-spacing:2.821427pt;}
.ws152{word-spacing:2.866509pt;}
.ws192{word-spacing:2.867584pt;}
.ws100{word-spacing:2.869248pt;}
.ws189{word-spacing:2.869948pt;}
.ws14d{word-spacing:2.922363pt;}
.ws198{word-spacing:2.964890pt;}
.wsd0{word-spacing:2.975497pt;}
.ws109{word-spacing:3.028630pt;}
.ws18a{word-spacing:3.060531pt;}
.ws112{word-spacing:3.081764pt;}
.ws12f{word-spacing:3.120337pt;}
.ws130{word-spacing:3.120917pt;}
.ws12b{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.188032pt;}
.ws138{word-spacing:3.241166pt;}
.ws182{word-spacing:3.299635pt;}
.ws140{word-spacing:3.347434pt;}
.ws191{word-spacing:3.395277pt;}
.wsa3{word-spacing:3.400567pt;}
.ws1d{word-spacing:3.443098pt;}
.ws10e{word-spacing:3.453701pt;}
.ws107{word-spacing:3.506835pt;}
.ws123{word-spacing:3.666237pt;}
.ws146{word-spacing:3.719371pt;}
.wse8{word-spacing:4.038174pt;}
.ws13b{word-spacing:4.091308pt;}
.ws111{word-spacing:4.144442pt;}
.ws124{word-spacing:4.250709pt;}
.ws105{word-spacing:4.303843pt;}
.wsda{word-spacing:4.569513pt;}
.ws14f{word-spacing:4.782080pt;}
.ws141{word-spacing:4.835182pt;}
.ws129{word-spacing:4.888316pt;}
.wsfb{word-spacing:4.941450pt;}
.ws29{word-spacing:4.994583pt;}
.ws173{word-spacing:5.021184pt;}
.ws21{word-spacing:5.047717pt;}
.ws10a{word-spacing:5.207119pt;}
.wsf{word-spacing:5.393072pt;}
.ws10{word-spacing:5.467459pt;}
.wsd1{word-spacing:5.632190pt;}
.ws2b{word-spacing:5.738458pt;}
.wsf8{word-spacing:5.842756pt;}
.wsf6{word-spacing:5.845143pt;}
.ws14e{word-spacing:6.004127pt;}
.wsa4{word-spacing:6.163529pt;}
.ws185{word-spacing:6.168883pt;}
.ws184{word-spacing:6.264525pt;}
.wsfa{word-spacing:6.322930pt;}
.ws18b{word-spacing:6.455808pt;}
.wsb0{word-spacing:6.801135pt;}
.ws150{word-spacing:6.838374pt;}
.ws147{word-spacing:6.854269pt;}
.wsd3{word-spacing:7.173072pt;}
.wsa0{word-spacing:7.226206pt;}
.wsd{word-spacing:7.699075pt;}
.ws5{word-spacing:9.258663pt;}
.ws170{word-spacing:9.659802pt;}
.ws2d{word-spacing:10.581554pt;}
.ws199{word-spacing:11.668275pt;}
.ws17d{word-spacing:11.763917pt;}
.ws187{word-spacing:11.811738pt;}
.ws17e{word-spacing:11.899110pt;}
.ws19a{word-spacing:11.902362pt;}
.ws195{word-spacing:11.904444pt;}
.ws18e{word-spacing:11.906662pt;}
.ws178{word-spacing:11.907379pt;}
.ws17a{word-spacing:12.194304pt;}
.ws9c{word-spacing:13.230333pt;}
.ws3{word-spacing:13.763148pt;}
.ws17b{word-spacing:14.250598pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.ws17c{word-spacing:14.773658pt;}
.ws174{word-spacing:14.776627pt;}
.ws190{word-spacing:14.778206pt;}
.wsc{word-spacing:15.732893pt;}
.wsfd{word-spacing:16.418365pt;}
.wse{word-spacing:24.399002pt;}
.ws171{word-spacing:24.436429pt;}
.ws164{word-spacing:44.859327pt;}
.ws163{word-spacing:60.420939pt;}
.wsa9{word-spacing:61.354086pt;}
.wsbf{word-spacing:64.780973pt;}
.ws161{word-spacing:65.953771pt;}
.wsb7{word-spacing:73.452749pt;}
.wsad{word-spacing:78.617395pt;}
.wsb6{word-spacing:79.430349pt;}
.wsc0{word-spacing:83.186590pt;}
.wsae{word-spacing:88.229376pt;}
.wsff{word-spacing:92.663782pt;}
.wsa6{word-spacing:98.794863pt;}
.wsc6{word-spacing:98.797773pt;}
.ws162{word-spacing:100.021417pt;}
.wsc9{word-spacing:101.386667pt;}
.ws113{word-spacing:105.760119pt;}
.wsac{word-spacing:106.018714pt;}
.ws114{word-spacing:106.954786pt;}
.wsa8{word-spacing:109.061274pt;}
.wsaa{word-spacing:109.700915pt;}
.wsca{word-spacing:113.344000pt;}
.wsc8{word-spacing:113.345067pt;}
.wsc7{word-spacing:115.684173pt;}
.ws139{word-spacing:118.930330pt;}
.wscb{word-spacing:125.302400pt;}
.wsc1{word-spacing:128.244222pt;}
.wsab{word-spacing:133.372211pt;}
.wsb8{word-spacing:139.106273pt;}
.wscd{word-spacing:147.479347pt;}
.wscc{word-spacing:152.691814pt;}
.wsbc{word-spacing:153.068427pt;}
.ws16c{word-spacing:158.891059pt;}
.wsfe{word-spacing:159.183479pt;}
.ws168{word-spacing:161.994939pt;}
.wsbe{word-spacing:162.632547pt;}
.wsbd{word-spacing:162.675054pt;}
.ws13a{word-spacing:167.851008pt;}
.wsc5{word-spacing:168.663962pt;}
.wsbb{word-spacing:173.301854pt;}
.wsb9{word-spacing:174.322027pt;}
.ws165{word-spacing:177.487859pt;}
.ws115{word-spacing:178.706330pt;}
.wsb5{word-spacing:179.997491pt;}
.wsc4{word-spacing:180.619162pt;}
.wsba{word-spacing:183.886147pt;}
.wsb4{word-spacing:192.000512pt;}
.wsc3{word-spacing:192.526541pt;}
.wsc2{word-spacing:192.574362pt;}
.ws102{word-spacing:200.512614pt;}
.wsb2{word-spacing:203.907891pt;}
.wsb3{word-spacing:203.955712pt;}
.ws16d{word-spacing:210.032259pt;}
.ws15e{word-spacing:233.965405pt;}
.ws15f{word-spacing:245.325894pt;}
.ws169{word-spacing:248.524698pt;}
.ws166{word-spacing:267.384790pt;}
.ws153{word-spacing:297.876292pt;}
.ws160{word-spacing:305.479270pt;}
.ws13f{word-spacing:306.244403pt;}
.ws154{word-spacing:316.388292pt;}
.ws159{word-spacing:377.488785pt;}
.ws156{word-spacing:378.854571pt;}
.ws158{word-spacing:404.005786pt;}
.ws15c{word-spacing:407.376785pt;}
.ws15b{word-spacing:408.001459pt;}
.ws157{word-spacing:414.953045pt;}
.ws15d{word-spacing:416.174839pt;}
.ws15a{word-spacing:428.132173pt;}
.ws16a{word-spacing:568.509242pt;}
.ws16b{word-spacing:596.851405pt;}
.wsf9{word-spacing:721.079705pt;}
.wsed{word-spacing:721.239106pt;}
.wsf7{word-spacing:726.233690pt;}
.wsec{word-spacing:732.131549pt;}
.wsf4{word-spacing:767.359302pt;}
._42{margin-left:-13.284011pt;}
._0{margin-left:-10.616218pt;}
._2f{margin-left:-6.635007pt;}
._c{margin-left:-5.212467pt;}
._1{margin-left:-3.931906pt;}
._2{margin-left:-2.922363pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._7{width:2.045648pt;}
._40{width:3.312575pt;}
._41{width:6.361137pt;}
._a{width:9.861670pt;}
._5{width:10.862451pt;}
._4f{width:11.855579pt;}
._8{width:12.806157pt;}
._b{width:14.633165pt;}
._10{width:16.205829pt;}
._e{width:17.167667pt;}
._11{width:18.171782pt;}
._dc{width:19.186741pt;}
._d{width:20.160529pt;}
._14{width:21.686164pt;}
._6{width:23.061099pt;}
._de{width:23.974720pt;}
._f{width:24.919783pt;}
._60{width:26.009366pt;}
._4d{width:27.689471pt;}
._9{width:29.011008pt;}
._3e{width:30.246623pt;}
._83{width:31.295847pt;}
._3d{width:33.846273pt;}
._dd{width:44.154486pt;}
._cb{width:45.699200pt;}
._cd{width:54.135373pt;}
._4e{width:62.538561pt;}
._ca{width:70.256979pt;}
._cc{width:71.700739pt;}
._27{width:74.887373pt;}
._2c{width:77.900083pt;}
._17{width:83.208192pt;}
._ce{width:85.997431pt;}
._c9{width:87.989904pt;}
._1f{width:90.631017pt;}
._16{width:92.485427pt;}
._99{width:93.629246pt;}
._90{width:96.263270pt;}
._9b{width:98.039543pt;}
._c8{width:100.598624pt;}
._15{width:101.523558pt;}
._33{width:103.382503pt;}
._9a{width:106.592563pt;}
._cf{width:108.478374pt;}
._2a{width:112.522342pt;}
._35{width:114.280597pt;}
._1a{width:117.926093pt;}
._29{width:118.834688pt;}
._34{width:125.470134pt;}
._20{width:127.357391pt;}
._1b{width:128.398848pt;}
._43{width:129.726071pt;}
._23{width:130.789888pt;}
._2d{width:132.176691pt;}
._d0{width:133.430101pt;}
._22{width:134.870283pt;}
._1c{width:135.763251pt;}
._77{width:137.676083pt;}
._39{width:141.406413pt;}
._5a{width:143.032013pt;}
._91{width:144.897024pt;}
._19{width:146.236006pt;}
._37{width:147.998821pt;}
._2b{width:148.913971pt;}
._18{width:150.753937pt;}
._8e{width:153.051605pt;}
._1d{width:154.939392pt;}
._36{width:159.305611pt;}
._65{width:161.299558pt;}
._31{width:163.260211pt;}
._8f{width:164.432956pt;}
._8c{width:168.136431pt;}
._28{width:169.524736pt;}
._3a{width:171.867955pt;}
._81{width:173.159117pt;}
._25{width:174.120559pt;}
._32{width:176.841318pt;}
._d8{width:177.741668pt;}
._30{width:178.706330pt;}
._8b{width:180.162594pt;}
._66{width:182.245069pt;}
._45{width:184.923034pt;}
._bf{width:186.752720pt;}
._db{width:187.964269pt;}
._21{width:189.131264pt;}
._58{width:190.314609pt;}
._5b{width:191.474483pt;}
._61{width:193.291674pt;}
._56{width:194.487194pt;}
._d7{width:196.963725pt;}
._3c{width:198.551962pt;}
._c0{width:200.733859pt;}
._89{width:202.042880pt;}
._63{width:203.286221pt;}
._73{width:204.433920pt;}
._c6{width:205.600418pt;}
._84{width:206.586803pt;}
._24{width:208.785613pt;}
._8a{width:209.880465pt;}
._c7{width:211.075940pt;}
._1e{width:212.558430pt;}
._c4{width:214.718653pt;}
._79{width:216.436941pt;}
._2e{width:218.684518pt;}
._55{width:220.645171pt;}
._49{width:222.271078pt;}
._c3{width:223.202884pt;}
._c5{width:224.277408pt;}
._80{width:225.427251pt;}
._d9{width:228.666253pt;}
._5c{width:229.874586pt;}
._c2{width:231.156512pt;}
._85{width:232.169984pt;}
._87{width:234.178458pt;}
._26{width:235.756544pt;}
._7a{width:237.765018pt;}
._da{width:238.740445pt;}
._51{width:239.916954pt;}
._52{width:241.686323pt;}
._86{width:242.642739pt;}
._3b{width:244.316467pt;}
._c1{width:245.700922pt;}
._bc{width:255.984742pt;}
._64{width:260.575539pt;}
._74{width:262.201446pt;}
._47{width:264.066458pt;}
._50{width:265.231488pt;}
._4a{width:266.840064pt;}
._6c{width:270.139699pt;}
._d1{width:272.387277pt;}
._68{width:275.543450pt;}
._69{width:276.978074pt;}
._62{width:278.508339pt;}
._88{width:280.325530pt;}
._46{width:283.290419pt;}
._8d{width:285.203251pt;}
._6a{width:288.072499pt;}
._82{width:289.507123pt;}
._be{width:290.993548pt;}
._48{width:295.245619pt;}
._bb{width:298.114867pt;}
._75{width:300.649370pt;}
._4c{width:301.940531pt;}
._67{width:302.896947pt;}
._4b{width:305.192346pt;}
._a7{width:307.550421pt;}
._78{width:313.082778pt;}
._bd{width:318.873074pt;}
._a2{width:320.368529pt;}
._7f{width:323.842458pt;}
._9c{width:332.115456pt;}
._a6{width:333.139883pt;}
._a4{width:338.303462pt;}
._7b{width:339.623322pt;}
._7e{width:341.775258pt;}
._93{width:348.470170pt;}
._76{width:351.004672pt;}
._57{width:354.208666pt;}
._7d{width:358.852309pt;}
._a5{width:359.803699pt;}
._53{width:366.020403pt;}
._95{width:370.850304pt;}
._a1{width:377.640858pt;}
._ab{width:379.123302pt;}
._92{width:380.797030pt;}
._9d{width:385.674752pt;}
._9e{width:392.943514pt;}
._97{width:394.951987pt;}
._96{width:395.956224pt;}
._38{width:404.659610pt;}
._94{width:406.907187pt;}
._6e{width:410.780672pt;}
._6d{width:422.735872pt;}
._a0{width:424.074854pt;}
._a8{width:426.035507pt;}
._6b{width:434.691072pt;}
._a3{width:437.273395pt;}
._ad{width:440.094822pt;}
._b2{width:450.615398pt;}
._b5{width:456.592998pt;}
._ac{width:457.549414pt;}
._af{width:460.877022pt;}
._b7{width:462.474957pt;}
._b1{width:465.009459pt;}
._54{width:468.356915pt;}
._b0{width:469.504614pt;}
._ae{width:477.060301pt;}
._9f{width:485.094195pt;}
._b6{width:489.780634pt;}
._5d{width:491.215258pt;}
._b9{width:501.114163pt;}
._a9{width:503.648666pt;}
._d5{width:506.230989pt;}
._b4{width:510.869606pt;}
._b3{width:516.321178pt;}
._98{width:520.194662pt;}
._d3{width:524.163789pt;}
._b8{width:525.502771pt;}
._d2{width:527.893811pt;}
._aa{width:554.147430pt;}
._d4{width:649.071718pt;}
._12{width:651.622286pt;}
._d6{width:653.901619pt;}
._72{width:702.009344pt;}
._71{width:731.897344pt;}
._59{width:790.956032pt;}
._7c{width:798.224794pt;}
._70{width:806.067405pt;}
._6f{width:852.023194pt;}
._3f{width:879.943239pt;}
._5e{width:1003.854234pt;}
._ba{width:1179.218401pt;}
._44{width:1388.524749pt;}
._5f{width:2140.999733pt;}
._13{width:2162.253067pt;}
.fsd{font-size:31.880533pt;}
.fsc{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs11{font-size:38.755733pt;}
.fs8{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs10{font-size:74.387733pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y1e8{bottom:-664.508619pt;}
.y1e7{bottom:-647.469275pt;}
.y1e6{bottom:-630.349771pt;}
.y1e5{bottom:-613.227963pt;}
.y1e4{bottom:-596.188619pt;}
.y1e3{bottom:-579.069115pt;}
.y85{bottom:-570.429792pt;}
.y1e2{bottom:-562.029771pt;}
.y84{bottom:-553.390448pt;}
.y1e1{bottom:-544.908619pt;}
.y83{bottom:-536.270944pt;}
.y1e0{bottom:-527.789115pt;}
.y82{bottom:-519.229456pt;}
.y1df{bottom:-510.749771pt;}
.y81{bottom:-502.109952pt;}
.y1de{bottom:-493.628619pt;}
.y80{bottom:-484.990448pt;}
.y1dd{bottom:-476.589275pt;}
.y7f{bottom:-467.951104pt;}
.y1dc{bottom:-459.469771pt;}
.y7e{bottom:-450.831600pt;}
.y7d{bottom:-450.830499pt;}
.y1db{bottom:-442.347829pt;}
.y7c{bottom:-433.789819pt;}
.y1da{bottom:-425.308485pt;}
.y7b{bottom:-416.670315pt;}
.y1d9{bottom:-408.188981pt;}
.y7a{bottom:-399.550811pt;}
.y1d8{bottom:-391.149637pt;}
.y79{bottom:-382.508800pt;}
.y1d7{bottom:-374.029821pt;}
.y78{bottom:-365.389296pt;}
.y1d6{bottom:-356.910317pt;}
.y77{bottom:-348.269792pt;}
.y1d5{bottom:-339.869637pt;}
.y76{bottom:-331.230448pt;}
.y1d4{bottom:-322.750133pt;}
.y1d3{bottom:-322.749771pt;}
.y75{bottom:-314.110944pt;}
.y1d2{bottom:-305.630267pt;}
.y1d1{bottom:-305.629611pt;}
.y74{bottom:-297.070659pt;}
.y1d0{bottom:-288.588123pt;}
.y73{bottom:-279.951155pt;}
.y1cf{bottom:-271.468619pt;}
.y72{bottom:-262.831651pt;}
.y1ce{bottom:-254.429275pt;}
.y71{bottom:-245.790971pt;}
.y1cd{bottom:-237.309771pt;}
.y70{bottom:-228.671467pt;}
.y6f{bottom:-228.668720pt;}
.y1cb{bottom:-220.190947pt;}
.y1cc{bottom:-220.190267pt;}
.y6e{bottom:-211.629376pt;}
.y1ca{bottom:-203.148619pt;}
.y6d{bottom:-194.509872pt;}
.y1c9{bottom:-186.029115pt;}
.y6c{bottom:-173.470544pt;}
.y1c8{bottom:-168.989771pt;}
.y1c7{bottom:-151.868723pt;}
.y6b{bottom:-140.351104pt;}
.y1c6{bottom:-134.749219pt;}
.y6a{bottom:-123.229280pt;}
.y1c5{bottom:-113.708555pt;}
.y69{bottom:-106.189936pt;}
.y68{bottom:-89.070432pt;}
.y1c4{bottom:-80.589115pt;}
.y67{bottom:-71.950928pt;}
.y1c3{bottom:-63.549771pt;}
.y66{bottom:-50.911600pt;}
.y1c2{bottom:-46.430267pt;}
.y65{bottom:-18.191600pt;}
.y11a{bottom:-17.272667pt;}
.y1c1{bottom:-13.710133pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.889064pt;}
.y119{bottom:2.728029pt;}
.y9{bottom:3.044747pt;}
.y1c0{bottom:6.289867pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y4e{bottom:28.346667pt;}
.y24f{bottom:79.105333pt;}
.y2a8{bottom:81.557333pt;}
.y17f{bottom:81.765333pt;}
.y29a{bottom:84.846667pt;}
.y153{bottom:85.276000pt;}
.y22{bottom:91.398667pt;}
.y24e{bottom:95.842667pt;}
.y1f3{bottom:96.882667pt;}
.y2a7{bottom:98.293333pt;}
.y17e{bottom:98.502667pt;}
.y4d{bottom:100.122667pt;}
.y299{bottom:101.584000pt;}
.y152{bottom:102.013333pt;}
.y39c{bottom:103.408000pt;}
.y36d{bottom:104.212000pt;}
.y121{bottom:105.506667pt;}
.ya9{bottom:105.662667pt;}
.y21{bottom:107.298667pt;}
.y225{bottom:107.592000pt;}
.ye0{bottom:110.710667pt;}
.y2d9{bottom:112.197333pt;}
.y24d{bottom:112.580000pt;}
.y1f2{bottom:113.620000pt;}
.y36c{bottom:114.838667pt;}
.y2a6{bottom:115.030667pt;}
.y17d{bottom:115.240000pt;}
.y4c{bottom:116.860000pt;}
.y298{bottom:118.321333pt;}
.ydd{bottom:118.482667pt;}
.y39b{bottom:118.750667pt;}
.y33c{bottom:119.478667pt;}
.y120{bottom:122.244000pt;}
.ya8{bottom:122.400000pt;}
.y20{bottom:123.200000pt;}
.y224{bottom:124.329333pt;}
.ydf{bottom:125.322667pt;}
.y36b{bottom:125.466667pt;}
.y2d8{bottom:126.809333pt;}
.y24c{bottom:129.317333pt;}
.y1f1{bottom:130.357333pt;}
.y2a5{bottom:131.768000pt;}
.y17c{bottom:131.977333pt;}
.y151{bottom:132.698667pt;}
.ydc{bottom:133.094667pt;}
.y4b{bottom:133.597333pt;}
.y33b{bottom:134.090667pt;}
.y39a{bottom:134.093333pt;}
.y297{bottom:135.058667pt;}
.y36a{bottom:136.093333pt;}
.y11f{bottom:138.981333pt;}
.y1f{bottom:139.100000pt;}
.ya7{bottom:139.137333pt;}
.yde{bottom:139.934667pt;}
.y223{bottom:141.066667pt;}
.y2d7{bottom:141.420000pt;}
.y24b{bottom:146.054667pt;}
.y369{bottom:146.720000pt;}
.y1f0{bottom:147.094667pt;}
.y2a4{bottom:148.505333pt;}
.y33a{bottom:148.702667pt;}
.y17b{bottom:148.714667pt;}
.y399{bottom:149.436000pt;}
.y4a{bottom:150.334667pt;}
.y296{bottom:151.796000pt;}
.ydb{bottom:154.546667pt;}
.y1e{bottom:155.000000pt;}
.y11e{bottom:155.718667pt;}
.ya6{bottom:155.874667pt;}
.y2d6{bottom:156.032000pt;}
.y368{bottom:157.346667pt;}
.y222{bottom:157.804000pt;}
.y24a{bottom:162.792000pt;}
.y339{bottom:163.314667pt;}
.y150{bottom:163.384000pt;}
.y1ef{bottom:163.832000pt;}
.y398{bottom:164.778667pt;}
.y2a3{bottom:165.242667pt;}
.y17a{bottom:165.452000pt;}
.y49{bottom:167.072000pt;}
.y367{bottom:167.973333pt;}
.y295{bottom:168.533333pt;}
.y2d5{bottom:170.644000pt;}
.y1d{bottom:170.901333pt;}
.y11d{bottom:172.456000pt;}
.ya5{bottom:172.612000pt;}
.y63{bottom:173.809552pt;}
.y221{bottom:174.541333pt;}
.yda{bottom:175.561333pt;}
.y338{bottom:177.926667pt;}
.y10f{bottom:178.526667pt;}
.y249{bottom:179.529333pt;}
.y14f{bottom:180.121333pt;}
.y1ee{bottom:180.569333pt;}
.y2a2{bottom:181.980000pt;}
.y179{bottom:182.189333pt;}
.y48{bottom:183.809333pt;}
.y366{bottom:185.002667pt;}
.y2d4{bottom:185.256000pt;}
.y294{bottom:185.270667pt;}
.y1c{bottom:186.801333pt;}
.y11c{bottom:189.193333pt;}
.ya4{bottom:189.349333pt;}
.y62{bottom:190.848896pt;}
.y220{bottom:191.278667pt;}
.y10e{bottom:195.264000pt;}
.y397{bottom:195.462667pt;}
.y365{bottom:195.629333pt;}
.y26e{bottom:196.266667pt;}
.y14e{bottom:196.857333pt;}
.y1ed{bottom:197.306667pt;}
.y2a1{bottom:198.717333pt;}
.y178{bottom:198.926667pt;}
.y337{bottom:198.940000pt;}
.y248{bottom:200.252000pt;}
.y47{bottom:200.546667pt;}
.y293{bottom:202.008000pt;}
.y1b{bottom:202.701333pt;}
.yd9{bottom:203.666667pt;}
.ya3{bottom:206.086667pt;}
.y2d3{bottom:206.270667pt;}
.y61{bottom:207.970704pt;}
.y21f{bottom:208.016000pt;}
.y396{bottom:210.805333pt;}
.y14d{bottom:210.861333pt;}
.y10d{bottom:212.001333pt;}
.y2f9{bottom:212.580000pt;}
.y26d{bottom:213.004000pt;}
.y14c{bottom:213.594667pt;}
.y1ec{bottom:214.044000pt;}
.y2a0{bottom:215.454667pt;}
.y177{bottom:215.664000pt;}
.y46{bottom:217.284000pt;}
.y292{bottom:218.745333pt;}
.y11b{bottom:219.029333pt;}
.y364{bottom:220.945333pt;}
.ya2{bottom:222.824000pt;}
.y21e{bottom:224.753333pt;}
.y60{bottom:225.090208pt;}
.y395{bottom:226.148000pt;}
.y336{bottom:227.046667pt;}
.y2f8{bottom:227.192000pt;}
.y14b{bottom:227.598667pt;}
.y10c{bottom:228.738667pt;}
.y26c{bottom:229.741333pt;}
.y14a{bottom:230.332000pt;}
.y1eb{bottom:230.781333pt;}
.y1a6{bottom:232.192000pt;}
.y176{bottom:232.401333pt;}
.y45{bottom:234.021333pt;}
.y2d2{bottom:234.376000pt;}
.y291{bottom:235.481333pt;}
.y247{bottom:235.796000pt;}
.y110{bottom:238.966400pt;}
.ya1{bottom:239.561333pt;}
.yd8{bottom:240.037333pt;}
.y21d{bottom:241.490667pt;}
.y2f7{bottom:241.804000pt;}
.y5f{bottom:242.129552pt;}
.y10b{bottom:245.476000pt;}
.yd5{bottom:246.348000pt;}
.y26b{bottom:246.478667pt;}
.y1ea{bottom:247.518667pt;}
.y1a5{bottom:248.929333pt;}
.y175{bottom:249.138667pt;}
.y246{bottom:250.408000pt;}
.y44{bottom:250.758667pt;}
.y290{bottom:252.218667pt;}
.yd7{bottom:252.657333pt;}
.y394{bottom:254.502667pt;}
.y149{bottom:255.438667pt;}
.ya0{bottom:256.298667pt;}
.y2f6{bottom:256.416000pt;}
.y393{bottom:256.833333pt;}
.y21c{bottom:258.228000pt;}
.yd4{bottom:258.966667pt;}
.y5e{bottom:259.249056pt;}
.y335{bottom:260.028000pt;}
.y10a{bottom:262.213333pt;}
.y363{bottom:264.689333pt;}
.y245{bottom:265.018667pt;}
.yd6{bottom:265.276000pt;}
.y1a4{bottom:265.666667pt;}
.y174{bottom:265.876000pt;}
.y43{bottom:267.496000pt;}
.y28f{bottom:268.956000pt;}
.y2f5{bottom:271.028000pt;}
.y2d1{bottom:271.345333pt;}
.y392{bottom:272.176000pt;}
.y9f{bottom:273.036000pt;}
.y1a{bottom:273.154667pt;}
.y21b{bottom:274.965333pt;}
.y362{bottom:275.316000pt;}
.yd3{bottom:276.028000pt;}
.y3c9{bottom:276.161333pt;}
.y5d{bottom:276.288712pt;}
.y1e9{bottom:277.354667pt;}
.yd2{bottom:277.896000pt;}
.y109{bottom:278.950667pt;}
.y244{bottom:279.630667pt;}
.y1a3{bottom:282.404000pt;}
.y173{bottom:282.613333pt;}
.y42{bottom:284.233333pt;}
.y2f4{bottom:285.640000pt;}
.y28e{bottom:285.693333pt;}
.y361{bottom:285.942667pt;}
.y2d0{bottom:285.957333pt;}
.y148{bottom:286.124000pt;}
.y26a{bottom:286.349333pt;}
.y9e{bottom:287.346667pt;}
.y391{bottom:287.518667pt;}
.y19{bottom:289.054667pt;}
.y9d{bottom:289.772000pt;}
.y3c8{bottom:291.502667pt;}
.y21a{bottom:291.702667pt;}
.y1bf{bottom:292.049853pt;}
.y5c{bottom:293.408216pt;}
.y243{bottom:294.242667pt;}
.y108{bottom:295.688000pt;}
.y360{bottom:296.569333pt;}
.yd1{bottom:296.917333pt;}
.y1bd{bottom:297.292000pt;}
.y1a2{bottom:299.141333pt;}
.y334{bottom:299.242667pt;}
.y172{bottom:299.350667pt;}
.y28d{bottom:300.004000pt;}
.y2f3{bottom:300.252000pt;}
.y2cf{bottom:300.569333pt;}
.y1be{bottom:300.609733pt;}
.y269{bottom:300.961333pt;}
.y41{bottom:300.970667pt;}
.y318{bottom:302.298667pt;}
.y28c{bottom:302.430667pt;}
.y390{bottom:302.861333pt;}
.y18{bottom:304.954667pt;}
.y9c{bottom:306.509333pt;}
.y3c7{bottom:306.845333pt;}
.y35f{bottom:307.196000pt;}
.y219{bottom:308.440000pt;}
.yd0{bottom:309.537333pt;}
.y333{bottom:309.869333pt;}
.y5b{bottom:310.527720pt;}
.y107{bottom:312.425333pt;}
.y2f2{bottom:314.864000pt;}
.y242{bottom:315.257333pt;}
.y40{bottom:315.281333pt;}
.y268{bottom:315.572000pt;}
.y1a1{bottom:315.878667pt;}
.y171{bottom:316.088000pt;}
.y147{bottom:316.808000pt;}
.y317{bottom:316.910667pt;}
.y3f{bottom:317.708000pt;}
.y35e{bottom:317.822667pt;}
.y38f{bottom:318.202667pt;}
.y28b{bottom:319.168000pt;}
.y332{bottom:320.497333pt;}
.y17{bottom:320.856000pt;}
.y2ce{bottom:321.582667pt;}
.y3c6{bottom:322.188000pt;}
.y9b{bottom:323.246667pt;}
.y218{bottom:325.177333pt;}
.y5a{bottom:327.568400pt;}
.y35d{bottom:328.450667pt;}
.y106{bottom:329.162667pt;}
.y2f1{bottom:329.476000pt;}
.y267{bottom:330.184000pt;}
.y146{bottom:330.812000pt;}
.y331{bottom:331.124000pt;}
.y316{bottom:331.521333pt;}
.y145{bottom:331.553333pt;}
.y1a0{bottom:332.616000pt;}
.y170{bottom:332.824000pt;}
.y144{bottom:333.545333pt;}
.y3e{bottom:334.445333pt;}
.y28a{bottom:335.905333pt;}
.ycf{bottom:336.248000pt;}
.y3c5{bottom:337.530667pt;}
.y9a{bottom:339.984000pt;}
.y330{bottom:341.750667pt;}
.y217{bottom:341.914667pt;}
.y241{bottom:343.362667pt;}
.y2f0{bottom:344.086667pt;}
.y266{bottom:344.796000pt;}
.y35c{bottom:345.478667pt;}
.y105{bottom:345.900000pt;}
.y315{bottom:346.133333pt;}
.y38e{bottom:348.888000pt;}
.y19f{bottom:349.353333pt;}
.y16f{bottom:349.561333pt;}
.y2cd{bottom:349.689333pt;}
.y3d{bottom:351.182667pt;}
.y32f{bottom:352.377333pt;}
.y289{bottom:352.642667pt;}
.y3c4{bottom:352.873333pt;}
.y16{bottom:354.688000pt;}
.y35b{bottom:356.105333pt;}
.y99{bottom:356.721333pt;}
.y216{bottom:358.652000pt;}
.y2ef{bottom:358.698667pt;}
.y314{bottom:360.745333pt;}
.y104{bottom:362.637333pt;}
.y32e{bottom:363.004000pt;}
.y143{bottom:364.230667pt;}
.y265{bottom:365.810667pt;}
.y19e{bottom:366.090667pt;}
.y16e{bottom:366.298667pt;}
.y3c{bottom:367.920000pt;}
.y3c3{bottom:368.216000pt;}
.y288{bottom:369.380000pt;}
.y15{bottom:370.589333pt;}
.y240{bottom:370.806667pt;}
.yce{bottom:371.888000pt;}
.y98{bottom:373.458667pt;}
.y313{bottom:375.357333pt;}
.y215{bottom:375.389333pt;}
.y59{bottom:376.208520pt;}
.y103{bottom:379.374667pt;}
.y38d{bottom:379.573333pt;}
.y2ee{bottom:379.713333pt;}
.y32d{bottom:380.033333pt;}
.y35a{bottom:381.422667pt;}
.y3b{bottom:382.230667pt;}
.y19d{bottom:382.828000pt;}
.y16d{bottom:383.036000pt;}
.y3c2{bottom:383.558667pt;}
.y3a{bottom:384.657333pt;}
.y58{bottom:384.768400pt;}
.y287{bottom:386.117333pt;}
.y14{bottom:386.489333pt;}
.ycd{bottom:386.500000pt;}
.y2cc{bottom:386.657333pt;}
.y23f{bottom:387.544000pt;}
.y312{bottom:389.969333pt;}
.y97{bottom:390.196000pt;}
.y32c{bottom:390.660000pt;}
.y214{bottom:392.126667pt;}
.y264{bottom:393.916000pt;}
.y142{bottom:394.916000pt;}
.y102{bottom:396.112000pt;}
.y3c1{bottom:398.901333pt;}
.y19c{bottom:399.565333pt;}
.y16c{bottom:399.773333pt;}
.y2cb{bottom:401.269333pt;}
.y286{bottom:402.854667pt;}
.y23e{bottom:404.281333pt;}
.y311{bottom:404.581333pt;}
.y39{bottom:405.380000pt;}
.y96{bottom:406.933333pt;}
.ycc{bottom:407.514667pt;}
.y2ed{bottom:407.820000pt;}
.y213{bottom:408.864000pt;}
.y38c{bottom:410.258667pt;}
.y101{bottom:412.848000pt;}
.y3c0{bottom:414.244000pt;}
.y2ca{bottom:415.881333pt;}
.y32b{bottom:415.976000pt;}
.y19b{bottom:416.302667pt;}
.y16b{bottom:416.510667pt;}
.y13{bottom:418.330667pt;}
.y285{bottom:419.592000pt;}
.y23d{bottom:421.018667pt;}
.y263{bottom:422.897333pt;}
.y95{bottom:423.670667pt;}
.y310{bottom:425.594667pt;}
.y141{bottom:425.601333pt;}
.y359{bottom:426.361333pt;}
.y100{bottom:429.585333pt;}
.y19a{bottom:433.040000pt;}
.y16a{bottom:433.248000pt;}
.y12{bottom:434.230667pt;}
.ycb{bottom:435.621333pt;}
.y284{bottom:436.329333pt;}
.y2c9{bottom:436.896000pt;}
.y23c{bottom:437.756000pt;}
.y262{bottom:439.634667pt;}
.y94{bottom:440.408000pt;}
.y2ec{bottom:440.801333pt;}
.y38b{bottom:440.944000pt;}
.y358{bottom:440.973333pt;}
.y212{bottom:442.338667pt;}
.y3bf{bottom:444.928000pt;}
.yff{bottom:446.322667pt;}
.y199{bottom:449.777333pt;}
.y169{bottom:449.985333pt;}
.y11{bottom:450.130667pt;}
.y283{bottom:453.066667pt;}
.y30f{bottom:453.701333pt;}
.y23b{bottom:454.493333pt;}
.y357{bottom:455.585333pt;}
.y140{bottom:456.285333pt;}
.y261{bottom:456.372000pt;}
.y93{bottom:457.145333pt;}
.y2eb{bottom:457.538667pt;}
.y211{bottom:459.076000pt;}
.y3be{bottom:460.270667pt;}
.y32a{bottom:460.914667pt;}
.yfe{bottom:463.060000pt;}
.y2c8{bottom:465.001333pt;}
.y198{bottom:466.514667pt;}
.y168{bottom:466.722667pt;}
.yca{bottom:468.602667pt;}
.y282{bottom:469.804000pt;}
.y356{bottom:470.197333pt;}
.y23a{bottom:471.230667pt;}
.y38a{bottom:471.628000pt;}
.y38{bottom:472.180000pt;}
.y13f{bottom:473.022667pt;}
.y260{bottom:473.109333pt;}
.y92{bottom:473.882667pt;}
.y2ea{bottom:474.276000pt;}
.y329{bottom:475.526667pt;}
.y3bd{bottom:475.613333pt;}
.y210{bottom:475.813333pt;}
.yfd{bottom:479.797333pt;}
.y10{bottom:481.972000pt;}
.y197{bottom:483.252000pt;}
.y355{bottom:484.809333pt;}
.yc9{bottom:485.340000pt;}
.y281{bottom:486.541333pt;}
.y389{bottom:486.970667pt;}
.y239{bottom:487.968000pt;}
.y91{bottom:488.193333pt;}
.y37{bottom:489.474667pt;}
.y13e{bottom:489.760000pt;}
.y25f{bottom:489.846667pt;}
.y328{bottom:490.138667pt;}
.y90{bottom:490.620000pt;}
.y3bc{bottom:490.956000pt;}
.y20f{bottom:492.549333pt;}
.yfc{bottom:496.534667pt;}
.y2c7{bottom:496.694667pt;}
.yf{bottom:497.872000pt;}
.y30e{bottom:498.640000pt;}
.y354{bottom:499.421333pt;}
.y196{bottom:499.989333pt;}
.yc8{bottom:502.077333pt;}
.y388{bottom:502.313333pt;}
.y280{bottom:503.278667pt;}
.y238{bottom:504.705333pt;}
.y327{bottom:504.750667pt;}
.y3bb{bottom:506.298667pt;}
.y13d{bottom:506.497333pt;}
.y25e{bottom:506.584000pt;}
.y167{bottom:507.133333pt;}
.y8f{bottom:507.357333pt;}
.y20e{bottom:509.286667pt;}
.y30d{bottom:513.252000pt;}
.yfb{bottom:513.272000pt;}
.y2c6{bottom:513.432000pt;}
.ye{bottom:513.772000pt;}
.y2e9{bottom:514.686667pt;}
.y195{bottom:516.726667pt;}
.y387{bottom:517.656000pt;}
.yc7{bottom:518.814667pt;}
.y326{bottom:519.362667pt;}
.y27f{bottom:520.016000pt;}
.y353{bottom:520.434667pt;}
.y237{bottom:521.442667pt;}
.y3ba{bottom:521.641333pt;}
.y166{bottom:521.745333pt;}
.y36{bottom:522.710667pt;}
.y25d{bottom:523.321333pt;}
.y8e{bottom:524.094667pt;}
.y20d{bottom:526.024000pt;}
.y30c{bottom:527.864000pt;}
.y2c5{bottom:528.177333pt;}
.y2e8{bottom:529.297333pt;}
.yd{bottom:529.673333pt;}
.yfa{bottom:530.009333pt;}
.y2c4{bottom:530.169333pt;}
.y13c{bottom:531.604000pt;}
.y386{bottom:532.998667pt;}
.y29f{bottom:533.464000pt;}
.yc6{bottom:535.550667pt;}
.y165{bottom:536.357333pt;}
.y27e{bottom:536.753333pt;}
.y3b9{bottom:536.984000pt;}
.y236{bottom:538.180000pt;}
.y35{bottom:540.005333pt;}
.y25c{bottom:540.058667pt;}
.y194{bottom:540.105333pt;}
.y325{bottom:540.377333pt;}
.y30b{bottom:542.476000pt;}
.y20c{bottom:542.761333pt;}
.y8d{bottom:544.817333pt;}
.yc{bottom:545.573333pt;}
.yf9{bottom:546.746667pt;}
.y2c3{bottom:546.906667pt;}
.y13b{bottom:548.341333pt;}
.y352{bottom:548.541333pt;}
.y29e{bottom:550.200000pt;}
.y2e7{bottom:550.312000pt;}
.yc5{bottom:552.288000pt;}
.y3b8{bottom:552.325333pt;}
.y27d{bottom:553.490667pt;}
.y25b{bottom:556.796000pt;}
.y193{bottom:556.842667pt;}
.y30a{bottom:557.088000pt;}
.y34{bottom:557.300000pt;}
.y164{bottom:557.370667pt;}
.y235{bottom:558.902667pt;}
.y20b{bottom:559.498667pt;}
.yb{bottom:561.473333pt;}
.yf8{bottom:563.484000pt;}
.y385{bottom:563.684000pt;}
.y13a{bottom:565.078667pt;}
.y29d{bottom:566.937333pt;}
.y2c2{bottom:567.629333pt;}
.y3b7{bottom:567.668000pt;}
.y324{bottom:568.482667pt;}
.yc4{bottom:569.025333pt;}
.y27c{bottom:570.228000pt;}
.y309{bottom:571.700000pt;}
.y163{bottom:571.982667pt;}
.y25a{bottom:573.533333pt;}
.y192{bottom:573.580000pt;}
.y33{bottom:574.596000pt;}
.y8c{bottom:574.705333pt;}
.y20a{bottom:576.236000pt;}
.ya{bottom:577.374667pt;}
.y2e6{bottom:578.418667pt;}
.y384{bottom:579.025333pt;}
.yf7{bottom:580.221333pt;}
.y139{bottom:581.816000pt;}
.y3b6{bottom:583.010667pt;}
.y29c{bottom:583.674667pt;}
.yc3{bottom:585.762667pt;}
.y308{bottom:586.312000pt;}
.y162{bottom:586.594667pt;}
.y1bc{bottom:586.645333pt;}
.y27b{bottom:586.965333pt;}
.y259{bottom:590.270667pt;}
.y191{bottom:590.317333pt;}
.y8b{bottom:591.442667pt;}
.y32{bottom:591.890667pt;}
.y209{bottom:592.973333pt;}
.y351{bottom:593.480000pt;}
.y383{bottom:594.368000pt;}
.y234{bottom:594.446667pt;}
.y3b5{bottom:596.022667pt;}
.yf6{bottom:596.958667pt;}
.y7{bottom:597.259968pt;}
.y3b4{bottom:598.353333pt;}
.y138{bottom:598.553333pt;}
.y2c1{bottom:600.306667pt;}
.y29b{bottom:600.412000pt;}
.y307{bottom:600.924000pt;}
.y323{bottom:601.464000pt;}
.yc2{bottom:602.500000pt;}
.y1bb{bottom:603.394667pt;}
.y27a{bottom:603.702667pt;}
.y190{bottom:607.054667pt;}
.y160{bottom:607.609333pt;}
.y8a{bottom:608.180000pt;}
.y233{bottom:609.058667pt;}
.y31{bottom:609.185333pt;}
.y1ba{bottom:609.676000pt;}
.y208{bottom:609.710667pt;}
.y2e5{bottom:611.400000pt;}
.y137{bottom:612.864000pt;}
.yf5{bottom:613.696000pt;}
.y350{bottom:614.493333pt;}
.y15f{bottom:614.914667pt;}
.y136{bottom:615.290667pt;}
.y306{bottom:615.536000pt;}
.y2b9{bottom:617.149333pt;}
.yc1{bottom:619.237333pt;}
.y161{bottom:622.221333pt;}
.y232{bottom:623.670667pt;}
.y18f{bottom:623.792000pt;}
.y2c0{bottom:623.898667pt;}
.y89{bottom:624.917333pt;}
.y382{bottom:625.053333pt;}
.y207{bottom:626.448000pt;}
.y30{bottom:626.481333pt;}
.y279{bottom:627.081333pt;}
.y2e4{bottom:628.137333pt;}
.y3b3{bottom:629.038667pt;}
.y34f{bottom:629.105333pt;}
.y135{bottom:629.601333pt;}
.y258{bottom:630.141333pt;}
.y305{bottom:630.146667pt;}
.yf4{bottom:630.433333pt;}
.y134{bottom:632.028000pt;}
.y2b8{bottom:633.886667pt;}
.yc0{bottom:635.974667pt;}
.y231{bottom:638.282667pt;}
.y1b9{bottom:639.021333pt;}
.y381{bottom:640.396000pt;}
.y18e{bottom:640.529333pt;}
.y88{bottom:641.654667pt;}
.y322{bottom:641.874667pt;}
.y2e3{bottom:642.881333pt;}
.y206{bottom:643.185333pt;}
.y2f{bottom:643.776000pt;}
.y3b2{bottom:644.381333pt;}
.y257{bottom:644.753333pt;}
.y304{bottom:644.758667pt;}
.y2e2{bottom:644.874667pt;}
.y1b8{bottom:645.302667pt;}
.y133{bottom:646.338667pt;}
.yf3{bottom:647.170667pt;}
.y2bf{bottom:647.489333pt;}
.y132{bottom:648.764000pt;}
.y15e{bottom:650.326667pt;}
.y278{bottom:650.460000pt;}
.y2b7{bottom:650.624000pt;}
.ybf{bottom:652.712000pt;}
.y230{bottom:652.893333pt;}
.y380{bottom:655.738667pt;}
.y321{bottom:656.486667pt;}
.y34e{bottom:657.212000pt;}
.y18d{bottom:657.266667pt;}
.y256{bottom:659.364000pt;}
.y3b1{bottom:659.724000pt;}
.y205{bottom:659.922667pt;}
.y2e{bottom:661.072000pt;}
.y87{bottom:662.376000pt;}
.yf2{bottom:663.908000pt;}
.y22f{bottom:665.744000pt;}
.y303{bottom:665.773333pt;}
.y277{bottom:667.197333pt;}
.y2b6{bottom:667.361333pt;}
.y2be{bottom:671.081333pt;}
.y320{bottom:671.098667pt;}
.y131{bottom:673.870667pt;}
.y255{bottom:673.976000pt;}
.y18c{bottom:674.004000pt;}
.y1b7{bottom:674.646667pt;}
.y3b0{bottom:675.066667pt;}
.y204{bottom:676.660000pt;}
.y22e{bottom:676.974667pt;}
.y2d{bottom:678.366667pt;}
.y15d{bottom:679.848000pt;}
.yf1{bottom:680.645333pt;}
.y1b6{bottom:680.928000pt;}
.y276{bottom:683.934667pt;}
.y2b5{bottom:684.098667pt;}
.y2e1{bottom:685.316000pt;}
.y31f{bottom:685.710667pt;}
.y37f{bottom:686.424000pt;}
.y22d{bottom:688.532000pt;}
.y254{bottom:688.588000pt;}
.y86{bottom:689.422667pt;}
.y3af{bottom:690.408000pt;}
.y18b{bottom:690.741333pt;}
.ybe{bottom:693.122667pt;}
.y203{bottom:693.397333pt;}
.y302{bottom:693.880000pt;}
.y2bd{bottom:694.673333pt;}
.y2c{bottom:695.661333pt;}
.y15c{bottom:696.585333pt;}
.yf0{bottom:697.382667pt;}
.y2e0{bottom:699.960000pt;}
.ybd{bottom:700.198667pt;}
.y31e{bottom:700.322667pt;}
.y2b4{bottom:700.836000pt;}
.y34d{bottom:701.553333pt;}
.y37e{bottom:701.766667pt;}
.y22c{bottom:703.144000pt;}
.y253{bottom:703.200000pt;}
.y130{bottom:704.556000pt;}
.y275{bottom:704.657333pt;}
.y3ae{bottom:705.750667pt;}
.y18a{bottom:707.477333pt;}
.y57{bottom:709.360000pt;}
.y202{bottom:710.134667pt;}
.y1b5{bottom:710.273333pt;}
.y2b{bottom:712.957333pt;}
.y15b{bottom:713.322667pt;}
.yef{bottom:714.120000pt;}
.y34c{bottom:714.172000pt;}
.y2df{bottom:714.604000pt;}
.y31d{bottom:714.934667pt;}
.y37d{bottom:717.108000pt;}
.y2b3{bottom:717.573333pt;}
.y2bc{bottom:718.264000pt;}
.y3ad{bottom:721.093333pt;}
.ybc{bottom:722.346667pt;}
.y22b{bottom:724.157333pt;}
.y189{bottom:724.214667pt;}
.y1b4{bottom:724.885333pt;}
.y34b{bottom:726.792000pt;}
.y301{bottom:726.861333pt;}
.y201{bottom:726.872000pt;}
.y31c{bottom:729.546667pt;}
.y15a{bottom:730.060000pt;}
.y2a{bottom:730.252000pt;}
.yee{bottom:730.857333pt;}
.y251{bottom:731.520000pt;}
.y37c{bottom:732.450667pt;}
.y2bb{bottom:733.885333pt;}
.y2b2{bottom:734.310667pt;}
.y12f{bottom:735.240000pt;}
.y2de{bottom:735.617333pt;}
.y3ac{bottom:736.436000pt;}
.ybb{bottom:736.958667pt;}
.y22a{bottom:738.769333pt;}
.y252{bottom:738.826667pt;}
.y34a{bottom:739.410667pt;}
.y188{bottom:740.952000pt;}
.y274{bottom:742.278667pt;}
.y200{bottom:743.609333pt;}
.y31b{bottom:744.158667pt;}
.y29{bottom:747.546667pt;}
.y300{bottom:747.582667pt;}
.yed{bottom:747.594667pt;}
.y37b{bottom:747.793333pt;}
.y2ba{bottom:749.506667pt;}
.y159{bottom:750.782667pt;}
.y2b1{bottom:751.048000pt;}
.yba{bottom:751.570667pt;}
.y3ab{bottom:751.778667pt;}
.y12e{bottom:751.977333pt;}
.y349{bottom:752.030667pt;}
.y1b3{bottom:752.990667pt;}
.y229{bottom:753.381333pt;}
.y273{bottom:756.890667pt;}
.y187{bottom:757.689333pt;}
.y31a{bottom:758.770667pt;}
.y1ff{bottom:760.346667pt;}
.y37a{bottom:763.136000pt;}
.y2dd{bottom:763.724000pt;}
.yec{bottom:764.332000pt;}
.y28{bottom:764.842667pt;}
.yb9{bottom:766.182667pt;}
.y250{bottom:766.932000pt;}
.y3aa{bottom:767.121333pt;}
.y2b0{bottom:767.785333pt;}
.y228{bottom:767.993333pt;}
.y12d{bottom:768.714667pt;}
.y118{bottom:770.488485pt;}
.y348{bottom:771.052000pt;}
.y272{bottom:771.502667pt;}
.y319{bottom:773.382667pt;}
.y186{bottom:774.426667pt;}
.y1fe{bottom:777.084000pt;}
.y379{bottom:778.478667pt;}
.y27{bottom:779.806667pt;}
.yb6{bottom:780.564000pt;}
.y158{bottom:780.670667pt;}
.yb8{bottom:780.794667pt;}
.yeb{bottom:781.069333pt;}
.y26{bottom:782.137333pt;}
.y3a9{bottom:782.464000pt;}
.y2af{bottom:784.522667pt;}
.y12c{bottom:785.452000pt;}
.y1b2{bottom:785.972000pt;}
.y271{bottom:786.113333pt;}
.y117{bottom:787.607989pt;}
.y2ff{bottom:787.993333pt;}
.y227{bottom:789.008000pt;}
.y185{bottom:791.164000pt;}
.y1fd{bottom:791.828000pt;}
.y1fc{bottom:793.821333pt;}
.yb7{bottom:795.406667pt;}
.y2dc{bottom:796.705333pt;}
.y157{bottom:797.408000pt;}
.y347{bottom:797.762667pt;}
.yea{bottom:797.806667pt;}
.y2ae{bottom:801.260000pt;}
.y12b{bottom:802.189333pt;}
.y2fe{bottom:802.605333pt;}
.y1b1{bottom:802.709333pt;}
.y116{bottom:804.647645pt;}
.y270{bottom:807.128000pt;}
.y184{bottom:807.901333pt;}
.y378{bottom:809.164000pt;}
.yb5{bottom:810.017333pt;}
.y1fb{bottom:810.558667pt;}
.y3a8{bottom:813.149333pt;}
.y2db{bottom:813.442667pt;}
.y156{bottom:814.145333pt;}
.ye9{bottom:814.544000pt;}
.y25{bottom:816.436000pt;}
.y226{bottom:817.113333pt;}
.y2fd{bottom:817.217333pt;}
.y2ad{bottom:817.997333pt;}
.y12a{bottom:818.926667pt;}
.y115{bottom:821.767149pt;}
.y1b0{bottom:823.432000pt;}
.y377{bottom:824.506667pt;}
.yb4{bottom:824.629333pt;}
.y183{bottom:824.638667pt;}
.y346{bottom:827.284000pt;}
.y1fa{bottom:827.296000pt;}
.y3a7{bottom:828.490667pt;}
.y24{bottom:830.782667pt;}
.y155{bottom:830.882667pt;}
.ye8{bottom:831.281333pt;}
.y2fc{bottom:831.829333pt;}
.y2ac{bottom:834.734667pt;}
.y26f{bottom:835.234667pt;}
.y129{bottom:835.664000pt;}
.y114{bottom:838.886653pt;}
.yb1{bottom:839.012000pt;}
.yb3{bottom:839.241333pt;}
.y376{bottom:839.848000pt;}
.y182{bottom:841.376000pt;}
.y3a6{bottom:841.502667pt;}
.y3a5{bottom:843.833333pt;}
.y1f9{bottom:844.033333pt;}
.y23{bottom:845.128000pt;}
.y2fb{bottom:846.441333pt;}
.ye7{bottom:848.018667pt;}
.y2ab{bottom:851.472000pt;}
.y154{bottom:851.604000pt;}
.y128{bottom:852.401333pt;}
.yb2{bottom:853.853333pt;}
.y375{bottom:855.190667pt;}
.y113{bottom:855.927333pt;}
.y181{bottom:858.113333pt;}
.y3a4{bottom:859.176000pt;}
.y1f8{bottom:860.770667pt;}
.y1af{bottom:861.053333pt;}
.ye6{bottom:864.754667pt;}
.y345{bottom:866.500000pt;}
.y2aa{bottom:868.209333pt;}
.yb0{bottom:868.465333pt;}
.y127{bottom:869.138667pt;}
.y374{bottom:870.533333pt;}
.y3a3{bottom:874.518667pt;}
.y180{bottom:874.850667pt;}
.y1f7{bottom:875.081333pt;}
.y1ae{bottom:875.665333pt;}
.y344{bottom:877.126667pt;}
.y1f6{bottom:877.508000pt;}
.ye5{bottom:881.492000pt;}
.y2da{bottom:883.077333pt;}
.y373{bottom:883.545333pt;}
.y56{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y126{bottom:885.876000pt;}
.y343{bottom:887.753333pt;}
.yae{bottom:889.480000pt;}
.y3a2{bottom:889.861333pt;}
.y1ad{bottom:890.277333pt;}
.y2a9{bottom:891.588000pt;}
.y1f5{bottom:894.245333pt;}
.yad{bottom:896.785333pt;}
.ye4{bottom:898.229333pt;}
.y342{bottom:898.380000pt;}
.y55{bottom:900.605333pt;}
.y372{bottom:901.218667pt;}
.y125{bottom:902.613333pt;}
.yaf{bottom:904.090667pt;}
.y112{bottom:904.567453pt;}
.y1ac{bottom:904.889333pt;}
.y3a1{bottom:905.204000pt;}
.y341{bottom:909.006667pt;}
.y1f4{bottom:910.982667pt;}
.y111{bottom:913.127333pt;}
.ye3{bottom:914.966667pt;}
.y371{bottom:916.561333pt;}
.y54{bottom:917.342667pt;}
.y1ab{bottom:919.501333pt;}
.y340{bottom:919.633333pt;}
.y3a0{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y124{bottom:927.720000pt;}
.y33f{bottom:930.260000pt;}
.ye2{bottom:931.704000pt;}
.y370{bottom:931.904000pt;}
.yac{bottom:932.197333pt;}
.y53{bottom:934.080000pt;}
.y2fa{bottom:934.112000pt;}
.y39f{bottom:935.889333pt;}
.y1a9{bottom:940.514667pt;}
.y123{bottom:944.456000pt;}
.y36f{bottom:947.246667pt;}
.y33e{bottom:947.289333pt;}
.y1a8{bottom:947.820000pt;}
.ye1{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.y39e{bottom:951.230667pt;}
.y1aa{bottom:955.126667pt;}
.y33d{bottom:957.916000pt;}
.y122{bottom:961.193333pt;}
.y36e{bottom:962.589333pt;}
.yab{bottom:965.178667pt;}
.y39d{bottom:966.573333pt;}
.y51{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.yaa{bottom:981.916000pt;}
.y1a7{bottom:983.233333pt;}
.y50{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h28{height:26.890973pt;}
.h20{height:27.184641pt;}
.h1d{height:27.672303pt;}
.h12{height:29.363906pt;}
.h9{height:29.433775pt;}
.h18{height:29.593750pt;}
.h8{height:30.399505pt;}
.h1b{height:30.732706pt;}
.ha{height:32.284045pt;}
.hc{height:34.574438pt;}
.hf{height:35.051460pt;}
.h14{height:36.870469pt;}
.hb{height:36.896250pt;}
.h6{height:38.415786pt;}
.h17{height:38.462187pt;}
.h4{height:38.947124pt;}
.h16{height:39.349375pt;}
.h11{height:39.359687pt;}
.hd{height:41.508454pt;}
.h2a{height:43.660390pt;}
.h1e{height:44.368250pt;}
.h15{height:44.390625pt;}
.h2{height:45.272024pt;}
.he{height:46.120196pt;}
.h22{height:46.743269pt;}
.h23{height:46.748602pt;}
.h13{height:49.421563pt;}
.h1c{height:55.970039pt;}
.h3{height:61.782479pt;}
.h1f{height:62.133583pt;}
.h19{height:63.795772pt;}
.h24{height:63.801105pt;}
.h5{height:69.148877pt;}
.h29{height:69.397639pt;}
.h1a{height:71.652454pt;}
.h26{height:74.831121pt;}
.h25{height:93.022438pt;}
.h10{height:153.493333pt;}
.h27{height:261.118667pt;}
.h21{height:756.234933pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w5{width:430.377333pt;}
.w6{width:444.740000pt;}
.w4{width:515.860000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7b{left:-175.076000pt;}
.x15{left:-171.776000pt;}
.x4b{left:-169.536000pt;}
.x7c{left:-1.236000pt;}
.x0{left:0.000000pt;}
.x16{left:2.064000pt;}
.x4c{left:4.304000pt;}
.x4{left:26.021437pt;}
.x7d{left:27.084000pt;}
.x18{left:30.383906pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x34{left:62.314667pt;}
.x39{left:63.473333pt;}
.x3a{left:72.458667pt;}
.xc1{left:75.240000pt;}
.xc0{left:76.686667pt;}
.x33{left:81.056000pt;}
.x80{left:91.164000pt;}
.x81{left:95.164000pt;}
.x7e{left:107.804000pt;}
.x7f{left:122.364000pt;}
.x82{left:144.844000pt;}
.x83{left:149.644000pt;}
.x35{left:157.797333pt;}
.x36{left:183.104000pt;}
.x37{left:187.753333pt;}
.x38{left:195.938667pt;}
.x6{left:222.073333pt;}
.x5{left:223.020000pt;}
.x64{left:230.989333pt;}
.x2e{left:232.018667pt;}
.x2d{left:235.008000pt;}
.x8c{left:236.218667pt;}
.x99{left:238.245333pt;}
.x66{left:239.612000pt;}
.x30{left:240.705333pt;}
.x73{left:241.629333pt;}
.x25{left:242.521333pt;}
.x95{left:243.766667pt;}
.x72{left:245.156000pt;}
.x96{left:246.194667pt;}
.x32{left:249.037333pt;}
.xb{left:251.365333pt;}
.xaf{left:252.533333pt;}
.x6b{left:253.769333pt;}
.x9d{left:255.520000pt;}
.x8a{left:257.284000pt;}
.x13{left:258.238667pt;}
.x8b{left:259.244000pt;}
.xa5{left:260.149333pt;}
.xe{left:261.926667pt;}
.x87{left:263.502667pt;}
.x14{left:264.881333pt;}
.xae{left:265.970667pt;}
.x5a{left:267.197333pt;}
.xf{left:268.568000pt;}
.xa6{left:270.317333pt;}
.xa0{left:272.188000pt;}
.x7{left:275.069333pt;}
.x88{left:276.786667pt;}
.x9a{left:277.786667pt;}
.x9c{left:279.298667pt;}
.x2a{left:280.652000pt;}
.x10{left:281.884000pt;}
.x9b{left:284.310667pt;}
.xa{left:285.505333pt;}
.x1a{left:287.024000pt;}
.xa8{left:290.042667pt;}
.xa9{left:292.290667pt;}
.x2f{left:293.306667pt;}
.xa7{left:294.860000pt;}
.x9e{left:296.986667pt;}
.x1b{left:299.344000pt;}
.x4e{left:301.305333pt;}
.x91{left:306.037333pt;}
.x90{left:312.584000pt;}
.x85{left:313.878667pt;}
.x61{left:315.541333pt;}
.x65{left:317.914667pt;}
.x86{left:319.590667pt;}
.x4f{left:320.953333pt;}
.x8e{left:322.618667pt;}
.x8f{left:324.578667pt;}
.xb6{left:325.589333pt;}
.xc2{left:327.254667pt;}
.x84{left:329.366667pt;}
.xba{left:331.273333pt;}
.x92{left:333.134667pt;}
.xc3{left:335.566667pt;}
.xb9{left:338.578667pt;}
.xa1{left:342.141333pt;}
.x74{left:344.909333pt;}
.x75{left:348.036000pt;}
.x93{left:352.482667pt;}
.x2b{left:358.146667pt;}
.x3f{left:374.200000pt;}
.x3e{left:377.522667pt;}
.x3d{left:379.568000pt;}
.x1e{left:387.069333pt;}
.x89{left:388.504000pt;}
.x1f{left:393.710667pt;}
.x20{left:396.965333pt;}
.x6f{left:400.357333pt;}
.x21{left:403.608000pt;}
.x11{left:406.462667pt;}
.x8d{left:408.474667pt;}
.x9f{left:410.041333pt;}
.x19{left:411.904000pt;}
.x22{left:413.504000pt;}
.x12{left:415.484000pt;}
.x31{left:418.209333pt;}
.x23{left:420.012000pt;}
.x2c{left:421.569333pt;}
.x5c{left:423.388000pt;}
.x4d{left:424.866667pt;}
.xbb{left:426.756000pt;}
.x3c{left:431.010667pt;}
.x24{left:433.296000pt;}
.xaa{left:434.441333pt;}
.xb4{left:439.062667pt;}
.x44{left:444.133333pt;}
.x6c{left:446.406667pt;}
.x59{left:452.360000pt;}
.xb0{left:453.313333pt;}
.xab{left:454.968000pt;}
.xb3{left:456.272000pt;}
.x45{left:457.416000pt;}
.x6d{left:459.690667pt;}
.x46{left:460.804000pt;}
.xac{left:463.313333pt;}
.x3b{left:465.120000pt;}
.xb2{left:468.520000pt;}
.xb1{left:469.738667pt;}
.xad{left:472.338667pt;}
.x26{left:474.337333pt;}
.x63{left:478.382667pt;}
.x76{left:479.872000pt;}
.x27{left:480.978667pt;}
.x47{left:486.118667pt;}
.x28{left:487.501333pt;}
.x77{left:496.273333pt;}
.x48{left:499.401333pt;}
.x29{left:500.784000pt;}
.x49{left:502.789333pt;}
.x17{left:512.226001pt;}
.xbc{left:513.869333pt;}
.x4a{left:516.073333pt;}
.x70{left:521.193333pt;}
.x54{left:528.637333pt;}
.xa4{left:531.634667pt;}
.x40{left:535.988000pt;}
.x67{left:537.672000pt;}
.x41{left:542.630667pt;}
.xa2{left:544.116000pt;}
.x6e{left:545.718667pt;}
.x68{left:548.598667pt;}
.xa3{left:558.593333pt;}
.x55{left:559.549333pt;}
.x56{left:563.150667pt;}
.x78{left:565.762667pt;}
.xc{left:573.381333pt;}
.x8{left:575.442667pt;}
.x42{left:578.656000pt;}
.xd{left:582.422667pt;}
.x9{left:583.749333pt;}
.xbd{left:588.130667pt;}
.x43{left:591.938667pt;}
.x69{left:596.504000pt;}
.x5b{left:598.696000pt;}
.xc7{left:600.284000pt;}
.x6a{left:603.146667pt;}
.xcb{left:607.942667pt;}
.xc8{left:608.957333pt;}
.xb5{left:616.893333pt;}
.x1c{left:620.582667pt;}
.x50{left:626.861333pt;}
.x1d{left:629.105333pt;}
.x51{left:633.764000pt;}
.x5d{left:635.852000pt;}
.x62{left:642.172000pt;}
.x97{left:647.340000pt;}
.x5e{left:650.437333pt;}
.x57{left:654.745333pt;}
.x98{left:658.493333pt;}
.x52{left:660.810667pt;}
.x94{left:663.080000pt;}
.x53{left:664.412000pt;}
.x58{left:667.658667pt;}
.xcc{left:668.841333pt;}
.x71{left:672.761333pt;}
.xbf{left:675.245333pt;}
.xcd{left:677.278667pt;}
.xbe{left:683.613333pt;}
.xb7{left:687.450667pt;}
.x79{left:690.790667pt;}
.xb8{left:693.388000pt;}
.x7a{left:699.553333pt;}
.xc5{left:702.794667pt;}
.xc9{left:708.244000pt;}
.xc4{left:720.356000pt;}
.xc6{left:726.704000pt;}
.x5f{left:729.388000pt;}
.xca{left:732.153333pt;}
.x60{left:743.973333pt;}
}


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