
/* 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_267cb4e96b50.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_7eccb0cd2eb3.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_578cb9d7e0f0.woff")format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_7f35410a1ce6.woff")format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_0600b1a881f9.woff")format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_0455577b1308.woff")format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_a58f7836026f.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_1ae56354975e.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_79dcdc6f476d.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_c19895ee2434.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_e77cd5eddbcc.woff")format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_e5af51731c07.woff")format("woff");}.ffc{font-family:ffc;line-height:1.200195;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_43202ba5f2ca.woff")format("woff");}.ffd{font-family:ffd;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_51d6672d5e2d.woff")format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_6da5dfb17576.woff")format("woff");}.fff{font-family:fff;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_53446cad812d.woff")format("woff");}.ff10{font-family:ff10;line-height:1.200195;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_e137ebe5c6ee.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_651b6731d7ff.woff")format("woff");}.ff12{font-family:ff12;line-height:0.995117;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_a25c0e1ae4c7.woff")format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_51d6672d5e2d.woff")format("woff");}.ff14{font-family:ff14;line-height:1.284668;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_35db545ab376.woff")format("woff");}.ff15{font-family:ff15;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:ff16;src:url("fonts/font_0021_c801ee55693f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_85baae2908eb.woff")format("woff");}.ff17{font-family:ff17;line-height:0.670000;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_0393b50ba1db.woff")format("woff");}.ff18{font-family:ff18;line-height:1.014160;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_70054010119f.woff")format("woff");}.ff19{font-family:ff19;line-height:1.200195;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_6433cbdeac3d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_7ca86f9ce99b.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;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_2e830e71f616.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_aefe68411eeb.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.767090;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_0393b50ba1db.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.014160;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_70054010119f.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.200195;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_6433cbdeac3d.woff")format("woff");}.ff20{font-family:ff20;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url("fonts/font_0032_7ca86f9ce99b.woff")format("woff");}.ff21{font-family:ff21;line-height:1.284668;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:ff22;src:url("fonts/font_0033_2e830e71f616.woff")format("woff");}.ff22{font-family:ff22;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url("fonts/font_0034_aefe68411eeb.woff")format("woff");}.ff23{font-family:ff23;line-height:0.767090;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:ff24;src:url("fonts/font_0035_bd67fec8f9aa.woff")format("woff");}.ff24{font-family:ff24;line-height:1.014160;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:ff25;src:url("fonts/font_0036_05bdd28e06e1.woff")format("woff");}.ff25{font-family:ff25;line-height:1.200195;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:ff26;src:url("fonts/font_0037_4fea76ca7084.woff")format("woff");}.ff26{font-family:ff26;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url("fonts/font_0038_0e73759bc5bb.woff")format("woff");}.ff27{font-family:ff27;line-height:1.284668;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:ff28;src:url("fonts/font_0039_61e011b3b4b8.woff")format("woff");}.ff28{font-family:ff28;line-height:1.054688;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:ff29;src:url("fonts/font_0040_4282d67afee0.woff")format("woff");}.ff29{font-family:ff29;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_83f672add2f2.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.767090;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:ff2b;src:url("fonts/font_0042_c9455a9fd77c.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.014160;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:ff2c;src:url("fonts/font_0043_b4a8adff5286.woff")format("woff");}.ff2c{font-family:ff2c;line-height:1.200195;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:ff2d;src:url("fonts/font_0044_972d111c32ef.woff")format("woff");}.ff2d{font-family:ff2d;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_0e73759bc5bb.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.284668;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:ff2f;src:url("fonts/font_0046_61e011b3b4b8.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.054688;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:ff30;src:url("fonts/font_0047_0dd75eba1605.woff")format("woff");}.ff30{font-family:ff30;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url("fonts/font_0048_08165c41e813.woff")format("woff");}.ff31{font-family:ff31;line-height:0.765000;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:ff32;src:url("fonts/font_0049_0f3d6cdb26df.woff")format("woff");}.ff32{font-family:ff32;line-height:0.726000;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;}
.m2d{transform:matrix(0.000000,-0.221470,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.221470,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.221470,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249098,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249098,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249098,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.249865,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249865,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249865,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.256266,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.256266,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.256266,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.249094,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249094,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249094,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.249096,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249096,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249096,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.243887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243887,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m36{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);}
.m15{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);}
.m2f{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);}
.m2{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);}
.m1e{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);}
.m12{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);}
.m20{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);}
.m33{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);}
.me{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);}
.mf{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);}
.m37{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);}
.m7{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);}
.mb{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);}
.m9{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);}
.m23{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);}
.m11{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);}
.m34{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);}
.m21{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);}
.m28{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,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);}
.m31{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.mc{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);}
.m24{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1f{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);}
.m1a{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);}
.m1c{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);}
.m2a{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);}
.m10{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);}
.m5{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);}
.m1b{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);}
.m3{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);}
.m38{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);}
.m35{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);}
.m22{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);}
.m29{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);}
.m8{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);}
.m16{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);}
.m1d{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);}
.m1{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);}
.m2e{transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v9{vertical-align:-39.086209px;}
.v2{vertical-align:-19.524000px;}
.vb{vertical-align:-14.286247px;}
.v6{vertical-align:-12.306000px;}
.v7{vertical-align:-10.920000px;}
.vc{vertical-align:-8.018640px;}
.vd{vertical-align:-1.048320px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:8.809920px;}
.v8{vertical-align:10.920000px;}
.v3{vertical-align:13.608000px;}
.v5{vertical-align:15.012720px;}
.v4{vertical-align:16.533832px;}
.v10{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.vf{vertical-align:32.880000px;}
.va{vertical-align:38.550000px;}
.ls71{letter-spacing:-7.506000px;}
.ls40{letter-spacing:-5.276880px;}
.ls3f{letter-spacing:-3.635184px;}
.ls41{letter-spacing:-3.622015px;}
.ls33{letter-spacing:-0.819330px;}
.ls3e{letter-spacing:-0.817874px;}
.ls36{letter-spacing:-0.420840px;}
.ls3b{letter-spacing:-0.360720px;}
.ls5e{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.350518px;}
.ls28{letter-spacing:-0.324000px;}
.ls3a{letter-spacing:-0.240480px;}
.ls2c{letter-spacing:-0.233820px;}
.ls2e{letter-spacing:-0.203580px;}
.ls39{letter-spacing:-0.180360px;}
.ls38{letter-spacing:-0.120240px;}
.ls31{letter-spacing:-0.109536px;}
.ls35{letter-spacing:-0.095760px;}
.ls2b{letter-spacing:-0.090180px;}
.ls75{letter-spacing:-0.067367px;}
.ls5f{letter-spacing:-0.064765px;}
.ls37{letter-spacing:-0.060120px;}
.ls55{letter-spacing:-0.058856px;}
.ls30{letter-spacing:-0.054768px;}
.ls54{letter-spacing:-0.049725px;}
.ls29{letter-spacing:-0.037584px;}
.lse{letter-spacing:0.000000px;}
.ls7e{letter-spacing:0.000121px;}
.ls8{letter-spacing:0.000566px;}
.ls0{letter-spacing:0.000583px;}
.ls81{letter-spacing:0.000676px;}
.ls89{letter-spacing:0.000800px;}
.ls94{letter-spacing:0.000823px;}
.ls4c{letter-spacing:0.001148px;}
.ls8c{letter-spacing:0.001155px;}
.ls80{letter-spacing:0.001303px;}
.ls63{letter-spacing:0.001306px;}
.ls7{letter-spacing:0.002074px;}
.ls7d{letter-spacing:0.002220px;}
.ls2{letter-spacing:0.002725px;}
.ls87{letter-spacing:0.002841px;}
.ls7f{letter-spacing:0.003075px;}
.ls12{letter-spacing:0.003226px;}
.ls6{letter-spacing:0.003859px;}
.ls3{letter-spacing:0.004200px;}
.ls76{letter-spacing:0.004403px;}
.ls8a{letter-spacing:0.004800px;}
.ls8e{letter-spacing:0.005510px;}
.ls72{letter-spacing:0.016200px;}
.ls2d{letter-spacing:0.047952px;}
.ls50{letter-spacing:0.049725px;}
.ls3c{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.054768px;}
.ls3d{letter-spacing:0.060120px;}
.ls74{letter-spacing:0.067367px;}
.ls34{letter-spacing:0.095760px;}
.ls53{letter-spacing:0.099450px;}
.ls1f{letter-spacing:0.120240px;}
.ls73{letter-spacing:0.134735px;}
.ls23{letter-spacing:0.144288px;}
.ls27{letter-spacing:0.162000px;}
.ls5b{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.180360px;}
.ls2a{letter-spacing:0.185760px;}
.ls1b{letter-spacing:0.191520px;}
.ls60{letter-spacing:0.198288px;}
.ls61{letter-spacing:0.235872px;}
.ls62{letter-spacing:0.276048px;}
.ls5a{letter-spacing:0.298800px;}
.ls2f{letter-spacing:0.312120px;}
.ls16{letter-spacing:0.324000px;}
.ls58{letter-spacing:0.360000px;}
.ls77{letter-spacing:0.519981px;}
.ls59{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.542815px;}
.ls6c{letter-spacing:0.544394px;}
.lsc{letter-spacing:0.548815px;}
.ls18{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.717483px;}
.ls13{letter-spacing:0.746725px;}
.ls20{letter-spacing:0.918000px;}
.ls24{letter-spacing:1.142280px;}
.lsf{letter-spacing:1.275394px;}
.lsb{letter-spacing:1.861130px;}
.ls6a{letter-spacing:2.510424px;}
.ls78{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls43{letter-spacing:3.553200px;}
.ls19{letter-spacing:4.698000px;}
.ls22{letter-spacing:4.749480px;}
.ls21{letter-spacing:5.110200px;}
.ls1a{letter-spacing:7.257600px;}
.ls17{letter-spacing:7.290000px;}
.ls1d{letter-spacing:7.635240px;}
.ls25{letter-spacing:9.799560px;}
.ls6b{letter-spacing:11.297664px;}
.ls6d{letter-spacing:11.433236px;}
.ls68{letter-spacing:11.862249px;}
.ls66{letter-spacing:11.867289px;}
.lsd{letter-spacing:11.954850px;}
.ls6f{letter-spacing:12.530693px;}
.ls6e{letter-spacing:12.554570px;}
.ls85{letter-spacing:13.017747px;}
.ls92{letter-spacing:13.237408px;}
.ls86{letter-spacing:13.244762px;}
.ls8b{letter-spacing:13.317796px;}
.ls90{letter-spacing:13.430640px;}
.ls82{letter-spacing:13.448400px;}
.ls9{letter-spacing:13.449859px;}
.ls83{letter-spacing:13.454400px;}
.ls69{letter-spacing:13.810104px;}
.ls84{letter-spacing:14.085694px;}
.ls56{letter-spacing:14.094088px;}
.ls8d{letter-spacing:14.150400px;}
.ls65{letter-spacing:14.369544px;}
.ls67{letter-spacing:14.374584px;}
.ls10{letter-spacing:14.726756px;}
.ls8f{letter-spacing:14.803341px;}
.ls7b{letter-spacing:14.909109px;}
.ls44{letter-spacing:14.943986px;}
.ls45{letter-spacing:14.946612px;}
.ls70{letter-spacing:14.947200px;}
.ls91{letter-spacing:15.373929px;}
.ls5d{letter-spacing:15.615483px;}
.ls49{letter-spacing:15.663483px;}
.ls1e{letter-spacing:16.292520px;}
.ls57{letter-spacing:16.429847px;}
.ls52{letter-spacing:16.894553px;}
.ls4a{letter-spacing:17.929142px;}
.ls4f{letter-spacing:17.929200px;}
.ls47{letter-spacing:17.929474px;}
.ls46{letter-spacing:17.931986px;}
.ls4{letter-spacing:17.935200px;}
.ls93{letter-spacing:18.062165px;}
.ls7c{letter-spacing:18.126756px;}
.ls4b{letter-spacing:18.679474px;}
.ls48{letter-spacing:18.681986px;}
.ls4e{letter-spacing:18.727474px;}
.ls4d{letter-spacing:18.729986px;}
.ls15{letter-spacing:18.948865px;}
.ls88{letter-spacing:18.950400px;}
.ls7a{letter-spacing:19.312200px;}
.ls5{letter-spacing:70.236600px;}
.ls26{letter-spacing:70.452746px;}
.lsa{letter-spacing:72.353510px;}
.ls64{letter-spacing:85.604904px;}
.ls79{letter-spacing:248.803133px;}
.ls51{letter-spacing:319.727185px;}
.ls5c{letter-spacing:380.490328px;}
.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;}
}
.ws65{word-spacing:-32.400000px;}
.wsf8{word-spacing:-22.730900px;}
.wsf5{word-spacing:-22.595328px;}
.wsd6{word-spacing:-15.238800px;}
.ws77{word-spacing:-15.210360px;}
.ws75{word-spacing:-15.150240px;}
.ws6f{word-spacing:-15.030000px;}
.ws70{word-spacing:-14.969880px;}
.ws48{word-spacing:-14.943900px;}
.wsd5{word-spacing:-14.940000px;}
.ws74{word-spacing:-14.909760px;}
.ws71{word-spacing:-14.849640px;}
.ws76{word-spacing:-14.789520px;}
.ws79{word-spacing:-14.669280px;}
.ws78{word-spacing:-14.609160px;}
.ws80{word-spacing:-14.604900px;}
.ws7f{word-spacing:-14.254382px;}
.ws66{word-spacing:-13.758120px;}
.ws60{word-spacing:-13.631760px;}
.ws73{word-spacing:-13.500000px;}
.ws63{word-spacing:-13.493952px;}
.ws8{word-spacing:-13.449600px;}
.ws5d{word-spacing:-13.446000px;}
.ws5e{word-spacing:-13.408416px;}
.ws61{word-spacing:-13.355820px;}
.ws64{word-spacing:-13.242420px;}
.ws62{word-spacing:-13.212180px;}
.ws6b{word-spacing:-13.199100px;}
.ws6c{word-spacing:-13.171716px;}
.wsd8{word-spacing:-12.985394px;}
.wse2{word-spacing:-12.166200px;}
.wse6{word-spacing:-12.159816px;}
.wsc0{word-spacing:-12.150000px;}
.wsd3{word-spacing:-12.060000px;}
.wsc4{word-spacing:-11.958913px;}
.ws1e{word-spacing:-11.955150px;}
.wsc5{word-spacing:-11.934051px;}
.wsd4{word-spacing:-11.700000px;}
.wsdf{word-spacing:-11.502000px;}
.ws4{word-spacing:-11.357400px;}
.wsf6{word-spacing:-11.297664px;}
.ws7e{word-spacing:-10.982885px;}
.ws5b{word-spacing:-10.854000px;}
.ws5c{word-spacing:-10.530000px;}
.ws7d{word-spacing:-10.077300px;}
.ws6a{word-spacing:-9.096921px;}
.ws72{word-spacing:-9.000000px;}
.ws5f{word-spacing:-8.100000px;}
.wsc3{word-spacing:-7.972187px;}
.wse1{word-spacing:-7.452000px;}
.wse0{word-spacing:-6.804000px;}
.ws145{word-spacing:-3.287658px;}
.ws55{word-spacing:-3.108331px;}
.ws18{word-spacing:-2.630126px;}
.ws4f{word-spacing:-2.570351px;}
.ws16{word-spacing:-2.510575px;}
.wsb5{word-spacing:-2.391024px;}
.ws23{word-spacing:-2.211697px;}
.wsa{word-spacing:-1.908367px;}
.wsb3{word-spacing:-1.733492px;}
.ws2b{word-spacing:-1.673717px;}
.ws2a{word-spacing:-1.613941px;}
.wsfa{word-spacing:-1.434614px;}
.wsab{word-spacing:-1.322640px;}
.ws9{word-spacing:-1.322630px;}
.ws161{word-spacing:-1.129766px;}
.ws184{word-spacing:-1.075968px;}
.ws1a6{word-spacing:-1.022170px;}
.ws85{word-spacing:-0.956410px;}
.ws103{word-spacing:-0.896634px;}
.ws102{word-spacing:-0.836858px;}
.ws1a8{word-spacing:-0.806976px;}
.ws172{word-spacing:-0.753178px;}
.ws104{word-spacing:-0.657532px;}
.ws148{word-spacing:-0.597756px;}
.ws167{word-spacing:-0.591782px;}
.ws168{word-spacing:-0.430387px;}
.ws8d{word-spacing:-0.420840px;}
.ws52{word-spacing:-0.418429px;}
.ws18e{word-spacing:-0.376589px;}
.ws50{word-spacing:-0.358654px;}
.ws1ac{word-spacing:-0.322790px;}
.ws53{word-spacing:-0.298878px;}
.wsa7{word-spacing:-0.240480px;}
.ws11{word-spacing:-0.239102px;}
.ws16c{word-spacing:-0.221096px;}
.wsca{word-spacing:-0.215194px;}
.ws19b{word-spacing:-0.204234px;}
.ws197{word-spacing:-0.203665px;}
.ws88{word-spacing:-0.191520px;}
.wsf9{word-spacing:-0.191282px;}
.ws15{word-spacing:-0.179327px;}
.wscc{word-spacing:-0.161395px;}
.ws169{word-spacing:-0.133348px;}
.ws9e{word-spacing:-0.120240px;}
.ws46{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.ws87{word-spacing:-0.095760px;}
.wsa8{word-spacing:-0.060120px;}
.ws2{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.wsd9{word-spacing:-0.050725px;}
.ws1f{word-spacing:-0.047821px;}
.wsef{word-spacing:-0.045191px;}
.ws1b{word-spacing:-0.008578px;}
.ws179{word-spacing:-0.006701px;}
.ws116{word-spacing:-0.004954px;}
.ws5{word-spacing:-0.004192px;}
.ws6{word-spacing:-0.003283px;}
.ws3{word-spacing:-0.002392px;}
.ws15e{word-spacing:-0.000394px;}
.ws0{word-spacing:0.000000px;}
.ws1af{word-spacing:0.001978px;}
.ws195{word-spacing:0.033883px;}
.ws193{word-spacing:0.039696px;}
.ws170{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws92{word-spacing:0.060120px;}
.ws112{word-spacing:0.074330px;}
.ws89{word-spacing:0.095760px;}
.ws182{word-spacing:0.107597px;}
.ws9d{word-spacing:0.108000px;}
.ws45{word-spacing:0.119551px;}
.ws8c{word-spacing:0.120240px;}
.wsf3{word-spacing:0.135572px;}
.ws43{word-spacing:0.151367px;}
.ws155{word-spacing:0.151589px;}
.ws6d{word-spacing:0.161395px;}
.wsa2{word-spacing:0.162000px;}
.ws39{word-spacing:0.174895px;}
.wsd{word-spacing:0.179327px;}
.ws99{word-spacing:0.180360px;}
.ws156{word-spacing:0.215194px;}
.ws42{word-spacing:0.239102px;}
.wsa3{word-spacing:0.240480px;}
.ws4d{word-spacing:0.258744px;}
.ws14f{word-spacing:0.268992px;}
.ws17{word-spacing:0.298878px;}
.ws98{word-spacing:0.300600px;}
.ws2e{word-spacing:0.418429px;}
.ws163{word-spacing:0.430387px;}
.ws2c{word-spacing:0.437268px;}
.ws106{word-spacing:0.478205px;}
.ws187{word-spacing:0.484186px;}
.ws185{word-spacing:0.507926px;}
.ws3d{word-spacing:0.537980px;}
.ws165{word-spacing:0.645581px;}
.ws59{word-spacing:0.657532px;}
.wsd1{word-spacing:0.669859px;}
.ws189{word-spacing:0.699379px;}
.ws11b{word-spacing:0.717307px;}
.ws17f{word-spacing:0.753178px;}
.wsb8{word-spacing:0.777083px;}
.ws17e{word-spacing:0.806976px;}
.ws9c{word-spacing:0.864000px;}
.wsb6{word-spacing:0.896634px;}
.ws9b{word-spacing:0.918000px;}
.ws8e{word-spacing:0.961920px;}
.ws8f{word-spacing:1.022040px;}
.ws152{word-spacing:1.022170px;}
.ws146{word-spacing:1.075961px;}
.ws128{word-spacing:1.104974px;}
.ws154{word-spacing:1.129766px;}
.wsb7{word-spacing:1.135736px;}
.wse8{word-spacing:1.183565px;}
.ws83{word-spacing:1.195512px;}
.wsac{word-spacing:1.202400px;}
.wsaa{word-spacing:1.262520px;}
.ws10a{word-spacing:1.315063px;}
.ws190{word-spacing:1.344960px;}
.ws12{word-spacing:1.374839px;}
.ws138{word-spacing:1.434614px;}
.wse7{word-spacing:1.452557px;}
.wsd2{word-spacing:1.494390px;}
.ws1a2{word-spacing:1.506355px;}
.ws3b{word-spacing:1.554166px;}
.ws27{word-spacing:1.733492px;}
.wsa1{word-spacing:1.743480px;}
.ws38{word-spacing:1.793268px;}
.ws1a5{word-spacing:1.936742px;}
.wsc9{word-spacing:1.972595px;}
.ws151{word-spacing:1.990541px;}
.ws126{word-spacing:2.032370px;}
.ws19{word-spacing:2.092146px;}
.ws58{word-spacing:2.271473px;}
.ws81{word-spacing:2.331248px;}
.wsde{word-spacing:2.391024px;}
.ws107{word-spacing:2.450800px;}
.wse{word-spacing:2.510575px;}
.ws19e{word-spacing:2.528525px;}
.ws13{word-spacing:2.689902px;}
.ws14{word-spacing:2.749678px;}
.wsec{word-spacing:2.797517px;}
.ws33{word-spacing:2.869229px;}
.ws31{word-spacing:2.929004px;}
.ws11f{word-spacing:3.048556px;}
.ws12e{word-spacing:3.108331px;}
.ws120{word-spacing:3.168107px;}
.ws140{word-spacing:3.179539px;}
.ws196{word-spacing:3.223306px;}
.ws150{word-spacing:3.224822px;}
.ws18a{word-spacing:3.227510px;}
.ws198{word-spacing:3.227530px;}
.ws17b{word-spacing:3.227904px;}
.ws17a{word-spacing:3.229306px;}
.ws11c{word-spacing:3.347434px;}
.ws13a{word-spacing:3.407209px;}
.ws94{word-spacing:3.486960px;}
.ws16f{word-spacing:3.550694px;}
.ws1a{word-spacing:3.583475px;}
.ws20{word-spacing:3.586536px;}
.wsae{word-spacing:3.635184px;}
.ws1ad{word-spacing:3.658291px;}
.ws6e{word-spacing:3.825638px;}
.ws18c{word-spacing:3.873485px;}
.wsfc{word-spacing:3.885414px;}
.ws5a{word-spacing:3.945190px;}
.wsb2{word-spacing:4.004965px;}
.ws36{word-spacing:4.124516px;}
.ws34{word-spacing:4.184292px;}
.wsbc{word-spacing:4.244068px;}
.ws133{word-spacing:4.303843px;}
.ws173{word-spacing:4.349842px;}
.ws175{word-spacing:4.357670px;}
.wsfe{word-spacing:4.363619px;}
.ws14b{word-spacing:4.423394px;}
.ws125{word-spacing:4.483170px;}
.ws1a9{word-spacing:4.626662px;}
.wsa5{word-spacing:4.749480px;}
.wsa6{word-spacing:4.929840px;}
.ws135{word-spacing:5.021150px;}
.wsff{word-spacing:5.379804px;}
.ws1a1{word-spacing:5.379840px;}
.wsa4{word-spacing:5.470920px;}
.ws176{word-spacing:5.487437px;}
.ws109{word-spacing:5.499355px;}
.wsc{word-spacing:5.678682px;}
.ws12a{word-spacing:5.858009px;}
.ws12d{word-spacing:5.917784px;}
.ws14e{word-spacing:5.977560px;}
.ws136{word-spacing:6.156887px;}
.ws137{word-spacing:6.216662px;}
.ws29{word-spacing:6.276438px;}
.ws12c{word-spacing:6.336214px;}
.wsa0{word-spacing:6.432840px;}
.ws19c{word-spacing:6.455808px;}
.wsba{word-spacing:6.571202px;}
.wsbb{word-spacing:6.573845px;}
.ws9f{word-spacing:6.733440px;}
.ws13b{word-spacing:6.754643px;}
.wseb{word-spacing:6.832397px;}
.ws127{word-spacing:7.173072px;}
.wsea{word-spacing:7.208986px;}
.ws13e{word-spacing:7.232848px;}
.ws123{word-spacing:7.591501px;}
.ws4a{word-spacing:7.681745px;}
.ws4c{word-spacing:7.711052px;}
.ws121{word-spacing:7.830604px;}
.ws91{word-spacing:7.995960px;}
.ws110{word-spacing:8.009930px;}
.ws93{word-spacing:8.056080px;}
.ws22{word-spacing:8.069706px;}
.ws119{word-spacing:8.129482px;}
.ws10b{word-spacing:8.249033px;}
.ws8b{word-spacing:8.356680px;}
.ws8a{word-spacing:8.416800px;}
.ws10{word-spacing:9.384769px;}
.ws19f{word-spacing:9.414720px;}
.wsad{word-spacing:9.739440px;}
.ws124{word-spacing:9.743423px;}
.ws15c{word-spacing:9.791309px;}
.wsa9{word-spacing:10.160280px;}
.ws3f{word-spacing:10.580281px;}
.wsdc{word-spacing:10.598285px;}
.ws178{word-spacing:11.082470px;}
.ws40{word-spacing:11.297588px;}
.ws1d{word-spacing:11.909237px;}
.wsb4{word-spacing:13.135723px;}
.ws1ab{word-spacing:13.150641px;}
.ws16d{word-spacing:13.180608px;}
.wscb{word-spacing:13.191769px;}
.ws17d{word-spacing:13.230766px;}
.ws16a{word-spacing:13.234406px;}
.wscd{word-spacing:13.241637px;}
.wsda{word-spacing:13.275933px;}
.wsdb{word-spacing:13.276594px;}
.ws183{word-spacing:13.311539px;}
.ws18f{word-spacing:13.325836px;}
.ws157{word-spacing:13.342003px;}
.ws17c{word-spacing:13.386595px;}
.wse9{word-spacing:13.388304px;}
.ws15d{word-spacing:13.388602px;}
.ws1a7{word-spacing:13.390742px;}
.ws15b{word-spacing:13.392499px;}
.ws160{word-spacing:13.392595px;}
.ws15f{word-spacing:13.392710px;}
.ws18b{word-spacing:13.394179px;}
.wsce{word-spacing:13.394304px;}
.ws15a{word-spacing:13.394496px;}
.ws159{word-spacing:13.395120px;}
.ws158{word-spacing:13.395802px;}
.wsc7{word-spacing:13.410819px;}
.ws171{word-spacing:13.416912px;}
.ws194{word-spacing:13.449600px;}
.ws181{word-spacing:13.503398px;}
.ws177{word-spacing:13.610995px;}
.ws130{word-spacing:13.688612px;}
.ws162{word-spacing:13.859113px;}
.ws86{word-spacing:13.876539px;}
.ws188{word-spacing:13.879987px;}
.ws186{word-spacing:13.905315px;}
.ws101{word-spacing:13.998988px;}
.ws180{word-spacing:14.148979px;}
.ws105{word-spacing:14.213274px;}
.ws13d{word-spacing:14.226593px;}
.ws149{word-spacing:14.237764px;}
.ws90{word-spacing:14.308560px;}
.ws199{word-spacing:14.420272px;}
.ws1a0{word-spacing:14.525568px;}
.ws153{word-spacing:14.540657px;}
.ws11e{word-spacing:14.561533px;}
.wsb1{word-spacing:14.605417px;}
.wsbd{word-spacing:14.622211px;}
.ws51{word-spacing:14.657244px;}
.ws2f{word-spacing:14.658045px;}
.ws24{word-spacing:14.691522px;}
.ws147{word-spacing:14.703866px;}
.ws30{word-spacing:14.710683px;}
.ws191{word-spacing:14.726893px;}
.ws47{word-spacing:14.748078px;}
.ws10d{word-spacing:14.760553px;}
.ws49{word-spacing:14.779180px;}
.ws13f{word-spacing:14.802302px;}
.ws111{word-spacing:14.814474px;}
.ws14d{word-spacing:14.852841px;}
.ws12f{word-spacing:14.867415px;}
.ws10e{word-spacing:14.879886px;}
.ws56{word-spacing:14.884124px;}
.ws1c{word-spacing:14.885886px;}
.ws1a3{word-spacing:14.895767px;}
.ws1a4{word-spacing:14.902157px;}
.ws113{word-spacing:14.946090px;}
.ws114{word-spacing:14.952102px;}
.ws14c{word-spacing:14.976951px;}
.ws14a{word-spacing:14.983562px;}
.ws143{word-spacing:14.985880px;}
.ws118{word-spacing:15.003676px;}
.wsb0{word-spacing:15.016091px;}
.ws44{word-spacing:15.024973px;}
.wsfb{word-spacing:15.026442px;}
.wsbe{word-spacing:15.034533px;}
.ws3a{word-spacing:15.085062px;}
.ws25{word-spacing:15.085640px;}
.ws115{word-spacing:15.114403px;}
.wsb9{word-spacing:15.115503px;}
.ws142{word-spacing:15.124456px;}
.ws41{word-spacing:15.149768px;}
.ws4e{word-spacing:15.166021px;}
.ws2d{word-spacing:15.320357px;}
.ws3e{word-spacing:15.455651px;}
.ws144{word-spacing:15.779180px;}
.ws9a{word-spacing:15.931800px;}
.ws129{word-spacing:16.026239px;}
.ws10f{word-spacing:16.032121px;}
.wsbf{word-spacing:16.073298px;}
.ws84{word-spacing:16.079180px;}
.ws11a{word-spacing:16.196827px;}
.wsed{word-spacing:16.211245px;}
.ws97{word-spacing:16.292520px;}
.wsaf{word-spacing:16.299696px;}
.ws16b{word-spacing:16.408512px;}
.ws96{word-spacing:16.472880px;}
.ws3c{word-spacing:16.473298px;}
.ws95{word-spacing:16.533000px;}
.ws166{word-spacing:16.623706px;}
.ws28{word-spacing:16.673298px;}
.ws37{word-spacing:16.679180px;}
.ws54{word-spacing:16.718385px;}
.ws11d{word-spacing:16.856719px;}
.wsdd{word-spacing:16.885062px;}
.ws16e{word-spacing:16.946496px;}
.ws57{word-spacing:16.976270px;}
.ws1ae{word-spacing:17.054093px;}
.ws82{word-spacing:17.200086px;}
.ws18d{word-spacing:17.269286px;}
.ws108{word-spacing:17.361533px;}
.wsf{word-spacing:17.443886px;}
.ws174{word-spacing:17.753472px;}
.ws32{word-spacing:17.802710px;}
.ws134{word-spacing:17.985062px;}
.ws1aa{word-spacing:18.016636px;}
.ws141{word-spacing:18.085062px;}
.ws164{word-spacing:18.452851px;}
.ws35{word-spacing:19.032121px;}
.wsfd{word-spacing:19.290945px;}
.ws19d{word-spacing:19.851610px;}
.ws19a{word-spacing:20.228198px;}
.ws100{word-spacing:20.314474px;}
.ws139{word-spacing:20.390945px;}
.wsb{word-spacing:20.585640px;}
.ws12b{word-spacing:20.761533px;}
.ws192{word-spacing:21.142771px;}
.ws13c{word-spacing:21.685640px;}
.ws4b{word-spacing:22.600738px;}
.ws122{word-spacing:22.738004px;}
.ws21{word-spacing:22.979276px;}
.ws10c{word-spacing:23.173298px;}
.wsc8{word-spacing:26.196827px;}
.ws132{word-spacing:28.615052px;}
.ws117{word-spacing:29.932699px;}
.ws67{word-spacing:41.480883px;}
.ws131{word-spacing:45.236337px;}
.ws69{word-spacing:45.818513px;}
.ws7a{word-spacing:46.123004px;}
.ws68{word-spacing:49.778243px;}
.ws7c{word-spacing:51.003659px;}
.ws7b{word-spacing:55.064000px;}
.wsc2{word-spacing:56.612154px;}
.wsc1{word-spacing:57.109406px;}
.wsd7{word-spacing:59.912343px;}
.wsf7{word-spacing:77.480928px;}
.wsc6{word-spacing:81.167014px;}
.wsf0{word-spacing:84.145001px;}
.wsf2{word-spacing:131.685572px;}
.wsf1{word-spacing:137.153641px;}
.wsf4{word-spacing:137.658133px;}
.wse4{word-spacing:139.969249px;}
.wse5{word-spacing:140.319559px;}
.wse3{word-spacing:140.427347px;}
.wsee{word-spacing:242.835135px;}
.wsd0{word-spacing:299.818483px;}
.wscf{word-spacing:706.615747px;}
._33{margin-left:-827.630973px;}
._1{margin-left:-11.943245px;}
._35{margin-left:-9.894924px;}
._7{margin-left:-7.908365px;}
._5{margin-left:-6.635092px;}
._15{margin-left:-5.499355px;}
._4{margin-left:-4.423394px;}
._23{margin-left:-3.335451px;}
._0{margin-left:-1.957066px;}
._9{width:1.091170px;}
._2{width:2.999270px;}
._1c{width:4.265581px;}
._1d{width:5.387916px;}
._19{width:6.940881px;}
._17{width:8.113603px;}
._1e{width:9.548287px;}
._1a{width:10.642753px;}
._1b{width:12.375672px;}
._11{width:13.951129px;}
._6{width:15.830339px;}
._8{width:17.524669px;}
._b{width:19.336236px;}
._16{width:20.682358px;}
._a{width:21.787036px;}
._28{width:23.161874px;}
._12{width:24.328669px;}
._d{width:25.344854px;}
._c{width:27.018571px;}
._13{width:28.616983px;}
._3c{width:30.202207px;}
._14{width:31.441966px;}
._31{width:32.637478px;}
._62{width:33.697909px;}
._10{width:34.830375px;}
._60{width:37.570135px;}
._61{width:39.592781px;}
._5f{width:40.647408px;}
._5e{width:41.884454px;}
._3d{width:43.979312px;}
._34{width:48.848947px;}
._3{width:54.389069px;}
._38{width:56.479087px;}
._20{width:59.040835px;}
._37{width:61.142958px;}
._21{width:63.466093px;}
._1f{width:66.433426px;}
._22{width:69.413246px;}
._27{width:70.462025px;}
._25{width:73.687537px;}
._26{width:77.141719px;}
._64{width:88.767360px;}
._3b{width:95.759000px;}
._3a{width:107.101855px;}
._32{width:118.219752px;}
._29{width:134.559395px;}
._2a{width:144.175904px;}
._2b{width:145.267606px;}
._2c{width:153.325440px;}
._3e{width:200.072645px;}
._30{width:222.886771px;}
._46{width:252.153101px;}
._39{width:254.287821px;}
._5a{width:262.428595px;}
._53{width:266.086886px;}
._56{width:267.820354px;}
._36{width:276.250480px;}
._41{width:281.957414px;}
._59{width:286.649801px;}
._43{width:299.226701px;}
._5d{width:305.682509px;}
._2f{width:313.321882px;}
._50{width:321.068851px;}
._47{width:335.648218px;}
._5c{width:351.680141px;}
._49{width:361.256256px;}
._51{width:368.572838px;}
._2e{width:371.477952px;}
._52{width:386.971891px;}
._58{width:389.231424px;}
._5b{width:394.246601px;}
._45{width:407.146291px;}
._48{width:408.168461px;}
._55{width:411.019776px;}
._4b{width:420.595891px;}
._4f{width:434.045491px;}
._4d{width:437.811379px;}
._42{width:450.400205px;}
._40{width:454.219891px;}
._57{width:456.479424px;}
._44{width:463.688410px;}
._54{width:477.353203px;}
._4a{width:484.669786px;}
._2d{width:487.951488px;}
._4e{width:498.119386px;}
._3f{width:511.138598px;}
._4c{width:518.293786px;}
._e{width:1101.976406px;}
._18{width:1510.272000px;}
._24{width:1678.806343px;}
._63{width:2103.768529px;}
._f{width:2127.678529px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:transparent;}
.fc1{color:rgb(12,11,11);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs29{font-size:27.216000px;}
.fs2a{font-size:29.808000px;}
.fs1c{font-size:31.888748px;}
.fs30{font-size:32.336352px;}
.fsd{font-size:32.400000px;}
.fs2f{font-size:32.471087px;}
.fs32{font-size:35.147952px;}
.fs34{font-size:35.865600px;}
.fs15{font-size:36.000000px;}
.fs11{font-size:36.387684px;}
.fs18{font-size:40.309200px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs1e{font-size:42.376565px;}
.fs1d{font-size:42.494278px;}
.fsa{font-size:43.416000px;}
.fs36{font-size:43.600200px;}
.fs31{font-size:45.190656px;}
.fs2{font-size:45.429600px;}
.fs1f{font-size:45.933810px;}
.fs28{font-size:46.008000px;}
.fs33{font-size:47.088720px;}
.fs5{font-size:47.236800px;}
.fs7{font-size:47.337600px;}
.fs1a{font-size:47.736204px;}
.fs9{font-size:47.820600px;}
.fs1b{font-size:47.833123px;}
.fs19{font-size:47.835654px;}
.fs12{font-size:47.880000px;}
.fs22{font-size:48.240000px;}
.fs2b{font-size:48.504529px;}
.fsb{font-size:48.600000px;}
.fs2c{font-size:48.639263px;}
.fs35{font-size:49.829400px;}
.fs27{font-size:50.725220px;}
.fs25{font-size:51.812048px;}
.fs24{font-size:51.941578px;}
.fsf{font-size:52.686865px;}
.fse{font-size:52.796401px;}
.fs10{font-size:52.877572px;}
.fsc{font-size:53.784000px;}
.fs4{font-size:53.798400px;}
.fs2d{font-size:53.923111px;}
.fs13{font-size:54.000000px;}
.fs2e{font-size:54.028656px;}
.fs20{font-size:55.257171px;}
.fs21{font-size:56.058000px;}
.fs16{font-size:58.419600px;}
.fs17{font-size:58.632000px;}
.fs26{font-size:58.632631px;}
.fs23{font-size:59.760000px;}
.fs0{font-size:59.775600px;}
.fs14{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs1{font-size:107.596800px;}
.y1f4{bottom:-642.639150px;}
.y21c{bottom:-612.183150px;}
.y21b{bottom:-594.039150px;}
.y21a{bottom:-575.733150px;}
.y219{bottom:-557.594550px;}
.y218{bottom:-539.450550px;}
.y217{bottom:-521.144550px;}
.y216{bottom:-503.000550px;}
.y129{bottom:-498.687300px;}
.y215{bottom:-484.694550px;}
.y13f{bottom:-471.795300px;}
.y76{bottom:-471.064950px;}
.y214{bottom:-466.550550px;}
.y13e{bottom:-454.299300px;}
.y213{bottom:-448.244550px;}
.y98{bottom:-439.474950px;}
.y1a4{bottom:-432.514500px;}
.y13d{bottom:-432.267300px;}
.y212{bottom:-430.100550px;}
.y15a{bottom:-428.101087px;}
.y97{bottom:-421.168950px;}
.y152{bottom:-412.592559px;}
.y211{bottom:-411.956550px;}
.y96{bottom:-403.024950px;}
.y210{bottom:-393.610050px;}
.y1c9{bottom:-386.974500px;}
.y95{bottom:-384.886350px;}
.y153{bottom:-382.252115px;}
.y20f{bottom:-375.466050px;}
.y94{bottom:-366.580350px;}
.y154{bottom:-351.911672px;}
.y20e{bottom:-349.060050px;}
.y1c8{bottom:-348.640500px;}
.y93{bottom:-348.436350px;}
.y15b{bottom:-339.169274px;}
.y92{bottom:-330.130350px;}
.y1c7{bottom:-328.480500px;}
.y155{bottom:-321.571228px;}
.y20d{bottom:-314.716050px;}
.y91{bottom:-311.986350px;}
.y1c6{bottom:-308.140500px;}
.y90{bottom:-293.680350px;}
.y156{bottom:-291.231962px;}
.y1c5{bottom:-287.980500px;}
.y20c{bottom:-280.210050px;}
.y1c4{bottom:-267.640500px;}
.y8f{bottom:-267.436350px;}
.y15e{bottom:-262.860269px;}
.y20b{bottom:-262.066050px;}
.y157{bottom:-260.920946px;}
.yaf{bottom:-256.942500px;}
.y1c3{bottom:-247.480500px;}
.y20a{bottom:-243.922050px;}
.y8e{bottom:-231.593850px;}
.y158{bottom:-230.574617px;}
.y1c2{bottom:-227.320500px;}
.yd4{bottom:-221.833320px;}
.y15c{bottom:-217.359323px;}
.y8d{bottom:-212.801850px;}
.y209{bottom:-209.902050px;}
.y1c1{bottom:-206.980500px;}
.y15d{bottom:-206.476496px;}
.y8b{bottom:-203.243850px;}
.yd3{bottom:-201.587910px;}
.y159{bottom:-200.240059px;}
.y8c{bottom:-193.847850px;}
.y208{bottom:-189.004050px;}
.y1c0{bottom:-186.820500px;}
.yd2{bottom:-181.313160px;}
.y207{bottom:-173.776050px;}
.y13c{bottom:-170.278200px;}
.y8a{bottom:-166.631850px;}
.y1bf{bottom:-166.435500px;}
.yd1{bottom:-161.067750px;}
.y206{bottom:-158.197050px;}
.y13b{bottom:-151.972200px;}
.y1be{bottom:-146.275500px;}
.y205{bottom:-142.645050px;}
.yd0{bottom:-140.822340px;}
.y13a{bottom:-133.828200px;}
.y89{bottom:-132.449850px;}
.y204{bottom:-126.607050px;}
.y1bd{bottom:-125.935500px;}
.ycf{bottom:-120.576930px;}
.y139{bottom:-115.522200px;}
.y88{bottom:-114.305850px;}
.y203{bottom:-101.335050px;}
.yce{bottom:-100.421700px;}
.y138{bottom:-97.378200px;}
.y1bc{bottom:-96.775500px;}
.y87{bottom:-95.999850px;}
.y202{bottom:-83.839050px;}
.ycd{bottom:-80.176290px;}
.y137{bottom:-70.972200px;}
.y86{bottom:-69.755850px;}
.y201{bottom:-66.343050px;}
.y169{bottom:-62.050725px;}
.ycc{bottom:-59.930880px;}
.y1bb{bottom:-59.155500px;}
.y1ba{bottom:-39.535500px;}
.y136{bottom:-37.114200px;}
.y85{bottom:-35.735850px;}
.y17f{bottom:-35.158725px;}
.y200{bottom:-32.485050px;}
.ycb{bottom:-30.682500px;}
.y1b9{bottom:-20.095500px;}
.y135{bottom:-19.591200px;}
.y84{bottom:-18.239850px;}
.y17e{bottom:-17.662725px;}
.y1ff{bottom:-14.989050px;}
.y0{bottom:0.000000px;}
.y14e{bottom:0.910240px;}
.ya3{bottom:1.684227px;}
.y134{bottom:2.440800px;}
.ye2{bottom:2.787000px;}
.y1e{bottom:3.425340px;}
.y83{bottom:3.792150px;}
.y18a{bottom:3.971813px;}
.y17d{bottom:4.369275px;}
.y1b8{bottom:4.384500px;}
.yc6{bottom:4.500000px;}
.y1ab{bottom:4.680000px;}
.y1d4{bottom:4.703671px;}
.y22c{bottom:8.240093px;}
.y1d{bottom:14.151273px;}
.y1a8{bottom:15.120000px;}
.ya0{bottom:15.896974px;}
.ydd{bottom:18.525900px;}
.y1fe{bottom:18.706950px;}
.y14c{bottom:19.084536px;}
.y182{bottom:19.480341px;}
.y1cb{bottom:23.679834px;}
.y22f{bottom:27.688002px;}
.y9a{bottom:31.396333px;}
.y141{bottom:33.131909px;}
.y232{bottom:33.724121px;}
.yc9{bottom:33.847500px;}
.yd6{bottom:35.683500px;}
.yc4{bottom:40.507500px;}
.y22a{bottom:40.745133px;}
.ya1{bottom:44.622817px;}
.y1fd{bottom:44.950950px;}
.y1da{bottom:45.951986px;}
.y183{bottom:49.820785px;}
.y1cc{bottom:50.136361px;}
.yde{bottom:50.320800px;}
.yc7{bottom:51.037500px;}
.y142{bottom:54.066223px;}
.y21f{bottom:58.496443px;}
.y2f{bottom:63.780000px;}
.y14d{bottom:66.920190px;}
.ya2{bottom:67.433710px;}
.y9b{bottom:68.282615px;}
.y21e{bottom:68.769972px;}
.y143{bottom:75.000537px;}
.ye0{bottom:75.575100px;}
.yd7{bottom:76.534200px;}
.y1cd{bottom:76.592887px;}
.y1fc{bottom:79.335450px;}
.y184{bottom:80.161228px;}
.yc3{bottom:81.277500px;}
.y220{bottom:84.533944px;}
.y1d5{bottom:90.064020px;}
.y18b{bottom:92.903626px;}
.y144{bottom:95.909989px;}
.y1ce{bottom:103.017032px;}
.y9c{bottom:105.196281px;}
.yef{bottom:108.612000px;}
.y1e0{bottom:109.181289px;}
.y185{bottom:110.501672px;}
.y221{bottom:110.571444px;}
.y256{bottom:112.228500px;}
.y22d{bottom:112.491415px;}
.y1fb{bottom:113.679450px;}
.y65{bottom:114.156000px;}
.y2ae{bottom:116.607000px;}
.y145{bottom:116.844303px;}
.yd8{bottom:117.384750px;}
.y2cd{bottom:117.669000px;}
.yc2{bottom:119.268300px;}
.y288{bottom:121.675500px;}
.y333{bottom:128.325000px;}
.yee{bottom:128.875500px;}
.y1cf{bottom:129.470968px;}
.y1f1{bottom:130.393500px;}
.y190{bottom:131.959500px;}
.y1df{bottom:132.238208px;}
.y255{bottom:132.492000px;}
.y64{bottom:134.419500px;}
.y222{bottom:136.614334px;}
.y2ad{bottom:136.870500px;}
.y146{bottom:137.778618px;}
.y300{bottom:138.606000px;}
.yc1{bottom:139.513710px;}
.y186{bottom:140.840938px;}
.y22b{bottom:141.491734px;}
.y2cc{bottom:141.832500px;}
.y287{bottom:141.939000px;}
.y9d{bottom:142.079277px;}
.y21d{bottom:147.056281px;}
.y332{bottom:147.691500px;}
.y1fa{bottom:148.185450px;}
.yec{bottom:149.139000px;}
.y1dd{bottom:149.689130px;}
.y1f0{bottom:150.657000px;}
.y18f{bottom:151.192500px;}
.y254{bottom:152.757000px;}
.yed{bottom:154.564500px;}
.y63{bottom:154.683000px;}
.y11d{bottom:154.923000px;}
.y1d0{bottom:155.933972px;}
.y2cb{bottom:157.030500px;}
.y2ac{bottom:157.134000px;}
.y2ff{bottom:157.974000px;}
.yd9{bottom:158.235450px;}
.y147{bottom:158.712932px;}
.yc0{bottom:159.759120px;}
.y286{bottom:162.202500px;}
.y223{bottom:162.685518px;}
.y331{bottom:167.059500px;}
.y18e{bottom:169.212631px;}
.yeb{bottom:169.404000px;}
.y1de{bottom:169.463828px;}
.y1ef{bottom:170.922000px;}
.y187{bottom:171.151954px;}
.y2ca{bottom:172.228500px;}
.y253{bottom:173.020500px;}
.y167{bottom:173.622675px;}
.y62{bottom:174.948000px;}
.y11c{bottom:175.186500px;}
.y2fe{bottom:177.340500px;}
.y2ab{bottom:177.399000px;}
.y181{bottom:178.186350px;}
.ya5{bottom:178.719103px;}
.y9e{bottom:178.971036px;}
.y148{bottom:179.647246px;}
.y151{bottom:181.984331px;}
.y1d1{bottom:182.358116px;}
.y285{bottom:182.467500px;}
.y1f9{bottom:182.529450px;}
.y1dc{bottom:182.963428px;}
.y330{bottom:186.427500px;}
.y2c9{bottom:187.426500px;}
.y1d8{bottom:188.316501px;}
.y224{bottom:188.716282px;}
.ybf{bottom:189.007500px;}
.yea{bottom:189.667500px;}
.y1ed{bottom:191.185500px;}
.y252{bottom:193.284000px;}
.y1db{bottom:193.831826px;}
.y61{bottom:195.211500px;}
.y11a{bottom:195.451500px;}
.y1ee{bottom:196.611000px;}
.y2fd{bottom:196.708500px;}
.y2aa{bottom:197.662500px;}
.ye4{bottom:198.819600px;}
.yda{bottom:199.086000px;}
.ydc{bottom:199.086150px;}
.y149{bottom:200.581560px;}
.y11b{bottom:200.875500px;}
.y188{bottom:201.498283px;}
.y150{bottom:202.471118px;}
.y284{bottom:202.731000px;}
.ya4{bottom:205.588308px;}
.y32f{bottom:205.794000px;}
.y2e{bottom:206.571000px;}
.y1d7{bottom:208.069845px;}
.y1d2{bottom:208.808166px;}
.ye9{bottom:209.932500px;}
.y1ec{bottom:211.450500px;}
.y2c8{bottom:211.591500px;}
.y251{bottom:213.549000px;}
.ye1{bottom:214.321650px;}
.y18c{bottom:214.713577px;}
.y225{bottom:214.760519px;}
.y60{bottom:215.476500px;}
.y119{bottom:215.715000px;}
.y9f{bottom:215.884702px;}
.y2fc{bottom:216.076500px;}
.y1f8{bottom:217.035450px;}
.y1d9{bottom:217.820063px;}
.y2a9{bottom:217.927500px;}
.y14a{bottom:221.515875px;}
.y14f{bottom:222.938016px;}
.y283{bottom:222.996000px;}
.y32e{bottom:225.162000px;}
.y18d{bottom:225.596404px;}
.ybe{bottom:226.713000px;}
.y1d6{bottom:227.823188px;}
.ye3{bottom:228.555750px;}
.ydf{bottom:229.230750px;}
.ye8{bottom:230.196000px;}
.y1eb{bottom:231.714000px;}
.y189{bottom:231.832841px;}
.y250{bottom:233.812500px;}
.y1d3{bottom:235.271170px;}
.y2fb{bottom:235.443000px;}
.y5f{bottom:235.740000px;}
.y2c7{bottom:235.756500px;}
.y118{bottom:235.978500px;}
.y2a8{bottom:238.191000px;}
.ydb{bottom:239.936700px;}
.y226{bottom:240.791283px;}
.y230{bottom:241.842214px;}
.y14b{bottom:242.450189px;}
.y282{bottom:243.259500px;}
.y32d{bottom:244.528500px;}
.y2d{bottom:244.768500px;}
.ybd{bottom:246.247500px;}
.ye7{bottom:250.459500px;}
.y82{bottom:250.909650px;}
.y2c6{bottom:250.954500px;}
.y1f7{bottom:251.379450px;}
.y1ea{bottom:251.977500px;}
.y24f{bottom:254.077500px;}
.y2fa{bottom:254.811000px;}
.y5e{bottom:256.003500px;}
.y117{bottom:256.243500px;}
.y2a7{bottom:258.454500px;}
.y281{bottom:263.523000px;}
.y32c{bottom:263.896500px;}
.y2c{bottom:265.032000px;}
.y2c5{bottom:266.152500px;}
.y17c{bottom:266.358375px;}
.y227{bottom:266.835520px;}
.y81{bottom:269.215650px;}
.ye6{bottom:270.724500px;}
.ybc{bottom:270.743790px;}
.y1e9{bottom:272.242500px;}
.y2f9{bottom:274.177500px;}
.y24e{bottom:274.341000px;}
.y1b7{bottom:274.414500px;}
.y133{bottom:275.937300px;}
.y5d{bottom:276.268500px;}
.y116{bottom:276.507000px;}
.y2a6{bottom:278.719500px;}
.y32b{bottom:283.264500px;}
.y280{bottom:283.788000px;}
.y17b{bottom:284.664375px;}
.y2b{bottom:285.297000px;}
.y1f6{bottom:285.885450px;}
.y80{bottom:287.359650px;}
.y1e8{bottom:292.506000px;}
.y228{bottom:292.866284px;}
.y2f8{bottom:293.545500px;}
.y115{bottom:293.695500px;}
.y132{bottom:294.243300px;}
.y24d{bottom:294.604500px;}
.y1b6{bottom:294.754500px;}
.y5c{bottom:296.532000px;}
.y114{bottom:296.772000px;}
.y2a5{bottom:298.983000px;}
.ye5{bottom:299.955000px;}
.y2c4{bottom:302.241000px;}
.y32a{bottom:302.631000px;}
.y17a{bottom:302.808375px;}
.y27f{bottom:304.051500px;}
.y2a{bottom:305.560500px;}
.y7f{bottom:305.665650px;}
.y131{bottom:312.387300px;}
.y1e7{bottom:312.771000px;}
.y2f7{bottom:312.913500px;}
.y113{bottom:313.959000px;}
.y112{bottom:314.305500px;}
.y24c{bottom:314.869500px;}
.y1b5{bottom:314.914500px;}
.y5b{bottom:316.797000px;}
.y111{bottom:317.035500px;}
.y229{bottom:318.910521px;}
.y2a4{bottom:319.248000px;}
.y1f5{bottom:320.256450px;}
.y179{bottom:321.114375px;}
.y329{bottom:321.999000px;}
.y2c3{bottom:322.504500px;}
.y7e{bottom:323.809650px;}
.y29{bottom:325.825500px;}
.y130{bottom:330.531300px;}
.y2f6{bottom:332.280000px;}
.y1e6{bottom:333.034500px;}
.y27e{bottom:333.282000px;}
.yad{bottom:334.017000px;}
.y10f{bottom:334.234500px;}
.y110{bottom:334.570500px;}
.y24b{bottom:335.133000px;}
.y1b4{bottom:335.254500px;}
.y5a{bottom:337.060500px;}
.y10e{bottom:337.299000px;}
.yca{bottom:338.614500px;}
.y178{bottom:339.258375px;}
.y2a3{bottom:339.511500px;}
.y328{bottom:341.367000px;}
.y7d{bottom:341.953650px;}
.y2c2{bottom:342.769500px;}
.y28{bottom:346.089000px;}
.y12f{bottom:348.837300px;}
.y2f5{bottom:351.648000px;}
.y1e5{bottom:353.298000px;}
.y1f3{bottom:353.790450px;}
.y10d{bottom:354.487500px;}
.y24a{bottom:355.398000px;}
.y1b3{bottom:355.414500px;}
.y59{bottom:357.324000px;}
.y10c{bottom:357.564000px;}
.yc8{bottom:359.584500px;}
.y2a2{bottom:359.775000px;}
.y7c{bottom:360.259650px;}
.y327{bottom:360.733500px;}
.y2c1{bottom:363.033000px;}
.y177{bottom:365.664375px;}
.y27{bottom:366.352500px;}
.y12e{bottom:366.981300px;}
.y27d{bottom:368.101500px;}
.y2f4{bottom:371.014500px;}
.y249{bottom:375.661500px;}
.y1b2{bottom:375.799500px;}
.y58{bottom:377.589000px;}
.y7b{bottom:378.403650px;}
.y2a1{bottom:380.040000px;}
.y326{bottom:380.101500px;}
.yc5{bottom:380.554500px;}
.y1e4{bottom:382.528500px;}
.y2c0{bottom:383.298000px;}
.y12d{bottom:385.287300px;}
.y25{bottom:386.617500px;}
.y27c{bottom:388.366500px;}
.y2f3{bottom:390.382500px;}
.y26{bottom:392.041500px;}
.y10b{bottom:394.714500px;}
.y248{bottom:395.925000px;}
.y1b1{bottom:395.959500px;}
.y57{bottom:397.852500px;}
.y325{bottom:399.468000px;}
.y176{bottom:399.522375px;}
.y2a0{bottom:400.303500px;}
.y12c{bottom:403.431300px;}
.y2bf{bottom:403.561500px;}
.y7a{bottom:404.809650px;}
.y24{bottom:406.881000px;}
.y27b{bottom:408.630000px;}
.y2f2{bottom:409.750500px;}
.y1e3{bottom:414.151500px;}
.y1b0{bottom:416.119500px;}
.y175{bottom:417.045375px;}
.y56{bottom:418.117500px;}
.y324{bottom:418.836000px;}
.yac{bottom:419.842500px;}
.y29f{bottom:420.568500px;}
.y2be{bottom:423.825000px;}
.y247{bottom:425.155500px;}
.y23{bottom:427.146000px;}
.y27a{bottom:428.893500px;}
.y2f1{bottom:429.117000px;}
.y12b{bottom:429.837300px;}
.y10a{bottom:431.865000px;}
.y1e2{bottom:433.384500px;}
.y1af{bottom:436.459500px;}
.y323{bottom:438.204000px;}
.y55{bottom:438.381000px;}
.y174{bottom:439.077375px;}
.y79{bottom:439.153650px;}
.y29e{bottom:440.832000px;}
.y2bd{bottom:444.090000px;}
.y166{bottom:445.857000px;}
.y22{bottom:447.409500px;}
.y2f0{bottom:448.485000px;}
.y279{bottom:449.158500px;}
.y109{bottom:452.130000px;}
.y1e1{bottom:452.617500px;}
.yab{bottom:456.189000px;}
.y322{bottom:457.570500px;}
.y54{bottom:458.644500px;}
.y246{bottom:459.975000px;}
.y29d{bottom:461.095500px;}
.y12a{bottom:464.208300px;}
.y2bc{bottom:464.353500px;}
.y1ae{bottom:465.619500px;}
.y165{bottom:466.122000px;}
.y21{bottom:467.673000px;}
.y2ef{bottom:467.851500px;}
.y108{bottom:472.393500px;}
.y78{bottom:473.659650px;}
.y1a2{bottom:475.047000px;}
.yaa{bottom:476.454000px;}
.y321{bottom:476.938500px;}
.y53{bottom:478.909500px;}
.y1ca{bottom:480.286500px;}
.y29c{bottom:481.360500px;}
.y2bb{bottom:484.618500px;}
.y164{bottom:486.385500px;}
.y2ee{bottom:487.219500px;}
.y20{bottom:487.938000px;}
.y77{bottom:491.830650px;}
.y107{bottom:492.658500px;}
.y245{bottom:494.794500px;}
.y278{bottom:496.129500px;}
.y320{bottom:496.305000px;}
.ya9{bottom:496.717500px;}
.y128{bottom:497.742300px;}
.y52{bottom:499.173000px;}
.y29b{bottom:501.624000px;}
.y2ba{bottom:504.882000px;}
.y2ed{bottom:506.587500px;}
.y163{bottom:506.650500px;}
.y1f{bottom:508.201500px;}
.y277{bottom:512.643000px;}
.y244{bottom:515.059500px;}
.y31f{bottom:515.673000px;}
.y51{bottom:519.438000px;}
.y106{bottom:521.889000px;}
.y2b9{bottom:525.145500px;}
.y75{bottom:525.364650px;}
.ya8{bottom:525.948000px;}
.y2ec{bottom:525.954000px;}
.y162{bottom:526.914000px;}
.y276{bottom:529.156500px;}
.y31e{bottom:535.041000px;}
.y243{bottom:535.323000px;}
.y50{bottom:539.701500px;}
.y29a{bottom:542.152500px;}
.y1c{bottom:543.634464px;}
.y1b{bottom:544.027500px;}
.ybb{bottom:545.236680px;}
.y2eb{bottom:545.322000px;}
.y2b8{bottom:545.410500px;}
.y275{bottom:545.668500px;}
.y31d{bottom:554.407500px;}
.y161{bottom:556.144500px;}
.y105{bottom:556.708500px;}
.ya7{bottom:556.813500px;}
.y4f{bottom:559.965000px;}
.y274{bottom:562.182000px;}
.y299{bottom:562.416000px;}
.y2ea{bottom:564.688500px;}
.yba{bottom:565.482090px;}
.y2b7{bottom:565.674000px;}
.y31c{bottom:573.775500px;}
.ya6{bottom:576.046500px;}
.y104{bottom:576.972000px;}
.y242{bottom:578.451000px;}
.y273{bottom:578.695500px;}
.y4d{bottom:580.230000px;}
.y298{bottom:582.681000px;}
.y1a{bottom:583.399500px;}
.y2e9{bottom:584.056500px;}
.y4e{bottom:585.654000px;}
.yb9{bottom:585.754320px;}
.y2b6{bottom:585.939000px;}
.y160{bottom:587.767500px;}
.y241{bottom:590.547000px;}
.y240{bottom:592.648500px;}
.y31b{bottom:593.142000px;}
.y272{bottom:595.209000px;}
.y23f{bottom:596.988000px;}
.y103{bottom:597.235500px;}
.y74{bottom:598.476000px;}
.y4c{bottom:600.493500px;}
.y19{bottom:601.557000px;}
.y297{bottom:602.944500px;}
.y99{bottom:603.024150px;}
.y2e8{bottom:603.424500px;}
.yd5{bottom:605.484000px;}
.yb8{bottom:605.909550px;}
.y2b5{bottom:606.202500px;}
.y15f{bottom:607.000500px;}
.y23e{bottom:611.017140px;}
.y271{bottom:611.721000px;}
.y31a{bottom:612.510000px;}
.y23b{bottom:612.957540px;}
.y23d{bottom:613.219620px;}
.y180{bottom:613.483050px;}
.y23c{bottom:617.058840px;}
.y102{bottom:617.500500px;}
.y1a6{bottom:618.079500px;}
.y18{bottom:619.713000px;}
.y4a{bottom:620.758500px;}
.y2e7{bottom:622.791000px;}
.yb7{bottom:626.154960px;}
.y4b{bottom:626.182500px;}
.y2b4{bottom:626.466000px;}
.y23a{bottom:627.552120px;}
.y270{bottom:628.234500px;}
.y127{bottom:629.430000px;}
.y319{bottom:631.878000px;}
.y296{bottom:632.175000px;}
.y140{bottom:632.653800px;}
.y1a5{bottom:637.549500px;}
.y101{bottom:637.764000px;}
.y49{bottom:641.022000px;}
.y239{bottom:641.685540px;}
.y2e6{bottom:642.159000px;}
.y17{bottom:642.753000px;}
.y26f{bottom:644.748000px;}
.yb6{bottom:646.400370px;}
.y2b3{bottom:646.731000px;}
.y318{bottom:651.244500px;}
.y16{bottom:656.028000px;}
.y100{bottom:658.029000px;}
.y26e{bottom:661.261500px;}
.y47{bottom:661.285500px;}
.y2e5{bottom:661.527000px;}
.y238{bottom:661.706940px;}
.yb5{bottom:666.645780px;}
.y48{bottom:666.711000px;}
.y295{bottom:666.994500px;}
.y317{bottom:670.612500px;}
.y1a3{bottom:674.629500px;}
.y26d{bottom:677.773500px;}
.yff{bottom:678.292500px;}
.y15{bottom:679.066500px;}
.y2e4{bottom:680.893500px;}
.y46{bottom:681.550500px;}
.yb4{bottom:686.891190px;}
.y294{bottom:687.258000px;}
.y316{bottom:689.979000px;}
.y237{bottom:690.789000px;}
.y14{bottom:692.341500px;}
.y26c{bottom:694.287000px;}
.yfd{bottom:698.556000px;}
.y2e3{bottom:700.261500px;}
.y45{bottom:701.814000px;}
.yfe{bottom:703.981500px;}
.y293{bottom:707.523000px;}
.y315{bottom:709.347000px;}
.y236{bottom:710.022000px;}
.y26b{bottom:710.800500px;}
.y173{bottom:712.573875px;}
.y13{bottom:715.380000px;}
.yb3{bottom:716.139570px;}
.yfc{bottom:718.821000px;}
.y2e2{bottom:719.628000px;}
.y44{bottom:722.077500px;}
.y26a{bottom:727.314000px;}
.y292{bottom:727.786500px;}
.y12{bottom:728.655000px;}
.y314{bottom:728.715000px;}
.y235{bottom:729.255000px;}
.y172{bottom:730.879875px;}
.y2e1{bottom:738.996000px;}
.yfb{bottom:739.084500px;}
.y43{bottom:742.342500px;}
.y269{bottom:743.826000px;}
.y291{bottom:748.051500px;}
.y313{bottom:748.081500px;}
.y171{bottom:749.023875px;}
.y1a1{bottom:751.296000px;}
.y11{bottom:751.695000px;}
.yb2{bottom:754.300740px;}
.y2e0{bottom:758.364000px;}
.y234{bottom:758.949000px;}
.yfa{bottom:759.349500px;}
.y42{bottom:762.606000px;}
.y10{bottom:764.970000px;}
.y170{bottom:767.167875px;}
.y312{bottom:767.449500px;}
.y267{bottom:767.467500px;}
.y290{bottom:768.315000px;}
.y1a0{bottom:771.561000px;}
.y336{bottom:773.314500px;}
.y266{bottom:775.686000px;}
.y2b2{bottom:777.282000px;}
.y2df{bottom:777.730500px;}
.y233{bottom:778.180500px;}
.yf9{bottom:779.613000px;}
.y41{bottom:782.871000px;}
.yf{bottom:783.126000px;}
.y268{bottom:783.906000px;}
.y16f{bottom:785.473875px;}
.y311{bottom:786.816000px;}
.y28f{bottom:788.578500px;}
.y19f{bottom:791.824500px;}
.yb1{bottom:792.552090px;}
.y335{bottom:792.681000px;}
.y2de{bottom:797.098500px;}
.yf8{bottom:799.876500px;}
.y1f2{bottom:800.610000px;}
.ye{bottom:801.283500px;}
.y40{bottom:803.134500px;}
.y16e{bottom:803.617875px;}
.y310{bottom:806.184000px;}
.y28e{bottom:808.843500px;}
.y334{bottom:812.049000px;}
.y19e{bottom:812.089500px;}
.y2b1{bottom:812.101500px;}
.yb0{bottom:812.797500px;}
.y265{bottom:815.524500px;}
.y2dd{bottom:816.465000px;}
.yf7{bottom:820.141500px;}
.y16d{bottom:821.923875px;}
.y3f{bottom:823.398000px;}
.yd{bottom:824.322000px;}
.y30f{bottom:825.552000px;}
.y28d{bottom:829.107000px;}
.y19d{bottom:832.353000px;}
.y2b0{bottom:832.365000px;}
.y2dc{bottom:835.833000px;}
.yc{bottom:837.597000px;}
.y16c{bottom:840.067875px;}
.yf6{bottom:840.405000px;}
.y3e{bottom:843.663000px;}
.y30e{bottom:844.918500px;}
.y28c{bottom:849.372000px;}
.yae{bottom:850.147500px;}
.y19c{bottom:852.616500px;}
.y264{bottom:852.628500px;}
.y73{bottom:855.079500px;}
.y2db{bottom:855.201000px;}
.yb{bottom:855.754500px;}
.yf5{bottom:860.668500px;}
.y3d{bottom:863.926500px;}
.y30d{bottom:864.286500px;}
.y16b{bottom:866.473875px;}
.y28b{bottom:869.635500px;}
.y19b{bottom:872.881500px;}
.y263{bottom:872.893500px;}
.y2da{bottom:874.567500px;}
.y72{bottom:875.344500px;}
.ya{bottom:878.793000px;}
.yf4{bottom:880.933500px;}
.y30c{bottom:883.653000px;}
.y3c{bottom:884.191500px;}
.y22e{bottom:888.815467px;}
.y28a{bottom:889.899000px;}
.y9{bottom:892.068000px;}
.y19a{bottom:893.145000px;}
.y262{bottom:893.157000px;}
.y2d9{bottom:893.935500px;}
.y70{bottom:895.608000px;}
.y16a{bottom:900.844875px;}
.y71{bottom:901.033500px;}
.y30b{bottom:903.021000px;}
.y3b{bottom:904.455000px;}
.yf3{bottom:910.164000px;}
.y8{bottom:910.225500px;}
.y2d8{bottom:913.302000px;}
.y199{bottom:913.410000px;}
.y260{bottom:913.422000px;}
.y6f{bottom:915.873000px;}
.y261{bottom:918.846000px;}
.y289{bottom:919.129500px;}
.y30a{bottom:922.389000px;}
.y3a{bottom:924.718500px;}
.y126{bottom:930.427500px;}
.y2d7{bottom:932.670000px;}
.y7{bottom:933.264000px;}
.y25f{bottom:933.685500px;}
.y168{bottom:934.378875px;}
.y6d{bottom:936.136500px;}
.y6e{bottom:941.560500px;}
.y309{bottom:941.755500px;}
.y198{bottom:942.640500px;}
.y39{bottom:944.983500px;}
.y125{bottom:950.692500px;}
.y2d6{bottom:952.038000px;}
.y25d{bottom:953.949000px;}
.y6{bottom:955.506000px;}
.y6b{bottom:956.400000px;}
.y25e{bottom:959.374500px;}
.y308{bottom:961.123500px;}
.y6c{bottom:961.825500px;}
.y38{bottom:965.247000px;}
.y123{bottom:970.956000px;}
.y2d5{bottom:971.404500px;}
.y25c{bottom:974.214000px;}
.y5{bottom:975.769500px;}
.y1ad{bottom:975.946500px;}
.y124{bottom:976.380000px;}
.y6a{bottom:976.665000px;}
.y307{bottom:980.490000px;}
.y37{bottom:985.512000px;}
.y197{bottom:986.233500px;}
.y2d4{bottom:990.772500px;}
.y122{bottom:991.219500px;}
.y25b{bottom:994.477500px;}
.y4{bottom:996.034500px;}
.y1ac{bottom:996.106500px;}
.y69{bottom:996.928500px;}
.y306{bottom:999.858000px;}
.y2af{bottom:999.903000px;}
.y196{bottom:1002.747000px;}
.y36{bottom:1005.775500px;}
.y2d3{bottom:1010.139000px;}
.y121{bottom:1011.484500px;}
.y231{bottom:1012.096463px;}
.y25a{bottom:1014.742500px;}
.y1aa{bottom:1016.266500px;}
.y305{bottom:1019.226000px;}
.y195{bottom:1019.260500px;}
.y35{bottom:1026.039000px;}
.y68{bottom:1026.159000px;}
.y2d2{bottom:1029.507000px;}
.yf2{bottom:1031.464500px;}
.y120{bottom:1031.748000px;}
.y259{bottom:1035.006000px;}
.y1a7{bottom:1037.326500px;}
.y304{bottom:1038.592500px;}
.y3{bottom:1040.848500px;}
.y194{bottom:1042.975500px;}
.y34{bottom:1046.304000px;}
.y2d1{bottom:1048.875000px;}
.yf1{bottom:1051.728000px;}
.y11f{bottom:1052.013000px;}
.y258{bottom:1055.269500px;}
.y193{bottom:1057.053000px;}
.y303{bottom:1057.960500px;}
.y1a9{bottom:1058.386500px;}
.y67{bottom:1060.978500px;}
.y33{bottom:1066.567500px;}
.y2d0{bottom:1068.241500px;}
.y2{bottom:1071.244500px;}
.y257{bottom:1075.534500px;}
.y302{bottom:1077.327000px;}
.y11e{bottom:1081.243500px;}
.y32{bottom:1086.832500px;}
.y2cf{bottom:1087.609500px;}
.yf0{bottom:1092.256500px;}
.y66{bottom:1095.798000px;}
.y301{bottom:1096.695000px;}
.y192{bottom:1098.310500px;}
.y1{bottom:1100.145000px;}
.y2ce{bottom:1115.943000px;}
.y31{bottom:1116.063000px;}
.y191{bottom:1117.543500px;}
.y30{bottom:1168.366500px;}
.h4e{height:-330.730500px;}
.h4c{height:-309.670500px;}
.h4f{height:-288.610500px;}
.h51{height:-268.450500px;}
.h52{height:-248.290500px;}
.h1e{height:-217.499850px;}
.h30{height:-200.377500px;}
.h1d{height:-198.707850px;}
.h46{height:-191.263950px;}
.h3f{height:-190.420495px;}
.h1c{height:-179.753850px;}
.h60{height:-161.593650px;}
.h5f{height:-146.047050px;}
.h5d{height:-130.657050px;}
.h5b{height:-114.457050px;}
.h2f{height:20.161500px;}
.h2c{height:20.250000px;}
.h2e{height:25.453125px;}
.ha{height:25.508090px;}
.h6e{height:25.693153px;}
.h70{height:25.930829px;}
.h2d{height:26.191406px;}
.h72{height:26.217754px;}
.h36{height:28.154308px;}
.h6a{height:29.904810px;}
.h68{height:30.029414px;}
.h7{height:30.587087px;}
.h62{height:31.337508px;}
.h6f{height:31.361088px;}
.h13{height:31.526842px;}
.h6c{height:33.034370px;}
.hc{height:33.112997px;}
.hf{height:33.209038px;}
.h37{height:33.299897px;}
.h61{height:33.719730px;}
.hb{height:34.199443px;}
.h26{height:34.951465px;}
.h71{height:34.956859px;}
.h11{height:35.052500px;}
.h59{height:38.341133px;}
.h24{height:38.896243px;}
.h41{height:39.190046px;}
.h40{height:39.298907px;}
.h9{height:39.326630px;}
.h19{height:39.418840px;}
.h2b{height:39.418945px;}
.h44{height:39.434227px;}
.h34{height:39.561275px;}
.h15{height:40.384512px;}
.h6d{height:41.050033px;}
.h6b{height:41.167009px;}
.h10{height:41.482876px;}
.h43{height:41.766650px;}
.h67{height:42.441463px;}
.h42{height:42.479802px;}
.h5e{height:42.548414px;}
.h5c{height:42.795527px;}
.hd{height:43.217759px;}
.h2a{height:43.269961px;}
.he{height:43.695964px;}
.h29{height:43.739648px;}
.h53{height:43.798711px;}
.h2{height:43.815515px;}
.h28{height:43.886426px;}
.h63{height:44.857215px;}
.h4a{height:44.871680px;}
.h1b{height:44.945508px;}
.h64{height:44.981819px;}
.h1a{height:45.206543px;}
.h3d{height:46.850473px;}
.h3e{height:46.945594px;}
.h3c{height:46.948078px;}
.h16{height:47.698242px;}
.h57{height:47.916025px;}
.h56{height:48.035815px;}
.h69{height:48.504529px;}
.h8{height:49.117939px;}
.h17{height:49.739695px;}
.h65{height:49.868346px;}
.h54{height:49.939453px;}
.h66{height:49.965954px;}
.h18{height:50.028574px;}
.h4b{height:50.229492px;}
.h21{height:51.709276px;}
.h20{height:51.816780px;}
.h23{height:52.202387px;}
.h22{height:52.246354px;}
.h38{height:52.402876px;}
.h27{height:52.998047px;}
.h35{height:53.222842px;}
.h58{height:54.223732px;}
.h6{height:54.541601px;}
.h12{height:54.575123px;}
.h39{height:54.905038px;}
.h50{height:55.266328px;}
.h5{height:55.352206px;}
.h4d{height:55.587305px;}
.h31{height:57.335643px;}
.h32{height:57.336243px;}
.h33{height:57.544102px;}
.h25{height:71.089500px;}
.h74{height:71.770243px;}
.h73{height:71.937638px;}
.h48{height:77.607638px;}
.h4{height:77.792486px;}
.h3{height:78.115277px;}
.h1f{height:226.126327px;}
.h14{height:233.722800px;}
.h47{height:241.652405px;}
.h55{height:246.754235px;}
.h45{height:248.596425px;}
.h3b{height:252.444956px;}
.h49{height:252.609000px;}
.h3a{height:257.095350px;}
.h5a{height:330.399000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:-8.746650px;}
.wd{width:-7.186050px;}
.w28{width:19.731600px;}
.w2f{width:20.933100px;}
.w2a{width:33.534000px;}
.w5{width:36.289350px;}
.w1a{width:37.890000px;}
.wc{width:38.052450px;}
.w7{width:38.070000px;}
.w8{width:38.232000px;}
.wb{width:38.394000px;}
.w2b{width:41.796000px;}
.w14{width:42.390000px;}
.w13{width:42.478500px;}
.w15{width:42.480000px;}
.w16{width:42.660000px;}
.wa{width:44.906400px;}
.w9{width:45.036000px;}
.w6{width:45.068400px;}
.w2c{width:45.230400px;}
.w12{width:49.950000px;}
.w17{width:50.130000px;}
.w2e{width:70.016400px;}
.w2{width:75.364879px;}
.wf{width:76.446450px;}
.w2d{width:81.324000px;}
.w25{width:81.913500px;}
.w23{width:103.356000px;}
.w24{width:115.740000px;}
.w29{width:129.308400px;}
.w19{width:135.450000px;}
.w21{width:211.282500px;}
.w30{width:271.302877px;}
.w22{width:301.003500px;}
.w31{width:319.494435px;}
.we{width:324.068850px;}
.w18{width:369.630000px;}
.w10{width:391.019199px;}
.w1e{width:398.600585px;}
.w3{width:400.515300px;}
.w1f{width:405.827550px;}
.w1d{width:419.472967px;}
.w1c{width:428.669550px;}
.w1b{width:434.475000px;}
.w27{width:475.413300px;}
.w26{width:506.250080px;}
.w20{width:512.301000px;}
.w11{width:549.234000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x50{left:-96.869250px;}
.xb2{left:-94.213800px;}
.xa5{left:-82.526850px;}
.xc4{left:-74.581500px;}
.x51{left:-68.195250px;}
.xb3{left:-65.539800px;}
.x6b{left:-56.551500px;}
.xd9{left:-55.436400px;}
.xa6{left:-53.852850px;}
.xc5{left:-42.721500px;}
.xe3{left:-40.046400px;}
.xe2{left:-37.778400px;}
.x54{left:-35.476650px;}
.x62{left:-34.180650px;}
.xdb{left:-29.354400px;}
.xda{left:-26.762400px;}
.x6c{left:-24.702930px;}
.xcd{left:-5.647500px;}
.x63{left:-1.456650px;}
.x0{left:0.000000px;}
.xde{left:1.944000px;}
.xb7{left:3.923990px;}
.x61{left:7.290000px;}
.x5f{left:8.586000px;}
.x56{left:10.368000px;}
.x5a{left:11.664000px;}
.x74{left:12.870000px;}
.x5c{left:13.932000px;}
.x58{left:15.390000px;}
.x53{left:16.849350px;}
.x55{left:18.306000px;}
.x72{left:20.340000px;}
.x65{left:21.684202px;}
.x7f{left:23.999400px;}
.xb5{left:25.673113px;}
.xcc{left:28.080000px;}
.x6{left:29.274117px;}
.x7e{left:31.328400px;}
.xad{left:34.089111px;}
.xe1{left:37.260000px;}
.x70{left:39.690000px;}
.xdc{left:40.824000px;}
.xb6{left:50.486545px;}
.x66{left:54.306695px;}
.xaa{left:56.253745px;}
.xc8{left:57.600000px;}
.x80{left:60.174450px;}
.xcb{left:65.632500px;}
.xe4{left:67.170195px;}
.x6e{left:69.808500px;}
.xc6{left:75.352500px;}
.x6f{left:76.648500px;}
.xe6{left:83.178619px;}
.xae{left:87.488158px;}
.x1{left:114.265500px;}
.x4{left:122.110500px;}
.x2{left:123.307500px;}
.x9b{left:124.725000px;}
.xf1{left:126.411780px;}
.xef{left:129.200160px;}
.x60{left:130.775850px;}
.x9c{left:135.516000px;}
.xeb{left:137.424180px;}
.x3{left:145.647000px;}
.x16{left:146.692500px;}
.x95{left:147.804000px;}
.x84{left:151.066500px;}
.x7a{left:154.980000px;}
.x85{left:157.492500px;}
.x96{left:159.232500px;}
.x43{left:161.947500px;}
.x97{left:166.386000px;}
.x8f{left:169.087500px;}
.x6a{left:171.840000px;}
.x7c{left:175.408500px;}
.x44{left:176.742000px;}
.x82{left:179.715150px;}
.xc0{left:181.624500px;}
.xd3{left:184.509000px;}
.x90{left:185.844000px;}
.xc3{left:190.306500px;}
.x7{left:191.404500px;}
.x11f{left:192.468000px;}
.xcf{left:194.199000px;}
.x8c{left:195.931500px;}
.xb9{left:197.473500px;}
.x26{left:199.027500px;}
.xd4{left:201.364500px;}
.x69{left:203.904000px;}
.xea{left:205.384500px;}
.x10d{left:207.346500px;}
.xbb{left:208.702500px;}
.x8d{left:210.876000px;}
.x10b{left:212.548500px;}
.x27{left:213.970500px;}
.xb8{left:218.002127px;}
.xe5{left:219.334475px;}
.xf2{left:222.220920px;}
.x35{left:223.603500px;}
.x14{left:226.677000px;}
.x9e{left:228.603000px;}
.x40{left:229.968000px;}
.x68{left:231.298151px;}
.x114{left:232.819500px;}
.x9f{left:235.029000px;}
.xd1{left:236.535981px;}
.xa9{left:238.043250px;}
.x15{left:243.313500px;}
.x41{left:244.762500px;}
.x36{left:245.886000px;}
.xe7{left:247.307089px;}
.xac{left:248.573250px;}
.xfc{left:249.856500px;}
.xf3{left:250.860720px;}
.x64{left:252.250350px;}
.x129{left:253.657500px;}
.x24{left:254.664000px;}
.x83{left:256.421850px;}
.xe9{left:259.480231px;}
.x71{left:263.248500px;}
.xaf{left:265.666500px;}
.x8{left:267.829500px;}
.x25{left:269.608500px;}
.x37{left:275.446500px;}
.x93{left:277.105500px;}
.xd7{left:278.511000px;}
.xf4{left:280.246440px;}
.x106{left:281.551500px;}
.x28{left:282.610500px;}
.x119{left:285.252000px;}
.x9{left:288.100500px;}
.x8e{left:289.458000px;}
.xf5{left:292.697760px;}
.xd8{left:294.523500px;}
.x38{left:297.729000px;}
.x107{left:301.075500px;}
.x29{left:302.124000px;}
.xf6{left:304.813920px;}
.xfd{left:307.662000px;}
.x111{left:311.577000px;}
.x73{left:313.198500px;}
.xfe{left:315.133500px;}
.xa{left:317.661000px;}
.xe8{left:318.959578px;}
.xf7{left:321.663900px;}
.x112{left:323.997000px;}
.xf8{left:326.685000px;}
.x45{left:327.823500px;}
.x108{left:329.626500px;}
.x2a{left:331.222500px;}
.x11d{left:333.093000px;}
.x109{left:335.496000px;}
.xb{left:337.932000px;}
.x113{left:338.941500px;}
.xc{left:343.194000px;}
.x1e{left:345.031500px;}
.xd2{left:347.320562px;}
.x1f{left:348.741000px;}
.x2b{left:350.736000px;}
.xab{left:354.094655px;}
.xd{left:355.485000px;}
.x46{left:357.535500px;}
.x86{left:359.517000px;}
.x49{left:365.853000px;}
.x10e{left:367.507500px;}
.x2c{left:370.675500px;}
.x4a{left:373.756500px;}
.x115{left:379.498500px;}
.x101{left:381.159000px;}
.x10f{left:382.450500px;}
.x42{left:384.825000px;}
.x67{left:386.665869px;}
.x7d{left:388.138500px;}
.x4e{left:389.341500px;}
.xdd{left:391.328700px;}
.x3c{left:392.653500px;}
.x116{left:394.441500px;}
.x52{left:397.171350px;}
.xba{left:398.982000px;}
.x3d{left:400.125000px;}
.xc7{left:401.604000px;}
.x57{left:403.868850px;}
.x4f{left:405.109500px;}
.xb4{left:414.244800px;}
.xa8{left:415.401750px;}
.x33{left:421.788000px;}
.x81{left:424.106550px;}
.xa7{left:425.931750px;}
.x34{left:429.259500px;}
.x123{left:430.267500px;}
.xdf{left:433.124700px;}
.x4b{left:436.162500px;}
.xec{left:437.549880px;}
.x59{left:448.904850px;}
.x4c{left:451.204500px;}
.x98{left:456.730500px;}
.xd0{left:457.864068px;}
.x4d{left:459.109500px;}
.x2f{left:463.108500px;}
.x99{left:467.541000px;}
.xbc{left:468.567000px;}
.x10a{left:475.657500px;}
.x11c{left:477.819000px;}
.x10{left:480.054000px;}
.x30{left:483.138000px;}
.xbd{left:484.609500px;}
.x1b{left:486.540000px;}
.x6d{left:492.263640px;}
.x1c{left:493.863000px;}
.x11{left:496.089000px;}
.x75{left:497.968500px;}
.x1d{left:501.334500px;}
.xc9{left:504.954000px;}
.xce{left:510.172500px;}
.x31{left:512.698500px;}
.x12{left:520.335000px;}
.x7b{left:524.488500px;}
.x32{left:528.465000px;}
.x94{left:529.813500px;}
.x22{left:531.511500px;}
.x13{left:536.346000px;}
.x23{left:538.984500px;}
.x76{left:540.448500px;}
.x2d{left:541.483500px;}
.xf9{left:544.530000px;}
.x121{left:545.626500px;}
.x117{left:547.450500px;}
.x2e{left:548.955000px;}
.xfa{left:552.748500px;}
.x87{left:557.491500px;}
.x122{left:560.571000px;}
.x118{left:562.393500px;}
.x88{left:564.298500px;}
.x5b{left:570.269850px;}
.x19{left:571.914000px;}
.xa0{left:574.459500px;}
.x1a{left:579.387000px;}
.x77{left:582.928500px;}
.x3e{left:594.130500px;}
.x89{left:595.786500px;}
.xfb{left:604.905000px;}
.x3f{left:606.421500px;}
.x5d{left:608.663850px;}
.x8a{left:615.273000px;}
.xed{left:616.938600px;}
.xca{left:620.694000px;}
.x8b{left:622.078500px;}
.xc1{left:623.848500px;}
.x78{left:625.588500px;}
.x11e{left:627.021000px;}
.x11a{left:628.123500px;}
.xc2{left:639.891000px;}
.x11b{left:643.066500px;}
.x3a{left:645.462000px;}
.xa1{left:648.235500px;}
.x5e{left:653.902350px;}
.x3b{left:660.405000px;}
.xe0{left:663.232200px;}
.xa2{left:667.744500px;}
.x20{left:673.768500px;}
.x79{left:675.718500px;}
.x124{left:678.736500px;}
.x21{left:681.240000px;}
.x102{left:682.863000px;}
.x47{left:687.934500px;}
.x127{left:689.506500px;}
.xf0{left:694.303860px;}
.xa3{left:696.469500px;}
.x120{left:698.119500px;}
.x5{left:701.339982px;}
.x48{left:702.729000px;}
.x125{left:705.636000px;}
.xff{left:706.728000px;}
.x110{left:709.114500px;}
.x103{left:711.702000px;}
.x100{left:714.199500px;}
.xa4{left:715.978500px;}
.xe{left:717.030000px;}
.xee{left:720.537060px;}
.xd5{left:723.031500px;}
.x128{left:727.708500px;}
.xbe{left:728.932500px;}
.xb0{left:731.250000px;}
.xf{left:732.363000px;}
.x104{left:736.341000px;}
.xd6{left:739.887000px;}
.x9d{left:743.467500px;}
.xbf{left:744.975000px;}
.xb1{left:747.277500px;}
.x105{left:748.632000px;}
.x91{left:754.441500px;}
.x39{left:756.382500px;}
.x9a{left:758.479500px;}
.x17{left:764.367000px;}
.x92{left:767.404500px;}
.x18{left:771.838500px;}
.x10c{left:773.034000px;}
.x126{left:776.389500px;}
@media print{
.v9{vertical-align:-34.743297pt;}
.v2{vertical-align:-17.354667pt;}
.vb{vertical-align:-12.698887pt;}
.v6{vertical-align:-10.938667pt;}
.v7{vertical-align:-9.706667pt;}
.vc{vertical-align:-7.127680pt;}
.vd{vertical-align:-0.931840pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:7.831040pt;}
.v8{vertical-align:9.706667pt;}
.v3{vertical-align:12.096000pt;}
.v5{vertical-align:13.344640pt;}
.v4{vertical-align:14.696739pt;}
.v10{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.vf{vertical-align:29.226667pt;}
.va{vertical-align:34.266667pt;}
.ls71{letter-spacing:-6.672000pt;}
.ls40{letter-spacing:-4.690560pt;}
.ls3f{letter-spacing:-3.231275pt;}
.ls41{letter-spacing:-3.219569pt;}
.ls33{letter-spacing:-0.728293pt;}
.ls3e{letter-spacing:-0.726999pt;}
.ls36{letter-spacing:-0.374080pt;}
.ls3b{letter-spacing:-0.320640pt;}
.ls5e{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.311571pt;}
.ls28{letter-spacing:-0.288000pt;}
.ls3a{letter-spacing:-0.213760pt;}
.ls2c{letter-spacing:-0.207840pt;}
.ls2e{letter-spacing:-0.180960pt;}
.ls39{letter-spacing:-0.160320pt;}
.ls38{letter-spacing:-0.106880pt;}
.ls31{letter-spacing:-0.097365pt;}
.ls35{letter-spacing:-0.085120pt;}
.ls2b{letter-spacing:-0.080160pt;}
.ls75{letter-spacing:-0.059882pt;}
.ls5f{letter-spacing:-0.057569pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls55{letter-spacing:-0.052317pt;}
.ls30{letter-spacing:-0.048683pt;}
.ls54{letter-spacing:-0.044200pt;}
.ls29{letter-spacing:-0.033408pt;}
.lse{letter-spacing:0.000000pt;}
.ls7e{letter-spacing:0.000108pt;}
.ls8{letter-spacing:0.000503pt;}
.ls0{letter-spacing:0.000518pt;}
.ls81{letter-spacing:0.000600pt;}
.ls89{letter-spacing:0.000711pt;}
.ls94{letter-spacing:0.000732pt;}
.ls4c{letter-spacing:0.001021pt;}
.ls8c{letter-spacing:0.001026pt;}
.ls80{letter-spacing:0.001158pt;}
.ls63{letter-spacing:0.001161pt;}
.ls7{letter-spacing:0.001843pt;}
.ls7d{letter-spacing:0.001974pt;}
.ls2{letter-spacing:0.002422pt;}
.ls87{letter-spacing:0.002525pt;}
.ls7f{letter-spacing:0.002734pt;}
.ls12{letter-spacing:0.002868pt;}
.ls6{letter-spacing:0.003430pt;}
.ls3{letter-spacing:0.003733pt;}
.ls76{letter-spacing:0.003914pt;}
.ls8a{letter-spacing:0.004267pt;}
.ls8e{letter-spacing:0.004898pt;}
.ls72{letter-spacing:0.014400pt;}
.ls2d{letter-spacing:0.042624pt;}
.ls50{letter-spacing:0.044200pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.048683pt;}
.ls3d{letter-spacing:0.053440pt;}
.ls74{letter-spacing:0.059882pt;}
.ls34{letter-spacing:0.085120pt;}
.ls53{letter-spacing:0.088400pt;}
.ls1f{letter-spacing:0.106880pt;}
.ls73{letter-spacing:0.119764pt;}
.ls23{letter-spacing:0.128256pt;}
.ls27{letter-spacing:0.144000pt;}
.ls5b{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.160320pt;}
.ls2a{letter-spacing:0.165120pt;}
.ls1b{letter-spacing:0.170240pt;}
.ls60{letter-spacing:0.176256pt;}
.ls61{letter-spacing:0.209664pt;}
.ls62{letter-spacing:0.245376pt;}
.ls5a{letter-spacing:0.265600pt;}
.ls2f{letter-spacing:0.277440pt;}
.ls16{letter-spacing:0.288000pt;}
.ls58{letter-spacing:0.320000pt;}
.ls77{letter-spacing:0.462205pt;}
.ls59{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.482502pt;}
.ls6c{letter-spacing:0.483905pt;}
.lsc{letter-spacing:0.487835pt;}
.ls18{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.637762pt;}
.ls13{letter-spacing:0.663756pt;}
.ls20{letter-spacing:0.816000pt;}
.ls24{letter-spacing:1.015360pt;}
.lsf{letter-spacing:1.133683pt;}
.lsb{letter-spacing:1.654338pt;}
.ls6a{letter-spacing:2.231488pt;}
.ls78{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls43{letter-spacing:3.158400pt;}
.ls19{letter-spacing:4.176000pt;}
.ls22{letter-spacing:4.221760pt;}
.ls21{letter-spacing:4.542400pt;}
.ls1a{letter-spacing:6.451200pt;}
.ls17{letter-spacing:6.480000pt;}
.ls1d{letter-spacing:6.786880pt;}
.ls25{letter-spacing:8.710720pt;}
.ls6b{letter-spacing:10.042368pt;}
.ls6d{letter-spacing:10.162876pt;}
.ls68{letter-spacing:10.544221pt;}
.ls66{letter-spacing:10.548701pt;}
.lsd{letter-spacing:10.626533pt;}
.ls6f{letter-spacing:11.138393pt;}
.ls6e{letter-spacing:11.159618pt;}
.ls85{letter-spacing:11.571331pt;}
.ls92{letter-spacing:11.766585pt;}
.ls86{letter-spacing:11.773122pt;}
.ls8b{letter-spacing:11.838041pt;}
.ls90{letter-spacing:11.938346pt;}
.ls82{letter-spacing:11.954133pt;}
.ls9{letter-spacing:11.955430pt;}
.ls83{letter-spacing:11.959467pt;}
.ls69{letter-spacing:12.275648pt;}
.ls84{letter-spacing:12.520617pt;}
.ls56{letter-spacing:12.528078pt;}
.ls8d{letter-spacing:12.578133pt;}
.ls65{letter-spacing:12.772928pt;}
.ls67{letter-spacing:12.777408pt;}
.ls10{letter-spacing:13.090450pt;}
.ls8f{letter-spacing:13.158525pt;}
.ls7b{letter-spacing:13.252541pt;}
.ls44{letter-spacing:13.283543pt;}
.ls45{letter-spacing:13.285877pt;}
.ls70{letter-spacing:13.286400pt;}
.ls91{letter-spacing:13.665715pt;}
.ls5d{letter-spacing:13.880429pt;}
.ls49{letter-spacing:13.923096pt;}
.ls1e{letter-spacing:14.482240pt;}
.ls57{letter-spacing:14.604308pt;}
.ls52{letter-spacing:15.017380pt;}
.ls4a{letter-spacing:15.937015pt;}
.ls4f{letter-spacing:15.937067pt;}
.ls47{letter-spacing:15.937310pt;}
.ls46{letter-spacing:15.939543pt;}
.ls4{letter-spacing:15.942400pt;}
.ls93{letter-spacing:16.055258pt;}
.ls7c{letter-spacing:16.112672pt;}
.ls4b{letter-spacing:16.603977pt;}
.ls48{letter-spacing:16.606210pt;}
.ls4e{letter-spacing:16.646643pt;}
.ls4d{letter-spacing:16.648877pt;}
.ls15{letter-spacing:16.843436pt;}
.ls88{letter-spacing:16.844800pt;}
.ls7a{letter-spacing:17.166400pt;}
.ls5{letter-spacing:62.432533pt;}
.ls26{letter-spacing:62.624663pt;}
.lsa{letter-spacing:64.314231pt;}
.ls64{letter-spacing:76.093248pt;}
.ls79{letter-spacing:221.158340pt;}
.ls51{letter-spacing:284.201943pt;}
.ls5c{letter-spacing:338.213625pt;}
.ws65{word-spacing:-28.800000pt;}
.wsf8{word-spacing:-20.205244pt;}
.wsf5{word-spacing:-20.084736pt;}
.wsd6{word-spacing:-13.545600pt;}
.ws77{word-spacing:-13.520320pt;}
.ws75{word-spacing:-13.466880pt;}
.ws6f{word-spacing:-13.360000pt;}
.ws70{word-spacing:-13.306560pt;}
.ws48{word-spacing:-13.283467pt;}
.wsd5{word-spacing:-13.280000pt;}
.ws74{word-spacing:-13.253120pt;}
.ws71{word-spacing:-13.199680pt;}
.ws76{word-spacing:-13.146240pt;}
.ws79{word-spacing:-13.039360pt;}
.ws78{word-spacing:-12.985920pt;}
.ws80{word-spacing:-12.982133pt;}
.ws7f{word-spacing:-12.670562pt;}
.ws66{word-spacing:-12.229440pt;}
.ws60{word-spacing:-12.117120pt;}
.ws73{word-spacing:-12.000000pt;}
.ws63{word-spacing:-11.994624pt;}
.ws8{word-spacing:-11.955200pt;}
.ws5d{word-spacing:-11.952000pt;}
.ws5e{word-spacing:-11.918592pt;}
.ws61{word-spacing:-11.871840pt;}
.ws64{word-spacing:-11.771040pt;}
.ws62{word-spacing:-11.744160pt;}
.ws6b{word-spacing:-11.732534pt;}
.ws6c{word-spacing:-11.708192pt;}
.wsd8{word-spacing:-11.542573pt;}
.wse2{word-spacing:-10.814400pt;}
.wse6{word-spacing:-10.808725pt;}
.wsc0{word-spacing:-10.800000pt;}
.wsd3{word-spacing:-10.720000pt;}
.wsc4{word-spacing:-10.630145pt;}
.ws1e{word-spacing:-10.626800pt;}
.wsc5{word-spacing:-10.608045pt;}
.wsd4{word-spacing:-10.400000pt;}
.wsdf{word-spacing:-10.224000pt;}
.ws4{word-spacing:-10.095467pt;}
.wsf6{word-spacing:-10.042368pt;}
.ws7e{word-spacing:-9.762564pt;}
.ws5b{word-spacing:-9.648000pt;}
.ws5c{word-spacing:-9.360000pt;}
.ws7d{word-spacing:-8.957600pt;}
.ws6a{word-spacing:-8.086152pt;}
.ws72{word-spacing:-8.000000pt;}
.ws5f{word-spacing:-7.200000pt;}
.wsc3{word-spacing:-7.086389pt;}
.wse1{word-spacing:-6.624000pt;}
.wse0{word-spacing:-6.048000pt;}
.ws145{word-spacing:-2.922363pt;}
.ws55{word-spacing:-2.762961pt;}
.ws18{word-spacing:-2.337890pt;}
.ws4f{word-spacing:-2.284756pt;}
.ws16{word-spacing:-2.231622pt;}
.wsb5{word-spacing:-2.125355pt;}
.ws23{word-spacing:-1.965953pt;}
.wsa{word-spacing:-1.696326pt;}
.wsb3{word-spacing:-1.540882pt;}
.ws2b{word-spacing:-1.487748pt;}
.ws2a{word-spacing:-1.434614pt;}
.wsfa{word-spacing:-1.275213pt;}
.wsab{word-spacing:-1.175680pt;}
.ws9{word-spacing:-1.175671pt;}
.ws161{word-spacing:-1.004237pt;}
.ws184{word-spacing:-0.956416pt;}
.ws1a6{word-spacing:-0.908595pt;}
.ws85{word-spacing:-0.850142pt;}
.ws103{word-spacing:-0.797008pt;}
.ws102{word-spacing:-0.743874pt;}
.ws1a8{word-spacing:-0.717312pt;}
.ws172{word-spacing:-0.669491pt;}
.ws104{word-spacing:-0.584473pt;}
.ws148{word-spacing:-0.531339pt;}
.ws167{word-spacing:-0.526029pt;}
.ws168{word-spacing:-0.382566pt;}
.ws8d{word-spacing:-0.374080pt;}
.ws52{word-spacing:-0.371937pt;}
.ws18e{word-spacing:-0.334746pt;}
.ws50{word-spacing:-0.318803pt;}
.ws1ac{word-spacing:-0.286925pt;}
.ws53{word-spacing:-0.265669pt;}
.wsa7{word-spacing:-0.213760pt;}
.ws11{word-spacing:-0.212535pt;}
.ws16c{word-spacing:-0.196530pt;}
.wsca{word-spacing:-0.191283pt;}
.ws19b{word-spacing:-0.181541pt;}
.ws197{word-spacing:-0.181035pt;}
.ws88{word-spacing:-0.170240pt;}
.wsf9{word-spacing:-0.170029pt;}
.ws15{word-spacing:-0.159402pt;}
.wscc{word-spacing:-0.143462pt;}
.ws169{word-spacing:-0.118531pt;}
.ws9e{word-spacing:-0.106880pt;}
.ws46{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.ws87{word-spacing:-0.085120pt;}
.wsa8{word-spacing:-0.053440pt;}
.ws2{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.wsd9{word-spacing:-0.045089pt;}
.ws1f{word-spacing:-0.042507pt;}
.wsef{word-spacing:-0.040169pt;}
.ws1b{word-spacing:-0.007625pt;}
.ws179{word-spacing:-0.005956pt;}
.ws116{word-spacing:-0.004403pt;}
.ws5{word-spacing:-0.003726pt;}
.ws6{word-spacing:-0.002918pt;}
.ws3{word-spacing:-0.002126pt;}
.ws15e{word-spacing:-0.000350pt;}
.ws0{word-spacing:0.000000pt;}
.ws1af{word-spacing:0.001758pt;}
.ws195{word-spacing:0.030119pt;}
.ws193{word-spacing:0.035285pt;}
.ws170{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws92{word-spacing:0.053440pt;}
.ws112{word-spacing:0.066071pt;}
.ws89{word-spacing:0.085120pt;}
.ws182{word-spacing:0.095642pt;}
.ws9d{word-spacing:0.096000pt;}
.ws45{word-spacing:0.106268pt;}
.ws8c{word-spacing:0.106880pt;}
.wsf3{word-spacing:0.120508pt;}
.ws43{word-spacing:0.134548pt;}
.ws155{word-spacing:0.134746pt;}
.ws6d{word-spacing:0.143462pt;}
.wsa2{word-spacing:0.144000pt;}
.ws39{word-spacing:0.155462pt;}
.wsd{word-spacing:0.159402pt;}
.ws99{word-spacing:0.160320pt;}
.ws156{word-spacing:0.191283pt;}
.ws42{word-spacing:0.212535pt;}
.wsa3{word-spacing:0.213760pt;}
.ws4d{word-spacing:0.229995pt;}
.ws14f{word-spacing:0.239104pt;}
.ws17{word-spacing:0.265669pt;}
.ws98{word-spacing:0.267200pt;}
.ws2e{word-spacing:0.371937pt;}
.ws163{word-spacing:0.382566pt;}
.ws2c{word-spacing:0.388683pt;}
.ws106{word-spacing:0.425071pt;}
.ws187{word-spacing:0.430387pt;}
.ws185{word-spacing:0.451490pt;}
.ws3d{word-spacing:0.478205pt;}
.ws165{word-spacing:0.573850pt;}
.ws59{word-spacing:0.584473pt;}
.wsd1{word-spacing:0.595430pt;}
.ws189{word-spacing:0.621670pt;}
.ws11b{word-spacing:0.637606pt;}
.ws17f{word-spacing:0.669491pt;}
.wsb8{word-spacing:0.690740pt;}
.ws17e{word-spacing:0.717312pt;}
.ws9c{word-spacing:0.768000pt;}
.wsb6{word-spacing:0.797008pt;}
.ws9b{word-spacing:0.816000pt;}
.ws8e{word-spacing:0.855040pt;}
.ws8f{word-spacing:0.908480pt;}
.ws152{word-spacing:0.908595pt;}
.ws146{word-spacing:0.956410pt;}
.ws128{word-spacing:0.982200pt;}
.ws154{word-spacing:1.004237pt;}
.wsb7{word-spacing:1.009543pt;}
.wse8{word-spacing:1.052058pt;}
.ws83{word-spacing:1.062677pt;}
.wsac{word-spacing:1.068800pt;}
.wsaa{word-spacing:1.122240pt;}
.ws10a{word-spacing:1.168945pt;}
.ws190{word-spacing:1.195520pt;}
.ws12{word-spacing:1.222079pt;}
.ws138{word-spacing:1.275213pt;}
.wse7{word-spacing:1.291162pt;}
.wsd2{word-spacing:1.328347pt;}
.ws1a2{word-spacing:1.338982pt;}
.ws3b{word-spacing:1.381481pt;}
.ws27{word-spacing:1.540882pt;}
.wsa1{word-spacing:1.549760pt;}
.ws38{word-spacing:1.594016pt;}
.ws1a5{word-spacing:1.721549pt;}
.wsc9{word-spacing:1.753418pt;}
.ws151{word-spacing:1.769370pt;}
.ws126{word-spacing:1.806551pt;}
.ws19{word-spacing:1.859685pt;}
.ws58{word-spacing:2.019087pt;}
.ws81{word-spacing:2.072221pt;}
.wsde{word-spacing:2.125355pt;}
.ws107{word-spacing:2.178489pt;}
.wse{word-spacing:2.231622pt;}
.ws19e{word-spacing:2.247578pt;}
.ws13{word-spacing:2.391024pt;}
.ws14{word-spacing:2.444158pt;}
.wsec{word-spacing:2.486682pt;}
.ws33{word-spacing:2.550426pt;}
.ws31{word-spacing:2.603559pt;}
.ws11f{word-spacing:2.709827pt;}
.ws12e{word-spacing:2.762961pt;}
.ws120{word-spacing:2.816095pt;}
.ws140{word-spacing:2.826257pt;}
.ws196{word-spacing:2.865161pt;}
.ws150{word-spacing:2.866509pt;}
.ws18a{word-spacing:2.868898pt;}
.ws198{word-spacing:2.868915pt;}
.ws17b{word-spacing:2.869248pt;}
.ws17a{word-spacing:2.870494pt;}
.ws11c{word-spacing:2.975497pt;}
.ws13a{word-spacing:3.028630pt;}
.ws94{word-spacing:3.099520pt;}
.ws16f{word-spacing:3.156173pt;}
.ws1a{word-spacing:3.185311pt;}
.ws20{word-spacing:3.188032pt;}
.wsae{word-spacing:3.231275pt;}
.ws1ad{word-spacing:3.251814pt;}
.ws6e{word-spacing:3.400567pt;}
.ws18c{word-spacing:3.443098pt;}
.wsfc{word-spacing:3.453701pt;}
.ws5a{word-spacing:3.506835pt;}
.wsb2{word-spacing:3.559969pt;}
.ws36{word-spacing:3.666237pt;}
.ws34{word-spacing:3.719371pt;}
.wsbc{word-spacing:3.772505pt;}
.ws133{word-spacing:3.825638pt;}
.ws173{word-spacing:3.866526pt;}
.ws175{word-spacing:3.873485pt;}
.wsfe{word-spacing:3.878772pt;}
.ws14b{word-spacing:3.931906pt;}
.ws125{word-spacing:3.985040pt;}
.ws1a9{word-spacing:4.112589pt;}
.wsa5{word-spacing:4.221760pt;}
.wsa6{word-spacing:4.382080pt;}
.ws135{word-spacing:4.463245pt;}
.wsff{word-spacing:4.782048pt;}
.ws1a1{word-spacing:4.782080pt;}
.wsa4{word-spacing:4.863040pt;}
.ws176{word-spacing:4.877722pt;}
.ws109{word-spacing:4.888316pt;}
.wsc{word-spacing:5.047717pt;}
.ws12a{word-spacing:5.207119pt;}
.ws12d{word-spacing:5.260253pt;}
.ws14e{word-spacing:5.313387pt;}
.ws136{word-spacing:5.472788pt;}
.ws137{word-spacing:5.525922pt;}
.ws29{word-spacing:5.579056pt;}
.ws12c{word-spacing:5.632190pt;}
.wsa0{word-spacing:5.718080pt;}
.ws19c{word-spacing:5.738496pt;}
.wsba{word-spacing:5.841069pt;}
.wsbb{word-spacing:5.843418pt;}
.ws9f{word-spacing:5.985280pt;}
.ws13b{word-spacing:6.004127pt;}
.wseb{word-spacing:6.073242pt;}
.ws127{word-spacing:6.376064pt;}
.wsea{word-spacing:6.407987pt;}
.ws13e{word-spacing:6.429198pt;}
.ws123{word-spacing:6.748001pt;}
.ws4a{word-spacing:6.828218pt;}
.ws4c{word-spacing:6.854269pt;}
.ws121{word-spacing:6.960537pt;}
.ws91{word-spacing:7.107520pt;}
.ws110{word-spacing:7.119938pt;}
.ws93{word-spacing:7.160960pt;}
.ws22{word-spacing:7.173072pt;}
.ws119{word-spacing:7.226206pt;}
.ws10b{word-spacing:7.332474pt;}
.ws8b{word-spacing:7.428160pt;}
.ws8a{word-spacing:7.481600pt;}
.ws10{word-spacing:8.342017pt;}
.ws19f{word-spacing:8.368640pt;}
.wsad{word-spacing:8.657280pt;}
.ws124{word-spacing:8.660820pt;}
.ws15c{word-spacing:8.703386pt;}
.wsa9{word-spacing:9.031360pt;}
.ws3f{word-spacing:9.404694pt;}
.wsdc{word-spacing:9.420698pt;}
.ws178{word-spacing:9.851085pt;}
.ws40{word-spacing:10.042301pt;}
.ws1d{word-spacing:10.585988pt;}
.wsb4{word-spacing:11.676198pt;}
.ws1ab{word-spacing:11.689459pt;}
.ws16d{word-spacing:11.716096pt;}
.wscb{word-spacing:11.726017pt;}
.ws17d{word-spacing:11.760681pt;}
.ws16a{word-spacing:11.763917pt;}
.wscd{word-spacing:11.770344pt;}
.wsda{word-spacing:11.800829pt;}
.wsdb{word-spacing:11.801417pt;}
.ws183{word-spacing:11.832479pt;}
.ws18f{word-spacing:11.845188pt;}
.ws157{word-spacing:11.859558pt;}
.ws17c{word-spacing:11.899196pt;}
.wse9{word-spacing:11.900715pt;}
.ws15d{word-spacing:11.900979pt;}
.ws1a7{word-spacing:11.902882pt;}
.ws15b{word-spacing:11.904444pt;}
.ws160{word-spacing:11.904529pt;}
.ws15f{word-spacing:11.904631pt;}
.ws18b{word-spacing:11.905937pt;}
.wsce{word-spacing:11.906048pt;}
.ws15a{word-spacing:11.906219pt;}
.ws159{word-spacing:11.906773pt;}
.ws158{word-spacing:11.907379pt;}
.wsc7{word-spacing:11.920728pt;}
.ws171{word-spacing:11.926144pt;}
.ws194{word-spacing:11.955200pt;}
.ws181{word-spacing:12.003021pt;}
.ws177{word-spacing:12.098662pt;}
.ws130{word-spacing:12.167655pt;}
.ws162{word-spacing:12.319212pt;}
.ws86{word-spacing:12.334701pt;}
.ws188{word-spacing:12.337766pt;}
.ws186{word-spacing:12.360280pt;}
.ws101{word-spacing:12.443545pt;}
.ws180{word-spacing:12.576870pt;}
.ws105{word-spacing:12.634021pt;}
.ws13d{word-spacing:12.645860pt;}
.ws149{word-spacing:12.655790pt;}
.ws90{word-spacing:12.718720pt;}
.ws199{word-spacing:12.818019pt;}
.ws1a0{word-spacing:12.911616pt;}
.ws153{word-spacing:12.925028pt;}
.ws11e{word-spacing:12.943585pt;}
.wsb1{word-spacing:12.982593pt;}
.wsbd{word-spacing:12.997521pt;}
.ws51{word-spacing:13.028661pt;}
.ws2f{word-spacing:13.029374pt;}
.ws24{word-spacing:13.059131pt;}
.ws147{word-spacing:13.070103pt;}
.ws30{word-spacing:13.076163pt;}
.ws191{word-spacing:13.090572pt;}
.ws47{word-spacing:13.109402pt;}
.ws10d{word-spacing:13.120491pt;}
.ws49{word-spacing:13.137049pt;}
.ws13f{word-spacing:13.157602pt;}
.ws111{word-spacing:13.168422pt;}
.ws14d{word-spacing:13.202526pt;}
.ws12f{word-spacing:13.215480pt;}
.ws10e{word-spacing:13.226565pt;}
.ws56{word-spacing:13.230333pt;}
.ws1c{word-spacing:13.231899pt;}
.ws1a3{word-spacing:13.240682pt;}
.ws1a4{word-spacing:13.246362pt;}
.ws113{word-spacing:13.285414pt;}
.ws114{word-spacing:13.290758pt;}
.ws14c{word-spacing:13.312845pt;}
.ws14a{word-spacing:13.318722pt;}
.ws143{word-spacing:13.320782pt;}
.ws118{word-spacing:13.336601pt;}
.wsb0{word-spacing:13.347637pt;}
.ws44{word-spacing:13.355531pt;}
.wsfb{word-spacing:13.356837pt;}
.wsbe{word-spacing:13.364029pt;}
.ws3a{word-spacing:13.408944pt;}
.ws25{word-spacing:13.409458pt;}
.ws115{word-spacing:13.435025pt;}
.wsb9{word-spacing:13.436003pt;}
.ws142{word-spacing:13.443961pt;}
.ws41{word-spacing:13.466461pt;}
.ws4e{word-spacing:13.480908pt;}
.ws2d{word-spacing:13.618095pt;}
.ws3e{word-spacing:13.738356pt;}
.ws144{word-spacing:14.025938pt;}
.ws9a{word-spacing:14.161600pt;}
.ws129{word-spacing:14.245546pt;}
.ws10f{word-spacing:14.250774pt;}
.wsbf{word-spacing:14.287376pt;}
.ws84{word-spacing:14.292605pt;}
.ws11a{word-spacing:14.397180pt;}
.wsed{word-spacing:14.409996pt;}
.ws97{word-spacing:14.482240pt;}
.wsaf{word-spacing:14.488619pt;}
.ws16b{word-spacing:14.585344pt;}
.ws96{word-spacing:14.642560pt;}
.ws3c{word-spacing:14.642931pt;}
.ws95{word-spacing:14.696000pt;}
.ws166{word-spacing:14.776627pt;}
.ws28{word-spacing:14.820709pt;}
.ws37{word-spacing:14.825938pt;}
.ws54{word-spacing:14.860787pt;}
.ws11d{word-spacing:14.983750pt;}
.wsdd{word-spacing:15.008944pt;}
.ws16e{word-spacing:15.063552pt;}
.ws57{word-spacing:15.090018pt;}
.ws1ae{word-spacing:15.159194pt;}
.ws82{word-spacing:15.288965pt;}
.ws18d{word-spacing:15.350477pt;}
.ws108{word-spacing:15.432474pt;}
.wsf{word-spacing:15.505676pt;}
.ws174{word-spacing:15.780864pt;}
.ws32{word-spacing:15.824631pt;}
.ws134{word-spacing:15.986722pt;}
.ws1aa{word-spacing:16.014788pt;}
.ws141{word-spacing:16.075611pt;}
.ws164{word-spacing:16.402534pt;}
.ws35{word-spacing:16.917441pt;}
.wsfd{word-spacing:17.147507pt;}
.ws19d{word-spacing:17.645875pt;}
.ws19a{word-spacing:17.980621pt;}
.ws100{word-spacing:18.057310pt;}
.ws139{word-spacing:18.125284pt;}
.wsb{word-spacing:18.298346pt;}
.ws12b{word-spacing:18.454696pt;}
.ws192{word-spacing:18.793574pt;}
.ws13c{word-spacing:19.276124pt;}
.ws4b{word-spacing:20.089545pt;}
.ws122{word-spacing:20.211559pt;}
.ws21{word-spacing:20.426023pt;}
.ws10c{word-spacing:20.598487pt;}
.wsc8{word-spacing:23.286069pt;}
.ws132{word-spacing:25.435601pt;}
.ws117{word-spacing:26.606843pt;}
.ws67{word-spacing:36.871896pt;}
.ws131{word-spacing:40.210077pt;}
.ws69{word-spacing:40.727567pt;}
.ws7a{word-spacing:40.998225pt;}
.ws68{word-spacing:44.247327pt;}
.ws7c{word-spacing:45.336585pt;}
.ws7b{word-spacing:48.945778pt;}
.wsc2{word-spacing:50.321915pt;}
.wsc1{word-spacing:50.763916pt;}
.wsd7{word-spacing:53.255416pt;}
.wsf7{word-spacing:68.871936pt;}
.wsc6{word-spacing:72.148457pt;}
.wsf0{word-spacing:74.795557pt;}
.wsf2{word-spacing:117.053841pt;}
.wsf1{word-spacing:121.914348pt;}
.wsf4{word-spacing:122.362785pt;}
.wse4{word-spacing:124.417110pt;}
.wse5{word-spacing:124.728497pt;}
.wse3{word-spacing:124.824309pt;}
.wsee{word-spacing:215.853453pt;}
.wsd0{word-spacing:266.505318pt;}
.wscf{word-spacing:628.102886pt;}
._33{margin-left:-735.671976pt;}
._1{margin-left:-10.616218pt;}
._35{margin-left:-8.795488pt;}
._7{margin-left:-7.029658pt;}
._5{margin-left:-5.897859pt;}
._15{margin-left:-4.888316pt;}
._4{margin-left:-3.931906pt;}
._23{margin-left:-2.964845pt;}
._0{margin-left:-1.739614pt;}
._9{width:0.969929pt;}
._2{width:2.666018pt;}
._1c{width:3.791628pt;}
._1d{width:4.789258pt;}
._19{width:6.169672pt;}
._17{width:7.212092pt;}
._1e{width:8.487366pt;}
._1a{width:9.460225pt;}
._1b{width:11.000597pt;}
._11{width:12.401003pt;}
._6{width:14.071412pt;}
._8{width:15.577484pt;}
._b{width:17.187765pt;}
._16{width:18.384318pt;}
._a{width:19.366254pt;}
._28{width:20.588333pt;}
._12{width:21.625484pt;}
._d{width:22.528759pt;}
._c{width:24.016508pt;}
._13{width:25.437318pt;}
._3c{width:26.846406pt;}
._14{width:27.948414pt;}
._31{width:29.011091pt;}
._62{width:29.953697pt;}
._10{width:30.960333pt;}
._60{width:33.395676pt;}
._61{width:35.193583pt;}
._5f{width:36.131029pt;}
._5e{width:37.230626pt;}
._3d{width:39.092722pt;}
._34{width:43.421286pt;}
._3{width:48.345839pt;}
._38{width:50.203633pt;}
._20{width:52.480742pt;}
._37{width:54.349296pt;}
._21{width:56.414305pt;}
._1f{width:59.051935pt;}
._22{width:61.700664pt;}
._27{width:62.632911pt;}
._25{width:65.500033pt;}
._26{width:68.570417pt;}
._64{width:78.904320pt;}
._3b{width:85.119111pt;}
._3a{width:95.201649pt;}
._32{width:105.084224pt;}
._29{width:119.608352pt;}
._2a{width:128.156359pt;}
._2b{width:129.126761pt;}
._2c{width:136.289280pt;}
._3e{width:177.842351pt;}
._30{width:198.121574pt;}
._46{width:224.136090pt;}
._39{width:226.033619pt;}
._5a{width:233.269862pt;}
._53{width:236.521677pt;}
._56{width:238.062537pt;}
._36{width:245.555982pt;}
._41{width:250.628813pt;}
._59{width:254.799823pt;}
._43{width:265.979290pt;}
._5d{width:271.717786pt;}
._2f{width:278.508339pt;}
._50{width:285.394534pt;}
._47{width:298.353971pt;}
._5c{width:312.604570pt;}
._49{width:321.116672pt;}
._51{width:327.620301pt;}
._2e{width:330.202624pt;}
._52{width:343.975014pt;}
._58{width:345.983488pt;}
._5b{width:350.441423pt;}
._45{width:361.907814pt;}
._48{width:362.816410pt;}
._55{width:365.350912pt;}
._4b{width:373.863014pt;}
._4f{width:385.818214pt;}
._4d{width:389.165670pt;}
._42{width:400.355738pt;}
._40{width:403.751014pt;}
._57{width:405.759488pt;}
._44{width:412.167475pt;}
._54{width:424.313958pt;}
._4a{width:430.817587pt;}
._2d{width:433.734656pt;}
._4e{width:442.772787pt;}
._3f{width:454.345421pt;}
._4c{width:460.705587pt;}
._e{width:979.534583pt;}
._18{width:1342.464000pt;}
._24{width:1492.272305pt;}
._63{width:1870.016470pt;}
._f{width:1891.269804pt;}
.fs29{font-size:24.192000pt;}
.fs2a{font-size:26.496000pt;}
.fs1c{font-size:28.345554pt;}
.fs30{font-size:28.743424pt;}
.fsd{font-size:28.800000pt;}
.fs2f{font-size:28.863189pt;}
.fs32{font-size:31.242624pt;}
.fs34{font-size:31.880533pt;}
.fs15{font-size:32.000000pt;}
.fs11{font-size:32.344608pt;}
.fs18{font-size:35.830400pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs1e{font-size:37.668058pt;}
.fs1d{font-size:37.772691pt;}
.fsa{font-size:38.592000pt;}
.fs36{font-size:38.755733pt;}
.fs31{font-size:40.169472pt;}
.fs2{font-size:40.381867pt;}
.fs1f{font-size:40.830053pt;}
.fs28{font-size:40.896000pt;}
.fs33{font-size:41.856640pt;}
.fs5{font-size:41.988267pt;}
.fs7{font-size:42.077867pt;}
.fs1a{font-size:42.432181pt;}
.fs9{font-size:42.507200pt;}
.fs1b{font-size:42.518331pt;}
.fs19{font-size:42.520581pt;}
.fs12{font-size:42.560000pt;}
.fs22{font-size:42.880000pt;}
.fs2b{font-size:43.115137pt;}
.fsb{font-size:43.200000pt;}
.fs2c{font-size:43.234901pt;}
.fs35{font-size:44.292800pt;}
.fs27{font-size:45.089085pt;}
.fs25{font-size:46.055154pt;}
.fs24{font-size:46.170291pt;}
.fsf{font-size:46.832769pt;}
.fse{font-size:46.930134pt;}
.fs10{font-size:47.002286pt;}
.fsc{font-size:47.808000pt;}
.fs4{font-size:47.820800pt;}
.fs2d{font-size:47.931655pt;}
.fs13{font-size:48.000000pt;}
.fs2e{font-size:48.025472pt;}
.fs20{font-size:49.117485pt;}
.fs21{font-size:49.829333pt;}
.fs16{font-size:51.928533pt;}
.fs17{font-size:52.117333pt;}
.fs26{font-size:52.117894pt;}
.fs23{font-size:53.120000pt;}
.fs0{font-size:53.133867pt;}
.fs14{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs1{font-size:95.641600pt;}
.y1f4{bottom:-571.234800pt;}
.y21c{bottom:-544.162800pt;}
.y21b{bottom:-528.034800pt;}
.y21a{bottom:-511.762800pt;}
.y219{bottom:-495.639600pt;}
.y218{bottom:-479.511600pt;}
.y217{bottom:-463.239600pt;}
.y216{bottom:-447.111600pt;}
.y129{bottom:-443.277600pt;}
.y215{bottom:-430.839600pt;}
.y13f{bottom:-419.373600pt;}
.y76{bottom:-418.724400pt;}
.y214{bottom:-414.711600pt;}
.y13e{bottom:-403.821600pt;}
.y213{bottom:-398.439600pt;}
.y98{bottom:-390.644400pt;}
.y1a4{bottom:-384.457333pt;}
.y13d{bottom:-384.237600pt;}
.y212{bottom:-382.311600pt;}
.y15a{bottom:-380.534299pt;}
.y97{bottom:-374.372400pt;}
.y152{bottom:-366.748941pt;}
.y211{bottom:-366.183600pt;}
.y96{bottom:-358.244400pt;}
.y210{bottom:-349.875600pt;}
.y1c9{bottom:-343.977333pt;}
.y95{bottom:-342.121200pt;}
.y153{bottom:-339.779658pt;}
.y20f{bottom:-333.747600pt;}
.y94{bottom:-325.849200pt;}
.y154{bottom:-312.810375pt;}
.y20e{bottom:-310.275600pt;}
.y1c8{bottom:-309.902667pt;}
.y93{bottom:-309.721200pt;}
.y15b{bottom:-301.483799pt;}
.y92{bottom:-293.449200pt;}
.y1c7{bottom:-291.982667pt;}
.y155{bottom:-285.841092pt;}
.y20d{bottom:-279.747600pt;}
.y91{bottom:-277.321200pt;}
.y1c6{bottom:-273.902667pt;}
.y90{bottom:-261.049200pt;}
.y156{bottom:-258.872855pt;}
.y1c5{bottom:-255.982667pt;}
.y20c{bottom:-249.075600pt;}
.y1c4{bottom:-237.902667pt;}
.y8f{bottom:-237.721200pt;}
.y15e{bottom:-233.653573pt;}
.y20b{bottom:-232.947600pt;}
.y157{bottom:-231.929730pt;}
.yaf{bottom:-228.393333pt;}
.y1c3{bottom:-219.982667pt;}
.y20a{bottom:-216.819600pt;}
.y8e{bottom:-205.861200pt;}
.y158{bottom:-204.955215pt;}
.y1c2{bottom:-202.062667pt;}
.yd4{bottom:-197.185173pt;}
.y15c{bottom:-193.208287pt;}
.y8d{bottom:-189.157200pt;}
.y209{bottom:-186.579600pt;}
.y1c1{bottom:-183.982667pt;}
.y15d{bottom:-183.534663pt;}
.y8b{bottom:-180.661200pt;}
.yd3{bottom:-179.189253pt;}
.y159{bottom:-177.991164pt;}
.y8c{bottom:-172.309200pt;}
.y208{bottom:-168.003600pt;}
.y1c0{bottom:-166.062667pt;}
.yd2{bottom:-161.167253pt;}
.y207{bottom:-154.467600pt;}
.y13c{bottom:-151.358400pt;}
.y8a{bottom:-148.117200pt;}
.y1bf{bottom:-147.942667pt;}
.yd1{bottom:-143.171333pt;}
.y206{bottom:-140.619600pt;}
.y13b{bottom:-135.086400pt;}
.y1be{bottom:-130.022667pt;}
.y205{bottom:-126.795600pt;}
.yd0{bottom:-125.175413pt;}
.y13a{bottom:-118.958400pt;}
.y89{bottom:-117.733200pt;}
.y204{bottom:-112.539600pt;}
.y1bd{bottom:-111.942667pt;}
.ycf{bottom:-107.179493pt;}
.y139{bottom:-102.686400pt;}
.y88{bottom:-101.605200pt;}
.y203{bottom:-90.075600pt;}
.yce{bottom:-89.263733pt;}
.y138{bottom:-86.558400pt;}
.y1bc{bottom:-86.022667pt;}
.y87{bottom:-85.333200pt;}
.y202{bottom:-74.523600pt;}
.ycd{bottom:-71.267813pt;}
.y137{bottom:-63.086400pt;}
.y86{bottom:-62.005200pt;}
.y201{bottom:-58.971600pt;}
.y169{bottom:-55.156200pt;}
.ycc{bottom:-53.271893pt;}
.y1bb{bottom:-52.582667pt;}
.y1ba{bottom:-35.142667pt;}
.y136{bottom:-32.990400pt;}
.y85{bottom:-31.765200pt;}
.y17f{bottom:-31.252200pt;}
.y200{bottom:-28.875600pt;}
.ycb{bottom:-27.273333pt;}
.y1b9{bottom:-17.862667pt;}
.y135{bottom:-17.414400pt;}
.y84{bottom:-16.213200pt;}
.y17e{bottom:-15.700200pt;}
.y1ff{bottom:-13.323600pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:0.809102pt;}
.ya3{bottom:1.497091pt;}
.y134{bottom:2.169600pt;}
.ye2{bottom:2.477333pt;}
.y1e{bottom:3.044747pt;}
.y83{bottom:3.370800pt;}
.y18a{bottom:3.530501pt;}
.y17d{bottom:3.883800pt;}
.y1b8{bottom:3.897333pt;}
.yc6{bottom:4.000000pt;}
.y1ab{bottom:4.160000pt;}
.y1d4{bottom:4.181041pt;}
.y22c{bottom:7.324527pt;}
.y1d{bottom:12.578910pt;}
.y1a8{bottom:13.440000pt;}
.ya0{bottom:14.130644pt;}
.ydd{bottom:16.467467pt;}
.y1fe{bottom:16.628400pt;}
.y14c{bottom:16.964032pt;}
.y182{bottom:17.315859pt;}
.y1cb{bottom:21.048741pt;}
.y22f{bottom:24.611557pt;}
.y9a{bottom:27.907851pt;}
.y141{bottom:29.450586pt;}
.y232{bottom:29.976996pt;}
.yc9{bottom:30.086667pt;}
.yd6{bottom:31.718667pt;}
.yc4{bottom:36.006667pt;}
.y22a{bottom:36.217896pt;}
.ya1{bottom:39.664726pt;}
.y1fd{bottom:39.956400pt;}
.y1da{bottom:40.846210pt;}
.y183{bottom:44.285142pt;}
.y1cc{bottom:44.565654pt;}
.yde{bottom:44.729600pt;}
.yc7{bottom:45.366667pt;}
.y142{bottom:48.058865pt;}
.y21f{bottom:51.996838pt;}
.y2f{bottom:56.693333pt;}
.y14d{bottom:59.484614pt;}
.ya2{bottom:59.941076pt;}
.y9b{bottom:60.695658pt;}
.y21e{bottom:61.128864pt;}
.y143{bottom:66.667144pt;}
.ye0{bottom:67.177867pt;}
.yd7{bottom:68.030400pt;}
.y1cd{bottom:68.082567pt;}
.y1fc{bottom:70.520400pt;}
.y184{bottom:71.254425pt;}
.yc3{bottom:72.246667pt;}
.y220{bottom:75.141283pt;}
.y1d5{bottom:80.056907pt;}
.y18b{bottom:82.581001pt;}
.y144{bottom:85.253324pt;}
.y1ce{bottom:91.570695pt;}
.y9c{bottom:93.507805pt;}
.yef{bottom:96.544000pt;}
.y1e0{bottom:97.050035pt;}
.y185{bottom:98.223708pt;}
.y221{bottom:98.285728pt;}
.y256{bottom:99.758667pt;}
.y22d{bottom:99.992369pt;}
.y1fb{bottom:101.048400pt;}
.y65{bottom:101.472000pt;}
.y2ae{bottom:103.650667pt;}
.y145{bottom:103.861603pt;}
.yd8{bottom:104.342000pt;}
.y2cd{bottom:104.594667pt;}
.yc2{bottom:106.016267pt;}
.y288{bottom:108.156000pt;}
.y333{bottom:114.066667pt;}
.yee{bottom:114.556000pt;}
.y1cf{bottom:115.085305pt;}
.y1f1{bottom:115.905333pt;}
.y190{bottom:117.297333pt;}
.y1df{bottom:117.545073pt;}
.y255{bottom:117.770667pt;}
.y64{bottom:119.484000pt;}
.y222{bottom:121.434964pt;}
.y2ad{bottom:121.662667pt;}
.y146{bottom:122.469882pt;}
.y300{bottom:123.205333pt;}
.yc1{bottom:124.012187pt;}
.y186{bottom:125.191945pt;}
.y22b{bottom:125.770430pt;}
.y2cc{bottom:126.073333pt;}
.y287{bottom:126.168000pt;}
.y9d{bottom:126.292691pt;}
.y21d{bottom:130.716694pt;}
.y332{bottom:131.281333pt;}
.y1fa{bottom:131.720400pt;}
.yec{bottom:132.568000pt;}
.y1dd{bottom:133.057004pt;}
.y1f0{bottom:133.917333pt;}
.y18f{bottom:134.393333pt;}
.y254{bottom:135.784000pt;}
.yed{bottom:137.390667pt;}
.y63{bottom:137.496000pt;}
.y11d{bottom:137.709333pt;}
.y1d0{bottom:138.607975pt;}
.y2cb{bottom:139.582667pt;}
.y2ac{bottom:139.674667pt;}
.y2ff{bottom:140.421333pt;}
.yd9{bottom:140.653733pt;}
.y147{bottom:141.078162pt;}
.yc0{bottom:142.008107pt;}
.y286{bottom:144.180000pt;}
.y223{bottom:144.609349pt;}
.y331{bottom:148.497333pt;}
.y18e{bottom:150.411227pt;}
.yeb{bottom:150.581333pt;}
.y1de{bottom:150.634514pt;}
.y1ef{bottom:151.930667pt;}
.y187{bottom:152.135070pt;}
.y2ca{bottom:153.092000pt;}
.y253{bottom:153.796000pt;}
.y167{bottom:154.331267pt;}
.y62{bottom:155.509333pt;}
.y11c{bottom:155.721333pt;}
.y2fe{bottom:157.636000pt;}
.y2ab{bottom:157.688000pt;}
.y181{bottom:158.387867pt;}
.ya5{bottom:158.861425pt;}
.y9e{bottom:159.085365pt;}
.y148{bottom:159.686441pt;}
.y151{bottom:161.763850pt;}
.y1d1{bottom:162.096103pt;}
.y285{bottom:162.193333pt;}
.y1f9{bottom:162.248400pt;}
.y1dc{bottom:162.634158pt;}
.y330{bottom:165.713333pt;}
.y2c9{bottom:166.601333pt;}
.y1d8{bottom:167.392446pt;}
.y224{bottom:167.747806pt;}
.ybf{bottom:168.006667pt;}
.yea{bottom:168.593333pt;}
.y1ed{bottom:169.942667pt;}
.y252{bottom:171.808000pt;}
.y1db{bottom:172.294956pt;}
.y61{bottom:173.521333pt;}
.y11a{bottom:173.734667pt;}
.y1ee{bottom:174.765333pt;}
.y2fd{bottom:174.852000pt;}
.y2aa{bottom:175.700000pt;}
.ye4{bottom:176.728533pt;}
.yda{bottom:176.965333pt;}
.ydc{bottom:176.965467pt;}
.y149{bottom:178.294720pt;}
.y11b{bottom:178.556000pt;}
.y188{bottom:179.109585pt;}
.y150{bottom:179.974327pt;}
.y284{bottom:180.205333pt;}
.ya4{bottom:182.745163pt;}
.y32f{bottom:182.928000pt;}
.y2e{bottom:183.618667pt;}
.y1d7{bottom:184.950973pt;}
.y1d2{bottom:185.607259pt;}
.ye9{bottom:186.606667pt;}
.y1ec{bottom:187.956000pt;}
.y2c8{bottom:188.081333pt;}
.y251{bottom:189.821333pt;}
.ye1{bottom:190.508133pt;}
.y18c{bottom:190.856513pt;}
.y225{bottom:190.898239pt;}
.y60{bottom:191.534667pt;}
.y119{bottom:191.746667pt;}
.y9f{bottom:191.897513pt;}
.y2fc{bottom:192.068000pt;}
.y1f8{bottom:192.920400pt;}
.y1d9{bottom:193.617834pt;}
.y2a9{bottom:193.713333pt;}
.y14a{bottom:196.903000pt;}
.y14f{bottom:198.167125pt;}
.y283{bottom:198.218667pt;}
.y32e{bottom:200.144000pt;}
.y18d{bottom:200.530137pt;}
.ybe{bottom:201.522667pt;}
.y1d6{bottom:202.509500pt;}
.ye3{bottom:203.160667pt;}
.ydf{bottom:203.760667pt;}
.ye8{bottom:204.618667pt;}
.y1eb{bottom:205.968000pt;}
.y189{bottom:206.073636pt;}
.y250{bottom:207.833333pt;}
.y1d3{bottom:209.129929pt;}
.y2fb{bottom:209.282667pt;}
.y5f{bottom:209.546667pt;}
.y2c7{bottom:209.561333pt;}
.y118{bottom:209.758667pt;}
.y2a8{bottom:211.725333pt;}
.ydb{bottom:213.277067pt;}
.y226{bottom:214.036696pt;}
.y230{bottom:214.970857pt;}
.y14b{bottom:215.511279pt;}
.y282{bottom:216.230667pt;}
.y32d{bottom:217.358667pt;}
.y2d{bottom:217.572000pt;}
.ybd{bottom:218.886667pt;}
.ye7{bottom:222.630667pt;}
.y82{bottom:223.030800pt;}
.y2c6{bottom:223.070667pt;}
.y1f7{bottom:223.448400pt;}
.y1ea{bottom:223.980000pt;}
.y24f{bottom:225.846667pt;}
.y2fa{bottom:226.498667pt;}
.y5e{bottom:227.558667pt;}
.y117{bottom:227.772000pt;}
.y2a7{bottom:229.737333pt;}
.y281{bottom:234.242667pt;}
.y32c{bottom:234.574667pt;}
.y2c{bottom:235.584000pt;}
.y2c5{bottom:236.580000pt;}
.y17c{bottom:236.763000pt;}
.y227{bottom:237.187129pt;}
.y81{bottom:239.302800pt;}
.ye6{bottom:240.644000pt;}
.ybc{bottom:240.661147pt;}
.y1e9{bottom:241.993333pt;}
.y2f9{bottom:243.713333pt;}
.y24e{bottom:243.858667pt;}
.y1b7{bottom:243.924000pt;}
.y133{bottom:245.277600pt;}
.y5d{bottom:245.572000pt;}
.y116{bottom:245.784000pt;}
.y2a6{bottom:247.750667pt;}
.y32b{bottom:251.790667pt;}
.y280{bottom:252.256000pt;}
.y17b{bottom:253.035000pt;}
.y2b{bottom:253.597333pt;}
.y1f6{bottom:254.120400pt;}
.y80{bottom:255.430800pt;}
.y1e8{bottom:260.005333pt;}
.y228{bottom:260.325585pt;}
.y2f8{bottom:260.929333pt;}
.y115{bottom:261.062667pt;}
.y132{bottom:261.549600pt;}
.y24d{bottom:261.870667pt;}
.y1b6{bottom:262.004000pt;}
.y5c{bottom:263.584000pt;}
.y114{bottom:263.797333pt;}
.y2a5{bottom:265.762667pt;}
.ye5{bottom:266.626667pt;}
.y2c4{bottom:268.658667pt;}
.y32a{bottom:269.005333pt;}
.y17a{bottom:269.163000pt;}
.y27f{bottom:270.268000pt;}
.y2a{bottom:271.609333pt;}
.y7f{bottom:271.702800pt;}
.y131{bottom:277.677600pt;}
.y1e7{bottom:278.018667pt;}
.y2f7{bottom:278.145333pt;}
.y113{bottom:279.074667pt;}
.y112{bottom:279.382667pt;}
.y24c{bottom:279.884000pt;}
.y1b5{bottom:279.924000pt;}
.y5b{bottom:281.597333pt;}
.y111{bottom:281.809333pt;}
.y229{bottom:283.476019pt;}
.y2a4{bottom:283.776000pt;}
.y1f5{bottom:284.672400pt;}
.y179{bottom:285.435000pt;}
.y329{bottom:286.221333pt;}
.y2c3{bottom:286.670667pt;}
.y7e{bottom:287.830800pt;}
.y29{bottom:289.622667pt;}
.y130{bottom:293.805600pt;}
.y2f6{bottom:295.360000pt;}
.y1e6{bottom:296.030667pt;}
.y27e{bottom:296.250667pt;}
.yad{bottom:296.904000pt;}
.y10f{bottom:297.097333pt;}
.y110{bottom:297.396000pt;}
.y24b{bottom:297.896000pt;}
.y1b4{bottom:298.004000pt;}
.y5a{bottom:299.609333pt;}
.y10e{bottom:299.821333pt;}
.yca{bottom:300.990667pt;}
.y178{bottom:301.563000pt;}
.y2a3{bottom:301.788000pt;}
.y328{bottom:303.437333pt;}
.y7d{bottom:303.958800pt;}
.y2c2{bottom:304.684000pt;}
.y28{bottom:307.634667pt;}
.y12f{bottom:310.077600pt;}
.y2f5{bottom:312.576000pt;}
.y1e5{bottom:314.042667pt;}
.y1f3{bottom:314.480400pt;}
.y10d{bottom:315.100000pt;}
.y24a{bottom:315.909333pt;}
.y1b3{bottom:315.924000pt;}
.y59{bottom:317.621333pt;}
.y10c{bottom:317.834667pt;}
.yc8{bottom:319.630667pt;}
.y2a2{bottom:319.800000pt;}
.y7c{bottom:320.230800pt;}
.y327{bottom:320.652000pt;}
.y2c1{bottom:322.696000pt;}
.y177{bottom:325.035000pt;}
.y27{bottom:325.646667pt;}
.y12e{bottom:326.205600pt;}
.y27d{bottom:327.201333pt;}
.y2f4{bottom:329.790667pt;}
.y249{bottom:333.921333pt;}
.y1b2{bottom:334.044000pt;}
.y58{bottom:335.634667pt;}
.y7b{bottom:336.358800pt;}
.y2a1{bottom:337.813333pt;}
.y326{bottom:337.868000pt;}
.yc5{bottom:338.270667pt;}
.y1e4{bottom:340.025333pt;}
.y2c0{bottom:340.709333pt;}
.y12d{bottom:342.477600pt;}
.y25{bottom:343.660000pt;}
.y27c{bottom:345.214667pt;}
.y2f3{bottom:347.006667pt;}
.y26{bottom:348.481333pt;}
.y10b{bottom:350.857333pt;}
.y248{bottom:351.933333pt;}
.y1b1{bottom:351.964000pt;}
.y57{bottom:353.646667pt;}
.y325{bottom:355.082667pt;}
.y176{bottom:355.131000pt;}
.y2a0{bottom:355.825333pt;}
.y12c{bottom:358.605600pt;}
.y2bf{bottom:358.721333pt;}
.y7a{bottom:359.830800pt;}
.y24{bottom:361.672000pt;}
.y27b{bottom:363.226667pt;}
.y2f2{bottom:364.222667pt;}
.y1e3{bottom:368.134667pt;}
.y1b0{bottom:369.884000pt;}
.y175{bottom:370.707000pt;}
.y56{bottom:371.660000pt;}
.y324{bottom:372.298667pt;}
.yac{bottom:373.193333pt;}
.y29f{bottom:373.838667pt;}
.y2be{bottom:376.733333pt;}
.y247{bottom:377.916000pt;}
.y23{bottom:379.685333pt;}
.y27a{bottom:381.238667pt;}
.y2f1{bottom:381.437333pt;}
.y12b{bottom:382.077600pt;}
.y10a{bottom:383.880000pt;}
.y1e2{bottom:385.230667pt;}
.y1af{bottom:387.964000pt;}
.y323{bottom:389.514667pt;}
.y55{bottom:389.672000pt;}
.y174{bottom:390.291000pt;}
.y79{bottom:390.358800pt;}
.y29e{bottom:391.850667pt;}
.y2bd{bottom:394.746667pt;}
.y166{bottom:396.317333pt;}
.y22{bottom:397.697333pt;}
.y2f0{bottom:398.653333pt;}
.y279{bottom:399.252000pt;}
.y109{bottom:401.893333pt;}
.y1e1{bottom:402.326667pt;}
.yab{bottom:405.501333pt;}
.y322{bottom:406.729333pt;}
.y54{bottom:407.684000pt;}
.y246{bottom:408.866667pt;}
.y29d{bottom:409.862667pt;}
.y12a{bottom:412.629600pt;}
.y2bc{bottom:412.758667pt;}
.y1ae{bottom:413.884000pt;}
.y165{bottom:414.330667pt;}
.y21{bottom:415.709333pt;}
.y2ef{bottom:415.868000pt;}
.y108{bottom:419.905333pt;}
.y78{bottom:421.030800pt;}
.y1a2{bottom:422.264000pt;}
.yaa{bottom:423.514667pt;}
.y321{bottom:423.945333pt;}
.y53{bottom:425.697333pt;}
.y1ca{bottom:426.921333pt;}
.y29c{bottom:427.876000pt;}
.y2bb{bottom:430.772000pt;}
.y164{bottom:432.342667pt;}
.y2ee{bottom:433.084000pt;}
.y20{bottom:433.722667pt;}
.y77{bottom:437.182800pt;}
.y107{bottom:437.918667pt;}
.y245{bottom:439.817333pt;}
.y278{bottom:441.004000pt;}
.y320{bottom:441.160000pt;}
.ya9{bottom:441.526667pt;}
.y128{bottom:442.437600pt;}
.y52{bottom:443.709333pt;}
.y29b{bottom:445.888000pt;}
.y2ba{bottom:448.784000pt;}
.y2ed{bottom:450.300000pt;}
.y163{bottom:450.356000pt;}
.y1f{bottom:451.734667pt;}
.y277{bottom:455.682667pt;}
.y244{bottom:457.830667pt;}
.y31f{bottom:458.376000pt;}
.y51{bottom:461.722667pt;}
.y106{bottom:463.901333pt;}
.y2b9{bottom:466.796000pt;}
.y75{bottom:466.990800pt;}
.ya8{bottom:467.509333pt;}
.y2ec{bottom:467.514667pt;}
.y162{bottom:468.368000pt;}
.y276{bottom:470.361333pt;}
.y31e{bottom:475.592000pt;}
.y243{bottom:475.842667pt;}
.y50{bottom:479.734667pt;}
.y29a{bottom:481.913333pt;}
.y1c{bottom:483.230634pt;}
.y1b{bottom:483.580000pt;}
.ybb{bottom:484.654827pt;}
.y2eb{bottom:484.730667pt;}
.y2b8{bottom:484.809333pt;}
.y275{bottom:485.038667pt;}
.y31d{bottom:492.806667pt;}
.y161{bottom:494.350667pt;}
.y105{bottom:494.852000pt;}
.ya7{bottom:494.945333pt;}
.y4f{bottom:497.746667pt;}
.y274{bottom:499.717333pt;}
.y299{bottom:499.925333pt;}
.y2ea{bottom:501.945333pt;}
.yba{bottom:502.650747pt;}
.y2b7{bottom:502.821333pt;}
.y31c{bottom:510.022667pt;}
.ya6{bottom:512.041333pt;}
.y104{bottom:512.864000pt;}
.y242{bottom:514.178667pt;}
.y273{bottom:514.396000pt;}
.y4d{bottom:515.760000pt;}
.y298{bottom:517.938667pt;}
.y1a{bottom:518.577333pt;}
.y2e9{bottom:519.161333pt;}
.y4e{bottom:520.581333pt;}
.yb9{bottom:520.670507pt;}
.y2b6{bottom:520.834667pt;}
.y160{bottom:522.460000pt;}
.y241{bottom:524.930667pt;}
.y240{bottom:526.798667pt;}
.y31b{bottom:527.237333pt;}
.y272{bottom:529.074667pt;}
.y23f{bottom:530.656000pt;}
.y103{bottom:530.876000pt;}
.y74{bottom:531.978667pt;}
.y4c{bottom:533.772000pt;}
.y19{bottom:534.717333pt;}
.y297{bottom:535.950667pt;}
.y99{bottom:536.021467pt;}
.y2e8{bottom:536.377333pt;}
.yd5{bottom:538.208000pt;}
.yb8{bottom:538.586267pt;}
.y2b5{bottom:538.846667pt;}
.y15f{bottom:539.556000pt;}
.y23e{bottom:543.126347pt;}
.y271{bottom:543.752000pt;}
.y31a{bottom:544.453333pt;}
.y23b{bottom:544.851147pt;}
.y23d{bottom:545.084107pt;}
.y180{bottom:545.318267pt;}
.y23c{bottom:548.496747pt;}
.y102{bottom:548.889333pt;}
.y1a6{bottom:549.404000pt;}
.y18{bottom:550.856000pt;}
.y4a{bottom:551.785333pt;}
.y2e7{bottom:553.592000pt;}
.yb7{bottom:556.582187pt;}
.y4b{bottom:556.606667pt;}
.y2b4{bottom:556.858667pt;}
.y23a{bottom:557.824107pt;}
.y270{bottom:558.430667pt;}
.y127{bottom:559.493333pt;}
.y319{bottom:561.669333pt;}
.y296{bottom:561.933333pt;}
.y140{bottom:562.358933pt;}
.y1a5{bottom:566.710667pt;}
.y101{bottom:566.901333pt;}
.y49{bottom:569.797333pt;}
.y239{bottom:570.387147pt;}
.y2e6{bottom:570.808000pt;}
.y17{bottom:571.336000pt;}
.y26f{bottom:573.109333pt;}
.yb6{bottom:574.578107pt;}
.y2b3{bottom:574.872000pt;}
.y318{bottom:578.884000pt;}
.y16{bottom:583.136000pt;}
.y100{bottom:584.914667pt;}
.y26e{bottom:587.788000pt;}
.y47{bottom:587.809333pt;}
.y2e5{bottom:588.024000pt;}
.y238{bottom:588.183947pt;}
.yb5{bottom:592.574027pt;}
.y48{bottom:592.632000pt;}
.y295{bottom:592.884000pt;}
.y317{bottom:596.100000pt;}
.y1a3{bottom:599.670667pt;}
.y26d{bottom:602.465333pt;}
.yff{bottom:602.926667pt;}
.y15{bottom:603.614667pt;}
.y2e4{bottom:605.238667pt;}
.y46{bottom:605.822667pt;}
.yb4{bottom:610.569947pt;}
.y294{bottom:610.896000pt;}
.y316{bottom:613.314667pt;}
.y237{bottom:614.034667pt;}
.y14{bottom:615.414667pt;}
.y26c{bottom:617.144000pt;}
.yfd{bottom:620.938667pt;}
.y2e3{bottom:622.454667pt;}
.y45{bottom:623.834667pt;}
.yfe{bottom:625.761333pt;}
.y293{bottom:628.909333pt;}
.y315{bottom:630.530667pt;}
.y236{bottom:631.130667pt;}
.y26b{bottom:631.822667pt;}
.y173{bottom:633.399000pt;}
.y13{bottom:635.893333pt;}
.yb3{bottom:636.568507pt;}
.yfc{bottom:638.952000pt;}
.y2e2{bottom:639.669333pt;}
.y44{bottom:641.846667pt;}
.y26a{bottom:646.501333pt;}
.y292{bottom:646.921333pt;}
.y12{bottom:647.693333pt;}
.y314{bottom:647.746667pt;}
.y235{bottom:648.226667pt;}
.y172{bottom:649.671000pt;}
.y2e1{bottom:656.885333pt;}
.yfb{bottom:656.964000pt;}
.y43{bottom:659.860000pt;}
.y269{bottom:661.178667pt;}
.y291{bottom:664.934667pt;}
.y313{bottom:664.961333pt;}
.y171{bottom:665.799000pt;}
.y1a1{bottom:667.818667pt;}
.y11{bottom:668.173333pt;}
.yb2{bottom:670.489547pt;}
.y2e0{bottom:674.101333pt;}
.y234{bottom:674.621333pt;}
.yfa{bottom:674.977333pt;}
.y42{bottom:677.872000pt;}
.y10{bottom:679.973333pt;}
.y170{bottom:681.927000pt;}
.y312{bottom:682.177333pt;}
.y267{bottom:682.193333pt;}
.y290{bottom:682.946667pt;}
.y1a0{bottom:685.832000pt;}
.y336{bottom:687.390667pt;}
.y266{bottom:689.498667pt;}
.y2b2{bottom:690.917333pt;}
.y2df{bottom:691.316000pt;}
.y233{bottom:691.716000pt;}
.yf9{bottom:692.989333pt;}
.y41{bottom:695.885333pt;}
.yf{bottom:696.112000pt;}
.y268{bottom:696.805333pt;}
.y16f{bottom:698.199000pt;}
.y311{bottom:699.392000pt;}
.y28f{bottom:700.958667pt;}
.y19f{bottom:703.844000pt;}
.yb1{bottom:704.490747pt;}
.y335{bottom:704.605333pt;}
.y2de{bottom:708.532000pt;}
.yf8{bottom:711.001333pt;}
.y1f2{bottom:711.653333pt;}
.ye{bottom:712.252000pt;}
.y40{bottom:713.897333pt;}
.y16e{bottom:714.327000pt;}
.y310{bottom:716.608000pt;}
.y28e{bottom:718.972000pt;}
.y334{bottom:721.821333pt;}
.y19e{bottom:721.857333pt;}
.y2b1{bottom:721.868000pt;}
.yb0{bottom:722.486667pt;}
.y265{bottom:724.910667pt;}
.y2dd{bottom:725.746667pt;}
.yf7{bottom:729.014667pt;}
.y16d{bottom:730.599000pt;}
.y3f{bottom:731.909333pt;}
.yd{bottom:732.730667pt;}
.y30f{bottom:733.824000pt;}
.y28d{bottom:736.984000pt;}
.y19d{bottom:739.869333pt;}
.y2b0{bottom:739.880000pt;}
.y2dc{bottom:742.962667pt;}
.yc{bottom:744.530667pt;}
.y16c{bottom:746.727000pt;}
.yf6{bottom:747.026667pt;}
.y3e{bottom:749.922667pt;}
.y30e{bottom:751.038667pt;}
.y28c{bottom:754.997333pt;}
.yae{bottom:755.686667pt;}
.y19c{bottom:757.881333pt;}
.y264{bottom:757.892000pt;}
.y73{bottom:760.070667pt;}
.y2db{bottom:760.178667pt;}
.yb{bottom:760.670667pt;}
.yf5{bottom:765.038667pt;}
.y3d{bottom:767.934667pt;}
.y30d{bottom:768.254667pt;}
.y16b{bottom:770.199000pt;}
.y28b{bottom:773.009333pt;}
.y19b{bottom:775.894667pt;}
.y263{bottom:775.905333pt;}
.y2da{bottom:777.393333pt;}
.y72{bottom:778.084000pt;}
.ya{bottom:781.149333pt;}
.yf4{bottom:783.052000pt;}
.y30c{bottom:785.469333pt;}
.y3c{bottom:785.948000pt;}
.y22e{bottom:790.058193pt;}
.y28a{bottom:791.021333pt;}
.y9{bottom:792.949333pt;}
.y19a{bottom:793.906667pt;}
.y262{bottom:793.917333pt;}
.y2d9{bottom:794.609333pt;}
.y70{bottom:796.096000pt;}
.y16a{bottom:800.751000pt;}
.y71{bottom:800.918667pt;}
.y30b{bottom:802.685333pt;}
.y3b{bottom:803.960000pt;}
.yf3{bottom:809.034667pt;}
.y8{bottom:809.089333pt;}
.y2d8{bottom:811.824000pt;}
.y199{bottom:811.920000pt;}
.y260{bottom:811.930667pt;}
.y6f{bottom:814.109333pt;}
.y261{bottom:816.752000pt;}
.y289{bottom:817.004000pt;}
.y30a{bottom:819.901333pt;}
.y3a{bottom:821.972000pt;}
.y126{bottom:827.046667pt;}
.y2d7{bottom:829.040000pt;}
.y7{bottom:829.568000pt;}
.y25f{bottom:829.942667pt;}
.y168{bottom:830.559000pt;}
.y6d{bottom:832.121333pt;}
.y6e{bottom:836.942667pt;}
.y309{bottom:837.116000pt;}
.y198{bottom:837.902667pt;}
.y39{bottom:839.985333pt;}
.y125{bottom:845.060000pt;}
.y2d6{bottom:846.256000pt;}
.y25d{bottom:847.954667pt;}
.y6{bottom:849.338667pt;}
.y6b{bottom:850.133333pt;}
.y25e{bottom:852.777333pt;}
.y308{bottom:854.332000pt;}
.y6c{bottom:854.956000pt;}
.y38{bottom:857.997333pt;}
.y123{bottom:863.072000pt;}
.y2d5{bottom:863.470667pt;}
.y25c{bottom:865.968000pt;}
.y5{bottom:867.350667pt;}
.y1ad{bottom:867.508000pt;}
.y124{bottom:867.893333pt;}
.y6a{bottom:868.146667pt;}
.y307{bottom:871.546667pt;}
.y37{bottom:876.010667pt;}
.y197{bottom:876.652000pt;}
.y2d4{bottom:880.686667pt;}
.y122{bottom:881.084000pt;}
.y25b{bottom:883.980000pt;}
.y4{bottom:885.364000pt;}
.y1ac{bottom:885.428000pt;}
.y69{bottom:886.158667pt;}
.y306{bottom:888.762667pt;}
.y2af{bottom:888.802667pt;}
.y196{bottom:891.330667pt;}
.y36{bottom:894.022667pt;}
.y2d3{bottom:897.901333pt;}
.y121{bottom:899.097333pt;}
.y231{bottom:899.641301pt;}
.y25a{bottom:901.993333pt;}
.y1aa{bottom:903.348000pt;}
.y305{bottom:905.978667pt;}
.y195{bottom:906.009333pt;}
.y35{bottom:912.034667pt;}
.y68{bottom:912.141333pt;}
.y2d2{bottom:915.117333pt;}
.yf2{bottom:916.857333pt;}
.y120{bottom:917.109333pt;}
.y259{bottom:920.005333pt;}
.y1a7{bottom:922.068000pt;}
.y304{bottom:923.193333pt;}
.y3{bottom:925.198667pt;}
.y194{bottom:927.089333pt;}
.y34{bottom:930.048000pt;}
.y2d1{bottom:932.333333pt;}
.yf1{bottom:934.869333pt;}
.y11f{bottom:935.122667pt;}
.y258{bottom:938.017333pt;}
.y193{bottom:939.602667pt;}
.y303{bottom:940.409333pt;}
.y1a9{bottom:940.788000pt;}
.y67{bottom:943.092000pt;}
.y33{bottom:948.060000pt;}
.y2d0{bottom:949.548000pt;}
.y2{bottom:952.217333pt;}
.y257{bottom:956.030667pt;}
.y302{bottom:957.624000pt;}
.y11e{bottom:961.105333pt;}
.y32{bottom:966.073333pt;}
.y2cf{bottom:966.764000pt;}
.yf0{bottom:970.894667pt;}
.y66{bottom:974.042667pt;}
.y301{bottom:974.840000pt;}
.y192{bottom:976.276000pt;}
.y1{bottom:977.906667pt;}
.y2ce{bottom:991.949333pt;}
.y31{bottom:992.056000pt;}
.y191{bottom:993.372000pt;}
.y30{bottom:1038.548000pt;}
.h4e{height:-293.982667pt;}
.h4c{height:-275.262667pt;}
.h4f{height:-256.542667pt;}
.h51{height:-238.622667pt;}
.h52{height:-220.702667pt;}
.h1e{height:-193.333200pt;}
.h30{height:-178.113333pt;}
.h1d{height:-176.629200pt;}
.h46{height:-170.012400pt;}
.h3f{height:-169.262662pt;}
.h1c{height:-159.781200pt;}
.h60{height:-143.638800pt;}
.h5f{height:-129.819600pt;}
.h5d{height:-116.139600pt;}
.h5b{height:-101.739600pt;}
.h2f{height:17.921333pt;}
.h2c{height:18.000000pt;}
.h2e{height:22.625000pt;}
.ha{height:22.673858pt;}
.h6e{height:22.838358pt;}
.h70{height:23.049626pt;}
.h2d{height:23.281250pt;}
.h72{height:23.304670pt;}
.h36{height:25.026051pt;}
.h6a{height:26.582054pt;}
.h68{height:26.692812pt;}
.h7{height:27.188522pt;}
.h62{height:27.855562pt;}
.h6f{height:27.876522pt;}
.h13{height:28.023859pt;}
.h6c{height:29.363884pt;}
.hc{height:29.433775pt;}
.hf{height:29.519145pt;}
.h37{height:29.599908pt;}
.h61{height:29.973094pt;}
.hb{height:30.399505pt;}
.h26{height:31.067969pt;}
.h71{height:31.072763pt;}
.h11{height:31.157778pt;}
.h59{height:34.081007pt;}
.h24{height:34.574438pt;}
.h41{height:34.835597pt;}
.h40{height:34.932362pt;}
.h9{height:34.957005pt;}
.h19{height:35.038969pt;}
.h2b{height:35.039062pt;}
.h44{height:35.052646pt;}
.h34{height:35.165578pt;}
.h15{height:35.897344pt;}
.h6d{height:36.488918pt;}
.h6b{height:36.592897pt;}
.h10{height:36.873667pt;}
.h43{height:37.125911pt;}
.h67{height:37.725745pt;}
.h42{height:37.759824pt;}
.h5e{height:37.820812pt;}
.h5c{height:38.040469pt;}
.hd{height:38.415786pt;}
.h2a{height:38.462187pt;}
.he{height:38.840857pt;}
.h29{height:38.879687pt;}
.h53{height:38.932188pt;}
.h2{height:38.947124pt;}
.h28{height:39.010156pt;}
.h63{height:39.873080pt;}
.h4a{height:39.885937pt;}
.h1b{height:39.951563pt;}
.h64{height:39.983839pt;}
.h1a{height:40.183594pt;}
.h3d{height:41.644865pt;}
.h3e{height:41.729417pt;}
.h3c{height:41.731625pt;}
.h16{height:42.398438pt;}
.h57{height:42.592022pt;}
.h56{height:42.698502pt;}
.h69{height:43.115137pt;}
.h8{height:43.660390pt;}
.h17{height:44.213062pt;}
.h65{height:44.327419pt;}
.h54{height:44.390625pt;}
.h66{height:44.414181pt;}
.h18{height:44.469844pt;}
.h4b{height:44.648438pt;}
.h21{height:45.963801pt;}
.h20{height:46.059360pt;}
.h23{height:46.402122pt;}
.h22{height:46.441204pt;}
.h38{height:46.580334pt;}
.h27{height:47.109375pt;}
.h35{height:47.309193pt;}
.h58{height:48.198873pt;}
.h6{height:48.481423pt;}
.h12{height:48.511220pt;}
.h39{height:48.804478pt;}
.h50{height:49.125625pt;}
.h5{height:49.201961pt;}
.h4d{height:49.410937pt;}
.h31{height:50.965016pt;}
.h32{height:50.965549pt;}
.h33{height:51.150312pt;}
.h25{height:63.190667pt;}
.h74{height:63.795772pt;}
.h73{height:63.944567pt;}
.h48{height:68.984567pt;}
.h4{height:69.148877pt;}
.h3{height:69.435802pt;}
.h1f{height:201.001180pt;}
.h14{height:207.753600pt;}
.h47{height:214.802138pt;}
.h55{height:219.337098pt;}
.h45{height:220.974600pt;}
.h3b{height:224.395517pt;}
.h49{height:224.541333pt;}
.h3a{height:228.529200pt;}
.h5a{height:293.688000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:-7.774800pt;}
.wd{width:-6.387600pt;}
.w28{width:17.539200pt;}
.w2f{width:18.607200pt;}
.w2a{width:29.808000pt;}
.w5{width:32.257200pt;}
.w1a{width:33.680000pt;}
.wc{width:33.824400pt;}
.w7{width:33.840000pt;}
.w8{width:33.984000pt;}
.wb{width:34.128000pt;}
.w2b{width:37.152000pt;}
.w14{width:37.680000pt;}
.w13{width:37.758667pt;}
.w15{width:37.760000pt;}
.w16{width:37.920000pt;}
.wa{width:39.916800pt;}
.w9{width:40.032000pt;}
.w6{width:40.060800pt;}
.w2c{width:40.204800pt;}
.w12{width:44.400000pt;}
.w17{width:44.560000pt;}
.w2e{width:62.236800pt;}
.w2{width:66.991004pt;}
.wf{width:67.952400pt;}
.w2d{width:72.288000pt;}
.w25{width:72.812000pt;}
.w23{width:91.872000pt;}
.w24{width:102.880000pt;}
.w29{width:114.940800pt;}
.w19{width:120.400000pt;}
.w21{width:187.806667pt;}
.w30{width:241.158113pt;}
.w22{width:267.558667pt;}
.w31{width:283.995053pt;}
.we{width:288.061200pt;}
.w18{width:328.560000pt;}
.w10{width:347.572621pt;}
.w1e{width:354.311631pt;}
.w3{width:356.013600pt;}
.w1f{width:360.735600pt;}
.w1d{width:372.864860pt;}
.w1c{width:381.039600pt;}
.w1b{width:386.200000pt;}
.w27{width:422.589600pt;}
.w26{width:450.000071pt;}
.w20{width:455.378667pt;}
.w11{width:488.208000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x50{left:-86.106000pt;}
.xb2{left:-83.745600pt;}
.xa5{left:-73.357200pt;}
.xc4{left:-66.294667pt;}
.x51{left:-60.618000pt;}
.xb3{left:-58.257600pt;}
.x6b{left:-50.268000pt;}
.xd9{left:-49.276800pt;}
.xa6{left:-47.869200pt;}
.xc5{left:-37.974667pt;}
.xe3{left:-35.596800pt;}
.xe2{left:-33.580800pt;}
.x54{left:-31.534800pt;}
.x62{left:-30.382800pt;}
.xdb{left:-26.092800pt;}
.xda{left:-23.788800pt;}
.x6c{left:-21.958160pt;}
.xcd{left:-5.020000pt;}
.x63{left:-1.294800pt;}
.x0{left:0.000000pt;}
.xde{left:1.728000pt;}
.xb7{left:3.487991pt;}
.x61{left:6.480000pt;}
.x5f{left:7.632000pt;}
.x56{left:9.216000pt;}
.x5a{left:10.368000pt;}
.x74{left:11.440000pt;}
.x5c{left:12.384000pt;}
.x58{left:13.680000pt;}
.x53{left:14.977200pt;}
.x55{left:16.272000pt;}
.x72{left:18.080000pt;}
.x65{left:19.274846pt;}
.x7f{left:21.332800pt;}
.xb5{left:22.820545pt;}
.xcc{left:24.960000pt;}
.x6{left:26.021437pt;}
.x7e{left:27.847467pt;}
.xad{left:30.301432pt;}
.xe1{left:33.120000pt;}
.x70{left:35.280000pt;}
.xdc{left:36.288000pt;}
.xb6{left:44.876929pt;}
.x66{left:48.272618pt;}
.xaa{left:50.003329pt;}
.xc8{left:51.200000pt;}
.x80{left:53.488400pt;}
.xcb{left:58.340000pt;}
.xe4{left:59.706840pt;}
.x6e{left:62.052000pt;}
.xc6{left:66.980000pt;}
.x6f{left:68.132000pt;}
.xe6{left:73.936550pt;}
.xae{left:77.767252pt;}
.x1{left:101.569333pt;}
.x4{left:108.542667pt;}
.x2{left:109.606667pt;}
.x9b{left:110.866667pt;}
.xf1{left:112.366027pt;}
.xef{left:114.844587pt;}
.x60{left:116.245200pt;}
.x9c{left:120.458667pt;}
.xeb{left:122.154827pt;}
.x3{left:129.464000pt;}
.x16{left:130.393333pt;}
.x95{left:131.381333pt;}
.x84{left:134.281333pt;}
.x7a{left:137.760000pt;}
.x85{left:139.993333pt;}
.x96{left:141.540000pt;}
.x43{left:143.953333pt;}
.x97{left:147.898667pt;}
.x8f{left:150.300000pt;}
.x6a{left:152.746667pt;}
.x7c{left:155.918667pt;}
.x44{left:157.104000pt;}
.x82{left:159.746800pt;}
.xc0{left:161.444000pt;}
.xd3{left:164.008000pt;}
.x90{left:165.194667pt;}
.xc3{left:169.161333pt;}
.x7{left:170.137333pt;}
.x11f{left:171.082667pt;}
.xcf{left:172.621333pt;}
.x8c{left:174.161333pt;}
.xb9{left:175.532000pt;}
.x26{left:176.913333pt;}
.xd4{left:178.990667pt;}
.x69{left:181.248000pt;}
.xea{left:182.564000pt;}
.x10d{left:184.308000pt;}
.xbb{left:185.513333pt;}
.x8d{left:187.445333pt;}
.x10b{left:188.932000pt;}
.x27{left:190.196000pt;}
.xb8{left:193.779668pt;}
.xe5{left:194.963978pt;}
.xf2{left:197.529707pt;}
.x35{left:198.758667pt;}
.x14{left:201.490667pt;}
.x9e{left:203.202667pt;}
.x40{left:204.416000pt;}
.x68{left:205.598357pt;}
.x114{left:206.950667pt;}
.x9f{left:208.914667pt;}
.xd1{left:210.254205pt;}
.xa9{left:211.594000pt;}
.x15{left:216.278667pt;}
.x41{left:217.566667pt;}
.x36{left:218.565333pt;}
.xe7{left:219.828523pt;}
.xac{left:220.954000pt;}
.xfc{left:222.094667pt;}
.xf3{left:222.987307pt;}
.x64{left:224.222533pt;}
.x129{left:225.473333pt;}
.x24{left:226.368000pt;}
.x83{left:227.930533pt;}
.xe9{left:230.649094pt;}
.x71{left:233.998667pt;}
.xaf{left:236.148000pt;}
.x8{left:238.070667pt;}
.x25{left:239.652000pt;}
.x37{left:244.841333pt;}
.x93{left:246.316000pt;}
.xd7{left:247.565333pt;}
.xf4{left:249.107947pt;}
.x106{left:250.268000pt;}
.x28{left:251.209333pt;}
.x119{left:253.557333pt;}
.x9{left:256.089333pt;}
.x8e{left:257.296000pt;}
.xf5{left:260.175787pt;}
.xd8{left:261.798667pt;}
.x38{left:264.648000pt;}
.x107{left:267.622667pt;}
.x29{left:268.554667pt;}
.xf6{left:270.945707pt;}
.xfd{left:273.477333pt;}
.x111{left:276.957333pt;}
.x73{left:278.398667pt;}
.xfe{left:280.118667pt;}
.xa{left:282.365333pt;}
.xe8{left:283.519625pt;}
.xf7{left:285.923467pt;}
.x112{left:287.997333pt;}
.xf8{left:290.386667pt;}
.x45{left:291.398667pt;}
.x108{left:293.001333pt;}
.x2a{left:294.420000pt;}
.x11d{left:296.082667pt;}
.x109{left:298.218667pt;}
.xb{left:300.384000pt;}
.x113{left:301.281333pt;}
.xc{left:305.061333pt;}
.x1e{left:306.694667pt;}
.xd2{left:308.729389pt;}
.x1f{left:309.992000pt;}
.x2b{left:311.765333pt;}
.xab{left:314.750805pt;}
.xd{left:315.986667pt;}
.x46{left:317.809333pt;}
.x86{left:319.570667pt;}
.x49{left:325.202667pt;}
.x10e{left:326.673333pt;}
.x2c{left:329.489333pt;}
.x4a{left:332.228000pt;}
.x115{left:337.332000pt;}
.x101{left:338.808000pt;}
.x10f{left:339.956000pt;}
.x42{left:342.066667pt;}
.x67{left:343.702994pt;}
.x7d{left:345.012000pt;}
.x4e{left:346.081333pt;}
.xdd{left:347.847733pt;}
.x3c{left:349.025333pt;}
.x116{left:350.614667pt;}
.x52{left:353.041200pt;}
.xba{left:354.650667pt;}
.x3d{left:355.666667pt;}
.xc7{left:356.981333pt;}
.x57{left:358.994533pt;}
.x4f{left:360.097333pt;}
.xb4{left:368.217600pt;}
.xa8{left:369.246000pt;}
.x33{left:374.922667pt;}
.x81{left:376.983600pt;}
.xa7{left:378.606000pt;}
.x34{left:381.564000pt;}
.x123{left:382.460000pt;}
.xdf{left:384.999733pt;}
.x4b{left:387.700000pt;}
.xec{left:388.933227pt;}
.x59{left:399.026533pt;}
.x4c{left:401.070667pt;}
.x98{left:405.982667pt;}
.xd0{left:406.990282pt;}
.x4d{left:408.097333pt;}
.x2f{left:411.652000pt;}
.x99{left:415.592000pt;}
.xbc{left:416.504000pt;}
.x10a{left:422.806667pt;}
.x11c{left:424.728000pt;}
.x10{left:426.714667pt;}
.x30{left:429.456000pt;}
.xbd{left:430.764000pt;}
.x1b{left:432.480000pt;}
.x6d{left:437.567680pt;}
.x1c{left:438.989333pt;}
.x11{left:440.968000pt;}
.x75{left:442.638667pt;}
.x1d{left:445.630667pt;}
.xc9{left:448.848000pt;}
.xce{left:453.486667pt;}
.x31{left:455.732000pt;}
.x12{left:462.520000pt;}
.x7b{left:466.212000pt;}
.x32{left:469.746667pt;}
.x94{left:470.945333pt;}
.x22{left:472.454667pt;}
.x13{left:476.752000pt;}
.x23{left:479.097333pt;}
.x76{left:480.398667pt;}
.x2d{left:481.318667pt;}
.xf9{left:484.026667pt;}
.x121{left:485.001333pt;}
.x117{left:486.622667pt;}
.x2e{left:487.960000pt;}
.xfa{left:491.332000pt;}
.x87{left:495.548000pt;}
.x122{left:498.285333pt;}
.x118{left:499.905333pt;}
.x88{left:501.598667pt;}
.x5b{left:506.906533pt;}
.x19{left:508.368000pt;}
.xa0{left:510.630667pt;}
.x1a{left:515.010667pt;}
.x77{left:518.158667pt;}
.x3e{left:528.116000pt;}
.x89{left:529.588000pt;}
.xfb{left:537.693333pt;}
.x3f{left:539.041333pt;}
.x5d{left:541.034533pt;}
.x8a{left:546.909333pt;}
.xed{left:548.389867pt;}
.xca{left:551.728000pt;}
.x8b{left:552.958667pt;}
.xc1{left:554.532000pt;}
.x78{left:556.078667pt;}
.x11e{left:557.352000pt;}
.x11a{left:558.332000pt;}
.xc2{left:568.792000pt;}
.x11b{left:571.614667pt;}
.x3a{left:573.744000pt;}
.xa1{left:576.209333pt;}
.x5e{left:581.246533pt;}
.x3b{left:587.026667pt;}
.xe0{left:589.539733pt;}
.xa2{left:593.550667pt;}
.x20{left:598.905333pt;}
.x79{left:600.638667pt;}
.x124{left:603.321333pt;}
.x21{left:605.546667pt;}
.x102{left:606.989333pt;}
.x47{left:611.497333pt;}
.x127{left:612.894667pt;}
.xf0{left:617.158987pt;}
.xa3{left:619.084000pt;}
.x120{left:620.550667pt;}
.x5{left:623.413317pt;}
.x48{left:624.648000pt;}
.x125{left:627.232000pt;}
.xff{left:628.202667pt;}
.x110{left:630.324000pt;}
.x103{left:632.624000pt;}
.x100{left:634.844000pt;}
.xa4{left:636.425333pt;}
.xe{left:637.360000pt;}
.xee{left:640.477387pt;}
.xd5{left:642.694667pt;}
.x128{left:646.852000pt;}
.xbe{left:647.940000pt;}
.xb0{left:650.000000pt;}
.xf{left:650.989333pt;}
.x104{left:654.525333pt;}
.xd6{left:657.677333pt;}
.x9d{left:660.860000pt;}
.xbf{left:662.200000pt;}
.xb1{left:664.246667pt;}
.x105{left:665.450667pt;}
.x91{left:670.614667pt;}
.x39{left:672.340000pt;}
.x9a{left:674.204000pt;}
.x17{left:679.437333pt;}
.x92{left:682.137333pt;}
.x18{left:686.078667pt;}
.x10c{left:687.141333pt;}
.x126{left:690.124000pt;}
}


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