
/* 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_3baea34ccbbc.woff")format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_9a39988db4d5.woff")format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_de994e698ef7.woff")format("woff");}.ff3{font-family:ff3;line-height:0.995000;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_c4637aa2c5f5.woff")format("woff");}.ff4{font-family:ff4;line-height:1.055000;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_322d98edb43d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.043000;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_2d663e064438.woff")format("woff");}.ff6{font-family:ff6;line-height:0.689000;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_968260130220.woff")format("woff");}.ff7{font-family:ff7;line-height:0.718000;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_c5a366fe5e9c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.743000;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_3371ebdf4578.woff")format("woff");}.ff9{font-family:ff9;line-height:1.007000;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_4b1088e2d5a8.woff")format("woff");}.ffa{font-family:ffa;line-height:1.007000;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_de994e698ef7.woff")format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_9dedd8ef4fef.woff")format("woff");}.ffc{font-family:ffc;line-height:1.007000;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_7e753ce86591.woff")format("woff");}.ffd{font-family:ffd;line-height:0.995000;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_2901d5672f5b.woff")format("woff");}.ffe{font-family:ffe;line-height:1.055000;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_322d98edb43d.woff")format("woff");}.fff{font-family:fff;line-height:1.043000;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_2d663e064438.woff")format("woff");}.ff10{font-family:ff10;line-height:0.689000;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_c463f79eda0a.woff")format("woff");}.ff11{font-family:ff11;line-height:1.049000;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_968260130220.woff")format("woff");}.ff12{font-family:ff12;line-height:0.718000;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_c5a366fe5e9c.woff")format("woff");}.ff13{font-family:ff13;line-height:0.743000;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_c14b77c1df40.woff")format("woff");}.ff14{font-family:ff14;line-height:0.639000;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_aa0322b19ca8.woff")format("woff");}.ff15{font-family:ff15;line-height:0.514000;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_101dfca0f942.woff")format("woff");}.ff16{font-family:ff16;line-height:0.995000;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_473d697180bd.woff")format("woff");}.ff17{font-family:ff17;line-height:0.113000;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_d872a757c65f.woff")format("woff");}.ff18{font-family:ff18;line-height:1.037000;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_87ef27c16f70.woff")format("woff");}.ff19{font-family:ff19;line-height:0.552000;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_fa4f8fb3a34f.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.643000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-18.369000px;}
.v1{vertical-align:-3.064136px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.698818px;}
.v5{vertical-align:15.306480px;}
.v4{vertical-align:18.368276px;}
.v3{vertical-align:41.838616px;}
.ls1f{letter-spacing:-8.371148px;}
.lsd1{letter-spacing:-2.327061px;}
.ls18{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.004184px;}
.lsda{letter-spacing:0.012553px;}
.ls0{letter-spacing:0.014346px;}
.ls3b{letter-spacing:0.033474px;}
.ls20{letter-spacing:0.035866px;}
.ls21{letter-spacing:0.083686px;}
.ls22{letter-spacing:0.092046px;}
.ls23{letter-spacing:0.184091px;}
.ls9e{letter-spacing:0.297084px;}
.ls6a{letter-spacing:0.301268px;}
.ls4c{letter-spacing:0.335341px;}
.ls5d{letter-spacing:0.343111px;}
.lsdc{letter-spacing:0.351480px;}
.ls5b{letter-spacing:0.352242px;}
.lsca{letter-spacing:0.368217px;}
.lsa8{letter-spacing:0.384954px;}
.lsac{letter-spacing:0.396312px;}
.ls5a{letter-spacing:0.421716px;}
.lsb9{letter-spacing:0.426797px;}
.lsce{letter-spacing:0.436959px;}
.ls99{letter-spacing:0.442040px;}
.lsb1{letter-spacing:0.443534px;}
.lscf{letter-spacing:0.447121px;}
.lsa4{letter-spacing:0.457283px;}
.ls34{letter-spacing:0.460624px;}
.lsad{letter-spacing:0.472526px;}
.ls43{letter-spacing:0.482687px;}
.lsb3{letter-spacing:0.492849px;}
.ls61{letter-spacing:0.493745px;}
.ls44{letter-spacing:0.503011px;}
.lsd6{letter-spacing:0.513173px;}
.ls8e{letter-spacing:0.518254px;}
.ls59{letter-spacing:0.528416px;}
.ls95{letter-spacing:0.531404px;}
.lsa1{letter-spacing:0.538578px;}
.ls77{letter-spacing:0.543956px;}
.lsba{letter-spacing:0.553820px;}
.ls6c{letter-spacing:0.556509px;}
.lsb8{letter-spacing:0.558901px;}
.lsb7{letter-spacing:0.563982px;}
.lsae{letter-spacing:0.569063px;}
.lsd0{letter-spacing:0.574144px;}
.ls56{letter-spacing:0.579225px;}
.lsd8{letter-spacing:0.584306px;}
.ls5c{letter-spacing:0.585799px;}
.ls57{letter-spacing:0.589387px;}
.ls64{letter-spacing:0.589983px;}
.ls7c{letter-spacing:0.594468px;}
.ls54{letter-spacing:0.599549px;}
.ls80{letter-spacing:0.604629px;}
.lsbb{letter-spacing:0.609710px;}
.ls15{letter-spacing:0.609725px;}
.ls6b{letter-spacing:0.610905px;}
.ls17{letter-spacing:0.613312px;}
.ls63{letter-spacing:0.614791px;}
.ls6f{letter-spacing:0.619273px;}
.ls38{letter-spacing:0.619872px;}
.ls1c{letter-spacing:0.624072px;}
.ls52{letter-spacing:0.624953px;}
.ls42{letter-spacing:0.626584px;}
.lsc{letter-spacing:0.629434px;}
.ls31{letter-spacing:0.630034px;}
.ls1d{letter-spacing:0.631245px;}
.ls9f{letter-spacing:0.631826px;}
.ls7e{letter-spacing:0.635115px;}
.ls67{letter-spacing:0.636011px;}
.lsa{letter-spacing:0.640194px;}
.ls66{letter-spacing:0.640195px;}
.ls76{letter-spacing:0.640196px;}
.ls7f{letter-spacing:0.645277px;}
.ls39{letter-spacing:0.650358px;}
.ls69{letter-spacing:0.652748px;}
.ls33{letter-spacing:0.653679px;}
.ls4f{letter-spacing:0.655439px;}
.ls83{letter-spacing:0.660520px;}
.lsb4{letter-spacing:0.665301px;}
.ls7a{letter-spacing:0.665601px;}
.ls58{letter-spacing:0.670681px;}
.ls65{letter-spacing:0.673669px;}
.lsa5{letter-spacing:0.675762px;}
.lsd{letter-spacing:0.677852px;}
.ls4e{letter-spacing:0.680843px;}
.lsa7{letter-spacing:0.682038px;}
.lsb0{letter-spacing:0.685924px;}
.lsa6{letter-spacing:0.686222px;}
.ls60{letter-spacing:0.690406px;}
.ls53{letter-spacing:0.691005px;}
.ls93{letter-spacing:0.696086px;}
.ls68{letter-spacing:0.698775px;}
.ls49{letter-spacing:0.701167px;}
.ls81{letter-spacing:0.706248px;}
.ls4a{letter-spacing:0.711329px;}
.ls48{letter-spacing:0.716410px;}
.lsab{letter-spacing:0.721491px;}
.ls9d{letter-spacing:0.723880px;}
.ls82{letter-spacing:0.726572px;}
.ls11{letter-spacing:0.731652px;}
.ls36{letter-spacing:0.736733px;}
.lsf{letter-spacing:0.740618px;}
.ls3a{letter-spacing:0.741814px;}
.ls46{letter-spacing:0.746895px;}
.ls35{letter-spacing:0.751976px;}
.lse{letter-spacing:0.753170px;}
.ls2{letter-spacing:0.757057px;}
.ls37{letter-spacing:0.762061px;}
.ls32{letter-spacing:0.762138px;}
.ls6{letter-spacing:0.767219px;}
.ls19{letter-spacing:0.769908px;}
.ls4{letter-spacing:0.772300px;}
.ls10{letter-spacing:0.774092px;}
.ls30{letter-spacing:0.777381px;}
.ls6e{letter-spacing:0.778276px;}
.ls1b{letter-spacing:0.782462px;}
.ls73{letter-spacing:0.786645px;}
.ls13{letter-spacing:0.787543px;}
.ls7{letter-spacing:0.792624px;}
.ls12{letter-spacing:0.797704px;}
.ls79{letter-spacing:0.802785px;}
.ls62{letter-spacing:0.807566px;}
.ls8{letter-spacing:0.807866px;}
.ls5{letter-spacing:0.812947px;}
.lsb{letter-spacing:0.817727px;}
.ls3{letter-spacing:0.818028px;}
.ls1{letter-spacing:0.823109px;}
.ls45{letter-spacing:0.828190px;}
.ls9{letter-spacing:0.833271px;}
.ls47{letter-spacing:0.838352px;}
.ls55{letter-spacing:0.843433px;}
.ls97{letter-spacing:0.848514px;}
.ls1a{letter-spacing:0.853595px;}
.ls2d{letter-spacing:0.854791px;}
.ls26{letter-spacing:0.860769px;}
.ls96{letter-spacing:0.868837px;}
.ls28{letter-spacing:0.872724px;}
.ls78{letter-spacing:0.873918px;}
.ls27{letter-spacing:0.890656px;}
.ls9a{letter-spacing:0.894242px;}
.ls2f{letter-spacing:0.932499px;}
.ls14{letter-spacing:0.950454px;}
.ls2c{letter-spacing:0.962387px;}
.ls1e{letter-spacing:0.964801px;}
.ls2a{letter-spacing:0.968365px;}
.lsbd{letter-spacing:0.970456px;}
.ls2b{letter-spacing:0.980320px;}
.ls2e{letter-spacing:0.998253px;}
.ls29{letter-spacing:1.016185px;}
.lsb2{letter-spacing:1.036508px;}
.ls3e{letter-spacing:1.069983px;}
.ls3f{letter-spacing:1.081938px;}
.ls3d{letter-spacing:1.087916px;}
.ls40{letter-spacing:1.099871px;}
.ls41{letter-spacing:1.111826px;}
.lsc9{letter-spacing:1.218837px;}
.lsc6{letter-spacing:1.276205px;}
.lscc{letter-spacing:1.318048px;}
.lsc8{letter-spacing:1.334785px;}
.lsbc{letter-spacing:1.343154px;}
.lsc3{letter-spacing:1.359891px;}
.lsc4{letter-spacing:1.364075px;}
.ls85{letter-spacing:1.368260px;}
.lsc1{letter-spacing:1.372444px;}
.lsc0{letter-spacing:1.376628px;}
.ls88{letter-spacing:1.380812px;}
.ls8b{letter-spacing:1.384997px;}
.ls86{letter-spacing:1.389181px;}
.ls8a{letter-spacing:1.393365px;}
.ls8c{letter-spacing:1.397550px;}
.lsb5{letter-spacing:1.401734px;}
.ls84{letter-spacing:1.405918px;}
.ls87{letter-spacing:1.410102px;}
.ls8d{letter-spacing:1.422655px;}
.lsc5{letter-spacing:1.447761px;}
.lscd{letter-spacing:1.460314px;}
.ls89{letter-spacing:1.464498px;}
.lsc2{letter-spacing:1.489604px;}
.lsb6{letter-spacing:1.656975px;}
.lsc7{letter-spacing:1.715555px;}
.ls4d{letter-spacing:2.966700px;}
.ls4b{letter-spacing:2.967300px;}
.ls8f{letter-spacing:2.983050px;}
.ls90{letter-spacing:2.983650px;}
.ls5e{letter-spacing:3.043500px;}
.ls5f{letter-spacing:3.044100px;}
.ls92{letter-spacing:3.307500px;}
.ls91{letter-spacing:3.323850px;}
.ls25{letter-spacing:5.648778px;}
.lsdb{letter-spacing:6.326631px;}
.lsde{letter-spacing:7.489861px;}
.ls16{letter-spacing:10.067642px;}
.lsd9{letter-spacing:10.553071px;}
.lsd2{letter-spacing:10.624204px;}
.lsa2{letter-spacing:10.649608px;}
.ls94{letter-spacing:11.527691px;}
.lsdd{letter-spacing:11.569534px;}
.lsaa{letter-spacing:11.640388px;}
.ls9c{letter-spacing:11.732721px;}
.ls3c{letter-spacing:11.803854px;}
.lsdf{letter-spacing:11.912645px;}
.ls9b{letter-spacing:12.393837px;}
.lsd4{letter-spacing:12.933609px;}
.lsd5{letter-spacing:12.937794px;}
.lscb{letter-spacing:13.226509px;}
.lsd3{letter-spacing:13.272536px;}
.ls98{letter-spacing:14.760073px;}
.ls7b{letter-spacing:14.917581px;}
.lsa0{letter-spacing:14.932824px;}
.lsaf{letter-spacing:15.049685px;}
.lsa3{letter-spacing:15.080171px;}
.lsbe{letter-spacing:16.477424px;}
.ls24{letter-spacing:18.568930px;}
.ls7d{letter-spacing:22.975920px;}
.lsd7{letter-spacing:24.256312px;}
.ls51{letter-spacing:102.761733px;}
.lsa9{letter-spacing:551.705687px;}
.lsbf{letter-spacing:588.443665px;}
.ls75{letter-spacing:601.745491px;}
.ls72{letter-spacing:619.771369px;}
.ls74{letter-spacing:796.314511px;}
.ls71{letter-spacing:814.344574px;}
.ls70{letter-spacing:906.482419px;}
.ls6d{letter-spacing:924.508297px;}
.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;}
}
.wsdd{word-spacing:-814.386416px;}
.wse5{word-spacing:-796.356354px;}
.wse0{word-spacing:-619.813212px;}
.wse6{word-spacing:-601.787334px;}
.ws1ca{word-spacing:-588.485508px;}
.ws17a{word-spacing:-551.747529px;}
.wsf1{word-spacing:-23.026729px;}
.ws1c2{word-spacing:-16.528233px;}
.ws165{word-spacing:-15.130980px;}
.ws193{word-spacing:-15.100494px;}
.ws15d{word-spacing:-14.983633px;}
.wsef{word-spacing:-14.968390px;}
.ws146{word-spacing:-14.810882px;}
.ws21f{word-spacing:-13.314379px;}
.ws224{word-spacing:-12.979637px;}
.ws220{word-spacing:-12.975452px;}
.ws150{word-spacing:-12.435680px;}
.ws283{word-spacing:-11.954488px;}
.ws152{word-spacing:-11.774564px;}
.ws278{word-spacing:-11.611377px;}
.ws160{word-spacing:-10.700418px;}
.ws21c{word-spacing:-10.675013px;}
.ws26d{word-spacing:-10.603880px;}
.ws27e{word-spacing:-7.531704px;}
.ws12c{word-spacing:-1.506341px;}
.ws1e8{word-spacing:-1.489604px;}
.ws134{word-spacing:-0.919647px;}
.ws1d5{word-spacing:-0.884080px;}
.ws190{word-spacing:-0.873918px;}
.ws8d{word-spacing:-0.863756px;}
.ws20{word-spacing:-0.858675px;}
.ws252{word-spacing:-0.853595px;}
.ws23b{word-spacing:-0.848514px;}
.ws1f8{word-spacing:-0.843433px;}
.ws141{word-spacing:-0.833271px;}
.wsf4{word-spacing:-0.823109px;}
.ws63{word-spacing:-0.818028px;}
.wsee{word-spacing:-0.807866px;}
.ws25f{word-spacing:-0.802785px;}
.ws14{word-spacing:-0.795013px;}
.ws108{word-spacing:-0.787543px;}
.ws17{word-spacing:-0.782462px;}
.ws79{word-spacing:-0.767219px;}
.ws80{word-spacing:-0.762138px;}
.ws7d{word-spacing:-0.751976px;}
.wsd3{word-spacing:-0.740618px;}
.ws143{word-spacing:-0.721491px;}
.ws9e{word-spacing:-0.706248px;}
.wsd8{word-spacing:-0.694590px;}
.wsf5{word-spacing:-0.691005px;}
.wsd4{word-spacing:-0.677853px;}
.ws75{word-spacing:-0.660453px;}
.ws1ba{word-spacing:-0.650358px;}
.ws24{word-spacing:-0.649178px;}
.ws22{word-spacing:-0.645592px;}
.wsac{word-spacing:-0.627642px;}
.ws90{word-spacing:-0.579225px;}
.ws23d{word-spacing:-0.563982px;}
.ws106{word-spacing:-0.472526px;}
.ws185{word-spacing:-0.050809px;}
.ws2d{word-spacing:-0.043831px;}
.ws3f{word-spacing:-0.041843px;}
.ws26{word-spacing:-0.035866px;}
.ws28{word-spacing:0.000000px;}
.ws128{word-spacing:6.381027px;}
.ws1e7{word-spacing:6.745059px;}
.ws1e2{word-spacing:6.820376px;}
.ws21{word-spacing:6.843271px;}
.ws1e4{word-spacing:7.096539px;}
.ws1e3{word-spacing:7.247173px;}
.ws1e5{word-spacing:7.263910px;}
.ws11d{word-spacing:7.431281px;}
.ws1dc{word-spacing:7.452203px;}
.ws27d{word-spacing:7.473124px;}
.ws11e{word-spacing:7.544257px;}
.ws1e9{word-spacing:7.560994px;}
.ws1dd{word-spacing:7.636311px;}
.ws1df{word-spacing:7.711628px;}
.ws1de{word-spacing:7.749287px;}
.ws2a5{word-spacing:7.753471px;}
.ws285{word-spacing:7.849709px;}
.ws27b{word-spacing:7.878999px;}
.ws27f{word-spacing:7.891552px;}
.ws23e{word-spacing:7.956721px;}
.ws28a{word-spacing:7.979422px;}
.ws29e{word-spacing:7.987791px;}
.wse8{word-spacing:8.002449px;}
.ws289{word-spacing:8.146793px;}
.ws82{word-spacing:8.165038px;}
.ws84{word-spacing:8.226009px;}
.ws83{word-spacing:8.271738px;}
.ws28f{word-spacing:8.297427px;}
.ws8b{word-spacing:8.353032px;}
.ws7e{word-spacing:8.373356px;}
.ws212{word-spacing:8.383518px;}
.ws8c{word-spacing:8.408923px;}
.ws85{word-spacing:8.414004px;}
.ws28d{word-spacing:8.443877px;}
.ws99{word-spacing:8.566431px;}
.ws286{word-spacing:8.611248px;}
.ws281{word-spacing:8.686565px;}
.ws264{word-spacing:8.703616px;}
.ws232{word-spacing:8.713778px;}
.ws249{word-spacing:8.734101px;}
.ws263{word-spacing:8.739182px;}
.ws282{word-spacing:8.753514px;}
.ws295{word-spacing:8.766067px;}
.ws25a{word-spacing:8.815396px;}
.ws28e{word-spacing:8.816278px;}
.ws259{word-spacing:8.835720px;}
.ws210{word-spacing:8.845882px;}
.ws98{word-spacing:8.850963px;}
.ws25{word-spacing:8.851778px;}
.ws81{word-spacing:8.856044px;}
.ws21b{word-spacing:8.866205px;}
.ws9a{word-spacing:8.891610px;}
.ws20f{word-spacing:8.957662px;}
.wse{word-spacing:8.977986px;}
.ws195{word-spacing:9.018633px;}
.ws16e{word-spacing:9.033876px;}
.ws26b{word-spacing:9.038957px;}
.ws11f{word-spacing:9.050598px;}
.ws13f{word-spacing:9.059280px;}
.ws233{word-spacing:9.064361px;}
.ws230{word-spacing:9.069442px;}
.ws1c4{word-spacing:9.074523px;}
.wsf{word-spacing:9.079604px;}
.ws22f{word-spacing:9.089766px;}
.ws105{word-spacing:9.094847px;}
.ws161{word-spacing:9.099928px;}
.ws120{word-spacing:9.113362px;}
.ws231{word-spacing:9.130413px;}
.ws1eb{word-spacing:9.134283px;}
.ws208{word-spacing:9.145656px;}
.ws26c{word-spacing:9.160899px;}
.ws197{word-spacing:9.165980px;}
.ws21a{word-spacing:9.171061px;}
.wseb{word-spacing:9.196465px;}
.ws15f{word-spacing:9.206627px;}
.ws290{word-spacing:9.209600px;}
.ws104{word-spacing:9.216789px;}
.ws15e{word-spacing:9.226951px;}
.ws1ed{word-spacing:9.272364px;}
.ws1ad{word-spacing:9.277760px;}
.ws1ec{word-spacing:9.280733px;}
.ws209{word-spacing:9.298084px;}
.ws266{word-spacing:9.364136px;}
.ws23{word-spacing:9.371838px;}
.ws216{word-spacing:9.384459px;}
.ws18b{word-spacing:9.404783px;}
.ws127{word-spacing:9.414630px;}
.ws1ac{word-spacing:9.420026px;}
.ws215{word-spacing:9.435268px;}
.ws125{word-spacing:9.439736px;}
.ws126{word-spacing:9.448104px;}
.ws57{word-spacing:9.547049px;}
.ws239{word-spacing:9.562291px;}
.ws1f1{word-spacing:9.582615px;}
.ws20b{word-spacing:9.587696px;}
.ws1f2{word-spacing:9.597858px;}
.ws20a{word-spacing:9.602939px;}
.ws229{word-spacing:9.633424px;}
.ws56{word-spacing:9.658829px;}
.ws1c0{word-spacing:9.663910px;}
.ws276{word-spacing:9.665687px;}
.ws59{word-spacing:9.694395px;}
.ws277{word-spacing:9.711714px;}
.ws9c{word-spacing:9.714719px;}
.ws9b{word-spacing:9.724881px;}
.ws5c{word-spacing:9.745205px;}
.ws217{word-spacing:9.750285px;}
.ws1bd{word-spacing:9.753557px;}
.ws168{word-spacing:9.806176px;}
.ws242{word-spacing:9.826499px;}
.ws20e{word-spacing:9.836661px;}
.ws1e6{word-spacing:9.849795px;}
.ws1da{word-spacing:9.870717px;}
.ws22a{word-spacing:9.897632px;}
.ws226{word-spacing:9.971139px;}
.ws123{word-spacing:10.017166px;}
.ws279{word-spacing:10.029719px;}
.ws1d6{word-spacing:10.046456px;}
.ws1b2{word-spacing:10.065303px;}
.ws12b{word-spacing:10.079931px;}
.ws166{word-spacing:10.080545px;}
.ws5b{word-spacing:10.085626px;}
.ws1bf{word-spacing:10.088299px;}
.ws1c8{word-spacing:10.092483px;}
.ws1e1{word-spacing:10.096668px;}
.ws1db{word-spacing:10.105036px;}
.ws1bc{word-spacing:10.109220px;}
.ws1f4{word-spacing:10.111031px;}
.ws221{word-spacing:10.113405px;}
.ws1ea{word-spacing:10.121773px;}
.ws1f3{word-spacing:10.126274px;}
.ws192{word-spacing:10.131354px;}
.ws1be{word-spacing:10.138510px;}
.ws129{word-spacing:10.146879px;}
.ws1f7{word-spacing:10.151678px;}
.ws122{word-spacing:10.155248px;}
.ws272{word-spacing:10.192906px;}
.ws12e{word-spacing:10.201275px;}
.ws218{word-spacing:10.217730px;}
.ws1ee{word-spacing:10.226380px;}
.ws1fb{word-spacing:10.238054px;}
.ws223{word-spacing:10.243117px;}
.ws124{word-spacing:10.259855px;}
.ws12d{word-spacing:10.276592px;}
.ws121{word-spacing:10.284960px;}
.ws1d7{word-spacing:10.301697px;}
.ws1fa{word-spacing:10.319349px;}
.ws184{word-spacing:10.334591px;}
.ws248{word-spacing:10.344753px;}
.ws89{word-spacing:10.354915px;}
.ws5e{word-spacing:10.400643px;}
.ws1a4{word-spacing:10.405724px;}
.wscb{word-spacing:10.414673px;}
.ws8a{word-spacing:10.431129px;}
.ws12a{word-spacing:10.435594px;}
.ws188{word-spacing:10.441291px;}
.ws11c{word-spacing:10.443963px;}
.ws1f9{word-spacing:10.461614px;}
.wse1{word-spacing:10.464884px;}
.wse2{word-spacing:10.481621px;}
.ws1d9{word-spacing:10.489990px;}
.ws1d8{word-spacing:10.502543px;}
.ws1e0{word-spacing:10.510911px;}
.ws5a{word-spacing:10.517504px;}
.wsc0{word-spacing:10.523464px;}
.ws225{word-spacing:10.527648px;}
.ws222{word-spacing:10.531833px;}
.ws1d3{word-spacing:10.537828px;}
.ws153{word-spacing:10.556938px;}
.ws191{word-spacing:10.563233px;}
.ws5d{word-spacing:10.568314px;}
.ws186{word-spacing:10.583556px;}
.ws1bb{word-spacing:10.602966px;}
.ws178{word-spacing:10.640624px;}
.ws16{word-spacing:10.690835px;}
.ws170{word-spacing:10.707573px;}
.wscf{word-spacing:10.724310px;}
.wsda{word-spacing:10.816364px;}
.ws172{word-spacing:10.858207px;}
.ws103{word-spacing:10.868088px;}
.wsd2{word-spacing:10.874944px;}
.ws2a3{word-spacing:10.916787px;}
.wsd9{word-spacing:10.966998px;}
.ws11{word-spacing:10.980131px;}
.ws187{word-spacing:10.990030px;}
.ws13b{word-spacing:11.015435px;}
.ws294{word-spacing:11.038131px;}
.ws238{word-spacing:11.086567px;}
.wse3{word-spacing:11.088342px;}
.ws15{word-spacing:11.096711px;}
.wsc5{word-spacing:11.100895px;}
.ws109{word-spacing:11.155290px;}
.ws50{word-spacing:11.167862px;}
.ws154{word-spacing:11.180396px;}
.ws118{word-spacing:11.183105px;}
.ws1a6{word-spacing:11.203429px;}
.ws71{word-spacing:11.254238px;}
.ws1a7{word-spacing:11.310128px;}
.ws1a0{word-spacing:11.347767px;}
.wsd5{word-spacing:11.389610px;}
.ws21d{word-spacing:11.452374px;}
.ws205{word-spacing:11.457475px;}
.ws196{word-spacing:11.462556px;}
.wsd0{word-spacing:11.494217px;}
.wsa0{word-spacing:11.498401px;}
.ws39{word-spacing:11.519323px;}
.ws27a{word-spacing:11.523507px;}
.ws32{word-spacing:11.527691px;}
.ws29d{word-spacing:11.531876px;}
.ws36{word-spacing:11.536060px;}
.wsab{word-spacing:11.540244px;}
.ws6c{word-spacing:11.544429px;}
.ws35{word-spacing:11.548613px;}
.wsc2{word-spacing:11.556981px;}
.ws1a3{word-spacing:11.561166px;}
.wsde{word-spacing:11.565350px;}
.wsb8{word-spacing:11.569534px;}
.wsaa{word-spacing:11.577903px;}
.wsae{word-spacing:11.582087px;}
.wsc3{word-spacing:11.590456px;}
.ws174{word-spacing:11.594640px;}
.ws177{word-spacing:11.598824px;}
.ws181{word-spacing:11.599740px;}
.wsaf{word-spacing:11.603008px;}
.ws34{word-spacing:11.611377px;}
.wsa1{word-spacing:11.623930px;}
.wsdb{word-spacing:11.632298px;}
.wsa2{word-spacing:11.636483px;}
.wsba{word-spacing:11.653220px;}
.ws6e{word-spacing:11.657404px;}
.wsbb{word-spacing:11.661588px;}
.ws275{word-spacing:11.665773px;}
.ws6d{word-spacing:11.669957px;}
.wsb1{word-spacing:11.674141px;}
.wsb4{word-spacing:11.678325px;}
.ws112{word-spacing:11.681035px;}
.wsb3{word-spacing:11.682510px;}
.ws297{word-spacing:11.686694px;}
.ws274{word-spacing:11.690878px;}
.ws270{word-spacing:11.695063px;}
.ws299{word-spacing:11.699247px;}
.ws27c{word-spacing:11.703431px;}
.ws2a4{word-spacing:11.711800px;}
.ws28b{word-spacing:11.720168px;}
.ws17d{word-spacing:11.721682px;}
.ws2a2{word-spacing:11.724353px;}
.wsbc{word-spacing:11.728537px;}
.wsb0{word-spacing:11.732721px;}
.ws176{word-spacing:11.736905px;}
.ws3c{word-spacing:11.741090px;}
.ws3b{word-spacing:11.745274px;}
.ws1a2{word-spacing:11.749458px;}
.ws51{word-spacing:11.752168px;}
.ws2a0{word-spacing:11.753643px;}
.wsb2{word-spacing:11.757827px;}
.wsd7{word-spacing:11.762011px;}
.ws37{word-spacing:11.766195px;}
.ws293{word-spacing:11.770380px;}
.wsc8{word-spacing:11.774564px;}
.ws183{word-spacing:11.777573px;}
.wsa9{word-spacing:11.778748px;}
.wsea{word-spacing:11.782653px;}
.ws296{word-spacing:11.782932px;}
.ws292{word-spacing:11.787117px;}
.ws206{word-spacing:11.787734px;}
.ws29b{word-spacing:11.791301px;}
.ws1a5{word-spacing:11.792815px;}
.ws6f{word-spacing:11.799670px;}
.wse9{word-spacing:11.802977px;}
.ws3d{word-spacing:11.803854px;}
.wsd6{word-spacing:11.808038px;}
.ws271{word-spacing:11.812222px;}
.ws273{word-spacing:11.816407px;}
.wsb7{word-spacing:11.820591px;}
.wsa8{word-spacing:11.824775px;}
.wse4{word-spacing:11.828960px;}
.wsa6{word-spacing:11.833144px;}
.ws288{word-spacing:11.841512px;}
.ws10e{word-spacing:11.848705px;}
.ws19d{word-spacing:11.854065px;}
.wsc1{word-spacing:11.858250px;}
.wsb5{word-spacing:11.862434px;}
.wsad{word-spacing:11.866618px;}
.ws1a1{word-spacing:11.870802px;}
.ws1aa{word-spacing:11.874110px;}
.ws280{word-spacing:11.879171px;}
.ws29f{word-spacing:11.883355px;}
.wsca{word-spacing:11.887539px;}
.ws52{word-spacing:11.889353px;}
.wsd1{word-spacing:11.891724px;}
.ws10f{word-spacing:11.894434px;}
.wsc4{word-spacing:11.895908px;}
.ws10a{word-spacing:11.899515px;}
.ws38{word-spacing:11.900092px;}
.wsc9{word-spacing:11.904277px;}
.ws287{word-spacing:11.908461px;}
.wsa4{word-spacing:11.925198px;}
.wsc6{word-spacing:11.929382px;}
.ws182{word-spacing:11.930000px;}
.ws291{word-spacing:11.933567px;}
.wsb9{word-spacing:11.941935px;}
.ws3a{word-spacing:11.946119px;}
.ws3e{word-spacing:11.950304px;}
.ws33{word-spacing:11.954488px;}
.wsbe{word-spacing:11.962857px;}
.ws1d4{word-spacing:11.965567px;}
.ws60{word-spacing:11.975728px;}
.ws158{word-spacing:11.979594px;}
.ws29a{word-spacing:11.996331px;}
.wsa3{word-spacing:12.008884px;}
.wsb6{word-spacing:12.013068px;}
.wsdf{word-spacing:12.025621px;}
.wsc7{word-spacing:12.029805px;}
.ws2a1{word-spacing:12.033989px;}
.ws11b{word-spacing:12.080016px;}
.wsdc{word-spacing:12.084201px;}
.ws110{word-spacing:12.097671px;}
.ws1d2{word-spacing:12.102751px;}
.ws207{word-spacing:12.123075px;}
.wscd{word-spacing:12.128156px;}
.ws284{word-spacing:12.134412px;}
.ws1af{word-spacing:12.148480px;}
.ws298{word-spacing:12.155333px;}
.ws54{word-spacing:12.168803px;}
.ws21e{word-spacing:12.243203px;}
.ws26a{word-spacing:12.270422px;}
.ws1c7{word-spacing:12.272493px;}
.ws111{word-spacing:12.366959px;}
.ws55{word-spacing:12.372040px;}
.ws1d1{word-spacing:12.392364px;}
.ws234{word-spacing:12.438092px;}
.ws251{word-spacing:12.443173px;}
.ws228{word-spacing:12.448254px;}
.wscc{word-spacing:12.488901px;}
.wsc{word-spacing:12.499063px;}
.ws1d0{word-spacing:12.504144px;}
.ws162{word-spacing:12.519387px;}
.ws7{word-spacing:12.539711px;}
.ws53{word-spacing:12.600682px;}
.ws227{word-spacing:12.742947px;}
.ws14f{word-spacing:12.844566px;}
.ws24b{word-spacing:12.854728px;}
.ws1f0{word-spacing:12.895375px;}
.ws1b0{word-spacing:12.946184px;}
.ws7c{word-spacing:12.956346px;}
.ws1ae{word-spacing:12.976670px;}
.ws133{word-spacing:12.996993px;}
.ws14e{word-spacing:13.002074px;}
.ws6b{word-spacing:13.012236px;}
.wsfd{word-spacing:13.022398px;}
.ws149{word-spacing:13.032560px;}
.ws135{word-spacing:13.037641px;}
.ws5f{word-spacing:13.042722px;}
.wsff{word-spacing:13.047803px;}
.ws14b{word-spacing:13.052883px;}
.ws1e{word-spacing:13.057964px;}
.ws86{word-spacing:13.063045px;}
.wsfb{word-spacing:13.068126px;}
.ws180{word-spacing:13.078288px;}
.ws100{word-spacing:13.093531px;}
.ws262{word-spacing:13.098612px;}
.ws256{word-spacing:13.103693px;}
.ws4{word-spacing:13.113855px;}
.ws167{word-spacing:13.118935px;}
.ws6{word-spacing:13.124016px;}
.ws19{word-spacing:13.129097px;}
.ws8{word-spacing:13.134178px;}
.ws7a{word-spacing:13.139259px;}
.wsf7{word-spacing:13.144340px;}
.ws10c{word-spacing:13.154502px;}
.ws19a{word-spacing:13.159583px;}
.ws1a{word-spacing:13.164664px;}
.ws78{word-spacing:13.174826px;}
.ws145{word-spacing:13.184987px;}
.wsf6{word-spacing:13.195149px;}
.ws144{word-spacing:13.200230px;}
.ws9d{word-spacing:13.205311px;}
.ws58{word-spacing:13.210392px;}
.ws131{word-spacing:13.215473px;}
.ws61{word-spacing:13.225635px;}
.ws24c{word-spacing:13.235797px;}
.ws189{word-spacing:13.240878px;}
.ws10d{word-spacing:13.245958px;}
.wsfc{word-spacing:13.251039px;}
.ws1a9{word-spacing:13.256120px;}
.ws72{word-spacing:13.261201px;}
.ws87{word-spacing:13.266282px;}
.ws12f{word-spacing:13.271363px;}
.ws142{word-spacing:13.276444px;}
.wsa{word-spacing:13.281525px;}
.ws91{word-spacing:13.291687px;}
.ws15c{word-spacing:13.296768px;}
.ws136{word-spacing:13.306929px;}
.ws7f{word-spacing:13.317091px;}
.ws13a{word-spacing:13.322172px;}
.ws261{word-spacing:13.327253px;}
.ws8e{word-spacing:13.332334px;}
.ws213{word-spacing:13.342496px;}
.ws1d{word-spacing:13.352658px;}
.ws247{word-spacing:13.357739px;}
.ws1b{word-spacing:13.367901px;}
.ws18{word-spacing:13.378062px;}
.ws7b{word-spacing:13.383143px;}
.ws25d{word-spacing:13.388224px;}
.ws74{word-spacing:13.393305px;}
.ws1f{word-spacing:13.398386px;}
.wsb{word-spacing:13.403467px;}
.ws244{word-spacing:13.413629px;}
.ws16a{word-spacing:13.418710px;}
.ws1c6{word-spacing:13.428872px;}
.ws245{word-spacing:13.433952px;}
.ws1b3{word-spacing:13.439033px;}
.ws137{word-spacing:13.439427px;}
.ws138{word-spacing:13.440091px;}
.ws11a{word-spacing:13.449195px;}
.ws16f{word-spacing:13.459357px;}
.ws130{word-spacing:13.464438px;}
.wsfa{word-spacing:13.469519px;}
.ws5{word-spacing:13.474600px;}
.ws18f{word-spacing:13.479681px;}
.ws237{word-spacing:13.484762px;}
.wsf9{word-spacing:13.489843px;}
.ws10b{word-spacing:13.494924px;}
.ws257{word-spacing:13.500004px;}
.ws88{word-spacing:13.505085px;}
.wsd{word-spacing:13.510166px;}
.ws15b{word-spacing:13.520328px;}
.ws1c{word-spacing:13.525409px;}
.wsce{word-spacing:13.530490px;}
.ws102{word-spacing:13.540652px;}
.ws9{word-spacing:13.566056px;}
.ws13e{word-spacing:13.571137px;}
.ws214{word-spacing:13.576218px;}
.wsec{word-spacing:13.581299px;}
.ws43{word-spacing:13.586994px;}
.ws8f{word-spacing:13.596542px;}
.ws14c{word-spacing:13.601623px;}
.ws41{word-spacing:13.610904px;}
.ws1c5{word-spacing:13.616866px;}
.ws199{word-spacing:13.632108px;}
.ws1a8{word-spacing:13.642270px;}
.ws255{word-spacing:13.662594px;}
.ws240{word-spacing:13.667675px;}
.ws25b{word-spacing:13.693079px;}
.ws77{word-spacing:13.718484px;}
.ws250{word-spacing:13.728646px;}
.ws132{word-spacing:13.738808px;}
.ws97{word-spacing:13.754050px;}
.ws265{word-spacing:13.769293px;}
.ws268{word-spacing:13.784536px;}
.ws101{word-spacing:13.804860px;}
.ws1ef{word-spacing:13.820102px;}
.ws235{word-spacing:13.830264px;}
.ws198{word-spacing:13.840426px;}
.ws246{word-spacing:13.845507px;}
.ws243{word-spacing:13.850588px;}
.ws25e{word-spacing:13.855669px;}
.ws62{word-spacing:13.860750px;}
.ws164{word-spacing:13.870912px;}
.ws14d{word-spacing:13.875993px;}
.ws1b6{word-spacing:13.881073px;}
.ws236{word-spacing:13.891235px;}
.ws40{word-spacing:13.903805px;}
.ws1ab{word-spacing:13.906478px;}
.ws18a{word-spacing:13.911559px;}
.ws24e{word-spacing:14.008096px;}
.ws42{word-spacing:14.017378px;}
.ws1b1{word-spacing:14.038582px;}
.ws76{word-spacing:14.043663px;}
.ws241{word-spacing:14.104634px;}
.ws13{word-spacing:14.132682px;}
.ws1f6{word-spacing:14.140200px;}
.ws24d{word-spacing:14.145281px;}
.ws13d{word-spacing:14.155443px;}
.ws24f{word-spacing:14.236738px;}
.ws96{word-spacing:14.318033px;}
.ws1c1{word-spacing:14.343437px;}
.ws94{word-spacing:14.348518px;}
.ws95{word-spacing:14.434894px;}
.ws1f5{word-spacing:14.455217px;}
.ws92{word-spacing:14.495865px;}
.ws219{word-spacing:14.511108px;}
.ws12{word-spacing:14.525406px;}
.ws93{word-spacing:14.541593px;}
.ws23a{word-spacing:14.638131px;}
.ws10{word-spacing:14.719078px;}
.ws16d{word-spacing:14.821044px;}
.ws65{word-spacing:14.841367px;}
.ws16b{word-spacing:14.861691px;}
.ws211{word-spacing:14.882015px;}
.ws119{word-spacing:14.892177px;}
.ws13c{word-spacing:14.922662px;}
.ws69{word-spacing:14.948067px;}
.ws6a{word-spacing:14.998876px;}
.ws1c3{word-spacing:15.090332px;}
.ws23c{word-spacing:15.197032px;}
.ws163{word-spacing:15.339297px;}
.wsfe{word-spacing:15.440916px;}
.ws139{word-spacing:15.466320px;}
.ws1b4{word-spacing:15.557777px;}
.wse7{word-spacing:15.673378px;}
.ws16c{word-spacing:15.710205px;}
.ws4e{word-spacing:15.715005px;}
.ws204{word-spacing:15.826704px;}
.ws113{word-spacing:15.867713px;}
.ws9f{word-spacing:15.872134px;}
.ws4f{word-spacing:15.889170px;}
.ws26e{word-spacing:15.906207px;}
.ws1b5{word-spacing:15.923603px;}
.ws114{word-spacing:15.949008px;}
.ws194{word-spacing:15.969332px;}
.ws269{word-spacing:15.974352px;}
.wsbf{word-spacing:15.991388px;}
.ws169{word-spacing:16.030303px;}
.ws25c{word-spacing:16.042497px;}
.ws4c{word-spacing:16.085614px;}
.ws260{word-spacing:16.167487px;}
.ws24a{word-spacing:16.309753px;}
.ws64{word-spacing:16.436776px;}
.ws17e{word-spacing:16.706065px;}
.ws67{word-spacing:16.797522px;}
.ws17f{word-spacing:16.812764px;}
.wsf8{word-spacing:16.858493px;}
.ws254{word-spacing:16.949949px;}
.ws200{word-spacing:17.010920px;}
.ws253{word-spacing:17.021082px;}
.wsed{word-spacing:17.173510px;}
.ws1b7{word-spacing:17.183671px;}
.ws68{word-spacing:17.203995px;}
.ws4d{word-spacing:17.837039px;}
.ws23f{word-spacing:17.910243px;}
.ws26f{word-spacing:18.004957px;}
.ws29c{word-spacing:18.017510px;}
.ws27{word-spacing:18.027643px;}
.ws31{word-spacing:18.174406px;}
.ws30{word-spacing:18.227009px;}
.ws2f{word-spacing:18.246735px;}
.ws2e{word-spacing:18.273037px;}
.ws2c{word-spacing:18.299338px;}
.ws28c{word-spacing:18.356436px;}
.ws258{word-spacing:18.489468px;}
.ws267{word-spacing:18.499630px;}
.ws203{word-spacing:18.525034px;}
.ws202{word-spacing:18.575844px;}
.ws18d{word-spacing:18.733352px;}
.ws18c{word-spacing:18.819728px;}
.ws201{word-spacing:18.885780px;}
.ws18e{word-spacing:18.951832px;}
.ws20c{word-spacing:19.022964px;}
.ws22b{word-spacing:19.043288px;}
.ws20d{word-spacing:19.322739px;}
.ws73{word-spacing:19.973097px;}
.ws117{word-spacing:20.049310px;}
.ws116{word-spacing:20.242385px;}
.ws115{word-spacing:20.262709px;}
.ws1fe{word-spacing:20.267790px;}
.ws1fc{word-spacing:20.277952px;}
.ws1fd{word-spacing:20.323680px;}
.ws1ff{word-spacing:20.369408px;}
.wsf0{word-spacing:20.714911px;}
.ws47{word-spacing:21.196428px;}
.wsf3{word-spacing:21.212841px;}
.wsf2{word-spacing:21.223003px;}
.ws107{word-spacing:21.375430px;}
.ws1b8{word-spacing:21.969898px;}
.ws66{word-spacing:22.218863px;}
.ws1b9{word-spacing:22.366210px;}
.ws2b{word-spacing:23.085453px;}
.ws22c{word-spacing:23.961619px;}
.ws22d{word-spacing:24.058156px;}
.ws14a{word-spacing:24.073399px;}
.ws22e{word-spacing:24.327445px;}
.ws140{word-spacing:24.794890px;}
.ws44{word-spacing:25.195415px;}
.ws45{word-spacing:25.219326px;}
.ws48{word-spacing:25.386697px;}
.ws147{word-spacing:25.516380px;}
.ws49{word-spacing:25.685575px;}
.ws2{word-spacing:28.936124px;}
.ws1{word-spacing:29.165662px;}
.ws4b{word-spacing:30.724658px;}
.ws4a{word-spacing:30.730636px;}
.ws46{word-spacing:30.898008px;}
.ws29{word-spacing:33.235400px;}
.ws2a{word-spacing:33.510370px;}
.ws0{word-spacing:39.867867px;}
.ws3{word-spacing:40.054367px;}
.ws148{word-spacing:51.881274px;}
.ws17c{word-spacing:79.622664px;}
.ws70{word-spacing:102.498123px;}
.ws179{word-spacing:398.665646px;}
.ws1c9{word-spacing:434.968459px;}
.ws17b{word-spacing:510.281315px;}
.ws1cb{word-spacing:547.015109px;}
.ws19b{word-spacing:565.020066px;}
.ws19c{word-spacing:572.945092px;}
.ws19f{word-spacing:574.794544px;}
.ws1cc{word-spacing:601.758044px;}
.ws1cd{word-spacing:609.683070px;}
.ws1cf{word-spacing:611.532522px;}
.ws19e{word-spacing:663.087036px;}
.wsa5{word-spacing:688.301507px;}
.ws1ce{word-spacing:699.825014px;}
.wsbd{word-spacing:726.165057px;}
.wsa7{word-spacing:734.341140px;}
.ws156{word-spacing:777.305327px;}
.ws155{word-spacing:800.297946px;}
.ws157{word-spacing:832.044078px;}
.ws159{word-spacing:930.111048px;}
.ws15a{word-spacing:976.862009px;}
.ws175{word-spacing:1789.783927px;}
.ws171{word-spacing:1798.763392px;}
.ws151{word-spacing:1821.550981px;}
.ws173{word-spacing:1889.244263px;}
._77{margin-left:-813.859197px;}
._82{margin-left:-795.829135px;}
._7c{margin-left:-619.503575px;}
._85{margin-left:-601.477697px;}
._be{margin-left:-588.385863px;}
._bf{margin-left:-576.472440px;}
._aa{margin-left:-551.646706px;}
._ab{margin-left:-540.073388px;}
._c0{margin-left:-106.958565px;}
._8c{margin-left:-23.265533px;}
._8b{margin-left:-22.198539px;}
._b8{margin-left:-16.538395px;}
._89{margin-left:-15.070009px;}
._88{margin-left:-14.053825px;}
._94{margin-left:-12.766238px;}
._93{margin-left:-11.540244px;}
._9c{margin-left:-10.471935px;}
._c6{margin-left:-9.159424px;}
._c8{margin-left:-7.263629px;}
._90{margin-left:-3.285293px;}
._3{margin-left:-1.158450px;}
._2{width:1.021265px;}
._c5{width:2.579021px;}
._ac{width:3.594297px;}
._92{width:6.778534px;}
._86{width:9.409864px;}
._8{width:10.969706px;}
._6{width:12.649078px;}
._9{width:14.206252px;}
._1{width:15.263084px;}
._c7{width:18.098237px;}
._a{width:19.124583px;}
._b7{width:21.293200px;}
._8a{width:22.660744px;}
._5{width:24.586731px;}
._8d{width:27.492858px;}
._87{width:29.062862px;}
._7{width:31.047440px;}
._4{width:34.454829px;}
._8f{width:36.928127px;}
._0{width:41.115980px;}
._8e{width:49.874311px;}
._b6{width:79.484583px;}
._45{width:102.615283px;}
._32{width:349.525161px;}
._a9{width:399.163575px;}
._27{width:422.126603px;}
._bd{width:435.901553px;}
._c4{width:453.278868px;}
._bc{width:464.894429px;}
._3d{width:466.237583px;}
._40{width:471.534581px;}
._af{width:475.078967px;}
._3f{width:478.430275px;}
._c2{width:481.485100px;}
._17{width:504.686932px;}
._c3{width:511.816945px;}
._b0{width:527.097936px;}
._a8{width:538.228121px;}
._2e{width:550.366717px;}
._ad{width:552.139803px;}
._ae{width:555.299983px;}
._56{width:570.580974px;}
._2a{width:571.589385px;}
._2d{width:573.990861px;}
._58{width:579.267539px;}
._2b{width:584.062423px;}
._c1{width:588.877782px;}
._7d{width:602.862694px;}
._e{width:617.419804px;}
._73{width:620.089074px;}
._41{width:627.809371px;}
._47{width:641.173962px;}
._a7{width:647.852072px;}
._29{width:657.634919px;}
._b{width:671.823512px;}
._31{width:674.275801px;}
._83{width:679.167224px;}
._2c{width:684.878766px;}
._91{width:685.966679px;}
._11{width:688.343350px;}
._5e{width:690.837181px;}
._7a{width:697.858403px;}
._6e{width:699.343822px;}
._14{width:734.868359px;}
._6f{width:740.362319px;}
._62{width:742.542329px;}
._66{width:745.680539px;}
._70{width:750.567778px;}
._64{width:754.973825px;}
._13{width:759.049313px;}
._6a{width:769.238035px;}
._5f{width:770.581189px;}
._61{width:772.213058px;}
._74{width:773.589686px;}
._9b{width:777.786550px;}
._c{width:781.481238px;}
._34{width:786.971014px;}
._33{width:788.686569px;}
._78{width:799.034293px;}
._4e{width:800.184669px;}
._55{width:801.465360px;}
._43{width:802.904752px;}
._48{width:805.720773px;}
._49{width:810.871621px;}
._5d{width:823.914022px;}
._76{width:826.470617px;}
._6d{width:828.336806px;}
._7f{width:834.111112px;}
._68{width:838.023414px;}
._24{width:842.412724px;}
._4b{width:845.521644px;}
._72{width:852.618183px;}
._18{width:853.982258px;}
._84{width:856.208295px;}
._5c{width:863.760920px;}
._d{width:866.459781px;}
._2f{width:870.639877px;}
._42{width:872.736201px;}
._7b{width:874.564731px;}
._4a{width:876.083625px;}
._28{width:878.903830px;}
._5a{width:880.016848px;}
._46{width:886.506666px;}
._54{width:888.205484px;}
._75{width:889.230633px;}
._10{width:891.331141px;}
._1f{width:897.176580px;}
._23{width:900.239473px;}
._7e{width:901.398519px;}
._20{width:906.700002px;}
._50{width:909.980477px;}
._21{width:911.122786px;}
._81{width:913.503641px;}
._9a{width:914.876085px;}
._22{width:916.905461px;}
._71{width:921.951702px;}
._79{width:924.085685px;}
._4d{width:925.332601px;}
._51{width:926.474909px;}
._12{width:930.655005px;}
._57{width:935.826775px;}
._38{width:939.362491px;}
._52{width:944.333416px;}
._59{width:947.668287px;}
._39{width:948.940308px;}
._4c{width:950.563809px;}
._4f{width:954.497032px;}
._53{width:956.170744px;}
._80{width:957.216814px;}
._35{width:958.982580px;}
._5b{width:960.108152px;}
._1c{width:965.053971px;}
._f{width:969.485123px;}
._60{width:975.334747px;}
._44{width:978.188426px;}
._16{width:984.255632px;}
._3b{width:990.737081px;}
._3a{width:992.498663px;}
._67{width:1000.791906px;}
._1b{width:1003.461477px;}
._1d{width:1006.846559px;}
._25{width:1018.231985px;}
._26{width:1020.449654px;}
._63{width:1023.148514px;}
._65{width:1027.035710px;}
._69{width:1029.814072px;}
._6c{width:1031.157226px;}
._6b{width:1035.575826px;}
._37{width:1044.756136px;}
._36{width:1046.471691px;}
._19{width:1058.735816px;}
._15{width:1062.669039px;}
._1a{width:1067.853362px;}
._3c{width:1069.196516px;}
._30{width:1072.209197px;}
._3e{width:1081.833041px;}
._1e{width:1087.017364px;}
._9f{width:1160.581191px;}
._b3{width:1471.720067px;}
._a3{width:1510.905849px;}
._b2{width:1558.627563px;}
._bb{width:1572.786866px;}
._95{width:1586.406998px;}
._b1{width:1635.593209px;}
._b4{width:1665.858106px;}
._a4{width:1685.954903px;}
._9d{width:1707.537720px;}
._ba{width:1724.647240px;}
._b9{width:1726.346058px;}
._b5{width:1737.785880px;}
._a0{width:1743.489053px;}
._97{width:1766.276642px;}
._9e{width:1789.884350px;}
._a1{width:1823.086612px;}
._98{width:1845.878385px;}
._a2{width:1862.489976px;}
._99{width:1885.277565px;}
._96{width:1899.131716px;}
._a5{width:1913.567482px;}
._a6{width:1952.970847px;}
.fc5{color:rgb(2,150,211);}
.fc4{color:rgb(2,150,210);}
.fc3{color:rgb(169,59,69);}
.fc2{color:rgb(68,65,65);}
.fc7{color:rgb(177,177,177);}
.fc6{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,188,188);}
.fsb{font-size:27.891000px;}
.fs11{font-size:29.289000px;}
.fsf{font-size:33.869400px;}
.fs10{font-size:35.565000px;}
.fs5{font-size:35.866200px;}
.fse{font-size:39.846000px;}
.fs4{font-size:41.842800px;}
.fsa{font-size:43.831200px;}
.fs2{font-size:50.809200px;}
.fs3{font-size:53.797800px;}
.fsc{font-size:56.787600px;}
.fsd{font-size:59.775600px;}
.fs9{font-size:65.754000px;}
.fs7{font-size:83.685600px;}
.fs6{font-size:95.999400px;}
.fs0{font-size:107.596800px;}
.fs8{font-size:119.551800px;}
.fs1{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y71{bottom:19.559246px;}
.y70{bottom:30.018900px;}
.ya3{bottom:76.873429px;}
.y359{bottom:77.385962px;}
.y200{bottom:77.386173px;}
.y332{bottom:77.386499px;}
.y2ff{bottom:77.386600px;}
.y265{bottom:77.896385px;}
.y188{bottom:79.342085px;}
.y235{bottom:81.552780px;}
.y1e5{bottom:85.805618px;}
.y2ae{bottom:86.655274px;}
.y2d5{bottom:87.505711px;}
.y10b{bottom:91.842450px;}
.y2d{bottom:92.352635px;}
.y6f{bottom:93.373411px;}
.ya2{bottom:94.050945px;}
.y186{bottom:94.818900px;}
.y264{bottom:95.073762px;}
.y358{bottom:95.329231px;}
.y1ff{bottom:95.329442px;}
.y331{bottom:95.329768px;}
.y2fe{bottom:95.329869px;}
.y185{bottom:96.519553px;}
.y187{bottom:96.519600px;}
.y234{bottom:98.050212px;}
.y285{bottom:98.050350px;}
.y1e4{bottom:103.748887px;}
.y2ad{bottom:104.598543px;}
.y2d4{bottom:105.448979px;}
.y145{bottom:106.554300px;}
.y2c{bottom:107.319600px;}
.y2bc{bottom:109.872770px;}
.ya1{bottom:110.123810px;}
.y10a{bottom:110.210406px;}
.y6e{bottom:111.316679px;}
.y263{bottom:111.486661px;}
.y184{bottom:113.017123px;}
.y357{bottom:113.272500px;}
.y330{bottom:113.273037px;}
.y2fd{bottom:113.273138px;}
.y233{bottom:114.462961px;}
.ye{bottom:118.885385px;}
.y1e3{bottom:121.607050px;}
.y2b{bottom:122.286686px;}
.y2ac{bottom:122.541812px;}
.y143{bottom:123.222000px;}
.y2d3{bottom:123.392248px;}
.y142{bottom:124.922592px;}
.y144{bottom:124.922850px;}
.ya0{bottom:126.536649px;}
.y109{bottom:126.707976px;}
.y2bb{bottom:127.816039px;}
.y6d{bottom:129.259948px;}
.y262{bottom:129.429900px;}
.y183{bottom:129.429961px;}
.y1fe{bottom:131.215979px;}
.y232{bottom:132.406200px;}
.y284{bottom:133.851900px;}
.y356{bottom:134.192100px;}
.yd{bottom:136.828654px;}
.y1c0{bottom:137.168400px;}
.y2a{bottom:137.168469px;}
.y1e2{bottom:139.550319px;}
.y2ab{bottom:140.485081px;}
.y2d2{bottom:141.250412px;}
.y141{bottom:141.335430px;}
.y9f{bottom:142.609514px;}
.y108{bottom:142.780842px;}
.y6c{bottom:147.118112px;}
.y182{bottom:147.373200px;}
.y32f{bottom:148.734048px;}
.y1fd{bottom:149.159248px;}
.y2fc{bottom:149.159676px;}
.y231{bottom:150.349650px;}
.y29{bottom:152.135435px;}
.y1bf{bottom:155.536980px;}
.y13f{bottom:156.047250px;}
.y1e1{bottom:157.493588px;}
.y13e{bottom:157.832923px;}
.y140{bottom:157.833000px;}
.y2aa{bottom:158.428592px;}
.y9e{bottom:159.022353px;}
.y107{bottom:160.639349px;}
.y2ba{bottom:163.702577px;}
.y6b{bottom:165.061381px;}
.y181{bottom:165.316500px;}
.y28{bottom:167.102400px;}
.y1fc{bottom:167.102517px;}
.y1bd{bottom:170.248650px;}
.y292{bottom:170.333165px;}
.y1bc{bottom:172.034196px;}
.y1be{bottom:172.034550px;}
.y355{bottom:172.289848px;}
.yc{bottom:172.715192px;}
.y13d{bottom:174.245761px;}
.y9d{bottom:175.095218px;}
.y1e0{bottom:175.436857px;}
.y2a9{bottom:176.286755px;}
.y2d1{bottom:177.136950px;}
.y106{bottom:178.582588px;}
.y2b9{bottom:181.645846px;}
.y6a{bottom:183.004650px;}
.y68{bottom:183.004681px;}
.y32e{bottom:183.600591px;}
.y1fb{bottom:185.045786px;}
.y2fb{bottom:185.046214px;}
.y24d{bottom:185.386041px;}
.y291{bottom:186.746003px;}
.y1bb{bottom:188.447034px;}
.y69{bottom:188.702400px;}
.y354{bottom:190.233117px;}
.yb{bottom:190.573355px;}
.y9c{bottom:191.592788px;}
.y13c{bottom:192.189000px;}
.y1df{bottom:193.380126px;}
.y105{bottom:194.655453px;}
.y227{bottom:198.822273px;}
.y2b8{bottom:199.504009px;}
.y67{bottom:200.947950px;}
.y65{bottom:200.948161px;}
.y32d{bottom:201.118333px;}
.y1fa{bottom:202.903950px;}
.y1f8{bottom:202.903981px;}
.y290{bottom:203.158842px;}
.y1ba{bottom:204.859872px;}
.y66{bottom:206.560500px;}
.y9b{bottom:207.665654px;}
.y353{bottom:208.091281px;}
.ya{bottom:208.516624px;}
.y1f9{bottom:208.601550px;}
.y13b{bottom:210.132150px;}
.y102{bottom:210.386934px;}
.y104{bottom:210.387300px;}
.y1de{bottom:211.323395px;}
.y2a8{bottom:212.173293px;}
.y2d0{bottom:212.683350px;}
.y103{bottom:214.979400px;}
.y180{bottom:215.149500px;}
.y226{bottom:216.765542px;}
.y2b7{bottom:217.447278px;}
.y1b9{bottom:217.615362px;}
.y64{bottom:218.891429px;}
.y28f{bottom:219.656412px;}
.y1f7{bottom:220.847250px;}
.y2fa{bottom:220.847647px;}
.y261{bottom:223.568262px;}
.y9a{bottom:225.524161px;}
.y352{bottom:226.034550px;}
.yff{bottom:226.459723px;}
.y101{bottom:226.459800px;}
.y9{bottom:226.459893px;}
.y1dd{bottom:229.266664px;}
.y2a7{bottom:230.116562px;}
.y100{bottom:231.051900px;}
.y17e{bottom:231.817200px;}
.y1b7{bottom:232.242450px;}
.y17d{bottom:233.517762px;}
.y17f{bottom:233.518050px;}
.y1b6{bottom:234.027835px;}
.y1b8{bottom:234.028200px;}
.y225{bottom:234.708811px;}
.y32c{bottom:235.984876px;}
.y28e{bottom:236.069250px;}
.y28c{bottom:236.069311px;}
.y25f{bottom:238.280250px;}
.y2f9{bottom:238.790916px;}
.y25e{bottom:239.980326px;}
.y260{bottom:239.981100px;}
.y28d{bottom:240.746400px;}
.yfe{bottom:242.872561px;}
.y99{bottom:243.467399px;}
.y8{bottom:244.403162px;}
.y351{bottom:246.954300px;}
.y1dc{bottom:247.209933px;}
.y17b{bottom:248.229900px;}
.y17c{bottom:249.930600px;}
.y17a{bottom:249.930630px;}
.y1b5{bottom:250.440673px;}
.y224{bottom:252.652079px;}
.y32b{bottom:253.928145px;}
.y28b{bottom:254.012550px;}
.y63{bottom:254.777967px;}
.y2e2{bottom:255.883476px;}
.y25d{bottom:256.393165px;}
.y1f6{bottom:256.734061px;}
.y2f8{bottom:256.734185px;}
.y2e3{bottom:260.475450px;}
.yfb{bottom:260.815284px;}
.yfd{bottom:260.815800px;}
.y98{bottom:261.410638px;}
.y7{bottom:262.346431px;}
.y178{bottom:264.642450px;}
.y1db{bottom:265.068097px;}
.y2cf{bottom:265.407612px;}
.yfc{bottom:265.407900px;}
.y2a6{bottom:266.003100px;}
.y177{bottom:266.428062px;}
.y179{bottom:266.428200px;}
.y1b4{bottom:266.853511px;}
.y223{bottom:270.595348px;}
.y2e1{bottom:270.764868px;}
.y32a{bottom:271.871414px;}
.y28a{bottom:271.955850px;}
.y62{bottom:272.721236px;}
.y25c{bottom:272.890735px;}
.y1f5{bottom:274.677329px;}
.y2f7{bottom:274.677454px;}
.y27{bottom:275.017988px;}
.yf8{bottom:276.887862px;}
.yfa{bottom:276.888150px;}
.y97{bottom:280.119600px;}
.y6{bottom:280.289700px;}
.y175{bottom:281.140050px;}
.yf9{bottom:281.480250px;}
.y2ce{bottom:281.820162px;}
.y174{bottom:282.840612px;}
.y176{bottom:282.840900px;}
.y1da{bottom:283.011366px;}
.y13a{bottom:283.861350px;}
.y1b3{bottom:284.796750px;}
.y350{bottom:285.053991px;}
.y2e0{bottom:285.732038px;}
.y222{bottom:288.538617px;}
.y25b{bottom:289.303573px;}
.y329{bottom:289.729578px;}
.y61{bottom:290.579400px;}
.y5f{bottom:290.579462px;}
.y1f4{bottom:292.620598px;}
.y2f6{bottom:292.620723px;}
.y26{bottom:292.961257px;}
.yf5{bottom:293.300334px;}
.yf7{bottom:293.300700px;}
.y60{bottom:296.277150px;}
.y172{bottom:297.552750px;}
.yf6{bottom:297.977850px;}
.y2cd{bottom:298.233030px;}
.y173{bottom:299.253450px;}
.y171{bottom:299.253480px;}
.y138{bottom:300.529050px;}
.y2df{bottom:300.699207px;}
.y1d9{bottom:300.954635px;}
.y2a5{bottom:301.465293px;}
.y137{bottom:302.229642px;}
.y139{bottom:302.229900px;}
.y1b2{bottom:302.740050px;}
.y34f{bottom:302.997260px;}
.y25a{bottom:305.716411px;}
.y221{bottom:306.396781px;}
.y328{bottom:307.672847px;}
.y5e{bottom:308.522731px;}
.yf2{bottom:309.373173px;}
.yf4{bottom:309.373200px;}
.y1f3{bottom:310.563867px;}
.y25{bottom:310.904526px;}
.y16f{bottom:313.965300px;}
.yf3{bottom:314.050350px;}
.y2cc{bottom:314.730462px;}
.y2de{bottom:315.666377px;}
.y16e{bottom:315.750762px;}
.y170{bottom:315.751050px;}
.y96{bottom:316.686600px;}
.y136{bottom:318.727212px;}
.y1d8{bottom:318.897904px;}
.y34e{bottom:320.515002px;}
.y283{bottom:321.788998px;}
.y259{bottom:323.659650px;}
.y220{bottom:324.340718px;}
.y327{bottom:325.616116px;}
.y5d{bottom:326.466000px;}
.y5b{bottom:326.466212px;}
.yf1{bottom:327.316411px;}
.y1f2{bottom:328.507136px;}
.y2f5{bottom:328.507261px;}
.y24{bottom:328.847795px;}
.y16d{bottom:330.377850px;}
.y2dd{bottom:330.547769px;}
.y2cb{bottom:331.143012px;}
.y16c{bottom:332.163462px;}
.y5c{bottom:332.163600px;}
.y134{bottom:333.439350px;}
.y133{bottom:335.139973px;}
.y135{bottom:335.140050px;}
.y1d7{bottom:336.841173px;}
.y282{bottom:339.732267px;}
.y258{bottom:341.603100px;}
.y326{bottom:343.559385px;}
.y5a{bottom:344.409481px;}
.y2a4{bottom:345.175178px;}
.yee{bottom:345.259284px;}
.yf0{bottom:345.259650px;}
.y2dc{bottom:345.514938px;}
.y1f1{bottom:346.365300px;}
.y2f4{bottom:346.365424px;}
.y23{bottom:346.791064px;}
.y16a{bottom:346.875450px;}
.y2ca{bottom:347.555911px;}
.y169{bottom:348.576073px;}
.y16b{bottom:348.576300px;}
.yef{bottom:349.851900px;}
.y132{bottom:351.552811px;}
.y1d6{bottom:354.784442px;}
.y95{bottom:356.655031px;}
.y34d{bottom:357.506640px;}
.y281{bottom:357.590431px;}
.y2db{bottom:360.482108px;}
.yed{bottom:361.332150px;}
.yeb{bottom:361.332285px;}
.y325{bottom:361.502654px;}
.y59{bottom:362.352750px;}
.y57{bottom:362.352781px;}
.y2a3{bottom:363.118447px;}
.y2f3{bottom:364.308693px;}
.y22{bottom:364.734333px;}
.y168{bottom:365.073643px;}
.y2c9{bottom:365.499150px;}
.yec{bottom:365.924250px;}
.y3da{bottom:366.520348px;}
.y3b2{bottom:366.522829px;}
.y388{bottom:366.525925px;}
.y58{bottom:367.965300px;}
.y24c{bottom:368.475723px;}
.y131{bottom:369.496050px;}
.y1d5{bottom:372.727711px;}
.y230{bottom:373.577562px;}
.y1b1{bottom:373.577850px;}
.y94{bottom:374.598300px;}
.y92{bottom:374.598448px;}
.y2da{bottom:375.363499px;}
.y34c{bottom:375.449909px;}
.y280{bottom:375.533762px;}
.ye8{bottom:376.978884px;}
.yea{bottom:376.979400px;}
.y3d9{bottom:378.510402px;}
.y3b1{bottom:378.513929px;}
.y387{bottom:378.517026px;}
.y93{bottom:380.211000px;}
.y56{bottom:380.296050px;}
.y2a2{bottom:381.061716px;}
.ye9{bottom:381.656700px;}
.y2f2{bottom:382.251962px;}
.y167{bottom:382.932150px;}
.y2c8{bottom:383.442450px;}
.y20c{bottom:383.952168px;}
.y24b{bottom:386.418992px;}
.y130{bottom:387.439350px;}
.y22e{bottom:388.204650px;}
.y22d{bottom:389.990065px;}
.y22f{bottom:389.990400px;}
.y2d9{bottom:390.330669px;}
.y3d8{bottom:390.500457px;}
.y386{bottom:390.507080px;}
.y1d4{bottom:390.670979px;}
.y1b0{bottom:391.946112px;}
.y91{bottom:392.541717px;}
.y34b{bottom:392.967651px;}
.ye7{bottom:393.051750px;}
.ye5{bottom:393.052107px;}
.y27f{bottom:393.477031px;}
.y324{bottom:396.963665px;}
.ye6{bottom:397.729050px;}
.y20b{bottom:398.919338px;}
.y2a1{bottom:399.004985px;}
.y2f1{bottom:400.195231px;}
.y21{bottom:400.620871px;}
.y166{bottom:400.875450px;}
.y55{bottom:401.215650px;}
.y3b0{bottom:401.474119px;}
.y3d7{bottom:402.405779px;}
.y385{bottom:402.412403px;}
.y24a{bottom:404.362261px;}
.y2d8{bottom:405.297839px;}
.y22c{bottom:406.402903px;}
.y1ae{bottom:406.658250px;}
.y1ad{bottom:408.358308px;}
.y1af{bottom:408.358950px;}
.y1d3{bottom:408.529143px;}
.ye4{bottom:408.783954px;}
.y90{bottom:410.484986px;}
.y27e{bottom:411.420300px;}
.y27c{bottom:411.420424px;}
.y3af{bottom:413.379442px;}
.y20a{bottom:413.886507px;}
.y384{bottom:414.403503px;}
.y2a0{bottom:416.948254px;}
.y27d{bottom:417.033000px;}
.y2f0{bottom:418.138500px;}
.y20{bottom:418.479035px;}
.y2d7{bottom:420.265008px;}
.ye1{bottom:421.454389px;}
.ye3{bottom:421.455000px;}
.y22b{bottom:422.900473px;}
.y1ac{bottom:424.771146px;}
.y3ae{bottom:425.370542px;}
.ye2{bottom:426.132150px;}
.y383{bottom:426.308826px;}
.y3d6{bottom:427.152657px;}
.y8f{bottom:428.343150px;}
.y8d{bottom:428.343212px;}
.y209{bottom:428.853677px;}
.y2b6{bottom:429.194619px;}
.y27b{bottom:429.363693px;}
.y34a{bottom:429.959289px;}
.y323{bottom:431.830208px;}
.y8e{bottom:434.040900px;}
.y29f{bottom:434.891523px;}
.y2d6{bottom:435.146400px;}
.y1f{bottom:436.422304px;}
.y3ad{bottom:437.275865px;}
.ye0{bottom:437.527254px;}
.y2ef{bottom:439.058100px;}
.y3d5{bottom:439.143758px;}
.y22a{bottom:439.313311px;}
.y249{bottom:440.248798px;}
.y1ab{bottom:441.268716px;}
.y208{bottom:443.735069px;}
.y1d2{bottom:444.415681px;}
.y53{bottom:445.692814px;}
.y27a{bottom:447.306962px;}
.y382{bottom:447.653884px;}
.y349{bottom:447.817453px;}
.y3ac{bottom:449.266966px;}
.y322{bottom:449.347950px;}
.ydf{bottom:450.198300px;}
.ydd{bottom:450.198753px;}
.y3d4{bottom:451.133812px;}
.y54{bottom:452.324250px;}
.y29e{bottom:452.749686px;}
.y12f{bottom:454.280250px;}
.y1e{bottom:454.365573px;}
.yde{bottom:454.875450px;}
.y229{bottom:457.256550px;}
.y1aa{bottom:457.681554px;}
.y248{bottom:458.192067px;}
.y207{bottom:458.702238px;}
.y165{bottom:459.212550px;}
.y381{bottom:459.643939px;}
.y1d1{bottom:462.358950px;}
.y3d3{bottom:463.039135px;}
.y52{bottom:463.635954px;}
.y8c{bottom:464.229750px;}
.y279{bottom:465.250231px;}
.y348{bottom:465.420300px;}
.yda{bottom:465.930234px;}
.ydc{bottom:465.930600px;}
.y321{bottom:468.822000px;}
.y2c7{bottom:470.182362px;}
.y1a9{bottom:470.352630px;}
.ydb{bottom:470.522700px;}
.y29d{bottom:470.692955px;}
.y12d{bottom:470.862900px;}
.y380{bottom:471.635039px;}
.y3ab{bottom:472.142424px;}
.y1d{bottom:472.308842px;}
.y12c{bottom:472.648223px;}
.y12e{bottom:472.648650px;}
.y206{bottom:473.669408px;}
.y3d2{bottom:475.029189px;}
.y228{bottom:475.199850px;}
.y2ee{bottom:475.625342px;}
.y163{bottom:475.880100px;}
.y162{bottom:477.580873px;}
.y164{bottom:477.580950px;}
.y51{bottom:481.493915px;}
.yd7{bottom:482.000660px;}
.yd9{bottom:482.003100px;}
.y278{bottom:483.193829px;}
.y37f{bottom:483.540362px;}
.y3aa{bottom:484.133525px;}
.y2c6{bottom:484.809300px;}
.y1a7{bottom:485.064450px;}
.y2c5{bottom:486.594576px;}
.yd8{bottom:486.595200px;}
.y1a6{bottom:486.850123px;}
.y1a8{bottom:486.850200px;}
.y205{bottom:488.550800px;}
.y12b{bottom:489.061062px;}
.y2ed{bottom:493.483505px;}
.y247{bottom:493.993500px;}
.y161{bottom:494.078443px;}
.y37e{bottom:495.530416px;}
.y3a9{bottom:496.038847px;}
.y1d0{bottom:498.245885px;}
.yd6{bottom:498.413498px;}
.y50{bottom:499.437056px;}
.y8b{bottom:499.691463px;}
.y3d1{bottom:499.776067px;}
.y277{bottom:501.051993px;}
.y2c4{bottom:503.007415px;}
.y1a5{bottom:503.262961px;}
.y204{bottom:503.517969px;}
.y129{bottom:503.773200px;}
.y320{bottom:504.708631px;}
.y12a{bottom:505.473900px;}
.y128{bottom:505.473991px;}
.y29c{bottom:506.579493px;}
.y3a8{bottom:508.028902px;}
.y1c{bottom:508.195379px;}
.y2ec{bottom:511.426774px;}
.y3d0{bottom:511.767168px;}
.y160{bottom:511.936950px;}
.y1cf{bottom:516.189154px;}
.yd5{bottom:516.356737px;}
.y37d{bottom:516.875474px;}
.y4f{bottom:517.380196px;}
.y203{bottom:518.485139px;}
.y276{bottom:518.995262px;}
.y2c3{bottom:519.420253px;}
.y3a7{bottom:520.018956px;}
.y1a4{bottom:521.206200px;}
.y127{bottom:521.971561px;}
.y31f{bottom:522.651900px;}
.y31d{bottom:522.652204px;}
.y347{bottom:522.906993px;}
.y21f{bottom:523.162198px;}
.y3cf{bottom:523.672490px;}
.y29b{bottom:524.522762px;}
.y1b{bottom:526.138648px;}
.y31e{bottom:528.349500px;}
.y37c{bottom:528.780797px;}
.yd4{bottom:529.027783px;}
.y2eb{bottom:529.370043px;}
.y246{bottom:529.540707px;}
.y15f{bottom:529.880100px;}
.y3a6{bottom:531.924279px;}
.y202{bottom:533.452308px;}
.y1ce{bottom:534.132423px;}
.y4e{bottom:535.323337px;}
.y3ce{bottom:535.663591px;}
.y2c2{bottom:535.917823px;}
.y275{bottom:536.938531px;}
.y8a{bottom:538.554511px;}
.y1a3{bottom:539.149500px;}
.y126{bottom:539.914800px;}
.y31c{bottom:540.595473px;}
.y37b{bottom:540.771897px;}
.y346{bottom:540.850262px;}
.y21e{bottom:541.105467px;}
.y3a5{bottom:543.915379px;}
.y1a{bottom:544.081917px;}
.yd3{bottom:545.440621px;}
.y2ea{bottom:547.313312px;}
.y3cd{bottom:547.568913px;}
.y201{bottom:548.333700px;}
.y1cd{bottom:551.990586px;}
.y2c1{bottom:552.330661px;}
.y37a{bottom:552.762998px;}
.y4d{bottom:553.266478px;}
.y274{bottom:554.881831px;}
.y89{bottom:556.497779px;}
.y125{bottom:557.773200px;}
.y31b{bottom:558.538742px;}
.y345{bottom:558.793531px;}
.y3cc{bottom:559.558968px;}
.y29a{bottom:560.409300px;}
.y19{bottom:561.940081px;}
.yd2{bottom:563.383860px;}
.y379{bottom:564.668320px;}
.y2e9{bottom:565.256581px;}
.y3a4{bottom:566.790838px;}
.y1cc{bottom:569.933855px;}
.y2c0{bottom:570.273900px;}
.y4c{bottom:571.209619px;}
.y273{bottom:572.825100px;}
.y271{bottom:572.825162px;}
.y245{bottom:573.250592px;}
.y88{bottom:574.441048px;}
.y31a{bottom:576.482011px;}
.y344{bottom:576.736800px;}
.y342{bottom:576.737382px;}
.y21d{bottom:576.906900px;}
.y21b{bottom:576.906993px;}
.y272{bottom:578.437650px;}
.y3a3{bottom:578.781938px;}
.yd1{bottom:579.115707px;}
.y15e{bottom:579.798300px;}
.y18{bottom:579.883350px;}
.y343{bottom:582.349500px;}
.y21c{bottom:582.604500px;}
.y2e8{bottom:583.200029px;}
.y3cb{bottom:584.305846px;}
.y378{bottom:586.013379px;}
.y1cb{bottom:587.877124px;}
.y2bf{bottom:588.217200px;}
.y4b{bottom:589.152759px;}
.y3a2{bottom:590.687261px;}
.y244{bottom:591.193861px;}
.y87{bottom:592.299212px;}
.y319{bottom:594.425279px;}
.y341{bottom:594.680651px;}
.y21a{bottom:594.850262px;}
.yd0{bottom:595.188572px;}
.y299{bottom:595.871065px;}
.y3ca{bottom:596.295900px;}
.y15c{bottom:596.380950px;}
.y17{bottom:597.826650px;}
.y377{bottom:598.003433px;}
.y15b{bottom:598.166273px;}
.y15d{bottom:598.166700px;}
.y2e7{bottom:601.143298px;}
.y3a1{bottom:602.677315px;}
.y1a2{bottom:603.694350px;}
.y4a{bottom:607.095900px;}
.y3c9{bottom:608.205795px;}
.y270{bottom:608.711700px;}
.y26e{bottom:608.711879px;}
.y243{bottom:609.052024px;}
.y376{bottom:609.908756px;}
.y86{bottom:610.242481px;}
.ycf{bottom:610.835687px;}
.y124{bottom:612.368400px;}
.y340{bottom:612.538815px;}
.y26f{bottom:614.324250px;}
.y15a{bottom:614.579112px;}
.y3a0{bottom:614.667370px;}
.y2e6{bottom:619.086567px;}
.y3c8{bottom:620.195850px;}
.y375{bottom:621.898810px;}
.y1a1{bottom:622.062612px;}
.y1ca{bottom:623.763662px;}
.y39f{bottom:626.572692px;}
.y26d{bottom:626.655148px;}
.yce{bottom:626.908553px;}
.y242{bottom:626.995293px;}
.y2b5{bottom:627.420362px;}
.y16{bottom:627.674641px;}
.y49{bottom:628.015650px;}
.y85{bottom:628.185781px;}
.y158{bottom:629.291100px;}
.y318{bottom:630.226712px;}
.y33f{bottom:630.482084px;}
.y123{bottom:630.736734px;}
.y219{bottom:630.736800px;}
.y159{bottom:630.991950px;}
.y157{bottom:630.992130px;}
.y3c7{bottom:632.101172px;}
.y19f{bottom:636.774600px;}
.y2e5{bottom:636.944731px;}
.y19e{bottom:638.475126px;}
.y1a0{bottom:638.475450px;}
.y39e{bottom:638.562747px;}
.y298{bottom:639.581161px;}
.y1c9{bottom:641.706931px;}
.ycd{bottom:642.640400px;}
.y15{bottom:642.641811px;}
.y374{bottom:643.243869px;}
.y26c{bottom:644.513312px;}
.y241{bottom:644.938562px;}
.y2b4{bottom:645.363631px;}
.y155{bottom:645.703800px;}
.y82{bottom:646.128962px;}
.y84{bottom:646.129050px;}
.y122{bottom:647.234304px;}
.y154{bottom:647.489611px;}
.y156{bottom:647.489700px;}
.y317{bottom:648.169981px;}
.y83{bottom:651.741600px;}
.y2e4{bottom:654.888000px;}
.y19d{bottom:654.972696px;}
.y373{bottom:655.233923px;}
.y3c6{bottom:656.932782px;}
.y297{bottom:657.524429px;}
.y14{bottom:657.608980px;}
.ycc{bottom:658.713265px;}
.y1c8{bottom:659.650200px;}
.y1c6{bottom:659.650379px;}
.y121{bottom:659.905062px;}
.y39d{bottom:661.438205px;}
.y2b3{bottom:663.306900px;}
.y1c7{bottom:665.262750px;}
.y153{bottom:665.432850px;}
.y33e{bottom:666.028200px;}
.y316{bottom:666.113250px;}
.y314{bottom:666.113312px;}
.y218{bottom:666.198967px;}
.y372{bottom:667.139246px;}
.y3c5{bottom:668.838105px;}
.y19c{bottom:671.385534px;}
.y315{bottom:671.810850px;}
.y13{bottom:672.576150px;}
.y39c{bottom:673.428260px;}
.y11f{bottom:674.617200px;}
.ycb{bottom:675.126104px;}
.y296{bottom:675.467698px;}
.y11e{bottom:676.317276px;}
.y120{bottom:676.317900px;}
.y1c5{bottom:677.593648px;}
.y23f{bottom:678.699000px;}
.y371{bottom:679.129300px;}
.y26b{bottom:680.399850px;}
.y23e{bottom:680.825012px;}
.y240{bottom:680.825100px;}
.y3c4{bottom:680.829205px;}
.y81{bottom:682.015500px;}
.y152{bottom:683.291100px;}
.y313{bottom:684.056581px;}
.y306{bottom:685.331661px;}
.y39b{bottom:685.333582px;}
.y19b{bottom:687.798372px;}
.y48{bottom:689.584015px;}
.y307{bottom:690.009300px;}
.y3c3{bottom:692.734528px;}
.y11d{bottom:692.814846px;}
.yca{bottom:693.069342px;}
.y295{bottom:693.410967px;}
.y1c4{bottom:695.451812px;}
.y39a{bottom:697.323637px;}
.y2be{bottom:698.002780px;}
.y23d{bottom:698.768281px;}
.y12{bottom:699.449926px;}
.y305{bottom:700.298830px;}
.y370{bottom:700.474358px;}
.y19a{bottom:700.553862px;}
.y312{bottom:701.999850px;}
.y47{bottom:702.255061px;}
.y33c{bottom:702.938164px;}
.y3c2{bottom:704.724582px;}
.y217{bottom:705.061654px;}
.y33d{bottom:708.547800px;}
.yc9{bottom:709.142208px;}
.y11c{bottom:709.227685px;}
.y399{bottom:709.313691px;}
.y294{bottom:711.354236px;}
.y36f{bottom:712.379681px;}
.y2bd{bottom:712.969950px;}
.y198{bottom:715.180950px;}
.y304{bottom:715.265680px;}
.y26a{bottom:715.945894px;}
.y23c{bottom:716.711550px;}
.y197{bottom:716.966365px;}
.y199{bottom:716.966700px;}
.y80{bottom:717.477300px;}
.y46{bottom:720.198300px;}
.y11{bottom:720.369201px;}
.y33b{bottom:720.881433px;}
.y398{bottom:721.219014px;}
.y311{bottom:722.919600px;}
.y216{bottom:723.004923px;}
.y45{bottom:723.344700px;}
.y36e{bottom:724.369735px;}
.yc8{bottom:725.555046px;}
.y11b{bottom:725.640523px;}
.y293{bottom:729.212400px;}
.y3c1{bottom:729.471460px;}
.y303{bottom:730.232850px;}
.y301{bottom:730.233408px;}
.y1c3{bottom:731.338350px;}
.y397{bottom:733.210114px;}
.y196{bottom:733.379203px;}
.y302{bottom:734.824950px;}
.y151{bottom:735.165150px;}
.y36d{bottom:736.359790px;}
.y44{bottom:738.141600px;}
.y33a{bottom:738.824702px;}
.y215{bottom:740.948192px;}
.y43{bottom:741.288000px;}
.y10{bottom:741.288475px;}
.y3c0{bottom:741.461514px;}
.yc7{bottom:741.627912px;}
.y11a{bottom:742.138093px;}
.y300{bottom:745.114800px;}
.y36c{bottom:747.754630px;}
.y36b{bottom:748.265112px;}
.y195{bottom:749.792041px;}
.y23b{bottom:752.513281px;}
.y3bf{bottom:753.366837px;}
.y150{bottom:753.533791px;}
.y42{bottom:756.084654px;}
.y396{bottom:756.085573px;}
.y7f{bottom:756.254881px;}
.yc5{bottom:756.340050px;}
.y339{bottom:756.342443px;}
.yc4{bottom:758.040234px;}
.yc6{bottom:758.040750px;}
.y214{bottom:758.891461px;}
.y310{bottom:758.891795px;}
.y36a{bottom:759.659953px;}
.y119{bottom:759.996600px;}
.y369{bottom:760.255167px;}
.yf{bottom:762.207750px;}
.y3be{bottom:765.357937px;}
.y194{bottom:766.289611px;}
.y1c2{bottom:766.884900px;}
.y395{bottom:768.075627px;}
.y239{bottom:768.330450px;}
.y41{bottom:768.330996px;}
.y40{bottom:768.755700px;}
.y14f{bottom:770.031361px;}
.y23a{bottom:770.456550px;}
.y238{bottom:770.456581px;}
.y368{bottom:771.734739px;}
.y3f{bottom:771.902100px;}
.y367{bottom:772.160489px;}
.y2b2{bottom:772.411741px;}
.yc2{bottom:772.412400px;}
.yc1{bottom:774.112962px;}
.yc3{bottom:774.113100px;}
.y7e{bottom:774.198150px;}
.y7c{bottom:774.198455px;}
.y213{bottom:776.749624px;}
.y30f{bottom:776.749959px;}
.y269{bottom:776.834729px;}
.y3bd{bottom:777.349038px;}
.y118{bottom:777.939900px;}
.y7d{bottom:779.895900px;}
.y394{bottom:779.980950px;}
.y193{bottom:784.232850px;}
.y1c1{bottom:786.273900px;}
.y3e{bottom:786.699000px;}
.y2b1{bottom:787.378911px;}
.y14e{bottom:787.974600px;}
.y237{bottom:788.400508px;}
.ybf{bottom:788.824950px;}
.y3d{bottom:789.845550px;}
.ybe{bottom:790.525434px;}
.yc0{bottom:790.525800px;}
.y393{bottom:791.982470px;}
.y7b{bottom:792.141724px;}
.y338{bottom:793.334082px;}
.y366{bottom:793.505548px;}
.y212{bottom:794.692893px;}
.y30e{bottom:794.693228px;}
.y268{bottom:794.777998px;}
.y3bc{bottom:802.095916px;}
.y192{bottom:802.176150px;}
.y2b0{bottom:802.346080px;}
.y392{bottom:803.972524px;}
.y3c{bottom:804.642300px;}
.ybc{bottom:804.897450px;}
.y365{bottom:805.495602px;}
.y14d{bottom:805.832850px;}
.ybd{bottom:806.598300px;}
.ybb{bottom:806.598330px;}
.y3b{bottom:807.788850px;}
.y7a{bottom:810.084993px;}
.y337{bottom:811.277351px;}
.y211{bottom:812.636162px;}
.y30d{bottom:812.636497px;}
.y3bb{bottom:814.001239px;}
.y391{bottom:815.877847px;}
.y2af{bottom:817.313250px;}
.y364{bottom:817.485656px;}
.yb9{bottom:821.310000px;}
.y3a{bottom:822.585600px;}
.yb8{bottom:823.095534px;}
.yba{bottom:823.095900px;}
.y257{bottom:824.286162px;}
.y39{bottom:825.732000px;}
.y3ba{bottom:825.992339px;}
.y390{bottom:827.867901px;}
.y79{bottom:828.028262px;}
.y336{bottom:829.220620px;}
.y363{bottom:829.390979px;}
.y267{bottom:830.579431px;}
.y30c{bottom:830.579766px;}
.y117{bottom:833.810850px;}
.y5{bottom:834.232773px;}
.yb6{bottom:837.382500px;}
.y3b9{bottom:837.983439px;}
.y255{bottom:838.998300px;}
.yb5{bottom:839.167596px;}
.yb7{bottom:839.168400px;}
.y1f0{bottom:839.508450px;}
.y38{bottom:840.528900px;}
.y254{bottom:840.698376px;}
.y256{bottom:840.699000px;}
.y362{bottom:841.381033px;}
.y37{bottom:843.675450px;}
.y210{bottom:848.522612px;}
.y266{bottom:848.522700px;}
.y30b{bottom:848.523035px;}
.y3b8{bottom:849.888762px;}
.y38f{bottom:850.743360px;}
.y116{bottom:852.179112px;}
.yb4{bottom:855.580434px;}
.y253{bottom:857.195946px;}
.y1ef{bottom:857.877030px;}
.y3b7{bottom:861.878816px;}
.y361{bottom:862.726092px;}
.y38e{bottom:862.733414px;}
.y78{bottom:863.914800px;}
.y147{bottom:864.339931px;}
.y335{bottom:864.681630px;}
.y115{bottom:868.591980px;}
.yb2{bottom:869.867550px;}
.y34{bottom:871.398150px;}
.y191{bottom:871.568250px;}
.yb1{bottom:871.653012px;}
.yb3{bottom:871.653300px;}
.y36{bottom:872.163600px;}
.y1ed{bottom:872.588700px;}
.y252{bottom:873.608785px;}
.y3b6{bottom:873.784139px;}
.y1ec{bottom:874.374246px;}
.y1ee{bottom:874.374600px;}
.y360{bottom:874.631414px;}
.y38d{bottom:874.638737px;}
.y4{bottom:876.073232px;}
.y35{bottom:876.330450px;}
.y146{bottom:882.283200px;}
.y113{bottom:883.303650px;}
.y20f{bottom:884.409479px;}
.y30a{bottom:884.409573px;}
.y112{bottom:885.089215px;}
.y114{bottom:885.089550px;}
.yaf{bottom:886.365150px;}
.y35f{bottom:886.621469px;}
.y38c{bottom:886.628791px;}
.yae{bottom:888.065223px;}
.yb0{bottom:888.065850px;}
.y190{bottom:889.936512px;}
.y251{bottom:890.021623px;}
.y1eb{bottom:890.787084px;}
.y35e{bottom:898.611523px;}
.y3b5{bottom:898.615749px;}
.y38b{bottom:898.618845px;}
.y77{bottom:899.376150px;}
.y289{bottom:900.736800px;}
.y111{bottom:901.502053px;}
.y334{bottom:901.588163px;}
.y309{bottom:902.352842px;}
.yad{bottom:904.138088px;}
.y18e{bottom:904.648650px;}
.y18d{bottom:906.349026px;}
.y18f{bottom:906.349350px;}
.y250{bottom:906.519193px;}
.y1ea{bottom:907.199922px;}
.y35d{bottom:910.516846px;}
.y3b4{bottom:910.521071px;}
.y38a{bottom:910.524168px;}
.y33{bottom:912.982733px;}
.y3{bottom:917.913691px;}
.y110{bottom:917.914891px;}
.y288{bottom:919.105062px;}
.y333{bottom:919.191010px;}
.y1e9{bottom:919.955412px;}
.y20e{bottom:920.210912px;}
.y308{bottom:920.211005px;}
.yac{bottom:920.550927px;}
.y35c{bottom:922.506900px;}
.y3b3{bottom:922.511126px;}
.y389{bottom:922.514222px;}
.y18c{bottom:922.846596px;}
.y24f{bottom:924.377700px;}
.y14c{bottom:934.412400px;}
.y10f{bottom:934.412461px;}
.y1e7{bottom:934.582350px;}
.y287{bottom:935.517612px;}
.y1e6{bottom:936.367885px;}
.y1e8{bottom:936.368250px;}
.yab{bottom:936.623792px;}
.y75{bottom:938.154274px;}
.y18b{bottom:939.259434px;}
.y24e{bottom:942.321000px;}
.y76{bottom:943.851750px;}
.y32{bottom:944.362091px;}
.y35b{bottom:946.062750px;}
.y286{bottom:951.930480px;}
.y10e{bottom:952.355700px;}
.y14b{bottom:952.780723px;}
.yaa{bottom:953.121362px;}
.y18a{bottom:955.672272px;}
.y20d{bottom:956.097362px;}
.y74{bottom:956.097543px;}
.y2{bottom:959.754150px;}
.ya8{bottom:967.407600px;}
.y189{bottom:968.428218px;}
.ya7{bottom:969.108163px;}
.ya9{bottom:969.108450px;}
.y14a{bottom:969.278293px;}
.y10d{bottom:970.213950px;}
.y236{bottom:974.040812px;}
.y31{bottom:975.741450px;}
.ya6{bottom:987.051402px;}
.y149{bottom:987.136800px;}
.y35a{bottom:987.902100px;}
.y73{bottom:991.984081px;}
.y1{bottom:1000.232850px;}
.y148{bottom:1005.079950px;}
.ya5{bottom:1005.165150px;}
.y30{bottom:1005.590400px;}
.y10c{bottom:1008.821850px;}
.y72{bottom:1009.927350px;}
.ya4{bottom:1054.402800px;}
.y2f{bottom:1061.461050px;}
.y2e{bottom:1077.667650px;}
.hf{height:21.420288px;}
.h14{height:26.011699px;}
.h8{height:27.545242px;}
.h13{height:30.601728px;}
.h16{height:31.633157px;}
.h6{height:32.135270px;}
.h19{height:32.135625px;}
.h1a{height:32.135824px;}
.h17{height:32.136424px;}
.h1b{height:32.136549px;}
.he{height:33.662362px;}
.h10{height:33.834088px;}
.h1c{height:33.838272px;}
.h1e{height:34.177199px;}
.h1d{height:34.516126px;}
.h7{height:38.411755px;}
.h4{height:39.021466px;}
.h18{height:39.021817px;}
.ha{height:39.057203px;}
.h5{height:41.316710px;}
.h11{height:43.612877px;}
.h12{height:45.907661px;}
.hd{height:50.499072px;}
.hb{height:64.270541px;}
.h9{height:68.927569px;}
.h15{height:73.973886px;}
.h2{height:82.634342px;}
.hc{height:91.815782px;}
.h3{height:110.178202px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x1{left:86.485050px;}
.xe{left:90.566850px;}
.x4e{left:92.947812px;}
.x69{left:98.985383px;}
.x30{left:100.601550px;}
.x1f{left:103.578877px;}
.x31{left:104.938500px;}
.x45{left:106.894500px;}
.x2f{left:109.360650px;}
.x39{left:111.486600px;}
.x36{left:112.592100px;}
.x3c{left:114.207750px;}
.x2d{left:115.313400px;}
.x1e{left:117.014100px;}
.x3d{left:118.544850px;}
.x32{left:119.650350px;}
.x4b{left:121.096050px;}
.x33{left:123.987300px;}
.x3e{left:128.749500px;}
.x3b{left:132.406200px;}
.x3a{left:133.851900px;}
.x37{left:134.957400px;}
.x34{left:137.338500px;}
.x38{left:139.294500px;}
.x35{left:141.675600px;}
.x2c{left:143.102850px;}
.x47{left:145.247250px;}
.x4f{left:148.138035px;}
.x48{left:149.584200px;}
.x3f{left:151.029900px;}
.x52{left:152.900700px;}
.x19{left:155.366850px;}
.x5c{left:159.278700px;}
.x53{left:161.914950px;}
.x5d{left:163.700700px;}
.x1a{left:165.146400px;}
.x5b{left:168.633000px;}
.x29{left:169.823550px;}
.x6c{left:176.032392px;}
.x5a{left:178.667700px;}
.x2a{left:183.344850px;}
.x5{left:201.118050px;}
.x5e{left:202.308600px;}
.x5f{left:206.730600px;}
.x58{left:212.938500px;}
.x59{left:221.102250px;}
.x10{left:226.374750px;}
.x6d{left:235.645829px;}
.x1c{left:246.104549px;}
.x6{left:249.250350px;}
.x26{left:259.029900px;}
.x60{left:266.853450px;}
.x61{left:271.275450px;}
.x27{left:273.741600px;}
.x15{left:280.884900px;}
.x16{left:289.048800px;}
.x46{left:312.434550px;}
.x57{left:323.574750px;}
.x49{left:333.099150px;}
.x70{left:335.311194px;}
.x6e{left:341.264379px;}
.x54{left:347.811000px;}
.x6f{left:353.935425px;}
.x55{left:355.719600px;}
.x67{left:361.842450px;}
.x68{left:370.856550px;}
.x7{left:374.938500px;}
.x13{left:382.507050px;}
.x56{left:383.612550px;}
.x28{left:390.925800px;}
.x14{left:398.834550px;}
.x8{left:405.212550px;}
.x11{left:414.311700px;}
.x42{left:415.587300px;}
.x22{left:418.138500px;}
.x1d{left:423.495900px;}
.x23{left:425.962050px;}
.x41{left:429.958950px;}
.x43{left:431.234550px;}
.x12{left:433.360500px;}
.x17{left:450.283350px;}
.x1b{left:460.828200px;}
.x18{left:467.631300px;}
.x4c{left:480.557400px;}
.x6b{left:484.299000px;}
.x9{left:492.973050px;}
.x4d{left:494.503800px;}
.x24{left:500.116350px;}
.x63{left:503.517900px;}
.x25{left:513.297450px;}
.x64{left:518.314800px;}
.x50{left:523.927350px;}
.xf{left:529.710174px;}
.x20{left:532.771500px;}
.x4a{left:535.322873px;}
.x51{left:537.958950px;}
.xa{left:541.105350px;}
.x21{left:545.952600px;}
.x44{left:566.447100px;}
.x71{left:584.139837px;}
.x6a{left:587.366850px;}
.x72{left:602.253585px;}
.x65{left:607.436100px;}
.x40{left:612.199218px;}
.x66{left:622.232850px;}
.xb{left:640.431300px;}
.x62{left:645.873900px;}
.xc{left:651.486450px;}
.x2{left:682.780950px;}
.x2b{left:698.258168px;}
.x4{left:723.854850px;}
.x2e{left:733.209300px;}
.x3{left:751.389300px;}
.xd{left:788.995050px;}
@media print{
.v6{vertical-align:-16.328000pt;}
.v1{vertical-align:-2.723677pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.510060pt;}
.v5{vertical-align:13.605760pt;}
.v4{vertical-align:16.327356pt;}
.v3{vertical-align:37.189881pt;}
.ls1f{letter-spacing:-7.441020pt;}
.lsd1{letter-spacing:-2.068499pt;}
.ls18{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.003719pt;}
.lsda{letter-spacing:0.011158pt;}
.ls0{letter-spacing:0.012752pt;}
.ls3b{letter-spacing:0.029755pt;}
.ls20{letter-spacing:0.031880pt;}
.ls21{letter-spacing:0.074388pt;}
.ls22{letter-spacing:0.081818pt;}
.ls23{letter-spacing:0.163636pt;}
.ls9e{letter-spacing:0.264075pt;}
.ls6a{letter-spacing:0.267794pt;}
.ls4c{letter-spacing:0.298081pt;}
.ls5d{letter-spacing:0.304988pt;}
.lsdc{letter-spacing:0.312426pt;}
.ls5b{letter-spacing:0.313104pt;}
.lsca{letter-spacing:0.327304pt;}
.lsa8{letter-spacing:0.342181pt;}
.lsac{letter-spacing:0.352277pt;}
.ls5a{letter-spacing:0.374859pt;}
.lsb9{letter-spacing:0.379375pt;}
.lsce{letter-spacing:0.388408pt;}
.ls99{letter-spacing:0.392924pt;}
.lsb1{letter-spacing:0.394252pt;}
.lscf{letter-spacing:0.397441pt;}
.lsa4{letter-spacing:0.406474pt;}
.ls34{letter-spacing:0.409443pt;}
.lsad{letter-spacing:0.420023pt;}
.ls43{letter-spacing:0.429055pt;}
.lsb3{letter-spacing:0.438088pt;}
.ls61{letter-spacing:0.438884pt;}
.ls44{letter-spacing:0.447121pt;}
.lsd6{letter-spacing:0.456154pt;}
.ls8e{letter-spacing:0.460670pt;}
.ls59{letter-spacing:0.469703pt;}
.ls95{letter-spacing:0.472359pt;}
.lsa1{letter-spacing:0.478736pt;}
.ls77{letter-spacing:0.483517pt;}
.lsba{letter-spacing:0.492285pt;}
.ls6c{letter-spacing:0.494675pt;}
.lsb8{letter-spacing:0.496801pt;}
.lsb7{letter-spacing:0.501317pt;}
.lsae{letter-spacing:0.505834pt;}
.lsd0{letter-spacing:0.510350pt;}
.ls56{letter-spacing:0.514867pt;}
.lsd8{letter-spacing:0.519383pt;}
.ls5c{letter-spacing:0.520710pt;}
.ls57{letter-spacing:0.523899pt;}
.ls64{letter-spacing:0.524430pt;}
.ls7c{letter-spacing:0.528416pt;}
.ls54{letter-spacing:0.532932pt;}
.ls80{letter-spacing:0.537448pt;}
.lsbb{letter-spacing:0.541965pt;}
.ls15{letter-spacing:0.541978pt;}
.ls6b{letter-spacing:0.543027pt;}
.ls17{letter-spacing:0.545166pt;}
.ls63{letter-spacing:0.546481pt;}
.ls6f{letter-spacing:0.550465pt;}
.ls38{letter-spacing:0.550998pt;}
.ls1c{letter-spacing:0.554731pt;}
.ls52{letter-spacing:0.555514pt;}
.ls42{letter-spacing:0.556963pt;}
.lsc{letter-spacing:0.559497pt;}
.ls31{letter-spacing:0.560030pt;}
.ls1d{letter-spacing:0.561107pt;}
.ls9f{letter-spacing:0.561623pt;}
.ls7e{letter-spacing:0.564547pt;}
.ls67{letter-spacing:0.565343pt;}
.lsa{letter-spacing:0.569061pt;}
.ls66{letter-spacing:0.569062pt;}
.ls76{letter-spacing:0.569063pt;}
.ls7f{letter-spacing:0.573579pt;}
.ls39{letter-spacing:0.578096pt;}
.ls69{letter-spacing:0.580220pt;}
.ls33{letter-spacing:0.581048pt;}
.ls4f{letter-spacing:0.582612pt;}
.ls83{letter-spacing:0.587129pt;}
.lsb4{letter-spacing:0.591378pt;}
.ls7a{letter-spacing:0.591645pt;}
.ls58{letter-spacing:0.596161pt;}
.ls65{letter-spacing:0.598817pt;}
.lsa5{letter-spacing:0.600678pt;}
.lsd{letter-spacing:0.602535pt;}
.ls4e{letter-spacing:0.605194pt;}
.lsa7{letter-spacing:0.606256pt;}
.lsb0{letter-spacing:0.609710pt;}
.lsa6{letter-spacing:0.609975pt;}
.ls60{letter-spacing:0.613694pt;}
.ls53{letter-spacing:0.614227pt;}
.ls93{letter-spacing:0.618743pt;}
.ls68{letter-spacing:0.621133pt;}
.ls49{letter-spacing:0.623260pt;}
.ls81{letter-spacing:0.627776pt;}
.ls4a{letter-spacing:0.632292pt;}
.ls48{letter-spacing:0.636809pt;}
.lsab{letter-spacing:0.641325pt;}
.ls9d{letter-spacing:0.643449pt;}
.ls82{letter-spacing:0.645841pt;}
.ls11{letter-spacing:0.650358pt;}
.ls36{letter-spacing:0.654874pt;}
.lsf{letter-spacing:0.658327pt;}
.ls3a{letter-spacing:0.659391pt;}
.ls46{letter-spacing:0.663907pt;}
.ls35{letter-spacing:0.668423pt;}
.lse{letter-spacing:0.669485pt;}
.ls2{letter-spacing:0.672940pt;}
.ls37{letter-spacing:0.677388pt;}
.ls32{letter-spacing:0.677456pt;}
.ls6{letter-spacing:0.681972pt;}
.ls19{letter-spacing:0.684362pt;}
.ls4{letter-spacing:0.686489pt;}
.ls10{letter-spacing:0.688082pt;}
.ls30{letter-spacing:0.691005pt;}
.ls6e{letter-spacing:0.691801pt;}
.ls1b{letter-spacing:0.695521pt;}
.ls73{letter-spacing:0.699240pt;}
.ls13{letter-spacing:0.700038pt;}
.ls7{letter-spacing:0.704554pt;}
.ls12{letter-spacing:0.709071pt;}
.ls79{letter-spacing:0.713587pt;}
.ls62{letter-spacing:0.717836pt;}
.ls8{letter-spacing:0.718103pt;}
.ls5{letter-spacing:0.722620pt;}
.lsb{letter-spacing:0.726868pt;}
.ls3{letter-spacing:0.727136pt;}
.ls1{letter-spacing:0.731652pt;}
.ls45{letter-spacing:0.736169pt;}
.ls9{letter-spacing:0.740685pt;}
.ls47{letter-spacing:0.745202pt;}
.ls55{letter-spacing:0.749718pt;}
.ls97{letter-spacing:0.754234pt;}
.ls1a{letter-spacing:0.758751pt;}
.ls2d{letter-spacing:0.759814pt;}
.ls26{letter-spacing:0.765128pt;}
.ls96{letter-spacing:0.772300pt;}
.ls28{letter-spacing:0.775754pt;}
.ls78{letter-spacing:0.776816pt;}
.ls27{letter-spacing:0.791695pt;}
.ls9a{letter-spacing:0.794882pt;}
.ls2f{letter-spacing:0.828888pt;}
.ls14{letter-spacing:0.844848pt;}
.ls2c{letter-spacing:0.855455pt;}
.ls1e{letter-spacing:0.857601pt;}
.ls2a{letter-spacing:0.860769pt;}
.lsbd{letter-spacing:0.862627pt;}
.ls2b{letter-spacing:0.871395pt;}
.ls2e{letter-spacing:0.887336pt;}
.ls29{letter-spacing:0.903276pt;}
.lsb2{letter-spacing:0.921340pt;}
.ls3e{letter-spacing:0.951096pt;}
.ls3f{letter-spacing:0.961723pt;}
.ls3d{letter-spacing:0.967036pt;}
.ls40{letter-spacing:0.977663pt;}
.ls41{letter-spacing:0.988290pt;}
.lsc9{letter-spacing:1.083410pt;}
.lsc6{letter-spacing:1.134405pt;}
.lscc{letter-spacing:1.171598pt;}
.lsc8{letter-spacing:1.186476pt;}
.lsbc{letter-spacing:1.193915pt;}
.lsc3{letter-spacing:1.208792pt;}
.lsc4{letter-spacing:1.212511pt;}
.ls85{letter-spacing:1.216231pt;}
.lsc1{letter-spacing:1.219950pt;}
.lsc0{letter-spacing:1.223669pt;}
.ls88{letter-spacing:1.227389pt;}
.ls8b{letter-spacing:1.231108pt;}
.ls86{letter-spacing:1.234828pt;}
.ls8a{letter-spacing:1.238547pt;}
.ls8c{letter-spacing:1.242266pt;}
.lsb5{letter-spacing:1.245986pt;}
.ls84{letter-spacing:1.249705pt;}
.ls87{letter-spacing:1.253424pt;}
.ls8d{letter-spacing:1.264582pt;}
.lsc5{letter-spacing:1.286899pt;}
.lscd{letter-spacing:1.298057pt;}
.ls89{letter-spacing:1.301776pt;}
.lsc2{letter-spacing:1.324092pt;}
.lsb6{letter-spacing:1.472867pt;}
.lsc7{letter-spacing:1.524938pt;}
.ls4d{letter-spacing:2.637067pt;}
.ls4b{letter-spacing:2.637600pt;}
.ls8f{letter-spacing:2.651600pt;}
.ls90{letter-spacing:2.652133pt;}
.ls5e{letter-spacing:2.705333pt;}
.ls5f{letter-spacing:2.705867pt;}
.ls92{letter-spacing:2.940000pt;}
.ls91{letter-spacing:2.954533pt;}
.ls25{letter-spacing:5.021136pt;}
.lsdb{letter-spacing:5.623672pt;}
.lsde{letter-spacing:6.657654pt;}
.ls16{letter-spacing:8.949015pt;}
.lsd9{letter-spacing:9.380507pt;}
.lsd2{letter-spacing:9.443737pt;}
.lsa2{letter-spacing:9.466319pt;}
.ls94{letter-spacing:10.246837pt;}
.lsdd{letter-spacing:10.284030pt;}
.lsaa{letter-spacing:10.347011pt;}
.ls9c{letter-spacing:10.429085pt;}
.ls3c{letter-spacing:10.492315pt;}
.lsdf{letter-spacing:10.589018pt;}
.ls9b{letter-spacing:11.016744pt;}
.lsd4{letter-spacing:11.496542pt;}
.lsd5{letter-spacing:11.500261pt;}
.lscb{letter-spacing:11.756897pt;}
.lsd3{letter-spacing:11.797810pt;}
.ls98{letter-spacing:13.120065pt;}
.ls7b{letter-spacing:13.260072pt;}
.lsa0{letter-spacing:13.273621pt;}
.lsaf{letter-spacing:13.377498pt;}
.lsa3{letter-spacing:13.404596pt;}
.lsbe{letter-spacing:14.646599pt;}
.ls24{letter-spacing:16.505715pt;}
.ls7d{letter-spacing:20.423040pt;}
.lsd7{letter-spacing:21.561166pt;}
.ls51{letter-spacing:91.343762pt;}
.lsa9{letter-spacing:490.405055pt;}
.lsbf{letter-spacing:523.061036pt;}
.ls75{letter-spacing:534.884881pt;}
.ls72{letter-spacing:550.907884pt;}
.ls74{letter-spacing:707.835121pt;}
.ls71{letter-spacing:723.861843pt;}
.ls70{letter-spacing:805.762150pt;}
.ls6d{letter-spacing:821.785153pt;}
.wsdd{word-spacing:-723.899037pt;}
.wse5{word-spacing:-707.872315pt;}
.wse0{word-spacing:-550.945077pt;}
.wse6{word-spacing:-534.922075pt;}
.ws1ca{word-spacing:-523.098229pt;}
.ws17a{word-spacing:-490.442248pt;}
.wsf1{word-spacing:-20.468204pt;}
.ws1c2{word-spacing:-14.691762pt;}
.ws165{word-spacing:-13.449760pt;}
.ws193{word-spacing:-13.422662pt;}
.ws15d{word-spacing:-13.318785pt;}
.wsef{word-spacing:-13.305236pt;}
.ws146{word-spacing:-13.165228pt;}
.ws21f{word-spacing:-11.835004pt;}
.ws224{word-spacing:-11.537455pt;}
.ws220{word-spacing:-11.533735pt;}
.ws150{word-spacing:-11.053938pt;}
.ws283{word-spacing:-10.626212pt;}
.ws152{word-spacing:-10.466279pt;}
.ws278{word-spacing:-10.321224pt;}
.ws160{word-spacing:-9.511482pt;}
.ws21c{word-spacing:-9.488900pt;}
.ws26d{word-spacing:-9.425671pt;}
.ws27e{word-spacing:-6.694848pt;}
.ws12c{word-spacing:-1.338970pt;}
.ws1e8{word-spacing:-1.324092pt;}
.ws134{word-spacing:-0.817464pt;}
.ws1d5{word-spacing:-0.785849pt;}
.ws190{word-spacing:-0.776816pt;}
.ws8d{word-spacing:-0.767783pt;}
.ws20{word-spacing:-0.763267pt;}
.ws252{word-spacing:-0.758751pt;}
.ws23b{word-spacing:-0.754234pt;}
.ws1f8{word-spacing:-0.749718pt;}
.ws141{word-spacing:-0.740685pt;}
.wsf4{word-spacing:-0.731652pt;}
.ws63{word-spacing:-0.727136pt;}
.wsee{word-spacing:-0.718103pt;}
.ws25f{word-spacing:-0.713587pt;}
.ws14{word-spacing:-0.706678pt;}
.ws108{word-spacing:-0.700038pt;}
.ws17{word-spacing:-0.695521pt;}
.ws79{word-spacing:-0.681972pt;}
.ws80{word-spacing:-0.677456pt;}
.ws7d{word-spacing:-0.668423pt;}
.wsd3{word-spacing:-0.658327pt;}
.ws143{word-spacing:-0.641325pt;}
.ws9e{word-spacing:-0.627776pt;}
.wsd8{word-spacing:-0.617414pt;}
.wsf5{word-spacing:-0.614227pt;}
.wsd4{word-spacing:-0.602536pt;}
.ws75{word-spacing:-0.587070pt;}
.ws1ba{word-spacing:-0.578096pt;}
.ws24{word-spacing:-0.577047pt;}
.ws22{word-spacing:-0.573859pt;}
.wsac{word-spacing:-0.557904pt;}
.ws90{word-spacing:-0.514867pt;}
.ws23d{word-spacing:-0.501317pt;}
.ws106{word-spacing:-0.420023pt;}
.ws185{word-spacing:-0.045164pt;}
.ws2d{word-spacing:-0.038961pt;}
.ws3f{word-spacing:-0.037194pt;}
.ws26{word-spacing:-0.031881pt;}
.ws28{word-spacing:0.000000pt;}
.ws128{word-spacing:5.672024pt;}
.ws1e7{word-spacing:5.995608pt;}
.ws1e2{word-spacing:6.062557pt;}
.ws21{word-spacing:6.082908pt;}
.ws1e4{word-spacing:6.308035pt;}
.ws1e3{word-spacing:6.441932pt;}
.ws1e5{word-spacing:6.456809pt;}
.ws11d{word-spacing:6.605583pt;}
.ws1dc{word-spacing:6.624180pt;}
.ws27d{word-spacing:6.642777pt;}
.ws11e{word-spacing:6.706006pt;}
.ws1e9{word-spacing:6.720884pt;}
.ws1dd{word-spacing:6.787832pt;}
.ws1df{word-spacing:6.854780pt;}
.ws1de{word-spacing:6.888255pt;}
.ws2a5{word-spacing:6.891974pt;}
.ws285{word-spacing:6.977519pt;}
.ws27b{word-spacing:7.003555pt;}
.ws27f{word-spacing:7.014713pt;}
.ws23e{word-spacing:7.072641pt;}
.ws28a{word-spacing:7.092820pt;}
.ws29e{word-spacing:7.100258pt;}
.wse8{word-spacing:7.113288pt;}
.ws289{word-spacing:7.241594pt;}
.ws82{word-spacing:7.257812pt;}
.ws84{word-spacing:7.312008pt;}
.ws83{word-spacing:7.352656pt;}
.ws28f{word-spacing:7.375491pt;}
.ws8b{word-spacing:7.424918pt;}
.ws7e{word-spacing:7.442983pt;}
.ws212{word-spacing:7.452016pt;}
.ws8c{word-spacing:7.474598pt;}
.ws85{word-spacing:7.479114pt;}
.ws28d{word-spacing:7.505668pt;}
.ws99{word-spacing:7.614605pt;}
.ws286{word-spacing:7.654443pt;}
.ws281{word-spacing:7.721391pt;}
.ws264{word-spacing:7.736548pt;}
.ws232{word-spacing:7.745580pt;}
.ws249{word-spacing:7.763646pt;}
.ws263{word-spacing:7.768162pt;}
.ws282{word-spacing:7.780901pt;}
.ws295{word-spacing:7.792059pt;}
.ws25a{word-spacing:7.835908pt;}
.ws28e{word-spacing:7.836692pt;}
.ws259{word-spacing:7.853973pt;}
.ws210{word-spacing:7.863006pt;}
.ws98{word-spacing:7.867522pt;}
.ws25{word-spacing:7.868247pt;}
.ws81{word-spacing:7.872039pt;}
.ws21b{word-spacing:7.881071pt;}
.ws9a{word-spacing:7.903653pt;}
.ws20f{word-spacing:7.962366pt;}
.wse{word-spacing:7.980432pt;}
.ws195{word-spacing:8.016563pt;}
.ws16e{word-spacing:8.030112pt;}
.ws26b{word-spacing:8.034628pt;}
.ws11f{word-spacing:8.044976pt;}
.ws13f{word-spacing:8.052694pt;}
.ws233{word-spacing:8.057210pt;}
.ws230{word-spacing:8.061726pt;}
.ws1c4{word-spacing:8.066243pt;}
.wsf{word-spacing:8.070759pt;}
.ws22f{word-spacing:8.079792pt;}
.ws105{word-spacing:8.084308pt;}
.ws161{word-spacing:8.088825pt;}
.ws120{word-spacing:8.100766pt;}
.ws231{word-spacing:8.115923pt;}
.ws1eb{word-spacing:8.119363pt;}
.ws208{word-spacing:8.129472pt;}
.ws26c{word-spacing:8.143021pt;}
.ws197{word-spacing:8.147537pt;}
.ws21a{word-spacing:8.152054pt;}
.wseb{word-spacing:8.174636pt;}
.ws15f{word-spacing:8.183668pt;}
.ws290{word-spacing:8.186311pt;}
.ws104{word-spacing:8.192701pt;}
.ws15e{word-spacing:8.201734pt;}
.ws1ed{word-spacing:8.242102pt;}
.ws1ad{word-spacing:8.246898pt;}
.ws1ec{word-spacing:8.249540pt;}
.ws209{word-spacing:8.264963pt;}
.ws266{word-spacing:8.323676pt;}
.ws23{word-spacing:8.330523pt;}
.ws216{word-spacing:8.341742pt;}
.ws18b{word-spacing:8.359807pt;}
.ws127{word-spacing:8.368560pt;}
.ws1ac{word-spacing:8.373356pt;}
.ws215{word-spacing:8.386905pt;}
.ws125{word-spacing:8.390876pt;}
.ws126{word-spacing:8.398315pt;}
.ws57{word-spacing:8.486265pt;}
.ws239{word-spacing:8.499815pt;}
.ws1f1{word-spacing:8.517880pt;}
.ws20b{word-spacing:8.522396pt;}
.ws1f2{word-spacing:8.531429pt;}
.ws20a{word-spacing:8.535946pt;}
.ws229{word-spacing:8.563044pt;}
.ws56{word-spacing:8.585626pt;}
.ws1c0{word-spacing:8.590142pt;}
.ws276{word-spacing:8.591722pt;}
.ws59{word-spacing:8.617240pt;}
.ws277{word-spacing:8.632635pt;}
.ws9c{word-spacing:8.635306pt;}
.ws9b{word-spacing:8.644339pt;}
.ws5c{word-spacing:8.662404pt;}
.ws217{word-spacing:8.666920pt;}
.ws1bd{word-spacing:8.669828pt;}
.ws168{word-spacing:8.716601pt;}
.ws242{word-spacing:8.734666pt;}
.ws20e{word-spacing:8.743699pt;}
.ws1e6{word-spacing:8.755373pt;}
.ws1da{word-spacing:8.773970pt;}
.ws22a{word-spacing:8.797895pt;}
.ws226{word-spacing:8.863235pt;}
.ws123{word-spacing:8.904148pt;}
.ws279{word-spacing:8.915306pt;}
.ws1d6{word-spacing:8.930183pt;}
.ws1b2{word-spacing:8.946936pt;}
.ws12b{word-spacing:8.959938pt;}
.ws166{word-spacing:8.960485pt;}
.ws5b{word-spacing:8.965001pt;}
.ws1bf{word-spacing:8.967377pt;}
.ws1c8{word-spacing:8.971096pt;}
.ws1e1{word-spacing:8.974816pt;}
.ws1db{word-spacing:8.982254pt;}
.ws1bc{word-spacing:8.985974pt;}
.ws1f4{word-spacing:8.987583pt;}
.ws221{word-spacing:8.989693pt;}
.ws1ea{word-spacing:8.997132pt;}
.ws1f3{word-spacing:9.001132pt;}
.ws192{word-spacing:9.005648pt;}
.ws1be{word-spacing:9.012009pt;}
.ws129{word-spacing:9.019448pt;}
.ws1f7{word-spacing:9.023714pt;}
.ws122{word-spacing:9.026887pt;}
.ws272{word-spacing:9.060361pt;}
.ws12e{word-spacing:9.067800pt;}
.ws218{word-spacing:9.082427pt;}
.ws1ee{word-spacing:9.090116pt;}
.ws1fb{word-spacing:9.100492pt;}
.ws223{word-spacing:9.104993pt;}
.ws124{word-spacing:9.119871pt;}
.ws12d{word-spacing:9.134748pt;}
.ws121{word-spacing:9.142187pt;}
.ws1d7{word-spacing:9.157064pt;}
.ws1fa{word-spacing:9.172754pt;}
.ws184{word-spacing:9.186303pt;}
.ws248{word-spacing:9.195336pt;}
.ws89{word-spacing:9.204369pt;}
.ws5e{word-spacing:9.245016pt;}
.ws1a4{word-spacing:9.249533pt;}
.wscb{word-spacing:9.257487pt;}
.ws8a{word-spacing:9.272114pt;}
.ws12a{word-spacing:9.276084pt;}
.ws188{word-spacing:9.281147pt;}
.ws11c{word-spacing:9.283523pt;}
.ws1f9{word-spacing:9.299213pt;}
.wse1{word-spacing:9.302119pt;}
.wse2{word-spacing:9.316997pt;}
.ws1d9{word-spacing:9.324436pt;}
.ws1d8{word-spacing:9.335594pt;}
.ws1e0{word-spacing:9.343032pt;}
.ws5a{word-spacing:9.348893pt;}
.wsc0{word-spacing:9.354190pt;}
.ws225{word-spacing:9.357910pt;}
.ws222{word-spacing:9.361629pt;}
.ws1d3{word-spacing:9.366958pt;}
.ws153{word-spacing:9.383945pt;}
.ws191{word-spacing:9.389540pt;}
.ws5d{word-spacing:9.394057pt;}
.ws186{word-spacing:9.407606pt;}
.ws1bb{word-spacing:9.424858pt;}
.ws178{word-spacing:9.458332pt;}
.ws16{word-spacing:9.502965pt;}
.ws170{word-spacing:9.517842pt;}
.wscf{word-spacing:9.532720pt;}
.wsda{word-spacing:9.614546pt;}
.ws172{word-spacing:9.651739pt;}
.ws103{word-spacing:9.660523pt;}
.wsd2{word-spacing:9.666617pt;}
.ws2a3{word-spacing:9.703810pt;}
.wsd9{word-spacing:9.748443pt;}
.ws11{word-spacing:9.760116pt;}
.ws187{word-spacing:9.768916pt;}
.ws13b{word-spacing:9.791497pt;}
.ws294{word-spacing:9.811672pt;}
.ws238{word-spacing:9.854727pt;}
.wse3{word-spacing:9.856304pt;}
.ws15{word-spacing:9.863743pt;}
.wsc5{word-spacing:9.867462pt;}
.ws109{word-spacing:9.915814pt;}
.ws50{word-spacing:9.926989pt;}
.ws154{word-spacing:9.938130pt;}
.ws118{word-spacing:9.940538pt;}
.ws1a6{word-spacing:9.958603pt;}
.ws71{word-spacing:10.003767pt;}
.ws1a7{word-spacing:10.053447pt;}
.ws1a0{word-spacing:10.086904pt;}
.wsd5{word-spacing:10.124098pt;}
.ws21d{word-spacing:10.179888pt;}
.ws205{word-spacing:10.184422pt;}
.ws196{word-spacing:10.188938pt;}
.wsd0{word-spacing:10.217082pt;}
.wsa0{word-spacing:10.220801pt;}
.ws39{word-spacing:10.239398pt;}
.ws27a{word-spacing:10.243117pt;}
.ws32{word-spacing:10.246837pt;}
.ws29d{word-spacing:10.250556pt;}
.ws36{word-spacing:10.254276pt;}
.wsab{word-spacing:10.257995pt;}
.ws6c{word-spacing:10.261714pt;}
.ws35{word-spacing:10.265434pt;}
.wsc2{word-spacing:10.272872pt;}
.ws1a3{word-spacing:10.276592pt;}
.wsde{word-spacing:10.280311pt;}
.wsb8{word-spacing:10.284030pt;}
.wsaa{word-spacing:10.291469pt;}
.wsae{word-spacing:10.295188pt;}
.wsc3{word-spacing:10.302627pt;}
.ws174{word-spacing:10.306347pt;}
.ws177{word-spacing:10.310066pt;}
.ws181{word-spacing:10.310880pt;}
.wsaf{word-spacing:10.313785pt;}
.ws34{word-spacing:10.321224pt;}
.wsa1{word-spacing:10.332382pt;}
.wsdb{word-spacing:10.339821pt;}
.wsa2{word-spacing:10.343540pt;}
.wsba{word-spacing:10.358418pt;}
.ws6e{word-spacing:10.362137pt;}
.wsbb{word-spacing:10.365856pt;}
.ws275{word-spacing:10.369576pt;}
.ws6d{word-spacing:10.373295pt;}
.wsb1{word-spacing:10.377014pt;}
.wsb4{word-spacing:10.380734pt;}
.ws112{word-spacing:10.383142pt;}
.wsb3{word-spacing:10.384453pt;}
.ws297{word-spacing:10.388172pt;}
.ws274{word-spacing:10.391892pt;}
.ws270{word-spacing:10.395611pt;}
.ws299{word-spacing:10.399331pt;}
.ws27c{word-spacing:10.403050pt;}
.ws2a4{word-spacing:10.410489pt;}
.ws28b{word-spacing:10.417927pt;}
.ws17d{word-spacing:10.419273pt;}
.ws2a2{word-spacing:10.421647pt;}
.wsbc{word-spacing:10.425366pt;}
.wsb0{word-spacing:10.429085pt;}
.ws176{word-spacing:10.432805pt;}
.ws3c{word-spacing:10.436524pt;}
.ws3b{word-spacing:10.440244pt;}
.ws1a2{word-spacing:10.443963pt;}
.ws51{word-spacing:10.446372pt;}
.ws2a0{word-spacing:10.447682pt;}
.wsb2{word-spacing:10.451402pt;}
.wsd7{word-spacing:10.455121pt;}
.ws37{word-spacing:10.458840pt;}
.ws293{word-spacing:10.462560pt;}
.wsc8{word-spacing:10.466279pt;}
.ws183{word-spacing:10.468953pt;}
.wsa9{word-spacing:10.469998pt;}
.wsea{word-spacing:10.473470pt;}
.ws296{word-spacing:10.473718pt;}
.ws292{word-spacing:10.477437pt;}
.ws206{word-spacing:10.477986pt;}
.ws29b{word-spacing:10.481156pt;}
.ws1a5{word-spacing:10.482503pt;}
.ws6f{word-spacing:10.488595pt;}
.wse9{word-spacing:10.491535pt;}
.ws3d{word-spacing:10.492315pt;}
.wsd6{word-spacing:10.496034pt;}
.ws271{word-spacing:10.499753pt;}
.ws273{word-spacing:10.503473pt;}
.wsb7{word-spacing:10.507192pt;}
.wsa8{word-spacing:10.510911pt;}
.wse4{word-spacing:10.514631pt;}
.wsa6{word-spacing:10.518350pt;}
.ws288{word-spacing:10.525789pt;}
.ws10e{word-spacing:10.532183pt;}
.ws19d{word-spacing:10.536947pt;}
.wsc1{word-spacing:10.540666pt;}
.wsb5{word-spacing:10.544386pt;}
.wsad{word-spacing:10.548105pt;}
.ws1a1{word-spacing:10.551824pt;}
.ws1aa{word-spacing:10.554764pt;}
.ws280{word-spacing:10.559263pt;}
.ws29f{word-spacing:10.562982pt;}
.wsca{word-spacing:10.566702pt;}
.ws52{word-spacing:10.568314pt;}
.wsd1{word-spacing:10.570421pt;}
.ws10f{word-spacing:10.572830pt;}
.wsc4{word-spacing:10.574140pt;}
.ws10a{word-spacing:10.577346pt;}
.ws38{word-spacing:10.577860pt;}
.wsc9{word-spacing:10.581579pt;}
.ws287{word-spacing:10.585299pt;}
.wsa4{word-spacing:10.600176pt;}
.wsc6{word-spacing:10.603895pt;}
.ws182{word-spacing:10.604445pt;}
.ws291{word-spacing:10.607615pt;}
.wsb9{word-spacing:10.615053pt;}
.ws3a{word-spacing:10.618773pt;}
.ws3e{word-spacing:10.622492pt;}
.ws33{word-spacing:10.626212pt;}
.wsbe{word-spacing:10.633650pt;}
.ws1d4{word-spacing:10.636059pt;}
.ws60{word-spacing:10.645092pt;}
.ws158{word-spacing:10.648528pt;}
.ws29a{word-spacing:10.663405pt;}
.wsa3{word-spacing:10.674563pt;}
.wsb6{word-spacing:10.678283pt;}
.wsdf{word-spacing:10.689441pt;}
.wsc7{word-spacing:10.693160pt;}
.ws2a1{word-spacing:10.696879pt;}
.ws11b{word-spacing:10.737792pt;}
.wsdc{word-spacing:10.741512pt;}
.ws110{word-spacing:10.753485pt;}
.ws1d2{word-spacing:10.758001pt;}
.ws207{word-spacing:10.776067pt;}
.wscd{word-spacing:10.780583pt;}
.ws284{word-spacing:10.786144pt;}
.ws1af{word-spacing:10.798649pt;}
.ws298{word-spacing:10.804741pt;}
.ws54{word-spacing:10.816714pt;}
.ws21e{word-spacing:10.882847pt;}
.ws26a{word-spacing:10.907042pt;}
.ws1c7{word-spacing:10.908883pt;}
.ws111{word-spacing:10.992853pt;}
.ws55{word-spacing:10.997369pt;}
.ws1d1{word-spacing:11.015435pt;}
.ws234{word-spacing:11.056082pt;}
.ws251{word-spacing:11.060598pt;}
.ws228{word-spacing:11.065115pt;}
.wscc{word-spacing:11.101246pt;}
.wsc{word-spacing:11.110278pt;}
.ws1d0{word-spacing:11.114795pt;}
.ws162{word-spacing:11.128344pt;}
.ws7{word-spacing:11.146409pt;}
.ws53{word-spacing:11.200606pt;}
.ws227{word-spacing:11.327064pt;}
.ws14f{word-spacing:11.417392pt;}
.ws24b{word-spacing:11.426425pt;}
.ws1f0{word-spacing:11.462556pt;}
.ws1b0{word-spacing:11.507719pt;}
.ws7c{word-spacing:11.516752pt;}
.ws1ae{word-spacing:11.534817pt;}
.ws133{word-spacing:11.552883pt;}
.ws14e{word-spacing:11.557399pt;}
.ws6b{word-spacing:11.566432pt;}
.wsfd{word-spacing:11.575465pt;}
.ws149{word-spacing:11.584498pt;}
.ws135{word-spacing:11.589014pt;}
.ws5f{word-spacing:11.593530pt;}
.wsff{word-spacing:11.598047pt;}
.ws14b{word-spacing:11.602563pt;}
.ws1e{word-spacing:11.607079pt;}
.ws86{word-spacing:11.611596pt;}
.wsfb{word-spacing:11.616112pt;}
.ws180{word-spacing:11.625145pt;}
.ws100{word-spacing:11.638694pt;}
.ws262{word-spacing:11.643210pt;}
.ws256{word-spacing:11.647727pt;}
.ws4{word-spacing:11.656760pt;}
.ws167{word-spacing:11.661276pt;}
.ws6{word-spacing:11.665792pt;}
.ws19{word-spacing:11.670309pt;}
.ws8{word-spacing:11.674825pt;}
.ws7a{word-spacing:11.679341pt;}
.wsf7{word-spacing:11.683858pt;}
.ws10c{word-spacing:11.692891pt;}
.ws19a{word-spacing:11.697407pt;}
.ws1a{word-spacing:11.701923pt;}
.ws78{word-spacing:11.710956pt;}
.ws145{word-spacing:11.719989pt;}
.wsf6{word-spacing:11.729022pt;}
.ws144{word-spacing:11.733538pt;}
.ws9d{word-spacing:11.738054pt;}
.ws58{word-spacing:11.742571pt;}
.ws131{word-spacing:11.747087pt;}
.ws61{word-spacing:11.756120pt;}
.ws24c{word-spacing:11.765153pt;}
.ws189{word-spacing:11.769669pt;}
.ws10d{word-spacing:11.774185pt;}
.wsfc{word-spacing:11.778702pt;}
.ws1a9{word-spacing:11.783218pt;}
.ws72{word-spacing:11.787734pt;}
.ws87{word-spacing:11.792251pt;}
.ws12f{word-spacing:11.796767pt;}
.ws142{word-spacing:11.801284pt;}
.wsa{word-spacing:11.805800pt;}
.ws91{word-spacing:11.814833pt;}
.ws15c{word-spacing:11.819349pt;}
.ws136{word-spacing:11.828382pt;}
.ws7f{word-spacing:11.837415pt;}
.ws13a{word-spacing:11.841931pt;}
.ws261{word-spacing:11.846447pt;}
.ws8e{word-spacing:11.850964pt;}
.ws213{word-spacing:11.859996pt;}
.ws1d{word-spacing:11.869029pt;}
.ws247{word-spacing:11.873545pt;}
.ws1b{word-spacing:11.882578pt;}
.ws18{word-spacing:11.891611pt;}
.ws7b{word-spacing:11.896127pt;}
.ws25d{word-spacing:11.900644pt;}
.ws74{word-spacing:11.905160pt;}
.ws1f{word-spacing:11.909676pt;}
.wsb{word-spacing:11.914193pt;}
.ws244{word-spacing:11.923226pt;}
.ws16a{word-spacing:11.927742pt;}
.ws1c6{word-spacing:11.936775pt;}
.ws245{word-spacing:11.941291pt;}
.ws1b3{word-spacing:11.945807pt;}
.ws137{word-spacing:11.946157pt;}
.ws138{word-spacing:11.946748pt;}
.ws11a{word-spacing:11.954840pt;}
.ws16f{word-spacing:11.963873pt;}
.ws130{word-spacing:11.968389pt;}
.wsfa{word-spacing:11.972906pt;}
.ws5{word-spacing:11.977422pt;}
.ws18f{word-spacing:11.981938pt;}
.ws237{word-spacing:11.986455pt;}
.wsf9{word-spacing:11.990971pt;}
.ws10b{word-spacing:11.995488pt;}
.ws257{word-spacing:12.000004pt;}
.ws88{word-spacing:12.004520pt;}
.wsd{word-spacing:12.009037pt;}
.ws15b{word-spacing:12.018069pt;}
.ws1c{word-spacing:12.022586pt;}
.wsce{word-spacing:12.027102pt;}
.ws102{word-spacing:12.036135pt;}
.ws9{word-spacing:12.058717pt;}
.ws13e{word-spacing:12.063233pt;}
.ws214{word-spacing:12.067750pt;}
.wsec{word-spacing:12.072266pt;}
.ws43{word-spacing:12.077328pt;}
.ws8f{word-spacing:12.085815pt;}
.ws14c{word-spacing:12.090331pt;}
.ws41{word-spacing:12.098581pt;}
.ws1c5{word-spacing:12.103881pt;}
.ws199{word-spacing:12.117430pt;}
.ws1a8{word-spacing:12.126462pt;}
.ws255{word-spacing:12.144528pt;}
.ws240{word-spacing:12.149044pt;}
.ws25b{word-spacing:12.171626pt;}
.ws77{word-spacing:12.194208pt;}
.ws250{word-spacing:12.203241pt;}
.ws132{word-spacing:12.212273pt;}
.ws97{word-spacing:12.225823pt;}
.ws265{word-spacing:12.239372pt;}
.ws268{word-spacing:12.252921pt;}
.ws101{word-spacing:12.270986pt;}
.ws1ef{word-spacing:12.284535pt;}
.ws235{word-spacing:12.293568pt;}
.ws198{word-spacing:12.302601pt;}
.ws246{word-spacing:12.307117pt;}
.ws243{word-spacing:12.311634pt;}
.ws25e{word-spacing:12.316150pt;}
.ws62{word-spacing:12.320666pt;}
.ws164{word-spacing:12.329699pt;}
.ws14d{word-spacing:12.334216pt;}
.ws1b6{word-spacing:12.338732pt;}
.ws236{word-spacing:12.347765pt;}
.ws40{word-spacing:12.358937pt;}
.ws1ab{word-spacing:12.361314pt;}
.ws18a{word-spacing:12.365830pt;}
.ws24e{word-spacing:12.451641pt;}
.ws42{word-spacing:12.459892pt;}
.ws1b1{word-spacing:12.478740pt;}
.ws76{word-spacing:12.483256pt;}
.ws241{word-spacing:12.537452pt;}
.ws13{word-spacing:12.562384pt;}
.ws1f6{word-spacing:12.569067pt;}
.ws24d{word-spacing:12.573583pt;}
.ws13d{word-spacing:12.582616pt;}
.ws24f{word-spacing:12.654878pt;}
.ws96{word-spacing:12.727140pt;}
.ws1c1{word-spacing:12.749722pt;}
.ws94{word-spacing:12.754238pt;}
.ws95{word-spacing:12.831017pt;}
.ws1f5{word-spacing:12.849082pt;}
.ws92{word-spacing:12.885213pt;}
.ws219{word-spacing:12.898762pt;}
.ws12{word-spacing:12.911472pt;}
.ws93{word-spacing:12.925860pt;}
.ws23a{word-spacing:13.011672pt;}
.ws10{word-spacing:13.083625pt;}
.ws16d{word-spacing:13.174261pt;}
.ws65{word-spacing:13.192327pt;}
.ws16b{word-spacing:13.210392pt;}
.ws211{word-spacing:13.228457pt;}
.ws119{word-spacing:13.237490pt;}
.ws13c{word-spacing:13.264588pt;}
.ws69{word-spacing:13.287170pt;}
.ws6a{word-spacing:13.332334pt;}
.ws1c3{word-spacing:13.413629pt;}
.ws23c{word-spacing:13.508473pt;}
.ws163{word-spacing:13.634931pt;}
.wsfe{word-spacing:13.725259pt;}
.ws139{word-spacing:13.747840pt;}
.ws1b4{word-spacing:13.829135pt;}
.wse7{word-spacing:13.931891pt;}
.ws16c{word-spacing:13.964626pt;}
.ws4e{word-spacing:13.968894pt;}
.ws204{word-spacing:14.068181pt;}
.ws113{word-spacing:14.104634pt;}
.ws9f{word-spacing:14.108564pt;}
.ws4f{word-spacing:14.123707pt;}
.ws26e{word-spacing:14.138850pt;}
.ws1b5{word-spacing:14.154314pt;}
.ws114{word-spacing:14.176896pt;}
.ws194{word-spacing:14.194961pt;}
.ws269{word-spacing:14.199424pt;}
.wsbf{word-spacing:14.214567pt;}
.ws169{word-spacing:14.249158pt;}
.ws25c{word-spacing:14.259997pt;}
.ws4c{word-spacing:14.298324pt;}
.ws260{word-spacing:14.371100pt;}
.ws24a{word-spacing:14.497558pt;}
.ws64{word-spacing:14.610468pt;}
.ws17e{word-spacing:14.849836pt;}
.ws67{word-spacing:14.931130pt;}
.ws17f{word-spacing:14.944679pt;}
.wsf8{word-spacing:14.985327pt;}
.ws254{word-spacing:15.066621pt;}
.ws200{word-spacing:15.120818pt;}
.ws253{word-spacing:15.129851pt;}
.wsed{word-spacing:15.265342pt;}
.ws1b7{word-spacing:15.274375pt;}
.ws68{word-spacing:15.292440pt;}
.ws4d{word-spacing:15.855146pt;}
.ws23f{word-spacing:15.920216pt;}
.ws26f{word-spacing:16.004406pt;}
.ws29c{word-spacing:16.015564pt;}
.ws27{word-spacing:16.024571pt;}
.ws31{word-spacing:16.155027pt;}
.ws30{word-spacing:16.201786pt;}
.ws2f{word-spacing:16.219320pt;}
.ws2e{word-spacing:16.242699pt;}
.ws2c{word-spacing:16.266078pt;}
.ws28c{word-spacing:16.316832pt;}
.ws258{word-spacing:16.435083pt;}
.ws267{word-spacing:16.444115pt;}
.ws203{word-spacing:16.466697pt;}
.ws202{word-spacing:16.511861pt;}
.ws18d{word-spacing:16.651868pt;}
.ws18c{word-spacing:16.728647pt;}
.ws201{word-spacing:16.787360pt;}
.ws18e{word-spacing:16.846073pt;}
.ws20c{word-spacing:16.909302pt;}
.ws22b{word-spacing:16.927367pt;}
.ws20d{word-spacing:17.175768pt;}
.ws73{word-spacing:17.753864pt;}
.ws117{word-spacing:17.821609pt;}
.ws116{word-spacing:17.993231pt;}
.ws115{word-spacing:18.011297pt;}
.ws1fe{word-spacing:18.015813pt;}
.ws1fc{word-spacing:18.024846pt;}
.ws1fd{word-spacing:18.065493pt;}
.ws1ff{word-spacing:18.106141pt;}
.wsf0{word-spacing:18.413254pt;}
.ws47{word-spacing:18.841269pt;}
.wsf3{word-spacing:18.855859pt;}
.wsf2{word-spacing:18.864891pt;}
.ws107{word-spacing:19.000383pt;}
.ws1b8{word-spacing:19.528798pt;}
.ws66{word-spacing:19.750101pt;}
.ws1b9{word-spacing:19.881075pt;}
.ws2b{word-spacing:20.520402pt;}
.ws22c{word-spacing:21.299217pt;}
.ws22d{word-spacing:21.385028pt;}
.ws14a{word-spacing:21.398577pt;}
.ws22e{word-spacing:21.624396pt;}
.ws140{word-spacing:22.039902pt;}
.ws44{word-spacing:22.395925pt;}
.ws45{word-spacing:22.417178pt;}
.ws48{word-spacing:22.565953pt;}
.ws147{word-spacing:22.681227pt;}
.ws49{word-spacing:22.831623pt;}
.ws2{word-spacing:25.720999pt;}
.ws1{word-spacing:25.925033pt;}
.ws4b{word-spacing:27.310807pt;}
.ws4a{word-spacing:27.316121pt;}
.ws46{word-spacing:27.464896pt;}
.ws29{word-spacing:29.542578pt;}
.ws2a{word-spacing:29.786995pt;}
.ws0{word-spacing:35.438104pt;}
.ws3{word-spacing:35.603882pt;}
.ws148{word-spacing:46.116688pt;}
.ws17c{word-spacing:70.775701pt;}
.ws70{word-spacing:91.109443pt;}
.ws179{word-spacing:354.369463pt;}
.ws1c9{word-spacing:386.638630pt;}
.ws17b{word-spacing:453.583391pt;}
.ws1cb{word-spacing:486.235652pt;}
.ws19b{word-spacing:502.240058pt;}
.ws19c{word-spacing:509.284526pt;}
.ws19f{word-spacing:510.928483pt;}
.ws1cc{word-spacing:534.896039pt;}
.ws1cd{word-spacing:541.940507pt;}
.ws1cf{word-spacing:543.584464pt;}
.ws19e{word-spacing:589.410699pt;}
.wsa5{word-spacing:611.823562pt;}
.ws1ce{word-spacing:622.066679pt;}
.wsbd{word-spacing:645.480051pt;}
.wsa7{word-spacing:652.747680pt;}
.ws156{word-spacing:690.938068pt;}
.ws155{word-spacing:711.375952pt;}
.ws157{word-spacing:739.594736pt;}
.ws159{word-spacing:826.765376pt;}
.ws15a{word-spacing:868.321786pt;}
.ws175{word-spacing:1590.919046pt;}
.ws171{word-spacing:1598.900793pt;}
.ws151{word-spacing:1619.156428pt;}
.ws173{word-spacing:1679.328234pt;}
._77{margin-left:-723.430397pt;}
._82{margin-left:-707.403675pt;}
._7c{margin-left:-550.669845pt;}
._85{margin-left:-534.646842pt;}
._be{margin-left:-523.009656pt;}
._bf{margin-left:-512.419947pt;}
._aa{margin-left:-490.352628pt;}
._ab{margin-left:-480.065234pt;}
._c0{margin-left:-95.074280pt;}
._8c{margin-left:-20.680473pt;}
._8b{margin-left:-19.732035pt;}
._b8{margin-left:-14.700795pt;}
._89{margin-left:-13.395563pt;}
._88{margin-left:-12.492289pt;}
._94{margin-left:-11.347767pt;}
._93{margin-left:-10.257995pt;}
._9c{margin-left:-9.308387pt;}
._c6{margin-left:-8.141710pt;}
._c8{margin-left:-6.456559pt;}
._90{margin-left:-2.920260pt;}
._3{margin-left:-1.029733pt;}
._2{width:0.907791pt;}
._c5{width:2.292463pt;}
._ac{width:3.194930pt;}
._92{width:6.025363pt;}
._86{width:8.364323pt;}
._8{width:9.750850pt;}
._6{width:11.243625pt;}
._9{width:12.627780pt;}
._1{width:13.567185pt;}
._c7{width:16.087322pt;}
._a{width:16.999629pt;}
._b7{width:18.927289pt;}
._8a{width:20.142884pt;}
._5{width:21.854872pt;}
._8d{width:24.438096pt;}
._87{width:25.833655pt;}
._7{width:27.597724pt;}
._4{width:30.626514pt;}
._8f{width:32.825001pt;}
._0{width:36.547538pt;}
._8e{width:44.332721pt;}
._b6{width:70.652963pt;}
._45{width:91.213585pt;}
._32{width:310.689032pt;}
._a9{width:354.812067pt;}
._27{width:375.223647pt;}
._bd{width:387.468047pt;}
._c4{width:402.914549pt;}
._bc{width:413.239493pt;}
._3d{width:414.433407pt;}
._40{width:419.141850pt;}
._af{width:422.292415pt;}
._3f{width:425.271355pt;}
._c2{width:427.986755pt;}
._17{width:448.610606pt;}
._c3{width:454.948396pt;}
._b0{width:468.531499pt;}
._a8{width:478.424996pt;}
._2e{width:489.214860pt;}
._ad{width:490.790936pt;}
._ae{width:493.599985pt;}
._56{width:507.183088pt;}
._2a{width:508.079453pt;}
._2d{width:510.214099pt;}
._58{width:514.904479pt;}
._2b{width:519.166598pt;}
._c1{width:523.446917pt;}
._7d{width:535.877950pt;}
._e{width:548.817604pt;}
._73{width:551.190288pt;}
._41{width:558.052774pt;}
._47{width:569.932410pt;}
._a7{width:575.868509pt;}
._29{width:584.564372pt;}
._b{width:597.176455pt;}
._31{width:599.356267pt;}
._83{width:603.704199pt;}
._2c{width:608.781125pt;}
._91{width:609.748159pt;}
._11{width:611.860756pt;}
._5e{width:614.077494pt;}
._7a{width:620.318580pt;}
._6e{width:621.638953pt;}
._14{width:653.216319pt;}
._6f{width:658.099839pt;}
._62{width:660.037626pt;}
._66{width:662.827146pt;}
._70{width:667.171358pt;}
._64{width:671.087844pt;}
._13{width:674.710501pt;}
._6a{width:683.767142pt;}
._5f{width:684.961057pt;}
._61{width:686.411607pt;}
._74{width:687.635277pt;}
._9b{width:691.365823pt;}
._c{width:694.649990pt;}
._34{width:699.529790pt;}
._33{width:701.054728pt;}
._78{width:710.252705pt;}
._4e{width:711.275262pt;}
._55{width:712.413653pt;}
._43{width:713.693113pt;}
._48{width:716.196242pt;}
._49{width:720.774774pt;}
._5d{width:732.368020pt;}
._76{width:734.640548pt;}
._6d{width:736.299383pt;}
._7f{width:741.432100pt;}
._68{width:744.909701pt;}
._24{width:748.811310pt;}
._4b{width:751.574795pt;}
._72{width:757.882829pt;}
._18{width:759.095340pt;}
._84{width:761.074040pt;}
._5c{width:767.787485pt;}
._d{width:770.186472pt;}
._2f{width:773.902113pt;}
._42{width:775.765512pt;}
._7b{width:777.390872pt;}
._4a{width:778.741000pt;}
._28{width:781.247849pt;}
._5a{width:782.237198pt;}
._46{width:788.005926pt;}
._54{width:789.515986pt;}
._75{width:790.427229pt;}
._10{width:792.294348pt;}
._1f{width:797.490294pt;}
._23{width:800.212865pt;}
._7e{width:801.243128pt;}
._20{width:805.955557pt;}
._50{width:808.871535pt;}
._21{width:809.886921pt;}
._81{width:812.003236pt;}
._9a{width:813.223187pt;}
._22{width:815.027076pt;}
._71{width:819.512624pt;}
._79{width:821.409498pt;}
._4d{width:822.517867pt;}
._51{width:823.533252pt;}
._12{width:827.248893pt;}
._57{width:831.846022pt;}
._38{width:834.988881pt;}
._52{width:839.407481pt;}
._59{width:842.371811pt;}
._39{width:843.502496pt;}
._4c{width:844.945608pt;}
._4f{width:848.441806pt;}
._53{width:849.929550pt;}
._80{width:850.859390pt;}
._35{width:852.428960pt;}
._5b{width:853.429468pt;}
._1c{width:857.825752pt;}
._f{width:861.764554pt;}
._60{width:866.964219pt;}
._44{width:869.500823pt;}
._16{width:874.893895pt;}
._3b{width:880.655183pt;}
._3a{width:882.221034pt;}
._67{width:889.592805pt;}
._1b{width:891.965757pt;}
._1d{width:894.974719pt;}
._25{width:905.095098pt;}
._26{width:907.066359pt;}
._63{width:909.465346pt;}
._65{width:912.920631pt;}
._69{width:915.390286pt;}
._6c{width:916.584201pt;}
._6b{width:920.511845pt;}
._37{width:928.672121pt;}
._36{width:930.197059pt;}
._19{width:941.098503pt;}
._15{width:944.594701pt;}
._1a{width:949.202988pt;}
._3c{width:950.396903pt;}
._30{width:953.074842pt;}
._3e{width:961.629370pt;}
._1e{width:966.237657pt;}
._9f{width:1031.627725pt;}
._b3{width:1308.195615pt;}
._a3{width:1343.027422pt;}
._b2{width:1385.446723pt;}
._bb{width:1398.032770pt;}
._95{width:1410.139554pt;}
._b1{width:1453.860630pt;}
._b4{width:1480.762761pt;}
._a4{width:1498.626580pt;}
._9d{width:1517.811306pt;}
._ba{width:1533.019769pt;}
._b9{width:1534.529829pt;}
._b5{width:1544.698560pt;}
._a0{width:1549.768047pt;}
._97{width:1570.023682pt;}
._9e{width:1591.008311pt;}
._a1{width:1620.521433pt;}
._98{width:1640.780787pt;}
._a2{width:1655.546646pt;}
._99{width:1675.802280pt;}
._96{width:1688.117081pt;}
._a5{width:1700.948873pt;}
._a6{width:1735.974086pt;}
.fsb{font-size:24.792000pt;}
.fs11{font-size:26.034667pt;}
.fsf{font-size:30.106133pt;}
.fs10{font-size:31.613333pt;}
.fs5{font-size:31.881067pt;}
.fse{font-size:35.418667pt;}
.fs4{font-size:37.193600pt;}
.fsa{font-size:38.961067pt;}
.fs2{font-size:45.163733pt;}
.fs3{font-size:47.820267pt;}
.fsc{font-size:50.477867pt;}
.fsd{font-size:53.133867pt;}
.fs9{font-size:58.448000pt;}
.fs7{font-size:74.387200pt;}
.fs6{font-size:85.332800pt;}
.fs0{font-size:95.641600pt;}
.fs8{font-size:106.268267pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:17.385997pt;}
.y70{bottom:26.683467pt;}
.ya3{bottom:68.331937pt;}
.y359{bottom:68.787522pt;}
.y200{bottom:68.787709pt;}
.y332{bottom:68.787999pt;}
.y2ff{bottom:68.788089pt;}
.y265{bottom:69.241231pt;}
.y188{bottom:70.526297pt;}
.y235{bottom:72.491360pt;}
.y1e5{bottom:76.271660pt;}
.y2ae{bottom:77.026910pt;}
.y2d5{bottom:77.782854pt;}
.y10b{bottom:81.637733pt;}
.y2d{bottom:82.091231pt;}
.y6f{bottom:82.998587pt;}
.ya2{bottom:83.600840pt;}
.y186{bottom:84.283467pt;}
.y264{bottom:84.510010pt;}
.y358{bottom:84.737094pt;}
.y1ff{bottom:84.737281pt;}
.y331{bottom:84.737572pt;}
.y2fe{bottom:84.737661pt;}
.y185{bottom:85.795158pt;}
.y187{bottom:85.795200pt;}
.y234{bottom:87.155744pt;}
.y285{bottom:87.155867pt;}
.y1e4{bottom:92.221233pt;}
.y2ad{bottom:92.976483pt;}
.y2d4{bottom:93.732426pt;}
.y145{bottom:94.714933pt;}
.y2c{bottom:95.395200pt;}
.y2bc{bottom:97.664684pt;}
.ya1{bottom:97.887831pt;}
.y10a{bottom:97.964806pt;}
.y6e{bottom:98.948160pt;}
.y263{bottom:99.099254pt;}
.y184{bottom:100.459665pt;}
.y357{bottom:100.686667pt;}
.y330{bottom:100.687144pt;}
.y2fd{bottom:100.687234pt;}
.y233{bottom:101.744854pt;}
.ye{bottom:105.675897pt;}
.y1e3{bottom:108.095156pt;}
.y2b{bottom:108.699277pt;}
.y2ac{bottom:108.926055pt;}
.y143{bottom:109.530667pt;}
.y2d3{bottom:109.681999pt;}
.y142{bottom:111.042304pt;}
.y144{bottom:111.042533pt;}
.ya0{bottom:112.477021pt;}
.y109{bottom:112.629312pt;}
.y2bb{bottom:113.614257pt;}
.y6d{bottom:114.897732pt;}
.y262{bottom:115.048800pt;}
.y183{bottom:115.048854pt;}
.y1fe{bottom:116.636426pt;}
.y232{bottom:117.694400pt;}
.y284{bottom:118.979467pt;}
.y356{bottom:119.281867pt;}
.yd{bottom:121.625470pt;}
.y1c0{bottom:121.927467pt;}
.y2a{bottom:121.927528pt;}
.y1e2{bottom:124.044728pt;}
.y2ab{bottom:124.875628pt;}
.y2d2{bottom:125.555922pt;}
.y141{bottom:125.631493pt;}
.y9f{bottom:126.764013pt;}
.y108{bottom:126.916304pt;}
.y6c{bottom:130.771655pt;}
.y182{bottom:130.998400pt;}
.y32f{bottom:132.208043pt;}
.y1fd{bottom:132.585999pt;}
.y2fc{bottom:132.586379pt;}
.y231{bottom:133.644133pt;}
.y29{bottom:135.231498pt;}
.y1bf{bottom:138.255093pt;}
.y13f{bottom:138.708667pt;}
.y1e1{bottom:139.994301pt;}
.y13e{bottom:140.295932pt;}
.y140{bottom:140.296000pt;}
.y2aa{bottom:140.825415pt;}
.y9e{bottom:141.353202pt;}
.y107{bottom:142.790532pt;}
.y2ba{bottom:145.513402pt;}
.y6b{bottom:146.721228pt;}
.y181{bottom:146.948000pt;}
.y28{bottom:148.535467pt;}
.y1fc{bottom:148.535571pt;}
.y1bd{bottom:151.332133pt;}
.y292{bottom:151.407258pt;}
.y1bc{bottom:152.919285pt;}
.y1be{bottom:152.919600pt;}
.y355{bottom:153.146532pt;}
.yc{bottom:153.524615pt;}
.y13d{bottom:154.885121pt;}
.y9d{bottom:155.640194pt;}
.y1e0{bottom:155.943873pt;}
.y2a9{bottom:156.699338pt;}
.y2d1{bottom:157.455067pt;}
.y106{bottom:158.740078pt;}
.y2b9{bottom:161.462974pt;}
.y6a{bottom:162.670800pt;}
.y68{bottom:162.670828pt;}
.y32e{bottom:163.200526pt;}
.y1fb{bottom:164.485143pt;}
.y2fb{bottom:164.485524pt;}
.y24d{bottom:164.787592pt;}
.y291{bottom:165.996447pt;}
.y1bb{bottom:167.508475pt;}
.y69{bottom:167.735467pt;}
.y354{bottom:169.096104pt;}
.yb{bottom:169.398538pt;}
.y9c{bottom:170.304700pt;}
.y13c{bottom:170.834667pt;}
.y1df{bottom:171.893445pt;}
.y105{bottom:173.027070pt;}
.y227{bottom:176.730909pt;}
.y2b8{bottom:177.336897pt;}
.y67{bottom:178.620400pt;}
.y65{bottom:178.620587pt;}
.y32d{bottom:178.771852pt;}
.y1fa{bottom:180.359067pt;}
.y1f8{bottom:180.359094pt;}
.y290{bottom:180.585637pt;}
.y1ba{bottom:182.097664pt;}
.y66{bottom:183.609333pt;}
.y9b{bottom:184.591692pt;}
.y353{bottom:184.970028pt;}
.ya{bottom:185.348110pt;}
.y1f9{bottom:185.423600pt;}
.y13b{bottom:186.784133pt;}
.y102{bottom:187.010608pt;}
.y104{bottom:187.010933pt;}
.y1de{bottom:187.843018pt;}
.y2a8{bottom:188.598483pt;}
.y2d0{bottom:189.051867pt;}
.y103{bottom:191.092800pt;}
.y180{bottom:191.244000pt;}
.y226{bottom:192.680481pt;}
.y2b7{bottom:193.286470pt;}
.y1b9{bottom:193.435877pt;}
.y64{bottom:194.570160pt;}
.y28f{bottom:195.250144pt;}
.y1f7{bottom:196.308667pt;}
.y2fa{bottom:196.309019pt;}
.y261{bottom:198.727344pt;}
.y9a{bottom:200.465921pt;}
.y352{bottom:200.919600pt;}
.yff{bottom:201.297532pt;}
.y101{bottom:201.297600pt;}
.y9{bottom:201.297683pt;}
.y1dd{bottom:203.792590pt;}
.y2a7{bottom:204.548055pt;}
.y100{bottom:205.379467pt;}
.y17e{bottom:206.059733pt;}
.y1b7{bottom:206.437733pt;}
.y17d{bottom:207.571344pt;}
.y17f{bottom:207.571600pt;}
.y1b6{bottom:208.024742pt;}
.y1b8{bottom:208.025067pt;}
.y225{bottom:208.630054pt;}
.y32c{bottom:209.764335pt;}
.y28e{bottom:209.839333pt;}
.y28c{bottom:209.839388pt;}
.y25f{bottom:211.804667pt;}
.y2f9{bottom:212.258592pt;}
.y25e{bottom:213.315846pt;}
.y260{bottom:213.316533pt;}
.y28d{bottom:213.996800pt;}
.yfe{bottom:215.886721pt;}
.y99{bottom:216.415466pt;}
.y8{bottom:217.247255pt;}
.y351{bottom:219.514933pt;}
.y1dc{bottom:219.742163pt;}
.y17b{bottom:220.648800pt;}
.y17c{bottom:222.160533pt;}
.y17a{bottom:222.160560pt;}
.y1b5{bottom:222.613932pt;}
.y224{bottom:224.579626pt;}
.y32b{bottom:225.713907pt;}
.y28b{bottom:225.788933pt;}
.y63{bottom:226.469304pt;}
.y2e2{bottom:227.451979pt;}
.y25d{bottom:227.905035pt;}
.y1f6{bottom:228.208054pt;}
.y2f8{bottom:228.208164pt;}
.y2e3{bottom:231.533733pt;}
.yfb{bottom:231.835808pt;}
.yfd{bottom:231.836267pt;}
.y98{bottom:232.365012pt;}
.y7{bottom:233.196828pt;}
.y178{bottom:235.237733pt;}
.y1db{bottom:235.616086pt;}
.y2cf{bottom:235.917877pt;}
.yfc{bottom:235.918133pt;}
.y2a6{bottom:236.447200pt;}
.y177{bottom:236.824944pt;}
.y179{bottom:236.825067pt;}
.y1b4{bottom:237.203121pt;}
.y223{bottom:240.529199pt;}
.y2e1{bottom:240.679883pt;}
.y32a{bottom:241.663479pt;}
.y28a{bottom:241.738533pt;}
.y62{bottom:242.418877pt;}
.y25c{bottom:242.569542pt;}
.y1f5{bottom:244.157626pt;}
.y2f7{bottom:244.157737pt;}
.y27{bottom:244.460434pt;}
.yf8{bottom:246.122544pt;}
.yfa{bottom:246.122800pt;}
.y97{bottom:248.995200pt;}
.y6{bottom:249.146400pt;}
.y175{bottom:249.902267pt;}
.yf9{bottom:250.204667pt;}
.y2ce{bottom:250.506810pt;}
.y174{bottom:251.413877pt;}
.y176{bottom:251.414133pt;}
.y1da{bottom:251.565658pt;}
.y13a{bottom:252.321200pt;}
.y1b3{bottom:253.152667pt;}
.y350{bottom:253.381325pt;}
.y2e0{bottom:253.984033pt;}
.y222{bottom:256.478771pt;}
.y25b{bottom:257.158732pt;}
.y329{bottom:257.537403pt;}
.y61{bottom:258.292800pt;}
.y5f{bottom:258.292855pt;}
.y1f4{bottom:260.107199pt;}
.y2f6{bottom:260.107309pt;}
.y26{bottom:260.410006pt;}
.yf5{bottom:260.711408pt;}
.yf7{bottom:260.711733pt;}
.y60{bottom:263.357467pt;}
.y172{bottom:264.491333pt;}
.yf6{bottom:264.869200pt;}
.y2cd{bottom:265.096027pt;}
.y173{bottom:266.003067pt;}
.y171{bottom:266.003093pt;}
.y138{bottom:267.136933pt;}
.y2df{bottom:267.288184pt;}
.y1d9{bottom:267.515231pt;}
.y2a5{bottom:267.969149pt;}
.y137{bottom:268.648570pt;}
.y139{bottom:268.648800pt;}
.y1b2{bottom:269.102267pt;}
.y34f{bottom:269.330898pt;}
.y25a{bottom:271.747921pt;}
.y221{bottom:272.352694pt;}
.y328{bottom:273.486975pt;}
.y5e{bottom:274.242428pt;}
.yf2{bottom:274.998376pt;}
.yf4{bottom:274.998400pt;}
.y1f3{bottom:276.056771pt;}
.y25{bottom:276.359579pt;}
.y16f{bottom:279.080267pt;}
.yf3{bottom:279.155867pt;}
.y2cc{bottom:279.760410pt;}
.y2de{bottom:280.592335pt;}
.y16e{bottom:280.667344pt;}
.y170{bottom:280.667600pt;}
.y96{bottom:281.499200pt;}
.y136{bottom:283.313077pt;}
.y1d8{bottom:283.464803pt;}
.y34e{bottom:284.902224pt;}
.y283{bottom:286.034665pt;}
.y259{bottom:287.697467pt;}
.y220{bottom:288.302860pt;}
.y327{bottom:289.436547pt;}
.y5d{bottom:290.192000pt;}
.y5b{bottom:290.192188pt;}
.yf1{bottom:290.947921pt;}
.y1f2{bottom:292.006343pt;}
.y2f5{bottom:292.006454pt;}
.y24{bottom:292.309151pt;}
.y16d{bottom:293.669200pt;}
.y2dd{bottom:293.820239pt;}
.y2cb{bottom:294.349344pt;}
.y16c{bottom:295.256410pt;}
.y5c{bottom:295.256533pt;}
.y134{bottom:296.390533pt;}
.y133{bottom:297.902198pt;}
.y135{bottom:297.902267pt;}
.y1d7{bottom:299.414376pt;}
.y282{bottom:301.984238pt;}
.y258{bottom:303.647200pt;}
.y326{bottom:305.386120pt;}
.y5a{bottom:306.141761pt;}
.y2a4{bottom:306.822380pt;}
.yee{bottom:306.897142pt;}
.yf0{bottom:306.897467pt;}
.y2dc{bottom:307.124389pt;}
.y1f1{bottom:307.880267pt;}
.y2f4{bottom:307.880377pt;}
.y23{bottom:308.258724pt;}
.y16a{bottom:308.333733pt;}
.y2ca{bottom:308.938588pt;}
.y169{bottom:309.845398pt;}
.y16b{bottom:309.845600pt;}
.yef{bottom:310.979467pt;}
.y132{bottom:312.491388pt;}
.y1d6{bottom:315.363948pt;}
.y95{bottom:317.026694pt;}
.y34d{bottom:317.783680pt;}
.y281{bottom:317.858161pt;}
.y2db{bottom:320.428540pt;}
.yed{bottom:321.184133pt;}
.yeb{bottom:321.184253pt;}
.y325{bottom:321.335692pt;}
.y59{bottom:322.091333pt;}
.y57{bottom:322.091361pt;}
.y2a3{bottom:322.771953pt;}
.y2f3{bottom:323.829949pt;}
.y22{bottom:324.208296pt;}
.y168{bottom:324.509905pt;}
.y2c9{bottom:324.888133pt;}
.yec{bottom:325.266000pt;}
.y3da{bottom:325.795865pt;}
.y3b2{bottom:325.798070pt;}
.y388{bottom:325.800823pt;}
.y58{bottom:327.080267pt;}
.y24c{bottom:327.533976pt;}
.y131{bottom:328.440933pt;}
.y1d5{bottom:331.313520pt;}
.y230{bottom:332.068944pt;}
.y1b1{bottom:332.069200pt;}
.y94{bottom:332.976267pt;}
.y92{bottom:332.976399pt;}
.y2da{bottom:333.656444pt;}
.y34c{bottom:333.733253pt;}
.y280{bottom:333.807788pt;}
.ye8{bottom:335.092342pt;}
.yea{bottom:335.092800pt;}
.y3d9{bottom:336.453691pt;}
.y3b1{bottom:336.456826pt;}
.y387{bottom:336.459578pt;}
.y93{bottom:337.965333pt;}
.y56{bottom:338.040933pt;}
.y2a2{bottom:338.721525pt;}
.ye9{bottom:339.250400pt;}
.y2f2{bottom:339.779522pt;}
.y167{bottom:340.384133pt;}
.y2c8{bottom:340.837733pt;}
.y20c{bottom:341.290816pt;}
.y24b{bottom:343.483548pt;}
.y130{bottom:344.390533pt;}
.y22e{bottom:345.070800pt;}
.y22d{bottom:346.657835pt;}
.y22f{bottom:346.658133pt;}
.y2d9{bottom:346.960595pt;}
.y3d8{bottom:347.111517pt;}
.y386{bottom:347.117405pt;}
.y1d4{bottom:347.263093pt;}
.y1b0{bottom:348.396544pt;}
.y91{bottom:348.925971pt;}
.y34b{bottom:349.304579pt;}
.ye7{bottom:349.379333pt;}
.ye5{bottom:349.379651pt;}
.y27f{bottom:349.757361pt;}
.y324{bottom:352.856591pt;}
.ye6{bottom:353.536933pt;}
.y20b{bottom:354.594967pt;}
.y2a1{bottom:354.671097pt;}
.y2f1{bottom:355.729094pt;}
.y21{bottom:356.107441pt;}
.y166{bottom:356.333733pt;}
.y55{bottom:356.636133pt;}
.y3b0{bottom:356.865884pt;}
.y3d7{bottom:357.694026pt;}
.y385{bottom:357.699914pt;}
.y24a{bottom:359.433120pt;}
.y2d8{bottom:360.264745pt;}
.y22c{bottom:361.247025pt;}
.y1ae{bottom:361.474000pt;}
.y1ad{bottom:362.985162pt;}
.y1af{bottom:362.985733pt;}
.y1d3{bottom:363.137016pt;}
.ye4{bottom:363.363515pt;}
.y90{bottom:364.875543pt;}
.y27e{bottom:365.706933pt;}
.y27c{bottom:365.707044pt;}
.y3af{bottom:367.448393pt;}
.y20a{bottom:367.899117pt;}
.y384{bottom:368.358669pt;}
.y2a0{bottom:370.620670pt;}
.y27d{bottom:370.696000pt;}
.y2f0{bottom:371.678667pt;}
.y20{bottom:371.981364pt;}
.y2d7{bottom:373.568896pt;}
.ye1{bottom:374.626123pt;}
.ye3{bottom:374.626667pt;}
.y22b{bottom:375.911532pt;}
.y1ac{bottom:377.574352pt;}
.y3ae{bottom:378.107149pt;}
.ye2{bottom:378.784133pt;}
.y383{bottom:378.941179pt;}
.y3d6{bottom:379.691251pt;}
.y8f{bottom:380.749467pt;}
.y8d{bottom:380.749522pt;}
.y209{bottom:381.203268pt;}
.y2b6{bottom:381.506328pt;}
.y27b{bottom:381.656616pt;}
.y34a{bottom:382.186035pt;}
.y323{bottom:383.849074pt;}
.y8e{bottom:385.814133pt;}
.y29f{bottom:386.570242pt;}
.y2d6{bottom:386.796800pt;}
.y1f{bottom:387.930937pt;}
.y3ad{bottom:388.689658pt;}
.ye0{bottom:388.913115pt;}
.y2ef{bottom:390.273867pt;}
.y3d5{bottom:390.350007pt;}
.y22a{bottom:390.500721pt;}
.y249{bottom:391.332265pt;}
.y1ab{bottom:392.238858pt;}
.y208{bottom:394.431172pt;}
.y1d2{bottom:395.036161pt;}
.y53{bottom:396.171390pt;}
.y27a{bottom:397.606188pt;}
.y382{bottom:397.914564pt;}
.y349{bottom:398.059958pt;}
.y3ac{bottom:399.348414pt;}
.y322{bottom:399.420400pt;}
.ydf{bottom:400.176267pt;}
.ydd{bottom:400.176670pt;}
.y3d4{bottom:401.007833pt;}
.y54{bottom:402.066000pt;}
.y29e{bottom:402.444165pt;}
.y12f{bottom:403.804667pt;}
.y1e{bottom:403.880509pt;}
.yde{bottom:404.333733pt;}
.y229{bottom:406.450267pt;}
.y1aa{bottom:406.828048pt;}
.y248{bottom:407.281838pt;}
.y207{bottom:407.735323pt;}
.y165{bottom:408.188933pt;}
.y381{bottom:408.572390pt;}
.y1d1{bottom:410.985733pt;}
.y3d3{bottom:411.590342pt;}
.y52{bottom:412.120848pt;}
.y8c{bottom:412.648667pt;}
.y279{bottom:413.555761pt;}
.y348{bottom:413.706933pt;}
.yda{bottom:414.160208pt;}
.ydc{bottom:414.160533pt;}
.y321{bottom:416.730667pt;}
.y2c7{bottom:417.939877pt;}
.y1a9{bottom:418.091227pt;}
.ydb{bottom:418.242400pt;}
.y29d{bottom:418.393738pt;}
.y12d{bottom:418.544800pt;}
.y380{bottom:419.231146pt;}
.y3ab{bottom:419.682155pt;}
.y1d{bottom:419.830081pt;}
.y12c{bottom:420.131754pt;}
.y12e{bottom:420.132133pt;}
.y206{bottom:421.039473pt;}
.y3d2{bottom:422.248168pt;}
.y228{bottom:422.399867pt;}
.y2ee{bottom:422.778081pt;}
.y163{bottom:423.004533pt;}
.y162{bottom:424.516332pt;}
.y164{bottom:424.516400pt;}
.y51{bottom:427.994591pt;}
.yd7{bottom:428.445031pt;}
.yd9{bottom:428.447200pt;}
.y278{bottom:429.505626pt;}
.y37f{bottom:429.813655pt;}
.y3aa{bottom:430.340911pt;}
.y2c6{bottom:430.941600pt;}
.y1a7{bottom:431.168400pt;}
.y2c5{bottom:432.528512pt;}
.yd8{bottom:432.529067pt;}
.y1a6{bottom:432.755665pt;}
.y1a8{bottom:432.755733pt;}
.y205{bottom:434.267377pt;}
.y12b{bottom:434.720944pt;}
.y2ed{bottom:438.652005pt;}
.y247{bottom:439.105333pt;}
.y161{bottom:439.180838pt;}
.y37e{bottom:440.471481pt;}
.y3a9{bottom:440.923420pt;}
.y1d0{bottom:442.885231pt;}
.yd6{bottom:443.034221pt;}
.y50{bottom:443.944049pt;}
.y8b{bottom:444.170189pt;}
.y3d1{bottom:444.245393pt;}
.y277{bottom:445.379549pt;}
.y2c4{bottom:447.117702pt;}
.y1a5{bottom:447.344854pt;}
.y204{bottom:447.571528pt;}
.y129{bottom:447.798400pt;}
.y320{bottom:448.629894pt;}
.y12a{bottom:449.310133pt;}
.y128{bottom:449.310215pt;}
.y29c{bottom:450.292883pt;}
.y3a8{bottom:451.581246pt;}
.y1c{bottom:451.729226pt;}
.y2ec{bottom:454.601577pt;}
.y3d0{bottom:454.904149pt;}
.y160{bottom:455.055067pt;}
.y1cf{bottom:458.834803pt;}
.yd5{bottom:458.983766pt;}
.y37d{bottom:459.444866pt;}
.y4f{bottom:459.893508pt;}
.y203{bottom:460.875679pt;}
.y276{bottom:461.329122pt;}
.y2c3{bottom:461.706892pt;}
.y3a7{bottom:462.239072pt;}
.y1a4{bottom:463.294400pt;}
.y127{bottom:463.974721pt;}
.y31f{bottom:464.579467pt;}
.y31d{bottom:464.579737pt;}
.y347{bottom:464.806216pt;}
.y21f{bottom:465.033065pt;}
.y3cf{bottom:465.486658pt;}
.y29b{bottom:466.242455pt;}
.y1b{bottom:467.678799pt;}
.y31e{bottom:469.644000pt;}
.y37c{bottom:470.027375pt;}
.yd4{bottom:470.246918pt;}
.y2eb{bottom:470.551149pt;}
.y246{bottom:470.702851pt;}
.y15f{bottom:471.004533pt;}
.y3a6{bottom:472.821581pt;}
.y202{bottom:474.179829pt;}
.y1ce{bottom:474.784376pt;}
.y4e{bottom:475.842966pt;}
.y3ce{bottom:476.145414pt;}
.y2c2{bottom:476.371398pt;}
.y275{bottom:477.278694pt;}
.y8a{bottom:478.715120pt;}
.y1a3{bottom:479.244000pt;}
.y126{bottom:479.924267pt;}
.y31c{bottom:480.529309pt;}
.y37b{bottom:480.686131pt;}
.y346{bottom:480.755788pt;}
.y21e{bottom:480.982638pt;}
.y3a5{bottom:483.480337pt;}
.y1a{bottom:483.628371pt;}
.yd3{bottom:484.836108pt;}
.y2ea{bottom:486.500722pt;}
.y3cd{bottom:486.727923pt;}
.y201{bottom:487.407733pt;}
.y1cd{bottom:490.658299pt;}
.y2c1{bottom:490.960588pt;}
.y37a{bottom:491.344887pt;}
.y4d{bottom:491.792425pt;}
.y274{bottom:493.228294pt;}
.y89{bottom:494.664693pt;}
.y125{bottom:495.798400pt;}
.y31b{bottom:496.478881pt;}
.y345{bottom:496.705361pt;}
.y3cc{bottom:497.385749pt;}
.y29a{bottom:498.141600pt;}
.y19{bottom:499.502294pt;}
.yd2{bottom:500.785653pt;}
.y379{bottom:501.927396pt;}
.y2e9{bottom:502.450294pt;}
.y3a4{bottom:503.814078pt;}
.y1cc{bottom:506.607871pt;}
.y2c0{bottom:506.910133pt;}
.y4c{bottom:507.741883pt;}
.y273{bottom:509.177867pt;}
.y271{bottom:509.177922pt;}
.y245{bottom:509.556081pt;}
.y88{bottom:510.614265pt;}
.y31a{bottom:512.428454pt;}
.y344{bottom:512.654933pt;}
.y342{bottom:512.655451pt;}
.y21d{bottom:512.806133pt;}
.y21b{bottom:512.806216pt;}
.y272{bottom:514.166800pt;}
.y3a3{bottom:514.472834pt;}
.yd1{bottom:514.769517pt;}
.y15e{bottom:515.376267pt;}
.y18{bottom:515.451867pt;}
.y343{bottom:517.644000pt;}
.y21c{bottom:517.870667pt;}
.y2e8{bottom:518.400026pt;}
.y3cb{bottom:519.382974pt;}
.y378{bottom:520.900781pt;}
.y1cb{bottom:522.557444pt;}
.y2bf{bottom:522.859733pt;}
.y4b{bottom:523.691342pt;}
.y3a2{bottom:525.055343pt;}
.y244{bottom:525.505654pt;}
.y87{bottom:526.488188pt;}
.y319{bottom:528.378026pt;}
.y341{bottom:528.605023pt;}
.y21a{bottom:528.755788pt;}
.yd0{bottom:529.056509pt;}
.y299{bottom:529.663169pt;}
.y3ca{bottom:530.040800pt;}
.y15c{bottom:530.116400pt;}
.y17{bottom:531.401467pt;}
.y377{bottom:531.558607pt;}
.y15b{bottom:531.703354pt;}
.y15d{bottom:531.703733pt;}
.y2e7{bottom:534.349599pt;}
.y3a1{bottom:535.713169pt;}
.y1a2{bottom:536.617200pt;}
.y4a{bottom:539.640800pt;}
.y3c9{bottom:540.627374pt;}
.y270{bottom:541.077067pt;}
.y26e{bottom:541.077226pt;}
.y243{bottom:541.379577pt;}
.y376{bottom:542.141116pt;}
.y86{bottom:542.437761pt;}
.ycf{bottom:542.965056pt;}
.y124{bottom:544.327467pt;}
.y340{bottom:544.478946pt;}
.y26f{bottom:546.066000pt;}
.y15a{bottom:546.292544pt;}
.y3a0{bottom:546.370995pt;}
.y2e6{bottom:550.299171pt;}
.y3c8{bottom:551.285200pt;}
.y375{bottom:552.798942pt;}
.y1a1{bottom:552.944544pt;}
.y1ca{bottom:554.456588pt;}
.y39f{bottom:556.953504pt;}
.y26d{bottom:557.026799pt;}
.yce{bottom:557.252047pt;}
.y242{bottom:557.329149pt;}
.y2b5{bottom:557.706988pt;}
.y16{bottom:557.933015pt;}
.y49{bottom:558.236133pt;}
.y85{bottom:558.387361pt;}
.y158{bottom:559.369867pt;}
.y318{bottom:560.201522pt;}
.y33f{bottom:560.428519pt;}
.y123{bottom:560.654875pt;}
.y219{bottom:560.654933pt;}
.y159{bottom:560.881733pt;}
.y157{bottom:560.881893pt;}
.y3c7{bottom:561.867709pt;}
.y19f{bottom:566.021867pt;}
.y2e5{bottom:566.173094pt;}
.y19e{bottom:567.533445pt;}
.y1a0{bottom:567.533733pt;}
.y39e{bottom:567.611330pt;}
.y298{bottom:568.516587pt;}
.y1c9{bottom:570.406161pt;}
.ycd{bottom:571.235911pt;}
.y15{bottom:571.237165pt;}
.y374{bottom:571.772328pt;}
.y26c{bottom:572.900722pt;}
.y241{bottom:573.278722pt;}
.y2b4{bottom:573.656561pt;}
.y155{bottom:573.958933pt;}
.y82{bottom:574.336855pt;}
.y84{bottom:574.336933pt;}
.y122{bottom:575.319381pt;}
.y154{bottom:575.546321pt;}
.y156{bottom:575.546400pt;}
.y317{bottom:576.151094pt;}
.y83{bottom:579.325867pt;}
.y2e4{bottom:582.122667pt;}
.y19d{bottom:582.197952pt;}
.y373{bottom:582.430154pt;}
.y3c6{bottom:583.940251pt;}
.y297{bottom:584.466160pt;}
.y14{bottom:584.541316pt;}
.ycc{bottom:585.522902pt;}
.y1c8{bottom:586.355733pt;}
.y1c6{bottom:586.355893pt;}
.y121{bottom:586.582277pt;}
.y39d{bottom:587.945072pt;}
.y2b3{bottom:589.606133pt;}
.y1c7{bottom:591.344667pt;}
.y153{bottom:591.495867pt;}
.y33e{bottom:592.025067pt;}
.y316{bottom:592.100667pt;}
.y314{bottom:592.100722pt;}
.y218{bottom:592.176859pt;}
.y372{bottom:593.012663pt;}
.y3c5{bottom:594.522760pt;}
.y19c{bottom:596.787141pt;}
.y315{bottom:597.165200pt;}
.y13{bottom:597.845467pt;}
.y39c{bottom:598.602898pt;}
.y11f{bottom:599.659733pt;}
.ycb{bottom:600.112092pt;}
.y296{bottom:600.415732pt;}
.y11e{bottom:601.170912pt;}
.y120{bottom:601.171467pt;}
.y1c5{bottom:602.305465pt;}
.y23f{bottom:603.288000pt;}
.y371{bottom:603.670489pt;}
.y26b{bottom:604.799867pt;}
.y23e{bottom:605.177788pt;}
.y240{bottom:605.177867pt;}
.y3c4{bottom:605.181516pt;}
.y81{bottom:606.236000pt;}
.y152{bottom:607.369867pt;}
.y313{bottom:608.050294pt;}
.y306{bottom:609.183699pt;}
.y39b{bottom:609.185407pt;}
.y19b{bottom:611.376331pt;}
.y48{bottom:612.963569pt;}
.y307{bottom:613.341600pt;}
.y3c3{bottom:615.764025pt;}
.y11d{bottom:615.835419pt;}
.yca{bottom:616.061638pt;}
.y295{bottom:616.365304pt;}
.y1c4{bottom:618.179388pt;}
.y39a{bottom:619.843233pt;}
.y2be{bottom:620.446916pt;}
.y23d{bottom:621.127361pt;}
.y12{bottom:621.733268pt;}
.y305{bottom:622.487849pt;}
.y370{bottom:622.643874pt;}
.y19a{bottom:622.714544pt;}
.y312{bottom:623.999867pt;}
.y47{bottom:624.226721pt;}
.y33c{bottom:624.833923pt;}
.y3c2{bottom:626.421851pt;}
.y217{bottom:626.721470pt;}
.y33d{bottom:629.820267pt;}
.yc9{bottom:630.348629pt;}
.y11c{bottom:630.424609pt;}
.y399{bottom:630.501059pt;}
.y294{bottom:632.314877pt;}
.y36f{bottom:633.226383pt;}
.y2bd{bottom:633.751067pt;}
.y198{bottom:635.716400pt;}
.y304{bottom:635.791716pt;}
.y26a{bottom:636.396350pt;}
.y23c{bottom:637.076933pt;}
.y197{bottom:637.303435pt;}
.y199{bottom:637.303733pt;}
.y80{bottom:637.757600pt;}
.y46{bottom:640.176267pt;}
.y11{bottom:640.328179pt;}
.y33b{bottom:640.783496pt;}
.y398{bottom:641.083568pt;}
.y311{bottom:642.595200pt;}
.y216{bottom:642.671042pt;}
.y45{bottom:642.973067pt;}
.y36e{bottom:643.884209pt;}
.yc8{bottom:644.937819pt;}
.y11b{bottom:645.013798pt;}
.y293{bottom:648.188800pt;}
.y3c1{bottom:648.419076pt;}
.y303{bottom:649.095867pt;}
.y301{bottom:649.096363pt;}
.y1c3{bottom:650.078533pt;}
.y397{bottom:651.742324pt;}
.y196{bottom:651.892625pt;}
.y302{bottom:653.177733pt;}
.y151{bottom:653.480133pt;}
.y36d{bottom:654.542035pt;}
.y44{bottom:656.125867pt;}
.y33a{bottom:656.733068pt;}
.y215{bottom:658.620615pt;}
.y43{bottom:658.922667pt;}
.y10{bottom:658.923089pt;}
.y3c0{bottom:659.076902pt;}
.yc7{bottom:659.224810pt;}
.y11a{bottom:659.678305pt;}
.y300{bottom:662.324267pt;}
.y36c{bottom:664.670782pt;}
.y36b{bottom:665.124544pt;}
.y195{bottom:666.481815pt;}
.y23b{bottom:668.900694pt;}
.y3bf{bottom:669.659411pt;}
.y150{bottom:669.807815pt;}
.y42{bottom:672.075248pt;}
.y396{bottom:672.076065pt;}
.y7f{bottom:672.226561pt;}
.yc5{bottom:672.302267pt;}
.y339{bottom:672.304394pt;}
.yc4{bottom:673.813542pt;}
.yc6{bottom:673.814000pt;}
.y214{bottom:674.570187pt;}
.y310{bottom:674.570485pt;}
.y36a{bottom:675.253291pt;}
.y119{bottom:675.552533pt;}
.y369{bottom:675.782370pt;}
.yf{bottom:677.518000pt;}
.y3be{bottom:680.318167pt;}
.y194{bottom:681.146321pt;}
.y1c2{bottom:681.675467pt;}
.y395{bottom:682.733891pt;}
.y239{bottom:682.960400pt;}
.y41{bottom:682.960885pt;}
.y40{bottom:683.338400pt;}
.y14f{bottom:684.472321pt;}
.y23a{bottom:684.850267pt;}
.y238{bottom:684.850294pt;}
.y368{bottom:685.986434pt;}
.y3f{bottom:686.135200pt;}
.y367{bottom:686.364879pt;}
.y2b2{bottom:686.588215pt;}
.yc2{bottom:686.588800pt;}
.yc1{bottom:688.100410pt;}
.yc3{bottom:688.100533pt;}
.y7e{bottom:688.176133pt;}
.y7c{bottom:688.176405pt;}
.y213{bottom:690.444110pt;}
.y30f{bottom:690.444408pt;}
.y269{bottom:690.519760pt;}
.y3bd{bottom:690.976923pt;}
.y118{bottom:691.502133pt;}
.y7d{bottom:693.240800pt;}
.y394{bottom:693.316400pt;}
.y193{bottom:697.095867pt;}
.y1c1{bottom:698.910133pt;}
.y3e{bottom:699.288000pt;}
.y2b1{bottom:699.892365pt;}
.y14e{bottom:700.421867pt;}
.y237{bottom:700.800452pt;}
.ybf{bottom:701.177733pt;}
.y3d{bottom:702.084933pt;}
.ybe{bottom:702.689275pt;}
.yc0{bottom:702.689600pt;}
.y393{bottom:703.984417pt;}
.y7b{bottom:704.125977pt;}
.y338{bottom:705.185850pt;}
.y366{bottom:705.338265pt;}
.y212{bottom:706.393683pt;}
.y30e{bottom:706.393980pt;}
.y268{bottom:706.469332pt;}
.y3bc{bottom:712.974147pt;}
.y192{bottom:713.045467pt;}
.y2b0{bottom:713.196516pt;}
.y392{bottom:714.642244pt;}
.y3c{bottom:715.237600pt;}
.ybc{bottom:715.464400pt;}
.y365{bottom:715.996091pt;}
.y14d{bottom:716.295867pt;}
.ybd{bottom:716.976267pt;}
.ybb{bottom:716.976293pt;}
.y3b{bottom:718.034533pt;}
.y7a{bottom:720.075549pt;}
.y337{bottom:721.135423pt;}
.y211{bottom:722.343255pt;}
.y30d{bottom:722.343553pt;}
.y3bb{bottom:723.556656pt;}
.y391{bottom:725.224753pt;}
.y2af{bottom:726.500667pt;}
.y364{bottom:726.653917pt;}
.yb9{bottom:730.053333pt;}
.y3a{bottom:731.187200pt;}
.yb8{bottom:731.640475pt;}
.yba{bottom:731.640800pt;}
.y257{bottom:732.698810pt;}
.y39{bottom:733.984000pt;}
.y3ba{bottom:734.215412pt;}
.y390{bottom:735.882579pt;}
.y79{bottom:736.025122pt;}
.y336{bottom:737.084995pt;}
.y363{bottom:737.236426pt;}
.y267{bottom:738.292828pt;}
.y30c{bottom:738.293125pt;}
.y117{bottom:741.165200pt;}
.y5{bottom:741.540243pt;}
.yb6{bottom:744.340000pt;}
.y3b9{bottom:744.874168pt;}
.y255{bottom:745.776267pt;}
.yb5{bottom:745.926752pt;}
.yb7{bottom:745.927467pt;}
.y1f0{bottom:746.229733pt;}
.y38{bottom:747.136800pt;}
.y254{bottom:747.287446pt;}
.y256{bottom:747.288000pt;}
.y362{bottom:747.894252pt;}
.y37{bottom:749.933733pt;}
.y210{bottom:754.242322pt;}
.y266{bottom:754.242400pt;}
.y30b{bottom:754.242697pt;}
.y3b8{bottom:755.456677pt;}
.y38f{bottom:756.216320pt;}
.y116{bottom:757.492544pt;}
.yb4{bottom:760.515942pt;}
.y253{bottom:761.951952pt;}
.y1ef{bottom:762.557360pt;}
.y3b7{bottom:766.114503pt;}
.y361{bottom:766.867637pt;}
.y38e{bottom:766.874146pt;}
.y78{bottom:767.924267pt;}
.y147{bottom:768.302161pt;}
.y335{bottom:768.605894pt;}
.y115{bottom:772.081760pt;}
.yb2{bottom:773.215600pt;}
.y34{bottom:774.576133pt;}
.y191{bottom:774.727333pt;}
.yb1{bottom:774.802677pt;}
.yb3{bottom:774.802933pt;}
.y36{bottom:775.256533pt;}
.y1ed{bottom:775.634400pt;}
.y252{bottom:776.541142pt;}
.y3b6{bottom:776.697012pt;}
.y1ec{bottom:777.221552pt;}
.y1ee{bottom:777.221867pt;}
.y360{bottom:777.450146pt;}
.y38d{bottom:777.456655pt;}
.y4{bottom:778.731762pt;}
.y35{bottom:778.960400pt;}
.y146{bottom:784.251733pt;}
.y113{bottom:785.158800pt;}
.y20f{bottom:786.141760pt;}
.y30a{bottom:786.141842pt;}
.y112{bottom:786.745969pt;}
.y114{bottom:786.746267pt;}
.yaf{bottom:787.880133pt;}
.y35f{bottom:788.107972pt;}
.y38c{bottom:788.114481pt;}
.yae{bottom:789.391309pt;}
.yb0{bottom:789.391867pt;}
.y190{bottom:791.054677pt;}
.y251{bottom:791.130332pt;}
.y1eb{bottom:791.810741pt;}
.y35e{bottom:798.765798pt;}
.y3b5{bottom:798.769554pt;}
.y38b{bottom:798.772307pt;}
.y77{bottom:799.445467pt;}
.y289{bottom:800.654933pt;}
.y111{bottom:801.335158pt;}
.y334{bottom:801.411701pt;}
.y309{bottom:802.091415pt;}
.yad{bottom:803.678301pt;}
.y18e{bottom:804.132133pt;}
.y18d{bottom:805.643579pt;}
.y18f{bottom:805.643867pt;}
.y250{bottom:805.794838pt;}
.y1ea{bottom:806.399931pt;}
.y35d{bottom:809.348307pt;}
.y3b4{bottom:809.352063pt;}
.y38a{bottom:809.354816pt;}
.y33{bottom:811.540207pt;}
.y3{bottom:815.923281pt;}
.y110{bottom:815.924348pt;}
.y288{bottom:816.982277pt;}
.y333{bottom:817.058676pt;}
.y1e9{bottom:817.738144pt;}
.y20e{bottom:817.965255pt;}
.y308{bottom:817.965338pt;}
.yac{bottom:818.267490pt;}
.y35c{bottom:820.006133pt;}
.y3b3{bottom:820.009890pt;}
.y389{bottom:820.012642pt;}
.y18c{bottom:820.308085pt;}
.y24f{bottom:821.669067pt;}
.y14c{bottom:830.588800pt;}
.y10f{bottom:830.588854pt;}
.y1e7{bottom:830.739867pt;}
.y287{bottom:831.571210pt;}
.y1e6{bottom:832.327009pt;}
.y1e8{bottom:832.327333pt;}
.yab{bottom:832.554482pt;}
.y75{bottom:833.914910pt;}
.y18b{bottom:834.897275pt;}
.y24e{bottom:837.618667pt;}
.y76{bottom:838.979333pt;}
.y32{bottom:839.432970pt;}
.y35b{bottom:840.944667pt;}
.y286{bottom:846.160427pt;}
.y10e{bottom:846.538400pt;}
.y14b{bottom:846.916198pt;}
.yaa{bottom:847.218989pt;}
.y18a{bottom:849.486464pt;}
.y20d{bottom:849.864322pt;}
.y74{bottom:849.864483pt;}
.y2{bottom:853.114800pt;}
.ya8{bottom:859.917867pt;}
.y189{bottom:860.825082pt;}
.ya7{bottom:861.429478pt;}
.ya9{bottom:861.429733pt;}
.y14a{bottom:861.580705pt;}
.y10d{bottom:862.412400pt;}
.y236{bottom:865.814055pt;}
.y31{bottom:867.325733pt;}
.ya6{bottom:877.379024pt;}
.y149{bottom:877.454933pt;}
.y35a{bottom:878.135200pt;}
.y73{bottom:881.763628pt;}
.y1{bottom:889.095867pt;}
.y148{bottom:893.404400pt;}
.ya5{bottom:893.480133pt;}
.y30{bottom:893.858133pt;}
.y10c{bottom:896.730533pt;}
.y72{bottom:897.713200pt;}
.ya4{bottom:937.246933pt;}
.y2f{bottom:943.520933pt;}
.y2e{bottom:957.926800pt;}
.hf{height:19.040256pt;}
.h14{height:23.121510pt;}
.h8{height:24.484659pt;}
.h13{height:27.201536pt;}
.h16{height:28.118362pt;}
.h6{height:28.564685pt;}
.h19{height:28.565000pt;}
.h1a{height:28.565177pt;}
.h17{height:28.565710pt;}
.h1b{height:28.565821pt;}
.he{height:29.922099pt;}
.h10{height:30.074745pt;}
.h1c{height:30.078464pt;}
.h1e{height:30.379732pt;}
.h1d{height:30.681001pt;}
.h7{height:34.143782pt;}
.h4{height:34.685747pt;}
.h18{height:34.686060pt;}
.ha{height:34.717514pt;}
.h5{height:36.725965pt;}
.h11{height:38.767002pt;}
.h12{height:40.806810pt;}
.hd{height:44.888064pt;}
.hb{height:57.129370pt;}
.h9{height:61.268950pt;}
.h15{height:65.754565pt;}
.h2{height:73.452749pt;}
.hc{height:81.614029pt;}
.h3{height:97.936179pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x1{left:76.875600pt;}
.xe{left:80.503867pt;}
.x4e{left:82.620277pt;}
.x69{left:87.987007pt;}
.x30{left:89.423600pt;}
.x1f{left:92.070113pt;}
.x31{left:93.278667pt;}
.x45{left:95.017333pt;}
.x2f{left:97.209467pt;}
.x39{left:99.099200pt;}
.x36{left:100.081867pt;}
.x3c{left:101.518000pt;}
.x2d{left:102.500800pt;}
.x1e{left:104.012533pt;}
.x3d{left:105.373200pt;}
.x32{left:106.355867pt;}
.x4b{left:107.640933pt;}
.x33{left:110.210933pt;}
.x3e{left:114.444000pt;}
.x3b{left:117.694400pt;}
.x3a{left:118.979467pt;}
.x37{left:119.962133pt;}
.x34{left:122.078667pt;}
.x38{left:123.817333pt;}
.x35{left:125.933867pt;}
.x2c{left:127.202533pt;}
.x47{left:129.108667pt;}
.x4f{left:131.678253pt;}
.x48{left:132.963733pt;}
.x3f{left:134.248800pt;}
.x52{left:135.911733pt;}
.x19{left:138.103867pt;}
.x5c{left:141.581067pt;}
.x53{left:143.924400pt;}
.x5d{left:145.511733pt;}
.x1a{left:146.796800pt;}
.x5b{left:149.896000pt;}
.x29{left:150.954267pt;}
.x6c{left:156.473237pt;}
.x5a{left:158.815733pt;}
.x2a{left:162.973200pt;}
.x5{left:178.771600pt;}
.x5e{left:179.829867pt;}
.x5f{left:183.760533pt;}
.x58{left:189.278667pt;}
.x59{left:196.535333pt;}
.x10{left:201.222000pt;}
.x6d{left:209.462959pt;}
.x1c{left:218.759599pt;}
.x6{left:221.555867pt;}
.x26{left:230.248800pt;}
.x60{left:237.203067pt;}
.x61{left:241.133733pt;}
.x27{left:243.325867pt;}
.x15{left:249.675467pt;}
.x16{left:256.932267pt;}
.x46{left:277.719600pt;}
.x57{left:287.622000pt;}
.x49{left:296.088133pt;}
.x70{left:298.054395pt;}
.x6e{left:303.346114pt;}
.x54{left:309.165333pt;}
.x6f{left:314.609266pt;}
.x55{left:316.195200pt;}
.x67{left:321.637733pt;}
.x68{left:329.650267pt;}
.x7{left:333.278667pt;}
.x13{left:340.006267pt;}
.x56{left:340.988933pt;}
.x28{left:347.489600pt;}
.x14{left:354.519600pt;}
.x8{left:360.188933pt;}
.x11{left:368.277067pt;}
.x42{left:369.410933pt;}
.x22{left:371.678667pt;}
.x1d{left:376.440800pt;}
.x23{left:378.632933pt;}
.x41{left:382.185733pt;}
.x43{left:383.319600pt;}
.x12{left:385.209333pt;}
.x17{left:400.251867pt;}
.x1b{left:409.625067pt;}
.x18{left:415.672267pt;}
.x4c{left:427.162133pt;}
.x6b{left:430.488000pt;}
.x9{left:438.198267pt;}
.x4d{left:439.558933pt;}
.x24{left:444.547867pt;}
.x63{left:447.571467pt;}
.x25{left:456.264400pt;}
.x64{left:460.724267pt;}
.x50{left:465.713200pt;}
.xf{left:470.853488pt;}
.x20{left:473.574667pt;}
.x4a{left:475.842554pt;}
.x51{left:478.185733pt;}
.xa{left:480.982533pt;}
.x21{left:485.291200pt;}
.x44{left:503.508533pt;}
.x71{left:519.235411pt;}
.x6a{left:522.103867pt;}
.x72{left:535.336520pt;}
.x65{left:539.943200pt;}
.x40{left:544.177083pt;}
.x66{left:553.095867pt;}
.xb{left:569.272267pt;}
.x62{left:574.110133pt;}
.xc{left:579.099067pt;}
.x2{left:606.916400pt;}
.x2b{left:620.673927pt;}
.x4{left:643.426533pt;}
.x2e{left:651.741600pt;}
.x3{left:667.901600pt;}
.xd{left:701.328933pt;}
}


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