
/* 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_274523bbe5e2.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_305f906dcefd.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_0c5d3550790b.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_0ab346edd891.woff")format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_6ecf0ee08540.woff")format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_3a01f84afe57.woff")format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url("fonts/font_0006_975a84d0d9dd.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_5adf5bd4f0e4.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_454aa3ce6334.woff")format("woff");}.ff9{font-family:ff9;line-height:1.799000;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_05a5d7261a39.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_ac855cae9845.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_5006056c9433.woff")format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_88a6e3310d6a.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_980e99b99f4b.woff")format("woff");}.ffe{font-family:ffe;line-height:0.926270;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_2b328188ea3f.woff")format("woff");}.fff{font-family:fff;line-height:0.923828;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_283ff56b70ae.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_640d399d0d34.woff")format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_d2db204e4708.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_3f0f7de62842.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_5e3ac61a6ed8.woff")format("woff");}.ff14{font-family:ff14;line-height:1.003906;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_f10197b442b4.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_3f0f7de62842.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_5e3ac61a6ed8.woff")format("woff");}.ff17{font-family:ff17;line-height:1.003906;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_f10197b442b4.woff")format("woff");}.ff18{font-family:ff18;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:ff19;src:url("fonts/font_0024_3f0f7de62842.woff")format("woff");}.ff19{font-family:ff19;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:ff1a;src:url("fonts/font_0025_6ee11454725d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.003906;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_9d085ffb98d6.woff")format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url("fonts/font_0027_7252102e5d78.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.923828;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);}
.mf{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);}
.m11{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);}
.m7{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);}
.m25{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);}
.m29{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);}
.m1b{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);}
.m22{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);}
.mb{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);}
.m23{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);}
.m24{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);}
.m27{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);}
.m1a{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);}
.m28{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);}
.m1{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);}
.m15{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);}
.m1c{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);}
.m12{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);}
.me{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);}
.m26{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);}
.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);}
.m8{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);}
.m1e{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);}
.m21{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);}
.m13{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);}
.m1d{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);}
.m3{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);}
.m16{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);}
.m18{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);}
.m5{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);}
.m1f{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);}
.m14{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);}
.m20{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);}
.m17{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);}
.ma{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);}
.m10{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);}
.m6{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);}
.m19{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);}
.m9{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);}
.mc{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);}
.m2{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.vb{vertical-align:-12.251088px;}
.v6{vertical-align:-10.464000px;}
.v5{vertical-align:-8.964000px;}
.vf{vertical-align:-2.519028px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.519028px;}
.v4{vertical-align:10.920000px;}
.vc{vertical-align:12.240000px;}
.v10{vertical-align:14.760000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:25.716000px;}
.v9{vertical-align:39.846000px;}
.ve{vertical-align:47.879568px;}
.va{vertical-align:49.968000px;}
.v7{vertical-align:66.384000px;}
.ls7f{letter-spacing:-0.324000px;}
.ls7d{letter-spacing:-0.270540px;}
.ls7c{letter-spacing:-0.246492px;}
.ls82{letter-spacing:-0.198396px;}
.ls50{letter-spacing:-0.186372px;}
.ls53{letter-spacing:-0.174348px;}
.ls67{letter-spacing:-0.162324px;}
.ls83{letter-spacing:-0.156312px;}
.ls5e{letter-spacing:-0.150300px;}
.ls79{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.138276px;}
.ls65{letter-spacing:-0.132264px;}
.ls80{letter-spacing:-0.126252px;}
.ls63{letter-spacing:-0.120240px;}
.ls5c{letter-spacing:-0.108216px;}
.ls62{letter-spacing:-0.102204px;}
.ls4f{letter-spacing:-0.096192px;}
.ls59{letter-spacing:-0.090180px;}
.ls78{letter-spacing:-0.084168px;}
.lsc0{letter-spacing:-0.081000px;}
.lsa3{letter-spacing:-0.079960px;}
.lsa6{letter-spacing:-0.078660px;}
.ls64{letter-spacing:-0.078156px;}
.ls51{letter-spacing:-0.072144px;}
.lsa9{letter-spacing:-0.071543px;}
.lsac{letter-spacing:-0.070380px;}
.lsa2{letter-spacing:-0.068537px;}
.ls81{letter-spacing:-0.066132px;}
.lsc2{letter-spacing:-0.062100px;}
.lsa8{letter-spacing:-0.061322px;}
.ls4d{letter-spacing:-0.060120px;}
.ls52{letter-spacing:-0.048096px;}
.ls55{letter-spacing:-0.042120px;}
.ls54{letter-spacing:-0.042084px;}
.ls60{letter-spacing:-0.036072px;}
.lsa4{letter-spacing:-0.034268px;}
.lsaa{letter-spacing:-0.030661px;}
.ls69{letter-spacing:-0.030060px;}
.ls77{letter-spacing:-0.027000px;}
.lsa5{letter-spacing:-0.025650px;}
.ls5a{letter-spacing:-0.025272px;}
.ls5b{letter-spacing:-0.024048px;}
.lsab{letter-spacing:-0.022950px;}
.ls61{letter-spacing:-0.018036px;}
.lsa1{letter-spacing:-0.017134px;}
.lsa7{letter-spacing:-0.015331px;}
.ls4e{letter-spacing:-0.012024px;}
.ls68{letter-spacing:-0.006012px;}
.ls76{letter-spacing:-0.005400px;}
.lsbf{letter-spacing:-0.004050px;}
.ls10{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000017px;}
.lsc3{letter-spacing:0.000253px;}
.lsaf{letter-spacing:0.000612px;}
.lscc{letter-spacing:0.000800px;}
.ls8{letter-spacing:0.001952px;}
.ls19{letter-spacing:0.002522px;}
.lsd2{letter-spacing:0.002618px;}
.lsb{letter-spacing:0.002728px;}
.lsd1{letter-spacing:0.002872px;}
.ls7{letter-spacing:0.003488px;}
.lsb6{letter-spacing:0.004050px;}
.ls3{letter-spacing:0.004766px;}
.lsc7{letter-spacing:0.004800px;}
.ls98{letter-spacing:0.005110px;}
.ls8a{letter-spacing:0.005711px;}
.ls6e{letter-spacing:0.006012px;}
.lsba{letter-spacing:0.008100px;}
.ls49{letter-spacing:0.012024px;}
.lsb5{letter-spacing:0.012150px;}
.ls9b{letter-spacing:0.013770px;}
.ls8d{letter-spacing:0.015390px;}
.lsbd{letter-spacing:0.016200px;}
.ls4a{letter-spacing:0.018036px;}
.ls39{letter-spacing:0.018828px;}
.lsb4{letter-spacing:0.020250px;}
.ls6d{letter-spacing:0.021600px;}
.ls99{letter-spacing:0.022950px;}
.ls70{letter-spacing:0.024048px;}
.ls41{letter-spacing:0.024552px;}
.lsb2{letter-spacing:0.025137px;}
.ls8b{letter-spacing:0.025650px;}
.ls6a{letter-spacing:0.027000px;}
.ls9f{letter-spacing:0.027540px;}
.ls3f{letter-spacing:0.027768px;}
.lsb9{letter-spacing:0.028350px;}
.ls93{letter-spacing:0.028489px;}
.ls48{letter-spacing:0.030060px;}
.ls91{letter-spacing:0.030780px;}
.ls85{letter-spacing:0.031840px;}
.ls30{letter-spacing:0.033516px;}
.ls96{letter-spacing:0.035771px;}
.ls7b{letter-spacing:0.036000px;}
.ls4b{letter-spacing:0.036072px;}
.ls6c{letter-spacing:0.037800px;}
.ls88{letter-spacing:0.039980px;}
.lsb8{letter-spacing:0.040500px;}
.ls97{letter-spacing:0.040882px;}
.ls3d{letter-spacing:0.040896px;}
.ls9a{letter-spacing:0.041310px;}
.ls40{letter-spacing:0.042084px;}
.ls6b{letter-spacing:0.043200px;}
.ls89{letter-spacing:0.045691px;}
.ls9d{letter-spacing:0.045900px;}
.ls95{letter-spacing:0.045992px;}
.ls8c{letter-spacing:0.046170px;}
.ls46{letter-spacing:0.048096px;}
.lsbc{letter-spacing:0.048600px;}
.ls8f{letter-spacing:0.051300px;}
.ls87{letter-spacing:0.051403px;}
.ls32{letter-spacing:0.054108px;}
.ls71{letter-spacing:0.057600px;}
.ls6f{letter-spacing:0.060120px;}
.ls47{letter-spacing:0.066132px;}
.ls44{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.072144px;}
.ls74{letter-spacing:0.075600px;}
.ls7e{letter-spacing:0.078156px;}
.ls4c{letter-spacing:0.080280px;}
.ls45{letter-spacing:0.084168px;}
.lsbb{letter-spacing:0.089100px;}
.ls72{letter-spacing:0.090180px;}
.lsb7{letter-spacing:0.093150px;}
.ls34{letter-spacing:0.096192px;}
.ls9c{letter-spacing:0.105570px;}
.ls42{letter-spacing:0.108000px;}
.ls7a{letter-spacing:0.111600px;}
.lsc1{letter-spacing:0.113400px;}
.ls8e{letter-spacing:0.117990px;}
.ls5d{letter-spacing:0.118800px;}
.ls75{letter-spacing:0.120240px;}
.ls9e{letter-spacing:0.123930px;}
.ls73{letter-spacing:0.124200px;}
.lsb3{letter-spacing:0.129276px;}
.lsb1{letter-spacing:0.136458px;}
.ls3c{letter-spacing:0.138276px;}
.ls90{letter-spacing:0.138510px;}
.ls3e{letter-spacing:0.144000px;}
.ls94{letter-spacing:0.146513px;}
.ls92{letter-spacing:0.154652px;}
.ls66{letter-spacing:0.156312px;}
.ls86{letter-spacing:0.163750px;}
.ls31{letter-spacing:0.172368px;}
.ls84{letter-spacing:0.172847px;}
.ls2f{letter-spacing:0.181944px;}
.lsa{letter-spacing:0.503764px;}
.lsd{letter-spacing:0.526090px;}
.ls14{letter-spacing:0.542815px;}
.ls15{letter-spacing:0.548815px;}
.ls1d{letter-spacing:0.568601px;}
.lsb0{letter-spacing:0.568766px;}
.ls1b{letter-spacing:0.740012px;}
.ls20{letter-spacing:0.826741px;}
.ls27{letter-spacing:1.320583px;}
.ls26{letter-spacing:2.020741px;}
.ls29{letter-spacing:2.222725px;}
.ls33{letter-spacing:2.612520px;}
.lse{letter-spacing:2.988600px;}
.ls1c{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls16{letter-spacing:3.553200px;}
.ls13{letter-spacing:3.559200px;}
.ls37{letter-spacing:3.600360px;}
.ls11{letter-spacing:3.733200px;}
.ls12{letter-spacing:3.739200px;}
.ls23{letter-spacing:4.303142px;}
.ls56{letter-spacing:8.007984px;}
.ls0{letter-spacing:10.461300px;}
.lsf{letter-spacing:11.954850px;}
.ls22{letter-spacing:12.489483px;}
.ls2b{letter-spacing:12.492783px;}
.lsd4{letter-spacing:12.895298px;}
.ls24{letter-spacing:13.042741px;}
.ls57{letter-spacing:13.046040px;}
.ls28{letter-spacing:13.086783px;}
.lsd5{letter-spacing:13.103461px;}
.lscd{letter-spacing:13.207880px;}
.ls58{letter-spacing:13.274496px;}
.lsd3{letter-spacing:13.383733px;}
.lsc5{letter-spacing:13.448400px;}
.lscf{letter-spacing:13.450903px;}
.lsc9{letter-spacing:13.454400px;}
.lsca{letter-spacing:13.513665px;}
.ls38{letter-spacing:13.569084px;}
.lsc6{letter-spacing:13.768047px;}
.lsd6{letter-spacing:14.697459px;}
.lsad{letter-spacing:14.941580px;}
.lsae{letter-spacing:14.944200px;}
.ls4{letter-spacing:14.945108px;}
.ls21{letter-spacing:15.355200px;}
.ls25{letter-spacing:15.360783px;}
.ls18{letter-spacing:15.663483px;}
.ls17{letter-spacing:15.688200px;}
.ls2a{letter-spacing:15.928457px;}
.ls36{letter-spacing:15.932520px;}
.lsc{letter-spacing:16.434600px;}
.lsc4{letter-spacing:16.440600px;}
.ls35{letter-spacing:16.448832px;}
.lsd0{letter-spacing:16.604238px;}
.lsc8{letter-spacing:16.676400px;}
.ls3a{letter-spacing:16.967160px;}
.lsa0{letter-spacing:17.929200px;}
.ls2e{letter-spacing:17.929771px;}
.ls1e{letter-spacing:18.086012px;}
.ls1a{letter-spacing:18.679200px;}
.lsce{letter-spacing:21.050400px;}
.lscb{letter-spacing:22.356282px;}
.ls1f{letter-spacing:25.239483px;}
.ls2{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.355200px;}
.ls3b{letter-spacing:544.410648px;}
.lsbe{letter-spacing:636.729417px;}
.ls2c{letter-spacing:650.923771px;}
.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;}
}
.ws11{word-spacing:-74.110932px;}
.ws8d{word-spacing:-60.120000px;}
.ws153{word-spacing:-40.500000px;}
.ws8c{word-spacing:-36.000000px;}
.wsce{word-spacing:-15.750000px;}
.ws88{word-spacing:-15.168276px;}
.wscc{word-spacing:-15.108156px;}
.ws8a{word-spacing:-15.030000px;}
.ws15{word-spacing:-14.943900px;}
.wsd0{word-spacing:-13.500000px;}
.wsd1{word-spacing:-13.449600px;}
.ws84{word-spacing:-13.226400px;}
.ws86{word-spacing:-13.136220px;}
.ws113{word-spacing:-12.825000px;}
.ws82{word-spacing:-12.151944px;}
.ws83{word-spacing:-11.970000px;}
.ws33{word-spacing:-11.955150px;}
.ws111{word-spacing:-11.544347px;}
.ws11a{word-spacing:-11.475000px;}
.ws112{word-spacing:-11.371500px;}
.ws13{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws118{word-spacing:-10.329152px;}
.ws154{word-spacing:-10.238400px;}
.ws119{word-spacing:-10.174500px;}
.ws151{word-spacing:-10.125000px;}
.ws85{word-spacing:-9.224280px;}
.ws8b{word-spacing:-9.118800px;}
.ws14f{word-spacing:-9.113958px;}
.wsca{word-spacing:-9.111600px;}
.wscf{word-spacing:-9.057600px;}
.wscb{word-spacing:-9.036000px;}
.ws89{word-spacing:-9.000000px;}
.ws150{word-spacing:-8.977500px;}
.wsc9{word-spacing:-8.856000px;}
.wscd{word-spacing:-8.676000px;}
.ws114{word-spacing:-7.787340px;}
.ws11b{word-spacing:-6.967620px;}
.ws152{word-spacing:-6.210000px;}
.ws155{word-spacing:-6.147900px;}
.wsb4{word-spacing:-3.408804px;}
.wsb5{word-spacing:-3.390768px;}
.ws12b{word-spacing:-3.381149px;}
.ws68{word-spacing:-3.347434px;}
.ws131{word-spacing:-3.298590px;}
.wsc1{word-spacing:-3.180348px;}
.ws141{word-spacing:-3.025238px;}
.ws14d{word-spacing:-2.988780px;}
.ws147{word-spacing:-2.951370px;}
.ws132{word-spacing:-2.939490px;}
.ws130{word-spacing:-2.924100px;}
.ws1ae{word-spacing:-2.797517px;}
.wsf7{word-spacing:-2.771532px;}
.wsa6{word-spacing:-2.765520px;}
.wsf8{word-spacing:-2.759508px;}
.ws17c{word-spacing:-2.749678px;}
.ws60{word-spacing:-2.689902px;}
.ws129{word-spacing:-2.655801px;}
.ws14c{word-spacing:-2.630126px;}
.ws148{word-spacing:-2.630070px;}
.ws146{word-spacing:-2.616300px;}
.ws128{word-spacing:-2.615821px;}
.ws62{word-spacing:-2.570351px;}
.ws14b{word-spacing:-2.510575px;}
.ws5b{word-spacing:-2.450800px;}
.ws4b{word-spacing:-2.391024px;}
.ws140{word-spacing:-2.376243px;}
.ws19a{word-spacing:-2.367130px;}
.ws13f{word-spacing:-2.340472px;}
.ws5e{word-spacing:-2.331248px;}
.ws8e{word-spacing:-2.259533px;}
.ws56{word-spacing:-2.032370px;}
.ws8f{word-spacing:-1.990541px;}
.ws43{word-spacing:-1.972595px;}
.ws44{word-spacing:-1.912819px;}
.ws15f{word-spacing:-1.773900px;}
.ws161{word-spacing:-1.757700px;}
.ws160{word-spacing:-1.749600px;}
.ws14e{word-spacing:-1.733492px;}
.wsfd{word-spacing:-1.701396px;}
.ws81{word-spacing:-1.673717px;}
.ws125{word-spacing:-1.667729px;}
.wsfe{word-spacing:-1.665324px;}
.wsaf{word-spacing:-1.605204px;}
.wsff{word-spacing:-1.599192px;}
.ws13c{word-spacing:-1.492178px;}
.ws28{word-spacing:-1.315063px;}
.ws1d{word-spacing:-1.183565px;}
.ws7{word-spacing:-1.171598px;}
.ws98{word-spacing:-1.166328px;}
.ws6d{word-spacing:-1.135736px;}
.ws3e{word-spacing:-1.075961px;}
.ws94{word-spacing:-1.046088px;}
.ws9{word-spacing:-1.046070px;}
.wsae{word-spacing:-0.973944px;}
.ws1a6{word-spacing:-0.968371px;}
.ws93{word-spacing:-0.931860px;}
.ws126{word-spacing:-0.873844px;}
.ws127{word-spacing:-0.862421px;}
.ws24{word-spacing:-0.860774px;}
.ws40{word-spacing:-0.836858px;}
.ws13d{word-spacing:-0.781861px;}
.ws3f{word-spacing:-0.777083px;}
.ws13e{word-spacing:-0.771640px;}
.ws1b2{word-spacing:-0.753178px;}
.ws7d{word-spacing:-0.717307px;}
.ws1a5{word-spacing:-0.699379px;}
.ws95{word-spacing:-0.685368px;}
.ws55{word-spacing:-0.657532px;}
.ws100{word-spacing:-0.655308px;}
.ws124{word-spacing:-0.639677px;}
.ws102{word-spacing:-0.619236px;}
.ws11d{word-spacing:-0.597756px;}
.ws13b{word-spacing:-0.572342px;}
.ws101{word-spacing:-0.553104px;}
.ws1b3{word-spacing:-0.537984px;}
.ws2a{word-spacing:-0.537980px;}
.ws1b5{word-spacing:-0.484186px;}
.ws34{word-spacing:-0.418429px;}
.ws110{word-spacing:-0.390780px;}
.ws46{word-spacing:-0.358654px;}
.wsf5{word-spacing:-0.342684px;}
.wsd8{word-spacing:-0.336672px;}
.ws18d{word-spacing:-0.322790px;}
.wsea{word-spacing:-0.312624px;}
.ws36{word-spacing:-0.298878px;}
.ws90{word-spacing:-0.272916px;}
.ws1c{word-spacing:-0.268992px;}
.ws92{word-spacing:-0.263340px;}
.ws11e{word-spacing:-0.259270px;}
.ws96{word-spacing:-0.258516px;}
.ws120{word-spacing:-0.250173px;}
.ws2b{word-spacing:-0.239102px;}
.ws135{word-spacing:-0.231979px;}
.wsa2{word-spacing:-0.228456px;}
.ws137{word-spacing:-0.223839px;}
.ws21{word-spacing:-0.215194px;}
.ws15c{word-spacing:-0.204687px;}
.ws99{word-spacing:-0.198396px;}
.ws15e{word-spacing:-0.197505px;}
.wsb7{word-spacing:-0.192384px;}
.ws39{word-spacing:-0.179327px;}
.ws184{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.124488px;}
.ws41{word-spacing:-0.119551px;}
.ws11f{word-spacing:-0.118264px;}
.ws19{word-spacing:-0.107597px;}
.ws136{word-spacing:-0.105815px;}
.ws15d{word-spacing:-0.093366px;}
.ws14{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws7b{word-spacing:-0.003703px;}
.ws1{word-spacing:0.000000px;}
.wsa4{word-spacing:0.006012px;}
.wse8{word-spacing:0.030060px;}
.ws107{word-spacing:0.036072px;}
.wsb6{word-spacing:0.042084px;}
.ws16a{word-spacing:0.044550px;}
.ws20{word-spacing:0.053798px;}
.wsf4{word-spacing:0.054108px;}
.ws38{word-spacing:0.059776px;}
.ws142{word-spacing:0.076653px;}
.wse6{word-spacing:0.078156px;}
.ws16b{word-spacing:0.085050px;}
.ws12c{word-spacing:0.085671px;}
.ws16d{word-spacing:0.093150px;}
.ws10f{word-spacing:0.102600px;}
.ws17{word-spacing:0.107597px;}
.wsdb{word-spacing:0.108216px;}
.ws14a{word-spacing:0.110160px;}
.ws16c{word-spacing:0.117450px;}
.ws4a{word-spacing:0.119551px;}
.wsc5{word-spacing:0.120240px;}
.ws134{word-spacing:0.123120px;}
.ws169{word-spacing:0.125550px;}
.wsa5{word-spacing:0.126252px;}
.ws10d{word-spacing:0.135000px;}
.ws9a{word-spacing:0.138276px;}
.ws149{word-spacing:0.151470px;}
.ws10e{word-spacing:0.156600px;}
.ws158{word-spacing:0.161395px;}
.wse7{word-spacing:0.168336px;}
.ws133{word-spacing:0.169290px;}
.ws10c{word-spacing:0.178200px;}
.ws6a{word-spacing:0.179327px;}
.ws97{word-spacing:0.186372px;}
.ws1a{word-spacing:0.215194px;}
.wsa3{word-spacing:0.228456px;}
.ws35{word-spacing:0.239102px;}
.ws9b{word-spacing:0.264528px;}
.ws1e{word-spacing:0.268992px;}
.wsbc{word-spacing:0.294588px;}
.ws37{word-spacing:0.298878px;}
.ws181{word-spacing:0.322790px;}
.ws47{word-spacing:0.358654px;}
.ws106{word-spacing:0.360720px;}
.wsef{word-spacing:0.366732px;}
.ws1f{word-spacing:0.376589px;}
.ws167{word-spacing:0.376650px;}
.ws168{word-spacing:0.396900px;}
.ws165{word-spacing:0.405000px;}
.ws173{word-spacing:0.418429px;}
.wsb0{word-spacing:0.420840px;}
.wsb1{word-spacing:0.438876px;}
.wsed{word-spacing:0.462924px;}
.ws105{word-spacing:0.468936px;}
.ws166{word-spacing:0.486000px;}
.ws1af{word-spacing:0.537984px;}
.wsee{word-spacing:0.541080px;}
.ws64{word-spacing:0.566700px;}
.ws191{word-spacing:0.645581px;}
.ws3c{word-spacing:0.657532px;}
.ws17f{word-spacing:0.699379px;}
.wsab{word-spacing:0.745488px;}
.wsf2{word-spacing:0.781560px;}
.ws49{word-spacing:0.836858px;}
.ws1b9{word-spacing:0.860774px;}
.ws66{word-spacing:0.896634px;}
.ws1bc{word-spacing:0.914573px;}
.wsf1{word-spacing:0.937872px;}
.wsbb{word-spacing:0.943884px;}
.ws45{word-spacing:0.956410px;}
.ws8{word-spacing:0.962384px;}
.ws1b4{word-spacing:0.968371px;}
.wsbd{word-spacing:0.973944px;}
.ws30{word-spacing:1.016185px;}
.ws172{word-spacing:1.075961px;}
.ws1b7{word-spacing:1.129766px;}
.ws3d{word-spacing:1.135736px;}
.ws108{word-spacing:1.136268px;}
.ws164{word-spacing:1.174500px;}
.ws180{word-spacing:1.183565px;}
.wsd9{word-spacing:1.190376px;}
.ws162{word-spacing:1.194750px;}
.ws4e{word-spacing:1.195512px;}
.ws109{word-spacing:1.208412px;}
.ws163{word-spacing:1.210950px;}
.ws185{word-spacing:1.237363px;}
.ws13a{word-spacing:1.251999px;}
.ws1be{word-spacing:1.291162px;}
.ws138{word-spacing:1.313321px;}
.ws139{word-spacing:1.318432px;}
.ws7c{word-spacing:1.374839px;}
.ws123{word-spacing:1.399293px;}
.ws7f{word-spacing:1.434614px;}
.wsda{word-spacing:1.454904px;}
.ws121{word-spacing:1.467830px;}
.ws122{word-spacing:1.473541px;}
.ws80{word-spacing:1.494390px;}
.ws11c{word-spacing:1.554166px;}
.wsf6{word-spacing:1.593180px;}
.ws15b{word-spacing:1.667750px;}
.ws63{word-spacing:1.733492px;}
.ws7a{word-spacing:1.853044px;}
.wsb9{word-spacing:1.869732px;}
.wsf0{word-spacing:1.881756px;}
.ws182{word-spacing:1.882944px;}
.wsb8{word-spacing:1.899792px;}
.wsdc{word-spacing:1.923840px;}
.ws1a3{word-spacing:1.936742px;}
.wsd5{word-spacing:1.938600px;}
.wsd4{word-spacing:1.954800px;}
.wsdd{word-spacing:1.971936px;}
.ws16e{word-spacing:1.972595px;}
.ws16f{word-spacing:2.032370px;}
.ws50{word-spacing:2.092146px;}
.ws51{word-spacing:2.151922px;}
.wsbe{word-spacing:2.176344px;}
.wsf3{word-spacing:2.200392px;}
.ws2c{word-spacing:2.211697px;}
.wsaa{word-spacing:2.248488px;}
.wsbf{word-spacing:2.254500px;}
.wsa9{word-spacing:2.290572px;}
.ws18{word-spacing:2.313331px;}
.ws31{word-spacing:2.331248px;}
.ws5f{word-spacing:2.450800px;}
.ws2{word-spacing:2.509596px;}
.wsd3{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws12a{word-spacing:2.513016px;}
.ws2e{word-spacing:2.570351px;}
.wsb3{word-spacing:2.627244px;}
.wsb2{word-spacing:2.645280px;}
.ws52{word-spacing:2.689902px;}
.ws19b{word-spacing:2.693489px;}
.ws104{word-spacing:2.765520px;}
.ws159{word-spacing:2.797517px;}
.ws103{word-spacing:2.807604px;}
.ws15a{word-spacing:2.851315px;}
.ws4d{word-spacing:2.869229px;}
.ws22{word-spacing:2.905114px;}
.wsac{word-spacing:2.915820px;}
.ws117{word-spacing:2.958912px;}
.ws4f{word-spacing:2.988780px;}
.wsf9{word-spacing:2.999988px;}
.ws1a1{word-spacing:3.012710px;}
.ws4c{word-spacing:3.048556px;}
.wsc8{word-spacing:3.108331px;}
.ws157{word-spacing:3.174106px;}
.ws1a0{word-spacing:3.219427px;}
.ws1a4{word-spacing:3.221366px;}
.ws1bf{word-spacing:3.222787px;}
.ws18b{word-spacing:3.224083px;}
.ws171{word-spacing:3.227882px;}
.wsfc{word-spacing:3.240468px;}
.ws17e{word-spacing:3.281702px;}
.ws6c{word-spacing:3.287658px;}
.wsba{word-spacing:3.294576px;}
.ws187{word-spacing:3.335501px;}
.ws3a{word-spacing:3.347434px;}
.ws69{word-spacing:3.466985px;}
.ws144{word-spacing:3.479220px;}
.ws145{word-spacing:3.492990px;}
.ws156{word-spacing:3.496896px;}
.ws143{word-spacing:3.497580px;}
.ws3b{word-spacing:3.526760px;}
.ws198{word-spacing:3.530201px;}
.ws25{word-spacing:3.586536px;}
.ws58{word-spacing:3.646312px;}
.ws1ab{word-spacing:3.658291px;}
.ws48{word-spacing:3.706087px;}
.wse9{word-spacing:3.733452px;}
.ws176{word-spacing:3.765863px;}
.ws183{word-spacing:3.819686px;}
.ws74{word-spacing:3.825638px;}
.ws79{word-spacing:3.885414px;}
.ws12e{word-spacing:3.888540px;}
.ws12f{word-spacing:3.903930px;}
.ws12d{word-spacing:3.909060px;}
.ws78{word-spacing:3.913424px;}
.ws2d{word-spacing:4.004965px;}
.ws23{word-spacing:4.088678px;}
.ws177{word-spacing:4.124516px;}
.ws53{word-spacing:4.184292px;}
.ws54{word-spacing:4.244068px;}
.ws19e{word-spacing:4.303872px;}
.wse2{word-spacing:4.328640px;}
.ws29{word-spacing:4.363619px;}
.wse1{word-spacing:4.364712px;}
.ws17d{word-spacing:4.411469px;}
.wse0{word-spacing:4.418820px;}
.ws7e{word-spacing:4.423394px;}
.wsde{word-spacing:4.436856px;}
.ws6b{word-spacing:4.483170px;}
.wsdf{word-spacing:4.502988px;}
.wsc0{word-spacing:4.509000px;}
.ws17b{word-spacing:4.662497px;}
.wsa8{word-spacing:4.719420px;}
.wsec{word-spacing:4.737456px;}
.wseb{word-spacing:4.755492px;}
.wse5{word-spacing:4.761504px;}
.wsf{word-spacing:4.770079px;}
.wsc6{word-spacing:4.782048px;}
.ws42{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.wsa7{word-spacing:4.875732px;}
.wse3{word-spacing:4.905792px;}
.wse4{word-spacing:5.014008px;}
.ws67{word-spacing:5.140702px;}
.wsc7{word-spacing:5.200477px;}
.ws116{word-spacing:5.326042px;}
.ws17a{word-spacing:5.379804px;}
.ws75{word-spacing:5.439580px;}
.ws179{word-spacing:5.499355px;}
.ws73{word-spacing:5.678682px;}
.ws115{word-spacing:5.702630px;}
.wsa1{word-spacing:5.777532px;}
.ws72{word-spacing:5.798233px;}
.ws1aa{word-spacing:5.810227px;}
.wsc4{word-spacing:5.885748px;}
.wsa0{word-spacing:5.999976px;}
.ws1a8{word-spacing:6.025421px;}
.ws174{word-spacing:6.156887px;}
.ws9e{word-spacing:6.168312px;}
.wsad{word-spacing:6.228432px;}
.ws10b{word-spacing:6.270516px;}
.ws70{word-spacing:6.276438px;}
.ws9f{word-spacing:6.300576px;}
.ws10a{word-spacing:6.306588px;}
.ws71{word-spacing:6.336214px;}
.ws59{word-spacing:6.455765px;}
.wsc2{word-spacing:6.504984px;}
.ws175{word-spacing:6.515540px;}
.ws192{word-spacing:6.563405px;}
.ws6f{word-spacing:6.573000px;}
.ws76{word-spacing:6.573622px;}
.wsc3{word-spacing:6.631236px;}
.ws1b8{word-spacing:6.671002px;}
.ws65{word-spacing:6.754643px;}
.ws26{word-spacing:6.874194px;}
.ws27{word-spacing:6.933970px;}
.ws194{word-spacing:7.101389px;}
.wsd2{word-spacing:7.352399px;}
.ws178{word-spacing:7.471950px;}
.ws87{word-spacing:7.506288px;}
.ws5c{word-spacing:7.531726px;}
.ws1a9{word-spacing:7.585574px;}
.wsfb{word-spacing:7.593156px;}
.wsfa{word-spacing:7.677324px;}
.ws6e{word-spacing:7.711052px;}
.ws9c{word-spacing:7.755480px;}
.wsd{word-spacing:7.782761px;}
.ws9d{word-spacing:7.833636px;}
.ws197{word-spacing:7.854566px;}
.ws57{word-spacing:8.249033px;}
.ws5d{word-spacing:8.787013px;}
.ws196{word-spacing:8.930534px;}
.ws170{word-spacing:10.042301px;}
.ws3{word-spacing:10.414554px;}
.ws2f{word-spacing:11.775793px;}
.ws32{word-spacing:11.902533px;}
.wsd7{word-spacing:12.036600px;}
.wsd6{word-spacing:12.063600px;}
.wsb{word-spacing:12.176255px;}
.ws1b6{word-spacing:12.911616px;}
.ws1ad{word-spacing:13.288205px;}
.ws199{word-spacing:13.342003px;}
.ws18a{word-spacing:13.387872px;}
.ws1a2{word-spacing:13.391645px;}
.ws1b0{word-spacing:13.392221px;}
.ws189{word-spacing:13.395802px;}
.ws1ba{word-spacing:14.256576px;}
.ws61{word-spacing:14.884124px;}
.ws6{word-spacing:15.481836px;}
.ws77{word-spacing:15.879000px;}
.ws19c{word-spacing:16.085722px;}
.wsc{word-spacing:16.109478px;}
.ws18e{word-spacing:16.354714px;}
.ws19d{word-spacing:16.516109px;}
.ws1b1{word-spacing:16.569907px;}
.ws19f{word-spacing:16.613866px;}
.ws1bb{word-spacing:16.618608px;}
.ws18f{word-spacing:16.619203px;}
.ws193{word-spacing:16.619722px;}
.ws1c1{word-spacing:16.621373px;}
.ws1c0{word-spacing:16.622218px;}
.ws186{word-spacing:16.623706px;}
.ws1ac{word-spacing:16.677504px;}
.ws1a7{word-spacing:16.731302px;}
.ws18c{word-spacing:16.892698px;}
.ws190{word-spacing:17.699674px;}
.ws5a{word-spacing:18.470660px;}
.ws1bd{word-spacing:19.905408px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws188{word-spacing:27.060595px;}
.ws195{word-spacing:38.304461px;}
.ws12{word-spacing:40.036186px;}
._2a{margin-left:-23.300561px;}
._29{margin-left:-20.216221px;}
._19{margin-left:-7.830604px;}
._7{margin-left:-6.635092px;}
._8{margin-left:-5.308087px;}
._0{margin-left:-3.849538px;}
._3{margin-left:-2.301354px;}
._5{margin-left:-1.075961px;}
._1a{width:1.086319px;}
._2{width:2.301354px;}
._6{width:3.682183px;}
._1c{width:7.280532px;}
._21{width:8.876736px;}
._28{width:11.136269px;}
._1{width:12.971268px;}
._22{width:14.178691px;}
._9{width:15.732977px;}
._a{width:17.000294px;}
._e{width:18.351109px;}
._13{width:19.474972px;}
._f{width:20.503031px;}
._12{width:22.057196px;}
._b{width:24.047885px;}
._18{width:25.165528px;}
._c{width:26.486701px;}
._16{width:28.273859px;}
._4{width:30.587087px;}
._15{width:31.681068px;}
._14{width:33.982422px;}
._25{width:35.446931px;}
._24{width:37.359750px;}
._27{width:38.382961px;}
._d{width:39.750774px;}
._1d{width:41.125613px;}
._17{width:43.755739px;}
._2b{width:61.868160px;}
._26{width:88.767360px;}
._10{width:661.177781px;}
._20{width:1526.063679px;}
._1f{width:1729.538836px;}
._1e{width:1933.013993px;}
._1b{width:2034.751572px;}
._23{width:2396.654700px;}
._11{width:2420.564700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(68,79,170);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:24.840000px;}
.fs19{font-size:28.152000px;}
.fs15{font-size:31.464000px;}
.fs5{font-size:35.865600px;}
.fs1a{font-size:35.910000px;}
.fse{font-size:36.000000px;}
.fs1c{font-size:40.500000px;}
.fs16{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:42.120000px;}
.fs8{font-size:43.600200px;}
.fs1b{font-size:45.090000px;}
.fs4{font-size:45.429600px;}
.fs12{font-size:45.486000px;}
.fs18{font-size:45.900000px;}
.fsa{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs17{font-size:51.102000px;}
.fs14{font-size:51.300000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs13{font-size:57.114000px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs10{font-size:63.000000px;}
.fs11{font-size:72.000000px;}
.fs1{font-size:95.258267px;}
.fs3{font-size:107.596800px;}
.y18d{bottom:-556.137172px;}
.y19c{bottom:-504.153172px;}
.y19b{bottom:-482.778172px;}
.y1c2{bottom:-176.340038px;}
.y15d{bottom:-117.341100px;}
.y1c9{bottom:-102.090038px;}
.y11e{bottom:-78.720600px;}
.y1c8{bottom:-72.322875px;}
.y180{bottom:-61.721100px;}
.y1c7{bottom:-59.295375px;}
.y1a3{bottom:-58.098435px;}
.y1c6{bottom:-46.335375px;}
.y19a{bottom:-45.274245px;}
.y1c5{bottom:-33.307538px;}
.y199{bottom:-28.687672px;}
.y17f{bottom:-24.911100px;}
.y1c4{bottom:-20.347538px;}
.y198{bottom:-12.271673px;}
.y1b2{bottom:-11.586435px;}
.y1c3{bottom:-3.540503px;}
.y17e{bottom:-2.319615px;}
.y0{bottom:0.000000px;}
.y145{bottom:2.642547px;}
.y1b1{bottom:7.538565px;}
.y197{bottom:9.021564px;}
.y1c{bottom:17.139061px;}
.y4e{bottom:31.890000px;}
.y14a{bottom:91.665000px;}
.y1bc{bottom:94.425000px;}
.y189{bottom:99.892500px;}
.y20d{bottom:101.812500px;}
.y4d{bottom:103.621500px;}
.y1a{bottom:104.646000px;}
.y149{bottom:110.494500px;}
.y1bb{bottom:113.254500px;}
.y273{bottom:117.280500px;}
.y188{bottom:118.720500px;}
.y20c{bottom:120.642000px;}
.y2b5{bottom:121.762500px;}
.ybe{bottom:121.987500px;}
.y4c{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.yf4{bottom:125.125500px;}
.y8b{bottom:126.471000px;}
.y22e{bottom:128.646000px;}
.y1ba{bottom:129.354000px;}
.y1d1{bottom:130.210500px;}
.y1b9{bottom:132.084000px;}
.y148{bottom:133.807500px;}
.y272{bottom:134.541000px;}
.y2b4{bottom:136.401000px;}
.y187{bottom:137.550000px;}
.y4b{bottom:138.550500px;}
.y2b3{bottom:139.023000px;}
.y20b{bottom:139.471500px;}
.y18{bottom:140.422500px;}
.ybd{bottom:140.817000px;}
.y4a{bottom:141.279000px;}
.yf3{bottom:143.955000px;}
.y8a{bottom:145.300500px;}
.y1d0{bottom:146.821500px;}
.y1cf{bottom:149.443500px;}
.y1b8{bottom:150.913500px;}
.y271{bottom:151.800000px;}
.y22d{bottom:155.185500px;}
.y2b2{bottom:156.283500px;}
.y186{bottom:156.379500px;}
.y20a{bottom:158.301000px;}
.y17{bottom:158.310000px;}
.ybc{bottom:159.646500px;}
.y49{bottom:160.108500px;}
.yf2{bottom:162.784500px;}
.y147{bottom:163.066500px;}
.y89{bottom:164.130000px;}
.y270{bottom:166.438500px;}
.y1ce{bottom:168.676500px;}
.y26f{bottom:169.060500px;}
.y1b7{bottom:169.743000px;}
.y2b1{bottom:170.922000px;}
.y22c{bottom:172.759500px;}
.y2b0{bottom:173.544000px;}
.y209{bottom:174.400500px;}
.y185{bottom:175.209000px;}
.ybb{bottom:175.746000px;}
.y16{bottom:176.199000px;}
.y208{bottom:177.130500px;}
.yba{bottom:178.476000px;}
.y48{bottom:178.938000px;}
.yf1{bottom:181.614000px;}
.y146{bottom:182.299500px;}
.y88{bottom:182.959500px;}
.y1cd{bottom:185.286000px;}
.y26e{bottom:186.321000px;}
.y1cc{bottom:187.909500px;}
.y1b6{bottom:188.572500px;}
.y22b{bottom:190.335000px;}
.y2af{bottom:190.804500px;}
.y184{bottom:194.038500px;}
.y15{bottom:194.086500px;}
.y47{bottom:197.767500px;}
.yf0{bottom:200.443500px;}
.y87{bottom:201.789000px;}
.y26d{bottom:203.581500px;}
.y1cb{bottom:204.519000px;}
.y11b{bottom:204.728550px;}
.y1ca{bottom:207.142500px;}
.y1b5{bottom:207.402000px;}
.y2ae{bottom:208.065000px;}
.y14{bottom:211.974000px;}
.y183{bottom:212.868000px;}
.y46{bottom:216.597000px;}
.y22a{bottom:216.874500px;}
.yef{bottom:219.273000px;}
.y86{bottom:220.618500px;}
.y26c{bottom:220.842000px;}
.y2ad{bottom:225.325500px;}
.y1bf{bottom:229.572000px;}
.y13{bottom:229.863000px;}
.y1b4{bottom:230.715000px;}
.y207{bottom:234.067500px;}
.y229{bottom:234.448500px;}
.yb9{bottom:235.413000px;}
.y45{bottom:235.426500px;}
.y182{bottom:236.181000px;}
.y85{bottom:236.718000px;}
.yee{bottom:238.102500px;}
.y84{bottom:239.446500px;}
.y2ac{bottom:242.586000px;}
.y206{bottom:252.897000px;}
.yb7{bottom:254.242500px;}
.y44{bottom:254.256000px;}
.y26b{bottom:255.363000px;}
.y83{bottom:255.547500px;}
.yed{bottom:256.932000px;}
.y82{bottom:258.276000px;}
.yb8{bottom:259.666500px;}
.y2ab{bottom:259.846500px;}
.y228{bottom:260.989500px;}
.y1b3{bottom:261.142500px;}
.y181{bottom:266.608500px;}
.y205{bottom:268.996500px;}
.y203{bottom:271.726500px;}
.y26a{bottom:272.623500px;}
.yb6{bottom:273.072000px;}
.y43{bottom:273.085500px;}
.yec{bottom:275.761500px;}
.y81{bottom:277.105500px;}
.y204{bottom:277.150500px;}
.y144{bottom:279.932520px;}
.y1a0{bottom:283.571618px;}
.y227{bottom:287.530500px;}
.y269{bottom:289.884000px;}
.y202{bottom:290.556000px;}
.yb5{bottom:291.901500px;}
.y42{bottom:291.915000px;}
.y15a{bottom:292.027050px;}
.y2aa{bottom:294.366000px;}
.yeb{bottom:294.591000px;}
.y80{bottom:295.935000px;}
.y143{bottom:299.191962px;}
.y17d{bottom:299.539899px;}
.y12{bottom:300.154500px;}
.y268{bottom:304.521000px;}
.y267{bottom:307.143000px;}
.yb4{bottom:308.001000px;}
.y201{bottom:309.385500px;}
.yb3{bottom:310.731000px;}
.y41{bottom:310.744500px;}
.y2a9{bottom:311.626500px;}
.yea{bottom:313.420500px;}
.y226{bottom:314.070000px;}
.y7f{bottom:314.764500px;}
.y11{bottom:318.043500px;}
.y142{bottom:318.451404px;}
.y17c{bottom:318.799341px;}
.y196{bottom:323.148564px;}
.y266{bottom:324.403500px;}
.y200{bottom:328.215000px;}
.y2a8{bottom:328.887000px;}
.yb2{bottom:329.560500px;}
.y225{bottom:331.644000px;}
.ye9{bottom:332.250000px;}
.y7e{bottom:333.594000px;}
.y40{bottom:334.057500px;}
.y10{bottom:335.931000px;}
.y141{bottom:337.710846px;}
.y17b{bottom:338.868357px;}
.y265{bottom:339.042000px;}
.y195{bottom:341.445034px;}
.y264{bottom:341.664000px;}
.y2a7{bottom:346.147500px;}
.y1ff{bottom:347.044500px;}
.yb1{bottom:348.390000px;}
.y224{bottom:349.219500px;}
.y7d{bottom:352.423500px;}
.yf{bottom:353.818500px;}
.ye8{bottom:355.563000px;}
.y140{bottom:356.880108px;}
.y263{bottom:358.924500px;}
.y194{bottom:359.741504px;}
.y2a6{bottom:360.784500px;}
.y17a{bottom:361.010016px;}
.y2a5{bottom:363.408000px;}
.y1fe{bottom:365.874000px;}
.y7c{bottom:371.253000px;}
.yb0{bottom:371.701500px;}
.y262{bottom:373.563000px;}
.y223{bottom:375.759000px;}
.y13f{bottom:376.141875px;}
.y261{bottom:376.185000px;}
.y193{bottom:377.952303px;}
.y2a4{bottom:378.045000px;}
.y179{bottom:380.269458px;}
.y2a3{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y1fd{bottom:384.703500px;}
.ye7{bottom:389.187000px;}
.y7b{bottom:390.082500px;}
.yaf{bottom:391.876500px;}
.y222{bottom:393.333000px;}
.y260{bottom:393.445500px;}
.y13e{bottom:395.311137px;}
.y192{bottom:396.248772px;}
.y2a2{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y1b0{bottom:398.989447px;}
.y178{bottom:399.528135px;}
.y1fc{bottom:403.533000px;}
.ye6{bottom:408.015000px;}
.y25f{bottom:408.082500px;}
.y7a{bottom:408.912000px;}
.y3f{bottom:409.207500px;}
.y25e{bottom:410.706000px;}
.y221{bottom:410.907000px;}
.y1af{bottom:413.830065px;}
.y191{bottom:414.459571px;}
.y13d{bottom:414.570579px;}
.y2a1{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.y177{bottom:418.703805px;}
.y1fa{bottom:422.362500px;}
.y25d{bottom:425.343000px;}
.yae{bottom:425.500500px;}
.ye5{bottom:426.844500px;}
.y79{bottom:427.741500px;}
.y1fb{bottom:427.786500px;}
.y25c{bottom:427.966500px;}
.y220{bottom:428.481000px;}
.y1ae{bottom:428.518065px;}
.y2a0{bottom:429.826500px;}
.y29f{bottom:432.448500px;}
.y190{bottom:432.756041px;}
.y13c{bottom:433.830021px;}
.y176{bottom:437.963247px;}
.y1f8{bottom:441.192000px;}
.yac{bottom:444.330000px;}
.yb{bottom:444.798000px;}
.y25b{bottom:445.225500px;}
.ye4{bottom:445.674000px;}
.y21f{bottom:446.056500px;}
.y78{bottom:446.571000px;}
.y3e{bottom:446.596500px;}
.y1f9{bottom:446.616000px;}
.y1ad{bottom:447.569908px;}
.y29e{bottom:449.709000px;}
.yad{bottom:449.754000px;}
.y18f{bottom:451.052511px;}
.y175{bottom:457.222689px;}
.y13b{bottom:457.499265px;}
.y1f7{bottom:460.021500px;}
.y25a{bottom:462.486000px;}
.yaa{bottom:463.159500px;}
.y21e{bottom:463.630500px;}
.ye2{bottom:464.503500px;}
.y77{bottom:465.400500px;}
.y3c{bottom:466.054500px;}
.y29d{bottom:466.969500px;}
.yab{bottom:468.583500px;}
.y18e{bottom:469.264738px;}
.ye3{bottom:469.929000px;}
.y3d{bottom:470.937000px;}
.ya{bottom:471.652500px;}
.y174{bottom:476.391951px;}
.y1f6{bottom:478.851000px;}
.y259{bottom:479.746500px;}
.ya9{bottom:481.989000px;}
.ye1{bottom:483.333000px;}
.y76{bottom:484.230000px;}
.y3a{bottom:485.511000px;}
.y9{bottom:489.540000px;}
.y21d{bottom:490.170000px;}
.y3b{bottom:490.393500px;}
.y11a{bottom:492.076500px;}
.y258{bottom:494.385000px;}
.y13a{bottom:494.758635px;}
.y173{bottom:495.651393px;}
.y257{bottom:497.007000px;}
.y1f5{bottom:497.680500px;}
.ya7{bottom:500.818500px;}
.y29c{bottom:501.490500px;}
.ye0{bottom:502.162500px;}
.y75{bottom:503.059500px;}
.y39{bottom:504.969000px;}
.ya8{bottom:506.242500px;}
.y8{bottom:507.429000px;}
.y21c{bottom:508.215000px;}
.y119{bottom:510.906000px;}
.y139{bottom:513.929958px;}
.y256{bottom:514.267500px;}
.y172{bottom:514.820655px;}
.y1f4{bottom:516.508500px;}
.y29b{bottom:518.751000px;}
.ya5{bottom:519.648000px;}
.ydf{bottom:520.992000px;}
.y18c{bottom:521.248456px;}
.y74{bottom:521.889000px;}
.y37{bottom:524.425500px;}
.ya6{bottom:525.072000px;}
.y7{bottom:525.316500px;}
.y21b{bottom:526.260000px;}
.y38{bottom:529.308000px;}
.y118{bottom:529.735500px;}
.y18b{bottom:530.396828px;}
.y255{bottom:531.528000px;}
.y1f3{bottom:532.609500px;}
.y138{bottom:533.191092px;}
.y1f2{bottom:535.338000px;}
.y29a{bottom:536.011500px;}
.ya4{bottom:538.477500px;}
.y171{bottom:538.580079px;}
.yde{bottom:539.821500px;}
.y73{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.y36{bottom:543.882000px;}
.y21a{bottom:544.305000px;}
.y117{bottom:548.565000px;}
.y254{bottom:548.788500px;}
.y137{bottom:552.450534px;}
.y299{bottom:553.272000px;}
.y1f1{bottom:554.167500px;}
.ya3{bottom:557.307000px;}
.ydd{bottom:558.651000px;}
.y72{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.y219{bottom:562.350000px;}
.y35{bottom:563.340000px;}
.y253{bottom:566.049000px;}
.y116{bottom:567.394500px;}
.y298{bottom:570.531000px;}
.y136{bottom:571.619796px;}
.y170{bottom:575.839449px;}
.ya2{bottom:576.136500px;}
.ydc{bottom:577.480500px;}
.y71{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.y218{bottom:580.395000px;}
.y34{bottom:582.796500px;}
.y252{bottom:583.309500px;}
.y115{bottom:583.494000px;}
.y114{bottom:586.224000px;}
.y297{bottom:587.791500px;}
.y135{bottom:590.879238px;}
.ya1{bottom:594.964500px;}
.y16f{bottom:595.008711px;}
.ydb{bottom:596.310000px;}
.y3{bottom:596.868000px;}
.y70{bottom:597.207000px;}
.y251{bottom:597.946500px;}
.y217{bottom:598.440000px;}
.y250{bottom:600.568500px;}
.y33{bottom:602.253000px;}
.y296{bottom:602.430000px;}
.y295{bottom:605.052000px;}
.y112{bottom:605.053500px;}
.y134{bottom:610.138680px;}
.y113{bottom:610.477500px;}
.y1f0{bottom:611.104500px;}
.y16e{bottom:614.268153px;}
.y2{bottom:614.757000px;}
.yd9{bottom:615.139500px;}
.y6f{bottom:616.036500px;}
.y24f{bottom:617.829000px;}
.ya0{bottom:618.277500px;}
.y294{bottom:619.690500px;}
.yda{bottom:620.565000px;}
.y32{bottom:621.711000px;}
.y293{bottom:622.312500px;}
.y111{bottom:623.883000px;}
.y133{bottom:629.309445px;}
.y1ef{bottom:629.934000px;}
.y24e{bottom:632.467500px;}
.y1{bottom:632.644500px;}
.y16d{bottom:633.438918px;}
.yd7{bottom:633.969000px;}
.y216{bottom:634.417500px;}
.y6e{bottom:634.866000px;}
.y24d{bottom:635.089500px;}
.yd8{bottom:639.393000px;}
.y292{bottom:639.573000px;}
.y31{bottom:641.167500px;}
.y110{bottom:642.712500px;}
.y132{bottom:648.568887px;}
.y1ee{bottom:648.763500px;}
.y24c{bottom:649.728000px;}
.y9f{bottom:651.901500px;}
.y24b{bottom:652.350000px;}
.yd6{bottom:652.798500px;}
.y16c{bottom:652.968756px;}
.y215{bottom:653.247000px;}
.y6d{bottom:653.695500px;}
.y291{bottom:654.210000px;}
.y290{bottom:656.833500px;}
.y159{bottom:658.222500px;}
.y30{bottom:660.625500px;}
.y10f{bottom:666.025500px;}
.y1ed{bottom:667.593000px;}
.y131{bottom:667.739652px;}
.y9e{bottom:668.001000px;}
.y24a{bottom:669.610500px;}
.y9d{bottom:670.731000px;}
.yd5{bottom:671.628000px;}
.y214{bottom:672.076500px;}
.y6c{bottom:672.525000px;}
.y16b{bottom:672.859458px;}
.y28f{bottom:674.094000px;}
.y1c1{bottom:674.227564px;}
.y2f{bottom:680.082000px;}
.y1c0{bottom:681.449963px;}
.y1eb{bottom:686.422500px;}
.y9b{bottom:686.830500px;}
.y249{bottom:686.871000px;}
.y130{bottom:686.999094px;}
.y9c{bottom:687.319500px;}
.y158{bottom:687.727500px;}
.y19f{bottom:687.924000px;}
.y9a{bottom:689.560500px;}
.yd4{bottom:690.457500px;}
.y213{bottom:690.906000px;}
.y6b{bottom:691.354500px;}
.y1ec{bottom:691.846500px;}
.y16a{bottom:692.119458px;}
.y2e{bottom:699.538500px;}
.y10e{bottom:699.649500px;}
.y248{bottom:704.131500px;}
.y1ea{bottom:705.252000px;}
.y99{bottom:705.660000px;}
.y12f{bottom:706.258536px;}
.y157{bottom:706.557000px;}
.y19e{bottom:707.157000px;}
.y98{bottom:708.390000px;}
.y28e{bottom:708.613500px;}
.yd3{bottom:709.287000px;}
.y212{bottom:709.735500px;}
.y6a{bottom:710.184000px;}
.y169{bottom:711.381024px;}
.y10c{bottom:718.479000px;}
.y2d{bottom:718.996500px;}
.y247{bottom:721.392000px;}
.y10d{bottom:723.903000px;}
.y1e9{bottom:724.081500px;}
.y97{bottom:724.489500px;}
.y28d{bottom:725.874000px;}
.y19d{bottom:726.388500px;}
.y96{bottom:727.219500px;}
.y156{bottom:728.116500px;}
.y211{bottom:728.565000px;}
.y1ac{bottom:728.630908px;}
.y68{bottom:729.013500px;}
.y12e{bottom:729.929283px;}
.yd2{bottom:732.600000px;}
.y69{bottom:734.437500px;}
.y168{bottom:735.050268px;}
.y10a{bottom:737.308500px;}
.y2c{bottom:738.453000px;}
.y246{bottom:738.651000px;}
.y28c{bottom:740.512500px;}
.y10b{bottom:742.732500px;}
.y1e8{bottom:742.911000px;}
.y28b{bottom:743.134500px;}
.y95{bottom:743.319000px;}
.y1ab{bottom:745.001434px;}
.y94{bottom:746.049000px;}
.y155{bottom:746.946000px;}
.y210{bottom:747.394500px;}
.y67{bottom:747.843000px;}
.y18a{bottom:751.807500px;}
.y12d{bottom:753.600030px;}
.y245{bottom:755.911500px;}
.y109{bottom:756.138000px;}
.y28a{bottom:757.773000px;}
.y289{bottom:760.395000px;}
.y1aa{bottom:761.371959px;}
.y1e7{bottom:761.740500px;}
.y93{bottom:762.148500px;}
.y92{bottom:764.878500px;}
.y154{bottom:765.775500px;}
.yd1{bottom:766.224000px;}
.y66{bottom:766.671000px;}
.y167{bottom:772.309638px;}
.y244{bottom:773.172000px;}
.y2b{bottom:774.457500px;}
.y108{bottom:774.966000px;}
.y288{bottom:777.655500px;}
.y1a9{bottom:777.665832px;}
.y1e6{bottom:780.570000px;}
.y91{bottom:780.978000px;}
.y90{bottom:783.708000px;}
.y153{bottom:784.605000px;}
.yd0{bottom:785.053500px;}
.y65{bottom:785.500500px;}
.y243{bottom:790.432500px;}
.y2a{bottom:790.596000px;}
.y12c{bottom:790.859958px;}
.y166{bottom:791.479458px;}
.y107{bottom:793.795500px;}
.y1a8{bottom:794.036358px;}
.y287{bottom:794.916000px;}
.y1e5{bottom:796.669500px;}
.y1e4{bottom:799.399500px;}
.y8f{bottom:799.807500px;}
.y8e{bottom:802.537500px;}
.y152{bottom:803.434500px;}
.yce{bottom:803.883000px;}
.y64{bottom:804.330000px;}
.y29{bottom:806.736000px;}
.y242{bottom:807.693000px;}
.ycf{bottom:809.307000px;}
.y12b{bottom:810.119958px;}
.y1a7{bottom:810.330231px;}
.y165{bottom:810.739458px;}
.y286{bottom:812.176500px;}
.y106{bottom:812.625000px;}
.y1e3{bottom:818.229000px;}
.ycd{bottom:822.712500px;}
.y63{bottom:823.159500px;}
.y241{bottom:824.953500px;}
.y8d{bottom:825.850500px;}
.y1a6{bottom:826.700756px;}
.y151{bottom:826.746000px;}
.y28{bottom:827.215500px;}
.y12a{bottom:829.380210px;}
.y285{bottom:829.437000px;}
.y164{bottom:829.997946px;}
.y105{bottom:831.454500px;}
.ycc{bottom:841.540500px;}
.y62{bottom:841.989000px;}
.y240{bottom:842.214000px;}
.y1a5{bottom:843.071282px;}
.y27{bottom:843.355500px;}
.y8c{bottom:846.024000px;}
.y284{bottom:846.697500px;}
.y163{bottom:849.168711px;}
.y104{bottom:850.284000px;}
.y128{bottom:853.409400px;}
.y26{bottom:855.154500px;}
.y127{bottom:856.470297px;}
.y20f{bottom:857.641500px;}
.y61{bottom:858.088500px;}
.y1a4{bottom:859.366432px;}
.y23f{bottom:859.474500px;}
.ycb{bottom:860.370000px;}
.y60{bottom:860.818500px;}
.y283{bottom:863.956500px;}
.y129{bottom:866.549400px;}
.y125{bottom:866.552172px;}
.y162{bottom:868.428153px;}
.y103{bottom:869.113500px;}
.y126{bottom:874.829400px;}
.y1e2{bottom:875.164500px;}
.y25{bottom:875.634000px;}
.y23e{bottom:876.735000px;}
.y282{bottom:878.595000px;}
.yca{bottom:879.199500px;}
.y5f{bottom:879.648000px;}
.y281{bottom:881.217000px;}
.y24{bottom:887.433000px;}
.y102{bottom:887.943000px;}
.y161{bottom:892.098900px;}
.y1e1{bottom:893.994000px;}
.yc9{bottom:898.029000px;}
.y5e{bottom:898.477500px;}
.y124{bottom:904.531479px;}
.y1a2{bottom:905.878180px;}
.y101{bottom:906.772500px;}
.y23{bottom:907.912500px;}
.y23d{bottom:908.632500px;}
.y23c{bottom:911.254500px;}
.y1e0{bottom:912.823500px;}
.y1a1{bottom:914.063565px;}
.y280{bottom:915.738000px;}
.yc8{bottom:916.858500px;}
.y5d{bottom:917.307000px;}
.y123{bottom:923.790921px;}
.y23b{bottom:928.515000px;}
.y160{bottom:928.909350px;}
.y100{bottom:930.085500px;}
.y1df{bottom:931.653000px;}
.y27f{bottom:932.998500px;}
.yc7{bottom:935.688000px;}
.y5c{bottom:936.136500px;}
.y122{bottom:942.960183px;}
.y23a{bottom:945.775500px;}
.y15f{bottom:946.368900px;}
.y22{bottom:950.008500px;}
.y27e{bottom:950.259000px;}
.yff{bottom:950.260500px;}
.y1de{bottom:950.482500px;}
.yc6{bottom:954.517500px;}
.y5b{bottom:954.966000px;}
.y121{bottom:962.219625px;}
.y239{bottom:963.036000px;}
.y15e{bottom:963.648900px;}
.y27d{bottom:964.896000px;}
.y1dc{bottom:966.582000px;}
.y27c{bottom:967.519500px;}
.y21{bottom:968.838000px;}
.y1db{bottom:969.312000px;}
.y150{bottom:970.617000px;}
.y5a{bottom:971.065500px;}
.yc5{bottom:973.347000px;}
.y59{bottom:973.795500px;}
.y1dd{bottom:974.737500px;}
.y20e{bottom:977.830500px;}
.y1be{bottom:978.772500px;}
.y238{bottom:980.296500px;}
.y120{bottom:981.479067px;}
.yfe{bottom:983.884500px;}
.y27b{bottom:984.780000px;}
.y1da{bottom:988.141500px;}
.y14f{bottom:989.446500px;}
.yc4{bottom:992.176500px;}
.y58{bottom:992.625000px;}
.y237{bottom:997.557000px;}
.y1bd{bottom:997.602000px;}
.yfd{bottom:999.978000px;}
.yfb{bottom:999.984000px;}
.yfc{bottom:1000.471500px;}
.y11f{bottom:1000.649832px;}
.y279{bottom:1002.039000px;}
.y27a{bottom:1002.040500px;}
.yfa{bottom:1002.714000px;}
.y1d9{bottom:1006.971000px;}
.y57{bottom:1008.724500px;}
.y20{bottom:1008.756000px;}
.yc3{bottom:1011.006000px;}
.y56{bottom:1011.454500px;}
.y236{bottom:1012.194000px;}
.y235{bottom:1014.817500px;}
.y14e{bottom:1015.489500px;}
.y15c{bottom:1016.749035px;}
.yf9{bottom:1018.807500px;}
.yf8{bottom:1018.813500px;}
.y278{bottom:1019.299500px;}
.yf7{bottom:1021.542000px;}
.y1d7{bottom:1025.800500px;}
.y15b{bottom:1026.378900px;}
.yc2{bottom:1027.105500px;}
.yc1{bottom:1029.835500px;}
.y55{bottom:1030.284000px;}
.y1d8{bottom:1031.226000px;}
.y234{bottom:1032.076500px;}
.y277{bottom:1036.560000px;}
.y1f{bottom:1037.001000px;}
.y1d6{bottom:1041.900000px;}
.y1d5{bottom:1044.630000px;}
.y233{bottom:1046.715000px;}
.y54{bottom:1049.113500px;}
.y232{bottom:1049.337000px;}
.yf6{bottom:1052.304000px;}
.yc0{bottom:1053.148500px;}
.y276{bottom:1053.820500px;}
.y11d{bottom:1055.369535px;}
.y1d4{bottom:1060.729500px;}
.yf5{bottom:1062.555000px;}
.y1d3{bottom:1063.459500px;}
.y11c{bottom:1064.999400px;}
.y14c{bottom:1065.213000px;}
.y1e{bottom:1065.244500px;}
.y231{bottom:1066.597500px;}
.y53{bottom:1067.943000px;}
.y275{bottom:1071.081000px;}
.y14d{bottom:1073.367000px;}
.y230{bottom:1081.236000px;}
.y1d2{bottom:1082.289000px;}
.y22f{bottom:1083.858000px;}
.y52{bottom:1086.772500px;}
.y274{bottom:1088.341500px;}
.y14b{bottom:1092.196500px;}
.y1d{bottom:1093.489500px;}
.y51{bottom:1102.872000px;}
.y50{bottom:1105.602000px;}
.ybf{bottom:1111.026000px;}
.y1b{bottom:1136.976000px;}
.y4f{bottom:1168.366500px;}
.h12{height:23.242762px;}
.h21{height:29.718457px;}
.h8{height:31.131341px;}
.h34{height:33.209736px;}
.h18{height:33.299897px;}
.h2{height:36.319550px;}
.hc{height:37.389888px;}
.h36{height:37.454590px;}
.h37{height:37.455940px;}
.h30{height:37.637701px;}
.ha{height:38.896243px;}
.h10{height:39.432893px;}
.h11{height:41.502721px;}
.h9{height:41.508281px;}
.h13{height:41.544042px;}
.h35{height:41.699443px;}
.h2c{height:42.065666px;}
.h1f{height:42.418652px;}
.h32{height:42.448535px;}
.he{height:43.217759px;}
.h24{height:43.622227px;}
.h5{height:43.815515px;}
.h23{height:44.091914px;}
.h1a{height:44.279648px;}
.hb{height:46.697011px;}
.h31{height:47.259369px;}
.h2e{height:47.442480px;}
.h38{height:49.117939px;}
.h26{height:49.939453px;}
.h3{height:50.930649px;}
.hf{height:51.885221px;}
.h2d{height:52.819295px;}
.h7{height:54.541601px;}
.h15{height:54.575123px;}
.h20{height:54.658652px;}
.h1e{height:54.659252px;}
.h1b{height:55.599258px;}
.h29{height:55.602318px;}
.h27{height:55.603074px;}
.hd{height:55.849550px;}
.h22{height:56.320698px;}
.h1d{height:57.178652px;}
.h28{height:58.263271px;}
.h14{height:61.134893px;}
.h4{height:64.585105px;}
.h2a{height:66.588109px;}
.h6{height:77.792486px;}
.h16{height:86.560950px;}
.h1c{height:90.288104px;}
.h17{height:92.889221px;}
.h19{height:264.874950px;}
.h25{height:280.642950px;}
.h2b{height:311.325450px;}
.h2f{height:388.119307px;}
.h33{height:653.784750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:201.537964px;}
.w3{width:338.031000px;}
.w6{width:528.635145px;}
.w7{width:571.310550px;}
.w5{width:651.709785px;}
.w4{width:683.476500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb9{left:-191.955000px;}
.xdc{left:-68.616930px;}
.xcf{left:-49.270500px;}
.xd4{left:-46.940640px;}
.xe7{left:-7.018200px;}
.x0{left:0.000000px;}
.xba{left:3.615360px;}
.xbb{left:35.475954px;}
.x1{left:53.574000px;}
.x2{left:59.941216px;}
.x101{left:85.848000px;}
.xde{left:97.616598px;}
.xce{left:104.506500px;}
.x11b{left:106.909500px;}
.x11c{left:112.887000px;}
.xd3{left:120.391215px;}
.xdd{left:124.698103px;}
.x11d{left:132.988500px;}
.xd6{left:138.849774px;}
.xd0{left:146.299500px;}
.xd5{left:169.117338px;}
.xd1{left:178.160094px;}
.xbc{left:181.636692px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x91{left:253.974000px;}
.x118{left:255.129000px;}
.xa0{left:257.175000px;}
.x10a{left:261.816000px;}
.x7d{left:264.979500px;}
.x63{left:266.424000px;}
.x9b{left:268.464000px;}
.x4{left:269.914500px;}
.x35{left:271.729500px;}
.x64{left:272.850000px;}
.x8d{left:276.028500px;}
.x7e{left:277.084500px;}
.xc9{left:280.000500px;}
.x19{left:281.479500px;}
.xfa{left:283.075500px;}
.x36{left:286.672500px;}
.xc0{left:288.439500px;}
.x7f{left:289.767000px;}
.xfb{left:292.306500px;}
.xeb{left:296.143500px;}
.x97{left:297.912000px;}
.xc1{left:299.908500px;}
.x80{left:301.872000px;}
.xbf{left:306.075000px;}
.x6{left:308.157000px;}
.x59{left:309.445500px;}
.x6a{left:311.563500px;}
.x82{left:314.652000px;}
.x18{left:318.933000px;}
.xe9{left:321.592500px;}
.x5a{left:324.388500px;}
.xa7{left:325.744500px;}
.x83{left:326.836500px;}
.x5b{left:328.110000px;}
.x81{left:329.734500px;}
.x109{left:331.347000px;}
.x98{left:332.640000px;}
.x37{left:335.287500px;}
.x84{left:338.941500px;}
.x11e{left:340.057500px;}
.x8a{left:341.244000px;}
.x5c{left:343.054500px;}
.xc2{left:344.394000px;}
.xac{left:346.905000px;}
.x41{left:348.081000px;}
.x1a{left:349.287000px;}
.xc3{left:350.820000px;}
.xa2{left:352.114500px;}
.x4e{left:354.484500px;}
.x1b{left:356.758500px;}
.x42{left:358.237500px;}
.xb1{left:360.553500px;}
.x68{left:362.929500px;}
.x1c{left:364.380000px;}
.x4f{left:369.429000px;}
.x1d{left:371.851500px;}
.x50{left:373.089000px;}
.x71{left:375.538500px;}
.x6b{left:377.632500px;}
.x3c{left:379.857000px;}
.x69{left:381.150000px;}
.xbe{left:382.425000px;}
.x3d{left:383.667000px;}
.x88{left:386.766000px;}
.x51{left:388.033500px;}
.x47{left:389.431500px;}
.x100{left:390.700500px;}
.x72{left:394.149000px;}
.x3a{left:395.422500px;}
.xbd{left:397.365000px;}
.x3e{left:398.611500px;}
.x73{left:400.575000px;}
.x48{left:404.374500px;}
.x3b{left:405.582000px;}
.x7a{left:406.644000px;}
.xd{left:408.943500px;}
.x58{left:410.463000px;}
.x7b{left:413.070000px;}
.x49{left:414.234000px;}
.xe{left:417.250500px;}
.x6c{left:421.371000px;}
.x13{left:423.900000px;}
.x7c{left:425.050500px;}
.x89{left:426.780000px;}
.x43{left:429.280500px;}
.xf4{left:430.324500px;}
.x14{left:432.207000px;}
.xb0{left:433.399500px;}
.xa1{left:434.782500px;}
.x38{left:436.509000px;}
.xf5{left:440.494500px;}
.x6f{left:441.558000px;}
.xaf{left:442.959000px;}
.x44{left:444.225000px;}
.x8b{left:447.354000px;}
.x39{left:451.453500px;}
.xf{left:453.132000px;}
.x4a{left:454.378500px;}
.x53{left:457.503000px;}
.x110{left:463.075500px;}
.x70{left:465.358500px;}
.x4b{left:469.323000px;}
.x10{left:471.885000px;}
.x111{left:474.430500px;}
.x65{left:475.521000px;}
.x10f{left:476.991000px;}
.x11{left:479.643000px;}
.xd9{left:481.879500px;}
.x66{left:482.992500px;}
.x28{left:487.296000px;}
.xda{left:490.098000px;}
.x15{left:491.581500px;}
.x12{left:494.224500px;}
.x16{left:499.339500px;}
.x67{left:501.747000px;}
.x29{left:506.052000px;}
.xfc{left:507.334500px;}
.x8c{left:510.816000px;}
.x17{left:513.921000px;}
.xc6{left:517.168500px;}
.xdf{left:523.187070px;}
.xb2{left:524.866500px;}
.x2a{left:528.616500px;}
.xfd{left:530.599500px;}
.xc7{left:532.113000px;}
.x74{left:534.187500px;}
.xb3{left:535.855500px;}
.xec{left:536.929500px;}
.xb4{left:543.477000px;}
.x8e{left:549.160500px;}
.xe3{left:550.527000px;}
.xb5{left:551.760000px;}
.x9c{left:554.850000px;}
.x8f{left:555.966000px;}
.xe4{left:559.758000px;}
.xa9{left:560.985000px;}
.x54{left:561.994500px;}
.x106{left:566.586000px;}
.x108{left:569.035500px;}
.xe8{left:570.849604px;}
.xaa{left:572.848500px;}
.xed{left:575.713500px;}
.x55{left:576.937500px;}
.xa8{left:578.263500px;}
.x11f{left:579.594000px;}
.x4c{left:582.055500px;}
.xc8{left:584.686500px;}
.xc4{left:586.947000px;}
.x4d{left:588.481500px;}
.x120{left:590.994000px;}
.xc5{left:593.373000px;}
.xee{left:595.206000px;}
.xe5{left:597.127500px;}
.xf6{left:598.762500px;}
.x121{left:600.727500px;}
.xa3{left:603.825000px;}
.x2d{left:605.395500px;}
.x45{left:607.572000px;}
.x85{left:610.332000px;}
.x5d{left:612.237000px;}
.xd7{left:614.487360px;}
.xe0{left:616.185000px;}
.x5e{left:618.663000px;}
.x2e{left:620.340000px;}
.x46{left:622.515000px;}
.x86{left:625.275000px;}
.xa4{left:628.236000px;}
.x10b{left:629.365500px;}
.xf8{left:630.534000px;}
.x104{left:634.566000px;}
.x9d{left:636.490500px;}
.xe6{left:640.461000px;}
.x10d{left:642.517500px;}
.x105{left:643.906500px;}
.x92{left:645.789000px;}
.xef{left:649.285500px;}
.xfe{left:650.743500px;}
.xe1{left:656.412000px;}
.xb6{left:657.985500px;}
.x107{left:659.353500px;}
.x114{left:662.308500px;}
.xb7{left:664.411500px;}
.x93{left:665.548500px;}
.x75{left:667.204500px;}
.xf7{left:669.613500px;}
.x76{left:673.630500px;}
.xff{left:675.757500px;}
.xb8{left:676.768500px;}
.xdb{left:677.976000px;}
.xd2{left:683.419428px;}
.x5f{left:686.017500px;}
.xf0{left:688.002000px;}
.xa5{left:689.925000px;}
.x60{left:692.443500px;}
.x2b{left:698.556000px;}
.xf9{left:701.146500px;}
.xe2{left:702.517500px;}
.xa6{left:704.869500px;}
.x56{left:706.453500px;}
.xf1{left:707.496000px;}
.x2c{left:708.688500px;}
.x6d{left:711.009000px;}
.x119{left:712.488000px;}
.xad{left:713.616000px;}
.xf2{left:716.055000px;}
.x2f{left:717.858000px;}
.x57{left:721.398000px;}
.x112{left:724.750500px;}
.xae{left:726.228000px;}
.x30{left:728.032500px;}
.x61{left:730.527000px;}
.x31{left:732.919500px;}
.xf3{left:735.549000px;}
.x62{left:736.953000px;}
.x11a{left:739.387500px;}
.x94{left:740.388000px;}
.x6e{left:741.634500px;}
.xca{left:743.845500px;}
.x115{left:746.791500px;}
.x32{left:747.862500px;}
.x22{left:749.664000px;}
.x113{left:751.650000px;}
.x116{left:752.769000px;}
.x7{left:754.251000px;}
.x95{left:755.332500px;}
.x23{left:757.137000px;}
.xcb{left:758.790000px;}
.x3f{left:759.994500px;}
.x8{left:762.558000px;}
.x10c{left:763.629000px;}
.x24{left:764.758500px;}
.x102{left:767.194500px;}
.x117{left:769.957500px;}
.x25{left:772.230000px;}
.x40{left:774.939000px;}
.x9e{left:777.832500px;}
.x96{left:780.802500px;}
.xea{left:783.957000px;}
.xcc{left:785.110500px;}
.x52{left:786.423000px;}
.x9f{left:788.380500px;}
.x77{left:790.017000px;}
.xd8{left:792.924000px;}
.x87{left:795.217500px;}
.x78{left:796.443000px;}
.x9{left:797.572500px;}
.x33{left:798.669000px;}
.xcd{left:800.053500px;}
.xab{left:802.071000px;}
.x90{left:805.588500px;}
.x79{left:808.627500px;}
.x103{left:810.265500px;}
.x10e{left:812.637000px;}
.x1e{left:813.886500px;}
.xa{left:815.520000px;}
.x34{left:817.282500px;}
.x99{left:819.309000px;}
.x1f{left:821.359500px;}
.xb{left:823.263000px;}
.x20{left:825.169500px;}
.x26{left:828.906000px;}
.x21{left:832.642500px;}
.x9a{left:834.253500px;}
.x27{left:835.332000px;}
.xc{left:837.844500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.vb{vertical-align:-10.889856pt;}
.v6{vertical-align:-9.301333pt;}
.v5{vertical-align:-7.968000pt;}
.vf{vertical-align:-2.239136pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.239136pt;}
.v4{vertical-align:9.706667pt;}
.vc{vertical-align:10.880000pt;}
.v10{vertical-align:13.120000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:22.858667pt;}
.v9{vertical-align:35.418667pt;}
.ve{vertical-align:42.559616pt;}
.va{vertical-align:44.416000pt;}
.v7{vertical-align:59.008000pt;}
.ls7f{letter-spacing:-0.288000pt;}
.ls7d{letter-spacing:-0.240480pt;}
.ls7c{letter-spacing:-0.219104pt;}
.ls82{letter-spacing:-0.176352pt;}
.ls50{letter-spacing:-0.165664pt;}
.ls53{letter-spacing:-0.154976pt;}
.ls67{letter-spacing:-0.144288pt;}
.ls83{letter-spacing:-0.138944pt;}
.ls5e{letter-spacing:-0.133600pt;}
.ls79{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.122912pt;}
.ls65{letter-spacing:-0.117568pt;}
.ls80{letter-spacing:-0.112224pt;}
.ls63{letter-spacing:-0.106880pt;}
.ls5c{letter-spacing:-0.096192pt;}
.ls62{letter-spacing:-0.090848pt;}
.ls4f{letter-spacing:-0.085504pt;}
.ls59{letter-spacing:-0.080160pt;}
.ls78{letter-spacing:-0.074816pt;}
.lsc0{letter-spacing:-0.072000pt;}
.lsa3{letter-spacing:-0.071075pt;}
.lsa6{letter-spacing:-0.069920pt;}
.ls64{letter-spacing:-0.069472pt;}
.ls51{letter-spacing:-0.064128pt;}
.lsa9{letter-spacing:-0.063594pt;}
.lsac{letter-spacing:-0.062560pt;}
.lsa2{letter-spacing:-0.060922pt;}
.ls81{letter-spacing:-0.058784pt;}
.lsc2{letter-spacing:-0.055200pt;}
.lsa8{letter-spacing:-0.054509pt;}
.ls4d{letter-spacing:-0.053440pt;}
.ls52{letter-spacing:-0.042752pt;}
.ls55{letter-spacing:-0.037440pt;}
.ls54{letter-spacing:-0.037408pt;}
.ls60{letter-spacing:-0.032064pt;}
.lsa4{letter-spacing:-0.030461pt;}
.lsaa{letter-spacing:-0.027254pt;}
.ls69{letter-spacing:-0.026720pt;}
.ls77{letter-spacing:-0.024000pt;}
.lsa5{letter-spacing:-0.022800pt;}
.ls5a{letter-spacing:-0.022464pt;}
.ls5b{letter-spacing:-0.021376pt;}
.lsab{letter-spacing:-0.020400pt;}
.ls61{letter-spacing:-0.016032pt;}
.lsa1{letter-spacing:-0.015230pt;}
.lsa7{letter-spacing:-0.013627pt;}
.ls4e{letter-spacing:-0.010688pt;}
.ls68{letter-spacing:-0.005344pt;}
.ls76{letter-spacing:-0.004800pt;}
.lsbf{letter-spacing:-0.003600pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000015pt;}
.lsc3{letter-spacing:0.000225pt;}
.lsaf{letter-spacing:0.000544pt;}
.lscc{letter-spacing:0.000711pt;}
.ls8{letter-spacing:0.001735pt;}
.ls19{letter-spacing:0.002242pt;}
.lsd2{letter-spacing:0.002327pt;}
.lsb{letter-spacing:0.002425pt;}
.lsd1{letter-spacing:0.002553pt;}
.ls7{letter-spacing:0.003100pt;}
.lsb6{letter-spacing:0.003600pt;}
.ls3{letter-spacing:0.004237pt;}
.lsc7{letter-spacing:0.004267pt;}
.ls98{letter-spacing:0.004542pt;}
.ls8a{letter-spacing:0.005077pt;}
.ls6e{letter-spacing:0.005344pt;}
.lsba{letter-spacing:0.007200pt;}
.ls49{letter-spacing:0.010688pt;}
.lsb5{letter-spacing:0.010800pt;}
.ls9b{letter-spacing:0.012240pt;}
.ls8d{letter-spacing:0.013680pt;}
.lsbd{letter-spacing:0.014400pt;}
.ls4a{letter-spacing:0.016032pt;}
.ls39{letter-spacing:0.016736pt;}
.lsb4{letter-spacing:0.018000pt;}
.ls6d{letter-spacing:0.019200pt;}
.ls99{letter-spacing:0.020400pt;}
.ls70{letter-spacing:0.021376pt;}
.ls41{letter-spacing:0.021824pt;}
.lsb2{letter-spacing:0.022344pt;}
.ls8b{letter-spacing:0.022800pt;}
.ls6a{letter-spacing:0.024000pt;}
.ls9f{letter-spacing:0.024480pt;}
.ls3f{letter-spacing:0.024683pt;}
.lsb9{letter-spacing:0.025200pt;}
.ls93{letter-spacing:0.025323pt;}
.ls48{letter-spacing:0.026720pt;}
.ls91{letter-spacing:0.027360pt;}
.ls85{letter-spacing:0.028302pt;}
.ls30{letter-spacing:0.029792pt;}
.ls96{letter-spacing:0.031797pt;}
.ls7b{letter-spacing:0.032000pt;}
.ls4b{letter-spacing:0.032064pt;}
.ls6c{letter-spacing:0.033600pt;}
.ls88{letter-spacing:0.035538pt;}
.lsb8{letter-spacing:0.036000pt;}
.ls97{letter-spacing:0.036339pt;}
.ls3d{letter-spacing:0.036352pt;}
.ls9a{letter-spacing:0.036720pt;}
.ls40{letter-spacing:0.037408pt;}
.ls6b{letter-spacing:0.038400pt;}
.ls89{letter-spacing:0.040614pt;}
.ls9d{letter-spacing:0.040800pt;}
.ls95{letter-spacing:0.040882pt;}
.ls8c{letter-spacing:0.041040pt;}
.ls46{letter-spacing:0.042752pt;}
.lsbc{letter-spacing:0.043200pt;}
.ls8f{letter-spacing:0.045600pt;}
.ls87{letter-spacing:0.045691pt;}
.ls32{letter-spacing:0.048096pt;}
.ls71{letter-spacing:0.051200pt;}
.ls6f{letter-spacing:0.053440pt;}
.ls47{letter-spacing:0.058784pt;}
.ls44{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.064128pt;}
.ls74{letter-spacing:0.067200pt;}
.ls7e{letter-spacing:0.069472pt;}
.ls4c{letter-spacing:0.071360pt;}
.ls45{letter-spacing:0.074816pt;}
.lsbb{letter-spacing:0.079200pt;}
.ls72{letter-spacing:0.080160pt;}
.lsb7{letter-spacing:0.082800pt;}
.ls34{letter-spacing:0.085504pt;}
.ls9c{letter-spacing:0.093840pt;}
.ls42{letter-spacing:0.096000pt;}
.ls7a{letter-spacing:0.099200pt;}
.lsc1{letter-spacing:0.100800pt;}
.ls8e{letter-spacing:0.104880pt;}
.ls5d{letter-spacing:0.105600pt;}
.ls75{letter-spacing:0.106880pt;}
.ls9e{letter-spacing:0.110160pt;}
.ls73{letter-spacing:0.110400pt;}
.lsb3{letter-spacing:0.114912pt;}
.lsb1{letter-spacing:0.121296pt;}
.ls3c{letter-spacing:0.122912pt;}
.ls90{letter-spacing:0.123120pt;}
.ls3e{letter-spacing:0.128000pt;}
.ls94{letter-spacing:0.130234pt;}
.ls92{letter-spacing:0.137469pt;}
.ls66{letter-spacing:0.138944pt;}
.ls86{letter-spacing:0.145555pt;}
.ls31{letter-spacing:0.153216pt;}
.ls84{letter-spacing:0.153642pt;}
.ls2f{letter-spacing:0.161728pt;}
.lsa{letter-spacing:0.447791pt;}
.lsd{letter-spacing:0.467635pt;}
.ls14{letter-spacing:0.482502pt;}
.ls15{letter-spacing:0.487835pt;}
.ls1d{letter-spacing:0.505423pt;}
.lsb0{letter-spacing:0.505570pt;}
.ls1b{letter-spacing:0.657788pt;}
.ls20{letter-spacing:0.734881pt;}
.ls27{letter-spacing:1.173852pt;}
.ls26{letter-spacing:1.796214pt;}
.ls29{letter-spacing:1.975756pt;}
.ls33{letter-spacing:2.322240pt;}
.lse{letter-spacing:2.656533pt;}
.ls1c{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls16{letter-spacing:3.158400pt;}
.ls13{letter-spacing:3.163733pt;}
.ls37{letter-spacing:3.200320pt;}
.ls11{letter-spacing:3.318400pt;}
.ls12{letter-spacing:3.323733pt;}
.ls23{letter-spacing:3.825015pt;}
.ls56{letter-spacing:7.118208pt;}
.ls0{letter-spacing:9.298933pt;}
.lsf{letter-spacing:10.626533pt;}
.ls22{letter-spacing:11.101762pt;}
.ls2b{letter-spacing:11.104696pt;}
.lsd4{letter-spacing:11.462487pt;}
.ls24{letter-spacing:11.593548pt;}
.ls57{letter-spacing:11.596480pt;}
.ls28{letter-spacing:11.632696pt;}
.lsd5{letter-spacing:11.647521pt;}
.lscd{letter-spacing:11.740338pt;}
.ls58{letter-spacing:11.799552pt;}
.lsd3{letter-spacing:11.896652pt;}
.lsc5{letter-spacing:11.954133pt;}
.lscf{letter-spacing:11.956358pt;}
.lsc9{letter-spacing:11.959467pt;}
.lsca{letter-spacing:12.012147pt;}
.ls38{letter-spacing:12.061408pt;}
.lsc6{letter-spacing:12.238264pt;}
.lsd6{letter-spacing:13.064408pt;}
.lsad{letter-spacing:13.281404pt;}
.lsae{letter-spacing:13.283733pt;}
.ls4{letter-spacing:13.284541pt;}
.ls21{letter-spacing:13.649067pt;}
.ls25{letter-spacing:13.654029pt;}
.ls18{letter-spacing:13.923096pt;}
.ls17{letter-spacing:13.945067pt;}
.ls2a{letter-spacing:14.158628pt;}
.ls36{letter-spacing:14.162240pt;}
.lsc{letter-spacing:14.608533pt;}
.lsc4{letter-spacing:14.613867pt;}
.ls35{letter-spacing:14.621184pt;}
.lsd0{letter-spacing:14.759323pt;}
.lsc8{letter-spacing:14.823467pt;}
.ls3a{letter-spacing:15.081920pt;}
.lsa0{letter-spacing:15.937067pt;}
.ls2e{letter-spacing:15.937574pt;}
.ls1e{letter-spacing:16.076455pt;}
.ls1a{letter-spacing:16.603733pt;}
.lsce{letter-spacing:18.711467pt;}
.lscb{letter-spacing:19.872251pt;}
.ls1f{letter-spacing:22.435096pt;}
.ls2{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.315733pt;}
.ls3b{letter-spacing:483.920576pt;}
.lsbe{letter-spacing:565.981704pt;}
.ls2c{letter-spacing:578.598908pt;}
.ws11{word-spacing:-65.876384pt;}
.ws8d{word-spacing:-53.440000pt;}
.ws153{word-spacing:-36.000000pt;}
.ws8c{word-spacing:-32.000000pt;}
.wsce{word-spacing:-14.000000pt;}
.ws88{word-spacing:-13.482912pt;}
.wscc{word-spacing:-13.429472pt;}
.ws8a{word-spacing:-13.360000pt;}
.ws15{word-spacing:-13.283467pt;}
.wsd0{word-spacing:-12.000000pt;}
.wsd1{word-spacing:-11.955200pt;}
.ws84{word-spacing:-11.756800pt;}
.ws86{word-spacing:-11.676640pt;}
.ws113{word-spacing:-11.400000pt;}
.ws82{word-spacing:-10.801728pt;}
.ws83{word-spacing:-10.640000pt;}
.ws33{word-spacing:-10.626800pt;}
.ws111{word-spacing:-10.261642pt;}
.ws11a{word-spacing:-10.200000pt;}
.ws112{word-spacing:-10.108000pt;}
.ws13{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws118{word-spacing:-9.181469pt;}
.ws154{word-spacing:-9.100800pt;}
.ws119{word-spacing:-9.044000pt;}
.ws151{word-spacing:-9.000000pt;}
.ws85{word-spacing:-8.199360pt;}
.ws8b{word-spacing:-8.105600pt;}
.ws14f{word-spacing:-8.101296pt;}
.wsca{word-spacing:-8.099200pt;}
.wscf{word-spacing:-8.051200pt;}
.wscb{word-spacing:-8.032000pt;}
.ws89{word-spacing:-8.000000pt;}
.ws150{word-spacing:-7.980000pt;}
.wsc9{word-spacing:-7.872000pt;}
.wscd{word-spacing:-7.712000pt;}
.ws114{word-spacing:-6.922080pt;}
.ws11b{word-spacing:-6.193440pt;}
.ws152{word-spacing:-5.520000pt;}
.ws155{word-spacing:-5.464800pt;}
.wsb4{word-spacing:-3.030048pt;}
.wsb5{word-spacing:-3.014016pt;}
.ws12b{word-spacing:-3.005466pt;}
.ws68{word-spacing:-2.975497pt;}
.ws131{word-spacing:-2.932080pt;}
.wsc1{word-spacing:-2.826976pt;}
.ws141{word-spacing:-2.689101pt;}
.ws14d{word-spacing:-2.656693pt;}
.ws147{word-spacing:-2.623440pt;}
.ws132{word-spacing:-2.612880pt;}
.ws130{word-spacing:-2.599200pt;}
.ws1ae{word-spacing:-2.486682pt;}
.wsf7{word-spacing:-2.463584pt;}
.wsa6{word-spacing:-2.458240pt;}
.wsf8{word-spacing:-2.452896pt;}
.ws17c{word-spacing:-2.444158pt;}
.ws60{word-spacing:-2.391024pt;}
.ws129{word-spacing:-2.360712pt;}
.ws14c{word-spacing:-2.337890pt;}
.ws148{word-spacing:-2.337840pt;}
.ws146{word-spacing:-2.325600pt;}
.ws128{word-spacing:-2.325174pt;}
.ws62{word-spacing:-2.284756pt;}
.ws14b{word-spacing:-2.231622pt;}
.ws5b{word-spacing:-2.178489pt;}
.ws4b{word-spacing:-2.125355pt;}
.ws140{word-spacing:-2.112216pt;}
.ws19a{word-spacing:-2.104115pt;}
.ws13f{word-spacing:-2.080419pt;}
.ws5e{word-spacing:-2.072221pt;}
.ws8e{word-spacing:-2.008474pt;}
.ws56{word-spacing:-1.806551pt;}
.ws8f{word-spacing:-1.769370pt;}
.ws43{word-spacing:-1.753418pt;}
.ws44{word-spacing:-1.700284pt;}
.ws15f{word-spacing:-1.576800pt;}
.ws161{word-spacing:-1.562400pt;}
.ws160{word-spacing:-1.555200pt;}
.ws14e{word-spacing:-1.540882pt;}
.wsfd{word-spacing:-1.512352pt;}
.ws81{word-spacing:-1.487748pt;}
.ws125{word-spacing:-1.482426pt;}
.wsfe{word-spacing:-1.480288pt;}
.wsaf{word-spacing:-1.426848pt;}
.wsff{word-spacing:-1.421504pt;}
.ws13c{word-spacing:-1.326381pt;}
.ws28{word-spacing:-1.168945pt;}
.ws1d{word-spacing:-1.052058pt;}
.ws7{word-spacing:-1.041421pt;}
.ws98{word-spacing:-1.036736pt;}
.ws6d{word-spacing:-1.009543pt;}
.ws3e{word-spacing:-0.956410pt;}
.ws94{word-spacing:-0.929856pt;}
.ws9{word-spacing:-0.929840pt;}
.wsae{word-spacing:-0.865728pt;}
.ws1a6{word-spacing:-0.860774pt;}
.ws93{word-spacing:-0.828320pt;}
.ws126{word-spacing:-0.776750pt;}
.ws127{word-spacing:-0.766597pt;}
.ws24{word-spacing:-0.765133pt;}
.ws40{word-spacing:-0.743874pt;}
.ws13d{word-spacing:-0.694987pt;}
.ws3f{word-spacing:-0.690740pt;}
.ws13e{word-spacing:-0.685902pt;}
.ws1b2{word-spacing:-0.669491pt;}
.ws7d{word-spacing:-0.637606pt;}
.ws1a5{word-spacing:-0.621670pt;}
.ws95{word-spacing:-0.609216pt;}
.ws55{word-spacing:-0.584473pt;}
.ws100{word-spacing:-0.582496pt;}
.ws124{word-spacing:-0.568602pt;}
.ws102{word-spacing:-0.550432pt;}
.ws11d{word-spacing:-0.531339pt;}
.ws13b{word-spacing:-0.508749pt;}
.ws101{word-spacing:-0.491648pt;}
.ws1b3{word-spacing:-0.478208pt;}
.ws2a{word-spacing:-0.478205pt;}
.ws1b5{word-spacing:-0.430387pt;}
.ws34{word-spacing:-0.371937pt;}
.ws110{word-spacing:-0.347360pt;}
.ws46{word-spacing:-0.318803pt;}
.wsf5{word-spacing:-0.304608pt;}
.wsd8{word-spacing:-0.299264pt;}
.ws18d{word-spacing:-0.286925pt;}
.wsea{word-spacing:-0.277888pt;}
.ws36{word-spacing:-0.265669pt;}
.ws90{word-spacing:-0.242592pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws92{word-spacing:-0.234080pt;}
.ws11e{word-spacing:-0.230462pt;}
.ws96{word-spacing:-0.229792pt;}
.ws120{word-spacing:-0.222376pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws135{word-spacing:-0.206203pt;}
.wsa2{word-spacing:-0.203072pt;}
.ws137{word-spacing:-0.198968pt;}
.ws21{word-spacing:-0.191283pt;}
.ws15c{word-spacing:-0.181944pt;}
.ws99{word-spacing:-0.176352pt;}
.ws15e{word-spacing:-0.175560pt;}
.wsb7{word-spacing:-0.171008pt;}
.ws39{word-spacing:-0.159402pt;}
.ws184{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.110656pt;}
.ws41{word-spacing:-0.106268pt;}
.ws11f{word-spacing:-0.105123pt;}
.ws19{word-spacing:-0.095642pt;}
.ws136{word-spacing:-0.094058pt;}
.ws15d{word-spacing:-0.082992pt;}
.ws14{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws7b{word-spacing:-0.003292pt;}
.ws1{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.005344pt;}
.wse8{word-spacing:0.026720pt;}
.ws107{word-spacing:0.032064pt;}
.wsb6{word-spacing:0.037408pt;}
.ws16a{word-spacing:0.039600pt;}
.ws20{word-spacing:0.047821pt;}
.wsf4{word-spacing:0.048096pt;}
.ws38{word-spacing:0.053134pt;}
.ws142{word-spacing:0.068136pt;}
.wse6{word-spacing:0.069472pt;}
.ws16b{word-spacing:0.075600pt;}
.ws12c{word-spacing:0.076152pt;}
.ws16d{word-spacing:0.082800pt;}
.ws10f{word-spacing:0.091200pt;}
.ws17{word-spacing:0.095642pt;}
.wsdb{word-spacing:0.096192pt;}
.ws14a{word-spacing:0.097920pt;}
.ws16c{word-spacing:0.104400pt;}
.ws4a{word-spacing:0.106268pt;}
.wsc5{word-spacing:0.106880pt;}
.ws134{word-spacing:0.109440pt;}
.ws169{word-spacing:0.111600pt;}
.wsa5{word-spacing:0.112224pt;}
.ws10d{word-spacing:0.120000pt;}
.ws9a{word-spacing:0.122912pt;}
.ws149{word-spacing:0.134640pt;}
.ws10e{word-spacing:0.139200pt;}
.ws158{word-spacing:0.143462pt;}
.wse7{word-spacing:0.149632pt;}
.ws133{word-spacing:0.150480pt;}
.ws10c{word-spacing:0.158400pt;}
.ws6a{word-spacing:0.159402pt;}
.ws97{word-spacing:0.165664pt;}
.ws1a{word-spacing:0.191283pt;}
.wsa3{word-spacing:0.203072pt;}
.ws35{word-spacing:0.212535pt;}
.ws9b{word-spacing:0.235136pt;}
.ws1e{word-spacing:0.239104pt;}
.wsbc{word-spacing:0.261856pt;}
.ws37{word-spacing:0.265669pt;}
.ws181{word-spacing:0.286925pt;}
.ws47{word-spacing:0.318803pt;}
.ws106{word-spacing:0.320640pt;}
.wsef{word-spacing:0.325984pt;}
.ws1f{word-spacing:0.334746pt;}
.ws167{word-spacing:0.334800pt;}
.ws168{word-spacing:0.352800pt;}
.ws165{word-spacing:0.360000pt;}
.ws173{word-spacing:0.371937pt;}
.wsb0{word-spacing:0.374080pt;}
.wsb1{word-spacing:0.390112pt;}
.wsed{word-spacing:0.411488pt;}
.ws105{word-spacing:0.416832pt;}
.ws166{word-spacing:0.432000pt;}
.ws1af{word-spacing:0.478208pt;}
.wsee{word-spacing:0.480960pt;}
.ws64{word-spacing:0.503733pt;}
.ws191{word-spacing:0.573850pt;}
.ws3c{word-spacing:0.584473pt;}
.ws17f{word-spacing:0.621670pt;}
.wsab{word-spacing:0.662656pt;}
.wsf2{word-spacing:0.694720pt;}
.ws49{word-spacing:0.743874pt;}
.ws1b9{word-spacing:0.765133pt;}
.ws66{word-spacing:0.797008pt;}
.ws1bc{word-spacing:0.812954pt;}
.wsf1{word-spacing:0.833664pt;}
.wsbb{word-spacing:0.839008pt;}
.ws45{word-spacing:0.850142pt;}
.ws8{word-spacing:0.855453pt;}
.ws1b4{word-spacing:0.860774pt;}
.wsbd{word-spacing:0.865728pt;}
.ws30{word-spacing:0.903276pt;}
.ws172{word-spacing:0.956410pt;}
.ws1b7{word-spacing:1.004237pt;}
.ws3d{word-spacing:1.009543pt;}
.ws108{word-spacing:1.010016pt;}
.ws164{word-spacing:1.044000pt;}
.ws180{word-spacing:1.052058pt;}
.wsd9{word-spacing:1.058112pt;}
.ws162{word-spacing:1.062000pt;}
.ws4e{word-spacing:1.062677pt;}
.ws109{word-spacing:1.074144pt;}
.ws163{word-spacing:1.076400pt;}
.ws185{word-spacing:1.099878pt;}
.ws13a{word-spacing:1.112888pt;}
.ws1be{word-spacing:1.147699pt;}
.ws138{word-spacing:1.167397pt;}
.ws139{word-spacing:1.171939pt;}
.ws7c{word-spacing:1.222079pt;}
.ws123{word-spacing:1.243816pt;}
.ws7f{word-spacing:1.275213pt;}
.wsda{word-spacing:1.293248pt;}
.ws121{word-spacing:1.304738pt;}
.ws122{word-spacing:1.309814pt;}
.ws80{word-spacing:1.328347pt;}
.ws11c{word-spacing:1.381481pt;}
.wsf6{word-spacing:1.416160pt;}
.ws15b{word-spacing:1.482445pt;}
.ws63{word-spacing:1.540882pt;}
.ws7a{word-spacing:1.647150pt;}
.wsb9{word-spacing:1.661984pt;}
.wsf0{word-spacing:1.672672pt;}
.ws182{word-spacing:1.673728pt;}
.wsb8{word-spacing:1.688704pt;}
.wsdc{word-spacing:1.710080pt;}
.ws1a3{word-spacing:1.721549pt;}
.wsd5{word-spacing:1.723200pt;}
.wsd4{word-spacing:1.737600pt;}
.wsdd{word-spacing:1.752832pt;}
.ws16e{word-spacing:1.753418pt;}
.ws16f{word-spacing:1.806551pt;}
.ws50{word-spacing:1.859685pt;}
.ws51{word-spacing:1.912819pt;}
.wsbe{word-spacing:1.934528pt;}
.wsf3{word-spacing:1.955904pt;}
.ws2c{word-spacing:1.965953pt;}
.wsaa{word-spacing:1.998656pt;}
.wsbf{word-spacing:2.004000pt;}
.wsa9{word-spacing:2.036064pt;}
.ws18{word-spacing:2.056294pt;}
.ws31{word-spacing:2.072221pt;}
.ws5f{word-spacing:2.178489pt;}
.ws2{word-spacing:2.230752pt;}
.wsd3{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws12a{word-spacing:2.233792pt;}
.ws2e{word-spacing:2.284756pt;}
.wsb3{word-spacing:2.335328pt;}
.wsb2{word-spacing:2.351360pt;}
.ws52{word-spacing:2.391024pt;}
.ws19b{word-spacing:2.394212pt;}
.ws104{word-spacing:2.458240pt;}
.ws159{word-spacing:2.486682pt;}
.ws103{word-spacing:2.495648pt;}
.ws15a{word-spacing:2.534502pt;}
.ws4d{word-spacing:2.550426pt;}
.ws22{word-spacing:2.582323pt;}
.wsac{word-spacing:2.591840pt;}
.ws117{word-spacing:2.630144pt;}
.ws4f{word-spacing:2.656693pt;}
.wsf9{word-spacing:2.666656pt;}
.ws1a1{word-spacing:2.677965pt;}
.ws4c{word-spacing:2.709827pt;}
.wsc8{word-spacing:2.762961pt;}
.ws157{word-spacing:2.821427pt;}
.ws1a0{word-spacing:2.861713pt;}
.ws1a4{word-spacing:2.863437pt;}
.ws1bf{word-spacing:2.864700pt;}
.ws18b{word-spacing:2.865852pt;}
.ws171{word-spacing:2.869229pt;}
.wsfc{word-spacing:2.880416pt;}
.ws17e{word-spacing:2.917069pt;}
.ws6c{word-spacing:2.922363pt;}
.wsba{word-spacing:2.928512pt;}
.ws187{word-spacing:2.964890pt;}
.ws3a{word-spacing:2.975497pt;}
.ws69{word-spacing:3.081764pt;}
.ws144{word-spacing:3.092640pt;}
.ws145{word-spacing:3.104880pt;}
.ws156{word-spacing:3.108352pt;}
.ws143{word-spacing:3.108960pt;}
.ws3b{word-spacing:3.134898pt;}
.ws198{word-spacing:3.137956pt;}
.ws25{word-spacing:3.188032pt;}
.ws58{word-spacing:3.241166pt;}
.ws1ab{word-spacing:3.251814pt;}
.ws48{word-spacing:3.294300pt;}
.wse9{word-spacing:3.318624pt;}
.ws176{word-spacing:3.347434pt;}
.ws183{word-spacing:3.395277pt;}
.ws74{word-spacing:3.400567pt;}
.ws79{word-spacing:3.453701pt;}
.ws12e{word-spacing:3.456480pt;}
.ws12f{word-spacing:3.470160pt;}
.ws12d{word-spacing:3.474720pt;}
.ws78{word-spacing:3.478599pt;}
.ws2d{word-spacing:3.559969pt;}
.ws23{word-spacing:3.634381pt;}
.ws177{word-spacing:3.666237pt;}
.ws53{word-spacing:3.719371pt;}
.ws54{word-spacing:3.772505pt;}
.ws19e{word-spacing:3.825664pt;}
.wse2{word-spacing:3.847680pt;}
.ws29{word-spacing:3.878772pt;}
.wse1{word-spacing:3.879744pt;}
.ws17d{word-spacing:3.921306pt;}
.wse0{word-spacing:3.927840pt;}
.ws7e{word-spacing:3.931906pt;}
.wsde{word-spacing:3.943872pt;}
.ws6b{word-spacing:3.985040pt;}
.wsdf{word-spacing:4.002656pt;}
.wsc0{word-spacing:4.008000pt;}
.ws17b{word-spacing:4.144442pt;}
.wsa8{word-spacing:4.195040pt;}
.wsec{word-spacing:4.211072pt;}
.wseb{word-spacing:4.227104pt;}
.wse5{word-spacing:4.232448pt;}
.wsf{word-spacing:4.240070pt;}
.wsc6{word-spacing:4.250709pt;}
.ws42{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.wsa7{word-spacing:4.333984pt;}
.wse3{word-spacing:4.360704pt;}
.wse4{word-spacing:4.456896pt;}
.ws67{word-spacing:4.569513pt;}
.wsc7{word-spacing:4.622646pt;}
.ws116{word-spacing:4.734259pt;}
.ws17a{word-spacing:4.782048pt;}
.ws75{word-spacing:4.835182pt;}
.ws179{word-spacing:4.888316pt;}
.ws73{word-spacing:5.047717pt;}
.ws115{word-spacing:5.069005pt;}
.wsa1{word-spacing:5.135584pt;}
.ws72{word-spacing:5.153985pt;}
.ws1aa{word-spacing:5.164646pt;}
.wsc4{word-spacing:5.231776pt;}
.wsa0{word-spacing:5.333312pt;}
.ws1a8{word-spacing:5.355930pt;}
.ws174{word-spacing:5.472788pt;}
.ws9e{word-spacing:5.482944pt;}
.wsad{word-spacing:5.536384pt;}
.ws10b{word-spacing:5.573792pt;}
.ws70{word-spacing:5.579056pt;}
.ws9f{word-spacing:5.600512pt;}
.ws10a{word-spacing:5.605856pt;}
.ws71{word-spacing:5.632190pt;}
.ws59{word-spacing:5.738458pt;}
.wsc2{word-spacing:5.782208pt;}
.ws175{word-spacing:5.791591pt;}
.ws192{word-spacing:5.834138pt;}
.ws6f{word-spacing:5.842667pt;}
.ws76{word-spacing:5.843219pt;}
.wsc3{word-spacing:5.894432pt;}
.ws1b8{word-spacing:5.929779pt;}
.ws65{word-spacing:6.004127pt;}
.ws26{word-spacing:6.110395pt;}
.ws27{word-spacing:6.163529pt;}
.ws194{word-spacing:6.312346pt;}
.wsd2{word-spacing:6.535466pt;}
.ws178{word-spacing:6.641733pt;}
.ws87{word-spacing:6.672256pt;}
.ws5c{word-spacing:6.694867pt;}
.ws1a9{word-spacing:6.742733pt;}
.wsfb{word-spacing:6.749472pt;}
.wsfa{word-spacing:6.824288pt;}
.ws6e{word-spacing:6.854269pt;}
.ws9c{word-spacing:6.893760pt;}
.wsd{word-spacing:6.918010pt;}
.ws9d{word-spacing:6.963232pt;}
.ws197{word-spacing:6.981837pt;}
.ws57{word-spacing:7.332474pt;}
.ws5d{word-spacing:7.810678pt;}
.ws196{word-spacing:7.938253pt;}
.ws170{word-spacing:8.926490pt;}
.ws3{word-spacing:9.257381pt;}
.ws2f{word-spacing:10.467372pt;}
.ws32{word-spacing:10.580029pt;}
.wsd7{word-spacing:10.699200pt;}
.wsd6{word-spacing:10.723200pt;}
.wsb{word-spacing:10.823338pt;}
.ws1b6{word-spacing:11.476992pt;}
.ws1ad{word-spacing:11.811738pt;}
.ws199{word-spacing:11.859558pt;}
.ws18a{word-spacing:11.900331pt;}
.ws1a2{word-spacing:11.903684pt;}
.ws1b0{word-spacing:11.904196pt;}
.ws189{word-spacing:11.907379pt;}
.ws1ba{word-spacing:12.672512pt;}
.ws61{word-spacing:13.230333pt;}
.ws6{word-spacing:13.761632pt;}
.ws77{word-spacing:14.114667pt;}
.ws19c{word-spacing:14.298419pt;}
.wsc{word-spacing:14.319536pt;}
.ws18e{word-spacing:14.537523pt;}
.ws19d{word-spacing:14.680986pt;}
.ws1b1{word-spacing:14.728806pt;}
.ws19f{word-spacing:14.767881pt;}
.ws1bb{word-spacing:14.772096pt;}
.ws18f{word-spacing:14.772625pt;}
.ws193{word-spacing:14.773086pt;}
.ws1c1{word-spacing:14.774554pt;}
.ws1c0{word-spacing:14.775305pt;}
.ws186{word-spacing:14.776627pt;}
.ws1ac{word-spacing:14.824448pt;}
.ws1a7{word-spacing:14.872269pt;}
.ws18c{word-spacing:15.015731pt;}
.ws190{word-spacing:15.733043pt;}
.ws5a{word-spacing:16.418365pt;}
.ws1bd{word-spacing:17.693696pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws188{word-spacing:24.053862pt;}
.ws195{word-spacing:34.048410pt;}
.ws12{word-spacing:35.587721pt;}
._2a{margin-left:-20.711610pt;}
._29{margin-left:-17.969974pt;}
._19{margin-left:-6.960537pt;}
._7{margin-left:-5.897859pt;}
._8{margin-left:-4.718299pt;}
._0{margin-left:-3.421811pt;}
._3{margin-left:-2.045648pt;}
._5{margin-left:-0.956410pt;}
._1a{width:0.965617pt;}
._2{width:2.045648pt;}
._6{width:3.273052pt;}
._1c{width:6.471584pt;}
._21{width:7.890432pt;}
._28{width:9.898906pt;}
._1{width:11.530016pt;}
._22{width:12.603281pt;}
._9{width:13.984869pt;}
._a{width:15.111373pt;}
._e{width:16.312097pt;}
._13{width:17.311086pt;}
._f{width:18.224916pt;}
._12{width:19.606397pt;}
._b{width:21.375898pt;}
._18{width:22.369358pt;}
._c{width:23.543734pt;}
._16{width:25.132319pt;}
._4{width:27.188522pt;}
._15{width:28.160949pt;}
._14{width:30.206597pt;}
._25{width:31.508383pt;}
._24{width:33.208667pt;}
._27{width:34.118187pt;}
._d{width:35.334021pt;}
._1d{width:36.556100pt;}
._17{width:38.893990pt;}
._2b{width:54.993920pt;}
._26{width:78.904320pt;}
._10{width:587.713583pt;}
._20{width:1356.501048pt;}
._1f{width:1537.367854pt;}
._1e{width:1718.234661pt;}
._1b{width:1808.668064pt;}
._23{width:2130.359733pt;}
._11{width:2151.613067pt;}
.fs1d{font-size:22.080000pt;}
.fs19{font-size:25.024000pt;}
.fs15{font-size:27.968000pt;}
.fs5{font-size:31.880533pt;}
.fs1a{font-size:31.920000pt;}
.fse{font-size:32.000000pt;}
.fs1c{font-size:36.000000pt;}
.fs16{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:37.440000pt;}
.fs8{font-size:38.755733pt;}
.fs1b{font-size:40.080000pt;}
.fs4{font-size:40.381867pt;}
.fs12{font-size:40.432000pt;}
.fs18{font-size:40.800000pt;}
.fsa{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs17{font-size:45.424000pt;}
.fs14{font-size:45.600000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs13{font-size:50.768000pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs10{font-size:56.000000pt;}
.fs11{font-size:64.000000pt;}
.fs1{font-size:84.674015pt;}
.fs3{font-size:95.641600pt;}
.y18d{bottom:-494.344153pt;}
.y19c{bottom:-448.136153pt;}
.y19b{bottom:-429.136153pt;}
.y1c2{bottom:-156.746700pt;}
.y15d{bottom:-104.303200pt;}
.y1c9{bottom:-90.746700pt;}
.y11e{bottom:-69.973867pt;}
.y1c8{bottom:-64.287000pt;}
.y180{bottom:-54.863200pt;}
.y1c7{bottom:-52.707000pt;}
.y1a3{bottom:-51.643053pt;}
.y1c6{bottom:-41.187000pt;}
.y19a{bottom:-40.243773pt;}
.y1c5{bottom:-29.606700pt;}
.y199{bottom:-25.500153pt;}
.y17f{bottom:-22.143200pt;}
.y1c4{bottom:-18.086700pt;}
.y198{bottom:-10.908153pt;}
.y1b2{bottom:-10.299053pt;}
.y1c3{bottom:-3.147114pt;}
.y17e{bottom:-2.061880pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:2.348931pt;}
.y1b1{bottom:6.700947pt;}
.y197{bottom:8.019168pt;}
.y1c{bottom:15.234721pt;}
.y4e{bottom:28.346667pt;}
.y14a{bottom:81.480000pt;}
.y1bc{bottom:83.933333pt;}
.y189{bottom:88.793333pt;}
.y20d{bottom:90.500000pt;}
.y4d{bottom:92.108000pt;}
.y1a{bottom:93.018667pt;}
.y149{bottom:98.217333pt;}
.y1bb{bottom:100.670667pt;}
.y273{bottom:104.249333pt;}
.y188{bottom:105.529333pt;}
.y20c{bottom:107.237333pt;}
.y2b5{bottom:108.233333pt;}
.ybe{bottom:108.433333pt;}
.y4c{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.yf4{bottom:111.222667pt;}
.y8b{bottom:112.418667pt;}
.y22e{bottom:114.352000pt;}
.y1ba{bottom:114.981333pt;}
.y1d1{bottom:115.742667pt;}
.y1b9{bottom:117.408000pt;}
.y148{bottom:118.940000pt;}
.y272{bottom:119.592000pt;}
.y2b4{bottom:121.245333pt;}
.y187{bottom:122.266667pt;}
.y4b{bottom:123.156000pt;}
.y2b3{bottom:123.576000pt;}
.y20b{bottom:123.974667pt;}
.y18{bottom:124.820000pt;}
.ybd{bottom:125.170667pt;}
.y4a{bottom:125.581333pt;}
.yf3{bottom:127.960000pt;}
.y8a{bottom:129.156000pt;}
.y1d0{bottom:130.508000pt;}
.y1cf{bottom:132.838667pt;}
.y1b8{bottom:134.145333pt;}
.y271{bottom:134.933333pt;}
.y22d{bottom:137.942667pt;}
.y2b2{bottom:138.918667pt;}
.y186{bottom:139.004000pt;}
.y20a{bottom:140.712000pt;}
.y17{bottom:140.720000pt;}
.ybc{bottom:141.908000pt;}
.y49{bottom:142.318667pt;}
.yf2{bottom:144.697333pt;}
.y147{bottom:144.948000pt;}
.y89{bottom:145.893333pt;}
.y270{bottom:147.945333pt;}
.y1ce{bottom:149.934667pt;}
.y26f{bottom:150.276000pt;}
.y1b7{bottom:150.882667pt;}
.y2b1{bottom:151.930667pt;}
.y22c{bottom:153.564000pt;}
.y2b0{bottom:154.261333pt;}
.y209{bottom:155.022667pt;}
.y185{bottom:155.741333pt;}
.ybb{bottom:156.218667pt;}
.y16{bottom:156.621333pt;}
.y208{bottom:157.449333pt;}
.yba{bottom:158.645333pt;}
.y48{bottom:159.056000pt;}
.yf1{bottom:161.434667pt;}
.y146{bottom:162.044000pt;}
.y88{bottom:162.630667pt;}
.y1cd{bottom:164.698667pt;}
.y26e{bottom:165.618667pt;}
.y1cc{bottom:167.030667pt;}
.y1b6{bottom:167.620000pt;}
.y22b{bottom:169.186667pt;}
.y2af{bottom:169.604000pt;}
.y184{bottom:172.478667pt;}
.y15{bottom:172.521333pt;}
.y47{bottom:175.793333pt;}
.yf0{bottom:178.172000pt;}
.y87{bottom:179.368000pt;}
.y26d{bottom:180.961333pt;}
.y1cb{bottom:181.794667pt;}
.y11b{bottom:181.980933pt;}
.y1ca{bottom:184.126667pt;}
.y1b5{bottom:184.357333pt;}
.y2ae{bottom:184.946667pt;}
.y14{bottom:188.421333pt;}
.y183{bottom:189.216000pt;}
.y46{bottom:192.530667pt;}
.y22a{bottom:192.777333pt;}
.yef{bottom:194.909333pt;}
.y86{bottom:196.105333pt;}
.y26c{bottom:196.304000pt;}
.y2ad{bottom:200.289333pt;}
.y1bf{bottom:204.064000pt;}
.y13{bottom:204.322667pt;}
.y1b4{bottom:205.080000pt;}
.y207{bottom:208.060000pt;}
.y229{bottom:208.398667pt;}
.yb9{bottom:209.256000pt;}
.y45{bottom:209.268000pt;}
.y182{bottom:209.938667pt;}
.y85{bottom:210.416000pt;}
.yee{bottom:211.646667pt;}
.y84{bottom:212.841333pt;}
.y2ac{bottom:215.632000pt;}
.y206{bottom:224.797333pt;}
.yb7{bottom:225.993333pt;}
.y44{bottom:226.005333pt;}
.y26b{bottom:226.989333pt;}
.y83{bottom:227.153333pt;}
.yed{bottom:228.384000pt;}
.y82{bottom:229.578667pt;}
.yb8{bottom:230.814667pt;}
.y2ab{bottom:230.974667pt;}
.y228{bottom:231.990667pt;}
.y1b3{bottom:232.126667pt;}
.y181{bottom:236.985333pt;}
.y205{bottom:239.108000pt;}
.y203{bottom:241.534667pt;}
.y26a{bottom:242.332000pt;}
.yb6{bottom:242.730667pt;}
.y43{bottom:242.742667pt;}
.yec{bottom:245.121333pt;}
.y81{bottom:246.316000pt;}
.y204{bottom:246.356000pt;}
.y144{bottom:248.828907pt;}
.y1a0{bottom:252.063660pt;}
.y227{bottom:255.582667pt;}
.y269{bottom:257.674667pt;}
.y202{bottom:258.272000pt;}
.yb5{bottom:259.468000pt;}
.y42{bottom:259.480000pt;}
.y15a{bottom:259.579600pt;}
.y2aa{bottom:261.658667pt;}
.yeb{bottom:261.858667pt;}
.y80{bottom:263.053333pt;}
.y143{bottom:265.948411pt;}
.y17d{bottom:266.257688pt;}
.y12{bottom:266.804000pt;}
.y268{bottom:270.685333pt;}
.y267{bottom:273.016000pt;}
.yb4{bottom:273.778667pt;}
.y201{bottom:275.009333pt;}
.yb3{bottom:276.205333pt;}
.y41{bottom:276.217333pt;}
.y2a9{bottom:277.001333pt;}
.yea{bottom:278.596000pt;}
.y226{bottom:279.173333pt;}
.y7f{bottom:279.790667pt;}
.y11{bottom:282.705333pt;}
.y142{bottom:283.067915pt;}
.y17c{bottom:283.377192pt;}
.y196{bottom:287.243168pt;}
.y266{bottom:288.358667pt;}
.y200{bottom:291.746667pt;}
.y2a8{bottom:292.344000pt;}
.yb2{bottom:292.942667pt;}
.y225{bottom:294.794667pt;}
.ye9{bottom:295.333333pt;}
.y7e{bottom:296.528000pt;}
.y40{bottom:296.940000pt;}
.y10{bottom:298.605333pt;}
.y141{bottom:300.187419pt;}
.y17b{bottom:301.216317pt;}
.y265{bottom:301.370667pt;}
.y195{bottom:303.506697pt;}
.y264{bottom:303.701333pt;}
.y2a7{bottom:307.686667pt;}
.y1ff{bottom:308.484000pt;}
.yb1{bottom:309.680000pt;}
.y224{bottom:310.417333pt;}
.y7d{bottom:313.265333pt;}
.yf{bottom:314.505333pt;}
.ye8{bottom:316.056000pt;}
.y140{bottom:317.226763pt;}
.y263{bottom:319.044000pt;}
.y194{bottom:319.770225pt;}
.y2a6{bottom:320.697333pt;}
.y17a{bottom:320.897792pt;}
.y2a5{bottom:323.029333pt;}
.y1fe{bottom:325.221333pt;}
.y7c{bottom:330.002667pt;}
.yb0{bottom:330.401333pt;}
.y262{bottom:332.056000pt;}
.y223{bottom:334.008000pt;}
.y13f{bottom:334.348333pt;}
.y261{bottom:334.386667pt;}
.y193{bottom:335.957602pt;}
.y2a4{bottom:336.040000pt;}
.y179{bottom:338.017296pt;}
.y2a3{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y1fd{bottom:341.958667pt;}
.ye7{bottom:345.944000pt;}
.y7b{bottom:346.740000pt;}
.yaf{bottom:348.334667pt;}
.y222{bottom:349.629333pt;}
.y260{bottom:349.729333pt;}
.y13e{bottom:351.387677pt;}
.y192{bottom:352.221131pt;}
.y2a2{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y1b0{bottom:354.657287pt;}
.y178{bottom:355.136120pt;}
.y1fc{bottom:358.696000pt;}
.ye6{bottom:362.680000pt;}
.y25f{bottom:362.740000pt;}
.y7a{bottom:363.477333pt;}
.y3f{bottom:363.740000pt;}
.y25e{bottom:365.072000pt;}
.y221{bottom:365.250667pt;}
.y1af{bottom:367.848947pt;}
.y191{bottom:368.408508pt;}
.y13d{bottom:368.507181pt;}
.y2a1{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.y177{bottom:372.181160pt;}
.y1fa{bottom:375.433333pt;}
.y25d{bottom:378.082667pt;}
.yae{bottom:378.222667pt;}
.ye5{bottom:379.417333pt;}
.y79{bottom:380.214667pt;}
.y1fb{bottom:380.254667pt;}
.y25c{bottom:380.414667pt;}
.y220{bottom:380.872000pt;}
.y1ae{bottom:380.904947pt;}
.y2a0{bottom:382.068000pt;}
.y29f{bottom:384.398667pt;}
.y190{bottom:384.672037pt;}
.y13c{bottom:385.626685pt;}
.y176{bottom:389.300664pt;}
.y1f8{bottom:392.170667pt;}
.yac{bottom:394.960000pt;}
.yb{bottom:395.376000pt;}
.y25b{bottom:395.756000pt;}
.ye4{bottom:396.154667pt;}
.y21f{bottom:396.494667pt;}
.y78{bottom:396.952000pt;}
.y3e{bottom:396.974667pt;}
.y1f9{bottom:396.992000pt;}
.y1ad{bottom:397.839918pt;}
.y29e{bottom:399.741333pt;}
.yad{bottom:399.781333pt;}
.y18f{bottom:400.935565pt;}
.y175{bottom:406.420168pt;}
.y13b{bottom:406.666013pt;}
.y1f7{bottom:408.908000pt;}
.y25a{bottom:411.098667pt;}
.yaa{bottom:411.697333pt;}
.y21e{bottom:412.116000pt;}
.ye2{bottom:412.892000pt;}
.y77{bottom:413.689333pt;}
.y3c{bottom:414.270667pt;}
.y29d{bottom:415.084000pt;}
.yab{bottom:416.518667pt;}
.y18e{bottom:417.124211pt;}
.ye3{bottom:417.714667pt;}
.y3d{bottom:418.610667pt;}
.ya{bottom:419.246667pt;}
.y174{bottom:423.459512pt;}
.y1f6{bottom:425.645333pt;}
.y259{bottom:426.441333pt;}
.ya9{bottom:428.434667pt;}
.ye1{bottom:429.629333pt;}
.y76{bottom:430.426667pt;}
.y3a{bottom:431.565333pt;}
.y9{bottom:435.146667pt;}
.y21d{bottom:435.706667pt;}
.y3b{bottom:435.905333pt;}
.y11a{bottom:437.401333pt;}
.y258{bottom:439.453333pt;}
.y13a{bottom:439.785453pt;}
.y173{bottom:440.579016pt;}
.y257{bottom:441.784000pt;}
.y1f5{bottom:442.382667pt;}
.ya7{bottom:445.172000pt;}
.y29c{bottom:445.769333pt;}
.ye0{bottom:446.366667pt;}
.y75{bottom:447.164000pt;}
.y39{bottom:448.861333pt;}
.ya8{bottom:449.993333pt;}
.y8{bottom:451.048000pt;}
.y21c{bottom:451.746667pt;}
.y119{bottom:454.138667pt;}
.y139{bottom:456.826629pt;}
.y256{bottom:457.126667pt;}
.y172{bottom:457.618360pt;}
.y1f4{bottom:459.118667pt;}
.y29b{bottom:461.112000pt;}
.ya5{bottom:461.909333pt;}
.ydf{bottom:463.104000pt;}
.y18c{bottom:463.331961pt;}
.y74{bottom:463.901333pt;}
.y37{bottom:466.156000pt;}
.ya6{bottom:466.730667pt;}
.y7{bottom:466.948000pt;}
.y21b{bottom:467.786667pt;}
.y38{bottom:470.496000pt;}
.y118{bottom:470.876000pt;}
.y18b{bottom:471.463847pt;}
.y255{bottom:472.469333pt;}
.y1f3{bottom:473.430667pt;}
.y138{bottom:473.947637pt;}
.y1f2{bottom:475.856000pt;}
.y29a{bottom:476.454667pt;}
.ya4{bottom:478.646667pt;}
.y171{bottom:478.737848pt;}
.yde{bottom:479.841333pt;}
.y73{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.y36{bottom:483.450667pt;}
.y21a{bottom:483.826667pt;}
.y117{bottom:487.613333pt;}
.y254{bottom:487.812000pt;}
.y137{bottom:491.067141pt;}
.y299{bottom:491.797333pt;}
.y1f1{bottom:492.593333pt;}
.ya3{bottom:495.384000pt;}
.ydd{bottom:496.578667pt;}
.y72{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.y219{bottom:499.866667pt;}
.y35{bottom:500.746667pt;}
.y253{bottom:503.154667pt;}
.y116{bottom:504.350667pt;}
.y298{bottom:507.138667pt;}
.y136{bottom:508.106485pt;}
.y170{bottom:511.857288pt;}
.ya2{bottom:512.121333pt;}
.ydc{bottom:513.316000pt;}
.y71{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.y218{bottom:515.906667pt;}
.y34{bottom:518.041333pt;}
.y252{bottom:518.497333pt;}
.y115{bottom:518.661333pt;}
.y114{bottom:521.088000pt;}
.y297{bottom:522.481333pt;}
.y135{bottom:525.225989pt;}
.ya1{bottom:528.857333pt;}
.y16f{bottom:528.896632pt;}
.ydb{bottom:530.053333pt;}
.y3{bottom:530.549333pt;}
.y70{bottom:530.850667pt;}
.y251{bottom:531.508000pt;}
.y217{bottom:531.946667pt;}
.y250{bottom:533.838667pt;}
.y33{bottom:535.336000pt;}
.y296{bottom:535.493333pt;}
.y295{bottom:537.824000pt;}
.y112{bottom:537.825333pt;}
.y134{bottom:542.345493pt;}
.y113{bottom:542.646667pt;}
.y1f0{bottom:543.204000pt;}
.y16e{bottom:546.016136pt;}
.y2{bottom:546.450667pt;}
.yd9{bottom:546.790667pt;}
.y6f{bottom:547.588000pt;}
.y24f{bottom:549.181333pt;}
.ya0{bottom:549.580000pt;}
.y294{bottom:550.836000pt;}
.yda{bottom:551.613333pt;}
.y32{bottom:552.632000pt;}
.y293{bottom:553.166667pt;}
.y111{bottom:554.562667pt;}
.y133{bottom:559.386173pt;}
.y1ef{bottom:559.941333pt;}
.y24e{bottom:562.193333pt;}
.y1{bottom:562.350667pt;}
.y16d{bottom:563.056816pt;}
.yd7{bottom:563.528000pt;}
.y216{bottom:563.926667pt;}
.y6e{bottom:564.325333pt;}
.y24d{bottom:564.524000pt;}
.yd8{bottom:568.349333pt;}
.y292{bottom:568.509333pt;}
.y31{bottom:569.926667pt;}
.y110{bottom:571.300000pt;}
.y132{bottom:576.505677pt;}
.y1ee{bottom:576.678667pt;}
.y24c{bottom:577.536000pt;}
.y9f{bottom:579.468000pt;}
.y24b{bottom:579.866667pt;}
.yd6{bottom:580.265333pt;}
.y16c{bottom:580.416672pt;}
.y215{bottom:580.664000pt;}
.y6d{bottom:581.062667pt;}
.y291{bottom:581.520000pt;}
.y290{bottom:583.852000pt;}
.y159{bottom:585.086667pt;}
.y30{bottom:587.222667pt;}
.y10f{bottom:592.022667pt;}
.y1ed{bottom:593.416000pt;}
.y131{bottom:593.546357pt;}
.y9e{bottom:593.778667pt;}
.y24a{bottom:595.209333pt;}
.y9d{bottom:596.205333pt;}
.yd5{bottom:597.002667pt;}
.y214{bottom:597.401333pt;}
.y6c{bottom:597.800000pt;}
.y16b{bottom:598.097296pt;}
.y28f{bottom:599.194667pt;}
.y1c1{bottom:599.313390pt;}
.y2f{bottom:604.517333pt;}
.y1c0{bottom:605.733300pt;}
.y1eb{bottom:610.153333pt;}
.y9b{bottom:610.516000pt;}
.y249{bottom:610.552000pt;}
.y130{bottom:610.665861pt;}
.y9c{bottom:610.950667pt;}
.y158{bottom:611.313333pt;}
.y19f{bottom:611.488000pt;}
.y9a{bottom:612.942667pt;}
.yd4{bottom:613.740000pt;}
.y213{bottom:614.138667pt;}
.y6b{bottom:614.537333pt;}
.y1ec{bottom:614.974667pt;}
.y16a{bottom:615.217296pt;}
.y2e{bottom:621.812000pt;}
.y10e{bottom:621.910667pt;}
.y248{bottom:625.894667pt;}
.y1ea{bottom:626.890667pt;}
.y99{bottom:627.253333pt;}
.y12f{bottom:627.785365pt;}
.y157{bottom:628.050667pt;}
.y19e{bottom:628.584000pt;}
.y98{bottom:629.680000pt;}
.y28e{bottom:629.878667pt;}
.yd3{bottom:630.477333pt;}
.y212{bottom:630.876000pt;}
.y6a{bottom:631.274667pt;}
.y169{bottom:632.338688pt;}
.y10c{bottom:638.648000pt;}
.y2d{bottom:639.108000pt;}
.y247{bottom:641.237333pt;}
.y10d{bottom:643.469333pt;}
.y1e9{bottom:643.628000pt;}
.y97{bottom:643.990667pt;}
.y28d{bottom:645.221333pt;}
.y19d{bottom:645.678667pt;}
.y96{bottom:646.417333pt;}
.y156{bottom:647.214667pt;}
.y211{bottom:647.613333pt;}
.y1ac{bottom:647.671918pt;}
.y68{bottom:648.012000pt;}
.y12e{bottom:648.826029pt;}
.yd2{bottom:651.200000pt;}
.y69{bottom:652.833333pt;}
.y168{bottom:653.378016pt;}
.y10a{bottom:655.385333pt;}
.y2c{bottom:656.402667pt;}
.y246{bottom:656.578667pt;}
.y28c{bottom:658.233333pt;}
.y10b{bottom:660.206667pt;}
.y1e8{bottom:660.365333pt;}
.y28b{bottom:660.564000pt;}
.y95{bottom:660.728000pt;}
.y1ab{bottom:662.223497pt;}
.y94{bottom:663.154667pt;}
.y155{bottom:663.952000pt;}
.y210{bottom:664.350667pt;}
.y67{bottom:664.749333pt;}
.y18a{bottom:668.273333pt;}
.y12d{bottom:669.866693pt;}
.y245{bottom:671.921333pt;}
.y109{bottom:672.122667pt;}
.y28a{bottom:673.576000pt;}
.y289{bottom:675.906667pt;}
.y1aa{bottom:676.775075pt;}
.y1e7{bottom:677.102667pt;}
.y93{bottom:677.465333pt;}
.y92{bottom:679.892000pt;}
.y154{bottom:680.689333pt;}
.yd1{bottom:681.088000pt;}
.y66{bottom:681.485333pt;}
.y167{bottom:686.497456pt;}
.y244{bottom:687.264000pt;}
.y2b{bottom:688.406667pt;}
.y108{bottom:688.858667pt;}
.y288{bottom:691.249333pt;}
.y1a9{bottom:691.258517pt;}
.y1e6{bottom:693.840000pt;}
.y91{bottom:694.202667pt;}
.y90{bottom:696.629333pt;}
.y153{bottom:697.426667pt;}
.yd0{bottom:697.825333pt;}
.y65{bottom:698.222667pt;}
.y243{bottom:702.606667pt;}
.y2a{bottom:702.752000pt;}
.y12c{bottom:702.986629pt;}
.y166{bottom:703.537296pt;}
.y107{bottom:705.596000pt;}
.y1a8{bottom:705.810096pt;}
.y287{bottom:706.592000pt;}
.y1e5{bottom:708.150667pt;}
.y1e4{bottom:710.577333pt;}
.y8f{bottom:710.940000pt;}
.y8e{bottom:713.366667pt;}
.y152{bottom:714.164000pt;}
.yce{bottom:714.562667pt;}
.y64{bottom:714.960000pt;}
.y29{bottom:717.098667pt;}
.y242{bottom:717.949333pt;}
.ycf{bottom:719.384000pt;}
.y12b{bottom:720.106629pt;}
.y1a7{bottom:720.293538pt;}
.y165{bottom:720.657296pt;}
.y286{bottom:721.934667pt;}
.y106{bottom:722.333333pt;}
.y1e3{bottom:727.314667pt;}
.ycd{bottom:731.300000pt;}
.y63{bottom:731.697333pt;}
.y241{bottom:733.292000pt;}
.y8d{bottom:734.089333pt;}
.y1a6{bottom:734.845117pt;}
.y151{bottom:734.885333pt;}
.y28{bottom:735.302667pt;}
.y12a{bottom:737.226853pt;}
.y285{bottom:737.277333pt;}
.y164{bottom:737.775952pt;}
.y105{bottom:739.070667pt;}
.ycc{bottom:748.036000pt;}
.y62{bottom:748.434667pt;}
.y240{bottom:748.634667pt;}
.y1a5{bottom:749.396695pt;}
.y27{bottom:749.649333pt;}
.y8c{bottom:752.021333pt;}
.y284{bottom:752.620000pt;}
.y163{bottom:754.816632pt;}
.y104{bottom:755.808000pt;}
.y128{bottom:758.586133pt;}
.y26{bottom:760.137333pt;}
.y127{bottom:761.306931pt;}
.y20f{bottom:762.348000pt;}
.y61{bottom:762.745333pt;}
.y1a4{bottom:763.881273pt;}
.y23f{bottom:763.977333pt;}
.ycb{bottom:764.773333pt;}
.y60{bottom:765.172000pt;}
.y283{bottom:767.961333pt;}
.y129{bottom:770.266133pt;}
.y125{bottom:770.268597pt;}
.y162{bottom:771.936136pt;}
.y103{bottom:772.545333pt;}
.y126{bottom:777.626133pt;}
.y1e2{bottom:777.924000pt;}
.y25{bottom:778.341333pt;}
.y23e{bottom:779.320000pt;}
.y282{bottom:780.973333pt;}
.yca{bottom:781.510667pt;}
.y5f{bottom:781.909333pt;}
.y281{bottom:783.304000pt;}
.y24{bottom:788.829333pt;}
.y102{bottom:789.282667pt;}
.y161{bottom:792.976800pt;}
.y1e1{bottom:794.661333pt;}
.yc9{bottom:798.248000pt;}
.y5e{bottom:798.646667pt;}
.y124{bottom:804.027981pt;}
.y1a2{bottom:805.225049pt;}
.y101{bottom:806.020000pt;}
.y23{bottom:807.033333pt;}
.y23d{bottom:807.673333pt;}
.y23c{bottom:810.004000pt;}
.y1e0{bottom:811.398667pt;}
.y1a1{bottom:812.500947pt;}
.y280{bottom:813.989333pt;}
.yc8{bottom:814.985333pt;}
.y5d{bottom:815.384000pt;}
.y123{bottom:821.147485pt;}
.y23b{bottom:825.346667pt;}
.y160{bottom:825.697200pt;}
.y100{bottom:826.742667pt;}
.y1df{bottom:828.136000pt;}
.y27f{bottom:829.332000pt;}
.yc7{bottom:831.722667pt;}
.y5c{bottom:832.121333pt;}
.y122{bottom:838.186829pt;}
.y23a{bottom:840.689333pt;}
.y15f{bottom:841.216800pt;}
.y22{bottom:844.452000pt;}
.y27e{bottom:844.674667pt;}
.yff{bottom:844.676000pt;}
.y1de{bottom:844.873333pt;}
.yc6{bottom:848.460000pt;}
.y5b{bottom:848.858667pt;}
.y121{bottom:855.306333pt;}
.y239{bottom:856.032000pt;}
.y15e{bottom:856.576800pt;}
.y27d{bottom:857.685333pt;}
.y1dc{bottom:859.184000pt;}
.y27c{bottom:860.017333pt;}
.y21{bottom:861.189333pt;}
.y1db{bottom:861.610667pt;}
.y150{bottom:862.770667pt;}
.y5a{bottom:863.169333pt;}
.yc5{bottom:865.197333pt;}
.y59{bottom:865.596000pt;}
.y1dd{bottom:866.433333pt;}
.y20e{bottom:869.182667pt;}
.y1be{bottom:870.020000pt;}
.y238{bottom:871.374667pt;}
.y120{bottom:872.425837pt;}
.yfe{bottom:874.564000pt;}
.y27b{bottom:875.360000pt;}
.y1da{bottom:878.348000pt;}
.y14f{bottom:879.508000pt;}
.yc4{bottom:881.934667pt;}
.y58{bottom:882.333333pt;}
.y237{bottom:886.717333pt;}
.y1bd{bottom:886.757333pt;}
.yfd{bottom:888.869333pt;}
.yfb{bottom:888.874667pt;}
.yfc{bottom:889.308000pt;}
.y11f{bottom:889.466517pt;}
.y279{bottom:890.701333pt;}
.y27a{bottom:890.702667pt;}
.yfa{bottom:891.301333pt;}
.y1d9{bottom:895.085333pt;}
.y57{bottom:896.644000pt;}
.y20{bottom:896.672000pt;}
.yc3{bottom:898.672000pt;}
.y56{bottom:899.070667pt;}
.y236{bottom:899.728000pt;}
.y235{bottom:902.060000pt;}
.y14e{bottom:902.657333pt;}
.y15c{bottom:903.776920pt;}
.yf9{bottom:905.606667pt;}
.yf8{bottom:905.612000pt;}
.y278{bottom:906.044000pt;}
.yf7{bottom:908.037333pt;}
.y1d7{bottom:911.822667pt;}
.y15b{bottom:912.336800pt;}
.yc2{bottom:912.982667pt;}
.yc1{bottom:915.409333pt;}
.y55{bottom:915.808000pt;}
.y1d8{bottom:916.645333pt;}
.y234{bottom:917.401333pt;}
.y277{bottom:921.386667pt;}
.y1f{bottom:921.778667pt;}
.y1d6{bottom:926.133333pt;}
.y1d5{bottom:928.560000pt;}
.y233{bottom:930.413333pt;}
.y54{bottom:932.545333pt;}
.y232{bottom:932.744000pt;}
.yf6{bottom:935.381333pt;}
.yc0{bottom:936.132000pt;}
.y276{bottom:936.729333pt;}
.y11d{bottom:938.106253pt;}
.y1d4{bottom:942.870667pt;}
.yf5{bottom:944.493333pt;}
.y1d3{bottom:945.297333pt;}
.y11c{bottom:946.666133pt;}
.y14c{bottom:946.856000pt;}
.y1e{bottom:946.884000pt;}
.y231{bottom:948.086667pt;}
.y53{bottom:949.282667pt;}
.y275{bottom:952.072000pt;}
.y14d{bottom:954.104000pt;}
.y230{bottom:961.098667pt;}
.y1d2{bottom:962.034667pt;}
.y22f{bottom:963.429333pt;}
.y52{bottom:966.020000pt;}
.y274{bottom:967.414667pt;}
.y14b{bottom:970.841333pt;}
.y1d{bottom:971.990667pt;}
.y51{bottom:980.330667pt;}
.y50{bottom:982.757333pt;}
.ybf{bottom:987.578667pt;}
.y1b{bottom:1010.645333pt;}
.y4f{bottom:1038.548000pt;}
.h12{height:20.660233pt;}
.h21{height:26.416406pt;}
.h8{height:27.672303pt;}
.h34{height:29.519766pt;}
.h18{height:29.599908pt;}
.h2{height:32.284045pt;}
.hc{height:33.235456pt;}
.h36{height:33.292969pt;}
.h37{height:33.294169pt;}
.h30{height:33.455734pt;}
.ha{height:34.574438pt;}
.h10{height:35.051460pt;}
.h11{height:36.891307pt;}
.h9{height:36.896250pt;}
.h13{height:36.928037pt;}
.h35{height:37.066172pt;}
.h2c{height:37.391703pt;}
.h1f{height:37.705469pt;}
.h32{height:37.732031pt;}
.he{height:38.415786pt;}
.h24{height:38.775312pt;}
.h5{height:38.947124pt;}
.h23{height:39.192812pt;}
.h1a{height:39.359687pt;}
.hb{height:41.508454pt;}
.h31{height:42.008328pt;}
.h2e{height:42.171094pt;}
.h38{height:43.660390pt;}
.h26{height:44.390625pt;}
.h3{height:45.271688pt;}
.hf{height:46.120196pt;}
.h2d{height:46.950484pt;}
.h7{height:48.481423pt;}
.h15{height:48.511220pt;}
.h20{height:48.585469pt;}
.h1e{height:48.586002pt;}
.h1b{height:49.421563pt;}
.h29{height:49.424283pt;}
.h27{height:49.424955pt;}
.hd{height:49.644045pt;}
.h22{height:50.062843pt;}
.h1d{height:50.825469pt;}
.h28{height:51.789574pt;}
.h14{height:54.342127pt;}
.h4{height:57.408982pt;}
.h2a{height:59.189431pt;}
.h6{height:69.148877pt;}
.h16{height:76.943067pt;}
.h1c{height:80.256093pt;}
.h17{height:82.568196pt;}
.h19{height:235.444400pt;}
.h25{height:249.460400pt;}
.h2b{height:276.733733pt;}
.h2f{height:344.994940pt;}
.h33{height:581.142000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:179.144857pt;}
.w3{width:300.472000pt;}
.w6{width:469.897907pt;}
.w7{width:507.831600pt;}
.w5{width:579.297587pt;}
.w4{width:607.534667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb9{left:-170.626667pt;}
.xdc{left:-60.992827pt;}
.xcf{left:-43.796000pt;}
.xd4{left:-41.725013pt;}
.xe7{left:-6.238400pt;}
.x0{left:0.000000pt;}
.xba{left:3.213653pt;}
.xbb{left:31.534181pt;}
.x1{left:47.621333pt;}
.x2{left:53.281081pt;}
.x101{left:76.309333pt;}
.xde{left:86.770310pt;}
.xce{left:92.894667pt;}
.x11b{left:95.030667pt;}
.x11c{left:100.344000pt;}
.xd3{left:107.014413pt;}
.xdd{left:110.842759pt;}
.x11d{left:118.212000pt;}
.xd6{left:123.422021pt;}
.xd0{left:130.044000pt;}
.xd5{left:150.326523pt;}
.xd1{left:158.364528pt;}
.xbc{left:161.454837pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x91{left:225.754667pt;}
.x118{left:226.781333pt;}
.xa0{left:228.600000pt;}
.x10a{left:232.725333pt;}
.x7d{left:235.537333pt;}
.x63{left:236.821333pt;}
.x9b{left:238.634667pt;}
.x4{left:239.924000pt;}
.x35{left:241.537333pt;}
.x64{left:242.533333pt;}
.x8d{left:245.358667pt;}
.x7e{left:246.297333pt;}
.xc9{left:248.889333pt;}
.x19{left:250.204000pt;}
.xfa{left:251.622667pt;}
.x36{left:254.820000pt;}
.xc0{left:256.390667pt;}
.x7f{left:257.570667pt;}
.xfb{left:259.828000pt;}
.xeb{left:263.238667pt;}
.x97{left:264.810667pt;}
.xc1{left:266.585333pt;}
.x80{left:268.330667pt;}
.xbf{left:272.066667pt;}
.x6{left:273.917333pt;}
.x59{left:275.062667pt;}
.x6a{left:276.945333pt;}
.x82{left:279.690667pt;}
.x18{left:283.496000pt;}
.xe9{left:285.860000pt;}
.x5a{left:288.345333pt;}
.xa7{left:289.550667pt;}
.x83{left:290.521333pt;}
.x5b{left:291.653333pt;}
.x81{left:293.097333pt;}
.x109{left:294.530667pt;}
.x98{left:295.680000pt;}
.x37{left:298.033333pt;}
.x84{left:301.281333pt;}
.x11e{left:302.273333pt;}
.x8a{left:303.328000pt;}
.x5c{left:304.937333pt;}
.xc2{left:306.128000pt;}
.xac{left:308.360000pt;}
.x41{left:309.405333pt;}
.x1a{left:310.477333pt;}
.xc3{left:311.840000pt;}
.xa2{left:312.990667pt;}
.x4e{left:315.097333pt;}
.x1b{left:317.118667pt;}
.x42{left:318.433333pt;}
.xb1{left:320.492000pt;}
.x68{left:322.604000pt;}
.x1c{left:323.893333pt;}
.x4f{left:328.381333pt;}
.x1d{left:330.534667pt;}
.x50{left:331.634667pt;}
.x71{left:333.812000pt;}
.x6b{left:335.673333pt;}
.x3c{left:337.650667pt;}
.x69{left:338.800000pt;}
.xbe{left:339.933333pt;}
.x3d{left:341.037333pt;}
.x88{left:343.792000pt;}
.x51{left:344.918667pt;}
.x47{left:346.161333pt;}
.x100{left:347.289333pt;}
.x72{left:350.354667pt;}
.x3a{left:351.486667pt;}
.xbd{left:353.213333pt;}
.x3e{left:354.321333pt;}
.x73{left:356.066667pt;}
.x48{left:359.444000pt;}
.x3b{left:360.517333pt;}
.x7a{left:361.461333pt;}
.xd{left:363.505333pt;}
.x58{left:364.856000pt;}
.x7b{left:367.173333pt;}
.x49{left:368.208000pt;}
.xe{left:370.889333pt;}
.x6c{left:374.552000pt;}
.x13{left:376.800000pt;}
.x7c{left:377.822667pt;}
.x89{left:379.360000pt;}
.x43{left:381.582667pt;}
.xf4{left:382.510667pt;}
.x14{left:384.184000pt;}
.xb0{left:385.244000pt;}
.xa1{left:386.473333pt;}
.x38{left:388.008000pt;}
.xf5{left:391.550667pt;}
.x6f{left:392.496000pt;}
.xaf{left:393.741333pt;}
.x44{left:394.866667pt;}
.x8b{left:397.648000pt;}
.x39{left:401.292000pt;}
.xf{left:402.784000pt;}
.x4a{left:403.892000pt;}
.x53{left:406.669333pt;}
.x110{left:411.622667pt;}
.x70{left:413.652000pt;}
.x4b{left:417.176000pt;}
.x10{left:419.453333pt;}
.x111{left:421.716000pt;}
.x65{left:422.685333pt;}
.x10f{left:423.992000pt;}
.x11{left:426.349333pt;}
.xd9{left:428.337333pt;}
.x66{left:429.326667pt;}
.x28{left:433.152000pt;}
.xda{left:435.642667pt;}
.x15{left:436.961333pt;}
.x12{left:439.310667pt;}
.x16{left:443.857333pt;}
.x67{left:445.997333pt;}
.x29{left:449.824000pt;}
.xfc{left:450.964000pt;}
.x8c{left:454.058667pt;}
.x17{left:456.818667pt;}
.xc6{left:459.705333pt;}
.xdf{left:465.055173pt;}
.xb2{left:466.548000pt;}
.x2a{left:469.881333pt;}
.xfd{left:471.644000pt;}
.xc7{left:472.989333pt;}
.x74{left:474.833333pt;}
.xb3{left:476.316000pt;}
.xec{left:477.270667pt;}
.xb4{left:483.090667pt;}
.x8e{left:488.142667pt;}
.xe3{left:489.357333pt;}
.xb5{left:490.453333pt;}
.x9c{left:493.200000pt;}
.x8f{left:494.192000pt;}
.xe4{left:497.562667pt;}
.xa9{left:498.653333pt;}
.x54{left:499.550667pt;}
.x106{left:503.632000pt;}
.x108{left:505.809333pt;}
.xe8{left:507.421870pt;}
.xaa{left:509.198667pt;}
.xed{left:511.745333pt;}
.x55{left:512.833333pt;}
.xa8{left:514.012000pt;}
.x11f{left:515.194667pt;}
.x4c{left:517.382667pt;}
.xc8{left:519.721333pt;}
.xc4{left:521.730667pt;}
.x4d{left:523.094667pt;}
.x120{left:525.328000pt;}
.xc5{left:527.442667pt;}
.xee{left:529.072000pt;}
.xe5{left:530.780000pt;}
.xf6{left:532.233333pt;}
.x121{left:533.980000pt;}
.xa3{left:536.733333pt;}
.x2d{left:538.129333pt;}
.x45{left:540.064000pt;}
.x85{left:542.517333pt;}
.x5d{left:544.210667pt;}
.xd7{left:546.210987pt;}
.xe0{left:547.720000pt;}
.x5e{left:549.922667pt;}
.x2e{left:551.413333pt;}
.x46{left:553.346667pt;}
.x86{left:555.800000pt;}
.xa4{left:558.432000pt;}
.x10b{left:559.436000pt;}
.xf8{left:560.474667pt;}
.x104{left:564.058667pt;}
.x9d{left:565.769333pt;}
.xe6{left:569.298667pt;}
.x10d{left:571.126667pt;}
.x105{left:572.361333pt;}
.x92{left:574.034667pt;}
.xef{left:577.142667pt;}
.xfe{left:578.438667pt;}
.xe1{left:583.477333pt;}
.xb6{left:584.876000pt;}
.x107{left:586.092000pt;}
.x114{left:588.718667pt;}
.xb7{left:590.588000pt;}
.x93{left:591.598667pt;}
.x75{left:593.070667pt;}
.xf7{left:595.212000pt;}
.x76{left:598.782667pt;}
.xff{left:600.673333pt;}
.xb8{left:601.572000pt;}
.xdb{left:602.645333pt;}
.xd2{left:607.483936pt;}
.x5f{left:609.793333pt;}
.xf0{left:611.557333pt;}
.xa5{left:613.266667pt;}
.x60{left:615.505333pt;}
.x2b{left:620.938667pt;}
.xf9{left:623.241333pt;}
.xe2{left:624.460000pt;}
.xa6{left:626.550667pt;}
.x56{left:627.958667pt;}
.xf1{left:628.885333pt;}
.x2c{left:629.945333pt;}
.x6d{left:632.008000pt;}
.x119{left:633.322667pt;}
.xad{left:634.325333pt;}
.xf2{left:636.493333pt;}
.x2f{left:638.096000pt;}
.x57{left:641.242667pt;}
.x112{left:644.222667pt;}
.xae{left:645.536000pt;}
.x30{left:647.140000pt;}
.x61{left:649.357333pt;}
.x31{left:651.484000pt;}
.xf3{left:653.821333pt;}
.x62{left:655.069333pt;}
.x11a{left:657.233333pt;}
.x94{left:658.122667pt;}
.x6e{left:659.230667pt;}
.xca{left:661.196000pt;}
.x115{left:663.814667pt;}
.x32{left:664.766667pt;}
.x22{left:666.368000pt;}
.x113{left:668.133333pt;}
.x116{left:669.128000pt;}
.x7{left:670.445333pt;}
.x95{left:671.406667pt;}
.x23{left:673.010667pt;}
.xcb{left:674.480000pt;}
.x3f{left:675.550667pt;}
.x8{left:677.829333pt;}
.x10c{left:678.781333pt;}
.x24{left:679.785333pt;}
.x102{left:681.950667pt;}
.x117{left:684.406667pt;}
.x25{left:686.426667pt;}
.x40{left:688.834667pt;}
.x9e{left:691.406667pt;}
.x96{left:694.046667pt;}
.xea{left:696.850667pt;}
.xcc{left:697.876000pt;}
.x52{left:699.042667pt;}
.x9f{left:700.782667pt;}
.x77{left:702.237333pt;}
.xd8{left:704.821333pt;}
.x87{left:706.860000pt;}
.x78{left:707.949333pt;}
.x9{left:708.953333pt;}
.x33{left:709.928000pt;}
.xcd{left:711.158667pt;}
.xab{left:712.952000pt;}
.x90{left:716.078667pt;}
.x79{left:718.780000pt;}
.x103{left:720.236000pt;}
.x10e{left:722.344000pt;}
.x1e{left:723.454667pt;}
.xa{left:724.906667pt;}
.x34{left:726.473333pt;}
.x99{left:728.274667pt;}
.x1f{left:730.097333pt;}
.xb{left:731.789333pt;}
.x20{left:733.484000pt;}
.x26{left:736.805333pt;}
.x21{left:740.126667pt;}
.x9a{left:741.558667pt;}
.x27{left:742.517333pt;}
.xc{left:744.750667pt;}
}


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