
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_a58f7836026f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_1ae56354975e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_79dcdc6f476d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_03616ff19676.woff")format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_477f53ebdd5d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_2bade847ad12.woff")format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_b70353d8e775.woff")format("woff");}.ff7{font-family:ff7;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_655ba6217b30.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_c58f896a1e13.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_b4fbbabd665e.woff")format("woff");}.ffa{font-family:ffa;line-height:1.800000;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_412d333c69f1.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_87bf1e1e3c32.woff")format("woff");}.ffc{font-family:ffc;line-height:0.740000;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_f5a6bdd2dbd6.woff")format("woff");}.ffd{font-family:ffd;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_25fbc89786b4.woff")format("woff");}.ffe{font-family:ffe;line-height:1.012695;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_92e241515197.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_f99072f5976f.woff")format("woff");}.ff10{font-family:ff10;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_baca5bc56f31.woff")format("woff");}.ff11{font-family:ff11;line-height:1.012695;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_b450fefa134a.woff")format("woff");}.ff12{font-family:ff12;line-height:0.870000;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_b59eef38d634.woff")format("woff");}.ff13{font-family:ff13;line-height:0.061000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m7{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);}
.m26{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m25{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m6{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);}
.md{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);}
.m12{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);}
.m14{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);}
.m15{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);}
.m24{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);}
.m27{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);}
.m8{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);}
.m29{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);}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1c{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);}
.m19{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);}
.m17{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);}
.mf{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);}
.m10{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);}
.m20{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);}
.ma{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);}
.m21{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);}
.m28{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);}
.m22{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);}
.me{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);}
.m1d{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);}
.m5{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);}
.m13{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);}
.m16{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);}
.m1b{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);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v4{vertical-align:-36.192000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.274000px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.v5{vertical-align:73.050000px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000435px;}
.ls37{letter-spacing:0.000800px;}
.ls35{letter-spacing:0.000901px;}
.lsc{letter-spacing:0.003389px;}
.ls1b{letter-spacing:0.004090px;}
.ls31{letter-spacing:0.004800px;}
.ls1e{letter-spacing:0.026640px;}
.ls1d{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.080400px;}
.ls1c{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.642088px;}
.ls2b{letter-spacing:0.675725px;}
.ls12{letter-spacing:0.676741px;}
.lsb{letter-spacing:0.746400px;}
.ls16{letter-spacing:0.748200px;}
.ls7{letter-spacing:1.275394px;}
.ls11{letter-spacing:1.420741px;}
.lse{letter-spacing:1.497986px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.998354px;}
.ls10{letter-spacing:3.342583px;}
.lsf{letter-spacing:3.514741px;}
.lsd{letter-spacing:3.733200px;}
.ls1{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls32{letter-spacing:12.166727px;}
.ls14{letter-spacing:12.339483px;}
.ls15{letter-spacing:13.117331px;}
.ls33{letter-spacing:13.303412px;}
.ls2e{letter-spacing:13.448400px;}
.ls2d{letter-spacing:13.454400px;}
.ls34{letter-spacing:13.504991px;}
.ls2f{letter-spacing:13.556473px;}
.ls36{letter-spacing:13.579812px;}
.ls13{letter-spacing:13.713292px;}
.ls24{letter-spacing:14.904037px;}
.ls28{letter-spacing:14.911801px;}
.ls21{letter-spacing:14.943900px;}
.ls29{letter-spacing:14.968487px;}
.ls19{letter-spacing:15.188497px;}
.ls22{letter-spacing:15.252730px;}
.ls30{letter-spacing:15.532753px;}
.ls38{letter-spacing:15.556282px;}
.ls2a{letter-spacing:15.706318px;}
.ls18{letter-spacing:16.765649px;}
.ls9{letter-spacing:17.352017px;}
.ls27{letter-spacing:17.929847px;}
.lsa{letter-spacing:18.069483px;}
.ls23{letter-spacing:18.649987px;}
.ls1f{letter-spacing:19.912200px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls25{letter-spacing:216.568090px;}
.ls2c{letter-spacing:224.736600px;}
.ls17{letter-spacing:696.376741px;}
.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;}
}
.ws89{word-spacing:-15.210000px;}
.ws88{word-spacing:-15.110400px;}
.ws8a{word-spacing:-15.056640px;}
.ws42{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.355754px;}
.ws6f{word-spacing:-13.449600px;}
.ws87{word-spacing:-12.150000px;}
.ws86{word-spacing:-11.970000px;}
.ws2a{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws78{word-spacing:-4.233600px;}
.wsaf{word-spacing:-3.108331px;}
.ws55{word-spacing:-3.048556px;}
.wsc9{word-spacing:-2.958912px;}
.ws52{word-spacing:-2.450800px;}
.wsad{word-spacing:-2.391024px;}
.ws7e{word-spacing:-2.151922px;}
.ws53{word-spacing:-1.972595px;}
.ws5d{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.wse2{word-spacing:-1.882944px;}
.ws98{word-spacing:-1.733492px;}
.wsb6{word-spacing:-1.721549px;}
.ws35{word-spacing:-1.673717px;}
.wsb9{word-spacing:-1.667750px;}
.ws57{word-spacing:-1.613941px;}
.wsd1{word-spacing:-1.506355px;}
.ws38{word-spacing:-1.494390px;}
.wsb7{word-spacing:-1.452557px;}
.ws5c{word-spacing:-1.434614px;}
.ws0{word-spacing:-1.322630px;}
.ws80{word-spacing:-1.315063px;}
.wscf{word-spacing:-1.291162px;}
.ws81{word-spacing:-1.183565px;}
.ws7{word-spacing:-1.171598px;}
.ws59{word-spacing:-1.135736px;}
.wsde{word-spacing:-1.075968px;}
.ws9{word-spacing:-1.046070px;}
.ws62{word-spacing:-0.956410px;}
.ws6e{word-spacing:-0.914573px;}
.wsc4{word-spacing:-0.860774px;}
.wsac{word-spacing:-0.836858px;}
.ws19{word-spacing:-0.806976px;}
.wsc0{word-spacing:-0.753178px;}
.ws4b{word-spacing:-0.717307px;}
.ws45{word-spacing:-0.657532px;}
.wsaa{word-spacing:-0.597756px;}
.ws40{word-spacing:-0.537980px;}
.ws44{word-spacing:-0.478205px;}
.ws36{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.358654px;}
.wsdc{word-spacing:-0.322790px;}
.ws25{word-spacing:-0.298878px;}
.wsd2{word-spacing:-0.268992px;}
.ws4a{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.wsb5{word-spacing:-0.107597px;}
.ws3b{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.wsda{word-spacing:-0.029107px;}
.wsd7{word-spacing:-0.007949px;}
.wsc6{word-spacing:-0.006202px;}
.wse1{word-spacing:-0.005971px;}
.wscc{word-spacing:-0.005030px;}
.ws29{word-spacing:-0.003082px;}
.ws5{word-spacing:-0.002861px;}
.wsce{word-spacing:-0.002035px;}
.wsc3{word-spacing:-0.001066px;}
.wsd0{word-spacing:-0.000163px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.wsbe{word-spacing:0.107597px;}
.ws39{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.ws1d{word-spacing:0.215194px;}
.ws79{word-spacing:0.230282px;}
.ws27{word-spacing:0.239102px;}
.wsb4{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.ws18{word-spacing:0.322790px;}
.ws3f{word-spacing:0.358654px;}
.ws6a{word-spacing:0.418429px;}
.ws14{word-spacing:0.591782px;}
.ws31{word-spacing:0.597756px;}
.wsc8{word-spacing:0.645581px;}
.ws30{word-spacing:0.657532px;}
.ws9e{word-spacing:0.717307px;}
.ws61{word-spacing:0.777083px;}
.wscd{word-spacing:0.806976px;}
.ws47{word-spacing:0.836858px;}
.ws54{word-spacing:0.896634px;}
.wsd6{word-spacing:0.914573px;}
.ws8{word-spacing:1.004227px;}
.ws4c{word-spacing:1.075961px;}
.ws1c{word-spacing:1.183565px;}
.ws51{word-spacing:1.255288px;}
.ws58{word-spacing:1.315063px;}
.ws8c{word-spacing:1.344960px;}
.ws9a{word-spacing:1.434614px;}
.ws94{word-spacing:1.452557px;}
.wsa5{word-spacing:1.494390px;}
.ws43{word-spacing:1.554166px;}
.ws8b{word-spacing:1.613952px;}
.ws65{word-spacing:1.733492px;}
.wsb1{word-spacing:1.775347px;}
.ws5e{word-spacing:1.793268px;}
.ws37{word-spacing:1.853044px;}
.ws5f{word-spacing:1.912819px;}
.wsb2{word-spacing:1.936742px;}
.ws2d{word-spacing:1.972595px;}
.ws2e{word-spacing:2.032370px;}
.ws90{word-spacing:2.092146px;}
.wsb8{word-spacing:2.098138px;}
.wsb0{word-spacing:2.151922px;}
.ws3e{word-spacing:2.211697px;}
.ws67{word-spacing:2.331248px;}
.ws1e{word-spacing:2.367130px;}
.ws77{word-spacing:2.391024px;}
.ws49{word-spacing:2.450800px;}
.ws4{word-spacing:2.509288px;}
.ws76{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws34{word-spacing:2.630126px;}
.ws41{word-spacing:2.689902px;}
.ws4f{word-spacing:2.749678px;}
.ws16{word-spacing:2.797517px;}
.ws26{word-spacing:2.809453px;}
.wsdd{word-spacing:2.851315px;}
.ws13{word-spacing:2.869236px;}
.ws99{word-spacing:2.988780px;}
.ws4e{word-spacing:3.048556px;}
.wsd8{word-spacing:3.066509px;}
.ws46{word-spacing:3.108331px;}
.ws68{word-spacing:3.168107px;}
.wsc1{word-spacing:3.174106px;}
.wsd5{word-spacing:3.218246px;}
.wsc2{word-spacing:3.218352px;}
.wsbc{word-spacing:3.218707px;}
.wsbb{word-spacing:3.220176px;}
.wsc7{word-spacing:3.220675px;}
.wscb{word-spacing:3.220858px;}
.wsca{word-spacing:3.221453px;}
.wsd9{word-spacing:3.223834px;}
.wsdb{word-spacing:3.223987px;}
.wsba{word-spacing:3.224342px;}
.wse0{word-spacing:3.225216px;}
.ws2b{word-spacing:3.227882px;}
.wsbd{word-spacing:3.227904px;}
.ws69{word-spacing:3.347434px;}
.wsbf{word-spacing:3.389299px;}
.wsa4{word-spacing:3.407209px;}
.ws93{word-spacing:3.466985px;}
.wsd4{word-spacing:3.496896px;}
.wsa3{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws9c{word-spacing:3.646312px;}
.ws8e{word-spacing:3.706087px;}
.ws7c{word-spacing:3.765863px;}
.wsdf{word-spacing:3.765888px;}
.ws6c{word-spacing:3.825638px;}
.ws7a{word-spacing:3.885414px;}
.ws7f{word-spacing:3.895737px;}
.ws7b{word-spacing:3.945190px;}
.wsd3{word-spacing:4.142477px;}
.ws33{word-spacing:4.184292px;}
.wsb3{word-spacing:4.196275px;}
.ws5b{word-spacing:4.244068px;}
.ws92{word-spacing:4.363619px;}
.ws3a{word-spacing:4.483170px;}
.ws8f{word-spacing:4.662497px;}
.wsf{word-spacing:4.770079px;}
.ws8d{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.ws6b{word-spacing:4.901599px;}
.ws66{word-spacing:4.961375px;}
.ws3c{word-spacing:5.021150px;}
.ws56{word-spacing:5.080926px;}
.ws63{word-spacing:5.140702px;}
.ws17{word-spacing:5.164646px;}
.wsa9{word-spacing:5.260253px;}
.wsab{word-spacing:5.320028px;}
.wse3{word-spacing:5.326042px;}
.ws4d{word-spacing:5.439580px;}
.ws7d{word-spacing:5.798233px;}
.ws9d{word-spacing:5.858009px;}
.ws60{word-spacing:6.156887px;}
.wsae{word-spacing:6.276438px;}
.wsa6{word-spacing:6.336214px;}
.wsa8{word-spacing:6.395989px;}
.ws5a{word-spacing:6.455765px;}
.ws2f{word-spacing:6.515540px;}
.ws64{word-spacing:6.694867px;}
.ws91{word-spacing:6.814418px;}
.ws23{word-spacing:7.113296px;}
.ws48{word-spacing:7.352399px;}
.ws9b{word-spacing:7.651277px;}
.wsd{word-spacing:7.782761px;}
.wsa7{word-spacing:7.890379px;}
.wsc5{word-spacing:8.553946px;}
.wsb{word-spacing:12.176255px;}
.ws50{word-spacing:13.090856px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws96{word-spacing:115.020979px;}
.ws97{word-spacing:115.881754px;}
.ws95{word-spacing:124.650893px;}
.ws71{word-spacing:128.309184px;}
.ws82{word-spacing:138.261888px;}
.ws85{word-spacing:154.562803px;}
.ws83{word-spacing:154.616602px;}
.ws84{word-spacing:168.066202px;}
.ws6d{word-spacing:213.577267px;}
.ws70{word-spacing:257.317747px;}
.ws73{word-spacing:260.545651px;}
.ws72{word-spacing:273.995251px;}
.ws74{word-spacing:287.444851px;}
.ws75{word-spacing:300.894451px;}
.wsa0{word-spacing:415.431245px;}
.ws9f{word-spacing:441.362074px;}
.wsa1{word-spacing:485.638157px;}
.wsa2{word-spacing:501.939072px;}
._9b{margin-left:-23.994086px;}
._9c{margin-left:-20.216221px;}
._7{margin-left:-11.943245px;}
._17{margin-left:-7.539293px;}
._a{margin-left:-5.941730px;}
._e{margin-left:-4.895654px;}
._2{margin-left:-3.765852px;}
._9d{margin-left:-2.666129px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._8{width:3.699329px;}
._77{width:4.909051px;}
._9a{width:6.133018px;}
._5{width:11.398711px;}
._3{width:12.971268px;}
._1c{width:14.334085px;}
._f{width:15.493939px;}
._d{width:17.215488px;}
._11{width:18.538003px;}
._12{width:19.785724px;}
._10{width:21.048578px;}
._1a{width:22.714728px;}
._1d{width:24.164477px;}
._b{width:25.446643px;}
._16{width:26.779469px;}
._18{width:28.871615px;}
._6{width:30.587087px;}
._c{width:32.494234px;}
._1b{width:34.191643px;}
._19{width:36.202836px;}
._15{width:38.742156px;}
._9{width:54.381844px;}
._99{width:61.868160px;}
._98{width:88.767360px;}
._7b{width:109.449851px;}
._8b{width:114.913382px;}
._79{width:117.250619px;}
._7a{width:128.458195px;}
._91{width:130.172149px;}
._8d{width:133.204838px;}
._88{width:139.445453px;}
._8c{width:141.328397px;}
._84{width:151.819085px;}
._8f{width:154.736582px;}
._89{width:166.226458px;}
._83{width:167.582016px;}
._82{width:168.926976px;}
._1f{width:191.815202px;}
._72{width:195.072998px;}
._27{width:199.753459px;}
._5e{width:201.452678px;}
._7d{width:204.541517px;}
._5c{width:205.587592px;}
._74{width:208.522598px;}
._8e{width:212.449882px;}
._7f{width:221.649408px;}
._90{width:222.671578px;}
._70{width:227.997619px;}
._2c{width:233.162266px;}
._76{width:234.184435px;}
._8a{width:243.975744px;}
._4e{width:247.549221px;}
._62{width:251.184730px;}
._37{width:273.995251px;}
._34{width:280.020672px;}
._20{width:284.216947px;}
._3a{width:287.444851px;}
._2d{width:294.169651px;}
._3b{width:295.891200px;}
._45{width:300.894451px;}
._28{width:304.391347px;}
._78{width:306.298197px;}
._68{width:310.578163px;}
._5a{width:313.859866px;}
._46{width:314.881999px;}
._4c{width:318.325133px;}
._58{width:320.638464px;}
._6e{width:322.975701px;}
._5b{width:331.828531px;}
._59{width:333.388685px;}
._55{width:335.379226px;}
._60{width:337.315968px;}
._50{width:342.588211px;}
._21{width:347.591462px;}
._54{width:348.721229px;}
._56{width:351.195955px;}
._92{width:354.504077px;}
._36{width:361.148659px;}
._29{width:367.765862px;}
._3e{width:370.348186px;}
._35{width:375.674227px;}
._3d{width:376.774101px;}
._2e{width:381.215462px;}
._7c{width:383.152205px;}
._3c{width:384.712358px;}
._39{width:393.535296px;}
._4d{width:396.655603px;}
._85{width:397.970102px;}
._32{width:403.135317px;}
._2a{width:405.639936px;}
._64{width:407.038694px;}
._6b{width:409.320998px;}
._24{width:419.089536px;}
._23{width:425.868134px;}
._2b{width:427.266893px;}
._49{width:430.118208px;}
._22{width:432.539136px;}
._31{width:435.444250px;}
._30{width:439.317734px;}
._25{width:440.716493px;}
._4a{width:444.159590px;}
._41{width:445.719744px;}
._4f{width:448.517261px;}
._87{width:453.275426px;}
._48{width:456.210432px;}
._44{width:458.093376px;}
._2f{width:459.438336px;}
._26{width:462.343450px;}
._40{width:464.764378px;}
._94{width:468.315072px;}
._42{width:470.736000px;}
._53{width:476.115840px;}
._3f{width:477.460800px;}
._52{width:495.214272px;}
._66{width:498.304687px;}
._69{width:500.002330px;}
._96{width:501.885274px;}
._81{width:505.973952px;}
._33{width:513.936115px;}
._65{width:515.789167px;}
._97{width:528.784474px;}
._6c{width:537.069427px;}
._95{width:545.117328px;}
._6d{width:550.519027px;}
._80{width:581.130317px;}
._7e{width:621.371520px;}
._13{width:746.987381px;}
._71{width:981.820800px;}
._6a{width:993.359222px;}
._73{width:995.270400px;}
._75{width:1020.932237px;}
._67{width:1070.426765px;}
._4b{width:1079.787686px;}
._57{width:1093.882867px;}
._38{width:1147.573670px;}
._61{width:1157.311181px;}
._63{width:1180.713485px;}
._5f{width:1209.441830px;}
._5d{width:1223.698406px;}
._43{width:1231.768166px;}
._47{width:1242.904435px;}
._51{width:1281.424126px;}
._6f{width:1310.260032px;}
._86{width:2022.697430px;}
._93{width:2410.328700px;}
._14{width:2434.238700px;}
._1e{width:3912.218700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(61,100,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fse{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y169{bottom:-129.810000px;}
.y17e{bottom:-38.370000px;}
.y17d{bottom:-21.000000px;}
.y0{bottom:0.000000px;}
.y17c{bottom:1.410000px;}
.y3{bottom:3.425340px;}
.y16f{bottom:4.500000px;}
.y2{bottom:14.151273px;}
.y17b{bottom:14.580000px;}
.y1f{bottom:18.594411px;}
.y17a{bottom:24.750000px;}
.y4e{bottom:31.890000px;}
.y9c{bottom:88.812000px;}
.y1b8{bottom:100.806000px;}
.y4d{bottom:103.621500px;}
.y184{bottom:103.915500px;}
.y1d{bottom:104.646000px;}
.y1e0{bottom:104.833500px;}
.y21f{bottom:106.954500px;}
.y84{bottom:107.193000px;}
.y28d{bottom:107.491500px;}
.y9b{bottom:107.641500px;}
.y1fc{bottom:110.629500px;}
.y1b7{bottom:119.635500px;}
.yd0{bottom:121.987500px;}
.y4c{bottom:122.449500px;}
.y1c{bottom:122.535000px;}
.y183{bottom:122.745000px;}
.y1df{bottom:123.663000px;}
.y21e{bottom:124.528500px;}
.y28c{bottom:124.752000px;}
.y83{bottom:126.022500px;}
.y256{bottom:126.276000px;}
.y9a{bottom:126.471000px;}
.y1fb{bottom:129.459000px;}
.y1b6{bottom:138.465000px;}
.y1b{bottom:140.422500px;}
.ycf{bottom:140.817000px;}
.y4b{bottom:141.279000px;}
.y182{bottom:141.574500px;}
.y28b{bottom:142.012500px;}
.y1de{bottom:142.492500px;}
.y255{bottom:143.536500px;}
.y82{bottom:144.852000px;}
.y99{bottom:145.300500px;}
.y1fa{bottom:148.288500px;}
.y21d{bottom:151.068000px;}
.y126{bottom:152.367000px;}
.y1b5{bottom:157.294500px;}
.y1a{bottom:158.310000px;}
.yfb{bottom:159.271500px;}
.y28a{bottom:159.273000px;}
.yce{bottom:159.646500px;}
.y4a{bottom:160.108500px;}
.y181{bottom:160.404000px;}
.y254{bottom:160.797000px;}
.y1dd{bottom:161.322000px;}
.y81{bottom:163.681500px;}
.y98{bottom:164.130000px;}
.yf9{bottom:166.663500px;}
.y1f9{bottom:167.118000px;}
.y21c{bottom:168.643500px;}
.y157{bottom:171.606000px;}
.y121{bottom:172.705500px;}
.y125{bottom:174.199500px;}
.yfa{bottom:175.710000px;}
.y1b4{bottom:176.124000px;}
.y19{bottom:176.199000px;}
.y289{bottom:176.533500px;}
.y253{bottom:178.057500px;}
.ycd{bottom:178.476000px;}
.y49{bottom:178.938000px;}
.y1dc{bottom:180.151500px;}
.y80{bottom:182.511000px;}
.y97{bottom:182.959500px;}
.y1f8{bottom:185.947500px;}
.y21b{bottom:186.217500px;}
.y120{bottom:189.144000px;}
.y156{bottom:190.435500px;}
.y124{bottom:190.638000px;}
.y122{bottom:191.031000px;}
.yf5{bottom:191.356500px;}
.yf8{bottom:192.148500px;}
.y288{bottom:193.794000px;}
.y180{bottom:193.969500px;}
.y18{bottom:194.086500px;}
.y1b3{bottom:194.953500px;}
.y252{bottom:195.318000px;}
.ycc{bottom:197.305500px;}
.y48{bottom:197.767500px;}
.y1db{bottom:198.981000px;}
.y7f{bottom:201.340500px;}
.y96{bottom:201.789000px;}
.y11d{bottom:204.640500px;}
.y1f7{bottom:204.777000px;}
.y11f{bottom:205.582500px;}
.y123{bottom:207.076500px;}
.y155{bottom:209.265000px;}
.y287{bottom:211.053000px;}
.y17{bottom:211.974000px;}
.y251{bottom:212.578500px;}
.y21a{bottom:212.757000px;}
.y17f{bottom:213.202500px;}
.y1b2{bottom:213.783000px;}
.yf7{bottom:215.788500px;}
.ycb{bottom:216.135000px;}
.y47{bottom:216.597000px;}
.y1da{bottom:217.810500px;}
.y7e{bottom:220.170000px;}
.y95{bottom:220.618500px;}
.y1f6{bottom:223.606500px;}
.y154{bottom:228.094500px;}
.y286{bottom:228.313500px;}
.y250{bottom:229.839000px;}
.y16{bottom:229.863000px;}
.y219{bottom:230.331000px;}
.y11e{bottom:230.716500px;}
.yf6{bottom:232.227000px;}
.y1b1{bottom:232.612500px;}
.yca{bottom:234.964500px;}
.y46{bottom:235.426500px;}
.y166{bottom:235.632000px;}
.y1d9{bottom:236.640000px;}
.y7d{bottom:238.999500px;}
.y94{bottom:239.446500px;}
.y1f5{bottom:242.436000px;}
.y285{bottom:245.574000px;}
.y153{bottom:246.924000px;}
.y24f{bottom:247.099500px;}
.y218{bottom:247.905000px;}
.y1b0{bottom:251.442000px;}
.yc9{bottom:253.794000px;}
.y45{bottom:254.256000px;}
.y1d8{bottom:255.469500px;}
.yf4{bottom:255.868500px;}
.y7c{bottom:257.829000px;}
.y93{bottom:258.276000px;}
.y1f4{bottom:261.265500px;}
.y284{bottom:262.834500px;}
.y24e{bottom:264.358500px;}
.y217{bottom:265.480500px;}
.y152{bottom:265.753500px;}
.y1af{bottom:270.271500px;}
.yf3{bottom:272.307000px;}
.yf0{bottom:272.532000px;}
.yc8{bottom:272.623500px;}
.y44{bottom:273.085500px;}
.y1d7{bottom:274.299000px;}
.y7b{bottom:276.658500px;}
.y92{bottom:277.105500px;}
.y1f3{bottom:280.095000px;}
.y24d{bottom:281.619000px;}
.y216{bottom:283.054500px;}
.y151{bottom:284.583000px;}
.y11a{bottom:285.741000px;}
.yf2{bottom:288.745500px;}
.y1ae{bottom:289.101000px;}
.yc7{bottom:291.453000px;}
.y43{bottom:291.915000px;}
.y1d6{bottom:293.128500px;}
.y7a{bottom:295.488000px;}
.y91{bottom:295.935000px;}
.y283{bottom:297.355500px;}
.y24c{bottom:298.879500px;}
.y1f2{bottom:298.924500px;}
.y15{bottom:300.154500px;}
.y215{bottom:300.628500px;}
.y116{bottom:301.237500px;}
.y119{bottom:302.179500px;}
.yed{bottom:302.748000px;}
.y150{bottom:303.412500px;}
.y11c{bottom:303.673500px;}
.yf1{bottom:305.182500px;}
.y1ad{bottom:307.930500px;}
.yc6{bottom:310.282500px;}
.y1d5{bottom:311.958000px;}
.y79{bottom:314.317500px;}
.y282{bottom:314.616000px;}
.y90{bottom:314.764500px;}
.y42{bottom:315.228000px;}
.y24b{bottom:316.140000px;}
.y1f1{bottom:317.754000px;}
.y14{bottom:318.043500px;}
.y11b{bottom:320.110500px;}
.yef{bottom:321.621000px;}
.y14f{bottom:322.242000px;}
.y1ac{bottom:326.760000px;}
.yc5{bottom:329.112000px;}
.y1d4{bottom:330.787500px;}
.y281{bottom:331.876500px;}
.y78{bottom:333.145500px;}
.y24a{bottom:333.400500px;}
.y8f{bottom:333.594000px;}
.y13{bottom:335.931000px;}
.y214{bottom:336.135000px;}
.y118{bottom:336.549000px;}
.y1f0{bottom:336.583500px;}
.y14e{bottom:341.071500px;}
.yee{bottom:345.262500px;}
.y1ab{bottom:345.589500px;}
.yc4{bottom:347.940000px;}
.y280{bottom:349.135500px;}
.y1d3{bottom:349.617000px;}
.y249{bottom:350.661000px;}
.y77{bottom:351.975000px;}
.y8e{bottom:352.423500px;}
.y12{bottom:353.818500px;}
.y213{bottom:354.964500px;}
.y1ef{bottom:355.413000px;}
.y14d{bottom:359.901000px;}
.y117{bottom:360.190500px;}
.y1aa{bottom:364.419000px;}
.y27f{bottom:366.396000px;}
.yc3{bottom:366.769500px;}
.yeb{bottom:367.483500px;}
.y248{bottom:367.921500px;}
.y1d2{bottom:368.446500px;}
.yec{bottom:368.902500px;}
.y76{bottom:370.804500px;}
.y8d{bottom:371.253000px;}
.y212{bottom:373.794000px;}
.y1ee{bottom:374.242500px;}
.y14c{bottom:378.730500px;}
.y11{bottom:380.673000px;}
.y1a9{bottom:383.248500px;}
.y27e{bottom:383.656500px;}
.y115{bottom:383.830500px;}
.y247{bottom:385.182000px;}
.yea{bottom:385.341000px;}
.yc2{bottom:385.599000px;}
.y1d1{bottom:387.276000px;}
.y75{bottom:389.634000px;}
.y8c{bottom:390.082500px;}
.y41{bottom:390.378000px;}
.y211{bottom:392.623500px;}
.y1ed{bottom:393.072000px;}
.y14b{bottom:397.560000px;}
.y10{bottom:398.562000px;}
.ye6{bottom:399.934500px;}
.y114{bottom:400.269000px;}
.y27d{bottom:400.917000px;}
.y246{bottom:402.441000px;}
.yc1{bottom:404.428500px;}
.y1d0{bottom:406.105500px;}
.y74{bottom:408.463500px;}
.y113{bottom:408.489000px;}
.y8b{bottom:408.912000px;}
.ye9{bottom:408.982500px;}
.y210{bottom:411.453000px;}
.y1ec{bottom:411.901500px;}
.y111{bottom:415.288500px;}
.ye5{bottom:416.373000px;}
.yf{bottom:416.449500px;}
.y27c{bottom:418.177500px;}
.y245{bottom:419.701500px;}
.y14a{bottom:420.873000px;}
.yc0{bottom:423.258000px;}
.y1cf{bottom:424.935000px;}
.ye8{bottom:425.421000px;}
.y73{bottom:427.293000px;}
.y8a{bottom:427.741500px;}
.y40{bottom:427.767000px;}
.y1a8{bottom:428.710500px;}
.y20f{bottom:430.282500px;}
.y1eb{bottom:430.731000px;}
.y112{bottom:433.146000px;}
.y27b{bottom:435.438000px;}
.y244{bottom:436.962000px;}
.ye7{bottom:441.859500px;}
.ybf{bottom:442.087500px;}
.y1ce{bottom:443.764500px;}
.ye{bottom:444.798000px;}
.y1a7{bottom:445.149000px;}
.y72{bottom:446.122500px;}
.y89{bottom:446.571000px;}
.y3f{bottom:447.225000px;}
.y20e{bottom:449.112000px;}
.y1ea{bottom:449.560500px;}
.y27a{bottom:452.698500px;}
.y243{bottom:454.222500px;}
.y149{bottom:454.497000px;}
.y110{bottom:456.786000px;}
.ye2{bottom:457.657500px;}
.ybe{bottom:460.917000px;}
.y1a6{bottom:461.587500px;}
.y1cd{bottom:462.594000px;}
.yd{bottom:462.685500px;}
.y71{bottom:464.952000px;}
.y88{bottom:465.400500px;}
.ye4{bottom:465.499500px;}
.y3e{bottom:466.681500px;}
.y20d{bottom:467.941500px;}
.y1e9{bottom:468.390000px;}
.y279{bottom:469.959000px;}
.y242{bottom:471.483000px;}
.y10f{bottom:473.224500px;}
.y148{bottom:473.326500px;}
.y1a5{bottom:478.026000px;}
.ybd{bottom:479.746500px;}
.ye0{bottom:480.519000px;}
.yc{bottom:480.574500px;}
.y1cc{bottom:481.423500px;}
.ye3{bottom:481.938000px;}
.y70{bottom:483.781500px;}
.y87{bottom:484.230000px;}
.y3d{bottom:486.139500px;}
.y20c{bottom:486.771000px;}
.y1e8{bottom:487.219500px;}
.y241{bottom:488.743500px;}
.y10e{bottom:489.663000px;}
.y10b{bottom:489.888000px;}
.y147{bottom:492.156000px;}
.y1a4{bottom:494.464500px;}
.ye1{bottom:498.376500px;}
.ybc{bottom:498.576000px;}
.y1cb{bottom:500.253000px;}
.y86{bottom:503.059500px;}
.y278{bottom:504.478500px;}
.y3c{bottom:505.596000px;}
.y20b{bottom:505.600500px;}
.y240{bottom:506.004000px;}
.y1e7{bottom:506.049000px;}
.y10d{bottom:506.101500px;}
.y6f{bottom:507.094500px;}
.yb{bottom:507.429000px;}
.y1a3{bottom:510.901500px;}
.y146{bottom:510.985500px;}
.ybb{bottom:517.405500px;}
.y1ca{bottom:519.082500px;}
.y106{bottom:521.674500px;}
.y277{bottom:521.739000px;}
.y85{bottom:521.889000px;}
.ydf{bottom:522.016500px;}
.y10c{bottom:522.540000px;}
.y23f{bottom:523.264500px;}
.y20a{bottom:524.430000px;}
.y1e6{bottom:524.877000px;}
.y3b{bottom:525.052500px;}
.ya{bottom:525.316500px;}
.y1a2{bottom:527.340000px;}
.y145{bottom:529.815000px;}
.yba{bottom:536.235000px;}
.y1c9{bottom:537.910500px;}
.y105{bottom:538.111500px;}
.y10a{bottom:538.978500px;}
.y276{bottom:538.999500px;}
.y23e{bottom:540.525000px;}
.y6e{bottom:540.718500px;}
.y9{bottom:543.204000px;}
.y209{bottom:543.259500px;}
.y1e5{bottom:543.706500px;}
.y3a{bottom:544.510500px;}
.y144{bottom:548.644500px;}
.y1a1{bottom:550.981500px;}
.yde{bottom:553.636500px;}
.yb9{bottom:555.064500px;}
.y275{bottom:556.260000px;}
.y23d{bottom:557.784000px;}
.y6d{bottom:559.548000px;}
.y8{bottom:561.093000px;}
.y1c8{bottom:561.223500px;}
.y208{bottom:562.089000px;}
.y1e4{bottom:562.536000px;}
.y109{bottom:562.618500px;}
.y39{bottom:563.967000px;}
.y143{bottom:567.474000px;}
.y274{bottom:573.520500px;}
.yb8{bottom:573.894000px;}
.y23c{bottom:575.044500px;}
.y6c{bottom:578.377500px;}
.y7{bottom:578.980500px;}
.y108{bottom:579.057000px;}
.y207{bottom:580.918500px;}
.y1e3{bottom:581.365500px;}
.y1a0{bottom:582.600000px;}
.y38{bottom:583.423500px;}
.y142{bottom:586.302000px;}
.y273{bottom:590.781000px;}
.y23b{bottom:592.305000px;}
.yb7{bottom:592.723500px;}
.ydd{bottom:595.227000px;}
.y107{bottom:595.495500px;}
.y6{bottom:596.868000px;}
.y6b{bottom:597.207000px;}
.y206{bottom:599.746500px;}
.y1e2{bottom:600.195000px;}
.y19f{bottom:601.833000px;}
.y1c5{bottom:602.115000px;}
.y37{bottom:602.881500px;}
.y1c7{bottom:603.547500px;}
.y141{bottom:605.131500px;}
.y272{bottom:608.041500px;}
.y23a{bottom:609.565500px;}
.yb6{bottom:611.553000px;}
.ydc{bottom:611.664000px;}
.y5{bottom:614.757000px;}
.y6a{bottom:616.036500px;}
.y1c4{bottom:618.553500px;}
.y205{bottom:618.576000px;}
.y1e1{bottom:619.024500px;}
.y104{bottom:619.137000px;}
.y1c6{bottom:619.986000px;}
.y36{bottom:622.338000px;}
.y140{bottom:623.961000px;}
.y271{bottom:625.302000px;}
.y100{bottom:625.936500px;}
.y239{bottom:626.826000px;}
.ydb{bottom:628.102500px;}
.yb5{bottom:630.382500px;}
.y4{bottom:632.644500px;}
.y69{bottom:634.866000px;}
.y103{bottom:635.575500px;}
.y204{bottom:637.405500px;}
.y19e{bottom:637.854000px;}
.y35{bottom:641.796000px;}
.y1c1{bottom:642.193500px;}
.y270{bottom:642.561000px;}
.y13f{bottom:642.790500px;}
.y1c3{bottom:643.626000px;}
.y238{bottom:644.086500px;}
.yda{bottom:644.541000px;}
.yb4{bottom:649.212000px;}
.y1{bottom:650.532055px;}
.y102{bottom:652.014000px;}
.y68{bottom:653.695500px;}
.y203{bottom:656.235000px;}
.y19d{bottom:656.683500px;}
.y1c0{bottom:658.632000px;}
.y26f{bottom:659.821500px;}
.y1c2{bottom:660.064500px;}
.yfe{bottom:660.457500px;}
.yd9{bottom:660.979500px;}
.y34{bottom:661.252500px;}
.y237{bottom:661.347000px;}
.y13e{bottom:661.620000px;}
.yb3{bottom:668.041500px;}
.y101{bottom:668.451000px;}
.y67{bottom:672.525000px;}
.y202{bottom:675.064500px;}
.y19c{bottom:675.513000px;}
.y26e{bottom:677.082000px;}
.y236{bottom:678.607500px;}
.y13d{bottom:680.449500px;}
.y33{bottom:680.709000px;}
.y1bf{bottom:683.706000px;}
.yd7{bottom:684.621000px;}
.yff{bottom:684.889500px;}
.yb2{bottom:686.871000px;}
.y66{bottom:691.354500px;}
.y1bd{bottom:692.344500px;}
.yd4{bottom:692.839500px;}
.y201{bottom:693.894000px;}
.y19b{bottom:694.342500px;}
.y234{bottom:695.866500px;}
.y235{bottom:695.868000px;}
.y13c{bottom:699.279000px;}
.y32{bottom:700.167000px;}
.y1be{bottom:700.339500px;}
.yd3{bottom:701.059500px;}
.yb1{bottom:705.700500px;}
.yfd{bottom:708.531000px;}
.yd5{bottom:709.278000px;}
.y65{bottom:710.184000px;}
.y26d{bottom:711.603000px;}
.y200{bottom:712.723500px;}
.y233{bottom:713.127000px;}
.y19a{bottom:713.172000px;}
.yd6{bottom:717.496500px;}
.yd8{bottom:717.498000px;}
.y13b{bottom:718.108500px;}
.y31{bottom:719.623500px;}
.yb0{bottom:724.530000px;}
.y26c{bottom:728.863500px;}
.y64{bottom:729.013500px;}
.y232{bottom:730.387500px;}
.y1ff{bottom:731.553000px;}
.y199{bottom:732.001500px;}
.y1bc{bottom:732.153000px;}
.y13a{bottom:736.938000px;}
.y2f{bottom:739.080000px;}
.y30{bottom:739.081500px;}
.yfc{bottom:740.151000px;}
.yaf{bottom:743.359500px;}
.y26b{bottom:746.124000px;}
.y231{bottom:747.648000px;}
.y63{bottom:747.843000px;}
.yd2{bottom:749.116500px;}
.y1fe{bottom:750.382500px;}
.y198{bottom:750.831000px;}
.y1bb{bottom:751.386000px;}
.y139{bottom:755.767500px;}
.yae{bottom:762.189000px;}
.y26a{bottom:763.384500px;}
.y230{bottom:764.908500px;}
.y62{bottom:766.671000px;}
.y197{bottom:769.660500px;}
.y1fd{bottom:773.695500px;}
.y138{bottom:774.597000px;}
.y2e{bottom:776.233500px;}
.y269{bottom:780.645000px;}
.yad{bottom:781.018500px;}
.y22f{bottom:782.169000px;}
.y61{bottom:785.500500px;}
.y196{bottom:788.490000px;}
.y2d{bottom:792.373500px;}
.y137{bottom:793.426500px;}
.y268{bottom:797.904000px;}
.y22e{bottom:799.429500px;}
.yac{bottom:799.848000px;}
.yd1{bottom:801.433500px;}
.y60{bottom:804.330000px;}
.y195{bottom:807.319500px;}
.y2c{bottom:812.853000px;}
.y267{bottom:815.164500px;}
.y22d{bottom:816.690000px;}
.yab{bottom:818.677500px;}
.y5f{bottom:823.159500px;}
.y2b{bottom:824.653500px;}
.y194{bottom:826.149000px;}
.y136{bottom:831.946500px;}
.y266{bottom:832.425000px;}
.y22c{bottom:833.950500px;}
.yaa{bottom:837.507000px;}
.y2a{bottom:840.792000px;}
.y5e{bottom:841.989000px;}
.y193{bottom:844.978500px;}
.y265{bottom:849.685500px;}
.y1ba{bottom:850.402500px;}
.y22b{bottom:851.209500px;}
.y179{bottom:855.132000px;}
.ya9{bottom:856.335000px;}
.y5d{bottom:860.818500px;}
.y29{bottom:861.271500px;}
.y192{bottom:863.808000px;}
.y264{bottom:866.946000px;}
.y22a{bottom:868.470000px;}
.y165{bottom:871.195500px;}
.y135{bottom:872.773500px;}
.y28{bottom:873.072000px;}
.ya8{bottom:875.164500px;}
.y16d{bottom:877.350000px;}
.y5c{bottom:879.648000px;}
.y191{bottom:882.637500px;}
.y263{bottom:884.206500px;}
.y229{bottom:885.730500px;}
.y164{bottom:887.634000px;}
.y1b9{bottom:888.061500px;}
.y134{bottom:891.603000px;}
.y27{bottom:893.550000px;}
.ya7{bottom:893.994000px;}
.y16c{bottom:894.810000px;}
.y178{bottom:895.632000px;}
.y5b{bottom:898.477500px;}
.y190{bottom:901.467000px;}
.y163{bottom:904.071000px;}
.y262{bottom:904.465500px;}
.y228{bottom:907.474500px;}
.y26{bottom:909.690000px;}
.y133{bottom:910.432500px;}
.ya6{bottom:912.823500px;}
.y177{bottom:915.792000px;}
.y5a{bottom:917.307000px;}
.y261{bottom:918.727500px;}
.y18f{bottom:920.296500px;}
.y162{bottom:920.509500px;}
.y132{bottom:929.262000px;}
.y16b{bottom:930.480000px;}
.ya5{bottom:931.653000px;}
.y260{bottom:935.986500px;}
.y176{bottom:936.042000px;}
.y59{bottom:936.136500px;}
.y161{bottom:936.948000px;}
.y18e{bottom:939.126000px;}
.y227{bottom:941.098500px;}
.y131{bottom:948.091500px;}
.y16a{bottom:949.650000px;}
.ya4{bottom:950.482500px;}
.y25{bottom:952.935000px;}
.y25f{bottom:953.247000px;}
.y160{bottom:953.386500px;}
.y58{bottom:954.966000px;}
.y175{bottom:956.292000px;}
.y18d{bottom:957.955500px;}
.y226{bottom:958.672500px;}
.y130{bottom:966.921000px;}
.ya3{bottom:969.312000px;}
.y15f{bottom:969.825000px;}
.y25e{bottom:970.507500px;}
.y24{bottom:971.764500px;}
.y57{bottom:973.795500px;}
.y225{bottom:976.246500px;}
.y174{bottom:976.542000px;}
.y18c{bottom:976.785000px;}
.y12f{bottom:985.750500px;}
.y15e{bottom:986.263500px;}
.y25d{bottom:987.768000px;}
.ya2{bottom:988.141500px;}
.y56{bottom:992.625000px;}
.y18b{bottom:995.614500px;}
.y173{bottom:996.792000px;}
.y15d{bottom:1002.702000px;}
.y224{bottom:1002.787500px;}
.y168{bottom:1004.370000px;}
.y12e{bottom:1004.580000px;}
.y25c{bottom:1005.028500px;}
.ya1{bottom:1006.971000px;}
.y23{bottom:1008.526500px;}
.y55{bottom:1011.454500px;}
.y167{bottom:1014.000000px;}
.y18a{bottom:1014.444000px;}
.y172{bottom:1017.042000px;}
.y15c{bottom:1019.140500px;}
.y223{bottom:1020.361500px;}
.y25b{bottom:1022.289000px;}
.y12d{bottom:1023.409500px;}
.ya0{bottom:1025.800500px;}
.y54{bottom:1030.284000px;}
.y189{bottom:1033.272000px;}
.y15b{bottom:1035.579000px;}
.y22{bottom:1036.770000px;}
.y171{bottom:1037.292000px;}
.y25a{bottom:1039.549500px;}
.y12c{bottom:1042.239000px;}
.y9f{bottom:1044.630000px;}
.y222{bottom:1046.901000px;}
.y53{bottom:1049.113500px;}
.y188{bottom:1052.101500px;}
.y259{bottom:1056.810000px;}
.y170{bottom:1057.452000px;}
.y15a{bottom:1059.219000px;}
.y12b{bottom:1061.068500px;}
.y9e{bottom:1063.459500px;}
.y221{bottom:1064.476500px;}
.y21{bottom:1065.015000px;}
.y52{bottom:1067.943000px;}
.y187{bottom:1070.931000px;}
.y258{bottom:1074.070500px;}
.y16e{bottom:1078.512000px;}
.y12a{bottom:1079.898000px;}
.y9d{bottom:1082.289000px;}
.y51{bottom:1086.772500px;}
.y186{bottom:1089.760500px;}
.y159{bottom:1090.839000px;}
.y220{bottom:1091.016000px;}
.y257{bottom:1091.329500px;}
.y20{bottom:1093.258500px;}
.y129{bottom:1098.727500px;}
.y50{bottom:1105.602000px;}
.y185{bottom:1108.590000px;}
.y158{bottom:1110.072000px;}
.y128{bottom:1117.557000px;}
.y1e{bottom:1136.746500px;}
.y4f{bottom:1168.366500px;}
.y127{bottom:1171.354500px;}
.h21{height:-244.408500px;}
.h24{height:-223.348500px;}
.h25{height:-203.188500px;}
.h26{height:-182.938500px;}
.h27{height:-162.688500px;}
.h28{height:-142.438500px;}
.h29{height:-122.188500px;}
.h2a{height:-101.938500px;}
.h2b{height:-81.688500px;}
.h2c{height:-61.528500px;}
.h2d{height:-21.028500px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h2f{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h17{height:39.434227px;}
.h13{height:41.482876px;}
.h2e{height:41.723369px;}
.h1e{height:42.760020px;}
.h10{height:43.217759px;}
.h11{height:43.516637px;}
.h9{height:43.815515px;}
.h22{height:43.915781px;}
.h23{height:46.645840px;}
.h20{height:48.225586px;}
.h30{height:49.002344px;}
.h7{height:50.931027px;}
.h1f{height:53.691152px;}
.hb{height:54.541601px;}
.h1b{height:54.768749px;}
.h1c{height:54.774749px;}
.h8{height:69.505289px;}
.h16{height:71.770243px;}
.h18{height:72.039235px;}
.h19{height:72.045235px;}
.h1a{height:75.441024px;}
.ha{height:77.792486px;}
.h1d{height:598.471500px;}
.h14{height:892.914000px;}
.h15{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:-24.465000px;}
.wa{width:39.255000px;}
.w9{width:53.190000px;}
.w2{width:75.364879px;}
.w7{width:178.251000px;}
.w8{width:199.110000px;}
.w3{width:211.537947px;}
.w6{width:469.806000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x9d{left:-196.839000px;}
.x9e{left:-1.239000px;}
.x0{left:0.000000px;}
.xb0{left:1.641000px;}
.xa3{left:4.770000px;}
.xa5{left:7.020000px;}
.xa1{left:9.180000px;}
.xa8{left:11.250000px;}
.xa9{left:14.940000px;}
.xa2{left:17.460000px;}
.xa7{left:19.080000px;}
.xb1{left:20.901000px;}
.xaa{left:22.860000px;}
.x2{left:29.274117px;}
.xa6{left:39.531000px;}
.xad{left:41.421000px;}
.xab{left:42.681000px;}
.xac{left:45.201000px;}
.xaf{left:50.421000px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.x9f{left:58.881000px;}
.x63{left:63.478500px;}
.x64{left:65.953500px;}
.x8a{left:70.248000px;}
.x65{left:74.070000px;}
.xae{left:80.820000px;}
.x6d{left:82.473000px;}
.xd9{left:85.027500px;}
.x51{left:86.161500px;}
.x66{left:89.316000px;}
.x83{left:94.908000px;}
.x6c{left:107.967000px;}
.x74{left:109.668000px;}
.x7b{left:113.575500px;}
.x67{left:119.671500px;}
.x68{left:125.526000px;}
.xe1{left:136.492500px;}
.xe2{left:160.693500px;}
.xe3{left:187.593000px;}
.x52{left:234.079500px;}
.xb8{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x9b{left:263.218500px;}
.x84{left:265.051500px;}
.xbf{left:267.286500px;}
.x5{left:269.914500px;}
.x9a{left:271.651500px;}
.x88{left:273.585000px;}
.xc2{left:277.272000px;}
.x91{left:279.207000px;}
.x9c{left:280.333500px;}
.x9{left:281.479500px;}
.xb5{left:283.689000px;}
.xb6{left:285.094500px;}
.xc1{left:286.255500px;}
.xb4{left:289.015500px;}
.x6e{left:291.244500px;}
.x87{left:294.063000px;}
.x7c{left:296.436000px;}
.x7d{left:297.720000px;}
.x99{left:299.418000px;}
.x8d{left:300.880500px;}
.x18{left:303.042000px;}
.x80{left:305.071500px;}
.x70{left:306.489000px;}
.x7{left:308.572500px;}
.x19{left:310.513500px;}
.x93{left:311.976000px;}
.x6f{left:313.692000px;}
.x69{left:315.360000px;}
.xb7{left:316.654500px;}
.x40{left:318.052500px;}
.x8{left:319.834500px;}
.x75{left:325.339500px;}
.x78{left:327.208500px;}
.x33{left:329.056500px;}
.xb3{left:330.709500px;}
.x54{left:332.409000px;}
.xcd{left:333.834000px;}
.x53{left:335.575500px;}
.x35{left:337.612500px;}
.x8b{left:341.592000px;}
.x34{left:343.851000px;}
.x4c{left:347.790000px;}
.x36{left:352.407000px;}
.x1e{left:354.769500px;}
.x4d{left:362.733000px;}
.x94{left:366.549000px;}
.x1f{left:369.714000px;}
.x24{left:371.904000px;}
.xd8{left:377.092500px;}
.x95{left:382.683000px;}
.x25{left:386.847000px;}
.x4e{left:388.453500px;}
.xd5{left:392.052000px;}
.x4f{left:400.744500px;}
.x44{left:406.383000px;}
.xbd{left:412.014000px;}
.x45{left:421.327500px;}
.xa0{left:427.842000px;}
.xd7{left:430.386000px;}
.xd6{left:433.876500px;}
.xc0{left:437.917500px;}
.x92{left:440.940000px;}
.x55{left:444.147000px;}
.x1a{left:446.821500px;}
.xbe{left:452.094000px;}
.x56{left:455.364000px;}
.xc3{left:458.818500px;}
.x1b{left:461.766000px;}
.x2a{left:465.937500px;}
.x3d{left:469.942500px;}
.x1c{left:473.836500px;}
.x50{left:475.545000px;}
.x2c{left:476.767500px;}
.x2b{left:480.732000px;}
.x46{left:485.506500px;}
.x1d{left:488.779500px;}
.xb2{left:496.611000px;}
.x47{left:500.451000px;}
.x48{left:510.573000px;}
.x2d{left:520.645500px;}
.x49{left:525.517500px;}
.x2e{left:535.441500px;}
.x31{left:536.703000px;}
.x4a{left:546.523500px;}
.x32{left:551.497500px;}
.x96{left:553.285500px;}
.x39{left:559.381500px;}
.x4b{left:561.468000px;}
.x57{left:563.484000px;}
.x97{left:569.301000px;}
.x3a{left:574.176000px;}
.xd0{left:605.724000px;}
.x26{left:615.600000px;}
.xc8{left:621.114000px;}
.x98{left:627.496500px;}
.x27{left:630.544500px;}
.x28{left:634.212000px;}
.xc9{left:636.058500px;}
.x3e{left:638.203500px;}
.xce{left:644.094000px;}
.x8e{left:646.864500px;}
.x29{left:649.156500px;}
.x3f{left:653.146500px;}
.x76{left:654.417000px;}
.x85{left:657.739500px;}
.xcf{left:659.038500px;}
.xc4{left:661.806000px;}
.x20{left:663.343500px;}
.x42{left:665.277000px;}
.x3b{left:670.273500px;}
.xc5{left:672.976500px;}
.x21{left:678.286500px;}
.x14{left:680.296500px;}
.xc7{left:682.897500px;}
.x3c{left:685.068000px;}
.x15{left:687.768000px;}
.x58{left:690.508500px;}
.xc6{left:691.618500px;}
.x7e{left:693.937500px;}
.xa{left:695.475000px;}
.x59{left:696.970500px;}
.xb{left:702.948000px;}
.xdf{left:705.366000px;}
.x71{left:707.562000px;}
.xc{left:710.359500px;}
.xd{left:717.832500px;}
.x12{left:724.539000px;}
.xca{left:726.877500px;}
.x13{left:732.010500px;}
.xe4{left:734.410500px;}
.xda{left:737.907000px;}
.x43{left:739.381500px;}
.xcb{left:741.822000px;}
.xa4{left:743.862000px;}
.x16{left:746.242500px;}
.xe{left:749.520000px;}
.x17{left:753.714000px;}
.xf{left:756.991500px;}
.xcc{left:759.763500px;}
.x10{left:760.776000px;}
.xdb{left:764.806500px;}
.x11{left:768.249000px;}
.x41{left:771.300000px;}
.x37{left:773.974500px;}
.xdd{left:775.437000px;}
.xd2{left:778.549500px;}
.xb9{left:787.302000px;}
.x38{left:788.769000px;}
.xbb{left:791.722500px;}
.xd3{left:793.494000px;}
.x2f{left:795.688500px;}
.xba{left:797.073000px;}
.xbc{left:798.148500px;}
.xde{left:802.336500px;}
.xdc{left:805.239000px;}
.x30{left:810.483000px;}
.xd1{left:813.886500px;}
.x22{left:817.794000px;}
.x5a{left:818.823000px;}
.x5b{left:821.802000px;}
.x5c{left:825.285000px;}
.x23{left:832.737000px;}
.xd4{left:833.838000px;}
.xe0{left:837.184500px;}
.x90{left:848.319000px;}
.x82{left:852.966000px;}
.x7f{left:878.533500px;}
.x81{left:881.997000px;}
.x6a{left:884.968500px;}
.x6b{left:889.702500px;}
.x8c{left:895.627500px;}
.x7a{left:898.983000px;}
.x79{left:902.211000px;}
.x86{left:905.317500px;}
.x73{left:907.510500px;}
.x77{left:909.003000px;}
.x72{left:914.047500px;}
.x89{left:916.656000px;}
.x8f{left:925.587000px;}
.x5d{left:939.571500px;}
.x5e{left:956.640000px;}
.x5f{left:971.139000px;}
.x60{left:1078.687500px;}
.x61{left:1094.632500px;}
.x62{left:1098.115500px;}
@media print{
.v4{vertical-align:-32.170667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.354667pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.v5{vertical-align:64.933333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000387pt;}
.ls37{letter-spacing:0.000711pt;}
.ls35{letter-spacing:0.000801pt;}
.lsc{letter-spacing:0.003012pt;}
.ls1b{letter-spacing:0.003635pt;}
.ls31{letter-spacing:0.004267pt;}
.ls1e{letter-spacing:0.023680pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.071467pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.570745pt;}
.ls2b{letter-spacing:0.600644pt;}
.ls12{letter-spacing:0.601548pt;}
.lsb{letter-spacing:0.663467pt;}
.ls16{letter-spacing:0.665067pt;}
.ls7{letter-spacing:1.133683pt;}
.ls11{letter-spacing:1.262881pt;}
.lse{letter-spacing:1.331543pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.665203pt;}
.ls10{letter-spacing:2.971185pt;}
.lsf{letter-spacing:3.124214pt;}
.lsd{letter-spacing:3.318400pt;}
.ls1{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls32{letter-spacing:10.814868pt;}
.ls14{letter-spacing:10.968429pt;}
.ls15{letter-spacing:11.659850pt;}
.ls33{letter-spacing:11.825255pt;}
.ls2e{letter-spacing:11.954133pt;}
.ls2d{letter-spacing:11.959467pt;}
.ls34{letter-spacing:12.004437pt;}
.ls2f{letter-spacing:12.050198pt;}
.ls36{letter-spacing:12.070944pt;}
.ls13{letter-spacing:12.189593pt;}
.ls24{letter-spacing:13.248033pt;}
.ls28{letter-spacing:13.254934pt;}
.ls21{letter-spacing:13.283467pt;}
.ls29{letter-spacing:13.305322pt;}
.ls19{letter-spacing:13.500886pt;}
.ls22{letter-spacing:13.557982pt;}
.ls30{letter-spacing:13.806892pt;}
.ls38{letter-spacing:13.827807pt;}
.ls2a{letter-spacing:13.961171pt;}
.ls18{letter-spacing:14.902799pt;}
.ls9{letter-spacing:15.424015pt;}
.ls27{letter-spacing:15.937642pt;}
.lsa{letter-spacing:16.061762pt;}
.ls23{letter-spacing:16.577766pt;}
.ls1f{letter-spacing:17.699733pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls25{letter-spacing:192.504969pt;}
.ls2c{letter-spacing:199.765867pt;}
.ls17{letter-spacing:619.001548pt;}
.ws89{word-spacing:-13.520000pt;}
.ws88{word-spacing:-13.431467pt;}
.ws8a{word-spacing:-13.383680pt;}
.ws42{word-spacing:-13.283467pt;}
.ws12{word-spacing:-12.760670pt;}
.ws6f{word-spacing:-11.955200pt;}
.ws87{word-spacing:-10.800000pt;}
.ws86{word-spacing:-10.640000pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws78{word-spacing:-3.763200pt;}
.wsaf{word-spacing:-2.762961pt;}
.ws55{word-spacing:-2.709827pt;}
.wsc9{word-spacing:-2.630144pt;}
.ws52{word-spacing:-2.178489pt;}
.wsad{word-spacing:-2.125355pt;}
.ws7e{word-spacing:-1.912819pt;}
.ws53{word-spacing:-1.753418pt;}
.ws5d{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.wse2{word-spacing:-1.673728pt;}
.ws98{word-spacing:-1.540882pt;}
.wsb6{word-spacing:-1.530266pt;}
.ws35{word-spacing:-1.487748pt;}
.wsb9{word-spacing:-1.482445pt;}
.ws57{word-spacing:-1.434614pt;}
.wsd1{word-spacing:-1.338982pt;}
.ws38{word-spacing:-1.328347pt;}
.wsb7{word-spacing:-1.291162pt;}
.ws5c{word-spacing:-1.275213pt;}
.ws0{word-spacing:-1.175671pt;}
.ws80{word-spacing:-1.168945pt;}
.wscf{word-spacing:-1.147699pt;}
.ws81{word-spacing:-1.052058pt;}
.ws7{word-spacing:-1.041421pt;}
.ws59{word-spacing:-1.009543pt;}
.wsde{word-spacing:-0.956416pt;}
.ws9{word-spacing:-0.929840pt;}
.ws62{word-spacing:-0.850142pt;}
.ws6e{word-spacing:-0.812954pt;}
.wsc4{word-spacing:-0.765133pt;}
.wsac{word-spacing:-0.743874pt;}
.ws19{word-spacing:-0.717312pt;}
.wsc0{word-spacing:-0.669491pt;}
.ws4b{word-spacing:-0.637606pt;}
.ws45{word-spacing:-0.584473pt;}
.wsaa{word-spacing:-0.531339pt;}
.ws40{word-spacing:-0.478205pt;}
.ws44{word-spacing:-0.425071pt;}
.ws36{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.318803pt;}
.wsdc{word-spacing:-0.286925pt;}
.ws25{word-spacing:-0.265669pt;}
.wsd2{word-spacing:-0.239104pt;}
.ws4a{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.wsb5{word-spacing:-0.095642pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.wsda{word-spacing:-0.025873pt;}
.wsd7{word-spacing:-0.007066pt;}
.wsc6{word-spacing:-0.005513pt;}
.wse1{word-spacing:-0.005308pt;}
.wscc{word-spacing:-0.004471pt;}
.ws29{word-spacing:-0.002739pt;}
.ws5{word-spacing:-0.002543pt;}
.wsce{word-spacing:-0.001809pt;}
.wsc3{word-spacing:-0.000947pt;}
.wsd0{word-spacing:-0.000145pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.wsbe{word-spacing:0.095642pt;}
.ws39{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.ws1d{word-spacing:0.191283pt;}
.ws79{word-spacing:0.204695pt;}
.ws27{word-spacing:0.212535pt;}
.wsb4{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.ws18{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.318803pt;}
.ws6a{word-spacing:0.371937pt;}
.ws14{word-spacing:0.526029pt;}
.ws31{word-spacing:0.531339pt;}
.wsc8{word-spacing:0.573850pt;}
.ws30{word-spacing:0.584473pt;}
.ws9e{word-spacing:0.637606pt;}
.ws61{word-spacing:0.690740pt;}
.wscd{word-spacing:0.717312pt;}
.ws47{word-spacing:0.743874pt;}
.ws54{word-spacing:0.797008pt;}
.wsd6{word-spacing:0.812954pt;}
.ws8{word-spacing:0.892646pt;}
.ws4c{word-spacing:0.956410pt;}
.ws1c{word-spacing:1.052058pt;}
.ws51{word-spacing:1.115811pt;}
.ws58{word-spacing:1.168945pt;}
.ws8c{word-spacing:1.195520pt;}
.ws9a{word-spacing:1.275213pt;}
.ws94{word-spacing:1.291162pt;}
.wsa5{word-spacing:1.328347pt;}
.ws43{word-spacing:1.381481pt;}
.ws8b{word-spacing:1.434624pt;}
.ws65{word-spacing:1.540882pt;}
.wsb1{word-spacing:1.578086pt;}
.ws5e{word-spacing:1.594016pt;}
.ws37{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.700284pt;}
.wsb2{word-spacing:1.721549pt;}
.ws2d{word-spacing:1.753418pt;}
.ws2e{word-spacing:1.806551pt;}
.ws90{word-spacing:1.859685pt;}
.wsb8{word-spacing:1.865011pt;}
.wsb0{word-spacing:1.912819pt;}
.ws3e{word-spacing:1.965953pt;}
.ws67{word-spacing:2.072221pt;}
.ws1e{word-spacing:2.104115pt;}
.ws77{word-spacing:2.125355pt;}
.ws49{word-spacing:2.178489pt;}
.ws4{word-spacing:2.230478pt;}
.ws76{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws34{word-spacing:2.337890pt;}
.ws41{word-spacing:2.391024pt;}
.ws4f{word-spacing:2.444158pt;}
.ws16{word-spacing:2.486682pt;}
.ws26{word-spacing:2.497292pt;}
.wsdd{word-spacing:2.534502pt;}
.ws13{word-spacing:2.550432pt;}
.ws99{word-spacing:2.656693pt;}
.ws4e{word-spacing:2.709827pt;}
.wsd8{word-spacing:2.725786pt;}
.ws46{word-spacing:2.762961pt;}
.ws68{word-spacing:2.816095pt;}
.wsc1{word-spacing:2.821427pt;}
.wsd5{word-spacing:2.860663pt;}
.wsc2{word-spacing:2.860757pt;}
.wsbc{word-spacing:2.861073pt;}
.wsbb{word-spacing:2.862379pt;}
.wsc7{word-spacing:2.862822pt;}
.wscb{word-spacing:2.862985pt;}
.wsca{word-spacing:2.863514pt;}
.wsd9{word-spacing:2.865630pt;}
.wsdb{word-spacing:2.865766pt;}
.wsba{word-spacing:2.866082pt;}
.wse0{word-spacing:2.866859pt;}
.ws2b{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.869248pt;}
.ws69{word-spacing:2.975497pt;}
.wsbf{word-spacing:3.012710pt;}
.wsa4{word-spacing:3.028630pt;}
.ws93{word-spacing:3.081764pt;}
.wsd4{word-spacing:3.108352pt;}
.wsa3{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws9c{word-spacing:3.241166pt;}
.ws8e{word-spacing:3.294300pt;}
.ws7c{word-spacing:3.347434pt;}
.wsdf{word-spacing:3.347456pt;}
.ws6c{word-spacing:3.400567pt;}
.ws7a{word-spacing:3.453701pt;}
.ws7f{word-spacing:3.462878pt;}
.ws7b{word-spacing:3.506835pt;}
.wsd3{word-spacing:3.682202pt;}
.ws33{word-spacing:3.719371pt;}
.wsb3{word-spacing:3.730022pt;}
.ws5b{word-spacing:3.772505pt;}
.ws92{word-spacing:3.878772pt;}
.ws3a{word-spacing:3.985040pt;}
.ws8f{word-spacing:4.144442pt;}
.wsf{word-spacing:4.240070pt;}
.ws8d{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.ws6b{word-spacing:4.356977pt;}
.ws66{word-spacing:4.410111pt;}
.ws3c{word-spacing:4.463245pt;}
.ws56{word-spacing:4.516379pt;}
.ws63{word-spacing:4.569513pt;}
.ws17{word-spacing:4.590797pt;}
.wsa9{word-spacing:4.675780pt;}
.wsab{word-spacing:4.728914pt;}
.wse3{word-spacing:4.734259pt;}
.ws4d{word-spacing:4.835182pt;}
.ws7d{word-spacing:5.153985pt;}
.ws9d{word-spacing:5.207119pt;}
.ws60{word-spacing:5.472788pt;}
.wsae{word-spacing:5.579056pt;}
.wsa6{word-spacing:5.632190pt;}
.wsa8{word-spacing:5.685324pt;}
.ws5a{word-spacing:5.738458pt;}
.ws2f{word-spacing:5.791591pt;}
.ws64{word-spacing:5.950993pt;}
.ws91{word-spacing:6.057261pt;}
.ws23{word-spacing:6.322930pt;}
.ws48{word-spacing:6.535466pt;}
.ws9b{word-spacing:6.801135pt;}
.wsd{word-spacing:6.918010pt;}
.wsa7{word-spacing:7.013670pt;}
.wsc5{word-spacing:7.603507pt;}
.wsb{word-spacing:10.823338pt;}
.ws50{word-spacing:11.636317pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws96{word-spacing:102.240870pt;}
.ws97{word-spacing:103.006003pt;}
.ws95{word-spacing:110.800794pt;}
.ws71{word-spacing:114.052608pt;}
.ws82{word-spacing:122.899456pt;}
.ws85{word-spacing:137.389158pt;}
.ws83{word-spacing:137.436979pt;}
.ws84{word-spacing:149.392179pt;}
.ws6d{word-spacing:189.846460pt;}
.ws70{word-spacing:228.726886pt;}
.ws73{word-spacing:231.596134pt;}
.ws72{word-spacing:243.551334pt;}
.ws74{word-spacing:255.506534pt;}
.ws75{word-spacing:267.461734pt;}
.wsa0{word-spacing:369.272218pt;}
.ws9f{word-spacing:392.321843pt;}
.wsa1{word-spacing:431.678362pt;}
.wsa2{word-spacing:446.168064pt;}
._9b{margin-left:-21.328077pt;}
._9c{margin-left:-17.969974pt;}
._7{margin-left:-10.616218pt;}
._17{margin-left:-6.701594pt;}
._a{margin-left:-5.281538pt;}
._e{margin-left:-4.351693pt;}
._2{margin-left:-3.347424pt;}
._9d{margin-left:-2.369893pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._8{width:3.288292pt;}
._77{width:4.363601pt;}
._9a{width:5.451571pt;}
._5{width:10.132188pt;}
._3{width:11.530016pt;}
._1c{width:12.741409pt;}
._f{width:13.772390pt;}
._d{width:15.302656pt;}
._11{width:16.478225pt;}
._12{width:17.587310pt;}
._10{width:18.709847pt;}
._1a{width:20.190869pt;}
._1d{width:21.479535pt;}
._b{width:22.619238pt;}
._16{width:23.803972pt;}
._18{width:25.663658pt;}
._6{width:27.188522pt;}
._c{width:28.883763pt;}
._1b{width:30.392572pt;}
._19{width:32.180299pt;}
._15{width:34.437472pt;}
._9{width:48.339417pt;}
._99{width:54.993920pt;}
._98{width:78.904320pt;}
._7b{width:97.288757pt;}
._8b{width:102.145229pt;}
._79{width:104.222773pt;}
._7a{width:114.185062pt;}
._91{width:115.708577pt;}
._8d{width:118.404301pt;}
._88{width:123.951514pt;}
._8c{width:125.625242pt;}
._84{width:134.950298pt;}
._8f{width:137.543629pt;}
._89{width:147.756851pt;}
._83{width:148.961792pt;}
._82{width:150.157312pt;}
._1f{width:170.502402pt;}
._72{width:173.398221pt;}
._27{width:177.558630pt;}
._5e{width:179.069047pt;}
._7d{width:181.814682pt;}
._5c{width:182.744526pt;}
._74{width:185.353421pt;}
._8e{width:188.844339pt;}
._7f{width:197.021696pt;}
._90{width:197.930291pt;}
._70{width:202.664550pt;}
._2c{width:207.255347pt;}
._76{width:208.163942pt;}
._8a{width:216.867328pt;}
._4e{width:220.043752pt;}
._62{width:223.275315pt;}
._37{width:243.551334pt;}
._34{width:248.907264pt;}
._20{width:252.637286pt;}
._3a{width:255.506534pt;}
._2d{width:261.484134pt;}
._3b{width:263.014400pt;}
._45{width:267.461734pt;}
._28{width:270.570086pt;}
._78{width:272.265064pt;}
._68{width:276.069478pt;}
._5a{width:278.986547pt;}
._46{width:279.895110pt;}
._4c{width:282.955674pt;}
._58{width:285.011968pt;}
._6e{width:287.089512pt;}
._5b{width:294.958694pt;}
._59{width:296.345498pt;}
._55{width:298.114867pt;}
._60{width:299.836416pt;}
._50{width:304.522854pt;}
._21{width:308.970189pt;}
._54{width:309.974426pt;}
._56{width:312.174182pt;}
._92{width:315.114735pt;}
._36{width:321.021030pt;}
._29{width:326.902989pt;}
._3e{width:329.198387pt;}
._35{width:333.932646pt;}
._3d{width:334.910312pt;}
._2e{width:338.858189pt;}
._7c{width:340.579738pt;}
._3c{width:341.966541pt;}
._39{width:349.809152pt;}
._4d{width:352.582758pt;}
._85{width:353.751202pt;}
._32{width:358.342504pt;}
._2a{width:360.568832pt;}
._64{width:361.812173pt;}
._6b{width:363.840887pt;}
._24{width:372.524032pt;}
._23{width:378.549453pt;}
._2b{width:379.792794pt;}
._49{width:382.327296pt;}
._22{width:384.479232pt;}
._31{width:387.061555pt;}
._30{width:390.504653pt;}
._25{width:391.747994pt;}
._4a{width:394.808525pt;}
._41{width:396.195328pt;}
._4f{width:398.682010pt;}
._87{width:402.911490pt;}
._48{width:405.520384pt;}
._44{width:407.194112pt;}
._2f{width:408.389632pt;}
._26{width:410.971955pt;}
._40{width:413.123891pt;}
._94{width:416.280064pt;}
._42{width:418.432000pt;}
._53{width:423.214080pt;}
._3f{width:424.409600pt;}
._52{width:440.190464pt;}
._66{width:442.937499pt;}
._69{width:444.446515pt;}
._96{width:446.120243pt;}
._81{width:449.754624pt;}
._33{width:456.832102pt;}
._65{width:458.479259pt;}
._97{width:470.030643pt;}
._6c{width:477.395046pt;}
._95{width:484.548736pt;}
._6d{width:489.350246pt;}
._80{width:516.560282pt;}
._7e{width:552.330240pt;}
._13{width:663.988783pt;}
._71{width:872.729600pt;}
._6a{width:882.985975pt;}
._73{width:884.684800pt;}
._75{width:907.495322pt;}
._67{width:951.490458pt;}
._4b{width:959.811277pt;}
._57{width:972.340326pt;}
._38{width:1020.065485pt;}
._61{width:1028.721050pt;}
._63{width:1049.523098pt;}
._5f{width:1075.059405pt;}
._5d{width:1087.731917pt;}
._43{width:1094.905037pt;}
._47{width:1104.803942pt;}
._51{width:1139.043667pt;}
._6f{width:1164.675584pt;}
._86{width:1797.953271pt;}
._93{width:2142.514400pt;}
._14{width:2163.767733pt;}
._1e{width:3477.527733pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y169{bottom:-115.386667pt;}
.y17e{bottom:-34.106667pt;}
.y17d{bottom:-18.666667pt;}
.y0{bottom:0.000000pt;}
.y17c{bottom:1.253333pt;}
.y3{bottom:3.044747pt;}
.y16f{bottom:4.000000pt;}
.y2{bottom:12.578910pt;}
.y17b{bottom:12.960000pt;}
.y1f{bottom:16.528366pt;}
.y17a{bottom:22.000000pt;}
.y4e{bottom:28.346667pt;}
.y9c{bottom:78.944000pt;}
.y1b8{bottom:89.605333pt;}
.y4d{bottom:92.108000pt;}
.y184{bottom:92.369333pt;}
.y1d{bottom:93.018667pt;}
.y1e0{bottom:93.185333pt;}
.y21f{bottom:95.070667pt;}
.y84{bottom:95.282667pt;}
.y28d{bottom:95.548000pt;}
.y9b{bottom:95.681333pt;}
.y1fc{bottom:98.337333pt;}
.y1b7{bottom:106.342667pt;}
.yd0{bottom:108.433333pt;}
.y4c{bottom:108.844000pt;}
.y1c{bottom:108.920000pt;}
.y183{bottom:109.106667pt;}
.y1df{bottom:109.922667pt;}
.y21e{bottom:110.692000pt;}
.y28c{bottom:110.890667pt;}
.y83{bottom:112.020000pt;}
.y256{bottom:112.245333pt;}
.y9a{bottom:112.418667pt;}
.y1fb{bottom:115.074667pt;}
.y1b6{bottom:123.080000pt;}
.y1b{bottom:124.820000pt;}
.ycf{bottom:125.170667pt;}
.y4b{bottom:125.581333pt;}
.y182{bottom:125.844000pt;}
.y28b{bottom:126.233333pt;}
.y1de{bottom:126.660000pt;}
.y255{bottom:127.588000pt;}
.y82{bottom:128.757333pt;}
.y99{bottom:129.156000pt;}
.y1fa{bottom:131.812000pt;}
.y21d{bottom:134.282667pt;}
.y126{bottom:135.437333pt;}
.y1b5{bottom:139.817333pt;}
.y1a{bottom:140.720000pt;}
.yfb{bottom:141.574667pt;}
.y28a{bottom:141.576000pt;}
.yce{bottom:141.908000pt;}
.y4a{bottom:142.318667pt;}
.y181{bottom:142.581333pt;}
.y254{bottom:142.930667pt;}
.y1dd{bottom:143.397333pt;}
.y81{bottom:145.494667pt;}
.y98{bottom:145.893333pt;}
.yf9{bottom:148.145333pt;}
.y1f9{bottom:148.549333pt;}
.y21c{bottom:149.905333pt;}
.y157{bottom:152.538667pt;}
.y121{bottom:153.516000pt;}
.y125{bottom:154.844000pt;}
.yfa{bottom:156.186667pt;}
.y1b4{bottom:156.554667pt;}
.y19{bottom:156.621333pt;}
.y289{bottom:156.918667pt;}
.y253{bottom:158.273333pt;}
.ycd{bottom:158.645333pt;}
.y49{bottom:159.056000pt;}
.y1dc{bottom:160.134667pt;}
.y80{bottom:162.232000pt;}
.y97{bottom:162.630667pt;}
.y1f8{bottom:165.286667pt;}
.y21b{bottom:165.526667pt;}
.y120{bottom:168.128000pt;}
.y156{bottom:169.276000pt;}
.y124{bottom:169.456000pt;}
.y122{bottom:169.805333pt;}
.yf5{bottom:170.094667pt;}
.yf8{bottom:170.798667pt;}
.y288{bottom:172.261333pt;}
.y180{bottom:172.417333pt;}
.y18{bottom:172.521333pt;}
.y1b3{bottom:173.292000pt;}
.y252{bottom:173.616000pt;}
.ycc{bottom:175.382667pt;}
.y48{bottom:175.793333pt;}
.y1db{bottom:176.872000pt;}
.y7f{bottom:178.969333pt;}
.y96{bottom:179.368000pt;}
.y11d{bottom:181.902667pt;}
.y1f7{bottom:182.024000pt;}
.y11f{bottom:182.740000pt;}
.y123{bottom:184.068000pt;}
.y155{bottom:186.013333pt;}
.y287{bottom:187.602667pt;}
.y17{bottom:188.421333pt;}
.y251{bottom:188.958667pt;}
.y21a{bottom:189.117333pt;}
.y17f{bottom:189.513333pt;}
.y1b2{bottom:190.029333pt;}
.yf7{bottom:191.812000pt;}
.ycb{bottom:192.120000pt;}
.y47{bottom:192.530667pt;}
.y1da{bottom:193.609333pt;}
.y7e{bottom:195.706667pt;}
.y95{bottom:196.105333pt;}
.y1f6{bottom:198.761333pt;}
.y154{bottom:202.750667pt;}
.y286{bottom:202.945333pt;}
.y250{bottom:204.301333pt;}
.y16{bottom:204.322667pt;}
.y219{bottom:204.738667pt;}
.y11e{bottom:205.081333pt;}
.yf6{bottom:206.424000pt;}
.y1b1{bottom:206.766667pt;}
.yca{bottom:208.857333pt;}
.y46{bottom:209.268000pt;}
.y166{bottom:209.450667pt;}
.y1d9{bottom:210.346667pt;}
.y7d{bottom:212.444000pt;}
.y94{bottom:212.841333pt;}
.y1f5{bottom:215.498667pt;}
.y285{bottom:218.288000pt;}
.y153{bottom:219.488000pt;}
.y24f{bottom:219.644000pt;}
.y218{bottom:220.360000pt;}
.y1b0{bottom:223.504000pt;}
.yc9{bottom:225.594667pt;}
.y45{bottom:226.005333pt;}
.y1d8{bottom:227.084000pt;}
.yf4{bottom:227.438667pt;}
.y7c{bottom:229.181333pt;}
.y93{bottom:229.578667pt;}
.y1f4{bottom:232.236000pt;}
.y284{bottom:233.630667pt;}
.y24e{bottom:234.985333pt;}
.y217{bottom:235.982667pt;}
.y152{bottom:236.225333pt;}
.y1af{bottom:240.241333pt;}
.yf3{bottom:242.050667pt;}
.yf0{bottom:242.250667pt;}
.yc8{bottom:242.332000pt;}
.y44{bottom:242.742667pt;}
.y1d7{bottom:243.821333pt;}
.y7b{bottom:245.918667pt;}
.y92{bottom:246.316000pt;}
.y1f3{bottom:248.973333pt;}
.y24d{bottom:250.328000pt;}
.y216{bottom:251.604000pt;}
.y151{bottom:252.962667pt;}
.y11a{bottom:253.992000pt;}
.yf2{bottom:256.662667pt;}
.y1ae{bottom:256.978667pt;}
.yc7{bottom:259.069333pt;}
.y43{bottom:259.480000pt;}
.y1d6{bottom:260.558667pt;}
.y7a{bottom:262.656000pt;}
.y91{bottom:263.053333pt;}
.y283{bottom:264.316000pt;}
.y24c{bottom:265.670667pt;}
.y1f2{bottom:265.710667pt;}
.y15{bottom:266.804000pt;}
.y215{bottom:267.225333pt;}
.y116{bottom:267.766667pt;}
.y119{bottom:268.604000pt;}
.yed{bottom:269.109333pt;}
.y150{bottom:269.700000pt;}
.y11c{bottom:269.932000pt;}
.yf1{bottom:271.273333pt;}
.y1ad{bottom:273.716000pt;}
.yc6{bottom:275.806667pt;}
.y1d5{bottom:277.296000pt;}
.y79{bottom:279.393333pt;}
.y282{bottom:279.658667pt;}
.y90{bottom:279.790667pt;}
.y42{bottom:280.202667pt;}
.y24b{bottom:281.013333pt;}
.y1f1{bottom:282.448000pt;}
.y14{bottom:282.705333pt;}
.y11b{bottom:284.542667pt;}
.yef{bottom:285.885333pt;}
.y14f{bottom:286.437333pt;}
.y1ac{bottom:290.453333pt;}
.yc5{bottom:292.544000pt;}
.y1d4{bottom:294.033333pt;}
.y281{bottom:295.001333pt;}
.y78{bottom:296.129333pt;}
.y24a{bottom:296.356000pt;}
.y8f{bottom:296.528000pt;}
.y13{bottom:298.605333pt;}
.y214{bottom:298.786667pt;}
.y118{bottom:299.154667pt;}
.y1f0{bottom:299.185333pt;}
.y14e{bottom:303.174667pt;}
.yee{bottom:306.900000pt;}
.y1ab{bottom:307.190667pt;}
.yc4{bottom:309.280000pt;}
.y280{bottom:310.342667pt;}
.y1d3{bottom:310.770667pt;}
.y249{bottom:311.698667pt;}
.y77{bottom:312.866667pt;}
.y8e{bottom:313.265333pt;}
.y12{bottom:314.505333pt;}
.y213{bottom:315.524000pt;}
.y1ef{bottom:315.922667pt;}
.y14d{bottom:319.912000pt;}
.y117{bottom:320.169333pt;}
.y1aa{bottom:323.928000pt;}
.y27f{bottom:325.685333pt;}
.yc3{bottom:326.017333pt;}
.yeb{bottom:326.652000pt;}
.y248{bottom:327.041333pt;}
.y1d2{bottom:327.508000pt;}
.yec{bottom:327.913333pt;}
.y76{bottom:329.604000pt;}
.y8d{bottom:330.002667pt;}
.y212{bottom:332.261333pt;}
.y1ee{bottom:332.660000pt;}
.y14c{bottom:336.649333pt;}
.y11{bottom:338.376000pt;}
.y1a9{bottom:340.665333pt;}
.y27e{bottom:341.028000pt;}
.y115{bottom:341.182667pt;}
.y247{bottom:342.384000pt;}
.yea{bottom:342.525333pt;}
.yc2{bottom:342.754667pt;}
.y1d1{bottom:344.245333pt;}
.y75{bottom:346.341333pt;}
.y8c{bottom:346.740000pt;}
.y41{bottom:347.002667pt;}
.y211{bottom:348.998667pt;}
.y1ed{bottom:349.397333pt;}
.y14b{bottom:353.386667pt;}
.y10{bottom:354.277333pt;}
.ye6{bottom:355.497333pt;}
.y114{bottom:355.794667pt;}
.y27d{bottom:356.370667pt;}
.y246{bottom:357.725333pt;}
.yc1{bottom:359.492000pt;}
.y1d0{bottom:360.982667pt;}
.y74{bottom:363.078667pt;}
.y113{bottom:363.101333pt;}
.y8b{bottom:363.477333pt;}
.ye9{bottom:363.540000pt;}
.y210{bottom:365.736000pt;}
.y1ec{bottom:366.134667pt;}
.y111{bottom:369.145333pt;}
.ye5{bottom:370.109333pt;}
.yf{bottom:370.177333pt;}
.y27c{bottom:371.713333pt;}
.y245{bottom:373.068000pt;}
.y14a{bottom:374.109333pt;}
.yc0{bottom:376.229333pt;}
.y1cf{bottom:377.720000pt;}
.ye8{bottom:378.152000pt;}
.y73{bottom:379.816000pt;}
.y8a{bottom:380.214667pt;}
.y40{bottom:380.237333pt;}
.y1a8{bottom:381.076000pt;}
.y20f{bottom:382.473333pt;}
.y1eb{bottom:382.872000pt;}
.y112{bottom:385.018667pt;}
.y27b{bottom:387.056000pt;}
.y244{bottom:388.410667pt;}
.ye7{bottom:392.764000pt;}
.ybf{bottom:392.966667pt;}
.y1ce{bottom:394.457333pt;}
.ye{bottom:395.376000pt;}
.y1a7{bottom:395.688000pt;}
.y72{bottom:396.553333pt;}
.y89{bottom:396.952000pt;}
.y3f{bottom:397.533333pt;}
.y20e{bottom:399.210667pt;}
.y1ea{bottom:399.609333pt;}
.y27a{bottom:402.398667pt;}
.y243{bottom:403.753333pt;}
.y149{bottom:403.997333pt;}
.y110{bottom:406.032000pt;}
.ye2{bottom:406.806667pt;}
.ybe{bottom:409.704000pt;}
.y1a6{bottom:410.300000pt;}
.y1cd{bottom:411.194667pt;}
.yd{bottom:411.276000pt;}
.y71{bottom:413.290667pt;}
.y88{bottom:413.689333pt;}
.ye4{bottom:413.777333pt;}
.y3e{bottom:414.828000pt;}
.y20d{bottom:415.948000pt;}
.y1e9{bottom:416.346667pt;}
.y279{bottom:417.741333pt;}
.y242{bottom:419.096000pt;}
.y10f{bottom:420.644000pt;}
.y148{bottom:420.734667pt;}
.y1a5{bottom:424.912000pt;}
.ybd{bottom:426.441333pt;}
.ye0{bottom:427.128000pt;}
.yc{bottom:427.177333pt;}
.y1cc{bottom:427.932000pt;}
.ye3{bottom:428.389333pt;}
.y70{bottom:430.028000pt;}
.y87{bottom:430.426667pt;}
.y3d{bottom:432.124000pt;}
.y20c{bottom:432.685333pt;}
.y1e8{bottom:433.084000pt;}
.y241{bottom:434.438667pt;}
.y10e{bottom:435.256000pt;}
.y10b{bottom:435.456000pt;}
.y147{bottom:437.472000pt;}
.y1a4{bottom:439.524000pt;}
.ye1{bottom:443.001333pt;}
.ybc{bottom:443.178667pt;}
.y1cb{bottom:444.669333pt;}
.y86{bottom:447.164000pt;}
.y278{bottom:448.425333pt;}
.y3c{bottom:449.418667pt;}
.y20b{bottom:449.422667pt;}
.y240{bottom:449.781333pt;}
.y1e7{bottom:449.821333pt;}
.y10d{bottom:449.868000pt;}
.y6f{bottom:450.750667pt;}
.yb{bottom:451.048000pt;}
.y1a3{bottom:454.134667pt;}
.y146{bottom:454.209333pt;}
.ybb{bottom:459.916000pt;}
.y1ca{bottom:461.406667pt;}
.y106{bottom:463.710667pt;}
.y277{bottom:463.768000pt;}
.y85{bottom:463.901333pt;}
.ydf{bottom:464.014667pt;}
.y10c{bottom:464.480000pt;}
.y23f{bottom:465.124000pt;}
.y20a{bottom:466.160000pt;}
.y1e6{bottom:466.557333pt;}
.y3b{bottom:466.713333pt;}
.ya{bottom:466.948000pt;}
.y1a2{bottom:468.746667pt;}
.y145{bottom:470.946667pt;}
.yba{bottom:476.653333pt;}
.y1c9{bottom:478.142667pt;}
.y105{bottom:478.321333pt;}
.y10a{bottom:479.092000pt;}
.y276{bottom:479.110667pt;}
.y23e{bottom:480.466667pt;}
.y6e{bottom:480.638667pt;}
.y9{bottom:482.848000pt;}
.y209{bottom:482.897333pt;}
.y1e5{bottom:483.294667pt;}
.y3a{bottom:484.009333pt;}
.y144{bottom:487.684000pt;}
.y1a1{bottom:489.761333pt;}
.yde{bottom:492.121333pt;}
.yb9{bottom:493.390667pt;}
.y275{bottom:494.453333pt;}
.y23d{bottom:495.808000pt;}
.y6d{bottom:497.376000pt;}
.y8{bottom:498.749333pt;}
.y1c8{bottom:498.865333pt;}
.y208{bottom:499.634667pt;}
.y1e4{bottom:500.032000pt;}
.y109{bottom:500.105333pt;}
.y39{bottom:501.304000pt;}
.y143{bottom:504.421333pt;}
.y274{bottom:509.796000pt;}
.yb8{bottom:510.128000pt;}
.y23c{bottom:511.150667pt;}
.y6c{bottom:514.113333pt;}
.y7{bottom:514.649333pt;}
.y108{bottom:514.717333pt;}
.y207{bottom:516.372000pt;}
.y1e3{bottom:516.769333pt;}
.y1a0{bottom:517.866667pt;}
.y38{bottom:518.598667pt;}
.y142{bottom:521.157333pt;}
.y273{bottom:525.138667pt;}
.y23b{bottom:526.493333pt;}
.yb7{bottom:526.865333pt;}
.ydd{bottom:529.090667pt;}
.y107{bottom:529.329333pt;}
.y6{bottom:530.549333pt;}
.y6b{bottom:530.850667pt;}
.y206{bottom:533.108000pt;}
.y1e2{bottom:533.506667pt;}
.y19f{bottom:534.962667pt;}
.y1c5{bottom:535.213333pt;}
.y37{bottom:535.894667pt;}
.y1c7{bottom:536.486667pt;}
.y141{bottom:537.894667pt;}
.y272{bottom:540.481333pt;}
.y23a{bottom:541.836000pt;}
.yb6{bottom:543.602667pt;}
.ydc{bottom:543.701333pt;}
.y5{bottom:546.450667pt;}
.y6a{bottom:547.588000pt;}
.y1c4{bottom:549.825333pt;}
.y205{bottom:549.845333pt;}
.y1e1{bottom:550.244000pt;}
.y104{bottom:550.344000pt;}
.y1c6{bottom:551.098667pt;}
.y36{bottom:553.189333pt;}
.y140{bottom:554.632000pt;}
.y271{bottom:555.824000pt;}
.y100{bottom:556.388000pt;}
.y239{bottom:557.178667pt;}
.ydb{bottom:558.313333pt;}
.yb5{bottom:560.340000pt;}
.y4{bottom:562.350667pt;}
.y69{bottom:564.325333pt;}
.y103{bottom:564.956000pt;}
.y204{bottom:566.582667pt;}
.y19e{bottom:566.981333pt;}
.y35{bottom:570.485333pt;}
.y1c1{bottom:570.838667pt;}
.y270{bottom:571.165333pt;}
.y13f{bottom:571.369333pt;}
.y1c3{bottom:572.112000pt;}
.y238{bottom:572.521333pt;}
.yda{bottom:572.925333pt;}
.yb4{bottom:577.077333pt;}
.y1{bottom:578.250715pt;}
.y102{bottom:579.568000pt;}
.y68{bottom:581.062667pt;}
.y203{bottom:583.320000pt;}
.y19d{bottom:583.718667pt;}
.y1c0{bottom:585.450667pt;}
.y26f{bottom:586.508000pt;}
.y1c2{bottom:586.724000pt;}
.yfe{bottom:587.073333pt;}
.yd9{bottom:587.537333pt;}
.y34{bottom:587.780000pt;}
.y237{bottom:587.864000pt;}
.y13e{bottom:588.106667pt;}
.yb3{bottom:593.814667pt;}
.y101{bottom:594.178667pt;}
.y67{bottom:597.800000pt;}
.y202{bottom:600.057333pt;}
.y19c{bottom:600.456000pt;}
.y26e{bottom:601.850667pt;}
.y236{bottom:603.206667pt;}
.y13d{bottom:604.844000pt;}
.y33{bottom:605.074667pt;}
.y1bf{bottom:607.738667pt;}
.yd7{bottom:608.552000pt;}
.yff{bottom:608.790667pt;}
.yb2{bottom:610.552000pt;}
.y66{bottom:614.537333pt;}
.y1bd{bottom:615.417333pt;}
.yd4{bottom:615.857333pt;}
.y201{bottom:616.794667pt;}
.y19b{bottom:617.193333pt;}
.y234{bottom:618.548000pt;}
.y235{bottom:618.549333pt;}
.y13c{bottom:621.581333pt;}
.y32{bottom:622.370667pt;}
.y1be{bottom:622.524000pt;}
.yd3{bottom:623.164000pt;}
.yb1{bottom:627.289333pt;}
.yfd{bottom:629.805333pt;}
.yd5{bottom:630.469333pt;}
.y65{bottom:631.274667pt;}
.y26d{bottom:632.536000pt;}
.y200{bottom:633.532000pt;}
.y233{bottom:633.890667pt;}
.y19a{bottom:633.930667pt;}
.yd6{bottom:637.774667pt;}
.yd8{bottom:637.776000pt;}
.y13b{bottom:638.318667pt;}
.y31{bottom:639.665333pt;}
.yb0{bottom:644.026667pt;}
.y26c{bottom:647.878667pt;}
.y64{bottom:648.012000pt;}
.y232{bottom:649.233333pt;}
.y1ff{bottom:650.269333pt;}
.y199{bottom:650.668000pt;}
.y1bc{bottom:650.802667pt;}
.y13a{bottom:655.056000pt;}
.y2f{bottom:656.960000pt;}
.y30{bottom:656.961333pt;}
.yfc{bottom:657.912000pt;}
.yaf{bottom:660.764000pt;}
.y26b{bottom:663.221333pt;}
.y231{bottom:664.576000pt;}
.y63{bottom:664.749333pt;}
.yd2{bottom:665.881333pt;}
.y1fe{bottom:667.006667pt;}
.y198{bottom:667.405333pt;}
.y1bb{bottom:667.898667pt;}
.y139{bottom:671.793333pt;}
.yae{bottom:677.501333pt;}
.y26a{bottom:678.564000pt;}
.y230{bottom:679.918667pt;}
.y62{bottom:681.485333pt;}
.y197{bottom:684.142667pt;}
.y1fd{bottom:687.729333pt;}
.y138{bottom:688.530667pt;}
.y2e{bottom:689.985333pt;}
.y269{bottom:693.906667pt;}
.yad{bottom:694.238667pt;}
.y22f{bottom:695.261333pt;}
.y61{bottom:698.222667pt;}
.y196{bottom:700.880000pt;}
.y2d{bottom:704.332000pt;}
.y137{bottom:705.268000pt;}
.y268{bottom:709.248000pt;}
.y22e{bottom:710.604000pt;}
.yac{bottom:710.976000pt;}
.yd1{bottom:712.385333pt;}
.y60{bottom:714.960000pt;}
.y195{bottom:717.617333pt;}
.y2c{bottom:722.536000pt;}
.y267{bottom:724.590667pt;}
.y22d{bottom:725.946667pt;}
.yab{bottom:727.713333pt;}
.y5f{bottom:731.697333pt;}
.y2b{bottom:733.025333pt;}
.y194{bottom:734.354667pt;}
.y136{bottom:739.508000pt;}
.y266{bottom:739.933333pt;}
.y22c{bottom:741.289333pt;}
.yaa{bottom:744.450667pt;}
.y2a{bottom:747.370667pt;}
.y5e{bottom:748.434667pt;}
.y193{bottom:751.092000pt;}
.y265{bottom:755.276000pt;}
.y1ba{bottom:755.913333pt;}
.y22b{bottom:756.630667pt;}
.y179{bottom:760.117333pt;}
.ya9{bottom:761.186667pt;}
.y5d{bottom:765.172000pt;}
.y29{bottom:765.574667pt;}
.y192{bottom:767.829333pt;}
.y264{bottom:770.618667pt;}
.y22a{bottom:771.973333pt;}
.y165{bottom:774.396000pt;}
.y135{bottom:775.798667pt;}
.y28{bottom:776.064000pt;}
.ya8{bottom:777.924000pt;}
.y16d{bottom:779.866667pt;}
.y5c{bottom:781.909333pt;}
.y191{bottom:784.566667pt;}
.y263{bottom:785.961333pt;}
.y229{bottom:787.316000pt;}
.y164{bottom:789.008000pt;}
.y1b9{bottom:789.388000pt;}
.y134{bottom:792.536000pt;}
.y27{bottom:794.266667pt;}
.ya7{bottom:794.661333pt;}
.y16c{bottom:795.386667pt;}
.y178{bottom:796.117333pt;}
.y5b{bottom:798.646667pt;}
.y190{bottom:801.304000pt;}
.y163{bottom:803.618667pt;}
.y262{bottom:803.969333pt;}
.y228{bottom:806.644000pt;}
.y26{bottom:808.613333pt;}
.y133{bottom:809.273333pt;}
.ya6{bottom:811.398667pt;}
.y177{bottom:814.037333pt;}
.y5a{bottom:815.384000pt;}
.y261{bottom:816.646667pt;}
.y18f{bottom:818.041333pt;}
.y162{bottom:818.230667pt;}
.y132{bottom:826.010667pt;}
.y16b{bottom:827.093333pt;}
.ya5{bottom:828.136000pt;}
.y260{bottom:831.988000pt;}
.y176{bottom:832.037333pt;}
.y59{bottom:832.121333pt;}
.y161{bottom:832.842667pt;}
.y18e{bottom:834.778667pt;}
.y227{bottom:836.532000pt;}
.y131{bottom:842.748000pt;}
.y16a{bottom:844.133333pt;}
.ya4{bottom:844.873333pt;}
.y25{bottom:847.053333pt;}
.y25f{bottom:847.330667pt;}
.y160{bottom:847.454667pt;}
.y58{bottom:848.858667pt;}
.y175{bottom:850.037333pt;}
.y18d{bottom:851.516000pt;}
.y226{bottom:852.153333pt;}
.y130{bottom:859.485333pt;}
.ya3{bottom:861.610667pt;}
.y15f{bottom:862.066667pt;}
.y25e{bottom:862.673333pt;}
.y24{bottom:863.790667pt;}
.y57{bottom:865.596000pt;}
.y225{bottom:867.774667pt;}
.y174{bottom:868.037333pt;}
.y18c{bottom:868.253333pt;}
.y12f{bottom:876.222667pt;}
.y15e{bottom:876.678667pt;}
.y25d{bottom:878.016000pt;}
.ya2{bottom:878.348000pt;}
.y56{bottom:882.333333pt;}
.y18b{bottom:884.990667pt;}
.y173{bottom:886.037333pt;}
.y15d{bottom:891.290667pt;}
.y224{bottom:891.366667pt;}
.y168{bottom:892.773333pt;}
.y12e{bottom:892.960000pt;}
.y25c{bottom:893.358667pt;}
.ya1{bottom:895.085333pt;}
.y23{bottom:896.468000pt;}
.y55{bottom:899.070667pt;}
.y167{bottom:901.333333pt;}
.y18a{bottom:901.728000pt;}
.y172{bottom:904.037333pt;}
.y15c{bottom:905.902667pt;}
.y223{bottom:906.988000pt;}
.y25b{bottom:908.701333pt;}
.y12d{bottom:909.697333pt;}
.ya0{bottom:911.822667pt;}
.y54{bottom:915.808000pt;}
.y189{bottom:918.464000pt;}
.y15b{bottom:920.514667pt;}
.y22{bottom:921.573333pt;}
.y171{bottom:922.037333pt;}
.y25a{bottom:924.044000pt;}
.y12c{bottom:926.434667pt;}
.y9f{bottom:928.560000pt;}
.y222{bottom:930.578667pt;}
.y53{bottom:932.545333pt;}
.y188{bottom:935.201333pt;}
.y259{bottom:939.386667pt;}
.y170{bottom:939.957333pt;}
.y15a{bottom:941.528000pt;}
.y12b{bottom:943.172000pt;}
.y9e{bottom:945.297333pt;}
.y221{bottom:946.201333pt;}
.y21{bottom:946.680000pt;}
.y52{bottom:949.282667pt;}
.y187{bottom:951.938667pt;}
.y258{bottom:954.729333pt;}
.y16e{bottom:958.677333pt;}
.y12a{bottom:959.909333pt;}
.y9d{bottom:962.034667pt;}
.y51{bottom:966.020000pt;}
.y186{bottom:968.676000pt;}
.y159{bottom:969.634667pt;}
.y220{bottom:969.792000pt;}
.y257{bottom:970.070667pt;}
.y20{bottom:971.785333pt;}
.y129{bottom:976.646667pt;}
.y50{bottom:982.757333pt;}
.y185{bottom:985.413333pt;}
.y158{bottom:986.730667pt;}
.y128{bottom:993.384000pt;}
.y1e{bottom:1010.441333pt;}
.y4f{bottom:1038.548000pt;}
.y127{bottom:1041.204000pt;}
.h21{height:-217.252000pt;}
.h24{height:-198.532000pt;}
.h25{height:-180.612000pt;}
.h26{height:-162.612000pt;}
.h27{height:-144.612000pt;}
.h28{height:-126.612000pt;}
.h29{height:-108.612000pt;}
.h2a{height:-90.612000pt;}
.h2b{height:-72.612000pt;}
.h2c{height:-54.692000pt;}
.h2d{height:-18.692000pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h2f{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h17{height:35.052646pt;}
.h13{height:36.873667pt;}
.h2e{height:37.087439pt;}
.h1e{height:38.008906pt;}
.h10{height:38.415786pt;}
.h11{height:38.681455pt;}
.h9{height:38.947124pt;}
.h22{height:39.036250pt;}
.h23{height:41.462969pt;}
.h20{height:42.867188pt;}
.h30{height:43.557639pt;}
.h7{height:45.272024pt;}
.h1f{height:47.725469pt;}
.hb{height:48.481423pt;}
.h1b{height:48.683332pt;}
.h1c{height:48.688666pt;}
.h8{height:61.782479pt;}
.h16{height:63.795772pt;}
.h18{height:64.034876pt;}
.h19{height:64.040209pt;}
.h1a{height:67.058688pt;}
.ha{height:69.148877pt;}
.h1d{height:531.974667pt;}
.h14{height:793.701333pt;}
.h15{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:-21.746667pt;}
.wa{width:34.893333pt;}
.w9{width:47.280000pt;}
.w2{width:66.991004pt;}
.w7{width:158.445333pt;}
.w8{width:176.986667pt;}
.w3{width:188.033730pt;}
.w6{width:417.605333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x9d{left:-174.968000pt;}
.x9e{left:-1.101333pt;}
.x0{left:0.000000pt;}
.xb0{left:1.458667pt;}
.xa3{left:4.240000pt;}
.xa5{left:6.240000pt;}
.xa1{left:8.160000pt;}
.xa8{left:10.000000pt;}
.xa9{left:13.280000pt;}
.xa2{left:15.520000pt;}
.xa7{left:16.960000pt;}
.xb1{left:18.578667pt;}
.xaa{left:20.320000pt;}
.x2{left:26.021437pt;}
.xa6{left:35.138667pt;}
.xad{left:36.818667pt;}
.xab{left:37.938667pt;}
.xac{left:40.178667pt;}
.xaf{left:44.818667pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.x9f{left:52.338667pt;}
.x63{left:56.425333pt;}
.x64{left:58.625333pt;}
.x8a{left:62.442667pt;}
.x65{left:65.840000pt;}
.xae{left:71.840000pt;}
.x6d{left:73.309333pt;}
.xd9{left:75.580000pt;}
.x51{left:76.588000pt;}
.x66{left:79.392000pt;}
.x83{left:84.362667pt;}
.x6c{left:95.970667pt;}
.x74{left:97.482667pt;}
.x7b{left:100.956000pt;}
.x67{left:106.374667pt;}
.x68{left:111.578667pt;}
.xe1{left:121.326667pt;}
.xe2{left:142.838667pt;}
.xe3{left:166.749333pt;}
.x52{left:208.070667pt;}
.xb8{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x9b{left:233.972000pt;}
.x84{left:235.601333pt;}
.xbf{left:237.588000pt;}
.x5{left:239.924000pt;}
.x9a{left:241.468000pt;}
.x88{left:243.186667pt;}
.xc2{left:246.464000pt;}
.x91{left:248.184000pt;}
.x9c{left:249.185333pt;}
.x9{left:250.204000pt;}
.xb5{left:252.168000pt;}
.xb6{left:253.417333pt;}
.xc1{left:254.449333pt;}
.xb4{left:256.902667pt;}
.x6e{left:258.884000pt;}
.x87{left:261.389333pt;}
.x7c{left:263.498667pt;}
.x7d{left:264.640000pt;}
.x99{left:266.149333pt;}
.x8d{left:267.449333pt;}
.x18{left:269.370667pt;}
.x80{left:271.174667pt;}
.x70{left:272.434667pt;}
.x7{left:274.286667pt;}
.x19{left:276.012000pt;}
.x93{left:277.312000pt;}
.x6f{left:278.837333pt;}
.x69{left:280.320000pt;}
.xb7{left:281.470667pt;}
.x40{left:282.713333pt;}
.x8{left:284.297333pt;}
.x75{left:289.190667pt;}
.x78{left:290.852000pt;}
.x33{left:292.494667pt;}
.xb3{left:293.964000pt;}
.x54{left:295.474667pt;}
.xcd{left:296.741333pt;}
.x53{left:298.289333pt;}
.x35{left:300.100000pt;}
.x8b{left:303.637333pt;}
.x34{left:305.645333pt;}
.x4c{left:309.146667pt;}
.x36{left:313.250667pt;}
.x1e{left:315.350667pt;}
.x4d{left:322.429333pt;}
.x94{left:325.821333pt;}
.x1f{left:328.634667pt;}
.x24{left:330.581333pt;}
.xd8{left:335.193333pt;}
.x95{left:340.162667pt;}
.x25{left:343.864000pt;}
.x4e{left:345.292000pt;}
.xd5{left:348.490667pt;}
.x4f{left:356.217333pt;}
.x44{left:361.229333pt;}
.xbd{left:366.234667pt;}
.x45{left:374.513333pt;}
.xa0{left:380.304000pt;}
.xd7{left:382.565333pt;}
.xd6{left:385.668000pt;}
.xc0{left:389.260000pt;}
.x92{left:391.946667pt;}
.x55{left:394.797333pt;}
.x1a{left:397.174667pt;}
.xbe{left:401.861333pt;}
.x56{left:404.768000pt;}
.xc3{left:407.838667pt;}
.x1b{left:410.458667pt;}
.x2a{left:414.166667pt;}
.x3d{left:417.726667pt;}
.x1c{left:421.188000pt;}
.x50{left:422.706667pt;}
.x2c{left:423.793333pt;}
.x2b{left:427.317333pt;}
.x46{left:431.561333pt;}
.x1d{left:434.470667pt;}
.xb2{left:441.432000pt;}
.x47{left:444.845333pt;}
.x48{left:453.842667pt;}
.x2d{left:462.796000pt;}
.x49{left:467.126667pt;}
.x2e{left:475.948000pt;}
.x31{left:477.069333pt;}
.x4a{left:485.798667pt;}
.x32{left:490.220000pt;}
.x96{left:491.809333pt;}
.x39{left:497.228000pt;}
.x4b{left:499.082667pt;}
.x57{left:500.874667pt;}
.x97{left:506.045333pt;}
.x3a{left:510.378667pt;}
.xd0{left:538.421333pt;}
.x26{left:547.200000pt;}
.xc8{left:552.101333pt;}
.x98{left:557.774667pt;}
.x27{left:560.484000pt;}
.x28{left:563.744000pt;}
.xc9{left:565.385333pt;}
.x3e{left:567.292000pt;}
.xce{left:572.528000pt;}
.x8e{left:574.990667pt;}
.x29{left:577.028000pt;}
.x3f{left:580.574667pt;}
.x76{left:581.704000pt;}
.x85{left:584.657333pt;}
.xcf{left:585.812000pt;}
.xc4{left:588.272000pt;}
.x20{left:589.638667pt;}
.x42{left:591.357333pt;}
.x3b{left:595.798667pt;}
.xc5{left:598.201333pt;}
.x21{left:602.921333pt;}
.x14{left:604.708000pt;}
.xc7{left:607.020000pt;}
.x3c{left:608.949333pt;}
.x15{left:611.349333pt;}
.x58{left:613.785333pt;}
.xc6{left:614.772000pt;}
.x7e{left:616.833333pt;}
.xa{left:618.200000pt;}
.x59{left:619.529333pt;}
.xb{left:624.842667pt;}
.xdf{left:626.992000pt;}
.x71{left:628.944000pt;}
.xc{left:631.430667pt;}
.xd{left:638.073333pt;}
.x12{left:644.034667pt;}
.xca{left:646.113333pt;}
.x13{left:650.676000pt;}
.xe4{left:652.809333pt;}
.xda{left:655.917333pt;}
.x43{left:657.228000pt;}
.xcb{left:659.397333pt;}
.xa4{left:661.210667pt;}
.x16{left:663.326667pt;}
.xe{left:666.240000pt;}
.x17{left:669.968000pt;}
.xf{left:672.881333pt;}
.xcc{left:675.345333pt;}
.x10{left:676.245333pt;}
.xdb{left:679.828000pt;}
.x11{left:682.888000pt;}
.x41{left:685.600000pt;}
.x37{left:687.977333pt;}
.xdd{left:689.277333pt;}
.xd2{left:692.044000pt;}
.xb9{left:699.824000pt;}
.x38{left:701.128000pt;}
.xbb{left:703.753333pt;}
.xd3{left:705.328000pt;}
.x2f{left:707.278667pt;}
.xba{left:708.509333pt;}
.xbc{left:709.465333pt;}
.xde{left:713.188000pt;}
.xdc{left:715.768000pt;}
.x30{left:720.429333pt;}
.xd1{left:723.454667pt;}
.x22{left:726.928000pt;}
.x5a{left:727.842667pt;}
.x5b{left:730.490667pt;}
.x5c{left:733.586667pt;}
.x23{left:740.210667pt;}
.xd4{left:741.189333pt;}
.xe0{left:744.164000pt;}
.x90{left:754.061333pt;}
.x82{left:758.192000pt;}
.x7f{left:780.918667pt;}
.x81{left:783.997333pt;}
.x6a{left:786.638667pt;}
.x6b{left:790.846667pt;}
.x8c{left:796.113333pt;}
.x7a{left:799.096000pt;}
.x79{left:801.965333pt;}
.x86{left:804.726667pt;}
.x73{left:806.676000pt;}
.x77{left:808.002667pt;}
.x72{left:812.486667pt;}
.x89{left:814.805333pt;}
.x8f{left:822.744000pt;}
.x5d{left:835.174667pt;}
.x5e{left:850.346667pt;}
.x5f{left:863.234667pt;}
.x60{left:958.833333pt;}
.x61{left:973.006667pt;}
.x62{left:976.102667pt;}
}


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