
/* 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_b70353d8e775.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_5f62f163bc80.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_a869ec511763.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_79d26a7f772e.woff")format("woff");}.ff7{font-family:ff7;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_ca4b490eb458.woff")format("woff");}.ff8{font-family:ff8;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_56b6e4be1f4a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_885465522ba3.woff")format("woff");}.ffa{font-family:ffa;line-height:1.184570;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_64b81aabb159.woff")format("woff");}.ffb{font-family:ffb;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_0fc580869f22.woff")format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_48df20f7c63e.woff")format("woff");}.ffd{font-family:ffd;line-height:1.184570;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_37ed7256760f.woff")format("woff");}.ffe{font-family:ffe;line-height:1.184570;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_84705836d39c.woff")format("woff");}.fff{font-family:fff;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_3950bc73c811.woff")format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_07d4b6cab79a.woff")format("woff");}.ff11{font-family:ff11;line-height:1.184570;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_850f8be2f206.woff")format("woff");}.ff12{font-family:ff12;line-height:1.184570;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_2a800458b119.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_4749ef7b504d.woff")format("woff");}.ff14{font-family:ff14;line-height:0.040000;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_aa4bb5b41306.woff")format("woff");}.ff15{font-family:ff15;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1b{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);}
.m25{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);}
.m1f{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);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m26{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);}
.m21{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);}
.m19{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);}
.m1e{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);}
.m11{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);}
.mc{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);}
.m9{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);}
.m1c{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);}
.me{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);}
.m13{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);}
.m15{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);}
.ma{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);}
.m17{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);}
.m4{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);}
.m1d{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);}
.m7{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);}
.m18{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);}
.m6{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);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m24{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);}
.mf{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);}
.m22{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);}
.mb{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);}
.m23{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);}
.m28{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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:-12.258000px;}
.v4{vertical-align:-10.920000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.248000px;}
.v9{vertical-align:17.358000px;}
.v5{vertical-align:19.530000px;}
.v8{vertical-align:28.392000px;}
.v7{vertical-align:31.626000px;}
.v1{vertical-align:32.880000px;}
.ls1c{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.264240px;}
.ls1f{letter-spacing:-0.257760px;}
.ls18{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.190800px;}
.lsf{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.159000px;}
.ls17{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.090000px;}
.ls14{letter-spacing:-0.065400px;}
.ls3{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.002383px;}
.ls11{letter-spacing:0.002520px;}
.ls35{letter-spacing:0.002669px;}
.ls1a{letter-spacing:0.003024px;}
.ls2b{letter-spacing:0.004665px;}
.lsa{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.069000px;}
.lse{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.572693px;}
.ls3f{letter-spacing:0.578693px;}
.ls31{letter-spacing:0.642088px;}
.ls32{letter-spacing:0.648088px;}
.ls46{letter-spacing:0.717483px;}
.ls4{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls16{letter-spacing:8.748000px;}
.ls1{letter-spacing:10.455300px;}
.ls5{letter-spacing:11.895344px;}
.ls42{letter-spacing:11.950135px;}
.ls2{letter-spacing:11.954850px;}
.ls3b{letter-spacing:11.957700px;}
.ls2e{letter-spacing:12.791978px;}
.ls4e{letter-spacing:13.211167px;}
.ls4b{letter-spacing:13.448400px;}
.ls49{letter-spacing:13.449600px;}
.ls38{letter-spacing:13.449754px;}
.ls4a{letter-spacing:13.454400px;}
.ls4c{letter-spacing:13.620167px;}
.ls34{letter-spacing:14.094088px;}
.ls33{letter-spacing:14.125133px;}
.ls4d{letter-spacing:14.373929px;}
.ls30{letter-spacing:14.764573px;}
.ls27{letter-spacing:14.773860px;}
.ls28{letter-spacing:14.774606px;}
.ls47{letter-spacing:14.928649px;}
.ls43{letter-spacing:14.941200px;}
.ls12{letter-spacing:14.943900px;}
.ls22{letter-spacing:14.943986px;}
.ls48{letter-spacing:14.944200px;}
.ls25{letter-spacing:14.944547px;}
.ls44{letter-spacing:14.947200px;}
.ls2d{letter-spacing:14.948383px;}
.ls3c{letter-spacing:15.123227px;}
.ls6{letter-spacing:15.242778px;}
.ls45{letter-spacing:15.840534px;}
.ls20{letter-spacing:16.258963px;}
.ls3a{letter-spacing:16.434600px;}
.ls39{letter-spacing:16.440600px;}
.ls2c{letter-spacing:17.929200px;}
.ls23{letter-spacing:17.931943px;}
.ls2f{letter-spacing:17.932680px;}
.ls26{letter-spacing:17.934571px;}
.ls24{letter-spacing:17.935200px;}
.ls7{letter-spacing:20.144377px;}
.ls3d{letter-spacing:20.443255px;}
.ls2a{letter-spacing:20.941784px;}
.ls29{letter-spacing:20.947089px;}
.ls41{letter-spacing:219.925200px;}
.ls40{letter-spacing:323.125200px;}
.ls37{letter-spacing:638.736600px;}
.ls36{letter-spacing:697.452600px;}
.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;}
}
.ws7f{word-spacing:-18.252000px;}
.ws7e{word-spacing:-18.036000px;}
.ws80{word-spacing:-17.820000px;}
.ws48{word-spacing:-15.099000px;}
.ws4c{word-spacing:-15.032520px;}
.ws4a{word-spacing:-15.030000px;}
.ws93{word-spacing:-14.943900px;}
.ws4b{word-spacing:-14.871000px;}
.ws49{word-spacing:-14.850000px;}
.ws4d{word-spacing:-13.518000px;}
.wse9{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws47{word-spacing:-3.347434px;}
.ws8a{word-spacing:-3.174106px;}
.ws64{word-spacing:-3.108331px;}
.ws36{word-spacing:-3.048556px;}
.wse4{word-spacing:-2.988780px;}
.ws3d{word-spacing:-2.929004px;}
.wsa3{word-spacing:-2.749678px;}
.ws78{word-spacing:-2.570351px;}
.wsa0{word-spacing:-2.510575px;}
.ws63{word-spacing:-2.450800px;}
.ws50{word-spacing:-2.271473px;}
.wsa7{word-spacing:-2.151922px;}
.ws2{word-spacing:-1.908367px;}
.ws5f{word-spacing:-1.853044px;}
.ws104{word-spacing:-1.829146px;}
.wse3{word-spacing:-1.733492px;}
.wsb7{word-spacing:-1.673717px;}
.ws2b{word-spacing:-1.494390px;}
.ws2a{word-spacing:-1.434614px;}
.ws38{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws9a{word-spacing:-1.315063px;}
.ws61{word-spacing:-1.255288px;}
.ws59{word-spacing:-1.195512px;}
.ws11{word-spacing:-1.183565px;}
.ws9b{word-spacing:-1.135736px;}
.wsf5{word-spacing:-1.129766px;}
.ws84{word-spacing:-1.075961px;}
.ws107{word-spacing:-1.022170px;}
.ws5d{word-spacing:-1.016185px;}
.wse1{word-spacing:-0.956410px;}
.ws83{word-spacing:-0.896634px;}
.ws10d{word-spacing:-0.806976px;}
.ws10b{word-spacing:-0.799080px;}
.ws5c{word-spacing:-0.777083px;}
.wsdf{word-spacing:-0.597756px;}
.wse0{word-spacing:-0.537980px;}
.wse5{word-spacing:-0.484186px;}
.ws76{word-spacing:-0.478205px;}
.ws87{word-spacing:-0.418429px;}
.ws67{word-spacing:-0.358654px;}
.ws1a{word-spacing:-0.322790px;}
.ws41{word-spacing:-0.298878px;}
.ws15{word-spacing:-0.268992px;}
.ws29{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws12{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws20{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.045430px;}
.ws6{word-spacing:-0.041843px;}
.ws10a{word-spacing:-0.026333px;}
.wsaf{word-spacing:-0.008506px;}
.wsb6{word-spacing:-0.005449px;}
.wsad{word-spacing:-0.004570px;}
.wsa1{word-spacing:-0.002358px;}
.wsd6{word-spacing:-0.002116px;}
.wsb5{word-spacing:-0.001997px;}
.ws0{word-spacing:0.000000px;}
.wsb4{word-spacing:0.000365px;}
.wsd7{word-spacing:0.003884px;}
.wsd5{word-spacing:0.004003px;}
.ws81{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws4e{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.ws7a{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.ws7{word-spacing:0.209214px;}
.wsf3{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.wseb{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws24{word-spacing:0.298878px;}
.ws82{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws6d{word-spacing:0.418429px;}
.ws17{word-spacing:0.430387px;}
.ws28{word-spacing:0.537980px;}
.ws105{word-spacing:0.591782px;}
.ws68{word-spacing:0.597756px;}
.ws106{word-spacing:0.645581px;}
.ws100{word-spacing:0.699379px;}
.ws91{word-spacing:0.836858px;}
.ws52{word-spacing:0.896634px;}
.ws77{word-spacing:0.956410px;}
.wsff{word-spacing:0.968371px;}
.ws19{word-spacing:1.022170px;}
.ws26{word-spacing:1.075961px;}
.ws5a{word-spacing:1.135736px;}
.ws5b{word-spacing:1.195512px;}
.ws55{word-spacing:1.255288px;}
.wsfe{word-spacing:1.291162px;}
.ws85{word-spacing:1.315063px;}
.ws1e{word-spacing:1.374839px;}
.ws22{word-spacing:1.434614px;}
.ws32{word-spacing:1.494390px;}
.ws6a{word-spacing:1.554166px;}
.ws103{word-spacing:1.560154px;}
.wsd8{word-spacing:1.613941px;}
.ws33{word-spacing:1.673717px;}
.ws109{word-spacing:1.721549px;}
.ws57{word-spacing:1.733492px;}
.ws35{word-spacing:1.793268px;}
.wsba{word-spacing:1.853044px;}
.ws7b{word-spacing:1.912819px;}
.wsde{word-spacing:1.972595px;}
.ws8{word-spacing:2.008454px;}
.ws65{word-spacing:2.092146px;}
.ws53{word-spacing:2.151922px;}
.ws73{word-spacing:2.271473px;}
.ws1b{word-spacing:2.367130px;}
.ws86{word-spacing:2.391024px;}
.ws56{word-spacing:2.450800px;}
.ws99{word-spacing:2.570351px;}
.ws9c{word-spacing:2.630126px;}
.ws31{word-spacing:2.689902px;}
.ws13{word-spacing:2.689920px;}
.ws2c{word-spacing:2.749678px;}
.ws3e{word-spacing:2.929004px;}
.wsea{word-spacing:2.958912px;}
.ws27{word-spacing:2.988780px;}
.ws3c{word-spacing:3.048556px;}
.ws9e{word-spacing:3.168107px;}
.ws1c{word-spacing:3.219667px;}
.wsf7{word-spacing:3.223546px;}
.wsf6{word-spacing:3.227357px;}
.ws74{word-spacing:3.227882px;}
.wsb3{word-spacing:3.227904px;}
.wsee{word-spacing:3.228134px;}
.ws108{word-spacing:3.281702px;}
.ws6b{word-spacing:3.287658px;}
.ws4f{word-spacing:3.347434px;}
.ws71{word-spacing:3.407209px;}
.ws51{word-spacing:3.466985px;}
.ws60{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.wsa5{word-spacing:3.646312px;}
.ws7d{word-spacing:3.765863px;}
.wsdb{word-spacing:3.825638px;}
.ws72{word-spacing:3.885414px;}
.ws6e{word-spacing:3.945190px;}
.ws40{word-spacing:4.004965px;}
.ws90{word-spacing:4.064741px;}
.ws3b{word-spacing:4.124516px;}
.ws42{word-spacing:4.184292px;}
.ws9d{word-spacing:4.542946px;}
.ws46{word-spacing:4.662497px;}
.ws98{word-spacing:4.722272px;}
.wsb8{word-spacing:4.841824px;}
.ws45{word-spacing:4.961375px;}
.ws43{word-spacing:5.021150px;}
.ws44{word-spacing:5.260253px;}
.wsd9{word-spacing:5.379804px;}
.wsbc{word-spacing:5.439580px;}
.wsbd{word-spacing:5.499355px;}
.ws6c{word-spacing:5.559131px;}
.ws62{word-spacing:5.798233px;}
.ws75{word-spacing:5.858009px;}
.wsa2{word-spacing:5.917784px;}
.wsfa{word-spacing:5.969192px;}
.wsfc{word-spacing:5.971622px;}
.ws54{word-spacing:5.977560px;}
.wsa6{word-spacing:6.037336px;}
.wsf{word-spacing:6.067206px;}
.ws70{word-spacing:6.097111px;}
.ws10{word-spacing:6.150892px;}
.wse7{word-spacing:6.240614px;}
.wsda{word-spacing:6.276438px;}
.ws39{word-spacing:6.455765px;}
.ws69{word-spacing:6.515540px;}
.wse6{word-spacing:6.617203px;}
.ws92{word-spacing:6.635092px;}
.wsbb{word-spacing:6.754643px;}
.ws88{word-spacing:7.053521px;}
.ws66{word-spacing:7.173072px;}
.ws97{word-spacing:7.232848px;}
.ws79{word-spacing:7.412174px;}
.wsdd{word-spacing:7.471950px;}
.wsdc{word-spacing:7.531726px;}
.wse2{word-spacing:7.591501px;}
.ws3f{word-spacing:7.651277px;}
.ws6f{word-spacing:8.009930px;}
.ws58{word-spacing:8.129482px;}
.wsa4{word-spacing:8.368584px;}
.wsd{word-spacing:8.661460px;}
.wsf9{word-spacing:8.661542px;}
.ws4{word-spacing:10.415996px;}
.ws2e{word-spacing:11.904248px;}
.ws10c{word-spacing:12.588826px;}
.ws10e{word-spacing:13.073011px;}
.wsef{word-spacing:13.390771px;}
.wsf4{word-spacing:13.395802px;}
.ws3a{word-spacing:14.884124px;}
.ws3{word-spacing:15.483541px;}
.wsed{word-spacing:16.354714px;}
.ws102{word-spacing:16.617110px;}
.wsec{word-spacing:16.619750px;}
.wsf8{word-spacing:16.619904px;}
.wsf0{word-spacing:16.622563px;}
.wse8{word-spacing:16.623706px;}
.wsfd{word-spacing:16.731302px;}
.wsf1{word-spacing:16.838899px;}
.wsf2{word-spacing:16.892698px;}
.wsc{word-spacing:17.699504px;}
.ws94{word-spacing:17.887085px;}
.wsb9{word-spacing:18.530436px;}
.ws5e{word-spacing:19.008641px;}
.ws101{word-spacing:19.152230px;}
.wsfb{word-spacing:19.367424px;}
.wsb{word-spacing:20.293758px;}
.wsa{word-spacing:20.312252px;}
.wse{word-spacing:27.448877px;}
.wsc5{word-spacing:108.898500px;}
.wsbf{word-spacing:125.271893px;}
.wsc4{word-spacing:128.888024px;}
.wsc1{word-spacing:133.480500px;}
.wsc8{word-spacing:140.927308px;}
.wsc2{word-spacing:140.975129px;}
.wsc0{word-spacing:152.834638px;}
.wsd4{word-spacing:172.823648px;}
.wsc3{word-spacing:190.122884px;}
.wsd3{word-spacing:208.689098px;}
.wsd2{word-spacing:209.741152px;}
.wsbe{word-spacing:224.661179px;}
.ws9f{word-spacing:264.148376px;}
.ws96{word-spacing:335.759545px;}
.ws8b{word-spacing:440.568778px;}
.ws8e{word-spacing:448.531104px;}
.wsc9{word-spacing:473.086154px;}
.wscf{word-spacing:501.850336px;}
.ws8c{word-spacing:503.838614px;}
.wsc6{word-spacing:529.441309px;}
.wscb{word-spacing:530.161290px;}
.ws7c{word-spacing:585.165197px;}
.ws8f{word-spacing:605.246064px;}
.wsa9{word-spacing:614.592922px;}
.ws8d{word-spacing:614.690064px;}
.wsb2{word-spacing:650.422656px;}
.wscc{word-spacing:682.347900px;}
.wsb1{word-spacing:690.771456px;}
.wsb0{word-spacing:691.955021px;}
.wsc7{word-spacing:693.634500px;}
.wscd{word-spacing:694.300200px;}
.wsce{word-spacing:701.767305px;}
.wsca{word-spacing:702.934500px;}
.wsa8{word-spacing:708.740122px;}
.wsd1{word-spacing:725.677605px;}
.wsd0{word-spacing:737.584934px;}
.ws89{word-spacing:761.570150px;}
.wsae{word-spacing:1342.861862px;}
.wsab{word-spacing:1344.529613px;}
.wsaa{word-spacing:1348.015430px;}
.wsac{word-spacing:1376.476560px;}
._13{margin-left:-7.531726px;}
._10{margin-left:-6.515540px;}
._3{margin-left:-5.397721px;}
._d{margin-left:-4.208215px;}
._7{margin-left:-3.012682px;}
._0{margin-left:-1.936742px;}
._2{width:1.091170px;}
._6{width:2.301354px;}
._1b{width:3.717616px;}
._15{width:4.769964px;}
._1c{width:6.292328px;}
._19{width:7.317000px;}
._1a{width:8.512200px;}
._1d{width:9.547920px;}
._2a{width:10.890864px;}
._5d{width:11.955150px;}
._5{width:12.971268px;}
._62{width:13.993518px;}
._9{width:15.063552px;}
._8{width:16.408512px;}
._c{width:18.195706px;}
._a{width:19.259827px;}
._f{width:20.586730px;}
._17{width:22.200671px;}
._b{width:24.065766px;}
._4{width:25.946136px;}
._14{width:27.735878px;}
._e{width:28.919461px;}
._25{width:29.947576px;}
._22{width:31.406113px;}
._1{width:33.355008px;}
._16{width:34.514444px;}
._23{width:35.745809px;}
._24{width:36.929392px;}
._21{width:38.495486px;}
._20{width:40.587632px;}
._1f{width:41.902696px;}
._1e{width:43.397086px;}
._63{width:61.868160px;}
._60{width:84.388472px;}
._48{width:86.979860px;}
._61{width:88.034859px;}
._4d{width:96.276073px;}
._27{width:102.689328px;}
._49{width:111.552073px;}
._28{width:114.153274px;}
._59{width:116.969188px;}
._4b{width:119.943482px;}
._52{width:135.619222px;}
._4a{width:184.778798px;}
._26{width:215.966218px;}
._2c{width:221.312266px;}
._5f{width:224.135152px;}
._30{width:226.500893px;}
._2d{width:235.328861px;}
._2e{width:248.421254px;}
._5e{width:269.708184px;}
._35{width:343.199904px;}
._31{width:349.864973px;}
._38{width:360.198499px;}
._2f{width:361.943933px;}
._4c{width:379.332073px;}
._57{width:399.702183px;}
._32{width:403.501862px;}
._5a{width:409.392157px;}
._58{width:419.069974px;}
._5c{width:427.946549px;}
._34{width:436.101858px;}
._53{width:437.271566px;}
._55{width:442.635178px;}
._4f{width:445.353248px;}
._46{width:472.658810px;}
._42{width:484.248394px;}
._51{width:495.182313px;}
._47{width:512.439527px;}
._36{width:540.401645px;}
._37{width:543.385267px;}
._45{width:545.993932px;}
._43{width:548.711932px;}
._44{width:550.981663px;}
._3d{width:564.312845px;}
._41{width:586.617754px;}
._3c{width:587.639923px;}
._39{width:603.295258px;}
._40{width:637.887629px;}
._3a{width:642.075610px;}
._50{width:699.608287px;}
._54{width:729.646715px;}
._11{width:734.355189px;}
._4e{width:737.632755px;}
._5b{width:744.184388px;}
._56{width:769.481275px;}
._2b{width:947.551219px;}
._3e{width:1253.624112px;}
._3f{width:1283.522227px;}
._3b{width:1337.159232px;}
._18{width:2046.997430px;}
._33{width:2409.818700px;}
._12{width:2433.728700px;}
._29{width:2456.615150px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs12{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fse{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs11{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fsb{font-size:57.456000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fsd{font-size:64.800000px;}
.fsc{font-size:72.144000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y19b{bottom:-743.148000px;}
.y19a{bottom:-720.144000px;}
.y199{bottom:-697.032000px;}
.y198{bottom:-674.028000px;}
.y197{bottom:-650.916000px;}
.y196{bottom:-627.804000px;}
.y195{bottom:-604.800000px;}
.y194{bottom:-581.652000px;}
.y193{bottom:-558.540000px;}
.y192{bottom:-535.536000px;}
.y191{bottom:-512.424000px;}
.y154{bottom:-509.229000px;}
.y152{bottom:-499.149000px;}
.y190{bottom:-489.420000px;}
.y150{bottom:-488.979000px;}
.y151{bottom:-478.899000px;}
.y153{bottom:-468.729000px;}
.y18f{bottom:-460.908000px;}
.y14f{bottom:-447.759000px;}
.y14d{bottom:-437.679000px;}
.y14b{bottom:-427.509000px;}
.y14c{bottom:-417.429000px;}
.y18e{bottom:-416.196000px;}
.y14e{bottom:-407.229000px;}
.y18d{bottom:-393.192000px;}
.y14a{bottom:-386.259000px;}
.y148{bottom:-376.179000px;}
.y18c{bottom:-370.080000px;}
.y146{bottom:-366.009000px;}
.y147{bottom:-355.929000px;}
.y18b{bottom:-347.076000px;}
.y149{bottom:-345.849000px;}
.y145{bottom:-324.699000px;}
.y18a{bottom:-323.964000px;}
.y189{bottom:-300.852000px;}
.y144{bottom:-294.639000px;}
.y188{bottom:-277.848000px;}
.y143{bottom:-258.999000px;}
.y187{bottom:-254.736000px;}
.y142{bottom:-239.739000px;}
.y186{bottom:-231.732000px;}
.y141{bottom:-220.569000px;}
.y185{bottom:-208.620000px;}
.y140{bottom:-201.309000px;}
.y184{bottom:-185.508000px;}
.y13f{bottom:-182.049000px;}
.ybb{bottom:-173.659500px;}
.y13e{bottom:-162.879000px;}
.y183{bottom:-162.504000px;}
.yba{bottom:-154.489500px;}
.y13d{bottom:-143.619000px;}
.y182{bottom:-139.392000px;}
.yb9{bottom:-135.229500px;}
.y13c{bottom:-124.449000px;}
.y181{bottom:-116.280000px;}
.yb8{bottom:-115.969500px;}
.y13b{bottom:-105.189000px;}
.yb7{bottom:-96.799500px;}
.y180{bottom:-93.240000px;}
.y13a{bottom:-81.429000px;}
.yb6{bottom:-73.039500px;}
.y17f{bottom:-49.176000px;}
.y139{bottom:-44.709000px;}
.yb5{bottom:-36.289500px;}
.y17e{bottom:-28.224000px;}
.y138{bottom:-27.339000px;}
.yb4{bottom:-18.919500px;}
.y137{bottom:-4.929000px;}
.y17d{bottom:-1.332000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.yb3{bottom:3.490500px;}
.y8{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y48{bottom:31.890000px;}
.yc7{bottom:89.889000px;}
.y2a5{bottom:90.558000px;}
.y26b{bottom:93.499500px;}
.y1b7{bottom:95.859000px;}
.y2c4{bottom:96.742500px;}
.y1f{bottom:102.823500px;}
.y23c{bottom:104.454000px;}
.y12d{bottom:106.246500px;}
.y219{bottom:106.695000px;}
.y173{bottom:107.688000px;}
.y47{bottom:108.514500px;}
.yc6{bottom:108.718500px;}
.y2a4{bottom:109.387500px;}
.y26a{bottom:112.329000px;}
.y2c3{bottom:114.003000px;}
.y1b6{bottom:114.688500px;}
.y1e{bottom:120.711000px;}
.y2f9{bottom:120.817500px;}
.y23b{bottom:123.283500px;}
.y172{bottom:124.126500px;}
.y12b{bottom:125.076000px;}
.y218{bottom:125.524500px;}
.y46{bottom:127.344000px;}
.yc5{bottom:127.548000px;}
.y2c2{bottom:131.263500px;}
.y16f{bottom:132.345000px;}
.y2a3{bottom:132.700500px;}
.y1b5{bottom:133.518000px;}
.y269{bottom:135.642000px;}
.y2f8{bottom:138.078000px;}
.y1d{bottom:138.600000px;}
.y16e{bottom:140.563500px;}
.y23a{bottom:142.113000px;}
.y12a{bottom:143.905500px;}
.yfa{bottom:144.354000px;}
.y7b{bottom:146.130000px;}
.y45{bottom:146.173500px;}
.yc4{bottom:146.377500px;}
.y2c1{bottom:148.524000px;}
.y1b4{bottom:152.347500px;}
.y1e5{bottom:153.613500px;}
.y2f7{bottom:155.338500px;}
.y1c{bottom:156.487500px;}
.y171{bottom:157.002000px;}
.y217{bottom:160.045500px;}
.y239{bottom:160.942500px;}
.y129{bottom:162.735000px;}
.yf9{bottom:163.183500px;}
.y7a{bottom:164.959500px;}
.y44{bottom:165.003000px;}
.yc3{bottom:165.207000px;}
.y2c0{bottom:165.784500px;}
.y2a2{bottom:166.324500px;}
.y268{bottom:169.266000px;}
.y1b3{bottom:171.177000px;}
.y1e4{bottom:172.443000px;}
.y2f6{bottom:172.599000px;}
.y170{bottom:173.440500px;}
.y1b{bottom:174.375000px;}
.y238{bottom:179.772000px;}
.y128{bottom:181.564500px;}
.yf8{bottom:182.013000px;}
.y2bf{bottom:183.045000px;}
.y79{bottom:183.789000px;}
.y43{bottom:183.832500px;}
.yc2{bottom:184.036500px;}
.y2a1{bottom:185.154000px;}
.y267{bottom:188.095500px;}
.y2f5{bottom:189.858000px;}
.y1b2{bottom:190.006500px;}
.y1e3{bottom:191.272500px;}
.y1a{bottom:192.264000px;}
.y216{bottom:194.566500px;}
.y16d{bottom:197.082000px;}
.y237{bottom:198.601500px;}
.y2be{bottom:200.305500px;}
.y127{bottom:200.394000px;}
.yf7{bottom:200.842500px;}
.y78{bottom:202.618500px;}
.y42{bottom:202.662000px;}
.yc1{bottom:202.866000px;}
.y2a0{bottom:203.983500px;}
.y266{bottom:206.925000px;}
.y2f4{bottom:207.118500px;}
.y1b1{bottom:208.836000px;}
.y1e2{bottom:210.102000px;}
.y19{bottom:210.151500px;}
.y215{bottom:210.330000px;}
.y214{bottom:213.396000px;}
.y16c{bottom:213.520500px;}
.y236{bottom:217.431000px;}
.y2bd{bottom:217.564500px;}
.y126{bottom:219.223500px;}
.yf6{bottom:219.672000px;}
.y77{bottom:221.448000px;}
.y41{bottom:221.491500px;}
.yc0{bottom:221.695500px;}
.y169{bottom:221.739000px;}
.y29f{bottom:222.813000px;}
.y2f3{bottom:224.379000px;}
.y265{bottom:225.754500px;}
.y1b0{bottom:227.665500px;}
.y18{bottom:228.039000px;}
.y1e1{bottom:228.931500px;}
.y168{bottom:229.959000px;}
.y213{bottom:232.225500px;}
.y2bc{bottom:234.825000px;}
.y235{bottom:236.260500px;}
.y125{bottom:238.053000px;}
.yf5{bottom:238.501500px;}
.y76{bottom:240.276000px;}
.y40{bottom:240.319500px;}
.ybf{bottom:240.525000px;}
.y2f2{bottom:241.639500px;}
.y29e{bottom:241.642500px;}
.y264{bottom:244.582500px;}
.y16b{bottom:246.396000px;}
.y1af{bottom:246.495000px;}
.y1e0{bottom:247.761000px;}
.y212{bottom:251.055000px;}
.y2bb{bottom:252.085500px;}
.y234{bottom:255.090000px;}
.y124{bottom:256.882500px;}
.yf4{bottom:257.331000px;}
.y2f1{bottom:258.900000px;}
.y75{bottom:259.105500px;}
.y3f{bottom:259.149000px;}
.y29d{bottom:260.472000px;}
.y16a{bottom:262.834500px;}
.y263{bottom:263.412000px;}
.ybe{bottom:263.838000px;}
.y1ae{bottom:265.324500px;}
.y1df{bottom:266.590500px;}
.y2ba{bottom:269.346000px;}
.y211{bottom:269.884500px;}
.y233{bottom:273.919500px;}
.y123{bottom:275.712000px;}
.yf3{bottom:276.160500px;}
.y74{bottom:277.935000px;}
.y3e{bottom:277.978500px;}
.y29c{bottom:279.301500px;}
.y262{bottom:282.241500px;}
.y1de{bottom:285.420000px;}
.y167{bottom:286.476000px;}
.y2b9{bottom:286.606500px;}
.y1ad{bottom:288.637500px;}
.y210{bottom:288.714000px;}
.y2f0{bottom:293.421000px;}
.y122{bottom:294.541500px;}
.yf2{bottom:294.990000px;}
.y73{bottom:296.764500px;}
.y3d{bottom:296.808000px;}
.y232{bottom:297.231000px;}
.ybd{bottom:297.253500px;}
.y29b{bottom:298.131000px;}
.y261{bottom:301.071000px;}
.y164{bottom:302.914500px;}
.y2b8{bottom:303.867000px;}
.y1dd{bottom:304.249500px;}
.y17{bottom:307.299000px;}
.yb2{bottom:307.510500px;}
.y2ef{bottom:310.681500px;}
.y163{bottom:311.133000px;}
.y20f{bottom:312.025500px;}
.y121{bottom:313.371000px;}
.yf1{bottom:313.819500px;}
.y72{bottom:315.594000px;}
.y3c{bottom:315.637500px;}
.ybc{bottom:316.486500px;}
.y29a{bottom:316.960500px;}
.y166{bottom:319.353000px;}
.y260{bottom:319.900500px;}
.y2b7{bottom:321.127500px;}
.y1ac{bottom:322.261500px;}
.y1dc{bottom:323.079000px;}
.y16{bottom:325.186500px;}
.yb1{bottom:326.770500px;}
.y2ee{bottom:327.940500px;}
.y231{bottom:330.855000px;}
.y120{bottom:332.200500px;}
.yf0{bottom:332.649000px;}
.y71{bottom:334.423500px;}
.y3b{bottom:334.467000px;}
.y20e{bottom:335.338500px;}
.y299{bottom:335.790000px;}
.y165{bottom:335.791500px;}
.y2b6{bottom:338.388000px;}
.y25f{bottom:338.730000px;}
.y95{bottom:338.916000px;}
.y1ab{bottom:341.091000px;}
.y1db{bottom:341.908500px;}
.y15{bottom:343.074000px;}
.y2ed{bottom:345.201000px;}
.yb0{bottom:345.940500px;}
.y230{bottom:349.684500px;}
.y11f{bottom:351.030000px;}
.yef{bottom:351.478500px;}
.y70{bottom:353.253000px;}
.y3a{bottom:353.296500px;}
.y298{bottom:354.619500px;}
.y2b5{bottom:355.647000px;}
.y25e{bottom:357.559500px;}
.y20d{bottom:358.651500px;}
.y162{bottom:359.431500px;}
.y1aa{bottom:359.920500px;}
.y1da{bottom:360.738000px;}
.y14{bottom:360.963000px;}
.y17c{bottom:361.548000px;}
.y2ec{bottom:362.461500px;}
.yaf{bottom:365.230500px;}
.y22f{bottom:368.514000px;}
.y11e{bottom:369.859500px;}
.yee{bottom:370.308000px;}
.y6f{bottom:372.082500px;}
.y39{bottom:372.126000px;}
.y2b4{bottom:372.907500px;}
.y297{bottom:373.449000px;}
.y25d{bottom:376.389000px;}
.y20c{bottom:377.481000px;}
.y1a9{bottom:378.750000px;}
.y2eb{bottom:379.722000px;}
.yae{bottom:384.400500px;}
.y17b{bottom:384.552000px;}
.y22e{bottom:387.343500px;}
.y136{bottom:388.671000px;}
.y11d{bottom:388.689000px;}
.yed{bottom:389.137500px;}
.y2b3{bottom:390.168000px;}
.y6e{bottom:390.912000px;}
.y38{bottom:390.955500px;}
.y161{bottom:391.051500px;}
.y296{bottom:392.278500px;}
.y25c{bottom:395.218500px;}
.y20b{bottom:396.310500px;}
.y2ea{bottom:396.982500px;}
.y1a8{bottom:397.579500px;}
.y13{bottom:399.024000px;}
.yad{bottom:403.660500px;}
.y22d{bottom:406.173000px;}
.y1d9{bottom:406.200000px;}
.y2b2{bottom:407.428500px;}
.y11c{bottom:407.518500px;}
.y17a{bottom:407.664000px;}
.y135{bottom:407.841000px;}
.yec{bottom:407.967000px;}
.y6d{bottom:409.741500px;}
.y37{bottom:409.785000px;}
.y295{bottom:411.108000px;}
.y25b{bottom:414.048000px;}
.y2e9{bottom:414.243000px;}
.y1d8{bottom:414.418500px;}
.y20a{bottom:415.140000px;}
.y1a7{bottom:416.409000px;}
.y12{bottom:416.913000px;}
.yac{bottom:422.920500px;}
.y2b1{bottom:424.689000px;}
.y22c{bottom:425.002500px;}
.y11b{bottom:426.348000px;}
.yeb{bottom:426.796500px;}
.y134{bottom:427.101000px;}
.y160{bottom:428.155500px;}
.y6c{bottom:428.571000px;}
.y36{bottom:428.614500px;}
.y294{bottom:429.937500px;}
.y179{bottom:430.812000px;}
.y2e8{bottom:431.503500px;}
.y11{bottom:434.800500px;}
.y1a6{bottom:435.238500px;}
.y209{bottom:438.451500px;}
.y2b0{bottom:441.949500px;}
.yab{bottom:442.090500px;}
.y22b{bottom:443.832000px;}
.y11a{bottom:445.177500px;}
.yea{bottom:445.626000px;}
.y1d7{bottom:446.278500px;}
.y133{bottom:446.391000px;}
.y25a{bottom:446.638500px;}
.y15f{bottom:446.985000px;}
.y6b{bottom:447.400500px;}
.y35{bottom:447.444000px;}
.y2e7{bottom:448.764000px;}
.y178{bottom:453.816000px;}
.y1a5{bottom:454.068000px;}
.y1d6{bottom:454.498500px;}
.y2af{bottom:459.210000px;}
.y293{bottom:459.537000px;}
.yaa{bottom:461.350500px;}
.y208{bottom:461.764500px;}
.y22a{bottom:462.661500px;}
.y119{bottom:464.007000px;}
.ye9{bottom:464.454000px;}
.y132{bottom:465.561000px;}
.y15e{bottom:465.814500px;}
.y2e6{bottom:466.024500px;}
.y6a{bottom:466.230000px;}
.y34{bottom:466.273500px;}
.y259{bottom:469.384500px;}
.y10{bottom:470.622000px;}
.y1a4{bottom:472.897500px;}
.y2ae{bottom:476.470500px;}
.y177{bottom:476.928000px;}
.ya9{bottom:480.520500px;}
.y207{bottom:480.594000px;}
.y229{bottom:481.491000px;}
.y291{bottom:481.612500px;}
.y118{bottom:482.836500px;}
.ye8{bottom:483.283500px;}
.y15d{bottom:484.644000px;}
.y131{bottom:484.821000px;}
.y69{bottom:485.059500px;}
.y33{bottom:485.103000px;}
.y258{bottom:485.823000px;}
.y1d5{bottom:486.357000px;}
.y12c{bottom:487.318500px;}
.yf{bottom:488.509500px;}
.y1a3{bottom:491.727000px;}
.y2ac{bottom:493.729500px;}
.y2ad{bottom:493.731000px;}
.y1d4{bottom:494.577000px;}
.y292{bottom:495.501000px;}
.y290{bottom:495.810000px;}
.y206{bottom:499.423500px;}
.ya8{bottom:499.780500px;}
.y228{bottom:500.320500px;}
.y2e5{bottom:500.544000px;}
.y117{bottom:501.666000px;}
.ye7{bottom:502.113000px;}
.y257{bottom:502.261500px;}
.y15c{bottom:503.473500px;}
.y68{bottom:503.889000px;}
.y32{bottom:503.932500px;}
.y28f{bottom:510.006000px;}
.y1a2{bottom:510.555000px;}
.y2ab{bottom:515.473500px;}
.y2e4{bottom:517.804500px;}
.y205{bottom:518.253000px;}
.y256{bottom:518.700000px;}
.ya7{bottom:519.040500px;}
.y227{bottom:519.150000px;}
.y116{bottom:520.495500px;}
.ye6{bottom:520.942500px;}
.y15b{bottom:522.303000px;}
.y67{bottom:522.718500px;}
.y28d{bottom:524.202000px;}
.ye{bottom:524.329500px;}
.y1d2{bottom:526.437000px;}
.y31{bottom:527.245500px;}
.y1a1{bottom:529.384500px;}
.y1d1{bottom:534.655500px;}
.y2e3{bottom:535.065000px;}
.y226{bottom:537.979500px;}
.y28e{bottom:538.092000px;}
.ya6{bottom:538.210500px;}
.y28c{bottom:538.399500px;}
.y115{bottom:539.323500px;}
.y130{bottom:539.361000px;}
.ye5{bottom:539.772000px;}
.y15a{bottom:541.132500px;}
.y204{bottom:541.566000px;}
.yd{bottom:542.218500px;}
.y255{bottom:542.341500px;}
.y176{bottom:542.376000px;}
.y1d3{bottom:542.875500px;}
.y66{bottom:546.031500px;}
.y1a0{bottom:548.214000px;}
.y2aa{bottom:549.097500px;}
.y12f{bottom:549.171000px;}
.y2e2{bottom:552.325500px;}
.y28b{bottom:552.595500px;}
.y175{bottom:554.148000px;}
.y225{bottom:556.809000px;}
.ya5{bottom:557.470500px;}
.y114{bottom:558.153000px;}
.ye4{bottom:558.601500px;}
.y254{bottom:559.404000px;}
.y159{bottom:559.962000px;}
.yc{bottom:560.106000px;}
.y203{bottom:560.395500px;}
.y1d0{bottom:566.515500px;}
.y28a{bottom:566.793000px;}
.y19f{bottom:567.043500px;}
.y2e1{bottom:569.586000px;}
.y224{bottom:575.638500px;}
.y253{bottom:576.466500px;}
.ya4{bottom:576.640500px;}
.y113{bottom:576.982500px;}
.ye3{bottom:577.431000px;}
.yb{bottom:577.993500px;}
.y158{bottom:578.791500px;}
.y202{bottom:579.225000px;}
.y65{bottom:579.655500px;}
.y289{bottom:581.605500px;}
.y1cd{bottom:582.954000px;}
.y19e{bottom:585.873000px;}
.y2e0{bottom:586.846500px;}
.y1cc{bottom:591.174000px;}
.y2a9{bottom:593.212500px;}
.y223{bottom:594.468000px;}
.y112{bottom:595.812000px;}
.ya{bottom:595.882500px;}
.ya3{bottom:595.900500px;}
.ye2{bottom:596.260500px;}
.y288{bottom:596.418000px;}
.y201{bottom:598.054500px;}
.y64{bottom:598.485000px;}
.y1cf{bottom:599.392500px;}
.y252{bottom:600.108000px;}
.y157{bottom:602.103000px;}
.y30{bottom:602.395500px;}
.y2df{bottom:604.107000px;}
.y287{bottom:610.614000px;}
.y2a8{bottom:610.786500px;}
.y222{bottom:613.297500px;}
.y111{bottom:614.641500px;}
.ye1{bottom:615.090000px;}
.ya2{bottom:615.160500px;}
.y1ce{bottom:615.831000px;}
.y251{bottom:616.546500px;}
.y200{bottom:616.884000px;}
.y63{bottom:617.314500px;}
.y7{bottom:618.253464px;}
.y19d{bottom:619.438500px;}
.y2de{bottom:621.366000px;}
.y286{bottom:624.811500px;}
.y221{bottom:632.127000px;}
.y156{bottom:632.530500px;}
.y110{bottom:633.471000px;}
.ye0{bottom:633.919500px;}
.ya1{bottom:634.330500px;}
.y1ff{bottom:635.713500px;}
.y62{bottom:636.144000px;}
.y2a7{bottom:637.327500px;}
.y2dd{bottom:638.626500px;}
.y19c{bottom:638.671500px;}
.y285{bottom:639.007500px;}
.y1cb{bottom:639.471000px;}
.y2f{bottom:639.784500px;}
.y250{bottom:640.186500px;}
.y94{bottom:648.265500px;}
.y220{bottom:650.956500px;}
.y155{bottom:651.763500px;}
.y10f{bottom:652.300500px;}
.ydf{bottom:652.749000px;}
.y284{bottom:653.205000px;}
.ya0{bottom:653.590500px;}
.y1fe{bottom:654.543000px;}
.y2a6{bottom:654.901500px;}
.y61{bottom:654.973500px;}
.y2dc{bottom:655.887000px;}
.y1c9{bottom:655.909500px;}
.y24f{bottom:656.625000px;}
.y2e{bottom:659.242500px;}
.y174{bottom:661.101000px;}
.y93{bottom:667.095000px;}
.y283{bottom:667.401000px;}
.y21f{bottom:669.786000px;}
.y1fd{bottom:670.306500px;}
.y10e{bottom:671.130000px;}
.yde{bottom:671.578500px;}
.y1ca{bottom:672.348000px;}
.y9f{bottom:672.850500px;}
.y24e{bottom:673.063500px;}
.y2db{bottom:673.147500px;}
.y1fc{bottom:673.372500px;}
.y60{bottom:673.801500px;}
.y12e{bottom:674.193000px;}
.y2d{bottom:678.699000px;}
.y282{bottom:681.598500px;}
.y92{bottom:685.924500px;}
.y21e{bottom:688.615500px;}
.y24d{bottom:689.502000px;}
.y10d{bottom:689.959500px;}
.ydd{bottom:690.408000px;}
.y9e{bottom:692.020500px;}
.y1fb{bottom:692.202000px;}
.y5f{bottom:692.631000px;}
.y281{bottom:695.794500px;}
.y1c8{bottom:695.989500px;}
.y2c{bottom:698.155500px;}
.y91{bottom:704.754000px;}
.y24c{bottom:705.940500px;}
.y21d{bottom:707.445000px;}
.y2da{bottom:707.668500px;}
.y10c{bottom:708.789000px;}
.ydc{bottom:709.237500px;}
.y280{bottom:709.992000px;}
.y1fa{bottom:711.031500px;}
.y9d{bottom:711.280500px;}
.y1c5{bottom:712.428000px;}
.y5e{bottom:715.944000px;}
.y2b{bottom:717.613500px;}
.y1c4{bottom:720.646500px;}
.y24b{bottom:722.379000px;}
.y90{bottom:723.583500px;}
.y27f{bottom:724.188000px;}
.y2d9{bottom:724.929000px;}
.y10b{bottom:727.618500px;}
.ydb{bottom:728.067000px;}
.y1c7{bottom:728.866500px;}
.y1f9{bottom:729.859500px;}
.y9c{bottom:730.450500px;}
.y21c{bottom:730.756500px;}
.y2a{bottom:737.070000px;}
.y27e{bottom:738.385500px;}
.y24a{bottom:738.816000px;}
.y2d8{bottom:742.189500px;}
.y8f{bottom:742.413000px;}
.y1c6{bottom:745.303500px;}
.y1f8{bottom:745.624500px;}
.y10a{bottom:746.448000px;}
.yda{bottom:746.896500px;}
.y1f7{bottom:748.689000px;}
.y5d{bottom:749.568000px;}
.y9b{bottom:749.710500px;}
.y21b{bottom:750.931500px;}
.y27d{bottom:752.581500px;}
.y249{bottom:755.254500px;}
.y29{bottom:756.528000px;}
.y2d7{bottom:759.450000px;}
.y8e{bottom:761.242500px;}
.y109{bottom:765.277500px;}
.yd9{bottom:765.726000px;}
.y27c{bottom:766.779000px;}
.y1f6{bottom:767.518500px;}
.y5c{bottom:768.397500px;}
.y1c3{bottom:768.945000px;}
.y248{bottom:771.693000px;}
.y9a{bottom:773.500500px;}
.y28{bottom:775.984500px;}
.y2d6{bottom:776.709000px;}
.y1c1{bottom:777.163500px;}
.y8d{bottom:780.072000px;}
.y27b{bottom:780.975000px;}
.y108{bottom:784.107000px;}
.yd8{bottom:784.555500px;}
.y1c0{bottom:785.383500px;}
.y1f5{bottom:786.348000px;}
.y5b{bottom:787.227000px;}
.y247{bottom:788.131500px;}
.y2d5{bottom:793.969500px;}
.y27a{bottom:795.172500px;}
.y27{bottom:795.441000px;}
.y8c{bottom:798.901500px;}
.y1c2{bottom:801.822000px;}
.y1f4{bottom:802.113000px;}
.y107{bottom:802.936500px;}
.yd7{bottom:803.385000px;}
.y246{bottom:804.570000px;}
.y1f3{bottom:805.177500px;}
.y5a{bottom:806.056500px;}
.y279{bottom:809.368500px;}
.y99{bottom:810.670500px;}
.y2d4{bottom:811.230000px;}
.y26{bottom:814.899000px;}
.y8b{bottom:817.731000px;}
.y245{bottom:821.008500px;}
.y106{bottom:821.766000px;}
.yd6{bottom:822.214500px;}
.y278{bottom:823.566000px;}
.y1f2{bottom:824.007000px;}
.y59{bottom:824.886000px;}
.y1be{bottom:825.462000px;}
.y2d3{bottom:828.490500px;}
.y98{bottom:829.930500px;}
.y1bd{bottom:833.682000px;}
.y25{bottom:834.355500px;}
.y8a{bottom:836.560500px;}
.y244{bottom:837.447000px;}
.y277{bottom:837.762000px;}
.y1f1{bottom:839.772000px;}
.y105{bottom:840.595500px;}
.yd5{bottom:841.044000px;}
.y1bf{bottom:841.900500px;}
.y1f0{bottom:842.836500px;}
.y58{bottom:843.715500px;}
.y2d2{bottom:845.751000px;}
.y276{bottom:851.959500px;}
.y24{bottom:853.812000px;}
.y243{bottom:853.885500px;}
.y89{bottom:855.390000px;}
.y104{bottom:859.425000px;}
.yd4{bottom:859.873500px;}
.y1ef{bottom:861.666000px;}
.y57{bottom:862.545000px;}
.y2d1{bottom:863.011500px;}
.y1bb{bottom:865.542000px;}
.y275{bottom:866.155500px;}
.y242{bottom:870.324000px;}
.y23{bottom:873.270000px;}
.y1ba{bottom:873.760500px;}
.y88{bottom:874.219500px;}
.y21a{bottom:875.637000px;}
.y103{bottom:878.254500px;}
.yd3{bottom:878.703000px;}
.y2d0{bottom:880.272000px;}
.y274{bottom:880.353000px;}
.y1ee{bottom:880.495500px;}
.y56{bottom:881.374500px;}
.y1bc{bottom:881.979000px;}
.y97{bottom:884.470500px;}
.y241{bottom:886.762500px;}
.y22{bottom:892.726500px;}
.y87{bottom:893.049000px;}
.y96{bottom:894.280500px;}
.y273{bottom:894.549000px;}
.y1ed{bottom:896.260500px;}
.y102{bottom:897.084000px;}
.yd2{bottom:897.532500px;}
.y1ec{bottom:899.325000px;}
.y55{bottom:900.204000px;}
.y240{bottom:903.199500px;}
.y1b9{bottom:905.620500px;}
.y272{bottom:908.746500px;}
.y86{bottom:911.878500px;}
.y21{bottom:912.184500px;}
.y2cf{bottom:914.793000px;}
.y1eb{bottom:915.090000px;}
.y101{bottom:915.913500px;}
.yd1{bottom:916.362000px;}
.y1ea{bottom:918.154500px;}
.y54{bottom:919.033500px;}
.y23f{bottom:919.638000px;}
.y271{bottom:922.942500px;}
.y85{bottom:930.708000px;}
.y2ce{bottom:932.052000px;}
.y100{bottom:934.743000px;}
.yd0{bottom:935.191500px;}
.y1e9{bottom:936.984000px;}
.y270{bottom:937.140000px;}
.y1b8{bottom:937.240500px;}
.y53{bottom:937.863000px;}
.y23e{bottom:943.279500px;}
.y2cd{bottom:949.312500px;}
.y84{bottom:949.537500px;}
.y20{bottom:950.769000px;}
.y1e8{bottom:952.749000px;}
.yff{bottom:953.572500px;}
.ycf{bottom:954.021000px;}
.y1e7{bottom:955.813500px;}
.y52{bottom:956.692500px;}
.y26f{bottom:958.539000px;}
.y2cc{bottom:966.573000px;}
.y83{bottom:968.367000px;}
.yfe{bottom:972.402000px;}
.yce{bottom:972.849000px;}
.y23d{bottom:974.899500px;}
.y51{bottom:975.522000px;}
.y26e{bottom:979.938000px;}
.y2cb{bottom:983.833500px;}
.y82{bottom:987.196500px;}
.y1e6{bottom:990.334500px;}
.yfd{bottom:991.231500px;}
.ycd{bottom:991.678500px;}
.y50{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y2ca{bottom:1001.094000px;}
.y26d{bottom:1001.337000px;}
.y81{bottom:1006.026000px;}
.yfc{bottom:1010.061000px;}
.ycc{bottom:1010.508000px;}
.y4f{bottom:1013.181000px;}
.y2c9{bottom:1018.354500px;}
.y80{bottom:1024.855500px;}
.ycb{bottom:1029.337500px;}
.y26c{bottom:1031.386500px;}
.y4e{bottom:1032.010500px;}
.yfb{bottom:1033.372500px;}
.y2c8{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y7f{bottom:1043.685000px;}
.yca{bottom:1048.167000px;}
.y4d{bottom:1050.840000px;}
.y2c7{bottom:1052.875500px;}
.y7e{bottom:1062.513000px;}
.yc9{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4c{bottom:1069.669500px;}
.y2c6{bottom:1070.134500px;}
.y7d{bottom:1081.342500px;}
.yc8{bottom:1085.826000px;}
.y2c5{bottom:1087.395000px;}
.y4b{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y7c{bottom:1104.655500px;}
.y4a{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y49{bottom:1173.397500px;}
.h19{height:-452.979000px;}
.h17{height:-391.479000px;}
.h18{height:-391.474500px;}
.h16{height:-330.099000px;}
.h14{height:-309.039000px;}
.h22{height:16.817382px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h26{height:34.574294px;}
.ha{height:36.319550px;}
.h20{height:38.478871px;}
.hc{height:38.896243px;}
.hb{height:41.508281px;}
.h21{height:41.723369px;}
.h10{height:42.760020px;}
.h6{height:43.217759px;}
.h15{height:43.886426px;}
.hd{height:46.697011px;}
.h12{height:48.225586px;}
.h28{height:48.489341px;}
.h4{height:50.629933px;}
.h2{height:50.931027px;}
.h1d{height:51.312023px;}
.he{height:51.885221px;}
.h11{height:53.691152px;}
.h24{height:55.843550px;}
.h23{height:55.849550px;}
.h1f{height:57.870703px;}
.h1e{height:64.429383px;}
.h3{height:69.505289px;}
.h27{height:69.900281px;}
.h5{height:77.792486px;}
.h1b{height:79.571011px;}
.h1a{height:79.577011px;}
.h25{height:87.475550px;}
.hf{height:285.709500px;}
.h1c{height:325.767600px;}
.h13{height:369.163500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:-26.724000px;}
.w3{width:75.364879px;}
.w7{width:193.356000px;}
.w2{width:211.537947px;}
.w8{width:232.753500px;}
.w5{width:426.109500px;}
.w4{width:582.217500px;}
.w9{width:676.276200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x60{left:-196.854000px;}
.x6c{left:-195.504000px;}
.x71{left:-191.814000px;}
.x66{left:-163.464000px;}
.x85{left:-134.901000px;}
.x63{left:-128.064000px;}
.x1f{left:-99.163500px;}
.x89{left:-96.669000px;}
.x23{left:-67.303500px;}
.x67{left:-12.594000px;}
.x68{left:-8.724000px;}
.x61{left:-1.254000px;}
.x0{left:0.000000px;}
.x69{left:4.950000px;}
.x72{left:9.450000px;}
.x6a{left:11.520000px;}
.x6e{left:16.380000px;}
.x3{left:29.274117px;}
.x62{left:30.606000px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x64{left:59.946000px;}
.xc2{left:62.967000px;}
.x6d{left:65.346000px;}
.xce{left:68.560500px;}
.xd4{left:70.521000px;}
.x70{left:72.000000px;}
.x73{left:73.620000px;}
.x90{left:75.669000px;}
.xc8{left:78.130500px;}
.xd7{left:79.779000px;}
.xca{left:81.028500px;}
.xd2{left:82.452000px;}
.xcd{left:83.916000px;}
.x24{left:85.890000px;}
.xc7{left:87.741000px;}
.xd0{left:91.107000px;}
.xd1{left:93.474000px;}
.xd5{left:94.810500px;}
.x20{left:96.436500px;}
.xcb{left:98.005500px;}
.x87{left:99.819000px;}
.xbe{left:101.592000px;}
.xbd{left:105.196500px;}
.x84{left:108.321000px;}
.xd3{left:110.937000px;}
.xc0{left:112.633500px;}
.x6f{left:114.210000px;}
.x97{left:117.127500px;}
.xba{left:118.605000px;}
.xa1{left:122.251500px;}
.xa3{left:124.242000px;}
.xbf{left:125.545500px;}
.x21{left:128.296500px;}
.xb8{left:130.131000px;}
.xbb{left:134.629500px;}
.xc4{left:135.729000px;}
.x86{left:138.051000px;}
.x25{left:143.107500px;}
.xc1{left:144.633000px;}
.x1e{left:155.349000px;}
.x65{left:157.050000px;}
.x6b{left:179.310000px;}
.xd6{left:191.140500px;}
.xc9{left:200.206500px;}
.xc6{left:210.667500px;}
.xb7{left:218.731500px;}
.xc5{left:228.973500px;}
.x4{left:250.897500px;}
.x99{left:259.374000px;}
.x7d{left:263.463000px;}
.x81{left:266.340000px;}
.xcf{left:270.307500px;}
.xcc{left:273.297000px;}
.x30{left:275.343000px;}
.x6{left:282.786000px;}
.xb2{left:285.490500px;}
.x8a{left:287.406000px;}
.x77{left:291.793500px;}
.xa2{left:292.909500px;}
.x98{left:294.739500px;}
.x4b{left:302.953500px;}
.x95{left:304.281000px;}
.x74{left:308.121000px;}
.x5{left:309.262500px;}
.x4c{left:310.425000px;}
.x76{left:323.533500px;}
.x8e{left:328.342500px;}
.x1a{left:333.370500px;}
.x91{left:334.381500px;}
.x9e{left:336.613500px;}
.xb4{left:338.097000px;}
.x9b{left:343.782000px;}
.x4d{left:345.921000px;}
.x1b{left:348.315000px;}
.xa6{left:355.992000px;}
.x4e{left:360.865500px;}
.xe2{left:363.619500px;}
.xda{left:366.594000px;}
.xdb{left:374.067000px;}
.x51{left:376.374000px;}
.xdc{left:377.821500px;}
.x28{left:381.295500px;}
.xe3{left:382.371000px;}
.x52{left:383.847000px;}
.x7{left:387.753000px;}
.x29{left:388.767000px;}
.xb0{left:391.164000px;}
.xdd{left:392.764500px;}
.x8{left:395.224500px;}
.x9a{left:397.320000px;}
.xb1{left:398.850000px;}
.xe4{left:400.938000px;}
.xb{left:403.116000px;}
.xc{left:410.587500px;}
.xe5{left:415.881000px;}
.xd{left:418.096500px;}
.xa7{left:423.945000px;}
.xe{left:425.568000px;}
.x5e{left:435.832500px;}
.x46{left:437.809500px;}
.x1c{left:438.868500px;}
.x78{left:440.598000px;}
.x59{left:444.552000px;}
.xb3{left:449.106000px;}
.x5f{left:450.777000px;}
.x47{left:452.752500px;}
.x1d{left:453.813000px;}
.x5a{left:455.848500px;}
.x5b{left:470.793000px;}
.x17{left:472.294500px;}
.x15{left:486.492000px;}
.x40{left:487.855500px;}
.x36{left:495.651000px;}
.x16{left:501.436500px;}
.x41{left:502.800000px;}
.x8b{left:504.364500px;}
.x7e{left:507.018000px;}
.x5c{left:508.818000px;}
.x37{left:510.594000px;}
.x38{left:514.405500px;}
.x8c{left:519.309000px;}
.x26{left:520.512000px;}
.xbc{left:521.599500px;}
.x5d{left:523.762500px;}
.xb9{left:524.961000px;}
.x44{left:526.029000px;}
.xb5{left:527.523000px;}
.x39{left:529.348500px;}
.x93{left:532.504500px;}
.x27{left:535.455000px;}
.x8d{left:538.063500px;}
.x9d{left:539.169000px;}
.x45{left:540.973500px;}
.x9f{left:543.493500px;}
.x8f{left:546.903000px;}
.x92{left:548.820000px;}
.x9c{left:550.372500px;}
.x3a{left:553.300500px;}
.x75{left:556.321500px;}
.x58{left:557.883000px;}
.x42{left:564.519000px;}
.xa0{left:567.157500px;}
.x3b{left:568.245000px;}
.x3c{left:572.022000px;}
.x43{left:579.463500px;}
.x34{left:586.717500px;}
.x22{left:591.496500px;}
.xdf{left:596.230500px;}
.x94{left:598.474500px;}
.x53{left:599.872500px;}
.x35{left:601.662000px;}
.xe0{left:603.702000px;}
.x54{left:607.345500px;}
.xc3{left:615.474000px;}
.xe1{left:622.308000px;}
.x7f{left:630.504000px;}
.x82{left:633.450000px;}
.x7c{left:635.238000px;}
.x7b{left:637.551000px;}
.x83{left:641.553000px;}
.xb6{left:644.439000px;}
.x96{left:646.368000px;}
.x7a{left:650.692500px;}
.x79{left:652.722000px;}
.x13{left:653.737500px;}
.xf{left:658.840500px;}
.x10{left:666.313500px;}
.x14{left:668.680500px;}
.xaa{left:673.875000px;}
.x80{left:679.440000px;}
.xab{left:681.561000px;}
.x88{left:690.543000px;}
.xad{left:692.467500px;}
.x48{left:699.813000px;}
.x32{left:704.097000px;}
.xa4{left:705.298500px;}
.xac{left:712.848000px;}
.x49{left:714.756000px;}
.x55{left:716.053500px;}
.x33{left:719.041500px;}
.xa5{left:720.243000px;}
.x4f{left:721.434000px;}
.x18{left:722.815500px;}
.x56{left:727.186500px;}
.x4a{left:733.362000px;}
.x50{left:736.377000px;}
.x19{left:737.758500px;}
.xae{left:740.055000px;}
.x57{left:742.131000px;}
.x31{left:744.408000px;}
.xaf{left:748.438500px;}
.x3d{left:754.446000px;}
.xe6{left:764.698500px;}
.x3e{left:769.390500px;}
.x3f{left:773.200500px;}
.xd8{left:776.458500px;}
.x9{left:782.890500px;}
.xde{left:783.990000px;}
.x2a{left:787.774500px;}
.xa{left:790.362000px;}
.x2b{left:795.246000px;}
.x2c{left:799.030500px;}
.xd9{left:809.658000px;}
.x2d{left:813.975000px;}
.xe7{left:816.351000px;}
.x2e{left:817.759500px;}
.x11{left:826.534500px;}
.xa8{left:829.324500px;}
.x2f{left:832.702500px;}
.x12{left:834.006000px;}
.xa9{left:837.012000px;}
@media print{
.v2{vertical-align:-10.896000pt;}
.v4{vertical-align:-9.706667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.109333pt;}
.v9{vertical-align:15.429333pt;}
.v5{vertical-align:17.360000pt;}
.v8{vertical-align:25.237333pt;}
.v7{vertical-align:28.112000pt;}
.v1{vertical-align:29.226667pt;}
.ls1c{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.234880pt;}
.ls1f{letter-spacing:-0.229120pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.169600pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.141333pt;}
.ls17{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls14{letter-spacing:-0.058133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.002118pt;}
.ls11{letter-spacing:0.002240pt;}
.ls35{letter-spacing:0.002372pt;}
.ls1a{letter-spacing:0.002688pt;}
.ls2b{letter-spacing:0.004147pt;}
.lsa{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.061333pt;}
.lse{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.509060pt;}
.ls3f{letter-spacing:0.514393pt;}
.ls31{letter-spacing:0.570745pt;}
.ls32{letter-spacing:0.576078pt;}
.ls46{letter-spacing:0.637762pt;}
.ls4{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls16{letter-spacing:7.776000pt;}
.ls1{letter-spacing:9.293600pt;}
.ls5{letter-spacing:10.573639pt;}
.ls42{letter-spacing:10.622342pt;}
.ls2{letter-spacing:10.626533pt;}
.ls3b{letter-spacing:10.629067pt;}
.ls2e{letter-spacing:11.370647pt;}
.ls4e{letter-spacing:11.743260pt;}
.ls4b{letter-spacing:11.954133pt;}
.ls49{letter-spacing:11.955200pt;}
.ls38{letter-spacing:11.955337pt;}
.ls4a{letter-spacing:11.959467pt;}
.ls4c{letter-spacing:12.106816pt;}
.ls34{letter-spacing:12.528078pt;}
.ls33{letter-spacing:12.555674pt;}
.ls4d{letter-spacing:12.776826pt;}
.ls30{letter-spacing:13.124065pt;}
.ls27{letter-spacing:13.132320pt;}
.ls28{letter-spacing:13.132983pt;}
.ls47{letter-spacing:13.269911pt;}
.ls43{letter-spacing:13.281067pt;}
.ls12{letter-spacing:13.283467pt;}
.ls22{letter-spacing:13.283543pt;}
.ls48{letter-spacing:13.283733pt;}
.ls25{letter-spacing:13.284042pt;}
.ls44{letter-spacing:13.286400pt;}
.ls2d{letter-spacing:13.287452pt;}
.ls3c{letter-spacing:13.442868pt;}
.ls6{letter-spacing:13.549136pt;}
.ls45{letter-spacing:14.080475pt;}
.ls20{letter-spacing:14.452412pt;}
.ls3a{letter-spacing:14.608533pt;}
.ls39{letter-spacing:14.613867pt;}
.ls2c{letter-spacing:15.937067pt;}
.ls23{letter-spacing:15.939505pt;}
.ls2f{letter-spacing:15.940160pt;}
.ls26{letter-spacing:15.941841pt;}
.ls24{letter-spacing:15.942400pt;}
.ls7{letter-spacing:17.906113pt;}
.ls3d{letter-spacing:18.171782pt;}
.ls2a{letter-spacing:18.614919pt;}
.ls29{letter-spacing:18.619635pt;}
.ls41{letter-spacing:195.489067pt;}
.ls40{letter-spacing:287.222400pt;}
.ls37{letter-spacing:567.765867pt;}
.ls36{letter-spacing:619.957867pt;}
.ws7f{word-spacing:-16.224000pt;}
.ws7e{word-spacing:-16.032000pt;}
.ws80{word-spacing:-15.840000pt;}
.ws48{word-spacing:-13.421333pt;}
.ws4c{word-spacing:-13.362240pt;}
.ws4a{word-spacing:-13.360000pt;}
.ws93{word-spacing:-13.283467pt;}
.ws4b{word-spacing:-13.218667pt;}
.ws49{word-spacing:-13.200000pt;}
.ws4d{word-spacing:-12.016000pt;}
.wse9{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws47{word-spacing:-2.975497pt;}
.ws8a{word-spacing:-2.821427pt;}
.ws64{word-spacing:-2.762961pt;}
.ws36{word-spacing:-2.709827pt;}
.wse4{word-spacing:-2.656693pt;}
.ws3d{word-spacing:-2.603559pt;}
.wsa3{word-spacing:-2.444158pt;}
.ws78{word-spacing:-2.284756pt;}
.wsa0{word-spacing:-2.231622pt;}
.ws63{word-spacing:-2.178489pt;}
.ws50{word-spacing:-2.019087pt;}
.wsa7{word-spacing:-1.912819pt;}
.ws2{word-spacing:-1.696326pt;}
.ws5f{word-spacing:-1.647150pt;}
.ws104{word-spacing:-1.625907pt;}
.wse3{word-spacing:-1.540882pt;}
.wsb7{word-spacing:-1.487748pt;}
.ws2b{word-spacing:-1.328347pt;}
.ws2a{word-spacing:-1.275213pt;}
.ws38{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws9a{word-spacing:-1.168945pt;}
.ws61{word-spacing:-1.115811pt;}
.ws59{word-spacing:-1.062677pt;}
.ws11{word-spacing:-1.052058pt;}
.ws9b{word-spacing:-1.009543pt;}
.wsf5{word-spacing:-1.004237pt;}
.ws84{word-spacing:-0.956410pt;}
.ws107{word-spacing:-0.908595pt;}
.ws5d{word-spacing:-0.903276pt;}
.wse1{word-spacing:-0.850142pt;}
.ws83{word-spacing:-0.797008pt;}
.ws10d{word-spacing:-0.717312pt;}
.ws10b{word-spacing:-0.710293pt;}
.ws5c{word-spacing:-0.690740pt;}
.wsdf{word-spacing:-0.531339pt;}
.wse0{word-spacing:-0.478205pt;}
.wse5{word-spacing:-0.430387pt;}
.ws76{word-spacing:-0.425071pt;}
.ws87{word-spacing:-0.371937pt;}
.ws67{word-spacing:-0.318803pt;}
.ws1a{word-spacing:-0.286925pt;}
.ws41{word-spacing:-0.265669pt;}
.ws15{word-spacing:-0.239104pt;}
.ws29{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws12{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws20{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.042507pt;}
.ws95{word-spacing:-0.040382pt;}
.ws6{word-spacing:-0.037194pt;}
.ws10a{word-spacing:-0.023407pt;}
.wsaf{word-spacing:-0.007561pt;}
.wsb6{word-spacing:-0.004843pt;}
.wsad{word-spacing:-0.004062pt;}
.wsa1{word-spacing:-0.002096pt;}
.wsd6{word-spacing:-0.001881pt;}
.wsb5{word-spacing:-0.001775pt;}
.ws0{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.000324pt;}
.wsd7{word-spacing:0.003452pt;}
.wsd5{word-spacing:0.003558pt;}
.ws81{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws4e{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.ws7a{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.ws7{word-spacing:0.185968pt;}
.wsf3{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.wseb{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws24{word-spacing:0.265669pt;}
.ws82{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws6d{word-spacing:0.371937pt;}
.ws17{word-spacing:0.382566pt;}
.ws28{word-spacing:0.478205pt;}
.ws105{word-spacing:0.526029pt;}
.ws68{word-spacing:0.531339pt;}
.ws106{word-spacing:0.573850pt;}
.ws100{word-spacing:0.621670pt;}
.ws91{word-spacing:0.743874pt;}
.ws52{word-spacing:0.797008pt;}
.ws77{word-spacing:0.850142pt;}
.wsff{word-spacing:0.860774pt;}
.ws19{word-spacing:0.908595pt;}
.ws26{word-spacing:0.956410pt;}
.ws5a{word-spacing:1.009543pt;}
.ws5b{word-spacing:1.062677pt;}
.ws55{word-spacing:1.115811pt;}
.wsfe{word-spacing:1.147699pt;}
.ws85{word-spacing:1.168945pt;}
.ws1e{word-spacing:1.222079pt;}
.ws22{word-spacing:1.275213pt;}
.ws32{word-spacing:1.328347pt;}
.ws6a{word-spacing:1.381481pt;}
.ws103{word-spacing:1.386803pt;}
.wsd8{word-spacing:1.434614pt;}
.ws33{word-spacing:1.487748pt;}
.ws109{word-spacing:1.530266pt;}
.ws57{word-spacing:1.540882pt;}
.ws35{word-spacing:1.594016pt;}
.wsba{word-spacing:1.647150pt;}
.ws7b{word-spacing:1.700284pt;}
.wsde{word-spacing:1.753418pt;}
.ws8{word-spacing:1.785293pt;}
.ws65{word-spacing:1.859685pt;}
.ws53{word-spacing:1.912819pt;}
.ws73{word-spacing:2.019087pt;}
.ws1b{word-spacing:2.104115pt;}
.ws86{word-spacing:2.125355pt;}
.ws56{word-spacing:2.178489pt;}
.ws99{word-spacing:2.284756pt;}
.ws9c{word-spacing:2.337890pt;}
.ws31{word-spacing:2.391024pt;}
.ws13{word-spacing:2.391040pt;}
.ws2c{word-spacing:2.444158pt;}
.ws3e{word-spacing:2.603559pt;}
.wsea{word-spacing:2.630144pt;}
.ws27{word-spacing:2.656693pt;}
.ws3c{word-spacing:2.709827pt;}
.ws9e{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.861926pt;}
.wsf7{word-spacing:2.865374pt;}
.wsf6{word-spacing:2.868762pt;}
.ws74{word-spacing:2.869229pt;}
.wsb3{word-spacing:2.869248pt;}
.wsee{word-spacing:2.869453pt;}
.ws108{word-spacing:2.917069pt;}
.ws6b{word-spacing:2.922363pt;}
.ws4f{word-spacing:2.975497pt;}
.ws71{word-spacing:3.028630pt;}
.ws51{word-spacing:3.081764pt;}
.ws60{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.wsa5{word-spacing:3.241166pt;}
.ws7d{word-spacing:3.347434pt;}
.wsdb{word-spacing:3.400567pt;}
.ws72{word-spacing:3.453701pt;}
.ws6e{word-spacing:3.506835pt;}
.ws40{word-spacing:3.559969pt;}
.ws90{word-spacing:3.613103pt;}
.ws3b{word-spacing:3.666237pt;}
.ws42{word-spacing:3.719371pt;}
.ws9d{word-spacing:4.038174pt;}
.ws46{word-spacing:4.144442pt;}
.ws98{word-spacing:4.197575pt;}
.wsb8{word-spacing:4.303843pt;}
.ws45{word-spacing:4.410111pt;}
.ws43{word-spacing:4.463245pt;}
.ws44{word-spacing:4.675780pt;}
.wsd9{word-spacing:4.782048pt;}
.wsbc{word-spacing:4.835182pt;}
.wsbd{word-spacing:4.888316pt;}
.ws6c{word-spacing:4.941450pt;}
.ws62{word-spacing:5.153985pt;}
.ws75{word-spacing:5.207119pt;}
.wsa2{word-spacing:5.260253pt;}
.wsfa{word-spacing:5.305948pt;}
.wsfc{word-spacing:5.308109pt;}
.ws54{word-spacing:5.313387pt;}
.wsa6{word-spacing:5.366521pt;}
.wsf{word-spacing:5.393072pt;}
.ws70{word-spacing:5.419654pt;}
.ws10{word-spacing:5.467459pt;}
.wse7{word-spacing:5.547213pt;}
.wsda{word-spacing:5.579056pt;}
.ws39{word-spacing:5.738458pt;}
.ws69{word-spacing:5.791591pt;}
.wse6{word-spacing:5.881958pt;}
.ws92{word-spacing:5.897859pt;}
.wsbb{word-spacing:6.004127pt;}
.ws88{word-spacing:6.269796pt;}
.ws66{word-spacing:6.376064pt;}
.ws97{word-spacing:6.429198pt;}
.ws79{word-spacing:6.588599pt;}
.wsdd{word-spacing:6.641733pt;}
.wsdc{word-spacing:6.694867pt;}
.wse2{word-spacing:6.748001pt;}
.ws3f{word-spacing:6.801135pt;}
.ws6f{word-spacing:7.119938pt;}
.ws58{word-spacing:7.226206pt;}
.wsa4{word-spacing:7.438741pt;}
.wsd{word-spacing:7.699075pt;}
.wsf9{word-spacing:7.699149pt;}
.ws4{word-spacing:9.258663pt;}
.ws2e{word-spacing:10.581554pt;}
.ws10c{word-spacing:11.190067pt;}
.ws10e{word-spacing:11.620454pt;}
.wsef{word-spacing:11.902908pt;}
.wsf4{word-spacing:11.907379pt;}
.ws3a{word-spacing:13.230333pt;}
.ws3{word-spacing:13.763148pt;}
.wsed{word-spacing:14.537523pt;}
.ws102{word-spacing:14.770765pt;}
.wsec{word-spacing:14.773111pt;}
.wsf8{word-spacing:14.773248pt;}
.wsf0{word-spacing:14.775612pt;}
.wse8{word-spacing:14.776627pt;}
.wsfd{word-spacing:14.872269pt;}
.wsf1{word-spacing:14.967910pt;}
.wsf2{word-spacing:15.015731pt;}
.wsc{word-spacing:15.732893pt;}
.ws94{word-spacing:15.899631pt;}
.wsb9{word-spacing:16.471499pt;}
.ws5e{word-spacing:16.896570pt;}
.ws101{word-spacing:17.024205pt;}
.wsfb{word-spacing:17.215488pt;}
.wsb{word-spacing:18.038896pt;}
.wsa{word-spacing:18.055335pt;}
.wse{word-spacing:24.399002pt;}
.wsc5{word-spacing:96.798667pt;}
.wsbf{word-spacing:111.352794pt;}
.wsc4{word-spacing:114.567132pt;}
.wsc1{word-spacing:118.649333pt;}
.wsc8{word-spacing:125.268718pt;}
.wsc2{word-spacing:125.311226pt;}
.wsc0{word-spacing:135.853011pt;}
.wsd4{word-spacing:153.621021pt;}
.wsc3{word-spacing:168.998119pt;}
.wsd3{word-spacing:185.501421pt;}
.wsd2{word-spacing:186.436579pt;}
.wsbe{word-spacing:199.698826pt;}
.ws9f{word-spacing:234.798557pt;}
.ws96{word-spacing:298.452929pt;}
.ws8b{word-spacing:391.616691pt;}
.ws8e{word-spacing:398.694315pt;}
.wsc9{word-spacing:420.521026pt;}
.wscf{word-spacing:446.089188pt;}
.ws8c{word-spacing:447.856546pt;}
.wsc6{word-spacing:470.614497pt;}
.wscb{word-spacing:471.254480pt;}
.ws7c{word-spacing:520.146842pt;}
.ws8f{word-spacing:537.996501pt;}
.wsa9{word-spacing:546.304819pt;}
.ws8d{word-spacing:546.391168pt;}
.wsb2{word-spacing:578.153472pt;}
.wscc{word-spacing:606.531467pt;}
.wsb1{word-spacing:614.019072pt;}
.wsb0{word-spacing:615.071130pt;}
.wsc7{word-spacing:616.564000pt;}
.wscd{word-spacing:617.155733pt;}
.wsce{word-spacing:623.793160pt;}
.wsca{word-spacing:624.830667pt;}
.wsa8{word-spacing:629.991219pt;}
.wsd1{word-spacing:645.046760pt;}
.wsd0{word-spacing:655.631053pt;}
.ws89{word-spacing:676.951245pt;}
.wsae{word-spacing:1193.654989pt;}
.wsab{word-spacing:1195.137434pt;}
.wsaa{word-spacing:1198.235938pt;}
.wsac{word-spacing:1223.534720pt;}
._13{margin-left:-6.694867pt;}
._10{margin-left:-5.791591pt;}
._3{margin-left:-4.797974pt;}
._d{margin-left:-3.740636pt;}
._7{margin-left:-2.677939pt;}
._0{margin-left:-1.721549pt;}
._2{width:0.969929pt;}
._6{width:2.045648pt;}
._1b{width:3.304547pt;}
._15{width:4.239968pt;}
._1c{width:5.593181pt;}
._19{width:6.504000pt;}
._1a{width:7.566400pt;}
._1d{width:8.487040pt;}
._2a{width:9.680768pt;}
._5d{width:10.626800pt;}
._5{width:11.530016pt;}
._62{width:12.438683pt;}
._9{width:13.389824pt;}
._8{width:14.585344pt;}
._c{width:16.173961pt;}
._a{width:17.119846pt;}
._f{width:18.299315pt;}
._17{width:19.733930pt;}
._b{width:21.391792pt;}
._4{width:23.063232pt;}
._14{width:24.654114pt;}
._e{width:25.706188pt;}
._25{width:26.620067pt;}
._22{width:27.916545pt;}
._1{width:29.648896pt;}
._16{width:30.679506pt;}
._23{width:31.774052pt;}
._24{width:32.826126pt;}
._21{width:34.218210pt;}
._20{width:36.077895pt;}
._1f{width:37.246841pt;}
._1e{width:38.575187pt;}
._63{width:54.993920pt;}
._60{width:75.011975pt;}
._48{width:77.315431pt;}
._61{width:78.253208pt;}
._4d{width:85.578732pt;}
._27{width:91.279403pt;}
._49{width:99.157398pt;}
._28{width:101.469577pt;}
._59{width:103.972611pt;}
._4b{width:106.616428pt;}
._52{width:120.550419pt;}
._4a{width:164.247821pt;}
._26{width:191.969971pt;}
._2c{width:196.722014pt;}
._5f{width:199.231246pt;}
._30{width:201.334127pt;}
._2d{width:209.181210pt;}
._2e{width:220.818893pt;}
._5e{width:239.740608pt;}
._35{width:305.066581pt;}
._31{width:310.991087pt;}
._38{width:320.176444pt;}
._2f{width:321.727940pt;}
._4c{width:337.184065pt;}
._57{width:355.290829pt;}
._32{width:358.668322pt;}
._5a{width:363.904139pt;}
._58{width:372.506643pt;}
._5c{width:380.396933pt;}
._34{width:387.646096pt;}
._53{width:388.685837pt;}
._55{width:393.453491pt;}
._4f{width:395.869554pt;}
._46{width:420.141165pt;}
._42{width:430.443017pt;}
._51{width:440.162056pt;}
._47{width:455.501802pt;}
._36{width:480.357018pt;}
._37{width:483.009126pt;}
._45{width:485.327939pt;}
._43{width:487.743939pt;}
._44{width:489.761478pt;}
._3d{width:501.611418pt;}
._41{width:521.438003pt;}
._3c{width:522.346598pt;}
._39{width:536.262451pt;}
._40{width:567.011226pt;}
._3a{width:570.733875pt;}
._50{width:621.874033pt;}
._54{width:648.574858pt;}
._11{width:652.760168pt;}
._4e{width:655.673560pt;}
._5b{width:661.497234pt;}
._56{width:683.983355pt;}
._2b{width:842.267750pt;}
._3e{width:1114.332544pt;}
._3f{width:1140.908646pt;}
._3b{width:1188.585984pt;}
._18{width:1819.553271pt;}
._33{width:2142.061067pt;}
._12{width:2163.314400pt;}
._29{width:2183.657911pt;}
.fs12{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fse{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs11{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fsb{font-size:51.072000pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fsd{font-size:57.600000pt;}
.fsc{font-size:64.128000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y19b{bottom:-660.576000pt;}
.y19a{bottom:-640.128000pt;}
.y199{bottom:-619.584000pt;}
.y198{bottom:-599.136000pt;}
.y197{bottom:-578.592000pt;}
.y196{bottom:-558.048000pt;}
.y195{bottom:-537.600000pt;}
.y194{bottom:-517.024000pt;}
.y193{bottom:-496.480000pt;}
.y192{bottom:-476.032000pt;}
.y191{bottom:-455.488000pt;}
.y154{bottom:-452.648000pt;}
.y152{bottom:-443.688000pt;}
.y190{bottom:-435.040000pt;}
.y150{bottom:-434.648000pt;}
.y151{bottom:-425.688000pt;}
.y153{bottom:-416.648000pt;}
.y18f{bottom:-409.696000pt;}
.y14f{bottom:-398.008000pt;}
.y14d{bottom:-389.048000pt;}
.y14b{bottom:-380.008000pt;}
.y14c{bottom:-371.048000pt;}
.y18e{bottom:-369.952000pt;}
.y14e{bottom:-361.981333pt;}
.y18d{bottom:-349.504000pt;}
.y14a{bottom:-343.341333pt;}
.y148{bottom:-334.381333pt;}
.y18c{bottom:-328.960000pt;}
.y146{bottom:-325.341333pt;}
.y147{bottom:-316.381333pt;}
.y18b{bottom:-308.512000pt;}
.y149{bottom:-307.421333pt;}
.y145{bottom:-288.621333pt;}
.y18a{bottom:-287.968000pt;}
.y189{bottom:-267.424000pt;}
.y144{bottom:-261.901333pt;}
.y188{bottom:-246.976000pt;}
.y143{bottom:-230.221333pt;}
.y187{bottom:-226.432000pt;}
.y142{bottom:-213.101333pt;}
.y186{bottom:-205.984000pt;}
.y141{bottom:-196.061333pt;}
.y185{bottom:-185.440000pt;}
.y140{bottom:-178.941333pt;}
.y184{bottom:-164.896000pt;}
.y13f{bottom:-161.821333pt;}
.ybb{bottom:-154.364000pt;}
.y13e{bottom:-144.781333pt;}
.y183{bottom:-144.448000pt;}
.yba{bottom:-137.324000pt;}
.y13d{bottom:-127.661333pt;}
.y182{bottom:-123.904000pt;}
.yb9{bottom:-120.204000pt;}
.y13c{bottom:-110.621333pt;}
.y181{bottom:-103.360000pt;}
.yb8{bottom:-103.084000pt;}
.y13b{bottom:-93.501333pt;}
.yb7{bottom:-86.044000pt;}
.y180{bottom:-82.880000pt;}
.y13a{bottom:-72.381333pt;}
.yb6{bottom:-64.924000pt;}
.y17f{bottom:-43.712000pt;}
.y139{bottom:-39.741333pt;}
.yb5{bottom:-32.257333pt;}
.y17e{bottom:-25.088000pt;}
.y138{bottom:-24.301333pt;}
.yb4{bottom:-16.817333pt;}
.y137{bottom:-4.381333pt;}
.y17d{bottom:-1.184000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.yb3{bottom:3.102667pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y48{bottom:28.346667pt;}
.yc7{bottom:79.901333pt;}
.y2a5{bottom:80.496000pt;}
.y26b{bottom:83.110667pt;}
.y1b7{bottom:85.208000pt;}
.y2c4{bottom:85.993333pt;}
.y1f{bottom:91.398667pt;}
.y23c{bottom:92.848000pt;}
.y12d{bottom:94.441333pt;}
.y219{bottom:94.840000pt;}
.y173{bottom:95.722667pt;}
.y47{bottom:96.457333pt;}
.yc6{bottom:96.638667pt;}
.y2a4{bottom:97.233333pt;}
.y26a{bottom:99.848000pt;}
.y2c3{bottom:101.336000pt;}
.y1b6{bottom:101.945333pt;}
.y1e{bottom:107.298667pt;}
.y2f9{bottom:107.393333pt;}
.y23b{bottom:109.585333pt;}
.y172{bottom:110.334667pt;}
.y12b{bottom:111.178667pt;}
.y218{bottom:111.577333pt;}
.y46{bottom:113.194667pt;}
.yc5{bottom:113.376000pt;}
.y2c2{bottom:116.678667pt;}
.y16f{bottom:117.640000pt;}
.y2a3{bottom:117.956000pt;}
.y1b5{bottom:118.682667pt;}
.y269{bottom:120.570667pt;}
.y2f8{bottom:122.736000pt;}
.y1d{bottom:123.200000pt;}
.y16e{bottom:124.945333pt;}
.y23a{bottom:126.322667pt;}
.y12a{bottom:127.916000pt;}
.yfa{bottom:128.314667pt;}
.y7b{bottom:129.893333pt;}
.y45{bottom:129.932000pt;}
.yc4{bottom:130.113333pt;}
.y2c1{bottom:132.021333pt;}
.y1b4{bottom:135.420000pt;}
.y1e5{bottom:136.545333pt;}
.y2f7{bottom:138.078667pt;}
.y1c{bottom:139.100000pt;}
.y171{bottom:139.557333pt;}
.y217{bottom:142.262667pt;}
.y239{bottom:143.060000pt;}
.y129{bottom:144.653333pt;}
.yf9{bottom:145.052000pt;}
.y7a{bottom:146.630667pt;}
.y44{bottom:146.669333pt;}
.yc3{bottom:146.850667pt;}
.y2c0{bottom:147.364000pt;}
.y2a2{bottom:147.844000pt;}
.y268{bottom:150.458667pt;}
.y1b3{bottom:152.157333pt;}
.y1e4{bottom:153.282667pt;}
.y2f6{bottom:153.421333pt;}
.y170{bottom:154.169333pt;}
.y1b{bottom:155.000000pt;}
.y238{bottom:159.797333pt;}
.y128{bottom:161.390667pt;}
.yf8{bottom:161.789333pt;}
.y2bf{bottom:162.706667pt;}
.y79{bottom:163.368000pt;}
.y43{bottom:163.406667pt;}
.yc2{bottom:163.588000pt;}
.y2a1{bottom:164.581333pt;}
.y267{bottom:167.196000pt;}
.y2f5{bottom:168.762667pt;}
.y1b2{bottom:168.894667pt;}
.y1e3{bottom:170.020000pt;}
.y1a{bottom:170.901333pt;}
.y216{bottom:172.948000pt;}
.y16d{bottom:175.184000pt;}
.y237{bottom:176.534667pt;}
.y2be{bottom:178.049333pt;}
.y127{bottom:178.128000pt;}
.yf7{bottom:178.526667pt;}
.y78{bottom:180.105333pt;}
.y42{bottom:180.144000pt;}
.yc1{bottom:180.325333pt;}
.y2a0{bottom:181.318667pt;}
.y266{bottom:183.933333pt;}
.y2f4{bottom:184.105333pt;}
.y1b1{bottom:185.632000pt;}
.y1e2{bottom:186.757333pt;}
.y19{bottom:186.801333pt;}
.y215{bottom:186.960000pt;}
.y214{bottom:189.685333pt;}
.y16c{bottom:189.796000pt;}
.y236{bottom:193.272000pt;}
.y2bd{bottom:193.390667pt;}
.y126{bottom:194.865333pt;}
.yf6{bottom:195.264000pt;}
.y77{bottom:196.842667pt;}
.y41{bottom:196.881333pt;}
.yc0{bottom:197.062667pt;}
.y169{bottom:197.101333pt;}
.y29f{bottom:198.056000pt;}
.y2f3{bottom:199.448000pt;}
.y265{bottom:200.670667pt;}
.y1b0{bottom:202.369333pt;}
.y18{bottom:202.701333pt;}
.y1e1{bottom:203.494667pt;}
.y168{bottom:204.408000pt;}
.y213{bottom:206.422667pt;}
.y2bc{bottom:208.733333pt;}
.y235{bottom:210.009333pt;}
.y125{bottom:211.602667pt;}
.yf5{bottom:212.001333pt;}
.y76{bottom:213.578667pt;}
.y40{bottom:213.617333pt;}
.ybf{bottom:213.800000pt;}
.y2f2{bottom:214.790667pt;}
.y29e{bottom:214.793333pt;}
.y264{bottom:217.406667pt;}
.y16b{bottom:219.018667pt;}
.y1af{bottom:219.106667pt;}
.y1e0{bottom:220.232000pt;}
.y212{bottom:223.160000pt;}
.y2bb{bottom:224.076000pt;}
.y234{bottom:226.746667pt;}
.y124{bottom:228.340000pt;}
.yf4{bottom:228.738667pt;}
.y2f1{bottom:230.133333pt;}
.y75{bottom:230.316000pt;}
.y3f{bottom:230.354667pt;}
.y29d{bottom:231.530667pt;}
.y16a{bottom:233.630667pt;}
.y263{bottom:234.144000pt;}
.ybe{bottom:234.522667pt;}
.y1ae{bottom:235.844000pt;}
.y1df{bottom:236.969333pt;}
.y2ba{bottom:239.418667pt;}
.y211{bottom:239.897333pt;}
.y233{bottom:243.484000pt;}
.y123{bottom:245.077333pt;}
.yf3{bottom:245.476000pt;}
.y74{bottom:247.053333pt;}
.y3e{bottom:247.092000pt;}
.y29c{bottom:248.268000pt;}
.y262{bottom:250.881333pt;}
.y1de{bottom:253.706667pt;}
.y167{bottom:254.645333pt;}
.y2b9{bottom:254.761333pt;}
.y1ad{bottom:256.566667pt;}
.y210{bottom:256.634667pt;}
.y2f0{bottom:260.818667pt;}
.y122{bottom:261.814667pt;}
.yf2{bottom:262.213333pt;}
.y73{bottom:263.790667pt;}
.y3d{bottom:263.829333pt;}
.y232{bottom:264.205333pt;}
.ybd{bottom:264.225333pt;}
.y29b{bottom:265.005333pt;}
.y261{bottom:267.618667pt;}
.y164{bottom:269.257333pt;}
.y2b8{bottom:270.104000pt;}
.y1dd{bottom:270.444000pt;}
.y17{bottom:273.154667pt;}
.yb2{bottom:273.342667pt;}
.y2ef{bottom:276.161333pt;}
.y163{bottom:276.562667pt;}
.y20f{bottom:277.356000pt;}
.y121{bottom:278.552000pt;}
.yf1{bottom:278.950667pt;}
.y72{bottom:280.528000pt;}
.y3c{bottom:280.566667pt;}
.ybc{bottom:281.321333pt;}
.y29a{bottom:281.742667pt;}
.y166{bottom:283.869333pt;}
.y260{bottom:284.356000pt;}
.y2b7{bottom:285.446667pt;}
.y1ac{bottom:286.454667pt;}
.y1dc{bottom:287.181333pt;}
.y16{bottom:289.054667pt;}
.yb1{bottom:290.462667pt;}
.y2ee{bottom:291.502667pt;}
.y231{bottom:294.093333pt;}
.y120{bottom:295.289333pt;}
.yf0{bottom:295.688000pt;}
.y71{bottom:297.265333pt;}
.y3b{bottom:297.304000pt;}
.y20e{bottom:298.078667pt;}
.y299{bottom:298.480000pt;}
.y165{bottom:298.481333pt;}
.y2b6{bottom:300.789333pt;}
.y25f{bottom:301.093333pt;}
.y95{bottom:301.258667pt;}
.y1ab{bottom:303.192000pt;}
.y1db{bottom:303.918667pt;}
.y15{bottom:304.954667pt;}
.y2ed{bottom:306.845333pt;}
.yb0{bottom:307.502667pt;}
.y230{bottom:310.830667pt;}
.y11f{bottom:312.026667pt;}
.yef{bottom:312.425333pt;}
.y70{bottom:314.002667pt;}
.y3a{bottom:314.041333pt;}
.y298{bottom:315.217333pt;}
.y2b5{bottom:316.130667pt;}
.y25e{bottom:317.830667pt;}
.y20d{bottom:318.801333pt;}
.y162{bottom:319.494667pt;}
.y1aa{bottom:319.929333pt;}
.y1da{bottom:320.656000pt;}
.y14{bottom:320.856000pt;}
.y17c{bottom:321.376000pt;}
.y2ec{bottom:322.188000pt;}
.yaf{bottom:324.649333pt;}
.y22f{bottom:327.568000pt;}
.y11e{bottom:328.764000pt;}
.yee{bottom:329.162667pt;}
.y6f{bottom:330.740000pt;}
.y39{bottom:330.778667pt;}
.y2b4{bottom:331.473333pt;}
.y297{bottom:331.954667pt;}
.y25d{bottom:334.568000pt;}
.y20c{bottom:335.538667pt;}
.y1a9{bottom:336.666667pt;}
.y2eb{bottom:337.530667pt;}
.yae{bottom:341.689333pt;}
.y17b{bottom:341.824000pt;}
.y22e{bottom:344.305333pt;}
.y136{bottom:345.485333pt;}
.y11d{bottom:345.501333pt;}
.yed{bottom:345.900000pt;}
.y2b3{bottom:346.816000pt;}
.y6e{bottom:347.477333pt;}
.y38{bottom:347.516000pt;}
.y161{bottom:347.601333pt;}
.y296{bottom:348.692000pt;}
.y25c{bottom:351.305333pt;}
.y20b{bottom:352.276000pt;}
.y2ea{bottom:352.873333pt;}
.y1a8{bottom:353.404000pt;}
.y13{bottom:354.688000pt;}
.yad{bottom:358.809333pt;}
.y22d{bottom:361.042667pt;}
.y1d9{bottom:361.066667pt;}
.y2b2{bottom:362.158667pt;}
.y11c{bottom:362.238667pt;}
.y17a{bottom:362.368000pt;}
.y135{bottom:362.525333pt;}
.yec{bottom:362.637333pt;}
.y6d{bottom:364.214667pt;}
.y37{bottom:364.253333pt;}
.y295{bottom:365.429333pt;}
.y25b{bottom:368.042667pt;}
.y2e9{bottom:368.216000pt;}
.y1d8{bottom:368.372000pt;}
.y20a{bottom:369.013333pt;}
.y1a7{bottom:370.141333pt;}
.y12{bottom:370.589333pt;}
.yac{bottom:375.929333pt;}
.y2b1{bottom:377.501333pt;}
.y22c{bottom:377.780000pt;}
.y11b{bottom:378.976000pt;}
.yeb{bottom:379.374667pt;}
.y134{bottom:379.645333pt;}
.y160{bottom:380.582667pt;}
.y6c{bottom:380.952000pt;}
.y36{bottom:380.990667pt;}
.y294{bottom:382.166667pt;}
.y179{bottom:382.944000pt;}
.y2e8{bottom:383.558667pt;}
.y11{bottom:386.489333pt;}
.y1a6{bottom:386.878667pt;}
.y209{bottom:389.734667pt;}
.y2b0{bottom:392.844000pt;}
.yab{bottom:392.969333pt;}
.y22b{bottom:394.517333pt;}
.y11a{bottom:395.713333pt;}
.yea{bottom:396.112000pt;}
.y1d7{bottom:396.692000pt;}
.y133{bottom:396.792000pt;}
.y25a{bottom:397.012000pt;}
.y15f{bottom:397.320000pt;}
.y6b{bottom:397.689333pt;}
.y35{bottom:397.728000pt;}
.y2e7{bottom:398.901333pt;}
.y178{bottom:403.392000pt;}
.y1a5{bottom:403.616000pt;}
.y1d6{bottom:403.998667pt;}
.y2af{bottom:408.186667pt;}
.y293{bottom:408.477333pt;}
.yaa{bottom:410.089333pt;}
.y208{bottom:410.457333pt;}
.y22a{bottom:411.254667pt;}
.y119{bottom:412.450667pt;}
.ye9{bottom:412.848000pt;}
.y132{bottom:413.832000pt;}
.y15e{bottom:414.057333pt;}
.y2e6{bottom:414.244000pt;}
.y6a{bottom:414.426667pt;}
.y34{bottom:414.465333pt;}
.y259{bottom:417.230667pt;}
.y10{bottom:418.330667pt;}
.y1a4{bottom:420.353333pt;}
.y2ae{bottom:423.529333pt;}
.y177{bottom:423.936000pt;}
.ya9{bottom:427.129333pt;}
.y207{bottom:427.194667pt;}
.y229{bottom:427.992000pt;}
.y291{bottom:428.100000pt;}
.y118{bottom:429.188000pt;}
.ye8{bottom:429.585333pt;}
.y15d{bottom:430.794667pt;}
.y131{bottom:430.952000pt;}
.y69{bottom:431.164000pt;}
.y33{bottom:431.202667pt;}
.y258{bottom:431.842667pt;}
.y1d5{bottom:432.317333pt;}
.y12c{bottom:433.172000pt;}
.yf{bottom:434.230667pt;}
.y1a3{bottom:437.090667pt;}
.y2ac{bottom:438.870667pt;}
.y2ad{bottom:438.872000pt;}
.y1d4{bottom:439.624000pt;}
.y292{bottom:440.445333pt;}
.y290{bottom:440.720000pt;}
.y206{bottom:443.932000pt;}
.ya8{bottom:444.249333pt;}
.y228{bottom:444.729333pt;}
.y2e5{bottom:444.928000pt;}
.y117{bottom:445.925333pt;}
.ye7{bottom:446.322667pt;}
.y257{bottom:446.454667pt;}
.y15c{bottom:447.532000pt;}
.y68{bottom:447.901333pt;}
.y32{bottom:447.940000pt;}
.y28f{bottom:453.338667pt;}
.y1a2{bottom:453.826667pt;}
.y2ab{bottom:458.198667pt;}
.y2e4{bottom:460.270667pt;}
.y205{bottom:460.669333pt;}
.y256{bottom:461.066667pt;}
.ya7{bottom:461.369333pt;}
.y227{bottom:461.466667pt;}
.y116{bottom:462.662667pt;}
.ye6{bottom:463.060000pt;}
.y15b{bottom:464.269333pt;}
.y67{bottom:464.638667pt;}
.y28d{bottom:465.957333pt;}
.ye{bottom:466.070667pt;}
.y1d2{bottom:467.944000pt;}
.y31{bottom:468.662667pt;}
.y1a1{bottom:470.564000pt;}
.y1d1{bottom:475.249333pt;}
.y2e3{bottom:475.613333pt;}
.y226{bottom:478.204000pt;}
.y28e{bottom:478.304000pt;}
.ya6{bottom:478.409333pt;}
.y28c{bottom:478.577333pt;}
.y115{bottom:479.398667pt;}
.y130{bottom:479.432000pt;}
.ye5{bottom:479.797333pt;}
.y15a{bottom:481.006667pt;}
.y204{bottom:481.392000pt;}
.yd{bottom:481.972000pt;}
.y255{bottom:482.081333pt;}
.y176{bottom:482.112000pt;}
.y1d3{bottom:482.556000pt;}
.y66{bottom:485.361333pt;}
.y1a0{bottom:487.301333pt;}
.y2aa{bottom:488.086667pt;}
.y12f{bottom:488.152000pt;}
.y2e2{bottom:490.956000pt;}
.y28b{bottom:491.196000pt;}
.y175{bottom:492.576000pt;}
.y225{bottom:494.941333pt;}
.ya5{bottom:495.529333pt;}
.y114{bottom:496.136000pt;}
.ye4{bottom:496.534667pt;}
.y254{bottom:497.248000pt;}
.y159{bottom:497.744000pt;}
.yc{bottom:497.872000pt;}
.y203{bottom:498.129333pt;}
.y1d0{bottom:503.569333pt;}
.y28a{bottom:503.816000pt;}
.y19f{bottom:504.038667pt;}
.y2e1{bottom:506.298667pt;}
.y224{bottom:511.678667pt;}
.y253{bottom:512.414667pt;}
.ya4{bottom:512.569333pt;}
.y113{bottom:512.873333pt;}
.ye3{bottom:513.272000pt;}
.yb{bottom:513.772000pt;}
.y158{bottom:514.481333pt;}
.y202{bottom:514.866667pt;}
.y65{bottom:515.249333pt;}
.y289{bottom:516.982667pt;}
.y1cd{bottom:518.181333pt;}
.y19e{bottom:520.776000pt;}
.y2e0{bottom:521.641333pt;}
.y1cc{bottom:525.488000pt;}
.y2a9{bottom:527.300000pt;}
.y223{bottom:528.416000pt;}
.y112{bottom:529.610667pt;}
.ya{bottom:529.673333pt;}
.ya3{bottom:529.689333pt;}
.ye2{bottom:530.009333pt;}
.y288{bottom:530.149333pt;}
.y201{bottom:531.604000pt;}
.y64{bottom:531.986667pt;}
.y1cf{bottom:532.793333pt;}
.y252{bottom:533.429333pt;}
.y157{bottom:535.202667pt;}
.y30{bottom:535.462667pt;}
.y2df{bottom:536.984000pt;}
.y287{bottom:542.768000pt;}
.y2a8{bottom:542.921333pt;}
.y222{bottom:545.153333pt;}
.y111{bottom:546.348000pt;}
.ye1{bottom:546.746667pt;}
.ya2{bottom:546.809333pt;}
.y1ce{bottom:547.405333pt;}
.y251{bottom:548.041333pt;}
.y200{bottom:548.341333pt;}
.y63{bottom:548.724000pt;}
.y7{bottom:549.558634pt;}
.y19d{bottom:550.612000pt;}
.y2de{bottom:552.325333pt;}
.y286{bottom:555.388000pt;}
.y221{bottom:561.890667pt;}
.y156{bottom:562.249333pt;}
.y110{bottom:563.085333pt;}
.ye0{bottom:563.484000pt;}
.ya1{bottom:563.849333pt;}
.y1ff{bottom:565.078667pt;}
.y62{bottom:565.461333pt;}
.y2a7{bottom:566.513333pt;}
.y2dd{bottom:567.668000pt;}
.y19c{bottom:567.708000pt;}
.y285{bottom:568.006667pt;}
.y1cb{bottom:568.418667pt;}
.y2f{bottom:568.697333pt;}
.y250{bottom:569.054667pt;}
.y94{bottom:576.236000pt;}
.y220{bottom:578.628000pt;}
.y155{bottom:579.345333pt;}
.y10f{bottom:579.822667pt;}
.ydf{bottom:580.221333pt;}
.y284{bottom:580.626667pt;}
.ya0{bottom:580.969333pt;}
.y1fe{bottom:581.816000pt;}
.y2a6{bottom:582.134667pt;}
.y61{bottom:582.198667pt;}
.y2dc{bottom:583.010667pt;}
.y1c9{bottom:583.030667pt;}
.y24f{bottom:583.666667pt;}
.y2e{bottom:585.993333pt;}
.y174{bottom:587.645333pt;}
.y93{bottom:592.973333pt;}
.y283{bottom:593.245333pt;}
.y21f{bottom:595.365333pt;}
.y1fd{bottom:595.828000pt;}
.y10e{bottom:596.560000pt;}
.yde{bottom:596.958667pt;}
.y1ca{bottom:597.642667pt;}
.y9f{bottom:598.089333pt;}
.y24e{bottom:598.278667pt;}
.y2db{bottom:598.353333pt;}
.y1fc{bottom:598.553333pt;}
.y60{bottom:598.934667pt;}
.y12e{bottom:599.282667pt;}
.y2d{bottom:603.288000pt;}
.y282{bottom:605.865333pt;}
.y92{bottom:609.710667pt;}
.y21e{bottom:612.102667pt;}
.y24d{bottom:612.890667pt;}
.y10d{bottom:613.297333pt;}
.ydd{bottom:613.696000pt;}
.y9e{bottom:615.129333pt;}
.y1fb{bottom:615.290667pt;}
.y5f{bottom:615.672000pt;}
.y281{bottom:618.484000pt;}
.y1c8{bottom:618.657333pt;}
.y2c{bottom:620.582667pt;}
.y91{bottom:626.448000pt;}
.y24c{bottom:627.502667pt;}
.y21d{bottom:628.840000pt;}
.y2da{bottom:629.038667pt;}
.y10c{bottom:630.034667pt;}
.ydc{bottom:630.433333pt;}
.y280{bottom:631.104000pt;}
.y1fa{bottom:632.028000pt;}
.y9d{bottom:632.249333pt;}
.y1c5{bottom:633.269333pt;}
.y5e{bottom:636.394667pt;}
.y2b{bottom:637.878667pt;}
.y1c4{bottom:640.574667pt;}
.y24b{bottom:642.114667pt;}
.y90{bottom:643.185333pt;}
.y27f{bottom:643.722667pt;}
.y2d9{bottom:644.381333pt;}
.y10b{bottom:646.772000pt;}
.ydb{bottom:647.170667pt;}
.y1c7{bottom:647.881333pt;}
.y1f9{bottom:648.764000pt;}
.y9c{bottom:649.289333pt;}
.y21c{bottom:649.561333pt;}
.y2a{bottom:655.173333pt;}
.y27e{bottom:656.342667pt;}
.y24a{bottom:656.725333pt;}
.y2d8{bottom:659.724000pt;}
.y8f{bottom:659.922667pt;}
.y1c6{bottom:662.492000pt;}
.y1f8{bottom:662.777333pt;}
.y10a{bottom:663.509333pt;}
.yda{bottom:663.908000pt;}
.y1f7{bottom:665.501333pt;}
.y5d{bottom:666.282667pt;}
.y9b{bottom:666.409333pt;}
.y21b{bottom:667.494667pt;}
.y27d{bottom:668.961333pt;}
.y249{bottom:671.337333pt;}
.y29{bottom:672.469333pt;}
.y2d7{bottom:675.066667pt;}
.y8e{bottom:676.660000pt;}
.y109{bottom:680.246667pt;}
.yd9{bottom:680.645333pt;}
.y27c{bottom:681.581333pt;}
.y1f6{bottom:682.238667pt;}
.y5c{bottom:683.020000pt;}
.y1c3{bottom:683.506667pt;}
.y248{bottom:685.949333pt;}
.y9a{bottom:687.556000pt;}
.y28{bottom:689.764000pt;}
.y2d6{bottom:690.408000pt;}
.y1c1{bottom:690.812000pt;}
.y8d{bottom:693.397333pt;}
.y27b{bottom:694.200000pt;}
.y108{bottom:696.984000pt;}
.yd8{bottom:697.382667pt;}
.y1c0{bottom:698.118667pt;}
.y1f5{bottom:698.976000pt;}
.y5b{bottom:699.757333pt;}
.y247{bottom:700.561333pt;}
.y2d5{bottom:705.750667pt;}
.y27a{bottom:706.820000pt;}
.y27{bottom:707.058667pt;}
.y8c{bottom:710.134667pt;}
.y1c2{bottom:712.730667pt;}
.y1f4{bottom:712.989333pt;}
.y107{bottom:713.721333pt;}
.yd7{bottom:714.120000pt;}
.y246{bottom:715.173333pt;}
.y1f3{bottom:715.713333pt;}
.y5a{bottom:716.494667pt;}
.y279{bottom:719.438667pt;}
.y99{bottom:720.596000pt;}
.y2d4{bottom:721.093333pt;}
.y26{bottom:724.354667pt;}
.y8b{bottom:726.872000pt;}
.y245{bottom:729.785333pt;}
.y106{bottom:730.458667pt;}
.yd6{bottom:730.857333pt;}
.y278{bottom:732.058667pt;}
.y1f2{bottom:732.450667pt;}
.y59{bottom:733.232000pt;}
.y1be{bottom:733.744000pt;}
.y2d3{bottom:736.436000pt;}
.y98{bottom:737.716000pt;}
.y1bd{bottom:741.050667pt;}
.y25{bottom:741.649333pt;}
.y8a{bottom:743.609333pt;}
.y244{bottom:744.397333pt;}
.y277{bottom:744.677333pt;}
.y1f1{bottom:746.464000pt;}
.y105{bottom:747.196000pt;}
.yd5{bottom:747.594667pt;}
.y1bf{bottom:748.356000pt;}
.y1f0{bottom:749.188000pt;}
.y58{bottom:749.969333pt;}
.y2d2{bottom:751.778667pt;}
.y276{bottom:757.297333pt;}
.y24{bottom:758.944000pt;}
.y243{bottom:759.009333pt;}
.y89{bottom:760.346667pt;}
.y104{bottom:763.933333pt;}
.yd4{bottom:764.332000pt;}
.y1ef{bottom:765.925333pt;}
.y57{bottom:766.706667pt;}
.y2d1{bottom:767.121333pt;}
.y1bb{bottom:769.370667pt;}
.y275{bottom:769.916000pt;}
.y242{bottom:773.621333pt;}
.y23{bottom:776.240000pt;}
.y1ba{bottom:776.676000pt;}
.y88{bottom:777.084000pt;}
.y21a{bottom:778.344000pt;}
.y103{bottom:780.670667pt;}
.yd3{bottom:781.069333pt;}
.y2d0{bottom:782.464000pt;}
.y274{bottom:782.536000pt;}
.y1ee{bottom:782.662667pt;}
.y56{bottom:783.444000pt;}
.y1bc{bottom:783.981333pt;}
.y97{bottom:786.196000pt;}
.y241{bottom:788.233333pt;}
.y22{bottom:793.534667pt;}
.y87{bottom:793.821333pt;}
.y96{bottom:794.916000pt;}
.y273{bottom:795.154667pt;}
.y1ed{bottom:796.676000pt;}
.y102{bottom:797.408000pt;}
.yd2{bottom:797.806667pt;}
.y1ec{bottom:799.400000pt;}
.y55{bottom:800.181333pt;}
.y240{bottom:802.844000pt;}
.y1b9{bottom:804.996000pt;}
.y272{bottom:807.774667pt;}
.y86{bottom:810.558667pt;}
.y21{bottom:810.830667pt;}
.y2cf{bottom:813.149333pt;}
.y1eb{bottom:813.413333pt;}
.y101{bottom:814.145333pt;}
.yd1{bottom:814.544000pt;}
.y1ea{bottom:816.137333pt;}
.y54{bottom:816.918667pt;}
.y23f{bottom:817.456000pt;}
.y271{bottom:820.393333pt;}
.y85{bottom:827.296000pt;}
.y2ce{bottom:828.490667pt;}
.y100{bottom:830.882667pt;}
.yd0{bottom:831.281333pt;}
.y1e9{bottom:832.874667pt;}
.y270{bottom:833.013333pt;}
.y1b8{bottom:833.102667pt;}
.y53{bottom:833.656000pt;}
.y23e{bottom:838.470667pt;}
.y2cd{bottom:843.833333pt;}
.y84{bottom:844.033333pt;}
.y20{bottom:845.128000pt;}
.y1e8{bottom:846.888000pt;}
.yff{bottom:847.620000pt;}
.ycf{bottom:848.018667pt;}
.y1e7{bottom:849.612000pt;}
.y52{bottom:850.393333pt;}
.y26f{bottom:852.034667pt;}
.y2cc{bottom:859.176000pt;}
.y83{bottom:860.770667pt;}
.yfe{bottom:864.357333pt;}
.yce{bottom:864.754667pt;}
.y23d{bottom:866.577333pt;}
.y51{bottom:867.130667pt;}
.y26e{bottom:871.056000pt;}
.y2cb{bottom:874.518667pt;}
.y82{bottom:877.508000pt;}
.y1e6{bottom:880.297333pt;}
.yfd{bottom:881.094667pt;}
.ycd{bottom:881.492000pt;}
.y50{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y2ca{bottom:889.861333pt;}
.y26d{bottom:890.077333pt;}
.y81{bottom:894.245333pt;}
.yfc{bottom:897.832000pt;}
.ycc{bottom:898.229333pt;}
.y4f{bottom:900.605333pt;}
.y2c9{bottom:905.204000pt;}
.y80{bottom:910.982667pt;}
.ycb{bottom:914.966667pt;}
.y26c{bottom:916.788000pt;}
.y4e{bottom:917.342667pt;}
.yfb{bottom:918.553333pt;}
.y2c8{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y7f{bottom:927.720000pt;}
.yca{bottom:931.704000pt;}
.y4d{bottom:934.080000pt;}
.y2c7{bottom:935.889333pt;}
.y7e{bottom:944.456000pt;}
.yc9{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4c{bottom:950.817333pt;}
.y2c6{bottom:951.230667pt;}
.y7d{bottom:961.193333pt;}
.yc8{bottom:965.178667pt;}
.y2c5{bottom:966.573333pt;}
.y4b{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y7c{bottom:981.916000pt;}
.y4a{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y49{bottom:1043.020000pt;}
.h19{height:-402.648000pt;}
.h17{height:-347.981333pt;}
.h18{height:-347.977333pt;}
.h16{height:-293.421333pt;}
.h14{height:-274.701333pt;}
.h22{height:14.948784pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h26{height:30.732706pt;}
.ha{height:32.284045pt;}
.h20{height:34.203441pt;}
.hc{height:34.574438pt;}
.hb{height:36.896250pt;}
.h21{height:37.087439pt;}
.h10{height:38.008906pt;}
.h6{height:38.415786pt;}
.h15{height:39.010156pt;}
.hd{height:41.508454pt;}
.h12{height:42.867188pt;}
.h28{height:43.101636pt;}
.h4{height:45.004385pt;}
.h2{height:45.272024pt;}
.h1d{height:45.610687pt;}
.he{height:46.120196pt;}
.h11{height:47.725469pt;}
.h24{height:49.638711pt;}
.h23{height:49.644045pt;}
.h1f{height:51.440625pt;}
.h1e{height:57.270562pt;}
.h3{height:61.782479pt;}
.h27{height:62.133583pt;}
.h5{height:69.148877pt;}
.h1b{height:70.729788pt;}
.h1a{height:70.735121pt;}
.h25{height:77.756045pt;}
.hf{height:253.964000pt;}
.h1c{height:289.571200pt;}
.h13{height:328.145333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:-23.754667pt;}
.w3{width:66.991004pt;}
.w7{width:171.872000pt;}
.w2{width:188.033730pt;}
.w8{width:206.892000pt;}
.w5{width:378.764000pt;}
.w4{width:517.526667pt;}
.w9{width:601.134400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x60{left:-174.981333pt;}
.x6c{left:-173.781333pt;}
.x71{left:-170.501333pt;}
.x66{left:-145.301333pt;}
.x85{left:-119.912000pt;}
.x63{left:-113.834667pt;}
.x1f{left:-88.145333pt;}
.x89{left:-85.928000pt;}
.x23{left:-59.825333pt;}
.x67{left:-11.194667pt;}
.x68{left:-7.754667pt;}
.x61{left:-1.114667pt;}
.x0{left:0.000000pt;}
.x69{left:4.400000pt;}
.x72{left:8.400000pt;}
.x6a{left:10.240000pt;}
.x6e{left:14.560000pt;}
.x3{left:26.021437pt;}
.x62{left:27.205333pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x64{left:53.285333pt;}
.xc2{left:55.970667pt;}
.x6d{left:58.085333pt;}
.xce{left:60.942667pt;}
.xd4{left:62.685333pt;}
.x70{left:64.000000pt;}
.x73{left:65.440000pt;}
.x90{left:67.261333pt;}
.xc8{left:69.449333pt;}
.xd7{left:70.914667pt;}
.xca{left:72.025333pt;}
.xd2{left:73.290667pt;}
.xcd{left:74.592000pt;}
.x24{left:76.346667pt;}
.xc7{left:77.992000pt;}
.xd0{left:80.984000pt;}
.xd1{left:83.088000pt;}
.xd5{left:84.276000pt;}
.x20{left:85.721333pt;}
.xcb{left:87.116000pt;}
.x87{left:88.728000pt;}
.xbe{left:90.304000pt;}
.xbd{left:93.508000pt;}
.x84{left:96.285333pt;}
.xd3{left:98.610667pt;}
.xc0{left:100.118667pt;}
.x6f{left:101.520000pt;}
.x97{left:104.113333pt;}
.xba{left:105.426667pt;}
.xa1{left:108.668000pt;}
.xa3{left:110.437333pt;}
.xbf{left:111.596000pt;}
.x21{left:114.041333pt;}
.xb8{left:115.672000pt;}
.xbb{left:119.670667pt;}
.xc4{left:120.648000pt;}
.x86{left:122.712000pt;}
.x25{left:127.206667pt;}
.xc1{left:128.562667pt;}
.x1e{left:138.088000pt;}
.x65{left:139.600000pt;}
.x6b{left:159.386667pt;}
.xd6{left:169.902667pt;}
.xc9{left:177.961333pt;}
.xc6{left:187.260000pt;}
.xb7{left:194.428000pt;}
.xc5{left:203.532000pt;}
.x4{left:223.020000pt;}
.x99{left:230.554667pt;}
.x7d{left:234.189333pt;}
.x81{left:236.746667pt;}
.xcf{left:240.273333pt;}
.xcc{left:242.930667pt;}
.x30{left:244.749333pt;}
.x6{left:251.365333pt;}
.xb2{left:253.769333pt;}
.x8a{left:255.472000pt;}
.x77{left:259.372000pt;}
.xa2{left:260.364000pt;}
.x98{left:261.990667pt;}
.x4b{left:269.292000pt;}
.x95{left:270.472000pt;}
.x74{left:273.885333pt;}
.x5{left:274.900000pt;}
.x4c{left:275.933333pt;}
.x76{left:287.585333pt;}
.x8e{left:291.860000pt;}
.x1a{left:296.329333pt;}
.x91{left:297.228000pt;}
.x9e{left:299.212000pt;}
.xb4{left:300.530667pt;}
.x9b{left:305.584000pt;}
.x4d{left:307.485333pt;}
.x1b{left:309.613333pt;}
.xa6{left:316.437333pt;}
.x4e{left:320.769333pt;}
.xe2{left:323.217333pt;}
.xda{left:325.861333pt;}
.xdb{left:332.504000pt;}
.x51{left:334.554667pt;}
.xdc{left:335.841333pt;}
.x28{left:338.929333pt;}
.xe3{left:339.885333pt;}
.x52{left:341.197333pt;}
.x7{left:344.669333pt;}
.x29{left:345.570667pt;}
.xb0{left:347.701333pt;}
.xdd{left:349.124000pt;}
.x8{left:351.310667pt;}
.x9a{left:353.173333pt;}
.xb1{left:354.533333pt;}
.xe4{left:356.389333pt;}
.xb{left:358.325333pt;}
.xc{left:364.966667pt;}
.xe5{left:369.672000pt;}
.xd{left:371.641333pt;}
.xa7{left:376.840000pt;}
.xe{left:378.282667pt;}
.x5e{left:387.406667pt;}
.x46{left:389.164000pt;}
.x1c{left:390.105333pt;}
.x78{left:391.642667pt;}
.x59{left:395.157333pt;}
.xb3{left:399.205333pt;}
.x5f{left:400.690667pt;}
.x47{left:402.446667pt;}
.x1d{left:403.389333pt;}
.x5a{left:405.198667pt;}
.x5b{left:418.482667pt;}
.x17{left:419.817333pt;}
.x15{left:432.437333pt;}
.x40{left:433.649333pt;}
.x36{left:440.578667pt;}
.x16{left:445.721333pt;}
.x41{left:446.933333pt;}
.x8b{left:448.324000pt;}
.x7e{left:450.682667pt;}
.x5c{left:452.282667pt;}
.x37{left:453.861333pt;}
.x38{left:457.249333pt;}
.x8c{left:461.608000pt;}
.x26{left:462.677333pt;}
.xbc{left:463.644000pt;}
.x5d{left:465.566667pt;}
.xb9{left:466.632000pt;}
.x44{left:467.581333pt;}
.xb5{left:468.909333pt;}
.x39{left:470.532000pt;}
.x93{left:473.337333pt;}
.x27{left:475.960000pt;}
.x8d{left:478.278667pt;}
.x9d{left:479.261333pt;}
.x45{left:480.865333pt;}
.x9f{left:483.105333pt;}
.x8f{left:486.136000pt;}
.x92{left:487.840000pt;}
.x9c{left:489.220000pt;}
.x3a{left:491.822667pt;}
.x75{left:494.508000pt;}
.x58{left:495.896000pt;}
.x42{left:501.794667pt;}
.xa0{left:504.140000pt;}
.x3b{left:505.106667pt;}
.x3c{left:508.464000pt;}
.x43{left:515.078667pt;}
.x34{left:521.526667pt;}
.x22{left:525.774667pt;}
.xdf{left:529.982667pt;}
.x94{left:531.977333pt;}
.x53{left:533.220000pt;}
.x35{left:534.810667pt;}
.xe0{left:536.624000pt;}
.x54{left:539.862667pt;}
.xc3{left:547.088000pt;}
.xe1{left:553.162667pt;}
.x7f{left:560.448000pt;}
.x82{left:563.066667pt;}
.x7c{left:564.656000pt;}
.x7b{left:566.712000pt;}
.x83{left:570.269333pt;}
.xb6{left:572.834667pt;}
.x96{left:574.549333pt;}
.x7a{left:578.393333pt;}
.x79{left:580.197333pt;}
.x13{left:581.100000pt;}
.xf{left:585.636000pt;}
.x10{left:592.278667pt;}
.x14{left:594.382667pt;}
.xaa{left:599.000000pt;}
.x80{left:603.946667pt;}
.xab{left:605.832000pt;}
.x88{left:613.816000pt;}
.xad{left:615.526667pt;}
.x48{left:622.056000pt;}
.x32{left:625.864000pt;}
.xa4{left:626.932000pt;}
.xac{left:633.642667pt;}
.x49{left:635.338667pt;}
.x55{left:636.492000pt;}
.x33{left:639.148000pt;}
.xa5{left:640.216000pt;}
.x4f{left:641.274667pt;}
.x18{left:642.502667pt;}
.x56{left:646.388000pt;}
.x4a{left:651.877333pt;}
.x50{left:654.557333pt;}
.x19{left:655.785333pt;}
.xae{left:657.826667pt;}
.x57{left:659.672000pt;}
.x31{left:661.696000pt;}
.xaf{left:665.278667pt;}
.x3d{left:670.618667pt;}
.xe6{left:679.732000pt;}
.x3e{left:683.902667pt;}
.x3f{left:687.289333pt;}
.xd8{left:690.185333pt;}
.x9{left:695.902667pt;}
.xde{left:696.880000pt;}
.x2a{left:700.244000pt;}
.xa{left:702.544000pt;}
.x2b{left:706.885333pt;}
.x2c{left:710.249333pt;}
.xd9{left:719.696000pt;}
.x2d{left:723.533333pt;}
.xe7{left:725.645333pt;}
.x2e{left:726.897333pt;}
.x11{left:734.697333pt;}
.xa8{left:737.177333pt;}
.x2f{left:740.180000pt;}
.x12{left:741.338667pt;}
.xa9{left:744.010667pt;}
}


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