
/* 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_a58f7836026f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_1ae56354975e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_79dcdc6f476d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_bcef2b2d1d01.woff")format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_4a415c7588f9.woff")format("woff");}.ff5{font-family:ff5;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_1a6348e9fbb7.woff")format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_b70353d8e775.woff")format("woff");}.ff7{font-family:ff7;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_70b2fec70379.woff")format("woff");}.ff8{font-family:ff8;line-height:0.803000;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_f1d9f31f5c45.woff")format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_e83711ca92b3.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_10fd6c3cfde5.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_88edff9799fb.woff")format("woff");}.ffc{font-family:ffc;line-height:1.174316;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_f57d39199885.woff")format("woff");}.ffd{font-family:ffd;line-height:0.665000;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_9533afab20f3.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_1119f8651b4a.woff")format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_ce80daa9237d.woff")format("woff");}.ff10{font-family:ff10;line-height:1.174316;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_706bbb8b9e3f.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_cc41568c577d.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_fa8e13e7d64a.woff")format("woff");}.ff13{font-family:ff13;line-height:1.174316;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_706bbb8b9e3f.woff")format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_cc41568c577d.woff")format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_fa8e13e7d64a.woff")format("woff");}.ff16{font-family:ff16;line-height:1.174316;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_cea804ebf955.woff")format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_b028d564619c.woff")format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_ac17139e17e7.woff")format("woff");}.ff19{font-family:ff19;line-height:1.174316;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_c4001c70b779.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_9605d4e66eba.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_311cbfbc07a1.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.004883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_c9d586a4604d.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_475b9f6b4a18.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_086c11078a71.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.174316;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:ff20;src:url("fonts/font_0031_c4001c70b779.woff")format("woff");}.ff20{font-family:ff20;line-height:0.909180;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:ff21;src:url("fonts/font_0032_fced15ade35e.woff")format("woff");}.ff21{font-family:ff21;line-height:0.734000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-10.920000px;}
.v7{vertical-align:-9.546000px;}
.v5{vertical-align:-7.602000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.876000px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:42.336000px;}
.ls2d{letter-spacing:-0.048600px;}
.ls2b{letter-spacing:-0.016200px;}
.ls2c{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000800px;}
.ls22{letter-spacing:0.000845px;}
.ls35{letter-spacing:0.000959px;}
.ls32{letter-spacing:0.001155px;}
.ls19{letter-spacing:0.001573px;}
.ls1c{letter-spacing:0.001613px;}
.ls31{letter-spacing:0.002488px;}
.ls14{letter-spacing:0.003178px;}
.ls30{letter-spacing:0.004800px;}
.ls29{letter-spacing:0.010800px;}
.ls28{letter-spacing:0.016200px;}
.ls27{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.125400px;}
.ls15{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.132300px;}
.ls11{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.189000px;}
.ls16{letter-spacing:0.189630px;}
.lsf{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.378000px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1a{letter-spacing:2.983200px;}
.ls23{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls2a{letter-spacing:3.507900px;}
.lse{letter-spacing:3.553200px;}
.lsd{letter-spacing:3.559200px;}
.ls1{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls20{letter-spacing:12.524693px;}
.ls1f{letter-spacing:12.530693px;}
.ls2e{letter-spacing:13.448400px;}
.ls2f{letter-spacing:13.454400px;}
.ls36{letter-spacing:13.571506px;}
.ls39{letter-spacing:13.614359px;}
.ls3a{letter-spacing:13.743805px;}
.lsa{letter-spacing:14.094088px;}
.lsb{letter-spacing:14.100088px;}
.lsc{letter-spacing:15.663483px;}
.ls3b{letter-spacing:15.826871px;}
.ls38{letter-spacing:15.897459px;}
.ls37{letter-spacing:16.440600px;}
.ls33{letter-spacing:16.568047px;}
.ls3{letter-spacing:17.935200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls26{letter-spacing:122.826600px;}
.ls25{letter-spacing:146.736600px;}
.ls21{letter-spacing:158.706600px;}
.ls24{letter-spacing:160.206600px;}
.ls1e{letter-spacing:183.463200px;}
.ls1d{letter-spacing:204.385200px;}
.ls18{letter-spacing:215.023200px;}
.ls1b{letter-spacing:216.517200px;}
.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;}
}
.ws5e{word-spacing:-15.687000px;}
.ws95{word-spacing:-14.943900px;}
.ws70{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.355754px;}
.ws5d{word-spacing:-14.175000px;}
.ws72{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.449600px;}
.ws5c{word-spacing:-12.662843px;}
.ws6f{word-spacing:-12.059850px;}
.ws30{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws5f{word-spacing:-9.450000px;}
.ws71{word-spacing:-9.000000px;}
.wsa3{word-spacing:-3.347434px;}
.ws44{word-spacing:-3.227882px;}
.wsb4{word-spacing:-2.988780px;}
.ws7c{word-spacing:-2.929004px;}
.ws73{word-spacing:-2.367130px;}
.ws75{word-spacing:-2.151936px;}
.ws74{word-spacing:-2.098138px;}
.wsc3{word-spacing:-2.044339px;}
.ws35{word-spacing:-2.032370px;}
.ws33{word-spacing:-1.972595px;}
.ws77{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.wsa6{word-spacing:-1.853044px;}
.wsb5{word-spacing:-1.733492px;}
.ws7b{word-spacing:-1.673717px;}
.wsb7{word-spacing:-1.554166px;}
.ws1c{word-spacing:-1.452557px;}
.ws42{word-spacing:-1.434614px;}
.ws1d{word-spacing:-1.398758px;}
.ws0{word-spacing:-1.322630px;}
.ws25{word-spacing:-1.315063px;}
.wsad{word-spacing:-1.274400px;}
.wsac{word-spacing:-1.269000px;}
.ws26{word-spacing:-1.255288px;}
.wsab{word-spacing:-1.242000px;}
.ws7{word-spacing:-1.171598px;}
.wsa5{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.wsba{word-spacing:-0.968371px;}
.ws46{word-spacing:-0.956410px;}
.ws17{word-spacing:-0.914573px;}
.ws64{word-spacing:-0.896634px;}
.ws18{word-spacing:-0.860774px;}
.ws65{word-spacing:-0.836858px;}
.ws78{word-spacing:-0.657532px;}
.wsd1{word-spacing:-0.591782px;}
.ws43{word-spacing:-0.537980px;}
.ws57{word-spacing:-0.358654px;}
.ws22{word-spacing:-0.298878px;}
.ws4{word-spacing:-0.292900px;}
.wsdb{word-spacing:-0.268992px;}
.ws3d{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws2e{word-spacing:-0.119551px;}
.wsc7{word-spacing:-0.107597px;}
.wsc8{word-spacing:-0.070618px;}
.ws28{word-spacing:-0.059776px;}
.wsb9{word-spacing:-0.053798px;}
.wsd9{word-spacing:-0.009206px;}
.wsc6{word-spacing:-0.005645px;}
.wscf{word-spacing:-0.004954px;}
.wsd7{word-spacing:-0.004752px;}
.ws2f{word-spacing:-0.003082px;}
.ws5{word-spacing:-0.002861px;}
.wsd5{word-spacing:-0.001421px;}
.ws3{word-spacing:0.000000px;}
.wsc1{word-spacing:0.001046px;}
.ws1e{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.ws1f{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.ws13{word-spacing:0.143462px;}
.ws1b{word-spacing:0.161395px;}
.wsb1{word-spacing:0.162000px;}
.ws27{word-spacing:0.179327px;}
.ws9e{word-spacing:0.215194px;}
.ws24{word-spacing:0.239102px;}
.wsc4{word-spacing:0.268992px;}
.ws3c{word-spacing:0.298878px;}
.ws9d{word-spacing:0.322790px;}
.ws63{word-spacing:0.358654px;}
.ws9c{word-spacing:0.376589px;}
.ws40{word-spacing:0.418429px;}
.ws38{word-spacing:0.478205px;}
.wscc{word-spacing:0.537984px;}
.wsb6{word-spacing:0.566700px;}
.ws6e{word-spacing:0.567412px;}
.ws66{word-spacing:0.568500px;}
.ws91{word-spacing:0.575291px;}
.ws68{word-spacing:0.597756px;}
.ws8f{word-spacing:0.598132px;}
.ws90{word-spacing:0.617112px;}
.ws92{word-spacing:0.623112px;}
.ws4f{word-spacing:0.645130px;}
.wsd8{word-spacing:0.645581px;}
.ws54{word-spacing:0.648730px;}
.ws89{word-spacing:0.660518px;}
.ws53{word-spacing:0.666202px;}
.ws4d{word-spacing:0.667402px;}
.ws52{word-spacing:0.668400px;}
.ws4c{word-spacing:0.669802px;}
.ws50{word-spacing:0.672202px;}
.ws88{word-spacing:0.688166px;}
.ws4e{word-spacing:0.696528px;}
.ws4b{word-spacing:0.697872px;}
.ws59{word-spacing:0.745225px;}
.ws5a{word-spacing:0.748500px;}
.ws37{word-spacing:0.836858px;}
.ws3f{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws3b{word-spacing:1.016185px;}
.ws5b{word-spacing:1.075961px;}
.wsbe{word-spacing:1.075968px;}
.wsa1{word-spacing:1.135736px;}
.ws80{word-spacing:1.195512px;}
.ws39{word-spacing:1.255288px;}
.ws2c{word-spacing:1.315063px;}
.ws9f{word-spacing:1.374839px;}
.ws81{word-spacing:1.434614px;}
.wsa0{word-spacing:1.554166px;}
.wsbd{word-spacing:1.560154px;}
.ws7a{word-spacing:1.733492px;}
.wsdc{word-spacing:1.829146px;}
.wsd2{word-spacing:1.882944px;}
.wsb0{word-spacing:1.927800px;}
.ws85{word-spacing:1.972595px;}
.wsae{word-spacing:1.987200px;}
.wsaf{word-spacing:2.030400px;}
.ws84{word-spacing:2.032370px;}
.ws15{word-spacing:2.044339px;}
.ws47{word-spacing:2.092146px;}
.ws83{word-spacing:2.151922px;}
.ws1a{word-spacing:2.151936px;}
.ws7e{word-spacing:2.211697px;}
.wsa7{word-spacing:2.331248px;}
.wsca{word-spacing:2.420928px;}
.ws86{word-spacing:2.450800px;}
.wsd4{word-spacing:2.474726px;}
.ws62{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws76{word-spacing:2.630126px;}
.ws61{word-spacing:2.689902px;}
.ws7d{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.wsb8{word-spacing:3.108331px;}
.wscb{word-spacing:3.120307px;}
.wsd6{word-spacing:3.174106px;}
.wsc9{word-spacing:3.218266px;}
.ws20{word-spacing:3.219667px;}
.wsbf{word-spacing:3.219830px;}
.wsc0{word-spacing:3.220454px;}
.wsc2{word-spacing:3.221021px;}
.wsc5{word-spacing:3.222365px;}
.wsd0{word-spacing:3.224275px;}
.wsa8{word-spacing:3.227882px;}
.wsbb{word-spacing:3.227904px;}
.wsda{word-spacing:3.228451px;}
.ws3a{word-spacing:3.287658px;}
.ws29{word-spacing:3.347434px;}
.wsbc{word-spacing:3.443098px;}
.ws34{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws45{word-spacing:3.646312px;}
.ws9a{word-spacing:3.825638px;}
.ws9b{word-spacing:3.885414px;}
.ws6c{word-spacing:3.945190px;}
.ws6d{word-spacing:4.124516px;}
.wsce{word-spacing:4.196275px;}
.ws82{word-spacing:4.244068px;}
.ws55{word-spacing:4.303843px;}
.ws6a{word-spacing:4.483170px;}
.ws31{word-spacing:4.722272px;}
.wsf{word-spacing:4.770079px;}
.ws58{word-spacing:4.782048px;}
.ws49{word-spacing:4.788058px;}
.ws3e{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.ws2d{word-spacing:4.961375px;}
.wsb3{word-spacing:5.080926px;}
.ws48{word-spacing:5.164646px;}
.ws41{word-spacing:5.200477px;}
.wscd{word-spacing:5.272243px;}
.ws79{word-spacing:5.678682px;}
.ws67{word-spacing:5.738458px;}
.wsa4{word-spacing:6.097111px;}
.wsb2{word-spacing:6.455765px;}
.ws94{word-spacing:6.515540px;}
.ws87{word-spacing:6.874194px;}
.ws32{word-spacing:7.232848px;}
.wsd{word-spacing:7.782761px;}
.wsa2{word-spacing:7.830604px;}
.ws23{word-spacing:7.890379px;}
.ws60{word-spacing:8.129482px;}
.ws93{word-spacing:8.189257px;}
.wsd3{word-spacing:9.414720px;}
.ws69{word-spacing:11.476915px;}
.wsb{word-spacing:12.176255px;}
.wsa9{word-spacing:13.446000px;}
.wsaa{word-spacing:13.483800px;}
.wsc{word-spacing:16.109478px;}
.ws56{word-spacing:17.036046px;}
.ws6b{word-spacing:17.574026px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws51{word-spacing:82.634342px;}
.ws97{word-spacing:146.762035px;}
.ws98{word-spacing:154.186214px;}
.ws99{word-spacing:163.170547px;}
.ws8a{word-spacing:203.237550px;}
.ws8b{word-spacing:203.907038px;}
.ws8d{word-spacing:210.696117px;}
.ws8e{word-spacing:218.301039px;}
.ws8c{word-spacing:219.665437px;}
.ws4a{word-spacing:255.703795px;}
.ws96{word-spacing:341.243251px;}
._5d{margin-left:-24.121651px;}
._5c{margin-left:-20.502329px;}
._15{margin-left:-7.643710px;}
._9{margin-left:-5.762403px;}
._2{margin-left:-3.849538px;}
._13{margin-left:-2.689902px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._8{width:3.663430px;}
._26{width:5.121290px;}
._2a{width:6.206784px;}
._28{width:7.939250px;}
._27{width:8.972964px;}
._29{width:10.121822px;}
._6{width:11.398711px;}
._4{width:12.971268px;}
._f{width:14.822586px;}
._a{width:16.677504px;}
._41{width:17.813129px;}
._c{width:18.889090px;}
._14{width:20.503031px;}
._16{width:21.698543px;}
._e{width:23.013606px;}
._40{width:24.268894px;}
._3{width:25.946136px;}
._d{width:29.110717px;}
._7{width:30.587087px;}
._42{width:31.920170px;}
._17{width:33.139582px;}
._3a{width:36.996427px;}
._4b{width:39.041034px;}
._12{width:40.707184px;}
._b{width:42.799330px;}
._39{width:59.150847px;}
._5b{width:61.868160px;}
._3d{width:63.357830px;}
._36{width:70.917830px;}
._2e{width:77.468202px;}
._37{width:79.233830px;}
._20{width:80.751398px;}
._55{width:81.844054px;}
._45{width:83.293550px;}
._3c{width:86.415830px;}
._3b{width:91.654910px;}
._21{width:94.200998px;}
._1f{width:103.890685px;}
._19{width:106.251840px;}
._35{width:112.900022px;}
._4a{width:128.820364px;}
._4d{width:131.913677px;}
._2f{width:141.772292px;}
._24{width:145.578470px;}
._50{width:149.720947px;}
._3e{width:151.053200px;}
._30{width:152.795916px;}
._34{width:157.330656px;}
._23{width:159.028070px;}
._4c{width:161.126208px;}
._1b{width:164.354112px;}
._56{width:165.606742px;}
._49{width:167.032646px;}
._1a{width:168.825353px;}
._22{width:172.423872px;}
._44{width:177.918552px;}
._38{width:182.427830px;}
._4e{width:185.126269px;}
._31{width:188.322362px;}
._52{width:189.962150px;}
._1c{width:194.690556px;}
._57{width:202.098537px;}
._46{width:205.107830px;}
._58{width:208.785737px;}
._1e{width:210.351744px;}
._53{width:219.843122px;}
._2d{width:220.941000px;}
._51{width:225.367472px;}
._48{width:241.158446px;}
._33{width:242.760546px;}
._32{width:247.456314px;}
._54{width:260.144064px;}
._1d{width:272.112307px;}
._2c{width:320.397800px;}
._2b{width:354.753000px;}
._43{width:407.673000px;}
._4f{width:448.463050px;}
._18{width:458.093376px;}
._47{width:473.487830px;}
._10{width:770.246404px;}
._5a{width:2021.682634px;}
._3f{width:2045.442634px;}
._25{width:2148.839002px;}
._59{width:2434.239000px;}
._11{width:2458.149000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(61,100,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs14{font-size:36.000000px;}
.fs11{font-size:37.800000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs12{font-size:48.239400px;}
.fs16{font-size:49.829400px;}
.fse{font-size:50.651370px;}
.fs9{font-size:53.798400px;}
.fs15{font-size:54.000000px;}
.fsd{font-size:56.058000px;}
.fs10{font-size:56.700000px;}
.fs13{font-size:59.760000px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fsf{font-size:62.748000px;}
.fs17{font-size:63.000000px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y165{bottom:-780.820425px;}
.y164{bottom:-742.264425px;}
.y163{bottom:-718.639425px;}
.y1bb{bottom:-669.997125px;}
.y1ba{bottom:-649.774125px;}
.y1b9{bottom:-629.551125px;}
.y1b8{bottom:-604.603125px;}
.y1b7{bottom:-579.655125px;}
.y1b6{bottom:-539.020125px;}
.y1b5{bottom:-517.663125px;}
.y1b4{bottom:-496.495125px;}
.y1b3{bottom:-475.138125px;}
.y1b2{bottom:-453.970125px;}
.y1b1{bottom:-431.668125px;}
.y1b0{bottom:-400.294125px;}
.y271{bottom:-372.634500px;}
.y1af{bottom:-362.683125px;}
.y270{bottom:-353.374500px;}
.y1ae{bottom:-342.460283px;}
.y26f{bottom:-334.114500px;}
.y162{bottom:-331.378425px;}
.y1ad{bottom:-322.426125px;}
.y26e{bottom:-314.854500px;}
.y161{bottom:-311.155425px;}
.y132{bottom:-308.457000px;}
.y1ac{bottom:-302.203125px;}
.y26d{bottom:-295.594500px;}
.y160{bottom:-291.121425px;}
.y131{bottom:-289.197000px;}
.y1ab{bottom:-281.980125px;}
.y26c{bottom:-276.334650px;}
.y15f{bottom:-270.898425px;}
.y130{bottom:-269.937000px;}
.y1aa{bottom:-261.757125px;}
.y26b{bottom:-257.254500px;}
.y12f{bottom:-250.677000px;}
.y15e{bottom:-250.675583px;}
.y1a9{bottom:-241.534125px;}
.y26a{bottom:-237.994500px;}
.y12e{bottom:-231.597000px;}
.y15d{bottom:-230.452425px;}
.y1a8{bottom:-221.500125px;}
.y269{bottom:-218.734500px;}
.y12d{bottom:-212.337000px;}
.y15c{bottom:-210.229425px;}
.y1a7{bottom:-201.277125px;}
.y268{bottom:-199.474500px;}
.y12c{bottom:-193.077000px;}
.y15b{bottom:-190.195425px;}
.yd4{bottom:-186.743025px;}
.y1a6{bottom:-181.054125px;}
.y267{bottom:-175.714500px;}
.y12b{bottom:-173.817000px;}
.y15a{bottom:-169.972425px;}
.yd3{bottom:-166.709025px;}
.y1a5{bottom:-160.831125px;}
.y12a{bottom:-154.557000px;}
.y159{bottom:-149.749425px;}
.yd2{bottom:-146.486025px;}
.y1a4{bottom:-140.608125px;}
.y266{bottom:-138.634500px;}
.y129{bottom:-135.297000px;}
.y158{bottom:-129.526425px;}
.yd1{bottom:-126.263025px;}
.y1a3{bottom:-120.385283px;}
.y265{bottom:-119.374500px;}
.y128{bottom:-116.217000px;}
.y157{bottom:-109.303425px;}
.yd0{bottom:-106.040025px;}
.y1a2{bottom:-100.351125px;}
.y264{bottom:-100.114500px;}
.y213{bottom:-97.583700px;}
.y127{bottom:-92.457000px;}
.y156{bottom:-84.544425px;}
.ycf{bottom:-81.092025px;}
.y263{bottom:-80.854500px;}
.y1a1{bottom:-80.128125px;}
.y212{bottom:-74.184150px;}
.y1a0{bottom:-59.905125px;}
.y155{bottom:-59.596425px;}
.y262{bottom:-57.094500px;}
.yce{bottom:-56.333025px;}
.y126{bottom:-55.737000px;}
.y18c{bottom:-51.999450px;}
.y211{bottom:-50.784600px;}
.y125{bottom:-38.457000px;}
.y210{bottom:-27.385050px;}
.y19f{bottom:-21.349125px;}
.y154{bottom:-21.040425px;}
.y124{bottom:-20.997000px;}
.y261{bottom:-20.374650px;}
.ycd{bottom:-17.588025px;}
.y18b{bottom:-15.279450px;}
.y20f{bottom:-3.715050px;}
.y0{bottom:0.000000px;}
.y123{bottom:1.503000px;}
.y260{bottom:2.125350px;}
.y19e{bottom:2.275875px;}
.y153{bottom:2.773575px;}
.y3{bottom:3.425340px;}
.yb9{bottom:4.536000px;}
.ycc{bottom:6.036975px;}
.y18a{bottom:7.220550px;}
.y2{bottom:14.151273px;}
.y1c{bottom:18.594411px;}
.y52{bottom:31.890000px;}
.ydf{bottom:91.665000px;}
.y1dc{bottom:93.507000px;}
.y2ae{bottom:93.744000px;}
.y2e6{bottom:104.503500px;}
.y1a{bottom:104.646000px;}
.y91{bottom:105.847500px;}
.y51{bottom:107.016000px;}
.yde{bottom:110.494500px;}
.y2ad{bottom:111.004500px;}
.y1db{bottom:112.336500px;}
.y18d{bottom:113.853000px;}
.y2e5{bottom:119.140500px;}
.y2e4{bottom:121.762500px;}
.y10f{bottom:122.436000px;}
.y19{bottom:122.535000px;}
.y50{bottom:123.115500px;}
.y4f{bottom:123.603000px;}
.y90{bottom:124.677000px;}
.y4e{bottom:125.845500px;}
.y2ac{bottom:128.265000px;}
.ydd{bottom:129.324000px;}
.y1da{bottom:131.166000px;}
.y2e3{bottom:139.023000px;}
.y177{bottom:139.270950px;}
.y23b{bottom:139.963500px;}
.y18{bottom:140.422500px;}
.y10e{bottom:141.265500px;}
.y4d{bottom:144.675000px;}
.y2ab{bottom:145.524000px;}
.y8f{bottom:147.990000px;}
.ydb{bottom:148.153500px;}
.ydc{bottom:153.579000px;}
.y1d9{bottom:154.479000px;}
.y20d{bottom:155.077500px;}
.y2e2{bottom:156.283500px;}
.y17{bottom:158.310000px;}
.y23a{bottom:158.793000px;}
.y10c{bottom:160.095000px;}
.y2aa{bottom:162.784500px;}
.y4c{bottom:163.504500px;}
.y10d{bottom:165.519000px;}
.yda{bottom:166.983000px;}
.y8e{bottom:168.165000px;}
.y2e1{bottom:173.544000px;}
.y20c{bottom:173.907000px;}
.y1d8{bottom:174.652500px;}
.y16{bottom:176.199000px;}
.y238{bottom:177.622500px;}
.y10b{bottom:178.924500px;}
.y2a9{bottom:180.045000px;}
.y4b{bottom:182.334000px;}
.y239{bottom:183.048000px;}
.yd9{bottom:185.812500px;}
.y2e0{bottom:190.804500px;}
.y20b{bottom:192.736500px;}
.y15{bottom:194.086500px;}
.y236{bottom:196.452000px;}
.y2a8{bottom:197.305500px;}
.y10a{bottom:197.754000px;}
.y4a{bottom:201.163500px;}
.y8d{bottom:201.789000px;}
.y237{bottom:201.877500px;}
.yd8{bottom:204.642000px;}
.y2df{bottom:208.065000px;}
.y20a{bottom:211.566000px;}
.y14{bottom:211.974000px;}
.y2a7{bottom:214.566000px;}
.y235{bottom:215.281500px;}
.y109{bottom:216.583500px;}
.y1d7{bottom:216.976500px;}
.y49{bottom:219.993000px;}
.y8c{bottom:220.618500px;}
.y27e{bottom:223.471500px;}
.y2de{bottom:225.325500px;}
.yd7{bottom:227.955000px;}
.y13{bottom:229.863000px;}
.y209{bottom:230.395500px;}
.y2a6{bottom:231.826500px;}
.ycb{bottom:232.458975px;}
.y1d6{bottom:233.415000px;}
.y234{bottom:234.111000px;}
.y108{bottom:235.413000px;}
.y48{bottom:238.822500px;}
.y8b{bottom:239.446500px;}
.y27d{bottom:242.301000px;}
.y2dd{bottom:242.586000px;}
.yd6{bottom:248.130000px;}
.y2a5{bottom:249.087000px;}
.y208{bottom:249.225000px;}
.y1d5{bottom:249.853500px;}
.yca{bottom:252.681975px;}
.y107{bottom:254.242500px;}
.y233{bottom:257.424000px;}
.y47{bottom:257.652000px;}
.y8a{bottom:258.276000px;}
.y2dc{bottom:259.846500px;}
.y27c{bottom:261.130500px;}
.y1d4{bottom:266.292000px;}
.y2a4{bottom:266.347500px;}
.y207{bottom:268.054500px;}
.yc9{bottom:272.904975px;}
.y106{bottom:273.072000px;}
.y46{bottom:276.481500px;}
.y89{bottom:277.105500px;}
.yd5{bottom:277.542000px;}
.y27b{bottom:279.960000px;}
.y25f{bottom:283.105500px;}
.y2a3{bottom:283.606500px;}
.y1d3{bottom:289.932000px;}
.y19d{bottom:290.311875px;}
.y232{bottom:291.048000px;}
.y206{bottom:291.367500px;}
.y104{bottom:291.901500px;}
.yc8{bottom:293.127975px;}
.y2db{bottom:294.366000px;}
.y45{bottom:295.309500px;}
.y88{bottom:295.935000px;}
.y105{bottom:297.325500px;}
.y27a{bottom:298.789500px;}
.y12{bottom:300.154500px;}
.y2a2{bottom:300.867000px;}
.y25e{bottom:302.365500px;}
.ya8{bottom:302.961000px;}
.y122{bottom:304.983000px;}
.y231{bottom:309.877500px;}
.y14f{bottom:310.422000px;}
.y19c{bottom:310.534875px;}
.y102{bottom:310.731000px;}
.y205{bottom:311.541000px;}
.y2da{bottom:311.626500px;}
.yc7{bottom:313.350975px;}
.y44{bottom:314.139000px;}
.y87{bottom:314.764500px;}
.y103{bottom:316.155000px;}
.y11{bottom:318.043500px;}
.y2a1{bottom:318.127500px;}
.y1d2{bottom:321.552000px;}
.y25d{bottom:321.625500px;}
.y279{bottom:322.102500px;}
.y121{bottom:324.243000px;}
.y230{bottom:328.707000px;}
.y2d9{bottom:328.887000px;}
.y14e{bottom:329.251500px;}
.y101{bottom:329.560500px;}
.y19b{bottom:330.568875px;}
.y43{bottom:332.968500px;}
.yc6{bottom:333.384975px;}
.y86{bottom:333.594000px;}
.y2a0{bottom:335.388000px;}
.y10{bottom:335.931000px;}
.y152{bottom:339.571575px;}
.y25c{bottom:340.705500px;}
.y120{bottom:343.323000px;}
.y204{bottom:345.165000px;}
.y2d8{bottom:346.147500px;}
.y22f{bottom:347.536500px;}
.y14d{bottom:348.081000px;}
.yff{bottom:348.390000px;}
.y151{bottom:349.966575px;}
.y19a{bottom:350.791875px;}
.y42{bottom:351.798000px;}
.y85{bottom:352.423500px;}
.y29f{bottom:352.648500px;}
.yc5{bottom:353.607975px;}
.y100{bottom:353.814000px;}
.yf{bottom:353.818500px;}
.y278{bottom:355.726500px;}
.y1d1{bottom:357.207000px;}
.y25b{bottom:359.965500px;}
.y11f{bottom:362.583000px;}
.y2d7{bottom:363.408000px;}
.y203{bottom:363.994500px;}
.y22e{bottom:366.366000px;}
.y14c{bottom:366.910500px;}
.yfe{bottom:367.218000px;}
.y29e{bottom:369.909000px;}
.y41{bottom:370.627500px;}
.y199{bottom:371.014875px;}
.y84{bottom:371.253000px;}
.yc4{bottom:373.830975px;}
.y277{bottom:374.556000px;}
.y1d0{bottom:376.036500px;}
.y189{bottom:376.040550px;}
.y25a{bottom:379.225350px;}
.y2d6{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y11e{bottom:381.842850px;}
.y202{bottom:382.824000px;}
.y22c{bottom:385.195500px;}
.y14b{bottom:385.740000px;}
.yfd{bottom:386.047500px;}
.y29d{bottom:387.169500px;}
.y40{bottom:389.457000px;}
.y83{bottom:390.082500px;}
.y22d{bottom:390.619500px;}
.y198{bottom:391.237718px;}
.y275{bottom:393.385500px;}
.yc3{bottom:394.053975px;}
.y1cf{bottom:394.866000px;}
.y188{bottom:395.300550px;}
.y2d5{bottom:397.929000px;}
.y259{bottom:398.485500px;}
.yd{bottom:398.562000px;}
.y276{bottom:398.809500px;}
.y11d{bottom:401.103000px;}
.y201{bottom:401.653500px;}
.y22a{bottom:404.025000px;}
.y29c{bottom:404.430000px;}
.y14a{bottom:404.569500px;}
.yfc{bottom:404.877000px;}
.y3f{bottom:408.286500px;}
.y82{bottom:408.912000px;}
.y22b{bottom:409.449000px;}
.y274{bottom:412.215000px;}
.y1ce{bottom:413.695500px;}
.yc2{bottom:414.276975px;}
.y187{bottom:414.380550px;}
.y2d4{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.y11c{bottom:420.363000px;}
.y200{bottom:420.483000px;}
.y29b{bottom:421.690500px;}
.y258{bottom:422.245500px;}
.y229{bottom:422.853000px;}
.y149{bottom:423.399000px;}
.y3e{bottom:427.116000px;}
.y81{bottom:427.741500px;}
.yfb{bottom:428.190000px;}
.y2d3{bottom:432.448500px;}
.y1cd{bottom:432.525000px;}
.y186{bottom:433.640550px;}
.yc1{bottom:434.310975px;}
.y273{bottom:435.526500px;}
.y1ff{bottom:439.312500px;}
.y11b{bottom:439.443000px;}
.y148{bottom:442.228500px;}
.y29a{bottom:443.433000px;}
.yb{bottom:444.798000px;}
.y3d{bottom:445.945500px;}
.y228{bottom:446.166000px;}
.y80{bottom:446.571000px;}
.yfa{bottom:448.365000px;}
.y197{bottom:448.504875px;}
.y2d2{bottom:449.709000px;}
.y1cb{bottom:451.354500px;}
.y185{bottom:452.900400px;}
.yc0{bottom:454.533975px;}
.y1cc{bottom:456.778500px;}
.y1fe{bottom:458.142000px;}
.y11a{bottom:458.703000px;}
.y196{bottom:458.899875px;}
.y257{bottom:459.325500px;}
.y147{bottom:461.058000px;}
.y227{bottom:461.857500px;}
.ya{bottom:462.685500px;}
.y272{bottom:464.910000px;}
.y7f{bottom:465.400500px;}
.y2d1{bottom:466.969500px;}
.yf9{bottom:468.538500px;}
.y3c{bottom:469.258500px;}
.y1c9{bottom:470.182500px;}
.y184{bottom:472.160550px;}
.ybf{bottom:474.756975px;}
.y1ca{bottom:475.608000px;}
.y1fd{bottom:476.971500px;}
.y299{bottom:477.057000px;}
.y119{bottom:477.963000px;}
.y256{bottom:478.585500px;}
.y146{bottom:479.887500px;}
.y7e{bottom:484.230000px;}
.y24c{bottom:487.339500px;}
.y1c8{bottom:489.012000px;}
.y9{bottom:489.540000px;}
.y183{bottom:491.420550px;}
.ybe{bottom:494.979975px;}
.y226{bottom:495.481500px;}
.y1fc{bottom:495.801000px;}
.y118{bottom:497.223000px;}
.y255{bottom:497.845500px;}
.y145{bottom:498.717000px;}
.y2d0{bottom:501.490500px;}
.yf8{bottom:502.162500px;}
.y7d{bottom:503.059500px;}
.y298{bottom:503.598000px;}
.y8{bottom:507.429000px;}
.y1c6{bottom:507.841500px;}
.y182{bottom:510.500550px;}
.y1c7{bottom:513.267000px;}
.y225{bottom:514.311000px;}
.y1fb{bottom:514.630500px;}
.ybd{bottom:515.202975px;}
.y176{bottom:515.875500px;}
.y117{bottom:516.483000px;}
.y254{bottom:517.105500px;}
.yf7{bottom:518.262000px;}
.y2cf{bottom:518.751000px;}
.yf6{bottom:520.992000px;}
.y7c{bottom:521.889000px;}
.y144{bottom:522.028500px;}
.y7{bottom:525.316500px;}
.y1c5{bottom:526.671000px;}
.y181{bottom:529.760550px;}
.y297{bottom:530.139000px;}
.ya7{bottom:530.473500px;}
.y1fa{bottom:530.730000px;}
.y224{bottom:533.140500px;}
.y1f9{bottom:533.460000px;}
.y175{bottom:534.705000px;}
.y116{bottom:535.563000px;}
.y2ce{bottom:536.011500px;}
.y253{bottom:536.365500px;}
.yf5{bottom:537.091500px;}
.yf4{bottom:539.821500px;}
.ybc{bottom:539.961975px;}
.y7b{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.y3b{bottom:544.408500px;}
.y1c3{bottom:545.500500px;}
.y180{bottom:549.020550px;}
.ya6{bottom:549.303000px;}
.y1f8{bottom:549.559500px;}
.y1c4{bottom:550.926000px;}
.y223{bottom:551.970000px;}
.y1f7{bottom:552.289500px;}
.y2cd{bottom:553.272000px;}
.y174{bottom:553.534500px;}
.y115{bottom:554.823000px;}
.y252{bottom:555.445500px;}
.y143{bottom:555.652500px;}
.y296{bottom:556.678500px;}
.yf3{bottom:558.651000px;}
.y79{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.y1c2{bottom:564.330000px;}
.y7a{bottom:564.972000px;}
.ya5{bottom:568.132500px;}
.y17f{bottom:568.280550px;}
.y2cc{bottom:570.531000px;}
.y222{bottom:570.799500px;}
.y1f6{bottom:571.119000px;}
.y173{bottom:572.364000px;}
.y114{bottom:574.083000px;}
.y142{bottom:574.482000px;}
.y251{bottom:574.705500px;}
.yf2{bottom:577.480500px;}
.y78{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.yba{bottom:580.785975px;}
.y3a{bottom:581.799000px;}
.y1c1{bottom:583.159500px;}
.y295{bottom:583.219500px;}
.ya4{bottom:586.960500px;}
.y17e{bottom:587.540550px;}
.y2cb{bottom:587.791500px;}
.y221{bottom:589.629000px;}
.y1f5{bottom:589.948500px;}
.y172{bottom:591.193500px;}
.y140{bottom:593.311500px;}
.y113{bottom:593.342850px;}
.yf1{bottom:596.310000px;}
.y1{bottom:596.868055px;}
.y77{bottom:597.207000px;}
.y250{bottom:598.465500px;}
.y141{bottom:598.737000px;}
.y294{bottom:600.793500px;}
.y39{bottom:601.255500px;}
.y1bf{bottom:601.989000px;}
.yb7{bottom:602.142975px;}
.y2ca{bottom:605.052000px;}
.ya3{bottom:605.790000px;}
.y1c0{bottom:607.414500px;}
.y220{bottom:608.458500px;}
.y171{bottom:610.023000px;}
.y17d{bottom:611.120550px;}
.y13f{bottom:612.141000px;}
.y1f4{bottom:613.261500px;}
.yf0{bottom:615.139500px;}
.y76{bottom:616.036500px;}
.y37{bottom:620.712000px;}
.y1be{bottom:620.818500px;}
.y2c9{bottom:622.312500px;}
.y24f{bottom:622.405500px;}
.yb6{bottom:624.255818px;}
.ya2{bottom:624.619500px;}
.y38{bottom:625.594500px;}
.y21f{bottom:627.288000px;}
.y293{bottom:627.334500px;}
.y16f{bottom:628.852500px;}
.y13d{bottom:630.970500px;}
.yef{bottom:633.969000px;}
.y170{bottom:634.276500px;}
.y74{bottom:634.866000px;}
.y17c{bottom:634.880550px;}
.y13e{bottom:636.396000px;}
.y2c8{bottom:639.573000px;}
.y1bd{bottom:639.648000px;}
.y35{bottom:640.170000px;}
.y75{bottom:640.290000px;}
.ya1{bottom:643.449000px;}
.y292{bottom:644.908500px;}
.y36{bottom:645.051000px;}
.y21e{bottom:646.117500px;}
.yb5{bottom:646.368975px;}
.y16d{bottom:647.682000px;}
.y112{bottom:647.883000px;}
.y13c{bottom:649.800000px;}
.yee{bottom:652.798500px;}
.y16e{bottom:653.106000px;}
.y72{bottom:653.695500px;}
.y2c7{bottom:656.833500px;}
.y111{bottom:657.783000px;}
.y1f3{bottom:658.573500px;}
.y73{bottom:659.119500px;}
.y33{bottom:659.626500px;}
.y2e8{bottom:661.716000px;}
.ya0{bottom:662.278500px;}
.y291{bottom:662.482500px;}
.y34{bottom:664.509000px;}
.y21d{bottom:664.947000px;}
.y16c{bottom:666.511500px;}
.y13b{bottom:668.629500px;}
.y17b{bottom:671.600550px;}
.yed{bottom:671.628000px;}
.y70{bottom:672.525000px;}
.y1bc{bottom:673.213500px;}
.y2c6{bottom:674.094000px;}
.y1f2{bottom:675.012000px;}
.y24e{bottom:676.765500px;}
.yb4{bottom:677.742975px;}
.y71{bottom:677.949000px;}
.y31{bottom:679.083000px;}
.y290{bottom:680.056500px;}
.y9f{bottom:681.108000px;}
.y21c{bottom:683.776500px;}
.y32{bottom:683.965500px;}
.y16b{bottom:685.341000px;}
.y24d{bottom:686.665500px;}
.y13a{bottom:687.459000px;}
.yec{bottom:690.457500px;}
.y6e{bottom:691.354500px;}
.y1f1{bottom:691.450500px;}
.y17a{bottom:694.280550px;}
.y195{bottom:695.643000px;}
.yb3{bottom:695.886975px;}
.y6f{bottom:696.778500px;}
.y30{bottom:698.541000px;}
.y9e{bottom:699.937500px;}
.y21b{bottom:702.606000px;}
.y16a{bottom:704.170500px;}
.y138{bottom:706.288500px;}
.y1f0{bottom:707.889000px;}
.y2c5{bottom:708.613500px;}
.yeb{bottom:709.287000px;}
.y6d{bottom:710.184000px;}
.y139{bottom:711.714000px;}
.y2f{bottom:717.997500px;}
.y9d{bottom:718.767000px;}
.y28f{bottom:720.046500px;}
.y169{bottom:723.000000px;}
.y137{bottom:725.118000px;}
.y2c4{bottom:725.874000px;}
.y21a{bottom:725.917500px;}
.ye9{bottom:728.116500px;}
.y6c{bottom:729.013500px;}
.y1ef{bottom:731.529000px;}
.yb2{bottom:733.497975px;}
.yea{bottom:733.540500px;}
.y2d{bottom:737.455500px;}
.y9c{bottom:737.596500px;}
.y28e{bottom:738.876000px;}
.y2e{bottom:742.336500px;}
.y2c3{bottom:743.134500px;}
.y136{bottom:743.947500px;}
.y168{bottom:746.311500px;}
.ye8{bottom:746.946000px;}
.y6a{bottom:747.843000px;}
.y6b{bottom:753.267000px;}
.yb1{bottom:753.720975px;}
.y219{bottom:756.345000px;}
.y9b{bottom:756.426000px;}
.y2c{bottom:756.912000px;}
.y28d{bottom:757.705500px;}
.y2c2{bottom:760.395000px;}
.y135{bottom:762.777000px;}
.ye7{bottom:765.775500px;}
.y1ee{bottom:766.138500px;}
.y167{bottom:766.486500px;}
.y69{bottom:766.671000px;}
.yb0{bottom:773.943975px;}
.y9a{bottom:775.255500px;}
.y217{bottom:775.578000px;}
.y2b{bottom:776.368500px;}
.y28c{bottom:776.535000px;}
.y2c1{bottom:777.655500px;}
.y24b{bottom:779.224500px;}
.y218{bottom:780.460500px;}
.ye6{bottom:784.605000px;}
.y67{bottom:785.500500px;}
.y68{bottom:790.926000px;}
.y2e7{bottom:792.294000px;}
.y99{bottom:794.085000px;}
.yaf{bottom:794.166975px;}
.y215{bottom:794.811000px;}
.y2c0{bottom:794.916000px;}
.y28b{bottom:795.364500px;}
.y2a{bottom:795.826500px;}
.y134{bottom:796.342500px;}
.y166{bottom:796.914000px;}
.y24a{bottom:798.054000px;}
.y216{bottom:799.693500px;}
.y1ed{bottom:803.242500px;}
.y65{bottom:804.330000px;}
.ye5{bottom:807.918000px;}
.y66{bottom:809.755500px;}
.y2bf{bottom:812.176500px;}
.y214{bottom:814.044000px;}
.y28a{bottom:814.194000px;}
.yae{bottom:814.200975px;}
.y29{bottom:815.283000px;}
.y133{bottom:815.575500px;}
.y249{bottom:816.883500px;}
.y98{bottom:817.398000px;}
.y1ec{bottom:819.342000px;}
.y1eb{bottom:822.072000px;}
.y150{bottom:822.331500px;}
.y63{bottom:823.159500px;}
.y64{bottom:828.585000px;}
.y2be{bottom:829.437000px;}
.y289{bottom:833.023500px;}
.yad{bottom:834.423975px;}
.y248{bottom:835.713000px;}
.y20e{bottom:836.473500px;}
.y110{bottom:838.005000px;}
.y1ea{bottom:840.901500px;}
.ye4{bottom:841.540500px;}
.y62{bottom:841.989000px;}
.y2bd{bottom:846.697500px;}
.y288{bottom:851.853000px;}
.y28{bottom:853.869000px;}
.y247{bottom:854.542500px;}
.yac{bottom:854.646975px;}
.y1e9{bottom:857.001000px;}
.y1e8{bottom:859.731000px;}
.ye3{bottom:860.370000px;}
.y61{bottom:860.818500px;}
.y97{bottom:861.696000px;}
.y2bc{bottom:863.956500px;}
.y287{bottom:870.682500px;}
.y246{bottom:873.372000px;}
.y27{bottom:874.348500px;}
.yab{bottom:874.869818px;}
.y1e7{bottom:875.830500px;}
.y96{bottom:878.134500px;}
.y1e6{bottom:878.559000px;}
.ye2{bottom:879.199500px;}
.ybb{bottom:879.210975px;}
.y60{bottom:879.648000px;}
.y2bb{bottom:881.217000px;}
.y26{bottom:886.147500px;}
.y286{bottom:889.512000px;}
.y245{bottom:892.201500px;}
.y1e5{bottom:894.660000px;}
.y1e4{bottom:897.388500px;}
.y5f{bottom:898.477500px;}
.yb8{bottom:900.567975px;}
.y95{bottom:901.776000px;}
.ye1{bottom:902.512500px;}
.y25{bottom:906.627000px;}
.y284{bottom:908.341500px;}
.y285{bottom:913.765500px;}
.y244{bottom:915.514500px;}
.y2ba{bottom:915.738000px;}
.y5e{bottom:917.307000px;}
.y24{bottom:918.426000px;}
.y1e3{bottom:920.701500px;}
.y23{bottom:922.767000px;}
.y94{bottom:925.416000px;}
.y283{bottom:927.171000px;}
.yaa{bottom:932.136975px;}
.y2b9{bottom:932.998500px;}
.y22{bottom:934.566000px;}
.y5d{bottom:936.136500px;}
.ya9{bottom:942.531975px;}
.y282{bottom:946.000500px;}
.y243{bottom:949.138500px;}
.y2b8{bottom:950.259000px;}
.y5c{bottom:954.966000px;}
.y21{bottom:955.045500px;}
.y93{bottom:960.024000px;}
.y1e2{bottom:964.669500px;}
.y281{bottom:964.828500px;}
.y2b7{bottom:967.519500px;}
.y242{bottom:967.968000px;}
.y5b{bottom:973.795500px;}
.y1e1{bottom:976.624500px;}
.y92{bottom:979.257000px;}
.y280{bottom:983.658000px;}
.y2b6{bottom:984.780000px;}
.y241{bottom:986.797500px;}
.y194{bottom:988.141500px;}
.y1e0{bottom:988.579500px;}
.y5a{bottom:992.625000px;}
.ye0{bottom:998.049000px;}
.y20{bottom:999.721500px;}
.y1df{bottom:1000.534500px;}
.y2b4{bottom:1002.039000px;}
.y2b5{bottom:1002.040500px;}
.y27f{bottom:1002.487500px;}
.y240{bottom:1005.627000px;}
.y193{bottom:1006.971000px;}
.y59{bottom:1011.454500px;}
.y179{bottom:1015.040550px;}
.y2b3{bottom:1019.299500px;}
.y1de{bottom:1019.827500px;}
.y23f{bottom:1024.456500px;}
.y178{bottom:1024.940550px;}
.y191{bottom:1025.800500px;}
.y58{bottom:1030.284000px;}
.y192{bottom:1031.226000px;}
.y1f{bottom:1036.485000px;}
.y2b2{bottom:1036.560000px;}
.y23e{bottom:1043.284500px;}
.y190{bottom:1044.630000px;}
.y57{bottom:1049.113500px;}
.y1dd{bottom:1051.431000px;}
.y2b1{bottom:1053.820500px;}
.y23d{bottom:1062.114000px;}
.y18f{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y56{bottom:1067.943000px;}
.y2b0{bottom:1071.081000px;}
.y18e{bottom:1082.289000px;}
.y23c{bottom:1085.427000px;}
.y55{bottom:1086.772500px;}
.y2af{bottom:1088.341500px;}
.y1d{bottom:1092.972000px;}
.y54{bottom:1105.602000px;}
.y1b{bottom:1136.460000px;}
.y53{bottom:1168.366500px;}
.h2a{height:-437.527125px;}
.h29{height:-415.225125px;}
.h1b{height:-388.239075px;}
.h1c{height:-366.882075px;}
.h2{height:25.508090px;}
.h1f{height:27.855430px;}
.hf{height:29.037733px;}
.hb{height:31.131341px;}
.h13{height:31.526842px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h2c{height:34.574294px;}
.h5{height:36.319550px;}
.h14{height:38.615038px;}
.hd{height:38.896243px;}
.h2f{height:39.076172px;}
.h12{height:39.432893px;}
.h15{height:41.482876px;}
.hc{height:41.508281px;}
.h2e{height:41.989746px;}
.h27{height:43.010859px;}
.h22{height:43.080988px;}
.h10{height:43.217759px;}
.h8{height:43.815515px;}
.h1d{height:45.161402px;}
.h17{height:45.235037px;}
.h1a{height:45.835453px;}
.h32{height:46.366523px;}
.he{height:46.697011px;}
.h24{height:48.225586px;}
.h30{height:48.567733px;}
.h19{height:50.636865px;}
.h6{height:50.931027px;}
.h11{height:51.885221px;}
.h20{height:53.222842px;}
.h1e{height:53.228842px;}
.h23{height:53.369648px;}
.ha{height:54.547601px;}
.h18{height:56.038131px;}
.h7{height:69.505289px;}
.h9{height:77.792486px;}
.h2b{height:98.374131px;}
.h16{height:209.367900px;}
.h28{height:268.857225px;}
.h31{height:269.289000px;}
.h21{height:282.541500px;}
.h2d{height:284.073000px;}
.h25{height:298.213650px;}
.h26{height:356.857050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:-305.286975px;}
.w5{width:4.346843px;}
.wb{width:7.181843px;}
.w2{width:75.364879px;}
.w3{width:211.537947px;}
.w9{width:309.802500px;}
.wd{width:310.912500px;}
.wc{width:316.800450px;}
.w6{width:504.013500px;}
.w7{width:588.701925px;}
.w4{width:630.422100px;}
.w8{width:707.825850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa2{left:-203.658525px;}
.x77{left:-196.704900px;}
.x95{left:-193.960500px;}
.xe0{left:-188.172000px;}
.x7c{left:-185.553900px;}
.x7b{left:-176.103900px;}
.x7a{left:-147.753900px;}
.xab{left:-38.709150px;}
.xd1{left:-1.816050px;}
.x0{left:0.000000px;}
.x96{left:1.699500px;}
.xe1{left:7.488000px;}
.x79{left:8.738100px;}
.xb4{left:11.423475px;}
.xb3{left:20.873475px;}
.x2{left:29.274117px;}
.x97{left:33.559500px;}
.xa3{left:35.237475px;}
.xb2{left:39.206475px;}
.x78{left:42.191100px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.x6b{left:62.541000px;}
.x6a{left:69.256500px;}
.xc9{left:73.513500px;}
.xaf{left:79.085475px;}
.xbe{left:81.367500px;}
.xc0{left:82.479000px;}
.xca{left:83.574000px;}
.xe3{left:85.848000px;}
.xbf{left:89.832000px;}
.xaa{left:92.331150px;}
.xc8{left:123.343500px;}
.x76{left:131.032500px;}
.x69{left:143.296500px;}
.x6c{left:145.522500px;}
.xa1{left:151.893000px;}
.xac{left:156.950850px;}
.x68{left:180.861000px;}
.xb1{left:183.035475px;}
.xad{left:188.810850px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x87{left:258.204000px;}
.xbd{left:266.149500px;}
.x88{left:268.380000px;}
.x5{left:269.914500px;}
.xbc{left:274.797000px;}
.xb7{left:276.051000px;}
.x16{left:281.479500px;}
.xb8{left:282.856500px;}
.xa0{left:284.652000px;}
.xcd{left:288.418500px;}
.x2a{left:291.465000px;}
.xd8{left:297.415500px;}
.xa8{left:299.277000px;}
.xb9{left:303.789000px;}
.x2b{left:306.409500px;}
.x1d{left:307.794000px;}
.x7{left:309.322500px;}
.xb5{left:311.061000px;}
.x5d{left:312.349500px;}
.xa9{left:314.221500px;}
.x1e{left:315.265500px;}
.xc4{left:316.440000px;}
.xb6{left:317.866500px;}
.x93{left:320.433000px;}
.xce{left:322.116000px;}
.x5e{left:327.294000px;}
.x5f{left:330.955500px;}
.x8c{left:336.157500px;}
.x94{left:339.054000px;}
.x10{left:340.269000px;}
.x8d{left:342.964500px;}
.x11{left:346.246500px;}
.x4f{left:349.065000px;}
.x2f{left:350.140500px;}
.xa{left:354.882000px;}
.x7e{left:356.055000px;}
.xb{left:360.859500px;}
.x50{left:364.009500px;}
.x30{left:365.083500px;}
.x73{left:371.082000px;}
.x9a{left:372.783000px;}
.x9c{left:375.714000px;}
.x41{left:380.197500px;}
.x9d{left:382.519500px;}
.x84{left:385.681500px;}
.xe2{left:390.687000px;}
.x5b{left:393.259500px;}
.x8b{left:394.932000px;}
.x5c{left:399.685500px;}
.x38{left:405.208500px;}
.x43{left:414.393000px;}
.xc1{left:419.037000px;}
.x39{left:420.151500px;}
.x44{left:429.337500px;}
.x45{left:432.354000px;}
.x46{left:439.161000px;}
.x59{left:441.087000px;}
.xbb{left:443.142000px;}
.xd3{left:448.126500px;}
.xc{left:451.509000px;}
.x5a{left:456.031500px;}
.xd{left:457.486500px;}
.xd4{left:461.575500px;}
.x2e{left:466.093500px;}
.xa6{left:474.220500px;}
.x2c{left:475.753500px;}
.xa7{left:481.026000px;}
.xe7{left:483.540000px;}
.x85{left:486.426000px;}
.x2d{left:490.698000px;}
.x86{left:496.582500px;}
.x91{left:498.942000px;}
.x89{left:501.741000px;}
.x92{left:505.749000px;}
.x8a{left:508.546500px;}
.x34{left:512.977500px;}
.x82{left:520.275000px;}
.x48{left:523.348500px;}
.x28{left:525.864000px;}
.x35{left:527.920500px;}
.x49{left:529.774500px;}
.x1f{left:538.768500px;}
.x29{left:540.807000px;}
.x20{left:546.240000px;}
.x12{left:549.657000px;}
.xc2{left:550.999500px;}
.x31{left:553.689000px;}
.x13{left:555.634500px;}
.x17{left:557.326500px;}
.xc3{left:561.357000px;}
.x6f{left:562.858500px;}
.x18{left:564.799500px;}
.xe8{left:565.872000px;}
.x19{left:568.609500px;}
.x70{left:571.846500px;}
.x60{left:574.387500px;}
.x1a{left:576.081000px;}
.xd7{left:578.220000px;}
.x6d{left:580.348500px;}
.x32{left:584.157000px;}
.x8{left:587.005500px;}
.x61{left:589.330500px;}
.x33{left:590.583000px;}
.x9{left:593.334000px;}
.x6e{left:596.359500px;}
.x8e{left:598.915500px;}
.x27{left:599.971500px;}
.x72{left:602.347500px;}
.x1b{left:603.865500px;}
.x3e{left:605.877000px;}
.x23{left:608.565000px;}
.x3f{left:609.579000px;}
.x1c{left:611.337000px;}
.x8f{left:613.860000px;}
.x24{left:616.036500px;}
.x83{left:618.885000px;}
.x14{left:620.221500px;}
.x64{left:623.283000px;}
.x40{left:624.523500px;}
.x15{left:626.199000px;}
.x65{left:632.271000px;}
.x90{left:633.943500px;}
.xcb{left:641.935500px;}
.x9e{left:649.953000px;}
.x51{left:655.203000px;}
.xd2{left:657.987000px;}
.x52{left:661.629000px;}
.x9f{left:664.897500px;}
.xda{left:667.531500px;}
.x98{left:669.628500px;}
.xdb{left:673.957500px;}
.x21{left:677.143500px;}
.xc5{left:680.421000px;}
.x22{left:684.615000px;}
.xc6{left:686.847000px;}
.xba{left:688.465500px;}
.x47{left:690.432000px;}
.xae{left:700.190850px;}
.xcc{left:701.250000px;}
.x57{left:702.582000px;}
.x25{left:704.299500px;}
.xdc{left:707.188500px;}
.x58{left:709.008000px;}
.x26{left:711.771000px;}
.xa4{left:715.513500px;}
.xd5{left:717.048000px;}
.xc7{left:720.981000px;}
.xa5{left:722.319000px;}
.xd6{left:723.376500px;}
.x36{left:725.230500px;}
.x42{left:727.167000px;}
.x3a{left:730.227000px;}
.xe{left:732.709500px;}
.x66{left:734.611500px;}
.x4e{left:737.125500px;}
.xf{left:739.036500px;}
.x37{left:740.175000px;}
.xd9{left:744.162000px;}
.x3b{left:745.171500px;}
.x3c{left:748.983000px;}
.x67{left:750.243000px;}
.x4a{left:755.176500px;}
.xe5{left:761.137500px;}
.x7f{left:762.312000px;}
.x3d{left:763.926000px;}
.xe6{left:765.012000px;}
.x71{left:766.246500px;}
.x4c{left:768.237000px;}
.x4b{left:770.121000px;}
.x4d{left:775.042500px;}
.x56{left:777.520500px;}
.x81{left:783.063000px;}
.x99{left:784.827000px;}
.x80{left:789.297000px;}
.x74{left:795.729000px;}
.x9b{left:800.428500px;}
.x75{left:804.717000px;}
.xe9{left:809.121000px;}
.xe4{left:810.265500px;}
.xdf{left:811.551000px;}
.x62{left:812.622000px;}
.xdd{left:814.276500px;}
.xcf{left:817.698000px;}
.x53{left:818.893500px;}
.xde{left:820.702500px;}
.x63{left:827.566500px;}
.x55{left:831.375000px;}
.xd0{left:832.642500px;}
.x54{left:833.838000px;}
.x7d{left:837.015000px;}
.xb0{left:864.680475px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-9.706667pt;}
.v7{vertical-align:-8.485333pt;}
.v5{vertical-align:-6.757333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.112000pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:37.632000pt;}
.ls2d{letter-spacing:-0.043200pt;}
.ls2b{letter-spacing:-0.014400pt;}
.ls2c{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000711pt;}
.ls22{letter-spacing:0.000751pt;}
.ls35{letter-spacing:0.000853pt;}
.ls32{letter-spacing:0.001026pt;}
.ls19{letter-spacing:0.001398pt;}
.ls1c{letter-spacing:0.001434pt;}
.ls31{letter-spacing:0.002212pt;}
.ls14{letter-spacing:0.002825pt;}
.ls30{letter-spacing:0.004267pt;}
.ls29{letter-spacing:0.009600pt;}
.ls28{letter-spacing:0.014400pt;}
.ls27{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.111467pt;}
.ls15{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.117600pt;}
.ls11{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.168000pt;}
.ls16{letter-spacing:0.168560pt;}
.lsf{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.336000pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1a{letter-spacing:2.651733pt;}
.ls23{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls2a{letter-spacing:3.118133pt;}
.lse{letter-spacing:3.158400pt;}
.lsd{letter-spacing:3.163733pt;}
.ls1{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls20{letter-spacing:11.133060pt;}
.ls1f{letter-spacing:11.138393pt;}
.ls2e{letter-spacing:11.954133pt;}
.ls2f{letter-spacing:11.959467pt;}
.ls36{letter-spacing:12.063560pt;}
.ls39{letter-spacing:12.101653pt;}
.ls3a{letter-spacing:12.216715pt;}
.lsa{letter-spacing:12.528078pt;}
.lsb{letter-spacing:12.533411pt;}
.lsc{letter-spacing:13.923096pt;}
.ls3b{letter-spacing:14.068329pt;}
.ls38{letter-spacing:14.131075pt;}
.ls37{letter-spacing:14.613867pt;}
.ls33{letter-spacing:14.727153pt;}
.ls3{letter-spacing:15.942400pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls26{letter-spacing:109.179200pt;}
.ls25{letter-spacing:130.432533pt;}
.ls21{letter-spacing:141.072533pt;}
.ls24{letter-spacing:142.405867pt;}
.ls1e{letter-spacing:163.078400pt;}
.ls1d{letter-spacing:181.675733pt;}
.ls18{letter-spacing:191.131733pt;}
.ls1b{letter-spacing:192.459733pt;}
.ws5e{word-spacing:-13.944000pt;}
.ws95{word-spacing:-13.283467pt;}
.ws70{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.760670pt;}
.ws5d{word-spacing:-12.600000pt;}
.ws72{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws5c{word-spacing:-11.255860pt;}
.ws6f{word-spacing:-10.719867pt;}
.ws30{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws5f{word-spacing:-8.400000pt;}
.ws71{word-spacing:-8.000000pt;}
.wsa3{word-spacing:-2.975497pt;}
.ws44{word-spacing:-2.869229pt;}
.wsb4{word-spacing:-2.656693pt;}
.ws7c{word-spacing:-2.603559pt;}
.ws73{word-spacing:-2.104115pt;}
.ws75{word-spacing:-1.912832pt;}
.ws74{word-spacing:-1.865011pt;}
.wsc3{word-spacing:-1.817190pt;}
.ws35{word-spacing:-1.806551pt;}
.ws33{word-spacing:-1.753418pt;}
.ws77{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.wsa6{word-spacing:-1.647150pt;}
.wsb5{word-spacing:-1.540882pt;}
.ws7b{word-spacing:-1.487748pt;}
.wsb7{word-spacing:-1.381481pt;}
.ws1c{word-spacing:-1.291162pt;}
.ws42{word-spacing:-1.275213pt;}
.ws1d{word-spacing:-1.243341pt;}
.ws0{word-spacing:-1.175671pt;}
.ws25{word-spacing:-1.168945pt;}
.wsad{word-spacing:-1.132800pt;}
.wsac{word-spacing:-1.128000pt;}
.ws26{word-spacing:-1.115811pt;}
.wsab{word-spacing:-1.104000pt;}
.ws7{word-spacing:-1.041421pt;}
.wsa5{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.wsba{word-spacing:-0.860774pt;}
.ws46{word-spacing:-0.850142pt;}
.ws17{word-spacing:-0.812954pt;}
.ws64{word-spacing:-0.797008pt;}
.ws18{word-spacing:-0.765133pt;}
.ws65{word-spacing:-0.743874pt;}
.ws78{word-spacing:-0.584473pt;}
.wsd1{word-spacing:-0.526029pt;}
.ws43{word-spacing:-0.478205pt;}
.ws57{word-spacing:-0.318803pt;}
.ws22{word-spacing:-0.265669pt;}
.ws4{word-spacing:-0.260355pt;}
.wsdb{word-spacing:-0.239104pt;}
.ws3d{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws2e{word-spacing:-0.106268pt;}
.wsc7{word-spacing:-0.095642pt;}
.wsc8{word-spacing:-0.062771pt;}
.ws28{word-spacing:-0.053134pt;}
.wsb9{word-spacing:-0.047821pt;}
.wsd9{word-spacing:-0.008183pt;}
.wsc6{word-spacing:-0.005018pt;}
.wscf{word-spacing:-0.004403pt;}
.wsd7{word-spacing:-0.004224pt;}
.ws2f{word-spacing:-0.002739pt;}
.ws5{word-spacing:-0.002543pt;}
.wsd5{word-spacing:-0.001263pt;}
.ws3{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.000930pt;}
.ws1e{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.ws1f{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.ws13{word-spacing:0.127522pt;}
.ws1b{word-spacing:0.143462pt;}
.wsb1{word-spacing:0.144000pt;}
.ws27{word-spacing:0.159402pt;}
.ws9e{word-spacing:0.191283pt;}
.ws24{word-spacing:0.212535pt;}
.wsc4{word-spacing:0.239104pt;}
.ws3c{word-spacing:0.265669pt;}
.ws9d{word-spacing:0.286925pt;}
.ws63{word-spacing:0.318803pt;}
.ws9c{word-spacing:0.334746pt;}
.ws40{word-spacing:0.371937pt;}
.ws38{word-spacing:0.425071pt;}
.wscc{word-spacing:0.478208pt;}
.wsb6{word-spacing:0.503733pt;}
.ws6e{word-spacing:0.504366pt;}
.ws66{word-spacing:0.505333pt;}
.ws91{word-spacing:0.511370pt;}
.ws68{word-spacing:0.531339pt;}
.ws8f{word-spacing:0.531673pt;}
.ws90{word-spacing:0.548544pt;}
.ws92{word-spacing:0.553877pt;}
.ws4f{word-spacing:0.573449pt;}
.wsd8{word-spacing:0.573850pt;}
.ws54{word-spacing:0.576649pt;}
.ws89{word-spacing:0.587127pt;}
.ws53{word-spacing:0.592179pt;}
.ws4d{word-spacing:0.593246pt;}
.ws52{word-spacing:0.594133pt;}
.ws4c{word-spacing:0.595379pt;}
.ws50{word-spacing:0.597513pt;}
.ws88{word-spacing:0.611703pt;}
.ws4e{word-spacing:0.619136pt;}
.ws4b{word-spacing:0.620331pt;}
.ws59{word-spacing:0.662422pt;}
.ws5a{word-spacing:0.665333pt;}
.ws37{word-spacing:0.743874pt;}
.ws3f{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws3b{word-spacing:0.903276pt;}
.ws5b{word-spacing:0.956410pt;}
.wsbe{word-spacing:0.956416pt;}
.wsa1{word-spacing:1.009543pt;}
.ws80{word-spacing:1.062677pt;}
.ws39{word-spacing:1.115811pt;}
.ws2c{word-spacing:1.168945pt;}
.ws9f{word-spacing:1.222079pt;}
.ws81{word-spacing:1.275213pt;}
.wsa0{word-spacing:1.381481pt;}
.wsbd{word-spacing:1.386803pt;}
.ws7a{word-spacing:1.540882pt;}
.wsdc{word-spacing:1.625907pt;}
.wsd2{word-spacing:1.673728pt;}
.wsb0{word-spacing:1.713600pt;}
.ws85{word-spacing:1.753418pt;}
.wsae{word-spacing:1.766400pt;}
.wsaf{word-spacing:1.804800pt;}
.ws84{word-spacing:1.806551pt;}
.ws15{word-spacing:1.817190pt;}
.ws47{word-spacing:1.859685pt;}
.ws83{word-spacing:1.912819pt;}
.ws1a{word-spacing:1.912832pt;}
.ws7e{word-spacing:1.965953pt;}
.wsa7{word-spacing:2.072221pt;}
.wsca{word-spacing:2.151936pt;}
.ws86{word-spacing:2.178489pt;}
.wsd4{word-spacing:2.199757pt;}
.ws62{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws76{word-spacing:2.337890pt;}
.ws61{word-spacing:2.391024pt;}
.ws7d{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.wsb8{word-spacing:2.762961pt;}
.wscb{word-spacing:2.773606pt;}
.wsd6{word-spacing:2.821427pt;}
.wsc9{word-spacing:2.860681pt;}
.ws20{word-spacing:2.861926pt;}
.wsbf{word-spacing:2.862071pt;}
.wsc0{word-spacing:2.862626pt;}
.wsc2{word-spacing:2.863130pt;}
.wsc5{word-spacing:2.864324pt;}
.wsd0{word-spacing:2.866022pt;}
.wsa8{word-spacing:2.869229pt;}
.wsbb{word-spacing:2.869248pt;}
.wsda{word-spacing:2.869734pt;}
.ws3a{word-spacing:2.922363pt;}
.ws29{word-spacing:2.975497pt;}
.wsbc{word-spacing:3.060531pt;}
.ws34{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws45{word-spacing:3.241166pt;}
.ws9a{word-spacing:3.400567pt;}
.ws9b{word-spacing:3.453701pt;}
.ws6c{word-spacing:3.506835pt;}
.ws6d{word-spacing:3.666237pt;}
.wsce{word-spacing:3.730022pt;}
.ws82{word-spacing:3.772505pt;}
.ws55{word-spacing:3.825638pt;}
.ws6a{word-spacing:3.985040pt;}
.ws31{word-spacing:4.197575pt;}
.wsf{word-spacing:4.240070pt;}
.ws58{word-spacing:4.250709pt;}
.ws49{word-spacing:4.256051pt;}
.ws3e{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.ws2d{word-spacing:4.410111pt;}
.wsb3{word-spacing:4.516379pt;}
.ws48{word-spacing:4.590797pt;}
.ws41{word-spacing:4.622646pt;}
.wscd{word-spacing:4.686438pt;}
.ws79{word-spacing:5.047717pt;}
.ws67{word-spacing:5.100851pt;}
.wsa4{word-spacing:5.419654pt;}
.wsb2{word-spacing:5.738458pt;}
.ws94{word-spacing:5.791591pt;}
.ws87{word-spacing:6.110395pt;}
.ws32{word-spacing:6.429198pt;}
.wsd{word-spacing:6.918010pt;}
.wsa2{word-spacing:6.960537pt;}
.ws23{word-spacing:7.013670pt;}
.ws60{word-spacing:7.226206pt;}
.ws93{word-spacing:7.279340pt;}
.wsd3{word-spacing:8.368640pt;}
.ws69{word-spacing:10.201702pt;}
.wsb{word-spacing:10.823338pt;}
.wsa9{word-spacing:11.952000pt;}
.wsaa{word-spacing:11.985600pt;}
.wsc{word-spacing:14.319536pt;}
.ws56{word-spacing:15.143152pt;}
.ws6b{word-spacing:15.621357pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws51{word-spacing:73.452749pt;}
.ws97{word-spacing:130.455142pt;}
.ws98{word-spacing:137.054413pt;}
.ws99{word-spacing:145.040486pt;}
.ws8a{word-spacing:180.655600pt;}
.ws8b{word-spacing:181.250701pt;}
.ws8d{word-spacing:187.285437pt;}
.ws8e{word-spacing:194.045368pt;}
.ws8c{word-spacing:195.258166pt;}
.ws4a{word-spacing:227.292262pt;}
.ws96{word-spacing:303.327334pt;}
._5d{margin-left:-21.441468pt;}
._5c{margin-left:-18.224292pt;}
._15{margin-left:-6.794409pt;}
._9{margin-left:-5.122136pt;}
._2{margin-left:-3.421811pt;}
._13{margin-left:-2.391024pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._8{width:3.256382pt;}
._26{width:4.552258pt;}
._2a{width:5.517141pt;}
._28{width:7.057111pt;}
._27{width:7.975968pt;}
._29{width:8.997175pt;}
._6{width:10.132188pt;}
._4{width:11.530016pt;}
._f{width:13.175632pt;}
._a{width:14.824448pt;}
._41{width:15.833892pt;}
._c{width:16.790302pt;}
._14{width:18.224916pt;}
._16{width:19.287594pt;}
._e{width:20.456539pt;}
._40{width:21.572350pt;}
._3{width:23.063232pt;}
._d{width:25.876193pt;}
._7{width:27.188522pt;}
._42{width:28.373485pt;}
._17{width:29.457406pt;}
._3a{width:32.885713pt;}
._4b{width:34.703141pt;}
._12{width:36.184163pt;}
._b{width:38.043849pt;}
._39{width:52.578530pt;}
._5b{width:54.993920pt;}
._3d{width:56.318071pt;}
._36{width:63.038071pt;}
._2e{width:68.860624pt;}
._37{width:70.430071pt;}
._20{width:71.779021pt;}
._55{width:72.750270pt;}
._45{width:74.038711pt;}
._3c{width:76.814071pt;}
._3b{width:81.471031pt;}
._21{width:83.734221pt;}
._1f{width:92.347275pt;}
._19{width:94.446080pt;}
._35{width:100.355575pt;}
._4a{width:114.506990pt;}
._4d{width:117.256602pt;}
._2f{width:126.019815pt;}
._24{width:129.403085pt;}
._50{width:133.085286pt;}
._3e{width:134.269511pt;}
._30{width:135.818592pt;}
._34{width:139.849472pt;}
._23{width:141.358285pt;}
._4c{width:143.223296pt;}
._1b{width:146.092544pt;}
._56{width:147.205993pt;}
._49{width:148.473463pt;}
._1a{width:150.066981pt;}
._22{width:153.265664pt;}
._44{width:158.149824pt;}
._38{width:162.158071pt;}
._4e{width:164.556683pt;}
._31{width:167.397655pt;}
._52{width:168.855245pt;}
._1c{width:173.058272pt;}
._57{width:179.643144pt;}
._46{width:182.318071pt;}
._58{width:185.587322pt;}
._1e{width:186.979328pt;}
._53{width:195.416109pt;}
._2d{width:196.392000pt;}
._51{width:200.326642pt;}
._48{width:214.363063pt;}
._33{width:215.787152pt;}
._32{width:219.961168pt;}
._54{width:231.239168pt;}
._1d{width:241.877606pt;}
._2c{width:284.798044pt;}
._2b{width:315.336000pt;}
._43{width:362.376000pt;}
._4f{width:398.633822pt;}
._18{width:407.194112pt;}
._47{width:420.878071pt;}
._10{width:684.663470pt;}
._5a{width:1797.051230pt;}
._3f{width:1818.171230pt;}
._25{width:1910.079113pt;}
._59{width:2163.768000pt;}
._11{width:2185.021333pt;}
.fs7{font-size:31.880533pt;}
.fs14{font-size:32.000000pt;}
.fs11{font-size:33.600000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs12{font-size:42.879467pt;}
.fs16{font-size:44.292800pt;}
.fse{font-size:45.023440pt;}
.fs9{font-size:47.820800pt;}
.fs15{font-size:48.000000pt;}
.fsd{font-size:49.829333pt;}
.fs10{font-size:50.400000pt;}
.fs13{font-size:53.120000pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fsf{font-size:55.776000pt;}
.fs17{font-size:56.000000pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y165{bottom:-694.062600pt;}
.y164{bottom:-659.790600pt;}
.y163{bottom:-638.790600pt;}
.y1bb{bottom:-595.553000pt;}
.y1ba{bottom:-577.577000pt;}
.y1b9{bottom:-559.601000pt;}
.y1b8{bottom:-537.425000pt;}
.y1b7{bottom:-515.249000pt;}
.y1b6{bottom:-479.129000pt;}
.y1b5{bottom:-460.145000pt;}
.y1b4{bottom:-441.329000pt;}
.y1b3{bottom:-422.345000pt;}
.y1b2{bottom:-403.529000pt;}
.y1b1{bottom:-383.705000pt;}
.y1b0{bottom:-355.817000pt;}
.y271{bottom:-331.230667pt;}
.y1af{bottom:-322.385000pt;}
.y270{bottom:-314.110667pt;}
.y1ae{bottom:-304.409140pt;}
.y26f{bottom:-296.990667pt;}
.y162{bottom:-294.558600pt;}
.y1ad{bottom:-286.601000pt;}
.y26e{bottom:-279.870667pt;}
.y161{bottom:-276.582600pt;}
.y132{bottom:-274.184000pt;}
.y1ac{bottom:-268.625000pt;}
.y26d{bottom:-262.750667pt;}
.y160{bottom:-258.774600pt;}
.y131{bottom:-257.064000pt;}
.y1ab{bottom:-250.649000pt;}
.y26c{bottom:-245.630800pt;}
.y15f{bottom:-240.798600pt;}
.y130{bottom:-239.944000pt;}
.y1aa{bottom:-232.673000pt;}
.y26b{bottom:-228.670667pt;}
.y12f{bottom:-222.824000pt;}
.y15e{bottom:-222.822740pt;}
.y1a9{bottom:-214.697000pt;}
.y26a{bottom:-211.550667pt;}
.y12e{bottom:-205.864000pt;}
.y15d{bottom:-204.846600pt;}
.y1a8{bottom:-196.889000pt;}
.y269{bottom:-194.430667pt;}
.y12d{bottom:-188.744000pt;}
.y15c{bottom:-186.870600pt;}
.y1a7{bottom:-178.913000pt;}
.y268{bottom:-177.310667pt;}
.y12c{bottom:-171.624000pt;}
.y15b{bottom:-169.062600pt;}
.yd4{bottom:-165.993800pt;}
.y1a6{bottom:-160.937000pt;}
.y267{bottom:-156.190667pt;}
.y12b{bottom:-154.504000pt;}
.y15a{bottom:-151.086600pt;}
.yd3{bottom:-148.185800pt;}
.y1a5{bottom:-142.961000pt;}
.y12a{bottom:-137.384000pt;}
.y159{bottom:-133.110600pt;}
.yd2{bottom:-130.209800pt;}
.y1a4{bottom:-124.985000pt;}
.y266{bottom:-123.230667pt;}
.y129{bottom:-120.264000pt;}
.y158{bottom:-115.134600pt;}
.yd1{bottom:-112.233800pt;}
.y1a3{bottom:-107.009140pt;}
.y265{bottom:-106.110667pt;}
.y128{bottom:-103.304000pt;}
.y157{bottom:-97.158600pt;}
.yd0{bottom:-94.257800pt;}
.y1a2{bottom:-89.201000pt;}
.y264{bottom:-88.990667pt;}
.y213{bottom:-86.741067pt;}
.y127{bottom:-82.184000pt;}
.y156{bottom:-75.150600pt;}
.ycf{bottom:-72.081800pt;}
.y263{bottom:-71.870667pt;}
.y1a1{bottom:-71.225000pt;}
.y212{bottom:-65.941467pt;}
.y1a0{bottom:-53.249000pt;}
.y155{bottom:-52.974600pt;}
.y262{bottom:-50.750667pt;}
.yce{bottom:-50.073800pt;}
.y126{bottom:-49.544000pt;}
.y18c{bottom:-46.221733pt;}
.y211{bottom:-45.141867pt;}
.y125{bottom:-34.184000pt;}
.y210{bottom:-24.342267pt;}
.y19f{bottom:-18.977000pt;}
.y154{bottom:-18.702600pt;}
.y124{bottom:-18.664000pt;}
.y261{bottom:-18.110800pt;}
.ycd{bottom:-15.633800pt;}
.y18b{bottom:-13.581733pt;}
.y20f{bottom:-3.302267pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:1.336000pt;}
.y260{bottom:1.889200pt;}
.y19e{bottom:2.023000pt;}
.y153{bottom:2.465400pt;}
.y3{bottom:3.044747pt;}
.yb9{bottom:4.032000pt;}
.ycc{bottom:5.366200pt;}
.y18a{bottom:6.418267pt;}
.y2{bottom:12.578910pt;}
.y1c{bottom:16.528366pt;}
.y52{bottom:28.346667pt;}
.ydf{bottom:81.480000pt;}
.y1dc{bottom:83.117333pt;}
.y2ae{bottom:83.328000pt;}
.y2e6{bottom:92.892000pt;}
.y1a{bottom:93.018667pt;}
.y91{bottom:94.086667pt;}
.y51{bottom:95.125333pt;}
.yde{bottom:98.217333pt;}
.y2ad{bottom:98.670667pt;}
.y1db{bottom:99.854667pt;}
.y18d{bottom:101.202667pt;}
.y2e5{bottom:105.902667pt;}
.y2e4{bottom:108.233333pt;}
.y10f{bottom:108.832000pt;}
.y19{bottom:108.920000pt;}
.y50{bottom:109.436000pt;}
.y4f{bottom:109.869333pt;}
.y90{bottom:110.824000pt;}
.y4e{bottom:111.862667pt;}
.y2ac{bottom:114.013333pt;}
.ydd{bottom:114.954667pt;}
.y1da{bottom:116.592000pt;}
.y2e3{bottom:123.576000pt;}
.y177{bottom:123.796400pt;}
.y23b{bottom:124.412000pt;}
.y18{bottom:124.820000pt;}
.y10e{bottom:125.569333pt;}
.y4d{bottom:128.600000pt;}
.y2ab{bottom:129.354667pt;}
.y8f{bottom:131.546667pt;}
.ydb{bottom:131.692000pt;}
.ydc{bottom:136.514667pt;}
.y1d9{bottom:137.314667pt;}
.y20d{bottom:137.846667pt;}
.y2e2{bottom:138.918667pt;}
.y17{bottom:140.720000pt;}
.y23a{bottom:141.149333pt;}
.y10c{bottom:142.306667pt;}
.y2aa{bottom:144.697333pt;}
.y4c{bottom:145.337333pt;}
.y10d{bottom:147.128000pt;}
.yda{bottom:148.429333pt;}
.y8e{bottom:149.480000pt;}
.y2e1{bottom:154.261333pt;}
.y20c{bottom:154.584000pt;}
.y1d8{bottom:155.246667pt;}
.y16{bottom:156.621333pt;}
.y238{bottom:157.886667pt;}
.y10b{bottom:159.044000pt;}
.y2a9{bottom:160.040000pt;}
.y4b{bottom:162.074667pt;}
.y239{bottom:162.709333pt;}
.yd9{bottom:165.166667pt;}
.y2e0{bottom:169.604000pt;}
.y20b{bottom:171.321333pt;}
.y15{bottom:172.521333pt;}
.y236{bottom:174.624000pt;}
.y2a8{bottom:175.382667pt;}
.y10a{bottom:175.781333pt;}
.y4a{bottom:178.812000pt;}
.y8d{bottom:179.368000pt;}
.y237{bottom:179.446667pt;}
.yd8{bottom:181.904000pt;}
.y2df{bottom:184.946667pt;}
.y20a{bottom:188.058667pt;}
.y14{bottom:188.421333pt;}
.y2a7{bottom:190.725333pt;}
.y235{bottom:191.361333pt;}
.y109{bottom:192.518667pt;}
.y1d7{bottom:192.868000pt;}
.y49{bottom:195.549333pt;}
.y8c{bottom:196.105333pt;}
.y27e{bottom:198.641333pt;}
.y2de{bottom:200.289333pt;}
.yd7{bottom:202.626667pt;}
.y13{bottom:204.322667pt;}
.y209{bottom:204.796000pt;}
.y2a6{bottom:206.068000pt;}
.ycb{bottom:206.630200pt;}
.y1d6{bottom:207.480000pt;}
.y234{bottom:208.098667pt;}
.y108{bottom:209.256000pt;}
.y48{bottom:212.286667pt;}
.y8b{bottom:212.841333pt;}
.y27d{bottom:215.378667pt;}
.y2dd{bottom:215.632000pt;}
.yd6{bottom:220.560000pt;}
.y2a5{bottom:221.410667pt;}
.y208{bottom:221.533333pt;}
.y1d5{bottom:222.092000pt;}
.yca{bottom:224.606200pt;}
.y107{bottom:225.993333pt;}
.y233{bottom:228.821333pt;}
.y47{bottom:229.024000pt;}
.y8a{bottom:229.578667pt;}
.y2dc{bottom:230.974667pt;}
.y27c{bottom:232.116000pt;}
.y1d4{bottom:236.704000pt;}
.y2a4{bottom:236.753333pt;}
.y207{bottom:238.270667pt;}
.yc9{bottom:242.582200pt;}
.y106{bottom:242.730667pt;}
.y46{bottom:245.761333pt;}
.y89{bottom:246.316000pt;}
.yd5{bottom:246.704000pt;}
.y27b{bottom:248.853333pt;}
.y25f{bottom:251.649333pt;}
.y2a3{bottom:252.094667pt;}
.y1d3{bottom:257.717333pt;}
.y19d{bottom:258.055000pt;}
.y232{bottom:258.709333pt;}
.y206{bottom:258.993333pt;}
.y104{bottom:259.468000pt;}
.yc8{bottom:260.558200pt;}
.y2db{bottom:261.658667pt;}
.y45{bottom:262.497333pt;}
.y88{bottom:263.053333pt;}
.y105{bottom:264.289333pt;}
.y27a{bottom:265.590667pt;}
.y12{bottom:266.804000pt;}
.y2a2{bottom:267.437333pt;}
.y25e{bottom:268.769333pt;}
.ya8{bottom:269.298667pt;}
.y122{bottom:271.096000pt;}
.y231{bottom:275.446667pt;}
.y14f{bottom:275.930667pt;}
.y19c{bottom:276.031000pt;}
.y102{bottom:276.205333pt;}
.y205{bottom:276.925333pt;}
.y2da{bottom:277.001333pt;}
.yc7{bottom:278.534200pt;}
.y44{bottom:279.234667pt;}
.y87{bottom:279.790667pt;}
.y103{bottom:281.026667pt;}
.y11{bottom:282.705333pt;}
.y2a1{bottom:282.780000pt;}
.y1d2{bottom:285.824000pt;}
.y25d{bottom:285.889333pt;}
.y279{bottom:286.313333pt;}
.y121{bottom:288.216000pt;}
.y230{bottom:292.184000pt;}
.y2d9{bottom:292.344000pt;}
.y14e{bottom:292.668000pt;}
.y101{bottom:292.942667pt;}
.y19b{bottom:293.839000pt;}
.y43{bottom:295.972000pt;}
.yc6{bottom:296.342200pt;}
.y86{bottom:296.528000pt;}
.y2a0{bottom:298.122667pt;}
.y10{bottom:298.605333pt;}
.y152{bottom:301.841400pt;}
.y25c{bottom:302.849333pt;}
.y120{bottom:305.176000pt;}
.y204{bottom:306.813333pt;}
.y2d8{bottom:307.686667pt;}
.y22f{bottom:308.921333pt;}
.y14d{bottom:309.405333pt;}
.yff{bottom:309.680000pt;}
.y151{bottom:311.081400pt;}
.y19a{bottom:311.815000pt;}
.y42{bottom:312.709333pt;}
.y85{bottom:313.265333pt;}
.y29f{bottom:313.465333pt;}
.yc5{bottom:314.318200pt;}
.y100{bottom:314.501333pt;}
.yf{bottom:314.505333pt;}
.y278{bottom:316.201333pt;}
.y1d1{bottom:317.517333pt;}
.y25b{bottom:319.969333pt;}
.y11f{bottom:322.296000pt;}
.y2d7{bottom:323.029333pt;}
.y203{bottom:323.550667pt;}
.y22e{bottom:325.658667pt;}
.y14c{bottom:326.142667pt;}
.yfe{bottom:326.416000pt;}
.y29e{bottom:328.808000pt;}
.y41{bottom:329.446667pt;}
.y199{bottom:329.791000pt;}
.y84{bottom:330.002667pt;}
.yc4{bottom:332.294200pt;}
.y277{bottom:332.938667pt;}
.y1d0{bottom:334.254667pt;}
.y189{bottom:334.258267pt;}
.y25a{bottom:337.089200pt;}
.y2d6{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y11e{bottom:339.415867pt;}
.y202{bottom:340.288000pt;}
.y22c{bottom:342.396000pt;}
.y14b{bottom:342.880000pt;}
.yfd{bottom:343.153333pt;}
.y29d{bottom:344.150667pt;}
.y40{bottom:346.184000pt;}
.y83{bottom:346.740000pt;}
.y22d{bottom:347.217333pt;}
.y198{bottom:347.766860pt;}
.y275{bottom:349.676000pt;}
.yc3{bottom:350.270200pt;}
.y1cf{bottom:350.992000pt;}
.y188{bottom:351.378267pt;}
.y2d5{bottom:353.714667pt;}
.y259{bottom:354.209333pt;}
.yd{bottom:354.277333pt;}
.y276{bottom:354.497333pt;}
.y11d{bottom:356.536000pt;}
.y201{bottom:357.025333pt;}
.y22a{bottom:359.133333pt;}
.y29c{bottom:359.493333pt;}
.y14a{bottom:359.617333pt;}
.yfc{bottom:359.890667pt;}
.y3f{bottom:362.921333pt;}
.y82{bottom:363.477333pt;}
.y22b{bottom:363.954667pt;}
.y274{bottom:366.413333pt;}
.y1ce{bottom:367.729333pt;}
.yc2{bottom:368.246200pt;}
.y187{bottom:368.338267pt;}
.y2d4{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.y11c{bottom:373.656000pt;}
.y200{bottom:373.762667pt;}
.y29b{bottom:374.836000pt;}
.y258{bottom:375.329333pt;}
.y229{bottom:375.869333pt;}
.y149{bottom:376.354667pt;}
.y3e{bottom:379.658667pt;}
.y81{bottom:380.214667pt;}
.yfb{bottom:380.613333pt;}
.y2d3{bottom:384.398667pt;}
.y1cd{bottom:384.466667pt;}
.y186{bottom:385.458267pt;}
.yc1{bottom:386.054200pt;}
.y273{bottom:387.134667pt;}
.y1ff{bottom:390.500000pt;}
.y11b{bottom:390.616000pt;}
.y148{bottom:393.092000pt;}
.y29a{bottom:394.162667pt;}
.yb{bottom:395.376000pt;}
.y3d{bottom:396.396000pt;}
.y228{bottom:396.592000pt;}
.y80{bottom:396.952000pt;}
.yfa{bottom:398.546667pt;}
.y197{bottom:398.671000pt;}
.y2d2{bottom:399.741333pt;}
.y1cb{bottom:401.204000pt;}
.y185{bottom:402.578133pt;}
.yc0{bottom:404.030200pt;}
.y1cc{bottom:406.025333pt;}
.y1fe{bottom:407.237333pt;}
.y11a{bottom:407.736000pt;}
.y196{bottom:407.911000pt;}
.y257{bottom:408.289333pt;}
.y147{bottom:409.829333pt;}
.y227{bottom:410.540000pt;}
.ya{bottom:411.276000pt;}
.y272{bottom:413.253333pt;}
.y7f{bottom:413.689333pt;}
.y2d1{bottom:415.084000pt;}
.yf9{bottom:416.478667pt;}
.y3c{bottom:417.118667pt;}
.y1c9{bottom:417.940000pt;}
.y184{bottom:419.698267pt;}
.ybf{bottom:422.006200pt;}
.y1ca{bottom:422.762667pt;}
.y1fd{bottom:423.974667pt;}
.y299{bottom:424.050667pt;}
.y119{bottom:424.856000pt;}
.y256{bottom:425.409333pt;}
.y146{bottom:426.566667pt;}
.y7e{bottom:430.426667pt;}
.y24c{bottom:433.190667pt;}
.y1c8{bottom:434.677333pt;}
.y9{bottom:435.146667pt;}
.y183{bottom:436.818267pt;}
.ybe{bottom:439.982200pt;}
.y226{bottom:440.428000pt;}
.y1fc{bottom:440.712000pt;}
.y118{bottom:441.976000pt;}
.y255{bottom:442.529333pt;}
.y145{bottom:443.304000pt;}
.y2d0{bottom:445.769333pt;}
.yf8{bottom:446.366667pt;}
.y7d{bottom:447.164000pt;}
.y298{bottom:447.642667pt;}
.y8{bottom:451.048000pt;}
.y1c6{bottom:451.414667pt;}
.y182{bottom:453.778267pt;}
.y1c7{bottom:456.237333pt;}
.y225{bottom:457.165333pt;}
.y1fb{bottom:457.449333pt;}
.ybd{bottom:457.958200pt;}
.y176{bottom:458.556000pt;}
.y117{bottom:459.096000pt;}
.y254{bottom:459.649333pt;}
.yf7{bottom:460.677333pt;}
.y2cf{bottom:461.112000pt;}
.yf6{bottom:463.104000pt;}
.y7c{bottom:463.901333pt;}
.y144{bottom:464.025333pt;}
.y7{bottom:466.948000pt;}
.y1c5{bottom:468.152000pt;}
.y181{bottom:470.898267pt;}
.y297{bottom:471.234667pt;}
.ya7{bottom:471.532000pt;}
.y1fa{bottom:471.760000pt;}
.y224{bottom:473.902667pt;}
.y1f9{bottom:474.186667pt;}
.y175{bottom:475.293333pt;}
.y116{bottom:476.056000pt;}
.y2ce{bottom:476.454667pt;}
.y253{bottom:476.769333pt;}
.yf5{bottom:477.414667pt;}
.yf4{bottom:479.841333pt;}
.ybc{bottom:479.966200pt;}
.y7b{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.y3b{bottom:483.918667pt;}
.y1c3{bottom:484.889333pt;}
.y180{bottom:488.018267pt;}
.ya6{bottom:488.269333pt;}
.y1f8{bottom:488.497333pt;}
.y1c4{bottom:489.712000pt;}
.y223{bottom:490.640000pt;}
.y1f7{bottom:490.924000pt;}
.y2cd{bottom:491.797333pt;}
.y174{bottom:492.030667pt;}
.y115{bottom:493.176000pt;}
.y252{bottom:493.729333pt;}
.y143{bottom:493.913333pt;}
.y296{bottom:494.825333pt;}
.yf3{bottom:496.578667pt;}
.y79{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.y1c2{bottom:501.626667pt;}
.y7a{bottom:502.197333pt;}
.ya5{bottom:505.006667pt;}
.y17f{bottom:505.138267pt;}
.y2cc{bottom:507.138667pt;}
.y222{bottom:507.377333pt;}
.y1f6{bottom:507.661333pt;}
.y173{bottom:508.768000pt;}
.y114{bottom:510.296000pt;}
.y142{bottom:510.650667pt;}
.y251{bottom:510.849333pt;}
.yf2{bottom:513.316000pt;}
.y78{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.yba{bottom:516.254200pt;}
.y3a{bottom:517.154667pt;}
.y1c1{bottom:518.364000pt;}
.y295{bottom:518.417333pt;}
.ya4{bottom:521.742667pt;}
.y17e{bottom:522.258267pt;}
.y2cb{bottom:522.481333pt;}
.y221{bottom:524.114667pt;}
.y1f5{bottom:524.398667pt;}
.y172{bottom:525.505333pt;}
.y140{bottom:527.388000pt;}
.y113{bottom:527.415867pt;}
.yf1{bottom:530.053333pt;}
.y1{bottom:530.549382pt;}
.y77{bottom:530.850667pt;}
.y250{bottom:531.969333pt;}
.y141{bottom:532.210667pt;}
.y294{bottom:534.038667pt;}
.y39{bottom:534.449333pt;}
.y1bf{bottom:535.101333pt;}
.yb7{bottom:535.238200pt;}
.y2ca{bottom:537.824000pt;}
.ya3{bottom:538.480000pt;}
.y1c0{bottom:539.924000pt;}
.y220{bottom:540.852000pt;}
.y171{bottom:542.242667pt;}
.y17d{bottom:543.218267pt;}
.y13f{bottom:544.125333pt;}
.y1f4{bottom:545.121333pt;}
.yf0{bottom:546.790667pt;}
.y76{bottom:547.588000pt;}
.y37{bottom:551.744000pt;}
.y1be{bottom:551.838667pt;}
.y2c9{bottom:553.166667pt;}
.y24f{bottom:553.249333pt;}
.yb6{bottom:554.894060pt;}
.ya2{bottom:555.217333pt;}
.y38{bottom:556.084000pt;}
.y21f{bottom:557.589333pt;}
.y293{bottom:557.630667pt;}
.y16f{bottom:558.980000pt;}
.y13d{bottom:560.862667pt;}
.yef{bottom:563.528000pt;}
.y170{bottom:563.801333pt;}
.y74{bottom:564.325333pt;}
.y17c{bottom:564.338267pt;}
.y13e{bottom:565.685333pt;}
.y2c8{bottom:568.509333pt;}
.y1bd{bottom:568.576000pt;}
.y35{bottom:569.040000pt;}
.y75{bottom:569.146667pt;}
.ya1{bottom:571.954667pt;}
.y292{bottom:573.252000pt;}
.y36{bottom:573.378667pt;}
.y21e{bottom:574.326667pt;}
.yb5{bottom:574.550200pt;}
.y16d{bottom:575.717333pt;}
.y112{bottom:575.896000pt;}
.y13c{bottom:577.600000pt;}
.yee{bottom:580.265333pt;}
.y16e{bottom:580.538667pt;}
.y72{bottom:581.062667pt;}
.y2c7{bottom:583.852000pt;}
.y111{bottom:584.696000pt;}
.y1f3{bottom:585.398667pt;}
.y73{bottom:585.884000pt;}
.y33{bottom:586.334667pt;}
.y2e8{bottom:588.192000pt;}
.ya0{bottom:588.692000pt;}
.y291{bottom:588.873333pt;}
.y34{bottom:590.674667pt;}
.y21d{bottom:591.064000pt;}
.y16c{bottom:592.454667pt;}
.y13b{bottom:594.337333pt;}
.y17b{bottom:596.978267pt;}
.yed{bottom:597.002667pt;}
.y70{bottom:597.800000pt;}
.y1bc{bottom:598.412000pt;}
.y2c6{bottom:599.194667pt;}
.y1f2{bottom:600.010667pt;}
.y24e{bottom:601.569333pt;}
.yb4{bottom:602.438200pt;}
.y71{bottom:602.621333pt;}
.y31{bottom:603.629333pt;}
.y290{bottom:604.494667pt;}
.y9f{bottom:605.429333pt;}
.y21c{bottom:607.801333pt;}
.y32{bottom:607.969333pt;}
.y16b{bottom:609.192000pt;}
.y24d{bottom:610.369333pt;}
.y13a{bottom:611.074667pt;}
.yec{bottom:613.740000pt;}
.y6e{bottom:614.537333pt;}
.y1f1{bottom:614.622667pt;}
.y17a{bottom:617.138267pt;}
.y195{bottom:618.349333pt;}
.yb3{bottom:618.566200pt;}
.y6f{bottom:619.358667pt;}
.y30{bottom:620.925333pt;}
.y9e{bottom:622.166667pt;}
.y21b{bottom:624.538667pt;}
.y16a{bottom:625.929333pt;}
.y138{bottom:627.812000pt;}
.y1f0{bottom:629.234667pt;}
.y2c5{bottom:629.878667pt;}
.yeb{bottom:630.477333pt;}
.y6d{bottom:631.274667pt;}
.y139{bottom:632.634667pt;}
.y2f{bottom:638.220000pt;}
.y9d{bottom:638.904000pt;}
.y28f{bottom:640.041333pt;}
.y169{bottom:642.666667pt;}
.y137{bottom:644.549333pt;}
.y2c4{bottom:645.221333pt;}
.y21a{bottom:645.260000pt;}
.ye9{bottom:647.214667pt;}
.y6c{bottom:648.012000pt;}
.y1ef{bottom:650.248000pt;}
.yb2{bottom:651.998200pt;}
.yea{bottom:652.036000pt;}
.y2d{bottom:655.516000pt;}
.y9c{bottom:655.641333pt;}
.y28e{bottom:656.778667pt;}
.y2e{bottom:659.854667pt;}
.y2c3{bottom:660.564000pt;}
.y136{bottom:661.286667pt;}
.y168{bottom:663.388000pt;}
.ye8{bottom:663.952000pt;}
.y6a{bottom:664.749333pt;}
.y6b{bottom:669.570667pt;}
.yb1{bottom:669.974200pt;}
.y219{bottom:672.306667pt;}
.y9b{bottom:672.378667pt;}
.y2c{bottom:672.810667pt;}
.y28d{bottom:673.516000pt;}
.y2c2{bottom:675.906667pt;}
.y135{bottom:678.024000pt;}
.ye7{bottom:680.689333pt;}
.y1ee{bottom:681.012000pt;}
.y167{bottom:681.321333pt;}
.y69{bottom:681.485333pt;}
.yb0{bottom:687.950200pt;}
.y9a{bottom:689.116000pt;}
.y217{bottom:689.402667pt;}
.y2b{bottom:690.105333pt;}
.y28c{bottom:690.253333pt;}
.y2c1{bottom:691.249333pt;}
.y24b{bottom:692.644000pt;}
.y218{bottom:693.742667pt;}
.ye6{bottom:697.426667pt;}
.y67{bottom:698.222667pt;}
.y68{bottom:703.045333pt;}
.y2e7{bottom:704.261333pt;}
.y99{bottom:705.853333pt;}
.yaf{bottom:705.926200pt;}
.y215{bottom:706.498667pt;}
.y2c0{bottom:706.592000pt;}
.y28b{bottom:706.990667pt;}
.y2a{bottom:707.401333pt;}
.y134{bottom:707.860000pt;}
.y166{bottom:708.368000pt;}
.y24a{bottom:709.381333pt;}
.y216{bottom:710.838667pt;}
.y1ed{bottom:713.993333pt;}
.y65{bottom:714.960000pt;}
.ye5{bottom:718.149333pt;}
.y66{bottom:719.782667pt;}
.y2bf{bottom:721.934667pt;}
.y214{bottom:723.594667pt;}
.y28a{bottom:723.728000pt;}
.yae{bottom:723.734200pt;}
.y29{bottom:724.696000pt;}
.y133{bottom:724.956000pt;}
.y249{bottom:726.118667pt;}
.y98{bottom:726.576000pt;}
.y1ec{bottom:728.304000pt;}
.y1eb{bottom:730.730667pt;}
.y150{bottom:730.961333pt;}
.y63{bottom:731.697333pt;}
.y64{bottom:736.520000pt;}
.y2be{bottom:737.277333pt;}
.y289{bottom:740.465333pt;}
.yad{bottom:741.710200pt;}
.y248{bottom:742.856000pt;}
.y20e{bottom:743.532000pt;}
.y110{bottom:744.893333pt;}
.y1ea{bottom:747.468000pt;}
.ye4{bottom:748.036000pt;}
.y62{bottom:748.434667pt;}
.y2bd{bottom:752.620000pt;}
.y288{bottom:757.202667pt;}
.y28{bottom:758.994667pt;}
.y247{bottom:759.593333pt;}
.yac{bottom:759.686200pt;}
.y1e9{bottom:761.778667pt;}
.y1e8{bottom:764.205333pt;}
.ye3{bottom:764.773333pt;}
.y61{bottom:765.172000pt;}
.y97{bottom:765.952000pt;}
.y2bc{bottom:767.961333pt;}
.y287{bottom:773.940000pt;}
.y246{bottom:776.330667pt;}
.y27{bottom:777.198667pt;}
.yab{bottom:777.662060pt;}
.y1e7{bottom:778.516000pt;}
.y96{bottom:780.564000pt;}
.y1e6{bottom:780.941333pt;}
.ye2{bottom:781.510667pt;}
.ybb{bottom:781.520867pt;}
.y60{bottom:781.909333pt;}
.y2bb{bottom:783.304000pt;}
.y26{bottom:787.686667pt;}
.y286{bottom:790.677333pt;}
.y245{bottom:793.068000pt;}
.y1e5{bottom:795.253333pt;}
.y1e4{bottom:797.678667pt;}
.y5f{bottom:798.646667pt;}
.yb8{bottom:800.504867pt;}
.y95{bottom:801.578667pt;}
.ye1{bottom:802.233333pt;}
.y25{bottom:805.890667pt;}
.y284{bottom:807.414667pt;}
.y285{bottom:812.236000pt;}
.y244{bottom:813.790667pt;}
.y2ba{bottom:813.989333pt;}
.y5e{bottom:815.384000pt;}
.y24{bottom:816.378667pt;}
.y1e3{bottom:818.401333pt;}
.y23{bottom:820.237333pt;}
.y94{bottom:822.592000pt;}
.y283{bottom:824.152000pt;}
.yaa{bottom:828.566200pt;}
.y2b9{bottom:829.332000pt;}
.y22{bottom:830.725333pt;}
.y5d{bottom:832.121333pt;}
.ya9{bottom:837.806200pt;}
.y282{bottom:840.889333pt;}
.y243{bottom:843.678667pt;}
.y2b8{bottom:844.674667pt;}
.y5c{bottom:848.858667pt;}
.y21{bottom:848.929333pt;}
.y93{bottom:853.354667pt;}
.y1e2{bottom:857.484000pt;}
.y281{bottom:857.625333pt;}
.y2b7{bottom:860.017333pt;}
.y242{bottom:860.416000pt;}
.y5b{bottom:865.596000pt;}
.y1e1{bottom:868.110667pt;}
.y92{bottom:870.450667pt;}
.y280{bottom:874.362667pt;}
.y2b6{bottom:875.360000pt;}
.y241{bottom:877.153333pt;}
.y194{bottom:878.348000pt;}
.y1e0{bottom:878.737333pt;}
.y5a{bottom:882.333333pt;}
.ye0{bottom:887.154667pt;}
.y20{bottom:888.641333pt;}
.y1df{bottom:889.364000pt;}
.y2b4{bottom:890.701333pt;}
.y2b5{bottom:890.702667pt;}
.y27f{bottom:891.100000pt;}
.y240{bottom:893.890667pt;}
.y193{bottom:895.085333pt;}
.y59{bottom:899.070667pt;}
.y179{bottom:902.258267pt;}
.y2b3{bottom:906.044000pt;}
.y1de{bottom:906.513333pt;}
.y23f{bottom:910.628000pt;}
.y178{bottom:911.058267pt;}
.y191{bottom:911.822667pt;}
.y58{bottom:915.808000pt;}
.y192{bottom:916.645333pt;}
.y1f{bottom:921.320000pt;}
.y2b2{bottom:921.386667pt;}
.y23e{bottom:927.364000pt;}
.y190{bottom:928.560000pt;}
.y57{bottom:932.545333pt;}
.y1dd{bottom:934.605333pt;}
.y2b1{bottom:936.729333pt;}
.y23d{bottom:944.101333pt;}
.y18f{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y56{bottom:949.282667pt;}
.y2b0{bottom:952.072000pt;}
.y18e{bottom:962.034667pt;}
.y23c{bottom:964.824000pt;}
.y55{bottom:966.020000pt;}
.y2af{bottom:967.414667pt;}
.y1d{bottom:971.530667pt;}
.y54{bottom:982.757333pt;}
.y1b{bottom:1010.186667pt;}
.y53{bottom:1038.548000pt;}
.h2a{height:-388.913000pt;}
.h29{height:-369.089000pt;}
.h1b{height:-345.101400pt;}
.h1c{height:-326.117400pt;}
.h2{height:22.673858pt;}
.h1f{height:24.760382pt;}
.hf{height:25.811318pt;}
.hb{height:27.672303pt;}
.h13{height:28.023859pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h2c{height:30.732706pt;}
.h5{height:32.284045pt;}
.h14{height:34.324478pt;}
.hd{height:34.574438pt;}
.h2f{height:34.734375pt;}
.h12{height:35.051460pt;}
.h15{height:36.873667pt;}
.hc{height:36.896250pt;}
.h2e{height:37.324219pt;}
.h27{height:38.231875pt;}
.h22{height:38.294211pt;}
.h10{height:38.415786pt;}
.h8{height:38.947124pt;}
.h1d{height:40.143469pt;}
.h17{height:40.208922pt;}
.h1a{height:40.742625pt;}
.h32{height:41.214688pt;}
.he{height:41.508454pt;}
.h24{height:42.867188pt;}
.h30{height:43.171318pt;}
.h19{height:45.010547pt;}
.h6{height:45.272024pt;}
.h11{height:46.120196pt;}
.h20{height:47.309193pt;}
.h1e{height:47.314526pt;}
.h23{height:47.439687pt;}
.ha{height:48.486756pt;}
.h18{height:49.811672pt;}
.h7{height:61.782479pt;}
.h9{height:69.148877pt;}
.h2b{height:87.443672pt;}
.h16{height:186.104800pt;}
.h28{height:238.984200pt;}
.h31{height:239.368000pt;}
.h21{height:251.148000pt;}
.h2d{height:252.509333pt;}
.h25{height:265.078800pt;}
.h26{height:317.206267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:-271.366200pt;}
.w5{width:3.863860pt;}
.wb{width:6.383860pt;}
.w2{width:66.991004pt;}
.w3{width:188.033730pt;}
.w9{width:275.380000pt;}
.wd{width:276.366667pt;}
.wc{width:281.600400pt;}
.w6{width:448.012000pt;}
.w7{width:523.290600pt;}
.w4{width:560.375200pt;}
.w8{width:629.178533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa2{left:-181.029800pt;}
.x77{left:-174.848800pt;}
.x95{left:-172.409333pt;}
.xe0{left:-167.264000pt;}
.x7c{left:-164.936800pt;}
.x7b{left:-156.536800pt;}
.x7a{left:-131.336800pt;}
.xab{left:-34.408133pt;}
.xd1{left:-1.614267pt;}
.x0{left:0.000000pt;}
.x96{left:1.510667pt;}
.xe1{left:6.656000pt;}
.x79{left:7.767200pt;}
.xb4{left:10.154200pt;}
.xb3{left:18.554200pt;}
.x2{left:26.021437pt;}
.x97{left:29.830667pt;}
.xa3{left:31.322200pt;}
.xb2{left:34.850200pt;}
.x78{left:37.503200pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.x6b{left:55.592000pt;}
.x6a{left:61.561333pt;}
.xc9{left:65.345333pt;}
.xaf{left:70.298200pt;}
.xbe{left:72.326667pt;}
.xc0{left:73.314667pt;}
.xca{left:74.288000pt;}
.xe3{left:76.309333pt;}
.xbf{left:79.850667pt;}
.xaa{left:82.072133pt;}
.xc8{left:109.638667pt;}
.x76{left:116.473333pt;}
.x69{left:127.374667pt;}
.x6c{left:129.353333pt;}
.xa1{left:135.016000pt;}
.xac{left:139.511867pt;}
.x68{left:160.765333pt;}
.xb1{left:162.698200pt;}
.xad{left:167.831867pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x87{left:229.514667pt;}
.xbd{left:236.577333pt;}
.x88{left:238.560000pt;}
.x5{left:239.924000pt;}
.xbc{left:244.264000pt;}
.xb7{left:245.378667pt;}
.x16{left:250.204000pt;}
.xb8{left:251.428000pt;}
.xa0{left:253.024000pt;}
.xcd{left:256.372000pt;}
.x2a{left:259.080000pt;}
.xd8{left:264.369333pt;}
.xa8{left:266.024000pt;}
.xb9{left:270.034667pt;}
.x2b{left:272.364000pt;}
.x1d{left:273.594667pt;}
.x7{left:274.953333pt;}
.xb5{left:276.498667pt;}
.x5d{left:277.644000pt;}
.xa9{left:279.308000pt;}
.x1e{left:280.236000pt;}
.xc4{left:281.280000pt;}
.xb6{left:282.548000pt;}
.x93{left:284.829333pt;}
.xce{left:286.325333pt;}
.x5e{left:290.928000pt;}
.x5f{left:294.182667pt;}
.x8c{left:298.806667pt;}
.x94{left:301.381333pt;}
.x10{left:302.461333pt;}
.x8d{left:304.857333pt;}
.x11{left:307.774667pt;}
.x4f{left:310.280000pt;}
.x2f{left:311.236000pt;}
.xa{left:315.450667pt;}
.x7e{left:316.493333pt;}
.xb{left:320.764000pt;}
.x50{left:323.564000pt;}
.x30{left:324.518667pt;}
.x73{left:329.850667pt;}
.x9a{left:331.362667pt;}
.x9c{left:333.968000pt;}
.x41{left:337.953333pt;}
.x9d{left:340.017333pt;}
.x84{left:342.828000pt;}
.xe2{left:347.277333pt;}
.x5b{left:349.564000pt;}
.x8b{left:351.050667pt;}
.x5c{left:355.276000pt;}
.x38{left:360.185333pt;}
.x43{left:368.349333pt;}
.xc1{left:372.477333pt;}
.x39{left:373.468000pt;}
.x44{left:381.633333pt;}
.x45{left:384.314667pt;}
.x46{left:390.365333pt;}
.x59{left:392.077333pt;}
.xbb{left:393.904000pt;}
.xd3{left:398.334667pt;}
.xc{left:401.341333pt;}
.x5a{left:405.361333pt;}
.xd{left:406.654667pt;}
.xd4{left:410.289333pt;}
.x2e{left:414.305333pt;}
.xa6{left:421.529333pt;}
.x2c{left:422.892000pt;}
.xa7{left:427.578667pt;}
.xe7{left:429.813333pt;}
.x85{left:432.378667pt;}
.x2d{left:436.176000pt;}
.x86{left:441.406667pt;}
.x91{left:443.504000pt;}
.x89{left:445.992000pt;}
.x92{left:449.554667pt;}
.x8a{left:452.041333pt;}
.x34{left:455.980000pt;}
.x82{left:462.466667pt;}
.x48{left:465.198667pt;}
.x28{left:467.434667pt;}
.x35{left:469.262667pt;}
.x49{left:470.910667pt;}
.x1f{left:478.905333pt;}
.x29{left:480.717333pt;}
.x20{left:485.546667pt;}
.x12{left:488.584000pt;}
.xc2{left:489.777333pt;}
.x31{left:492.168000pt;}
.x13{left:493.897333pt;}
.x17{left:495.401333pt;}
.xc3{left:498.984000pt;}
.x6f{left:500.318667pt;}
.x18{left:502.044000pt;}
.xe8{left:502.997333pt;}
.x19{left:505.430667pt;}
.x70{left:508.308000pt;}
.x60{left:510.566667pt;}
.x1a{left:512.072000pt;}
.xd7{left:513.973333pt;}
.x6d{left:515.865333pt;}
.x32{left:519.250667pt;}
.x8{left:521.782667pt;}
.x61{left:523.849333pt;}
.x33{left:524.962667pt;}
.x9{left:527.408000pt;}
.x6e{left:530.097333pt;}
.x8e{left:532.369333pt;}
.x27{left:533.308000pt;}
.x72{left:535.420000pt;}
.x1b{left:536.769333pt;}
.x3e{left:538.557333pt;}
.x23{left:540.946667pt;}
.x3f{left:541.848000pt;}
.x1c{left:543.410667pt;}
.x8f{left:545.653333pt;}
.x24{left:547.588000pt;}
.x83{left:550.120000pt;}
.x14{left:551.308000pt;}
.x64{left:554.029333pt;}
.x40{left:555.132000pt;}
.x15{left:556.621333pt;}
.x65{left:562.018667pt;}
.x90{left:563.505333pt;}
.xcb{left:570.609333pt;}
.x9e{left:577.736000pt;}
.x51{left:582.402667pt;}
.xd2{left:584.877333pt;}
.x52{left:588.114667pt;}
.x9f{left:591.020000pt;}
.xda{left:593.361333pt;}
.x98{left:595.225333pt;}
.xdb{left:599.073333pt;}
.x21{left:601.905333pt;}
.xc5{left:604.818667pt;}
.x22{left:608.546667pt;}
.xc6{left:610.530667pt;}
.xba{left:611.969333pt;}
.x47{left:613.717333pt;}
.xae{left:622.391867pt;}
.xcc{left:623.333333pt;}
.x57{left:624.517333pt;}
.x25{left:626.044000pt;}
.xdc{left:628.612000pt;}
.x58{left:630.229333pt;}
.x26{left:632.685333pt;}
.xa4{left:636.012000pt;}
.xd5{left:637.376000pt;}
.xc7{left:640.872000pt;}
.xa5{left:642.061333pt;}
.xd6{left:643.001333pt;}
.x36{left:644.649333pt;}
.x42{left:646.370667pt;}
.x3a{left:649.090667pt;}
.xe{left:651.297333pt;}
.x66{left:652.988000pt;}
.x4e{left:655.222667pt;}
.xf{left:656.921333pt;}
.x37{left:657.933333pt;}
.xd9{left:661.477333pt;}
.x3b{left:662.374667pt;}
.x3c{left:665.762667pt;}
.x67{left:666.882667pt;}
.x4a{left:671.268000pt;}
.xe5{left:676.566667pt;}
.x7f{left:677.610667pt;}
.x3d{left:679.045333pt;}
.xe6{left:680.010667pt;}
.x71{left:681.108000pt;}
.x4c{left:682.877333pt;}
.x4b{left:684.552000pt;}
.x4d{left:688.926667pt;}
.x56{left:691.129333pt;}
.x81{left:696.056000pt;}
.x99{left:697.624000pt;}
.x80{left:701.597333pt;}
.x74{left:707.314667pt;}
.x9b{left:711.492000pt;}
.x75{left:715.304000pt;}
.xe9{left:719.218667pt;}
.xe4{left:720.236000pt;}
.xdf{left:721.378667pt;}
.x62{left:722.330667pt;}
.xdd{left:723.801333pt;}
.xcf{left:726.842667pt;}
.x53{left:727.905333pt;}
.xde{left:729.513333pt;}
.x63{left:735.614667pt;}
.x55{left:739.000000pt;}
.xd0{left:740.126667pt;}
.x54{left:741.189333pt;}
.x7d{left:744.013333pt;}
.xb0{left:768.604867pt;}
}


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