
/* 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_28952b960ac3.woff")format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_17eb45864977.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_8103965a15bf.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a582feb14dd3.woff")format("woff");}.ff4{font-family:ff4;line-height:0.494000;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_a58f7836026f.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_1ae56354975e.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_79dcdc6f476d.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_78f19bc3642b.woff")format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_c808c17b70c7.woff")format("woff");}.ff9{font-family:ff9;line-height:0.488000;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_9ffd037e318c.woff")format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_a12868b5669d.woff")format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_df0ee2e686e4.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_45ad1ace6305.woff")format("woff");}.ffd{font-family:ffd;line-height:1.208496;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_a7a987b688b6.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_7d2bf4ba56b8.woff")format("woff");}.fff{font-family:fff;line-height:0.493000;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_8d03344d4d54.woff")format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_c8d2104284fc.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_175e448c46df.woff")format("woff");}.ff12{font-family:ff12;line-height:1.208496;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_9e24ef9cb0e7.woff")format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_d3a36a2500ed.woff")format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_c72222c24f64.woff")format("woff");}.ff15{font-family:ff15;line-height:1.208496;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_9e24ef9cb0e7.woff")format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_cb174d9f862c.woff")format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_9caa247d891e.woff")format("woff");}.ff18{font-family:ff18;line-height:1.208496;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_953a6b47a73c.woff")format("woff");}.ff19{font-family:ff19;line-height:0.915000;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;}
.m1{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);}
.m29{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);}
.m17{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);}
.m13{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);}
.m1a{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);}
.me{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);}
.m26{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);}
.mc{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);}
.m23{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);}
.m1b{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);}
.m12{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);}
.m1f{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);}
.m6{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);}
.m1d{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);}
.m11{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);}
.m28{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);}
.ma{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);}
.m25{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);}
.m27{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);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.md{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);}
.m9{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);}
.m21{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);}
.m18{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);}
.m1c{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);}
.m4{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);}
.m16{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);}
.m14{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);}
.m20{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);}
.m10{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);}
.m7{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);}
.m5{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);}
.m2{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);}
.mb{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);}
.m24{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.494000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000456px;}
.ls30{letter-spacing:0.000566px;}
.ls1e{letter-spacing:0.000683px;}
.ls2b{letter-spacing:0.000800px;}
.ls38{letter-spacing:0.001525px;}
.ls3a{letter-spacing:0.001584px;}
.ls0{letter-spacing:0.002567px;}
.ls32{letter-spacing:0.002618px;}
.lsc{letter-spacing:0.002728px;}
.ls1d{letter-spacing:0.002888px;}
.ls20{letter-spacing:0.002999px;}
.ls39{letter-spacing:0.003155px;}
.ls22{letter-spacing:0.003986px;}
.ls21{letter-spacing:0.004200px;}
.ls26{letter-spacing:0.004560px;}
.lsb{letter-spacing:0.004665px;}
.ls27{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.119700px;}
.ls18{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.151200px;}
.ls10{letter-spacing:0.239400px;}
.lse{letter-spacing:0.342000px;}
.ls17{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.748483px;}
.ls9{letter-spacing:1.275394px;}
.ls16{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.861130px;}
.ls1c{letter-spacing:2.828160px;}
.ls1b{letter-spacing:2.834160px;}
.ls1{letter-spacing:2.989200px;}
.ls4{letter-spacing:10.455300px;}
.lsa{letter-spacing:11.954850px;}
.ls7{letter-spacing:11.960850px;}
.ls34{letter-spacing:12.901420px;}
.ls31{letter-spacing:13.221673px;}
.ls23{letter-spacing:13.275523px;}
.ls28{letter-spacing:13.281012px;}
.ls3d{letter-spacing:13.292749px;}
.ls2d{letter-spacing:13.317747px;}
.ls29{letter-spacing:13.336961px;}
.ls24{letter-spacing:13.448400px;}
.ls25{letter-spacing:13.454400px;}
.ls37{letter-spacing:13.472244px;}
.ls36{letter-spacing:13.541337px;}
.ls2c{letter-spacing:13.591576px;}
.ls3c{letter-spacing:13.650299px;}
.ls3b{letter-spacing:13.844518px;}
.ls2f{letter-spacing:14.420988px;}
.ls14{letter-spacing:14.645022px;}
.ls15{letter-spacing:14.704798px;}
.ls2a{letter-spacing:15.197459px;}
.ls11{letter-spacing:15.302554px;}
.ls2e{letter-spacing:15.562165px;}
.ls33{letter-spacing:17.215106px;}
.ls2{letter-spacing:17.929200px;}
.ls35{letter-spacing:17.973929px;}
.ls1a{letter-spacing:19.008641px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws45{word-spacing:-45.088735px;}
.ws76{word-spacing:-40.580133px;}
.ws90{word-spacing:-16.200000px;}
.ws2e{word-spacing:-14.943900px;}
.ws68{word-spacing:-14.940000px;}
.ws8f{word-spacing:-14.471820px;}
.ws9d{word-spacing:-13.518000px;}
.ws9c{word-spacing:-13.500000px;}
.ws81{word-spacing:-13.449600px;}
.ws67{word-spacing:-12.059850px;}
.ws30{word-spacing:-11.955150px;}
.ws7d{word-spacing:-11.456857px;}
.ws1{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws91{word-spacing:-9.935820px;}
.ws7e{word-spacing:-7.865857px;}
.wsd3{word-spacing:-3.108331px;}
.ws2d{word-spacing:-2.869229px;}
.wscc{word-spacing:-2.630126px;}
.ws47{word-spacing:-2.391024px;}
.ws98{word-spacing:-2.331248px;}
.wsab{word-spacing:-2.211697px;}
.ws74{word-spacing:-2.151922px;}
.ws53{word-spacing:-2.092146px;}
.wsa1{word-spacing:-2.032370px;}
.wsc3{word-spacing:-1.972595px;}
.wsb1{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws69{word-spacing:-1.882944px;}
.wsd1{word-spacing:-1.853044px;}
.wsaa{word-spacing:-1.793268px;}
.ws7f{word-spacing:-1.775347px;}
.wsae{word-spacing:-1.733492px;}
.ws32{word-spacing:-1.673717px;}
.ws15{word-spacing:-1.613952px;}
.ws97{word-spacing:-1.613941px;}
.ws63{word-spacing:-1.554166px;}
.ws21{word-spacing:-1.506355px;}
.ws2b{word-spacing:-1.434614px;}
.wsa9{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws65{word-spacing:-1.315063px;}
.ws54{word-spacing:-1.255288px;}
.ws64{word-spacing:-1.195512px;}
.wsb0{word-spacing:-1.135736px;}
.ws114{word-spacing:-1.129766px;}
.ws37{word-spacing:-1.075961px;}
.ws99{word-spacing:-1.016185px;}
.ws48{word-spacing:-0.956410px;}
.ws6b{word-spacing:-0.914573px;}
.ws8d{word-spacing:-0.896634px;}
.ws113{word-spacing:-0.860774px;}
.ws4c{word-spacing:-0.836858px;}
.ws102{word-spacing:-0.753178px;}
.ws5a{word-spacing:-0.717307px;}
.wse8{word-spacing:-0.699379px;}
.ws42{word-spacing:-0.657532px;}
.wsa7{word-spacing:-0.597756px;}
.ws103{word-spacing:-0.537984px;}
.ws43{word-spacing:-0.478205px;}
.ws70{word-spacing:-0.418429px;}
.ws66{word-spacing:-0.358654px;}
.wsa0{word-spacing:-0.322790px;}
.ws72{word-spacing:-0.298878px;}
.ws20{word-spacing:-0.268992px;}
.ws39{word-spacing:-0.239102px;}
.wse0{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.041843px;}
.ws11f{word-spacing:-0.008438px;}
.wse3{word-spacing:-0.007219px;}
.ws9a{word-spacing:-0.005165px;}
.wse9{word-spacing:-0.005088px;}
.ws44{word-spacing:-0.004652px;}
.ws2f{word-spacing:-0.004274px;}
.wsf2{word-spacing:-0.002794px;}
.ws101{word-spacing:-0.002342px;}
.ws3b{word-spacing:-0.002008px;}
.ws3a{word-spacing:-0.001991px;}
.wse7{word-spacing:-0.001459px;}
.wsfd{word-spacing:-0.000998px;}
.ws117{word-spacing:-0.000806px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.001733px;}
.wsea{word-spacing:0.001978px;}
.ws92{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.wsdb{word-spacing:0.107597px;}
.ws35{word-spacing:0.109879px;}
.ws34{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws2c{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.ws80{word-spacing:0.215194px;}
.ws3e{word-spacing:0.239102px;}
.ws1e{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws36{word-spacing:0.298878px;}
.ws119{word-spacing:0.322790px;}
.ws5d{word-spacing:0.358654px;}
.ws1d{word-spacing:0.376589px;}
.wsbc{word-spacing:0.418429px;}
.ws4b{word-spacing:0.478205px;}
.ws59{word-spacing:0.537980px;}
.ws9f{word-spacing:0.537984px;}
.wsa4{word-spacing:0.597756px;}
.wsad{word-spacing:0.657532px;}
.wsd8{word-spacing:0.717307px;}
.ws73{word-spacing:0.777083px;}
.wsef{word-spacing:0.806976px;}
.ws24{word-spacing:0.836858px;}
.ws9e{word-spacing:0.860774px;}
.wsd0{word-spacing:0.896634px;}
.ws27{word-spacing:0.956410px;}
.wsf8{word-spacing:0.968371px;}
.ws31{word-spacing:1.016185px;}
.ws3f{word-spacing:1.075961px;}
.ws86{word-spacing:1.135736px;}
.wsc2{word-spacing:1.195512px;}
.ws55{word-spacing:1.255288px;}
.ws2a{word-spacing:1.315063px;}
.wsee{word-spacing:1.335854px;}
.wsed{word-spacing:1.344960px;}
.wscf{word-spacing:1.374839px;}
.wse2{word-spacing:1.398758px;}
.wsda{word-spacing:1.434614px;}
.ws41{word-spacing:1.494390px;}
.ws40{word-spacing:1.554166px;}
.ws85{word-spacing:1.613941px;}
.ws18{word-spacing:1.613952px;}
.wsa5{word-spacing:1.673717px;}
.ws17{word-spacing:1.721549px;}
.wscd{word-spacing:1.733492px;}
.ws93{word-spacing:1.775347px;}
.ws5f{word-spacing:1.793268px;}
.ws1f{word-spacing:1.829146px;}
.wsbb{word-spacing:1.853044px;}
.ws1c{word-spacing:1.882944px;}
.wsb{word-spacing:2.008454px;}
.ws84{word-spacing:2.032370px;}
.wsd2{word-spacing:2.092146px;}
.ws4f{word-spacing:2.151922px;}
.ws6f{word-spacing:2.271473px;}
.ws7c{word-spacing:2.331248px;}
.ws7b{word-spacing:2.391024px;}
.ws6{word-spacing:2.507146px;}
.ws49{word-spacing:2.510575px;}
.ws5e{word-spacing:2.570351px;}
.ws10f{word-spacing:2.582323px;}
.wsc0{word-spacing:2.630126px;}
.ws56{word-spacing:2.689902px;}
.ws3c{word-spacing:2.749678px;}
.wsc4{word-spacing:2.809453px;}
.ws89{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.ws46{word-spacing:2.929004px;}
.wsfe{word-spacing:2.958912px;}
.ws50{word-spacing:3.048556px;}
.ws11e{word-spacing:3.066509px;}
.wsac{word-spacing:3.108331px;}
.wsdf{word-spacing:3.120307px;}
.ws87{word-spacing:3.168107px;}
.wsf5{word-spacing:3.174106px;}
.ws106{word-spacing:3.219686px;}
.wse6{word-spacing:3.222835px;}
.wsf6{word-spacing:3.222941px;}
.wsdd{word-spacing:3.224822px;}
.ws118{word-spacing:3.225686px;}
.ws116{word-spacing:3.225830px;}
.wsf4{word-spacing:3.226022px;}
.wsf9{word-spacing:3.226118px;}
.ws112{word-spacing:3.226800px;}
.ws10e{word-spacing:3.227357px;}
.wse4{word-spacing:3.227510px;}
.ws110{word-spacing:3.227693px;}
.ws60{word-spacing:3.227882px;}
.wse1{word-spacing:3.227904px;}
.wsfc{word-spacing:3.228518px;}
.wsf7{word-spacing:3.229354px;}
.ws10d{word-spacing:3.281702px;}
.ws8e{word-spacing:3.287658px;}
.ws10c{word-spacing:3.292701px;}
.ws10a{word-spacing:3.343643px;}
.ws38{word-spacing:3.347434px;}
.wscb{word-spacing:3.407209px;}
.wsde{word-spacing:3.443098px;}
.ws6c{word-spacing:3.466985px;}
.wsdc{word-spacing:3.496896px;}
.ws96{word-spacing:3.526760px;}
.wseb{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws105{word-spacing:3.593997px;}
.ws104{word-spacing:3.604493px;}
.ws58{word-spacing:3.646312px;}
.ws107{word-spacing:3.658291px;}
.wsb3{word-spacing:3.706087px;}
.ws4a{word-spacing:3.765863px;}
.wsff{word-spacing:3.765888px;}
.ws61{word-spacing:3.825638px;}
.ws100{word-spacing:3.873485px;}
.ws95{word-spacing:3.885414px;}
.wse5{word-spacing:3.927283px;}
.ws88{word-spacing:3.945190px;}
.wsa6{word-spacing:4.004965px;}
.ws9b{word-spacing:4.064741px;}
.ws33{word-spacing:4.124516px;}
.ws19{word-spacing:4.142477px;}
.ws8b{word-spacing:4.184292px;}
.ws57{word-spacing:4.244068px;}
.ws3d{word-spacing:4.303843px;}
.wsd9{word-spacing:4.363619px;}
.ws115{word-spacing:4.465267px;}
.ws5c{word-spacing:4.483170px;}
.ws109{word-spacing:4.519066px;}
.ws10b{word-spacing:4.572864px;}
.wsc1{word-spacing:4.722272px;}
.ws83{word-spacing:4.782048px;}
.ws11d{word-spacing:4.949453px;}
.wsd5{word-spacing:4.961375px;}
.ws4e{word-spacing:5.021150px;}
.wsf3{word-spacing:5.110848px;}
.wsce{word-spacing:5.140702px;}
.wsa8{word-spacing:5.200477px;}
.ws94{word-spacing:5.260253px;}
.ws11c{word-spacing:5.272243px;}
.ws11b{word-spacing:5.282008px;}
.ws52{word-spacing:5.320028px;}
.ws6e{word-spacing:5.426553px;}
.wsb5{word-spacing:5.433638px;}
.ws6d{word-spacing:5.439580px;}
.wsa3{word-spacing:5.499355px;}
.wsaf{word-spacing:5.559131px;}
.ws5b{word-spacing:5.618906px;}
.ws8c{word-spacing:5.678682px;}
.wsb4{word-spacing:5.810227px;}
.ws82{word-spacing:5.976144px;}
.ws62{word-spacing:5.977560px;}
.ws12{word-spacing:6.067206px;}
.wsc7{word-spacing:6.097111px;}
.ws13{word-spacing:6.150892px;}
.ws75{word-spacing:6.156887px;}
.wsc8{word-spacing:6.276438px;}
.wsbd{word-spacing:6.336214px;}
.wsb2{word-spacing:6.395989px;}
.wsf0{word-spacing:6.402010px;}
.wsf1{word-spacing:6.433491px;}
.ws11a{word-spacing:6.617203px;}
.wsc5{word-spacing:6.635092px;}
.ws22{word-spacing:6.671002px;}
.ws51{word-spacing:6.694867px;}
.ws111{word-spacing:6.724800px;}
.wsec{word-spacing:6.778598px;}
.wsbe{word-spacing:6.874194px;}
.wsbf{word-spacing:7.053521px;}
.wsa2{word-spacing:7.232848px;}
.wsd7{word-spacing:7.471950px;}
.ws4d{word-spacing:7.890379px;}
.wsd4{word-spacing:7.950155px;}
.wsc6{word-spacing:8.009930px;}
.ws8a{word-spacing:8.069706px;}
.wsd6{word-spacing:8.189257px;}
.ws10{word-spacing:8.661460px;}
.wsfb{word-spacing:12.750221px;}
.ws108{word-spacing:14.364173px;}
.ws9{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsc9{word-spacing:15.720983px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.wsf{word-spacing:17.699504px;}
.ws11{word-spacing:27.448877px;}
.ws71{word-spacing:36.044687px;}
.wsca{word-spacing:37.001096px;}
.wsfa{word-spacing:48.418560px;}
.wsb7{word-spacing:322.629005px;}
.wsba{word-spacing:505.920154px;}
.wsb9{word-spacing:519.369754px;}
.wsb8{word-spacing:532.819354px;}
.wsb6{word-spacing:546.268954px;}
.ws79{word-spacing:575.427686px;}
.ws77{word-spacing:582.260083px;}
.ws7a{word-spacing:592.266586px;}
.ws78{word-spacing:602.057894px;}
._41{margin-left:-8.120675px;}
._f{margin-left:-6.490056px;}
._4{margin-left:-5.397721px;}
._3{margin-left:-3.849538px;}
._1c{margin-left:-2.362349px;}
._1{margin-left:-1.322630px;}
._2{width:1.091170px;}
._0{width:2.996422px;}
._1e{width:4.638210px;}
._1d{width:5.916240px;}
._20{width:6.932160px;}
._1f{width:8.306640px;}
._2b{width:9.757152px;}
._8{width:11.556239px;}
._5{width:12.971268px;}
._6{width:14.273738px;}
._9{width:15.493939px;}
._d{width:17.403904px;}
._10{width:18.590212px;}
._18{width:19.613964px;}
._17{width:20.682358px;}
._a{width:21.766022px;}
._c{width:22.851130px;}
._e{width:24.330067px;}
._21{width:25.464406px;}
._16{width:27.138122px;}
._b{width:29.078156px;}
._13{width:30.425780px;}
._1a{width:31.501741px;}
._7{width:32.637384px;}
._2c{width:34.729624px;}
._19{width:36.941321px;}
._3e{width:38.084624px;}
._15{width:39.153018px;}
._2d{width:40.707184px;}
._14{width:41.977606px;}
._3f{width:43.350493px;}
._40{width:44.950128px;}
._44{width:47.862059px;}
._43{width:61.868160px;}
._42{width:88.767360px;}
._27{width:387.725069px;}
._24{width:417.905971px;}
._23{width:473.641114px;}
._2f{width:535.132685px;}
._34{width:546.268954px;}
._25{width:631.270426px;}
._28{width:653.865754px;}
._22{width:656.051938px;}
._26{width:704.436250px;}
._11{width:718.336054px;}
._36{width:801.434765px;}
._37{width:836.511322px;}
._30{width:855.663552px;}
._3a{width:886.543834px;}
._3c{width:925.224883px;}
._3b{width:975.472589px;}
._39{width:1016.144179px;}
._31{width:1020.878438px;}
._35{width:1034.328038px;}
._33{width:1052.135309px;}
._32{width:1056.492979px;}
._38{width:1062.464602px;}
._3d{width:1065.584909px;}
._29{width:2017.191263px;}
._1b{width:2123.204547px;}
._2e{width:2484.374700px;}
._12{width:2508.284700px;}
._2a{width:2548.374509px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(56,126,127);}
.fs11{font-size:31.463430px;}
.fs12{font-size:34.200000px;}
.fs7{font-size:35.865600px;}
.fs16{font-size:39.743280px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fse{font-size:45.827430px;}
.fs4{font-size:47.236800px;}
.fs17{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:48.239400px;}
.fs10{font-size:51.300000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs18{font-size:56.058000px;}
.fsf{font-size:56.772000px;}
.fs13{font-size:57.887280px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fs15{font-size:64.800000px;}
.fs14{font-size:71.712000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y144{bottom:-955.211400px;}
.y168{bottom:-854.987400px;}
.y167{bottom:-832.091580px;}
.y166{bottom:-808.979400px;}
.y165{bottom:-785.867400px;}
.y164{bottom:-762.755400px;}
.y108{bottom:-755.647575px;}
.y163{bottom:-739.643400px;}
.y162{bottom:-716.747400px;}
.y161{bottom:-693.635400px;}
.y160{bottom:-670.523400px;}
.y15f{bottom:-647.411580px;}
.y12a{bottom:-640.906575px;}
.y15e{bottom:-624.299400px;}
.y129{bottom:-622.609575px;}
.y128{bottom:-604.312575px;}
.y15d{bottom:-595.571400px;}
.y127{bottom:-586.186575px;}
.y126{bottom:-567.889575px;}
.y18e{bottom:-552.007500px;}
.y15c{bottom:-551.291400px;}
.y125{bottom:-549.592575px;}
.y124{bottom:-531.295575px;}
.y15b{bottom:-528.179400px;}
.y123{bottom:-512.998575px;}
.y15a{bottom:-505.067400px;}
.y122{bottom:-494.872718px;}
.y1a8{bottom:-485.587500px;}
.y159{bottom:-481.955580px;}
.y121{bottom:-476.575575px;}
.y1a7{bottom:-466.507500px;}
.y158{bottom:-458.843400px;}
.y120{bottom:-458.278575px;}
.y1a6{bottom:-447.247500px;}
.y11f{bottom:-439.981575px;}
.y157{bottom:-435.947400px;}
.y1a5{bottom:-427.987500px;}
.y11e{bottom:-421.684575px;}
.y156{bottom:-412.835400px;}
.y1a4{bottom:-408.727500px;}
.y11d{bottom:-399.283575px;}
.y155{bottom:-389.723400px;}
.y1a3{bottom:-389.467500px;}
.y1a2{bottom:-370.387500px;}
.y154{bottom:-366.611400px;}
.y11c{bottom:-363.886718px;}
.y1a1{bottom:-351.127500px;}
.y11b{bottom:-345.589575px;}
.y153{bottom:-343.499400px;}
.y1a0{bottom:-331.867500px;}
.y11a{bottom:-327.292575px;}
.y152{bottom:-320.603400px;}
.y19f{bottom:-312.607500px;}
.y119{bottom:-308.995575px;}
.y151{bottom:-297.491400px;}
.y19e{bottom:-293.347500px;}
.y118{bottom:-290.698575px;}
.ybd{bottom:-274.543500px;}
.y150{bottom:-274.379400px;}
.y19d{bottom:-274.087500px;}
.y117{bottom:-272.572575px;}
.y19c{bottom:-255.007500px;}
.y116{bottom:-254.275575px;}
.y14f{bottom:-251.267400px;}
.y115{bottom:-235.978575px;}
.y19b{bottom:-235.747500px;}
.y14e{bottom:-228.155400px;}
.y114{bottom:-217.681575px;}
.y19a{bottom:-216.487500px;}
.ye1{bottom:-212.803500px;}
.y14d{bottom:-205.259400px;}
.y113{bottom:-199.384718px;}
.y199{bottom:-197.227500px;}
.ye0{bottom:-193.543500px;}
.y14c{bottom:-182.147400px;}
.y112{bottom:-181.258575px;}
.y198{bottom:-177.967650px;}
.ydf{bottom:-174.283500px;}
.y111{bottom:-162.961575px;}
.y14b{bottom:-159.035400px;}
.y197{bottom:-158.887500px;}
.yde{bottom:-150.523500px;}
.y110{bottom:-144.664575px;}
.y196{bottom:-139.627650px;}
.ydd{bottom:-126.763500px;}
.y10f{bottom:-126.367575px;}
.y14a{bottom:-114.971400px;}
.y195{bottom:-102.907500px;}
.y149{bottom:-94.235400px;}
.y10e{bottom:-91.483575px;}
.ydc{bottom:-90.043650px;}
.y194{bottom:-85.627650px;}
.y10d{bottom:-75.067575px;}
.y148{bottom:-73.499400px;}
.ydb{bottom:-72.763500px;}
.y193{bottom:-68.167500px;}
.y10c{bottom:-58.651575px;}
.yda{bottom:-55.483500px;}
.y147{bottom:-52.547400px;}
.y192{bottom:-50.887500px;}
.y10b{bottom:-42.235718px;}
.yd9{bottom:-38.203500px;}
.y191{bottom:-33.607500px;}
.y146{bottom:-31.811400px;}
.y10a{bottom:-25.819575px;}
.yd8{bottom:-20.923500px;}
.y190{bottom:-16.327500px;}
.y145{bottom:-4.811400px;}
.y109{bottom:-4.273575px;}
.y0{bottom:0.000000px;}
.yd7{bottom:1.756500px;}
.ya{bottom:3.425340px;}
.y18f{bottom:6.172500px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.335228px;}
.y4b{bottom:31.890000px;}
.yf5{bottom:91.681500px;}
.y130{bottom:92.707500px;}
.y18a{bottom:94.449000px;}
.y1d3{bottom:95.191500px;}
.y2ad{bottom:98.356500px;}
.y275{bottom:100.419000px;}
.y23{bottom:102.823500px;}
.y2e4{bottom:103.557000px;}
.y1e0{bottom:104.902500px;}
.y241{bottom:105.351000px;}
.yb9{bottom:106.695000px;}
.y12f{bottom:109.317000px;}
.y83{bottom:109.366500px;}
.yf4{bottom:110.511000px;}
.y4a{bottom:111.294000px;}
.y12e{bottom:111.940500px;}
.y189{bottom:113.278500px;}
.y1d2{bottom:114.021000px;}
.y2ac{bottom:115.617000px;}
.y1bc{bottom:115.782000px;}
.y22{bottom:120.711000px;}
.y2e3{bottom:120.817500px;}
.y20f{bottom:121.042500px;}
.y1df{bottom:123.732000px;}
.y240{bottom:124.180500px;}
.yb8{bottom:125.524500px;}
.y274{bottom:126.960000px;}
.y82{bottom:128.196000px;}
.yf3{bottom:129.340500px;}
.y49{bottom:130.123500px;}
.y12d{bottom:131.173500px;}
.y188{bottom:132.108000px;}
.y1d1{bottom:132.850500px;}
.y2ab{bottom:132.877500px;}
.y1bb{bottom:134.611500px;}
.y2e2{bottom:138.078000px;}
.y21{bottom:138.600000px;}
.y20e{bottom:139.870500px;}
.y1de{bottom:142.561500px;}
.y23f{bottom:143.010000px;}
.yb7{bottom:144.354000px;}
.y273{bottom:144.534000px;}
.y81{bottom:147.025500px;}
.yf2{bottom:148.170000px;}
.y48{bottom:148.953000px;}
.y2aa{bottom:150.138000px;}
.y12c{bottom:150.405000px;}
.y187{bottom:150.937500px;}
.y1d0{bottom:151.680000px;}
.y1ba{bottom:153.441000px;}
.y2e1{bottom:155.338500px;}
.y20{bottom:156.487500px;}
.y20d{bottom:158.700000px;}
.y1dd{bottom:161.391000px;}
.y23e{bottom:161.839500px;}
.y272{bottom:162.108000px;}
.yb6{bottom:163.183500px;}
.y80{bottom:165.855000px;}
.yf1{bottom:166.999500px;}
.y2a9{bottom:167.398500px;}
.y47{bottom:167.782500px;}
.y12b{bottom:169.638000px;}
.y186{bottom:169.767000px;}
.y1cf{bottom:170.509500px;}
.y1b9{bottom:172.270500px;}
.y2e0{bottom:172.599000px;}
.y1f{bottom:174.375000px;}
.y271{bottom:179.682000px;}
.y1dc{bottom:180.220500px;}
.y23d{bottom:180.669000px;}
.yb5{bottom:182.013000px;}
.y2a8{bottom:184.659000px;}
.y7f{bottom:184.684500px;}
.yf0{bottom:185.829000px;}
.y46{bottom:186.612000px;}
.y185{bottom:188.595000px;}
.y1ce{bottom:189.339000px;}
.y2df{bottom:189.858000px;}
.y1b8{bottom:191.100000px;}
.y105{bottom:192.067500px;}
.y1e{bottom:192.264000px;}
.y1db{bottom:199.050000px;}
.y23c{bottom:199.497000px;}
.yb4{bottom:200.842500px;}
.y2a7{bottom:201.918000px;}
.y7e{bottom:203.514000px;}
.y45{bottom:205.441500px;}
.y2de{bottom:207.118500px;}
.y184{bottom:207.424500px;}
.yef{bottom:209.140500px;}
.y1b7{bottom:209.929500px;}
.y1d{bottom:210.151500px;}
.y270{bottom:215.188500px;}
.y20c{bottom:215.637000px;}
.y1da{bottom:217.878000px;}
.y23b{bottom:218.326500px;}
.y2a6{bottom:219.178500px;}
.yb3{bottom:219.672000px;}
.y7d{bottom:222.343500px;}
.y44{bottom:224.271000px;}
.y2dd{bottom:224.379000px;}
.y183{bottom:226.254000px;}
.y1c{bottom:228.039000px;}
.y1b6{bottom:228.759000px;}
.yee{bottom:229.315500px;}
.y26f{bottom:234.018000px;}
.y20b{bottom:234.466500px;}
.y1cd{bottom:234.801000px;}
.y2a5{bottom:236.439000px;}
.y1d9{bottom:236.707500px;}
.y23a{bottom:237.156000px;}
.y140{bottom:238.053000px;}
.yb2{bottom:238.501500px;}
.y7c{bottom:241.173000px;}
.y2dc{bottom:241.639500px;}
.y43{bottom:243.099000px;}
.y182{bottom:245.083500px;}
.y1b5{bottom:247.588500px;}
.y1cc{bottom:251.239500px;}
.y26e{bottom:252.847500px;}
.y20a{bottom:253.296000px;}
.y2a4{bottom:253.699500px;}
.y1d8{bottom:255.537000px;}
.y239{bottom:255.985500px;}
.y13f{bottom:256.882500px;}
.yb1{bottom:257.331000px;}
.y2db{bottom:258.900000px;}
.y7b{bottom:260.002500px;}
.y42{bottom:261.928500px;}
.yed{bottom:262.939500px;}
.y1b4{bottom:266.418000px;}
.y1cb{bottom:267.676500px;}
.y181{bottom:268.396500px;}
.y2a3{bottom:270.960000px;}
.y26d{bottom:271.677000px;}
.y209{bottom:272.125500px;}
.y1d7{bottom:274.366500px;}
.y238{bottom:274.815000px;}
.y13e{bottom:275.712000px;}
.yb0{bottom:276.160500px;}
.y7a{bottom:278.832000px;}
.y41{bottom:280.758000px;}
.yec{bottom:281.769000px;}
.y1ca{bottom:284.115000px;}
.y1b3{bottom:285.247500px;}
.y2a2{bottom:288.220500px;}
.y26c{bottom:290.506500px;}
.y208{bottom:290.955000px;}
.y1d6{bottom:293.196000px;}
.y2da{bottom:293.421000px;}
.y237{bottom:293.644500px;}
.y13d{bottom:294.541500px;}
.yaf{bottom:294.990000px;}
.y79{bottom:297.661500px;}
.y40{bottom:299.587500px;}
.y1c9{bottom:300.553500px;}
.yeb{bottom:300.598500px;}
.y180{bottom:302.020500px;}
.y1b2{bottom:304.077000px;}
.y2a1{bottom:305.481000px;}
.y1b{bottom:307.299000px;}
.y26b{bottom:309.336000px;}
.y207{bottom:309.784500px;}
.y2d9{bottom:310.681500px;}
.y236{bottom:312.474000px;}
.y13c{bottom:313.371000px;}
.yae{bottom:313.819500px;}
.y78{bottom:316.491000px;}
.y1d5{bottom:316.509000px;}
.y1c8{bottom:316.992000px;}
.y3f{bottom:318.417000px;}
.yea{bottom:319.428000px;}
.y17f{bottom:320.850000px;}
.y107{bottom:321.823425px;}
.y2a0{bottom:322.741500px;}
.y1b1{bottom:322.906500px;}
.y1a{bottom:325.186500px;}
.y2d8{bottom:327.940500px;}
.y26a{bottom:328.165500px;}
.y206{bottom:328.614000px;}
.y106{bottom:331.228425px;}
.y235{bottom:331.303500px;}
.y13b{bottom:332.200500px;}
.yad{bottom:332.649000px;}
.y1c7{bottom:333.430500px;}
.y77{bottom:335.320500px;}
.y1d4{bottom:336.684000px;}
.y3e{bottom:337.246500px;}
.ye9{bottom:338.257500px;}
.y17e{bottom:339.679500px;}
.y29f{bottom:340.000500px;}
.y1b0{bottom:341.736000px;}
.y19{bottom:343.074000px;}
.yd6{bottom:343.756500px;}
.y2d7{bottom:345.201000px;}
.y269{bottom:346.995000px;}
.y204{bottom:347.443500px;}
.y1c6{bottom:349.869000px;}
.y234{bottom:350.133000px;}
.y13a{bottom:351.030000px;}
.yac{bottom:351.478500px;}
.y205{bottom:352.867500px;}
.y76{bottom:354.150000px;}
.y3d{bottom:356.076000px;}
.ye8{bottom:357.087000px;}
.y29e{bottom:357.261000px;}
.y17d{bottom:358.509000px;}
.y1af{bottom:360.565500px;}
.y18{bottom:360.963000px;}
.y2d6{bottom:362.461500px;}
.yd5{bottom:362.836500px;}
.y268{bottom:365.824500px;}
.y203{bottom:366.273000px;}
.y1c5{bottom:366.307500px;}
.y233{bottom:368.962500px;}
.y139{bottom:369.859500px;}
.yab{bottom:370.308000px;}
.y75{bottom:372.979500px;}
.y29d{bottom:374.521500px;}
.ye7{bottom:375.916500px;}
.y17c{bottom:377.338500px;}
.y3c{bottom:379.389000px;}
.y2d5{bottom:379.722000px;}
.yd4{bottom:382.096500px;}
.y1c4{bottom:382.746000px;}
.y267{bottom:384.654000px;}
.y232{bottom:387.792000px;}
.y138{bottom:388.689000px;}
.yaa{bottom:389.137500px;}
.y202{bottom:389.586000px;}
.y29c{bottom:391.782000px;}
.y74{bottom:391.809000px;}
.y1ae{bottom:394.131000px;}
.y17b{bottom:396.168000px;}
.y2d4{bottom:396.982500px;}
.y17{bottom:399.024000px;}
.y1c3{bottom:399.184500px;}
.yd3{bottom:401.356500px;}
.y266{bottom:403.483500px;}
.y143{bottom:405.804600px;}
.y231{bottom:406.621500px;}
.y137{bottom:407.518500px;}
.ya9{bottom:407.967000px;}
.y29b{bottom:409.042500px;}
.ye6{bottom:409.482000px;}
.y201{bottom:409.759500px;}
.y73{bottom:410.638500px;}
.y1ad{bottom:413.364000px;}
.y2d3{bottom:414.243000px;}
.y17a{bottom:414.997500px;}
.y1c2{bottom:415.623000px;}
.y16{bottom:416.913000px;}
.y142{bottom:417.684600px;}
.yd2{bottom:420.616500px;}
.y265{bottom:422.313000px;}
.y29a{bottom:426.303000px;}
.y136{bottom:426.348000px;}
.ya8{bottom:426.796500px;}
.ye5{bottom:428.715000px;}
.y72{bottom:429.468000px;}
.y230{bottom:429.934500px;}
.y2d2{bottom:431.503500px;}
.y1c1{bottom:432.060000px;}
.y1ac{bottom:432.597000px;}
.y179{bottom:433.827000px;}
.y15{bottom:434.800500px;}
.yd1{bottom:439.876500px;}
.y264{bottom:441.142500px;}
.y200{bottom:443.383500px;}
.y299{bottom:443.563500px;}
.y135{bottom:445.177500px;}
.ya7{bottom:445.626000px;}
.ye4{bottom:447.948000px;}
.y71{bottom:448.297500px;}
.y1c0{bottom:448.498500px;}
.y2d1{bottom:448.764000px;}
.y1ab{bottom:451.830000px;}
.y178{bottom:452.656500px;}
.y3b{bottom:454.539000px;}
.yd0{bottom:458.956500px;}
.y263{bottom:459.972000px;}
.y298{bottom:460.824000px;}
.y1ff{bottom:462.213000px;}
.y22f{bottom:463.558500px;}
.y134{bottom:464.007000px;}
.ya6{bottom:464.454000px;}
.y2d0{bottom:466.024500px;}
.y70{bottom:467.127000px;}
.ye3{bottom:467.181000px;}
.y14{bottom:470.622000px;}
.y1aa{bottom:471.063000px;}
.y177{bottom:471.486000px;}
.y1bf{bottom:472.140000px;}
.y3a{bottom:473.995500px;}
.y297{bottom:478.084500px;}
.ycf{bottom:478.216500px;}
.y262{bottom:478.801500px;}
.y1fe{bottom:481.042500px;}
.y22e{bottom:482.388000px;}
.ya5{bottom:483.283500px;}
.y6f{bottom:485.956500px;}
.ye2{bottom:486.414000px;}
.y133{bottom:487.318500px;}
.y13{bottom:488.509500px;}
.y1a9{bottom:490.294500px;}
.y176{bottom:490.315500px;}
.y296{bottom:495.343500px;}
.yce{bottom:497.476500px;}
.y261{bottom:497.631000px;}
.y1fd{bottom:499.872000px;}
.y2cf{bottom:500.544000px;}
.y22d{bottom:501.217500px;}
.ya4{bottom:502.113000px;}
.y1be{bottom:503.760000px;}
.y104{bottom:504.312000px;}
.y6e{bottom:504.786000px;}
.yba{bottom:508.842000px;}
.y175{bottom:509.145000px;}
.y39{bottom:511.386000px;}
.y295{bottom:512.604000px;}
.y18b{bottom:512.724000px;}
.y260{bottom:516.460500px;}
.ycd{bottom:516.736500px;}
.y2ce{bottom:517.804500px;}
.y1fc{bottom:518.701500px;}
.y22c{bottom:520.047000px;}
.ya3{bottom:520.942500px;}
.y1bd{bottom:522.991500px;}
.y103{bottom:523.141500px;}
.y6d{bottom:523.615500px;}
.y12{bottom:524.329500px;}
.y174{bottom:527.974500px;}
.y294{bottom:529.864500px;}
.y38{bottom:530.842500px;}
.y2cd{bottom:535.065000px;}
.y25f{bottom:535.290000px;}
.ycc{bottom:535.996500px;}
.y1fb{bottom:537.531000px;}
.y22b{bottom:538.876500px;}
.ya2{bottom:539.772000px;}
.y102{bottom:541.971000px;}
.y11{bottom:542.218500px;}
.y6c{bottom:542.445000px;}
.y173{bottom:546.804000px;}
.y293{bottom:547.125000px;}
.y37{bottom:550.300500px;}
.y2cc{bottom:552.325500px;}
.y25e{bottom:554.118000px;}
.ycb{bottom:555.076500px;}
.y1f9{bottom:556.360500px;}
.y22a{bottom:557.706000px;}
.ya1{bottom:558.601500px;}
.y10{bottom:560.106000px;}
.y101{bottom:560.800500px;}
.y6b{bottom:561.274500px;}
.y1fa{bottom:561.784500px;}
.y292{bottom:564.385500px;}
.y172{bottom:565.633500px;}
.y2cb{bottom:569.586000px;}
.y36{bottom:569.757000px;}
.y25d{bottom:572.947500px;}
.yca{bottom:574.336500px;}
.y1f8{bottom:575.190000px;}
.y229{bottom:576.535500px;}
.ya0{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.y100{bottom:579.630000px;}
.y6a{bottom:580.104000px;}
.y291{bottom:581.646000px;}
.y18d{bottom:582.172500px;}
.y171{bottom:584.463000px;}
.y2ca{bottom:586.846500px;}
.y35{bottom:589.213500px;}
.y25c{bottom:591.777000px;}
.y18c{bottom:592.072500px;}
.yc9{bottom:593.596350px;}
.y1f7{bottom:594.019500px;}
.y227{bottom:595.365000px;}
.ye{bottom:595.882500px;}
.y9f{bottom:596.260500px;}
.yff{bottom:598.459500px;}
.y290{bottom:598.906500px;}
.y69{bottom:598.932000px;}
.y228{bottom:600.789000px;}
.y170{bottom:603.292500px;}
.y2c9{bottom:604.107000px;}
.y34{bottom:608.671500px;}
.y25b{bottom:610.606500px;}
.y1f6{bottom:612.849000px;}
.yc8{bottom:612.856500px;}
.yd{bottom:613.770000px;}
.y226{bottom:614.194500px;}
.y9e{bottom:615.090000px;}
.y28f{bottom:616.167000px;}
.yfe{bottom:617.289000px;}
.y67{bottom:617.761500px;}
.y2c8{bottom:621.366000px;}
.y16f{bottom:622.120500px;}
.y68{bottom:623.187000px;}
.y33{bottom:628.128000px;}
.y25a{bottom:629.436000px;}
.yc{bottom:631.657500px;}
.y1f4{bottom:631.678500px;}
.yc7{bottom:632.116500px;}
.y225{bottom:633.022500px;}
.y28e{bottom:633.426000px;}
.y9d{bottom:633.919500px;}
.y66{bottom:636.591000px;}
.y1f5{bottom:637.102500px;}
.y2c7{bottom:638.626500px;}
.yfd{bottom:640.602000px;}
.y32{bottom:647.586000px;}
.y259{bottom:648.265500px;}
.yb{bottom:649.546500px;}
.y1f3{bottom:650.508000px;}
.y28d{bottom:650.686500px;}
.yc6{bottom:651.196500px;}
.y224{bottom:651.852000px;}
.y9c{bottom:652.749000px;}
.y65{bottom:655.420500px;}
.y16e{bottom:655.687500px;}
.y2c6{bottom:655.887000px;}
.y31{bottom:667.042500px;}
.y258{bottom:667.095000px;}
.y28c{bottom:667.947000px;}
.y1f2{bottom:669.337500px;}
.yc5{bottom:670.456500px;}
.y223{bottom:670.681500px;}
.y9b{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y16d{bottom:672.297000px;}
.y2c5{bottom:673.147500px;}
.y64{bottom:674.250000px;}
.y16c{bottom:674.920500px;}
.yfc{bottom:682.926000px;}
.y28b{bottom:685.207500px;}
.y257{bottom:685.924500px;}
.y30{bottom:686.499000px;}
.y132{bottom:687.331500px;}
.y222{bottom:689.511000px;}
.yc4{bottom:689.716500px;}
.y9a{bottom:690.408000px;}
.y1f1{bottom:692.650500px;}
.y63{bottom:693.079500px;}
.y16b{bottom:694.152000px;}
.yfb{bottom:699.364500px;}
.y28a{bottom:702.468000px;}
.y256{bottom:704.754000px;}
.y2f{bottom:705.957000px;}
.y2c4{bottom:707.668500px;}
.y221{bottom:708.340500px;}
.yc3{bottom:708.976500px;}
.y99{bottom:709.237500px;}
.y62{bottom:711.909000px;}
.y16a{bottom:713.385000px;}
.yfa{bottom:715.803000px;}
.y289{bottom:719.728500px;}
.y255{bottom:723.583500px;}
.y2c3{bottom:724.929000px;}
.y2e{bottom:725.413500px;}
.y1f0{bottom:726.273000px;}
.y220{bottom:727.170000px;}
.y98{bottom:728.067000px;}
.yc2{bottom:728.236500px;}
.y61{bottom:730.738500px;}
.yf9{bottom:732.241500px;}
.y169{bottom:732.618000px;}
.y288{bottom:736.989000px;}
.y2c2{bottom:742.189500px;}
.y254{bottom:742.413000px;}
.y2d{bottom:744.871500px;}
.y1ef{bottom:745.102500px;}
.y21f{bottom:745.999500px;}
.y97{bottom:746.896500px;}
.yc1{bottom:747.316500px;}
.yf8{bottom:748.678500px;}
.y60{bottom:749.568000px;}
.y287{bottom:754.249500px;}
.y141{bottom:755.047500px;}
.y2c1{bottom:759.450000px;}
.y253{bottom:761.242500px;}
.y1ed{bottom:763.932000px;}
.y2c{bottom:764.328000px;}
.y21e{bottom:764.829000px;}
.y96{bottom:765.726000px;}
.yc0{bottom:766.576500px;}
.y5f{bottom:768.397500px;}
.y1ee{bottom:769.357500px;}
.y286{bottom:771.510000px;}
.yf7{bottom:772.320000px;}
.y2c0{bottom:776.709000px;}
.y252{bottom:780.072000px;}
.y1ec{bottom:782.761500px;}
.y21d{bottom:783.658500px;}
.y2b{bottom:783.784500px;}
.y95{bottom:784.555500px;}
.ybf{bottom:785.836500px;}
.y5e{bottom:787.227000px;}
.y285{bottom:788.769000px;}
.y2bf{bottom:793.969500px;}
.y251{bottom:798.901500px;}
.y131{bottom:800.308500px;}
.y1eb{bottom:801.591000px;}
.y21c{bottom:802.488000px;}
.y2a{bottom:803.242500px;}
.y94{bottom:803.385000px;}
.yf6{bottom:803.940000px;}
.ybe{bottom:805.096350px;}
.y284{bottom:806.029500px;}
.y5d{bottom:806.056500px;}
.y2be{bottom:811.230000px;}
.y250{bottom:817.731000px;}
.y1ea{bottom:820.420500px;}
.y21b{bottom:821.317500px;}
.y93{bottom:822.214500px;}
.y283{bottom:823.290000px;}
.y5c{bottom:824.886000px;}
.y2bd{bottom:828.490500px;}
.y24f{bottom:836.560500px;}
.y1e9{bottom:839.250000px;}
.y21a{bottom:840.147000px;}
.y282{bottom:840.550500px;}
.y92{bottom:841.044000px;}
.y29{bottom:841.827000px;}
.y5b{bottom:843.715500px;}
.y2bc{bottom:845.751000px;}
.y24e{bottom:855.390000px;}
.y281{bottom:857.811000px;}
.y28{bottom:857.967000px;}
.y1e7{bottom:858.079500px;}
.y219{bottom:858.976500px;}
.ybc{bottom:859.636500px;}
.y91{bottom:859.873500px;}
.y5a{bottom:862.545000px;}
.y2bb{bottom:863.011500px;}
.y1e8{bottom:863.505000px;}
.ybb{bottom:869.536500px;}
.y24d{bottom:874.219500px;}
.y280{bottom:875.071500px;}
.y1e6{bottom:876.909000px;}
.y218{bottom:877.806000px;}
.y27{bottom:878.446500px;}
.y90{bottom:878.703000px;}
.y2ba{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y26{bottom:890.245500px;}
.y27f{bottom:892.332000px;}
.y24c{bottom:893.049000px;}
.y1e5{bottom:895.738500px;}
.y8f{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y217{bottom:901.119000px;}
.y25{bottom:906.385500px;}
.y27e{bottom:909.592500px;}
.y24b{bottom:911.878500px;}
.y1e4{bottom:914.568000px;}
.y2b8{bottom:914.791500px;}
.y2b9{bottom:914.793000px;}
.y8e{bottom:916.362000px;}
.y57{bottom:919.033500px;}
.y27d{bottom:926.851500px;}
.y24{bottom:926.865000px;}
.y24a{bottom:930.708000px;}
.y2b7{bottom:932.052000px;}
.y216{bottom:934.743000px;}
.y8d{bottom:935.191500px;}
.y56{bottom:937.863000px;}
.y1e3{bottom:937.881000px;}
.y27c{bottom:944.112000px;}
.y2b6{bottom:949.312500px;}
.y249{bottom:949.537500px;}
.y215{bottom:953.572500px;}
.y8c{bottom:954.021000px;}
.y55{bottom:956.692500px;}
.y1e2{bottom:958.054500px;}
.y27b{bottom:961.372500px;}
.y2b5{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.y248{bottom:968.367000px;}
.y214{bottom:972.402000px;}
.y8b{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.y27a{bottom:978.633000px;}
.y2b4{bottom:983.833500px;}
.y247{bottom:987.196500px;}
.y213{bottom:991.231500px;}
.y8a{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y279{bottom:1000.377000px;}
.y2b3{bottom:1001.094000px;}
.y246{bottom:1006.026000px;}
.y212{bottom:1010.061000px;}
.y89{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y52{bottom:1013.181000px;}
.y2b2{bottom:1018.354500px;}
.y245{bottom:1024.855500px;}
.y211{bottom:1028.890500px;}
.y88{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y278{bottom:1034.001000px;}
.y2b1{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y244{bottom:1043.685000px;}
.y1e1{bottom:1045.437000px;}
.y87{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.y210{bottom:1052.202000px;}
.y2b0{bottom:1052.875500px;}
.y277{bottom:1060.540500px;}
.y243{bottom:1062.513000px;}
.y86{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y2af{bottom:1070.134500px;}
.y242{bottom:1081.342500px;}
.y85{bottom:1085.826000px;}
.y276{bottom:1087.081500px;}
.y2ae{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h29{height:31.526842px;}
.h15{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h14{height:35.052500px;}
.h2b{height:37.334628px;}
.h10{height:37.551283px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h2a{height:39.434227px;}
.h21{height:41.192965px;}
.h1c{height:41.482876px;}
.h13{height:41.723369px;}
.h1e{height:42.023395px;}
.h11{height:43.038432px;}
.h1b{height:43.361016px;}
.h12{height:43.516637px;}
.h1a{height:43.623633px;}
.h4{height:43.815515px;}
.h17{height:44.235153px;}
.h20{height:47.041699px;}
.h2c{height:48.149568px;}
.h19{height:49.517578px;}
.h2{height:50.930649px;}
.h1f{height:52.059480px;}
.h26{height:52.348359px;}
.h23{height:53.082184px;}
.h28{height:53.228842px;}
.h6{height:54.411312px;}
.h18{height:54.799453px;}
.h25{height:59.421094px;}
.h24{height:65.759344px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h1d{height:288.605250px;}
.h16{height:327.390000px;}
.h22{height:364.554000px;}
.h27{height:549.462000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:213.066811px;}
.w4{width:412.336500px;}
.w5{width:572.727735px;}
.w6{width:722.738160px;}
.w7{width:727.622400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6b{left:-189.036000px;}
.xb5{left:-110.044440px;}
.x99{left:-87.118515px;}
.xb7{left:-71.812440px;}
.x9b{left:-56.851515px;}
.xcc{left:-8.277600px;}
.x0{left:0.000000px;}
.x6c{left:6.624000px;}
.xce{left:23.582400px;}
.x3{left:29.274117px;}
.x6d{left:38.484000px;}
.x1{left:54.000000px;}
.x2{left:57.710756px;}
.xcb{left:82.646100px;}
.x9e{left:85.890000px;}
.xbf{left:95.749500px;}
.x9d{left:98.758485px;}
.xc0{left:123.601500px;}
.xb9{left:124.747560px;}
.x9c{left:129.025485px;}
.xeb{left:130.563000px;}
.xea{left:133.926000px;}
.xe9{left:136.360500px;}
.x9f{left:143.116500px;}
.x98{left:160.094715px;}
.xb8{left:162.979560px;}
.xa3{left:176.251500px;}
.xa4{left:185.107500px;}
.xd0{left:187.382400px;}
.xa7{left:198.061500px;}
.xcf{left:219.242400px;}
.xa8{left:225.927000px;}
.xd1{left:227.055000px;}
.xd2{left:233.779500px;}
.xc1{left:243.616500px;}
.xad{left:248.655000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xc2{left:252.472500px;}
.xb1{left:255.480000px;}
.x109{left:260.737500px;}
.x96{left:265.204500px;}
.xdb{left:267.898500px;}
.x108{left:270.093000px;}
.x5{left:271.221000px;}
.xbe{left:274.804500px;}
.x62{left:276.424500px;}
.x104{left:277.857000px;}
.xf{left:282.786000px;}
.x105{left:284.662500px;}
.x79{left:287.584500px;}
.x63{left:291.367500px;}
.xc8{left:294.154500px;}
.x7a{left:296.815500px;}
.x64{left:298.765500px;}
.xa0{left:300.646500px;}
.x17{left:302.139000px;}
.xc9{left:303.994500px;}
.x6e{left:307.506000px;}
.x7{left:309.213000px;}
.x1b{left:310.332000px;}
.x18{left:312.039000px;}
.x65{left:313.708500px;}
.x14{left:315.163500px;}
.x55{left:316.165500px;}
.x1c{left:317.803500px;}
.x94{left:319.378500px;}
.x95{left:320.898000px;}
.x15{left:322.635000px;}
.xc{left:324.735000px;}
.x10a{left:326.887500px;}
.x7b{left:328.516500px;}
.x16{left:330.123000px;}
.xf8{left:331.164000px;}
.x4c{left:332.808000px;}
.xf9{left:334.974000px;}
.x8{left:336.873000px;}
.x4d{left:340.429500px;}
.x53{left:342.127500px;}
.x9{left:345.729000px;}
.x100{left:347.818500px;}
.xb0{left:350.583000px;}
.xa2{left:353.896500px;}
.x4e{left:355.374000px;}
.x54{left:357.070500px;}
.xfd{left:363.174000px;}
.xb4{left:366.844500px;}
.x80{left:370.111500px;}
.xba{left:375.363000px;}
.xa5{left:383.767500px;}
.x81{left:385.054500px;}
.xab{left:387.715500px;}
.x4f{left:392.493000px;}
.x12{left:395.562000px;}
.x6a{left:397.333500px;}
.x10{left:398.665500px;}
.xee{left:401.851500px;}
.x13{left:403.033500px;}
.x11{left:406.138500px;}
.x50{left:407.436000px;}
.xdf{left:408.504000px;}
.x19{left:412.902000px;}
.x51{left:415.057500px;}
.x110{left:417.778500px;}
.x84{left:419.490000px;}
.x1a{left:422.802000px;}
.xc3{left:424.599000px;}
.x103{left:425.679000px;}
.x85{left:428.721000px;}
.x52{left:430.002000px;}
.xbc{left:431.374500px;}
.x10c{left:432.772500px;}
.xf0{left:434.547000px;}
.x86{left:441.094500px;}
.x112{left:442.362000px;}
.xb2{left:448.704000px;}
.xc4{left:452.451000px;}
.x87{left:457.129500px;}
.xff{left:458.326500px;}
.xac{left:459.835500px;}
.x57{left:469.636500px;}
.x21{left:473.964000px;}
.x4a{left:475.275000px;}
.x22{left:481.435500px;}
.x115{left:483.640500px;}
.x23{left:485.149500px;}
.x3f{left:487.684500px;}
.x4b{left:490.218000px;}
.xf5{left:491.362500px;}
.x24{left:492.621000px;}
.x5a{left:497.352000px;}
.x25{left:500.047500px;}
.x106{left:501.894000px;}
.x5b{left:504.823500px;}
.xd{left:507.075000px;}
.x5c{left:508.503000px;}
.x118{left:509.590500px;}
.xbd{left:512.917500px;}
.xe{left:515.931000px;}
.x119{left:518.500500px;}
.x5d{left:519.655500px;}
.x91{left:523.654500px;}
.x5e{left:527.127000px;}
.x5f{left:530.808000px;}
.x7c{left:533.445000px;}
.x8c{left:534.535500px;}
.xf6{left:536.245500px;}
.xca{left:537.939000px;}
.xa{left:539.059500px;}
.xe3{left:541.552500px;}
.x7d{left:542.676000px;}
.x8d{left:543.765000px;}
.x60{left:545.638500px;}
.xb{left:547.915500px;}
.xec{left:549.826500px;}
.xf7{left:551.188500px;}
.xed{left:553.638000px;}
.xa9{left:554.889000px;}
.x8e{left:557.805000px;}
.x7e{left:559.041000px;}
.x61{left:560.583000px;}
.x92{left:562.551000px;}
.x9a{left:567.982485px;}
.xc5{left:569.149500px;}
.x58{left:572.124000px;}
.x7f{left:573.985500px;}
.x8f{left:575.475000px;}
.xc6{left:578.005500px;}
.xde{left:580.141500px;}
.x113{left:582.441000px;}
.x59{left:587.067000px;}
.x107{left:592.282500px;}
.x46{left:594.232500px;}
.x93{left:600.030000px;}
.x26{left:607.201500px;}
.x47{left:609.177000px;}
.x82{left:610.650000px;}
.x101{left:613.137000px;}
.x27{left:614.673000px;}
.x28{left:618.345000px;}
.x83{left:619.881000px;}
.xef{left:621.655500px;}
.x88{left:624.366000px;}
.x29{left:625.818000px;}
.x74{left:627.295500px;}
.x2a{left:629.490000px;}
.x1f{left:632.566500px;}
.xd7{left:634.113000px;}
.xe0{left:635.802000px;}
.x2b{left:636.961500px;}
.x102{left:638.584500px;}
.x20{left:640.039500px;}
.x48{left:641.955000px;}
.x71{left:643.890000px;}
.xe1{left:645.703500px;}
.xd9{left:647.755500px;}
.xd8{left:649.057500px;}
.xa1{left:651.106500px;}
.x89{left:652.774500px;}
.x40{left:654.273000px;}
.x2c{left:655.578000px;}
.x49{left:656.898000px;}
.x41{left:657.969000px;}
.xe7{left:661.863000px;}
.x2d{left:662.923500px;}
.x116{left:665.772000px;}
.x97{left:667.303500px;}
.xaa{left:671.646000px;}
.x42{left:672.912000px;}
.x68{left:675.432000px;}
.x2e{left:677.866500px;}
.x90{left:679.758000px;}
.x114{left:680.836500px;}
.x8a{left:681.921000px;}
.x10e{left:683.415000px;}
.xe2{left:686.511000px;}
.x75{left:689.350500px;}
.x69{left:690.375000px;}
.x117{left:691.791000px;}
.xb3{left:693.000000px;}
.x8b{left:696.865500px;}
.x76{left:698.581500px;}
.x33{left:702.097500px;}
.xda{left:704.019000px;}
.xbb{left:705.829500px;}
.xf1{left:707.364000px;}
.x34{left:709.569000px;}
.x77{left:710.730000px;}
.xfc{left:711.970500px;}
.xd3{left:714.895500px;}
.xb6{left:717.235560px;}
.xd5{left:719.010000px;}
.x78{left:720.570000px;}
.x37{left:722.776500px;}
.x10b{left:725.931000px;}
.xae{left:729.661500px;}
.x38{left:732.616500px;}
.xd6{left:733.953000px;}
.xe4{left:735.349500px;}
.xd4{left:737.410500px;}
.xaf{left:739.501500px;}
.xfe{left:741.678000px;}
.xfa{left:746.656500px;}
.xc7{left:748.704000px;}
.x3b{left:750.283500px;}
.x111{left:752.362500px;}
.xe5{left:753.955500px;}
.xf3{left:754.963500px;}
.xdc{left:757.690500px;}
.xfb{left:761.601000px;}
.x11a{left:763.005000px;}
.x72{left:764.023500px;}
.x3c{left:765.228000px;}
.xcd{left:766.802400px;}
.xe6{left:768.898500px;}
.xf4{left:769.908000px;}
.x6f{left:772.323000px;}
.x73{left:773.863500px;}
.x43{left:774.864000px;}
.xa6{left:775.995000px;}
.x3d{left:778.431000px;}
.x56{left:780.861000px;}
.x70{left:782.163000px;}
.x35{left:784.009500px;}
.x3e{left:788.271000px;}
.x66{left:789.709500px;}
.x36{left:791.481000px;}
.x2f{left:795.472500px;}
.x44{left:799.117500px;}
.xdd{left:801.051000px;}
.x1d{left:802.993500px;}
.x67{left:804.654000px;}
.xf2{left:806.913000px;}
.x30{left:810.417000px;}
.x1e{left:812.893500px;}
.x45{left:814.060500px;}
.x10f{left:816.550500px;}
.x31{left:817.881000px;}
.x39{left:826.492500px;}
.x10d{left:827.667000px;}
.x32{left:832.825500px;}
.x3a{left:836.332500px;}
.xe8{left:837.841500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.328000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000405pt;}
.ls30{letter-spacing:0.000503pt;}
.ls1e{letter-spacing:0.000607pt;}
.ls2b{letter-spacing:0.000711pt;}
.ls38{letter-spacing:0.001356pt;}
.ls3a{letter-spacing:0.001408pt;}
.ls0{letter-spacing:0.002282pt;}
.ls32{letter-spacing:0.002327pt;}
.lsc{letter-spacing:0.002425pt;}
.ls1d{letter-spacing:0.002567pt;}
.ls20{letter-spacing:0.002666pt;}
.ls39{letter-spacing:0.002805pt;}
.ls22{letter-spacing:0.003543pt;}
.ls21{letter-spacing:0.003733pt;}
.ls26{letter-spacing:0.004053pt;}
.lsb{letter-spacing:0.004147pt;}
.ls27{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.106400pt;}
.ls18{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.134400pt;}
.ls10{letter-spacing:0.212800pt;}
.lse{letter-spacing:0.304000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.665318pt;}
.ls9{letter-spacing:1.133683pt;}
.ls16{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1c{letter-spacing:2.513920pt;}
.ls1b{letter-spacing:2.519253pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4{letter-spacing:9.293600pt;}
.lsa{letter-spacing:10.626533pt;}
.ls7{letter-spacing:10.631867pt;}
.ls34{letter-spacing:11.467929pt;}
.ls31{letter-spacing:11.752599pt;}
.ls23{letter-spacing:11.800465pt;}
.ls28{letter-spacing:11.805344pt;}
.ls3d{letter-spacing:11.815777pt;}
.ls2d{letter-spacing:11.837997pt;}
.ls29{letter-spacing:11.855077pt;}
.ls24{letter-spacing:11.954133pt;}
.ls25{letter-spacing:11.959467pt;}
.ls37{letter-spacing:11.975328pt;}
.ls36{letter-spacing:12.036744pt;}
.ls2c{letter-spacing:12.081401pt;}
.ls3c{letter-spacing:12.133599pt;}
.ls3b{letter-spacing:12.306238pt;}
.ls2f{letter-spacing:12.818656pt;}
.ls14{letter-spacing:13.017797pt;}
.ls15{letter-spacing:13.070931pt;}
.ls2a{letter-spacing:13.508852pt;}
.ls11{letter-spacing:13.602270pt;}
.ls2e{letter-spacing:13.833035pt;}
.ls33{letter-spacing:15.302316pt;}
.ls2{letter-spacing:15.937067pt;}
.ls35{letter-spacing:15.976826pt;}
.ls1a{letter-spacing:16.896570pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws45{word-spacing:-40.078876pt;}
.ws76{word-spacing:-36.071229pt;}
.ws90{word-spacing:-14.400000pt;}
.ws2e{word-spacing:-13.283467pt;}
.ws68{word-spacing:-13.280000pt;}
.ws8f{word-spacing:-12.863840pt;}
.ws9d{word-spacing:-12.016000pt;}
.ws9c{word-spacing:-12.000000pt;}
.ws81{word-spacing:-11.955200pt;}
.ws67{word-spacing:-10.719867pt;}
.ws30{word-spacing:-10.626800pt;}
.ws7d{word-spacing:-10.183873pt;}
.ws1{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws91{word-spacing:-8.831840pt;}
.ws7e{word-spacing:-6.991873pt;}
.wsd3{word-spacing:-2.762961pt;}
.ws2d{word-spacing:-2.550426pt;}
.wscc{word-spacing:-2.337890pt;}
.ws47{word-spacing:-2.125355pt;}
.ws98{word-spacing:-2.072221pt;}
.wsab{word-spacing:-1.965953pt;}
.ws74{word-spacing:-1.912819pt;}
.ws53{word-spacing:-1.859685pt;}
.wsa1{word-spacing:-1.806551pt;}
.wsc3{word-spacing:-1.753418pt;}
.wsb1{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws69{word-spacing:-1.673728pt;}
.wsd1{word-spacing:-1.647150pt;}
.wsaa{word-spacing:-1.594016pt;}
.ws7f{word-spacing:-1.578086pt;}
.wsae{word-spacing:-1.540882pt;}
.ws32{word-spacing:-1.487748pt;}
.ws15{word-spacing:-1.434624pt;}
.ws97{word-spacing:-1.434614pt;}
.ws63{word-spacing:-1.381481pt;}
.ws21{word-spacing:-1.338982pt;}
.ws2b{word-spacing:-1.275213pt;}
.wsa9{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws65{word-spacing:-1.168945pt;}
.ws54{word-spacing:-1.115811pt;}
.ws64{word-spacing:-1.062677pt;}
.wsb0{word-spacing:-1.009543pt;}
.ws114{word-spacing:-1.004237pt;}
.ws37{word-spacing:-0.956410pt;}
.ws99{word-spacing:-0.903276pt;}
.ws48{word-spacing:-0.850142pt;}
.ws6b{word-spacing:-0.812954pt;}
.ws8d{word-spacing:-0.797008pt;}
.ws113{word-spacing:-0.765133pt;}
.ws4c{word-spacing:-0.743874pt;}
.ws102{word-spacing:-0.669491pt;}
.ws5a{word-spacing:-0.637606pt;}
.wse8{word-spacing:-0.621670pt;}
.ws42{word-spacing:-0.584473pt;}
.wsa7{word-spacing:-0.531339pt;}
.ws103{word-spacing:-0.478208pt;}
.ws43{word-spacing:-0.425071pt;}
.ws70{word-spacing:-0.371937pt;}
.ws66{word-spacing:-0.318803pt;}
.wsa0{word-spacing:-0.286925pt;}
.ws72{word-spacing:-0.265669pt;}
.ws20{word-spacing:-0.239104pt;}
.ws39{word-spacing:-0.212535pt;}
.wse0{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.047821pt;}
.ws5{word-spacing:-0.037194pt;}
.ws11f{word-spacing:-0.007501pt;}
.wse3{word-spacing:-0.006417pt;}
.ws9a{word-spacing:-0.004591pt;}
.wse9{word-spacing:-0.004523pt;}
.ws44{word-spacing:-0.004135pt;}
.ws2f{word-spacing:-0.003799pt;}
.wsf2{word-spacing:-0.002483pt;}
.ws101{word-spacing:-0.002082pt;}
.ws3b{word-spacing:-0.001785pt;}
.ws3a{word-spacing:-0.001770pt;}
.wse7{word-spacing:-0.001297pt;}
.wsfd{word-spacing:-0.000887pt;}
.ws117{word-spacing:-0.000717pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.001540pt;}
.wsea{word-spacing:0.001758pt;}
.ws92{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.wsdb{word-spacing:0.095642pt;}
.ws35{word-spacing:0.097670pt;}
.ws34{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.ws80{word-spacing:0.191283pt;}
.ws3e{word-spacing:0.212535pt;}
.ws1e{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws36{word-spacing:0.265669pt;}
.ws119{word-spacing:0.286925pt;}
.ws5d{word-spacing:0.318803pt;}
.ws1d{word-spacing:0.334746pt;}
.wsbc{word-spacing:0.371937pt;}
.ws4b{word-spacing:0.425071pt;}
.ws59{word-spacing:0.478205pt;}
.ws9f{word-spacing:0.478208pt;}
.wsa4{word-spacing:0.531339pt;}
.wsad{word-spacing:0.584473pt;}
.wsd8{word-spacing:0.637606pt;}
.ws73{word-spacing:0.690740pt;}
.wsef{word-spacing:0.717312pt;}
.ws24{word-spacing:0.743874pt;}
.ws9e{word-spacing:0.765133pt;}
.wsd0{word-spacing:0.797008pt;}
.ws27{word-spacing:0.850142pt;}
.wsf8{word-spacing:0.860774pt;}
.ws31{word-spacing:0.903276pt;}
.ws3f{word-spacing:0.956410pt;}
.ws86{word-spacing:1.009543pt;}
.wsc2{word-spacing:1.062677pt;}
.ws55{word-spacing:1.115811pt;}
.ws2a{word-spacing:1.168945pt;}
.wsee{word-spacing:1.187426pt;}
.wsed{word-spacing:1.195520pt;}
.wscf{word-spacing:1.222079pt;}
.wse2{word-spacing:1.243341pt;}
.wsda{word-spacing:1.275213pt;}
.ws41{word-spacing:1.328347pt;}
.ws40{word-spacing:1.381481pt;}
.ws85{word-spacing:1.434614pt;}
.ws18{word-spacing:1.434624pt;}
.wsa5{word-spacing:1.487748pt;}
.ws17{word-spacing:1.530266pt;}
.wscd{word-spacing:1.540882pt;}
.ws93{word-spacing:1.578086pt;}
.ws5f{word-spacing:1.594016pt;}
.ws1f{word-spacing:1.625907pt;}
.wsbb{word-spacing:1.647150pt;}
.ws1c{word-spacing:1.673728pt;}
.wsb{word-spacing:1.785293pt;}
.ws84{word-spacing:1.806551pt;}
.wsd2{word-spacing:1.859685pt;}
.ws4f{word-spacing:1.912819pt;}
.ws6f{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.072221pt;}
.ws7b{word-spacing:2.125355pt;}
.ws6{word-spacing:2.228574pt;}
.ws49{word-spacing:2.231622pt;}
.ws5e{word-spacing:2.284756pt;}
.ws10f{word-spacing:2.295398pt;}
.wsc0{word-spacing:2.337890pt;}
.ws56{word-spacing:2.391024pt;}
.ws3c{word-spacing:2.444158pt;}
.wsc4{word-spacing:2.497292pt;}
.ws89{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.ws46{word-spacing:2.603559pt;}
.wsfe{word-spacing:2.630144pt;}
.ws50{word-spacing:2.709827pt;}
.ws11e{word-spacing:2.725786pt;}
.wsac{word-spacing:2.762961pt;}
.wsdf{word-spacing:2.773606pt;}
.ws87{word-spacing:2.816095pt;}
.wsf5{word-spacing:2.821427pt;}
.ws106{word-spacing:2.861943pt;}
.wse6{word-spacing:2.864742pt;}
.wsf6{word-spacing:2.864836pt;}
.wsdd{word-spacing:2.866509pt;}
.ws118{word-spacing:2.867277pt;}
.ws116{word-spacing:2.867405pt;}
.wsf4{word-spacing:2.867575pt;}
.wsf9{word-spacing:2.867661pt;}
.ws112{word-spacing:2.868267pt;}
.ws10e{word-spacing:2.868762pt;}
.wse4{word-spacing:2.868898pt;}
.ws110{word-spacing:2.869060pt;}
.ws60{word-spacing:2.869229pt;}
.wse1{word-spacing:2.869248pt;}
.wsfc{word-spacing:2.869794pt;}
.wsf7{word-spacing:2.870537pt;}
.ws10d{word-spacing:2.917069pt;}
.ws8e{word-spacing:2.922363pt;}
.ws10c{word-spacing:2.926846pt;}
.ws10a{word-spacing:2.972127pt;}
.ws38{word-spacing:2.975497pt;}
.wscb{word-spacing:3.028630pt;}
.wsde{word-spacing:3.060531pt;}
.ws6c{word-spacing:3.081764pt;}
.wsdc{word-spacing:3.108352pt;}
.ws96{word-spacing:3.134898pt;}
.wseb{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws105{word-spacing:3.194664pt;}
.ws104{word-spacing:3.203994pt;}
.ws58{word-spacing:3.241166pt;}
.ws107{word-spacing:3.251814pt;}
.wsb3{word-spacing:3.294300pt;}
.ws4a{word-spacing:3.347434pt;}
.wsff{word-spacing:3.347456pt;}
.ws61{word-spacing:3.400567pt;}
.ws100{word-spacing:3.443098pt;}
.ws95{word-spacing:3.453701pt;}
.wse5{word-spacing:3.490918pt;}
.ws88{word-spacing:3.506835pt;}
.wsa6{word-spacing:3.559969pt;}
.ws9b{word-spacing:3.613103pt;}
.ws33{word-spacing:3.666237pt;}
.ws19{word-spacing:3.682202pt;}
.ws8b{word-spacing:3.719371pt;}
.ws57{word-spacing:3.772505pt;}
.ws3d{word-spacing:3.825638pt;}
.wsd9{word-spacing:3.878772pt;}
.ws115{word-spacing:3.969126pt;}
.ws5c{word-spacing:3.985040pt;}
.ws109{word-spacing:4.016947pt;}
.ws10b{word-spacing:4.064768pt;}
.wsc1{word-spacing:4.197575pt;}
.ws83{word-spacing:4.250709pt;}
.ws11d{word-spacing:4.399514pt;}
.wsd5{word-spacing:4.410111pt;}
.ws4e{word-spacing:4.463245pt;}
.wsf3{word-spacing:4.542976pt;}
.wsce{word-spacing:4.569513pt;}
.wsa8{word-spacing:4.622646pt;}
.ws94{word-spacing:4.675780pt;}
.ws11c{word-spacing:4.686438pt;}
.ws11b{word-spacing:4.695118pt;}
.ws52{word-spacing:4.728914pt;}
.ws6e{word-spacing:4.823603pt;}
.wsb5{word-spacing:4.829901pt;}
.ws6d{word-spacing:4.835182pt;}
.wsa3{word-spacing:4.888316pt;}
.wsaf{word-spacing:4.941450pt;}
.ws5b{word-spacing:4.994583pt;}
.ws8c{word-spacing:5.047717pt;}
.wsb4{word-spacing:5.164646pt;}
.ws82{word-spacing:5.312128pt;}
.ws62{word-spacing:5.313387pt;}
.ws12{word-spacing:5.393072pt;}
.wsc7{word-spacing:5.419654pt;}
.ws13{word-spacing:5.467459pt;}
.ws75{word-spacing:5.472788pt;}
.wsc8{word-spacing:5.579056pt;}
.wsbd{word-spacing:5.632190pt;}
.wsb2{word-spacing:5.685324pt;}
.wsf0{word-spacing:5.690675pt;}
.wsf1{word-spacing:5.718659pt;}
.ws11a{word-spacing:5.881958pt;}
.wsc5{word-spacing:5.897859pt;}
.ws22{word-spacing:5.929779pt;}
.ws51{word-spacing:5.950993pt;}
.ws111{word-spacing:5.977600pt;}
.wsec{word-spacing:6.025421pt;}
.wsbe{word-spacing:6.110395pt;}
.wsbf{word-spacing:6.269796pt;}
.wsa2{word-spacing:6.429198pt;}
.wsd7{word-spacing:6.641733pt;}
.ws4d{word-spacing:7.013670pt;}
.wsd4{word-spacing:7.066804pt;}
.wsc6{word-spacing:7.119938pt;}
.ws8a{word-spacing:7.173072pt;}
.wsd6{word-spacing:7.279340pt;}
.ws10{word-spacing:7.699075pt;}
.wsfb{word-spacing:11.333530pt;}
.ws108{word-spacing:12.768154pt;}
.ws9{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsc9{word-spacing:13.974207pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.wsf{word-spacing:15.732893pt;}
.ws11{word-spacing:24.399002pt;}
.ws71{word-spacing:32.039722pt;}
.wsca{word-spacing:32.889863pt;}
.wsfa{word-spacing:43.038720pt;}
.wsb7{word-spacing:286.781338pt;}
.wsba{word-spacing:449.706803pt;}
.wsb9{word-spacing:461.662003pt;}
.wsb8{word-spacing:473.617203pt;}
.wsb6{word-spacing:485.572403pt;}
.ws79{word-spacing:511.491277pt;}
.ws77{word-spacing:517.564518pt;}
.ws7a{word-spacing:526.459187pt;}
.ws78{word-spacing:535.162573pt;}
._41{margin-left:-7.218378pt;}
._f{margin-left:-5.768939pt;}
._4{margin-left:-4.797974pt;}
._3{margin-left:-3.421811pt;}
._1c{margin-left:-2.099866pt;}
._1{margin-left:-1.175671pt;}
._2{width:0.969929pt;}
._0{width:2.663486pt;}
._1e{width:4.122854pt;}
._1d{width:5.258880pt;}
._20{width:6.161920pt;}
._1f{width:7.383680pt;}
._2b{width:8.673024pt;}
._8{width:10.272212pt;}
._5{width:11.530016pt;}
._6{width:12.687767pt;}
._9{width:13.772390pt;}
._d{width:15.470137pt;}
._10{width:16.524633pt;}
._18{width:17.434635pt;}
._17{width:18.384318pt;}
._a{width:19.347575pt;}
._c{width:20.312115pt;}
._e{width:21.626726pt;}
._21{width:22.635027pt;}
._16{width:24.122775pt;}
._b{width:25.847250pt;}
._13{width:27.045138pt;}
._1a{width:28.001548pt;}
._7{width:29.011008pt;}
._2c{width:30.870777pt;}
._19{width:32.836730pt;}
._3e{width:33.852999pt;}
._15{width:34.802683pt;}
._2d{width:36.184163pt;}
._14{width:37.313427pt;}
._3f{width:38.533772pt;}
._40{width:39.955669pt;}
._44{width:42.544052pt;}
._43{width:54.993920pt;}
._42{width:78.904320pt;}
._27{width:344.644506pt;}
._24{width:371.471974pt;}
._23{width:421.014323pt;}
._2f{width:475.673498pt;}
._34{width:485.572403pt;}
._25{width:561.129267pt;}
._28{width:581.214003pt;}
._22{width:583.157278pt;}
._26{width:626.165555pt;}
._11{width:638.520937pt;}
._36{width:712.386458pt;}
._37{width:743.565619pt;}
._30{width:760.589824pt;}
._3a{width:788.038963pt;}
._3c{width:822.422118pt;}
._3b{width:867.086746pt;}
._39{width:903.239270pt;}
._31{width:907.447501pt;}
._35{width:919.402701pt;}
._33{width:935.231386pt;}
._32{width:939.104870pt;}
._38{width:944.412979pt;}
._3d{width:947.186586pt;}
._29{width:1793.058900pt;}
._1b{width:1887.292931pt;}
._2e{width:2208.333067pt;}
._12{width:2229.586400pt;}
._2a{width:2265.221785pt;}
.fs11{font-size:27.967493pt;}
.fs12{font-size:30.400000pt;}
.fs7{font-size:31.880533pt;}
.fs16{font-size:35.327360pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fse{font-size:40.735493pt;}
.fs4{font-size:41.988267pt;}
.fs17{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.879467pt;}
.fs10{font-size:45.600000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs18{font-size:49.829333pt;}
.fsf{font-size:50.464000pt;}
.fs13{font-size:51.455360pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fs15{font-size:57.600000pt;}
.fs14{font-size:63.744000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y144{bottom:-849.076800pt;}
.y168{bottom:-759.988800pt;}
.y167{bottom:-739.636960pt;}
.y166{bottom:-719.092800pt;}
.y165{bottom:-698.548800pt;}
.y164{bottom:-678.004800pt;}
.y108{bottom:-671.686733pt;}
.y163{bottom:-657.460800pt;}
.y162{bottom:-637.108800pt;}
.y161{bottom:-616.564800pt;}
.y160{bottom:-596.020800pt;}
.y15f{bottom:-575.476960pt;}
.y12a{bottom:-569.694733pt;}
.y15e{bottom:-554.932800pt;}
.y129{bottom:-553.430733pt;}
.y128{bottom:-537.166733pt;}
.y15d{bottom:-529.396800pt;}
.y127{bottom:-521.054733pt;}
.y126{bottom:-504.790733pt;}
.y18e{bottom:-490.673333pt;}
.y15c{bottom:-490.036800pt;}
.y125{bottom:-488.526733pt;}
.y124{bottom:-472.262733pt;}
.y15b{bottom:-469.492800pt;}
.y123{bottom:-455.998733pt;}
.y15a{bottom:-448.948800pt;}
.y122{bottom:-439.886860pt;}
.y1a8{bottom:-431.633333pt;}
.y159{bottom:-428.404960pt;}
.y121{bottom:-423.622733pt;}
.y1a7{bottom:-414.673333pt;}
.y158{bottom:-407.860800pt;}
.y120{bottom:-407.358733pt;}
.y1a6{bottom:-397.553333pt;}
.y11f{bottom:-391.094733pt;}
.y157{bottom:-387.508800pt;}
.y1a5{bottom:-380.433333pt;}
.y11e{bottom:-374.830733pt;}
.y156{bottom:-366.964800pt;}
.y1a4{bottom:-363.313333pt;}
.y11d{bottom:-354.918733pt;}
.y155{bottom:-346.420800pt;}
.y1a3{bottom:-346.193333pt;}
.y1a2{bottom:-329.233333pt;}
.y154{bottom:-325.876800pt;}
.y11c{bottom:-323.454860pt;}
.y1a1{bottom:-312.113333pt;}
.y11b{bottom:-307.190733pt;}
.y153{bottom:-305.332800pt;}
.y1a0{bottom:-294.993333pt;}
.y11a{bottom:-290.926733pt;}
.y152{bottom:-284.980800pt;}
.y19f{bottom:-277.873333pt;}
.y119{bottom:-274.662733pt;}
.y151{bottom:-264.436800pt;}
.y19e{bottom:-260.753333pt;}
.y118{bottom:-258.398733pt;}
.ybd{bottom:-244.038667pt;}
.y150{bottom:-243.892800pt;}
.y19d{bottom:-243.633333pt;}
.y117{bottom:-242.286733pt;}
.y19c{bottom:-226.673333pt;}
.y116{bottom:-226.022733pt;}
.y14f{bottom:-223.348800pt;}
.y115{bottom:-209.758733pt;}
.y19b{bottom:-209.553333pt;}
.y14e{bottom:-202.804800pt;}
.y114{bottom:-193.494733pt;}
.y19a{bottom:-192.433333pt;}
.ye1{bottom:-189.158667pt;}
.y14d{bottom:-182.452800pt;}
.y113{bottom:-177.230860pt;}
.y199{bottom:-175.313333pt;}
.ye0{bottom:-172.038667pt;}
.y14c{bottom:-161.908800pt;}
.y112{bottom:-161.118733pt;}
.y198{bottom:-158.193467pt;}
.ydf{bottom:-154.918667pt;}
.y111{bottom:-144.854733pt;}
.y14b{bottom:-141.364800pt;}
.y197{bottom:-141.233333pt;}
.yde{bottom:-133.798667pt;}
.y110{bottom:-128.590733pt;}
.y196{bottom:-124.113467pt;}
.ydd{bottom:-112.678667pt;}
.y10f{bottom:-112.326733pt;}
.y14a{bottom:-102.196800pt;}
.y195{bottom:-91.473333pt;}
.y149{bottom:-83.764800pt;}
.y10e{bottom:-81.318733pt;}
.ydc{bottom:-80.038800pt;}
.y194{bottom:-76.113467pt;}
.y10d{bottom:-66.726733pt;}
.y148{bottom:-65.332800pt;}
.ydb{bottom:-64.678667pt;}
.y193{bottom:-60.593333pt;}
.y10c{bottom:-52.134733pt;}
.yda{bottom:-49.318667pt;}
.y147{bottom:-46.708800pt;}
.y192{bottom:-45.233333pt;}
.y10b{bottom:-37.542860pt;}
.yd9{bottom:-33.958667pt;}
.y191{bottom:-29.873333pt;}
.y146{bottom:-28.276800pt;}
.y10a{bottom:-22.950733pt;}
.yd8{bottom:-18.598667pt;}
.y190{bottom:-14.513333pt;}
.y145{bottom:-4.276800pt;}
.y109{bottom:-3.798733pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:1.561333pt;}
.ya{bottom:3.044747pt;}
.y18f{bottom:5.486667pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:13.631314pt;}
.y4b{bottom:28.346667pt;}
.yf5{bottom:81.494667pt;}
.y130{bottom:82.406667pt;}
.y18a{bottom:83.954667pt;}
.y1d3{bottom:84.614667pt;}
.y2ad{bottom:87.428000pt;}
.y275{bottom:89.261333pt;}
.y23{bottom:91.398667pt;}
.y2e4{bottom:92.050667pt;}
.y1e0{bottom:93.246667pt;}
.y241{bottom:93.645333pt;}
.yb9{bottom:94.840000pt;}
.y12f{bottom:97.170667pt;}
.y83{bottom:97.214667pt;}
.yf4{bottom:98.232000pt;}
.y4a{bottom:98.928000pt;}
.y12e{bottom:99.502667pt;}
.y189{bottom:100.692000pt;}
.y1d2{bottom:101.352000pt;}
.y2ac{bottom:102.770667pt;}
.y1bc{bottom:102.917333pt;}
.y22{bottom:107.298667pt;}
.y2e3{bottom:107.393333pt;}
.y20f{bottom:107.593333pt;}
.y1df{bottom:109.984000pt;}
.y240{bottom:110.382667pt;}
.yb8{bottom:111.577333pt;}
.y274{bottom:112.853333pt;}
.y82{bottom:113.952000pt;}
.yf3{bottom:114.969333pt;}
.y49{bottom:115.665333pt;}
.y12d{bottom:116.598667pt;}
.y188{bottom:117.429333pt;}
.y1d1{bottom:118.089333pt;}
.y2ab{bottom:118.113333pt;}
.y1bb{bottom:119.654667pt;}
.y2e2{bottom:122.736000pt;}
.y21{bottom:123.200000pt;}
.y20e{bottom:124.329333pt;}
.y1de{bottom:126.721333pt;}
.y23f{bottom:127.120000pt;}
.yb7{bottom:128.314667pt;}
.y273{bottom:128.474667pt;}
.y81{bottom:130.689333pt;}
.yf2{bottom:131.706667pt;}
.y48{bottom:132.402667pt;}
.y2aa{bottom:133.456000pt;}
.y12c{bottom:133.693333pt;}
.y187{bottom:134.166667pt;}
.y1d0{bottom:134.826667pt;}
.y1ba{bottom:136.392000pt;}
.y2e1{bottom:138.078667pt;}
.y20{bottom:139.100000pt;}
.y20d{bottom:141.066667pt;}
.y1dd{bottom:143.458667pt;}
.y23e{bottom:143.857333pt;}
.y272{bottom:144.096000pt;}
.yb6{bottom:145.052000pt;}
.y80{bottom:147.426667pt;}
.yf1{bottom:148.444000pt;}
.y2a9{bottom:148.798667pt;}
.y47{bottom:149.140000pt;}
.y12b{bottom:150.789333pt;}
.y186{bottom:150.904000pt;}
.y1cf{bottom:151.564000pt;}
.y1b9{bottom:153.129333pt;}
.y2e0{bottom:153.421333pt;}
.y1f{bottom:155.000000pt;}
.y271{bottom:159.717333pt;}
.y1dc{bottom:160.196000pt;}
.y23d{bottom:160.594667pt;}
.yb5{bottom:161.789333pt;}
.y2a8{bottom:164.141333pt;}
.y7f{bottom:164.164000pt;}
.yf0{bottom:165.181333pt;}
.y46{bottom:165.877333pt;}
.y185{bottom:167.640000pt;}
.y1ce{bottom:168.301333pt;}
.y2df{bottom:168.762667pt;}
.y1b8{bottom:169.866667pt;}
.y105{bottom:170.726667pt;}
.y1e{bottom:170.901333pt;}
.y1db{bottom:176.933333pt;}
.y23c{bottom:177.330667pt;}
.yb4{bottom:178.526667pt;}
.y2a7{bottom:179.482667pt;}
.y7e{bottom:180.901333pt;}
.y45{bottom:182.614667pt;}
.y2de{bottom:184.105333pt;}
.y184{bottom:184.377333pt;}
.yef{bottom:185.902667pt;}
.y1b7{bottom:186.604000pt;}
.y1d{bottom:186.801333pt;}
.y270{bottom:191.278667pt;}
.y20c{bottom:191.677333pt;}
.y1da{bottom:193.669333pt;}
.y23b{bottom:194.068000pt;}
.y2a6{bottom:194.825333pt;}
.yb3{bottom:195.264000pt;}
.y7d{bottom:197.638667pt;}
.y44{bottom:199.352000pt;}
.y2dd{bottom:199.448000pt;}
.y183{bottom:201.114667pt;}
.y1c{bottom:202.701333pt;}
.y1b6{bottom:203.341333pt;}
.yee{bottom:203.836000pt;}
.y26f{bottom:208.016000pt;}
.y20b{bottom:208.414667pt;}
.y1cd{bottom:208.712000pt;}
.y2a5{bottom:210.168000pt;}
.y1d9{bottom:210.406667pt;}
.y23a{bottom:210.805333pt;}
.y140{bottom:211.602667pt;}
.yb2{bottom:212.001333pt;}
.y7c{bottom:214.376000pt;}
.y2dc{bottom:214.790667pt;}
.y43{bottom:216.088000pt;}
.y182{bottom:217.852000pt;}
.y1b5{bottom:220.078667pt;}
.y1cc{bottom:223.324000pt;}
.y26e{bottom:224.753333pt;}
.y20a{bottom:225.152000pt;}
.y2a4{bottom:225.510667pt;}
.y1d8{bottom:227.144000pt;}
.y239{bottom:227.542667pt;}
.y13f{bottom:228.340000pt;}
.yb1{bottom:228.738667pt;}
.y2db{bottom:230.133333pt;}
.y7b{bottom:231.113333pt;}
.y42{bottom:232.825333pt;}
.yed{bottom:233.724000pt;}
.y1b4{bottom:236.816000pt;}
.y1cb{bottom:237.934667pt;}
.y181{bottom:238.574667pt;}
.y2a3{bottom:240.853333pt;}
.y26d{bottom:241.490667pt;}
.y209{bottom:241.889333pt;}
.y1d7{bottom:243.881333pt;}
.y238{bottom:244.280000pt;}
.y13e{bottom:245.077333pt;}
.yb0{bottom:245.476000pt;}
.y7a{bottom:247.850667pt;}
.y41{bottom:249.562667pt;}
.yec{bottom:250.461333pt;}
.y1ca{bottom:252.546667pt;}
.y1b3{bottom:253.553333pt;}
.y2a2{bottom:256.196000pt;}
.y26c{bottom:258.228000pt;}
.y208{bottom:258.626667pt;}
.y1d6{bottom:260.618667pt;}
.y2da{bottom:260.818667pt;}
.y237{bottom:261.017333pt;}
.y13d{bottom:261.814667pt;}
.yaf{bottom:262.213333pt;}
.y79{bottom:264.588000pt;}
.y40{bottom:266.300000pt;}
.y1c9{bottom:267.158667pt;}
.yeb{bottom:267.198667pt;}
.y180{bottom:268.462667pt;}
.y1b2{bottom:270.290667pt;}
.y2a1{bottom:271.538667pt;}
.y1b{bottom:273.154667pt;}
.y26b{bottom:274.965333pt;}
.y207{bottom:275.364000pt;}
.y2d9{bottom:276.161333pt;}
.y236{bottom:277.754667pt;}
.y13c{bottom:278.552000pt;}
.yae{bottom:278.950667pt;}
.y78{bottom:281.325333pt;}
.y1d5{bottom:281.341333pt;}
.y1c8{bottom:281.770667pt;}
.y3f{bottom:283.037333pt;}
.yea{bottom:283.936000pt;}
.y17f{bottom:285.200000pt;}
.y107{bottom:286.065267pt;}
.y2a0{bottom:286.881333pt;}
.y1b1{bottom:287.028000pt;}
.y1a{bottom:289.054667pt;}
.y2d8{bottom:291.502667pt;}
.y26a{bottom:291.702667pt;}
.y206{bottom:292.101333pt;}
.y106{bottom:294.425267pt;}
.y235{bottom:294.492000pt;}
.y13b{bottom:295.289333pt;}
.yad{bottom:295.688000pt;}
.y1c7{bottom:296.382667pt;}
.y77{bottom:298.062667pt;}
.y1d4{bottom:299.274667pt;}
.y3e{bottom:299.774667pt;}
.ye9{bottom:300.673333pt;}
.y17e{bottom:301.937333pt;}
.y29f{bottom:302.222667pt;}
.y1b0{bottom:303.765333pt;}
.y19{bottom:304.954667pt;}
.yd6{bottom:305.561333pt;}
.y2d7{bottom:306.845333pt;}
.y269{bottom:308.440000pt;}
.y204{bottom:308.838667pt;}
.y1c6{bottom:310.994667pt;}
.y234{bottom:311.229333pt;}
.y13a{bottom:312.026667pt;}
.yac{bottom:312.425333pt;}
.y205{bottom:313.660000pt;}
.y76{bottom:314.800000pt;}
.y3d{bottom:316.512000pt;}
.ye8{bottom:317.410667pt;}
.y29e{bottom:317.565333pt;}
.y17d{bottom:318.674667pt;}
.y1af{bottom:320.502667pt;}
.y18{bottom:320.856000pt;}
.y2d6{bottom:322.188000pt;}
.yd5{bottom:322.521333pt;}
.y268{bottom:325.177333pt;}
.y203{bottom:325.576000pt;}
.y1c5{bottom:325.606667pt;}
.y233{bottom:327.966667pt;}
.y139{bottom:328.764000pt;}
.yab{bottom:329.162667pt;}
.y75{bottom:331.537333pt;}
.y29d{bottom:332.908000pt;}
.ye7{bottom:334.148000pt;}
.y17c{bottom:335.412000pt;}
.y3c{bottom:337.234667pt;}
.y2d5{bottom:337.530667pt;}
.yd4{bottom:339.641333pt;}
.y1c4{bottom:340.218667pt;}
.y267{bottom:341.914667pt;}
.y232{bottom:344.704000pt;}
.y138{bottom:345.501333pt;}
.yaa{bottom:345.900000pt;}
.y202{bottom:346.298667pt;}
.y29c{bottom:348.250667pt;}
.y74{bottom:348.274667pt;}
.y1ae{bottom:350.338667pt;}
.y17b{bottom:352.149333pt;}
.y2d4{bottom:352.873333pt;}
.y17{bottom:354.688000pt;}
.y1c3{bottom:354.830667pt;}
.yd3{bottom:356.761333pt;}
.y266{bottom:358.652000pt;}
.y143{bottom:360.715200pt;}
.y231{bottom:361.441333pt;}
.y137{bottom:362.238667pt;}
.ya9{bottom:362.637333pt;}
.y29b{bottom:363.593333pt;}
.ye6{bottom:363.984000pt;}
.y201{bottom:364.230667pt;}
.y73{bottom:365.012000pt;}
.y1ad{bottom:367.434667pt;}
.y2d3{bottom:368.216000pt;}
.y17a{bottom:368.886667pt;}
.y1c2{bottom:369.442667pt;}
.y16{bottom:370.589333pt;}
.y142{bottom:371.275200pt;}
.yd2{bottom:373.881333pt;}
.y265{bottom:375.389333pt;}
.y29a{bottom:378.936000pt;}
.y136{bottom:378.976000pt;}
.ya8{bottom:379.374667pt;}
.ye5{bottom:381.080000pt;}
.y72{bottom:381.749333pt;}
.y230{bottom:382.164000pt;}
.y2d2{bottom:383.558667pt;}
.y1c1{bottom:384.053333pt;}
.y1ac{bottom:384.530667pt;}
.y179{bottom:385.624000pt;}
.y15{bottom:386.489333pt;}
.yd1{bottom:391.001333pt;}
.y264{bottom:392.126667pt;}
.y200{bottom:394.118667pt;}
.y299{bottom:394.278667pt;}
.y135{bottom:395.713333pt;}
.ya7{bottom:396.112000pt;}
.ye4{bottom:398.176000pt;}
.y71{bottom:398.486667pt;}
.y1c0{bottom:398.665333pt;}
.y2d1{bottom:398.901333pt;}
.y1ab{bottom:401.626667pt;}
.y178{bottom:402.361333pt;}
.y3b{bottom:404.034667pt;}
.yd0{bottom:407.961333pt;}
.y263{bottom:408.864000pt;}
.y298{bottom:409.621333pt;}
.y1ff{bottom:410.856000pt;}
.y22f{bottom:412.052000pt;}
.y134{bottom:412.450667pt;}
.ya6{bottom:412.848000pt;}
.y2d0{bottom:414.244000pt;}
.y70{bottom:415.224000pt;}
.ye3{bottom:415.272000pt;}
.y14{bottom:418.330667pt;}
.y1aa{bottom:418.722667pt;}
.y177{bottom:419.098667pt;}
.y1bf{bottom:419.680000pt;}
.y3a{bottom:421.329333pt;}
.y297{bottom:424.964000pt;}
.ycf{bottom:425.081333pt;}
.y262{bottom:425.601333pt;}
.y1fe{bottom:427.593333pt;}
.y22e{bottom:428.789333pt;}
.ya5{bottom:429.585333pt;}
.y6f{bottom:431.961333pt;}
.ye2{bottom:432.368000pt;}
.y133{bottom:433.172000pt;}
.y13{bottom:434.230667pt;}
.y1a9{bottom:435.817333pt;}
.y176{bottom:435.836000pt;}
.y296{bottom:440.305333pt;}
.yce{bottom:442.201333pt;}
.y261{bottom:442.338667pt;}
.y1fd{bottom:444.330667pt;}
.y2cf{bottom:444.928000pt;}
.y22d{bottom:445.526667pt;}
.ya4{bottom:446.322667pt;}
.y1be{bottom:447.786667pt;}
.y104{bottom:448.277333pt;}
.y6e{bottom:448.698667pt;}
.yba{bottom:452.304000pt;}
.y175{bottom:452.573333pt;}
.y39{bottom:454.565333pt;}
.y295{bottom:455.648000pt;}
.y18b{bottom:455.754667pt;}
.y260{bottom:459.076000pt;}
.ycd{bottom:459.321333pt;}
.y2ce{bottom:460.270667pt;}
.y1fc{bottom:461.068000pt;}
.y22c{bottom:462.264000pt;}
.ya3{bottom:463.060000pt;}
.y1bd{bottom:464.881333pt;}
.y103{bottom:465.014667pt;}
.y6d{bottom:465.436000pt;}
.y12{bottom:466.070667pt;}
.y174{bottom:469.310667pt;}
.y294{bottom:470.990667pt;}
.y38{bottom:471.860000pt;}
.y2cd{bottom:475.613333pt;}
.y25f{bottom:475.813333pt;}
.ycc{bottom:476.441333pt;}
.y1fb{bottom:477.805333pt;}
.y22b{bottom:479.001333pt;}
.ya2{bottom:479.797333pt;}
.y102{bottom:481.752000pt;}
.y11{bottom:481.972000pt;}
.y6c{bottom:482.173333pt;}
.y173{bottom:486.048000pt;}
.y293{bottom:486.333333pt;}
.y37{bottom:489.156000pt;}
.y2cc{bottom:490.956000pt;}
.y25e{bottom:492.549333pt;}
.ycb{bottom:493.401333pt;}
.y1f9{bottom:494.542667pt;}
.y22a{bottom:495.738667pt;}
.ya1{bottom:496.534667pt;}
.y10{bottom:497.872000pt;}
.y101{bottom:498.489333pt;}
.y6b{bottom:498.910667pt;}
.y1fa{bottom:499.364000pt;}
.y292{bottom:501.676000pt;}
.y172{bottom:502.785333pt;}
.y2cb{bottom:506.298667pt;}
.y36{bottom:506.450667pt;}
.y25d{bottom:509.286667pt;}
.yca{bottom:510.521333pt;}
.y1f8{bottom:511.280000pt;}
.y229{bottom:512.476000pt;}
.ya0{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.y100{bottom:515.226667pt;}
.y6a{bottom:515.648000pt;}
.y291{bottom:517.018667pt;}
.y18d{bottom:517.486667pt;}
.y171{bottom:519.522667pt;}
.y2ca{bottom:521.641333pt;}
.y35{bottom:523.745333pt;}
.y25c{bottom:526.024000pt;}
.y18c{bottom:526.286667pt;}
.yc9{bottom:527.641200pt;}
.y1f7{bottom:528.017333pt;}
.y227{bottom:529.213333pt;}
.ye{bottom:529.673333pt;}
.y9f{bottom:530.009333pt;}
.yff{bottom:531.964000pt;}
.y290{bottom:532.361333pt;}
.y69{bottom:532.384000pt;}
.y228{bottom:534.034667pt;}
.y170{bottom:536.260000pt;}
.y2c9{bottom:536.984000pt;}
.y34{bottom:541.041333pt;}
.y25b{bottom:542.761333pt;}
.y1f6{bottom:544.754667pt;}
.yc8{bottom:544.761333pt;}
.yd{bottom:545.573333pt;}
.y226{bottom:545.950667pt;}
.y9e{bottom:546.746667pt;}
.y28f{bottom:547.704000pt;}
.yfe{bottom:548.701333pt;}
.y67{bottom:549.121333pt;}
.y2c8{bottom:552.325333pt;}
.y16f{bottom:552.996000pt;}
.y68{bottom:553.944000pt;}
.y33{bottom:558.336000pt;}
.y25a{bottom:559.498667pt;}
.yc{bottom:561.473333pt;}
.y1f4{bottom:561.492000pt;}
.yc7{bottom:561.881333pt;}
.y225{bottom:562.686667pt;}
.y28e{bottom:563.045333pt;}
.y9d{bottom:563.484000pt;}
.y66{bottom:565.858667pt;}
.y1f5{bottom:566.313333pt;}
.y2c7{bottom:567.668000pt;}
.yfd{bottom:569.424000pt;}
.y32{bottom:575.632000pt;}
.y259{bottom:576.236000pt;}
.yb{bottom:577.374667pt;}
.y1f3{bottom:578.229333pt;}
.y28d{bottom:578.388000pt;}
.yc6{bottom:578.841333pt;}
.y224{bottom:579.424000pt;}
.y9c{bottom:580.221333pt;}
.y65{bottom:582.596000pt;}
.y16e{bottom:582.833333pt;}
.y2c6{bottom:583.010667pt;}
.y31{bottom:592.926667pt;}
.y258{bottom:592.973333pt;}
.y28c{bottom:593.730667pt;}
.y1f2{bottom:594.966667pt;}
.yc5{bottom:595.961333pt;}
.y223{bottom:596.161333pt;}
.y9b{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y16d{bottom:597.597333pt;}
.y2c5{bottom:598.353333pt;}
.y64{bottom:599.333333pt;}
.y16c{bottom:599.929333pt;}
.yfc{bottom:607.045333pt;}
.y28b{bottom:609.073333pt;}
.y257{bottom:609.710667pt;}
.y30{bottom:610.221333pt;}
.y132{bottom:610.961333pt;}
.y222{bottom:612.898667pt;}
.yc4{bottom:613.081333pt;}
.y9a{bottom:613.696000pt;}
.y1f1{bottom:615.689333pt;}
.y63{bottom:616.070667pt;}
.y16b{bottom:617.024000pt;}
.yfb{bottom:621.657333pt;}
.y28a{bottom:624.416000pt;}
.y256{bottom:626.448000pt;}
.y2f{bottom:627.517333pt;}
.y2c4{bottom:629.038667pt;}
.y221{bottom:629.636000pt;}
.yc3{bottom:630.201333pt;}
.y99{bottom:630.433333pt;}
.y62{bottom:632.808000pt;}
.y16a{bottom:634.120000pt;}
.yfa{bottom:636.269333pt;}
.y289{bottom:639.758667pt;}
.y255{bottom:643.185333pt;}
.y2c3{bottom:644.381333pt;}
.y2e{bottom:644.812000pt;}
.y1f0{bottom:645.576000pt;}
.y220{bottom:646.373333pt;}
.y98{bottom:647.170667pt;}
.yc2{bottom:647.321333pt;}
.y61{bottom:649.545333pt;}
.yf9{bottom:650.881333pt;}
.y169{bottom:651.216000pt;}
.y288{bottom:655.101333pt;}
.y2c2{bottom:659.724000pt;}
.y254{bottom:659.922667pt;}
.y2d{bottom:662.108000pt;}
.y1ef{bottom:662.313333pt;}
.y21f{bottom:663.110667pt;}
.y97{bottom:663.908000pt;}
.yc1{bottom:664.281333pt;}
.yf8{bottom:665.492000pt;}
.y60{bottom:666.282667pt;}
.y287{bottom:670.444000pt;}
.y141{bottom:671.153333pt;}
.y2c1{bottom:675.066667pt;}
.y253{bottom:676.660000pt;}
.y1ed{bottom:679.050667pt;}
.y2c{bottom:679.402667pt;}
.y21e{bottom:679.848000pt;}
.y96{bottom:680.645333pt;}
.yc0{bottom:681.401333pt;}
.y5f{bottom:683.020000pt;}
.y1ee{bottom:683.873333pt;}
.y286{bottom:685.786667pt;}
.yf7{bottom:686.506667pt;}
.y2c0{bottom:690.408000pt;}
.y252{bottom:693.397333pt;}
.y1ec{bottom:695.788000pt;}
.y21d{bottom:696.585333pt;}
.y2b{bottom:696.697333pt;}
.y95{bottom:697.382667pt;}
.ybf{bottom:698.521333pt;}
.y5e{bottom:699.757333pt;}
.y285{bottom:701.128000pt;}
.y2bf{bottom:705.750667pt;}
.y251{bottom:710.134667pt;}
.y131{bottom:711.385333pt;}
.y1eb{bottom:712.525333pt;}
.y21c{bottom:713.322667pt;}
.y2a{bottom:713.993333pt;}
.y94{bottom:714.120000pt;}
.yf6{bottom:714.613333pt;}
.ybe{bottom:715.641200pt;}
.y284{bottom:716.470667pt;}
.y5d{bottom:716.494667pt;}
.y2be{bottom:721.093333pt;}
.y250{bottom:726.872000pt;}
.y1ea{bottom:729.262667pt;}
.y21b{bottom:730.060000pt;}
.y93{bottom:730.857333pt;}
.y283{bottom:731.813333pt;}
.y5c{bottom:733.232000pt;}
.y2bd{bottom:736.436000pt;}
.y24f{bottom:743.609333pt;}
.y1e9{bottom:746.000000pt;}
.y21a{bottom:746.797333pt;}
.y282{bottom:747.156000pt;}
.y92{bottom:747.594667pt;}
.y29{bottom:748.290667pt;}
.y5b{bottom:749.969333pt;}
.y2bc{bottom:751.778667pt;}
.y24e{bottom:760.346667pt;}
.y281{bottom:762.498667pt;}
.y28{bottom:762.637333pt;}
.y1e7{bottom:762.737333pt;}
.y219{bottom:763.534667pt;}
.ybc{bottom:764.121333pt;}
.y91{bottom:764.332000pt;}
.y5a{bottom:766.706667pt;}
.y2bb{bottom:767.121333pt;}
.y1e8{bottom:767.560000pt;}
.ybb{bottom:772.921333pt;}
.y24d{bottom:777.084000pt;}
.y280{bottom:777.841333pt;}
.y1e6{bottom:779.474667pt;}
.y218{bottom:780.272000pt;}
.y27{bottom:780.841333pt;}
.y90{bottom:781.069333pt;}
.y2ba{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y26{bottom:791.329333pt;}
.y27f{bottom:793.184000pt;}
.y24c{bottom:793.821333pt;}
.y1e5{bottom:796.212000pt;}
.y8f{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y217{bottom:800.994667pt;}
.y25{bottom:805.676000pt;}
.y27e{bottom:808.526667pt;}
.y24b{bottom:810.558667pt;}
.y1e4{bottom:812.949333pt;}
.y2b8{bottom:813.148000pt;}
.y2b9{bottom:813.149333pt;}
.y8e{bottom:814.544000pt;}
.y57{bottom:816.918667pt;}
.y27d{bottom:823.868000pt;}
.y24{bottom:823.880000pt;}
.y24a{bottom:827.296000pt;}
.y2b7{bottom:828.490667pt;}
.y216{bottom:830.882667pt;}
.y8d{bottom:831.281333pt;}
.y56{bottom:833.656000pt;}
.y1e3{bottom:833.672000pt;}
.y27c{bottom:839.210667pt;}
.y2b6{bottom:843.833333pt;}
.y249{bottom:844.033333pt;}
.y215{bottom:847.620000pt;}
.y8c{bottom:848.018667pt;}
.y55{bottom:850.393333pt;}
.y1e2{bottom:851.604000pt;}
.y27b{bottom:854.553333pt;}
.y2b5{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.y248{bottom:860.770667pt;}
.y214{bottom:864.357333pt;}
.y8b{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.y27a{bottom:869.896000pt;}
.y2b4{bottom:874.518667pt;}
.y247{bottom:877.508000pt;}
.y213{bottom:881.094667pt;}
.y8a{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y279{bottom:889.224000pt;}
.y2b3{bottom:889.861333pt;}
.y246{bottom:894.245333pt;}
.y212{bottom:897.832000pt;}
.y89{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y52{bottom:900.605333pt;}
.y2b2{bottom:905.204000pt;}
.y245{bottom:910.982667pt;}
.y211{bottom:914.569333pt;}
.y88{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y278{bottom:919.112000pt;}
.y2b1{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y244{bottom:927.720000pt;}
.y1e1{bottom:929.277333pt;}
.y87{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.y210{bottom:935.290667pt;}
.y2b0{bottom:935.889333pt;}
.y277{bottom:942.702667pt;}
.y243{bottom:944.456000pt;}
.y86{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y2af{bottom:951.230667pt;}
.y242{bottom:961.193333pt;}
.y85{bottom:965.178667pt;}
.y276{bottom:966.294667pt;}
.y2ae{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h29{height:28.023859pt;}
.h15{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h14{height:31.157778pt;}
.h2b{height:33.186336pt;}
.h10{height:33.378918pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h2a{height:35.052646pt;}
.h21{height:36.615969pt;}
.h1c{height:36.873667pt;}
.h13{height:37.087439pt;}
.h1e{height:37.354129pt;}
.h11{height:38.256384pt;}
.h1b{height:38.543125pt;}
.h12{height:38.681455pt;}
.h1a{height:38.776563pt;}
.h4{height:38.947124pt;}
.h17{height:39.320136pt;}
.h20{height:41.814844pt;}
.h2c{height:42.799616pt;}
.h19{height:44.015625pt;}
.h2{height:45.271688pt;}
.h1f{height:46.275094pt;}
.h26{height:46.531875pt;}
.h23{height:47.184163pt;}
.h28{height:47.314526pt;}
.h6{height:48.365611pt;}
.h18{height:48.710625pt;}
.h25{height:52.818750pt;}
.h24{height:58.452750pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h1d{height:256.538000pt;}
.h16{height:291.013333pt;}
.h22{height:324.048000pt;}
.h27{height:488.410667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:189.392721pt;}
.w4{width:366.521333pt;}
.w5{width:509.091320pt;}
.w6{width:642.433920pt;}
.w7{width:646.775467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6b{left:-168.032000pt;}
.xb5{left:-97.817280pt;}
.x99{left:-77.438680pt;}
.xb7{left:-63.833280pt;}
.x9b{left:-50.534680pt;}
.xcc{left:-7.357867pt;}
.x0{left:0.000000pt;}
.x6c{left:5.888000pt;}
.xce{left:20.962133pt;}
.x3{left:26.021437pt;}
.x6d{left:34.208000pt;}
.x1{left:48.000000pt;}
.x2{left:51.298450pt;}
.xcb{left:73.463200pt;}
.x9e{left:76.346667pt;}
.xbf{left:85.110667pt;}
.x9d{left:87.785320pt;}
.xc0{left:109.868000pt;}
.xb9{left:110.886720pt;}
.x9c{left:114.689320pt;}
.xeb{left:116.056000pt;}
.xea{left:119.045333pt;}
.xe9{left:121.209333pt;}
.x9f{left:127.214667pt;}
.x98{left:142.306413pt;}
.xb8{left:144.870720pt;}
.xa3{left:156.668000pt;}
.xa4{left:164.540000pt;}
.xd0{left:166.562133pt;}
.xa7{left:176.054667pt;}
.xcf{left:194.882133pt;}
.xa8{left:200.824000pt;}
.xd1{left:201.826667pt;}
.xd2{left:207.804000pt;}
.xc1{left:216.548000pt;}
.xad{left:221.026667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xc2{left:224.420000pt;}
.xb1{left:227.093333pt;}
.x109{left:231.766667pt;}
.x96{left:235.737333pt;}
.xdb{left:238.132000pt;}
.x108{left:240.082667pt;}
.x5{left:241.085333pt;}
.xbe{left:244.270667pt;}
.x62{left:245.710667pt;}
.x104{left:246.984000pt;}
.xf{left:251.365333pt;}
.x105{left:253.033333pt;}
.x79{left:255.630667pt;}
.x63{left:258.993333pt;}
.xc8{left:261.470667pt;}
.x7a{left:263.836000pt;}
.x64{left:265.569333pt;}
.xa0{left:267.241333pt;}
.x17{left:268.568000pt;}
.xc9{left:270.217333pt;}
.x6e{left:273.338667pt;}
.x7{left:274.856000pt;}
.x1b{left:275.850667pt;}
.x18{left:277.368000pt;}
.x65{left:278.852000pt;}
.x14{left:280.145333pt;}
.x55{left:281.036000pt;}
.x1c{left:282.492000pt;}
.x94{left:283.892000pt;}
.x95{left:285.242667pt;}
.x15{left:286.786667pt;}
.xc{left:288.653333pt;}
.x10a{left:290.566667pt;}
.x7b{left:292.014667pt;}
.x16{left:293.442667pt;}
.xf8{left:294.368000pt;}
.x4c{left:295.829333pt;}
.xf9{left:297.754667pt;}
.x8{left:299.442667pt;}
.x4d{left:302.604000pt;}
.x53{left:304.113333pt;}
.x9{left:307.314667pt;}
.x100{left:309.172000pt;}
.xb0{left:311.629333pt;}
.xa2{left:314.574667pt;}
.x4e{left:315.888000pt;}
.x54{left:317.396000pt;}
.xfd{left:322.821333pt;}
.xb4{left:326.084000pt;}
.x80{left:328.988000pt;}
.xba{left:333.656000pt;}
.xa5{left:341.126667pt;}
.x81{left:342.270667pt;}
.xab{left:344.636000pt;}
.x4f{left:348.882667pt;}
.x12{left:351.610667pt;}
.x6a{left:353.185333pt;}
.x10{left:354.369333pt;}
.xee{left:357.201333pt;}
.x13{left:358.252000pt;}
.x11{left:361.012000pt;}
.x50{left:362.165333pt;}
.xdf{left:363.114667pt;}
.x19{left:367.024000pt;}
.x51{left:368.940000pt;}
.x110{left:371.358667pt;}
.x84{left:372.880000pt;}
.x1a{left:375.824000pt;}
.xc3{left:377.421333pt;}
.x103{left:378.381333pt;}
.x85{left:381.085333pt;}
.x52{left:382.224000pt;}
.xbc{left:383.444000pt;}
.x10c{left:384.686667pt;}
.xf0{left:386.264000pt;}
.x86{left:392.084000pt;}
.x112{left:393.210667pt;}
.xb2{left:398.848000pt;}
.xc4{left:402.178667pt;}
.x87{left:406.337333pt;}
.xff{left:407.401333pt;}
.xac{left:408.742667pt;}
.x57{left:417.454667pt;}
.x21{left:421.301333pt;}
.x4a{left:422.466667pt;}
.x22{left:427.942667pt;}
.x115{left:429.902667pt;}
.x23{left:431.244000pt;}
.x3f{left:433.497333pt;}
.x4b{left:435.749333pt;}
.xf5{left:436.766667pt;}
.x24{left:437.885333pt;}
.x5a{left:442.090667pt;}
.x25{left:444.486667pt;}
.x106{left:446.128000pt;}
.x5b{left:448.732000pt;}
.xd{left:450.733333pt;}
.x5c{left:452.002667pt;}
.x118{left:452.969333pt;}
.xbd{left:455.926667pt;}
.xe{left:458.605333pt;}
.x119{left:460.889333pt;}
.x5d{left:461.916000pt;}
.x91{left:465.470667pt;}
.x5e{left:468.557333pt;}
.x5f{left:471.829333pt;}
.x7c{left:474.173333pt;}
.x8c{left:475.142667pt;}
.xf6{left:476.662667pt;}
.xca{left:478.168000pt;}
.xa{left:479.164000pt;}
.xe3{left:481.380000pt;}
.x7d{left:482.378667pt;}
.x8d{left:483.346667pt;}
.x60{left:485.012000pt;}
.xb{left:487.036000pt;}
.xec{left:488.734667pt;}
.xf7{left:489.945333pt;}
.xed{left:492.122667pt;}
.xa9{left:493.234667pt;}
.x8e{left:495.826667pt;}
.x7e{left:496.925333pt;}
.x61{left:498.296000pt;}
.x92{left:500.045333pt;}
.x9a{left:504.873320pt;}
.xc5{left:505.910667pt;}
.x58{left:508.554667pt;}
.x7f{left:510.209333pt;}
.x8f{left:511.533333pt;}
.xc6{left:513.782667pt;}
.xde{left:515.681333pt;}
.x113{left:517.725333pt;}
.x59{left:521.837333pt;}
.x107{left:526.473333pt;}
.x46{left:528.206667pt;}
.x93{left:533.360000pt;}
.x26{left:539.734667pt;}
.x47{left:541.490667pt;}
.x82{left:542.800000pt;}
.x101{left:545.010667pt;}
.x27{left:546.376000pt;}
.x28{left:549.640000pt;}
.x83{left:551.005333pt;}
.xef{left:552.582667pt;}
.x88{left:554.992000pt;}
.x29{left:556.282667pt;}
.x74{left:557.596000pt;}
.x2a{left:559.546667pt;}
.x1f{left:562.281333pt;}
.xd7{left:563.656000pt;}
.xe0{left:565.157333pt;}
.x2b{left:566.188000pt;}
.x102{left:567.630667pt;}
.x20{left:568.924000pt;}
.x48{left:570.626667pt;}
.x71{left:572.346667pt;}
.xe1{left:573.958667pt;}
.xd9{left:575.782667pt;}
.xd8{left:576.940000pt;}
.xa1{left:578.761333pt;}
.x89{left:580.244000pt;}
.x40{left:581.576000pt;}
.x2c{left:582.736000pt;}
.x49{left:583.909333pt;}
.x41{left:584.861333pt;}
.xe7{left:588.322667pt;}
.x2d{left:589.265333pt;}
.x116{left:591.797333pt;}
.x97{left:593.158667pt;}
.xaa{left:597.018667pt;}
.x42{left:598.144000pt;}
.x68{left:600.384000pt;}
.x2e{left:602.548000pt;}
.x90{left:604.229333pt;}
.x114{left:605.188000pt;}
.x8a{left:606.152000pt;}
.x10e{left:607.480000pt;}
.xe2{left:610.232000pt;}
.x75{left:612.756000pt;}
.x69{left:613.666667pt;}
.x117{left:614.925333pt;}
.xb3{left:616.000000pt;}
.x8b{left:619.436000pt;}
.x76{left:620.961333pt;}
.x33{left:624.086667pt;}
.xda{left:625.794667pt;}
.xbb{left:627.404000pt;}
.xf1{left:628.768000pt;}
.x34{left:630.728000pt;}
.x77{left:631.760000pt;}
.xfc{left:632.862667pt;}
.xd3{left:635.462667pt;}
.xb6{left:637.542720pt;}
.xd5{left:639.120000pt;}
.x78{left:640.506667pt;}
.x37{left:642.468000pt;}
.x10b{left:645.272000pt;}
.xae{left:648.588000pt;}
.x38{left:651.214667pt;}
.xd6{left:652.402667pt;}
.xe4{left:653.644000pt;}
.xd4{left:655.476000pt;}
.xaf{left:657.334667pt;}
.xfe{left:659.269333pt;}
.xfa{left:663.694667pt;}
.xc7{left:665.514667pt;}
.x3b{left:666.918667pt;}
.x111{left:668.766667pt;}
.xe5{left:670.182667pt;}
.xf3{left:671.078667pt;}
.xdc{left:673.502667pt;}
.xfb{left:676.978667pt;}
.x11a{left:678.226667pt;}
.x72{left:679.132000pt;}
.x3c{left:680.202667pt;}
.xcd{left:681.602133pt;}
.xe6{left:683.465333pt;}
.xf4{left:684.362667pt;}
.x6f{left:686.509333pt;}
.x73{left:687.878667pt;}
.x43{left:688.768000pt;}
.xa6{left:689.773333pt;}
.x3d{left:691.938667pt;}
.x56{left:694.098667pt;}
.x70{left:695.256000pt;}
.x35{left:696.897333pt;}
.x3e{left:700.685333pt;}
.x66{left:701.964000pt;}
.x36{left:703.538667pt;}
.x2f{left:707.086667pt;}
.x44{left:710.326667pt;}
.xdd{left:712.045333pt;}
.x1d{left:713.772000pt;}
.x67{left:715.248000pt;}
.xf2{left:717.256000pt;}
.x30{left:720.370667pt;}
.x1e{left:722.572000pt;}
.x45{left:723.609333pt;}
.x10f{left:725.822667pt;}
.x31{left:727.005333pt;}
.x39{left:734.660000pt;}
.x10d{left:735.704000pt;}
.x32{left:740.289333pt;}
.x3a{left:743.406667pt;}
.xe8{left:744.748000pt;}
}


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