
/* 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_f6a48a816d77.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_b20bdb704af6.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_489bfb58f60f.woff")format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_7f6c12ee7c33.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_d01e2dc69a1d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_34e69966c0ea.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_2c9cad8bd155.woff")format("woff");}.ff8{font-family:ff8;line-height:0.580000;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_c622852fc460.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_519528aabfe4.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_68d512bfc8da.woff")format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_c172559e4672.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_ba515bd99863.woff")format("woff");}.ffd{font-family:ffd;line-height:0.758000;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;}
.m5{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);}
.m9{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);}
.m10{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);}
.m27{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);}
.m1d{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);}
.m16{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);}
.m24{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);}
.m15{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);}
.m19{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);}
.m1e{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);}
.m1{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);}
.m13{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);}
.m1b{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m6{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);}
.m11{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m4{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);}
.m22{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);}
.m21{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);}
.md{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);}
.mc{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);}
.m1f{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);}
.m14{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);}
.ma{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);}
.m3{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);}
.m18{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);}
.m26{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);}
.me{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);}
.m12{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);}
.mf{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);}
.m25{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-10.854000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.854000px;}
.v7{vertical-align:19.092480px;}
.v1{vertical-align:21.702000px;}
.lsb{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000608px;}
.ls48{letter-spacing:0.002841px;}
.ls3b{letter-spacing:0.631385px;}
.ls31{letter-spacing:0.676800px;}
.ls21{letter-spacing:0.717483px;}
.ls1d{letter-spacing:0.748200px;}
.ls16{letter-spacing:1.135331px;}
.ls9{letter-spacing:1.192800px;}
.lsc{letter-spacing:1.275394px;}
.ls20{letter-spacing:1.302565px;}
.ls11{letter-spacing:1.341292px;}
.ls24{letter-spacing:1.347292px;}
.ls32{letter-spacing:1.813937px;}
.ls4{letter-spacing:1.861130px;}
.ls13{letter-spacing:1.903331px;}
.ls38{letter-spacing:1.921135px;}
.ls18{letter-spacing:2.221331px;}
.ls19{letter-spacing:2.227331px;}
.ls2{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.989200px;}
.ls15{letter-spacing:11.697483px;}
.ls47{letter-spacing:11.952441px;}
.lsa{letter-spacing:11.954850px;}
.ls14{letter-spacing:12.500700px;}
.ls49{letter-spacing:13.232033px;}
.ls45{letter-spacing:13.448400px;}
.ls46{letter-spacing:13.454400px;}
.ls4a{letter-spacing:13.611129px;}
.ls2d{letter-spacing:13.697914px;}
.ls10{letter-spacing:14.346144px;}
.lse{letter-spacing:14.645022px;}
.lsd{letter-spacing:14.764573px;}
.ls17{letter-spacing:14.986457px;}
.ls39{letter-spacing:15.268176px;}
.ls3f{letter-spacing:15.687986px;}
.ls40{letter-spacing:15.688200px;}
.ls42{letter-spacing:15.693986px;}
.ls3e{letter-spacing:15.694200px;}
.lsf{letter-spacing:16.199188px;}
.ls3a{letter-spacing:16.582265px;}
.ls1e{letter-spacing:17.325483px;}
.ls12{letter-spacing:18.069483px;}
.ls30{letter-spacing:18.072783px;}
.ls22{letter-spacing:18.094200px;}
.ls23{letter-spacing:18.100200px;}
.ls2b{letter-spacing:18.124200px;}
.ls1f{letter-spacing:18.184200px;}
.ls2c{letter-spacing:19.696200px;}
.ls1b{letter-spacing:19.950583px;}
.ls1a{letter-spacing:19.956583px;}
.ls29{letter-spacing:20.335200px;}
.ls27{letter-spacing:21.730200px;}
.ls2e{letter-spacing:22.402200px;}
.ls2f{letter-spacing:23.014200px;}
.ls28{letter-spacing:23.632200px;}
.ls26{letter-spacing:25.492200px;}
.ls2a{letter-spacing:25.594200px;}
.ls25{letter-spacing:25.606200px;}
.ls8{letter-spacing:26.016845px;}
.ls7{letter-spacing:26.022845px;}
.ls0{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.ls35{letter-spacing:120.826434px;}
.ls36{letter-spacing:120.831714px;}
.ls37{letter-spacing:136.766754px;}
.ls33{letter-spacing:160.122336px;}
.ls34{letter-spacing:178.536834px;}
.ls3d{letter-spacing:305.306700px;}
.ls44{letter-spacing:375.932700px;}
.ls43{letter-spacing:475.520700px;}
.ls41{letter-spacing:498.146700px;}
.ls3c{letter-spacing:504.926700px;}
.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;}
}
.ws59{word-spacing:-14.943900px;}
.wse6{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws7a{word-spacing:-5.200477px;}
.ws49{word-spacing:-3.227882px;}
.wsb7{word-spacing:-2.869229px;}
.wsb3{word-spacing:-2.809453px;}
.ws80{word-spacing:-2.637610px;}
.ws7f{word-spacing:-2.631610px;}
.ws1b{word-spacing:-2.313331px;}
.ws3f{word-spacing:-2.271473px;}
.wsbd{word-spacing:-2.211697px;}
.ws83{word-spacing:-2.151922px;}
.wsf0{word-spacing:-1.936742px;}
.ws4{word-spacing:-1.908367px;}
.ws44{word-spacing:-1.733492px;}
.wsd2{word-spacing:-1.721549px;}
.wsc1{word-spacing:-1.515373px;}
.wsd0{word-spacing:-1.506355px;}
.wsc0{word-spacing:-1.494390px;}
.wsa1{word-spacing:-1.434614px;}
.ws54{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws75{word-spacing:-1.315063px;}
.ws85{word-spacing:-1.255288px;}
.wsd1{word-spacing:-1.237363px;}
.ws9f{word-spacing:-1.195512px;}
.ws5a{word-spacing:-1.135736px;}
.ws92{word-spacing:-1.075961px;}
.ws50{word-spacing:-1.016185px;}
.wse4{word-spacing:-0.968371px;}
.wsa4{word-spacing:-0.896634px;}
.wse1{word-spacing:-0.860774px;}
.ws5c{word-spacing:-0.836858px;}
.wsff{word-spacing:-0.806976px;}
.ws51{word-spacing:-0.777083px;}
.wsd4{word-spacing:-0.753178px;}
.wsaa{word-spacing:-0.717307px;}
.ws6c{word-spacing:-0.699379px;}
.ws7b{word-spacing:-0.687610px;}
.ws74{word-spacing:-0.657532px;}
.ws73{word-spacing:-0.597756px;}
.ws48{word-spacing:-0.537980px;}
.wsd5{word-spacing:-0.484186px;}
.ws99{word-spacing:-0.478205px;}
.wsac{word-spacing:-0.430387px;}
.ws97{word-spacing:-0.418429px;}
.ws43{word-spacing:-0.358654px;}
.wsf4{word-spacing:-0.322790px;}
.ws7e{word-spacing:-0.316035px;}
.ws4c{word-spacing:-0.298878px;}
.ws62{word-spacing:-0.268992px;}
.ws38{word-spacing:-0.239102px;}
.wsa5{word-spacing:-0.217396px;}
.ws61{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws35{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.047821px;}
.wsbb{word-spacing:-0.045430px;}
.ws8{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.002108px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws1d{word-spacing:0.107597px;}
.ws3a{word-spacing:0.119551px;}
.ws71{word-spacing:0.137101px;}
.ws13{word-spacing:0.161395px;}
.ws3e{word-spacing:0.179327px;}
.ws6f{word-spacing:0.203478px;}
.ws9{word-spacing:0.209214px;}
.ws6e{word-spacing:0.209563px;}
.ws65{word-spacing:0.215194px;}
.ws56{word-spacing:0.239102px;}
.ws66{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws57{word-spacing:0.298878px;}
.ws9b{word-spacing:0.322790px;}
.ws30{word-spacing:0.358654px;}
.ws100{word-spacing:0.376589px;}
.ws47{word-spacing:0.418429px;}
.ws108{word-spacing:0.430387px;}
.ws5b{word-spacing:0.478205px;}
.wscd{word-spacing:0.537980px;}
.ws9a{word-spacing:0.591782px;}
.ws87{word-spacing:0.597756px;}
.ws58{word-spacing:0.657532px;}
.ws1c{word-spacing:0.699379px;}
.ws2d{word-spacing:0.717307px;}
.ws4a{word-spacing:0.777083px;}
.ws67{word-spacing:0.806976px;}
.ws79{word-spacing:0.836858px;}
.wse3{word-spacing:0.860774px;}
.ws70{word-spacing:0.896634px;}
.ws64{word-spacing:0.914573px;}
.ws37{word-spacing:0.956410px;}
.wsb5{word-spacing:1.075961px;}
.wse2{word-spacing:1.075968px;}
.ws6d{word-spacing:1.129766px;}
.wsa8{word-spacing:1.135736px;}
.ws5e{word-spacing:1.255288px;}
.ws63{word-spacing:1.291162px;}
.ws39{word-spacing:1.374839px;}
.ws40{word-spacing:1.434614px;}
.ws53{word-spacing:1.494390px;}
.wsb6{word-spacing:1.554166px;}
.ws17{word-spacing:1.560154px;}
.wsab{word-spacing:1.613941px;}
.wsd3{word-spacing:1.667750px;}
.ws4f{word-spacing:1.673717px;}
.ws69{word-spacing:1.721549px;}
.ws89{word-spacing:1.733492px;}
.wsbc{word-spacing:1.793268px;}
.ws8e{word-spacing:1.853044px;}
.wscf{word-spacing:1.912819px;}
.wsce{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws55{word-spacing:2.032370px;}
.wsa0{word-spacing:2.151922px;}
.wsec{word-spacing:2.259533px;}
.ws5d{word-spacing:2.271473px;}
.ws76{word-spacing:2.331248px;}
.ws72{word-spacing:2.391024px;}
.ws94{word-spacing:2.450800px;}
.ws45{word-spacing:2.510575px;}
.ws6b{word-spacing:2.528525px;}
.ws3d{word-spacing:2.630126px;}
.ws36{word-spacing:2.689902px;}
.ws60{word-spacing:2.743718px;}
.ws34{word-spacing:2.749678px;}
.wsef{word-spacing:2.851315px;}
.ws8f{word-spacing:2.869229px;}
.wsb4{word-spacing:2.929004px;}
.ws4b{word-spacing:2.988780px;}
.ws5f{word-spacing:3.066509px;}
.ws68{word-spacing:3.120307px;}
.ws27{word-spacing:3.219667px;}
.ws1e{word-spacing:3.281702px;}
.wsa2{word-spacing:3.287658px;}
.ws8c{word-spacing:3.347434px;}
.ws52{word-spacing:3.466985px;}
.wsa6{word-spacing:3.526760px;}
.ws2b{word-spacing:3.586536px;}
.ws98{word-spacing:3.646312px;}
.ws2e{word-spacing:3.706087px;}
.ws25{word-spacing:3.765888px;}
.wsa7{word-spacing:3.825638px;}
.ws104{word-spacing:3.873485px;}
.ws31{word-spacing:3.885414px;}
.wsbe{word-spacing:3.945190px;}
.ws1f{word-spacing:3.981082px;}
.ws41{word-spacing:4.184292px;}
.ws22{word-spacing:4.196275px;}
.ws9c{word-spacing:4.303843px;}
.wsa3{word-spacing:4.363619px;}
.ws8a{word-spacing:4.483170px;}
.ws8b{word-spacing:4.542946px;}
.wsc2{word-spacing:4.602721px;}
.ws7c{word-spacing:4.722272px;}
.ws6a{word-spacing:4.788058px;}
.wsfb{word-spacing:4.841856px;}
.ws42{word-spacing:5.021150px;}
.ws20{word-spacing:5.057050px;}
.wsdf{word-spacing:5.200477px;}
.ws88{word-spacing:5.260253px;}
.ws82{word-spacing:5.320028px;}
.ws4e{word-spacing:5.618906px;}
.ws23{word-spacing:5.648832px;}
.wsa9{word-spacing:5.678682px;}
.ws21{word-spacing:5.702630px;}
.ws93{word-spacing:5.858009px;}
.wsc5{word-spacing:5.945100px;}
.ws7d{word-spacing:5.977560px;}
.ws46{word-spacing:6.037336px;}
.ws11{word-spacing:6.067206px;}
.wsc3{word-spacing:6.097111px;}
.ws12{word-spacing:6.150892px;}
.ws91{word-spacing:6.156887px;}
.wsde{word-spacing:6.216662px;}
.ws8d{word-spacing:6.276438px;}
.ws84{word-spacing:6.336214px;}
.ws14{word-spacing:6.832397px;}
.wse0{word-spacing:6.993745px;}
.ws3c{word-spacing:7.053521px;}
.wsb2{word-spacing:7.113296px;}
.ws81{word-spacing:7.173072px;}
.wsbf{word-spacing:7.292623px;}
.ws77{word-spacing:7.711052px;}
.ws78{word-spacing:7.711246px;}
.ws90{word-spacing:8.069706px;}
.ws9d{word-spacing:8.308808px;}
.ws9e{word-spacing:8.368584px;}
.ws86{word-spacing:8.428360px;}
.wsf{word-spacing:8.661460px;}
.wsc4{word-spacing:8.980164px;}
.ws106{word-spacing:9.145296px;}
.wsf7{word-spacing:9.145728px;}
.ws3b{word-spacing:10.102076px;}
.ws6{word-spacing:10.419364px;}
.wsf1{word-spacing:11.459059px;}
.wsba{word-spacing:11.662420px;}
.ws28{word-spacing:11.904472px;}
.wsc7{word-spacing:12.526615px;}
.wsc6{word-spacing:12.528665px;}
.wsf5{word-spacing:13.073011px;}
.wse9{word-spacing:13.180608px;}
.wse8{word-spacing:13.385117px;}
.ws109{word-spacing:13.391539px;}
.wseb{word-spacing:13.393661px;}
.wsea{word-spacing:13.395802px;}
.wse7{word-spacing:13.396320px;}
.wsf6{word-spacing:13.396387px;}
.wsf9{word-spacing:13.449600px;}
.ws102{word-spacing:13.503398px;}
.ws101{word-spacing:14.202778px;}
.wsb9{word-spacing:14.491534px;}
.ws4d{word-spacing:14.884124px;}
.ws2f{word-spacing:15.183002px;}
.ws5{word-spacing:15.483541px;}
.wsed{word-spacing:15.655334px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.ws18{word-spacing:16.269322px;}
.wsf8{word-spacing:16.619165px;}
.wsfa{word-spacing:16.620787px;}
.wsee{word-spacing:16.621344px;}
.wsfd{word-spacing:16.621469px;}
.wse5{word-spacing:16.622563px;}
.wsfe{word-spacing:16.622602px;}
.ws107{word-spacing:16.622986px;}
.wsf3{word-spacing:16.623706px;}
.ws103{word-spacing:16.624714px;}
.wsf2{word-spacing:16.785101px;}
.ws105{word-spacing:17.269286px;}
.wse{word-spacing:17.699504px;}
.ws96{word-spacing:18.034304px;}
.wsb8{word-spacing:18.036226px;}
.ws1a{word-spacing:18.471773px;}
.ws95{word-spacing:18.641340px;}
.wsb1{word-spacing:20.488735px;}
.wsb0{word-spacing:20.494735px;}
.ws10{word-spacing:27.448877px;}
.ws24{word-spacing:27.994474px;}
.wsfc{word-spacing:31.579661px;}
.wsd6{word-spacing:63.123034px;}
.wsad{word-spacing:141.456417px;}
.wsd9{word-spacing:142.505030px;}
.wsaf{word-spacing:144.238980px;}
.wsae{word-spacing:155.312445px;}
.wsd7{word-spacing:181.741734px;}
.wsdd{word-spacing:195.715200px;}
.wsca{word-spacing:196.841051px;}
.wscb{word-spacing:221.767476px;}
.wsdb{word-spacing:248.917200px;}
.wsc8{word-spacing:266.658952px;}
.wsd8{word-spacing:278.162168px;}
.wscc{word-spacing:296.546752px;}
.wsc9{word-spacing:317.023214px;}
.wsda{word-spacing:388.660951px;}
.wsdc{word-spacing:414.970073px;}
._1{margin-left:-11.943245px;}
._1a{margin-left:-7.710586px;}
._b{margin-left:-6.539473px;}
._21{margin-left:-5.499355px;}
._5{margin-left:-4.421621px;}
._8{margin-left:-3.408954px;}
._4{margin-left:-2.211697px;}
._6{margin-left:-1.023447px;}
._7{width:1.091170px;}
._2{width:2.991908px;}
._e{width:4.034880px;}
._8d{width:5.260253px;}
._1b{width:10.161852px;}
._10{width:12.427430px;}
._9{width:13.673135px;}
._17{width:14.822586px;}
._f{width:16.619724px;}
._11{width:17.871221px;}
._d{width:19.142078px;}
._14{width:20.604787px;}
._c{width:21.744706px;}
._13{width:23.456102px;}
._1d{width:24.627547px;}
._a{width:25.943736px;}
._12{width:27.012671px;}
._16{width:28.514611px;}
._15{width:29.690397px;}
._1c{width:30.832446px;}
._22{width:31.927432px;}
._0{width:33.355008px;}
._1e{width:34.975988px;}
._20{width:37.904992px;}
._34{width:40.176465px;}
._1f{width:44.233944px;}
._98{width:49.049624px;}
._3{width:54.423634px;}
._97{width:61.868160px;}
._62{width:63.123034px;}
._54{width:64.595904px;}
._77{width:67.646851px;}
._24{width:71.721981px;}
._56{width:74.853397px;}
._55{width:76.273666px;}
._93{width:77.900083px;}
._64{width:82.428161px;}
._79{width:83.532814px;}
._8e{width:86.410382px;}
._70{width:89.424298px;}
._7c{width:91.277341px;}
._51{width:99.878206px;}
._7d{width:108.014509px;}
._95{width:113.309582px;}
._52{width:119.879745px;}
._91{width:123.736320px;}
._94{width:127.556006px;}
._8f{width:133.581427px;}
._53{width:135.820835px;}
._5f{width:140.659160px;}
._84{width:142.505030px;}
._74{width:145.182977px;}
._5d{width:146.392835px;}
._6f{width:157.147661px;}
._90{width:159.888845px;}
._96{width:162.901555px;}
._92{width:165.591475px;}
._25{width:167.124141px;}
._6b{width:172.957112px;}
._6a{width:174.593164px;}
._2f{width:178.197606px;}
._8a{width:180.079704px;}
._59{width:182.731440px;}
._46{width:194.397513px;}
._58{width:197.890710px;}
._71{width:208.042998px;}
._4f{width:219.316676px;}
._7b{width:230.315387px;}
._40{width:236.771152px;}
._66{width:241.693194px;}
._39{width:243.310624px;}
._4c{width:251.115522px;}
._43{width:256.676426px;}
._89{width:260.567186px;}
._4d{width:262.355108px;}
._6c{width:264.012088px;}
._57{width:267.524044px;}
._36{width:270.723692px;}
._6e{width:274.990594px;}
._83{width:277.655888px;}
._3d{width:279.092276px;}
._78{width:280.940360px;}
._76{width:283.264613px;}
._86{width:288.815186px;}
._5a{width:290.375696px;}
._35{width:291.944030px;}
._68{width:295.669068px;}
._33{width:296.939223px;}
._47{width:300.910370px;}
._72{width:304.516035px;}
._5b{width:307.251366px;}
._29{width:310.965612px;}
._30{width:325.162362px;}
._7f{width:327.265098px;}
._4b{width:333.906502px;}
._26{width:337.485141px;}
._38{width:344.666110px;}
._3f{width:347.236460px;}
._2a{width:351.681891px;}
._45{width:356.202800px;}
._4e{width:359.610010px;}
._32{width:362.017125px;}
._2e{width:363.663948px;}
._28{width:376.157088px;}
._2c{width:377.747124px;}
._41{width:379.455509px;}
._3e{width:382.025860px;}
._44{width:389.497810px;}
._67{width:393.815644px;}
._5c{width:398.507010px;}
._5e{width:402.753647px;}
._4a{width:406.115426px;}
._27{width:418.917699px;}
._2d{width:420.564522px;}
._37{width:425.960926px;}
._7a{width:428.770379px;}
._31{width:433.171236px;}
._2b{width:434.761272px;}
._87{width:445.206895px;}
._82{width:449.273410px;}
._48{width:454.473887px;}
._80{width:477.487493px;}
._49{width:509.945644px;}
._3b{width:520.645476px;}
._42{width:539.560181px;}
._6d{width:545.119998px;}
._81{width:548.799784px;}
._60{width:556.147045px;}
._75{width:566.351935px;}
._65{width:576.279645px;}
._69{width:580.363691px;}
._7e{width:606.543013px;}
._63{width:610.810813px;}
._3c{width:681.142962px;}
._3a{width:688.794239px;}
._73{width:724.126400px;}
._61{width:729.274973px;}
._85{width:869.049198px;}
._18{width:1012.935949px;}
._88{width:1349.797079px;}
._8b{width:1954.794798px;}
._23{width:2532.908700px;}
._8c{width:2553.607790px;}
._19{width:2556.818700px;}
._50{width:4012.592700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs7{font-size:35.865600px;}
.fse{font-size:39.978048px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:52.602528px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.812208px;}
.fsa{font-size:56.058000px;}
.fsc{font-size:56.787000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yd{bottom:3.425340px;}
.yc{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y52{bottom:31.890000px;}
.y156{bottom:92.827500px;}
.y1bd{bottom:95.580000px;}
.y1b4{bottom:101.422500px;}
.y2d{bottom:102.823500px;}
.ye6{bottom:103.516500px;}
.y119{bottom:105.799500px;}
.y155{bottom:111.657000px;}
.y1bc{bottom:114.813000px;}
.y23f{bottom:115.902000px;}
.y1b3{bottom:120.252000px;}
.y2c{bottom:120.711000px;}
.ye5{bottom:122.346000px;}
.y118{bottom:124.627500px;}
.y154{bottom:130.486500px;}
.y23e{bottom:133.162500px;}
.y1bb{bottom:134.046000px;}
.y2b{bottom:138.600000px;}
.y1b2{bottom:139.081500px;}
.ye4{bottom:141.175500px;}
.y87{bottom:142.543500px;}
.y117{bottom:143.457000px;}
.y153{bottom:149.316000px;}
.y23d{bottom:150.423000px;}
.y1ba{bottom:153.279000px;}
.yb8{bottom:156.459000px;}
.y2a{bottom:156.487500px;}
.y1b1{bottom:157.911000px;}
.y86{bottom:161.373000px;}
.y116{bottom:162.286500px;}
.y163{bottom:162.735000px;}
.ye3{bottom:164.488500px;}
.y23c{bottom:167.683500px;}
.y152{bottom:168.145500px;}
.y193{bottom:170.838000px;}
.y1b9{bottom:172.512000px;}
.y29{bottom:174.375000px;}
.yb7{bottom:175.288500px;}
.y1b0{bottom:176.740500px;}
.y85{bottom:180.201000px;}
.y115{bottom:181.116000px;}
.y162{bottom:181.564500px;}
.y23b{bottom:184.944000px;}
.y151{bottom:186.975000px;}
.y192{bottom:189.667500px;}
.y271{bottom:189.858000px;}
.y20c{bottom:191.709000px;}
.y28{bottom:192.264000px;}
.yb6{bottom:194.118000px;}
.ye2{bottom:194.916000px;}
.y1af{bottom:195.570000px;}
.y1db{bottom:198.300000px;}
.y84{bottom:199.030500px;}
.y114{bottom:199.945500px;}
.y161{bottom:200.394000px;}
.y51{bottom:201.058500px;}
.y23a{bottom:202.203000px;}
.y150{bottom:205.804500px;}
.y270{bottom:207.118500px;}
.y191{bottom:208.497000px;}
.y27{bottom:210.151500px;}
.y20b{bottom:210.538500px;}
.yb5{bottom:212.947500px;}
.ye1{bottom:214.149000px;}
.y1ae{bottom:214.399500px;}
.y1da{bottom:216.232500px;}
.y83{bottom:217.860000px;}
.y113{bottom:218.775000px;}
.y160{bottom:219.223500px;}
.y239{bottom:219.463500px;}
.y26f{bottom:224.379000px;}
.y14f{bottom:224.632500px;}
.y190{bottom:227.326500px;}
.y26{bottom:228.039000px;}
.y20a{bottom:229.368000px;}
.yb4{bottom:231.777000px;}
.y1ad{bottom:233.229000px;}
.ye0{bottom:233.382000px;}
.y1d9{bottom:234.166500px;}
.yd5{bottom:234.736500px;}
.y82{bottom:236.689500px;}
.y238{bottom:236.724000px;}
.y13e{bottom:237.604500px;}
.y15f{bottom:238.053000px;}
.y50{bottom:238.449000px;}
.y26e{bottom:241.639500px;}
.y112{bottom:242.088000px;}
.y14e{bottom:243.462000px;}
.y18f{bottom:246.156000px;}
.y209{bottom:248.197500px;}
.yb3{bottom:250.606500px;}
.y1ac{bottom:252.058500px;}
.y1d8{bottom:252.099000px;}
.ydf{bottom:252.615000px;}
.yd4{bottom:253.969500px;}
.y237{bottom:253.984500px;}
.y81{bottom:255.519000px;}
.y13d{bottom:256.434000px;}
.y15e{bottom:256.882500px;}
.y4f{bottom:257.905500px;}
.y26d{bottom:258.900000px;}
.y14d{bottom:262.291500px;}
.y18e{bottom:264.985500px;}
.y208{bottom:267.027000px;}
.yb2{bottom:269.436000px;}
.y1d7{bottom:270.031500px;}
.y1ab{bottom:270.888000px;}
.y236{bottom:271.245000px;}
.yde{bottom:271.848000px;}
.yd3{bottom:273.202500px;}
.y80{bottom:274.348500px;}
.y13c{bottom:275.263500px;}
.y111{bottom:275.712000px;}
.y26c{bottom:276.160500px;}
.y4e{bottom:277.362000px;}
.y14c{bottom:281.121000px;}
.y18d{bottom:283.815000px;}
.y207{bottom:285.856500px;}
.y1d6{bottom:287.964000px;}
.yb1{bottom:288.265500px;}
.y235{bottom:288.505500px;}
.y1aa{bottom:289.717500px;}
.ydd{bottom:291.081000px;}
.yd2{bottom:292.435500px;}
.y7f{bottom:293.178000px;}
.y26b{bottom:293.421000px;}
.y13b{bottom:294.093000px;}
.y110{bottom:294.541500px;}
.y4d{bottom:296.820000px;}
.y18c{bottom:302.644500px;}
.y14b{bottom:304.434000px;}
.y206{bottom:304.686000px;}
.y1d5{bottom:305.896500px;}
.yb0{bottom:307.095000px;}
.y25{bottom:307.299000px;}
.y1a9{bottom:308.547000px;}
.y234{bottom:310.249500px;}
.ydc{bottom:310.312500px;}
.y26a{bottom:310.681500px;}
.yd1{bottom:311.668500px;}
.y7e{bottom:312.007500px;}
.y13a{bottom:312.922500px;}
.y10f{bottom:313.371000px;}
.y4c{bottom:316.276500px;}
.y18b{bottom:321.474000px;}
.y205{bottom:323.515500px;}
.y1d4{bottom:323.829000px;}
.y24{bottom:325.186500px;}
.yaf{bottom:325.924500px;}
.y1a8{bottom:327.376500px;}
.y269{bottom:327.940500px;}
.ydb{bottom:329.545500px;}
.y7d{bottom:330.837000px;}
.yd0{bottom:330.901500px;}
.y139{bottom:331.752000px;}
.y10e{bottom:332.200500px;}
.y14a{bottom:334.861500px;}
.y4b{bottom:335.734500px;}
.y204{bottom:342.343500px;}
.y23{bottom:343.074000px;}
.yae{bottom:344.754000px;}
.y18a{bottom:344.787000px;}
.y268{bottom:345.201000px;}
.y233{bottom:345.931500px;}
.y1a7{bottom:346.206000px;}
.yda{bottom:348.778500px;}
.y7c{bottom:349.666500px;}
.ycf{bottom:350.134500px;}
.y138{bottom:350.581500px;}
.y10d{bottom:351.030000px;}
.y149{bottom:354.094500px;}
.y4a{bottom:355.191000px;}
.y1d3{bottom:359.695500px;}
.y22{bottom:360.963000px;}
.y203{bottom:361.173000px;}
.y267{bottom:362.461500px;}
.y232{bottom:363.505500px;}
.y1a6{bottom:365.035500px;}
.yd9{bottom:368.011500px;}
.yad{bottom:368.065500px;}
.y7b{bottom:368.496000px;}
.yce{bottom:369.367500px;}
.y137{bottom:369.411000px;}
.y10c{bottom:369.859500px;}
.y148{bottom:373.327500px;}
.y49{bottom:374.647500px;}
.y189{bottom:378.411000px;}
.y266{bottom:379.722000px;}
.y202{bottom:380.002500px;}
.y231{bottom:381.081000px;}
.y1a5{bottom:383.865000px;}
.y1d2{bottom:385.129500px;}
.yd8{bottom:387.244500px;}
.y7a{bottom:387.325500px;}
.y136{bottom:388.240500px;}
.ycd{bottom:388.599000px;}
.y10b{bottom:388.689000px;}
.y48{bottom:394.105500px;}
.y265{bottom:396.982500px;}
.y188{bottom:397.240500px;}
.y230{bottom:398.655000px;}
.y201{bottom:398.832000px;}
.y21{bottom:399.024000px;}
.yac{bottom:401.689500px;}
.y1a4{bottom:402.694500px;}
.y79{bottom:406.155000px;}
.yd7{bottom:406.477500px;}
.y135{bottom:407.070000px;}
.y10a{bottom:407.518500px;}
.ycc{bottom:407.832000px;}
.y47{bottom:413.562000px;}
.y264{bottom:414.243000px;}
.y187{bottom:416.070000px;}
.y22f{bottom:416.229000px;}
.y20{bottom:416.913000px;}
.y200{bottom:417.661500px;}
.y1d1{bottom:417.795000px;}
.yab{bottom:420.519000px;}
.y1a3{bottom:421.524000px;}
.y78{bottom:424.984500px;}
.yd6{bottom:425.710500px;}
.y134{bottom:425.899500px;}
.y109{bottom:426.348000px;}
.ycb{bottom:427.065000px;}
.y263{bottom:431.503500px;}
.y46{bottom:433.018500px;}
.y22e{bottom:433.803000px;}
.y1f{bottom:434.800500px;}
.y186{bottom:434.899500px;}
.yaa{bottom:439.348500px;}
.y1ff{bottom:440.974500px;}
.y77{bottom:443.814000px;}
.y133{bottom:444.729000px;}
.y108{bottom:445.177500px;}
.yca{bottom:446.298000px;}
.y262{bottom:448.764000px;}
.y22d{bottom:451.377000px;}
.y45{bottom:452.476500px;}
.y185{bottom:453.729000px;}
.ya9{bottom:458.178000px;}
.y1d0{bottom:461.724240px;}
.y76{bottom:462.643500px;}
.y132{bottom:463.558500px;}
.y107{bottom:464.007000px;}
.yc9{bottom:465.531000px;}
.y261{bottom:466.024500px;}
.y15d{bottom:468.489000px;}
.y1a2{bottom:468.928500px;}
.y22c{bottom:468.951000px;}
.y1e{bottom:470.622000px;}
.y44{bottom:471.933000px;}
.y184{bottom:472.558500px;}
.y1fe{bottom:474.598500px;}
.ya8{bottom:477.007500px;}
.y1cf{bottom:477.504840px;}
.y75{bottom:481.473000px;}
.y131{bottom:482.388000px;}
.y106{bottom:482.836500px;}
.y260{bottom:483.283500px;}
.y22b{bottom:486.525000px;}
.y1a1{bottom:486.861000px;}
.y1d{bottom:488.509500px;}
.y183{bottom:491.388000px;}
.y43{bottom:491.391000px;}
.y1ce{bottom:493.286760px;}
.y1fd{bottom:493.428000px;}
.ya7{bottom:495.837000px;}
.y74{bottom:500.302500px;}
.y25f{bottom:500.544000px;}
.y130{bottom:501.217500px;}
.y105{bottom:501.666000px;}
.y15c{bottom:502.113000px;}
.y22a{bottom:504.099000px;}
.y1a0{bottom:504.793500px;}
.y1cd{bottom:509.067360px;}
.y182{bottom:510.217500px;}
.y42{bottom:510.847500px;}
.y1fc{bottom:512.257500px;}
.ya6{bottom:514.666500px;}
.y25e{bottom:517.804500px;}
.y73{bottom:519.132000px;}
.y12f{bottom:520.047000px;}
.y104{bottom:520.495500px;}
.y15b{bottom:520.942500px;}
.y229{bottom:521.673000px;}
.y19f{bottom:522.726000px;}
.y1c{bottom:524.329500px;}
.y1cc{bottom:524.847960px;}
.y181{bottom:529.045500px;}
.y41{bottom:530.304000px;}
.y1fb{bottom:531.087000px;}
.ya5{bottom:533.496000px;}
.y25d{bottom:535.065000px;}
.y72{bottom:537.961500px;}
.y12e{bottom:538.876500px;}
.y228{bottom:539.247000px;}
.y103{bottom:539.323500px;}
.y15a{bottom:539.772000px;}
.y1cb{bottom:540.628560px;}
.y19e{bottom:540.658500px;}
.y1b{bottom:542.218500px;}
.y180{bottom:547.875000px;}
.y40{bottom:549.762000px;}
.y1fa{bottom:549.916500px;}
.ya4{bottom:552.325500px;}
.y1ca{bottom:556.409160px;}
.y71{bottom:556.791000px;}
.y227{bottom:556.821000px;}
.y12d{bottom:557.706000px;}
.y102{bottom:558.153000px;}
.y19d{bottom:558.592500px;}
.y159{bottom:558.601500px;}
.y1a{bottom:560.106000px;}
.y17f{bottom:566.704500px;}
.y1f9{bottom:568.746000px;}
.y3f{bottom:569.218500px;}
.y25c{bottom:569.586000px;}
.ya3{bottom:571.155000px;}
.y1c9{bottom:572.191080px;}
.y226{bottom:574.395000px;}
.y70{bottom:575.620500px;}
.y19c{bottom:576.525000px;}
.y12c{bottom:576.535500px;}
.y1b8{bottom:576.982500px;}
.y158{bottom:577.431000px;}
.y19{bottom:577.993500px;}
.y101{bottom:581.466000px;}
.y17e{bottom:585.534000px;}
.y25b{bottom:586.846500px;}
.y1f8{bottom:587.575500px;}
.y1c8{bottom:587.971680px;}
.ya2{bottom:589.984500px;}
.y225{bottom:591.969000px;}
.y6f{bottom:594.450000px;}
.y19b{bottom:594.457500px;}
.y147{bottom:595.365000px;}
.y1b7{bottom:595.812000px;}
.y18{bottom:595.882500px;}
.y157{bottom:596.260500px;}
.y12b{bottom:599.847000px;}
.y1c7{bottom:603.752280px;}
.y25a{bottom:604.107000px;}
.y17d{bottom:604.363500px;}
.y1f7{bottom:606.405000px;}
.y3e{bottom:607.804500px;}
.ya1{bottom:608.814000px;}
.y224{bottom:609.543000px;}
.y19a{bottom:612.390000px;}
.y6e{bottom:613.279500px;}
.y17{bottom:613.770000px;}
.y146{bottom:614.194500px;}
.y1b6{bottom:614.641500px;}
.y100{bottom:615.090000px;}
.y1c6{bottom:619.532880px;}
.y259{bottom:621.366000px;}
.y17c{bottom:623.193000px;}
.y3d{bottom:623.943000px;}
.y1f6{bottom:625.234500px;}
.y223{bottom:627.117000px;}
.ya0{bottom:627.643500px;}
.y199{bottom:630.322500px;}
.y16{bottom:631.657500px;}
.y6d{bottom:632.109000px;}
.y145{bottom:633.022500px;}
.y12a{bottom:633.471000px;}
.yff{bottom:633.919500px;}
.y1c5{bottom:635.313480px;}
.y258{bottom:638.626500px;}
.y17b{bottom:642.022500px;}
.y1f5{bottom:644.064000px;}
.y3c{bottom:644.422500px;}
.y9f{bottom:646.473000px;}
.y198{bottom:648.255000px;}
.y15{bottom:649.546500px;}
.y6c{bottom:650.938500px;}
.y1c4{bottom:651.094080px;}
.y144{bottom:651.852000px;}
.y129{bottom:652.300500px;}
.yfe{bottom:652.749000px;}
.y257{bottom:655.887000px;}
.y3b{bottom:656.223000px;}
.y222{bottom:658.488000px;}
.y17a{bottom:660.852000px;}
.y1f4{bottom:662.893500px;}
.y9e{bottom:665.302500px;}
.y197{bottom:666.189000px;}
.y1c3{bottom:666.876000px;}
.y14{bottom:667.434000px;}
.y6b{bottom:669.768000px;}
.y128{bottom:671.130000px;}
.yfd{bottom:671.578500px;}
.y256{bottom:673.147500px;}
.y143{bottom:675.165000px;}
.y3a{bottom:676.702500px;}
.y179{bottom:679.681500px;}
.y221{bottom:680.545500px;}
.y1f3{bottom:681.723000px;}
.y1c2{bottom:682.656600px;}
.y9d{bottom:684.132000px;}
.y13{bottom:685.321500px;}
.y39{bottom:688.501500px;}
.y6a{bottom:688.596000px;}
.y127{bottom:689.959500px;}
.yfc{bottom:690.408000px;}
.y196{bottom:691.623000px;}
.y178{bottom:698.511000px;}
.y1f2{bottom:700.552500px;}
.y9c{bottom:702.961500px;}
.y12{bottom:703.210500px;}
.y1c1{bottom:705.038520px;}
.y69{bottom:707.425500px;}
.y255{bottom:707.668500px;}
.y126{bottom:708.789000px;}
.y38{bottom:708.981000px;}
.yfb{bottom:709.237500px;}
.y220{bottom:717.307500px;}
.y177{bottom:717.340500px;}
.y1f1{bottom:719.382000px;}
.y11{bottom:721.098000px;}
.y9b{bottom:721.791000px;}
.y195{bottom:724.288500px;}
.y254{bottom:724.929000px;}
.y37{bottom:725.121000px;}
.y68{bottom:726.255000px;}
.y125{bottom:727.618500px;}
.yfa{bottom:728.067000px;}
.y21f{bottom:734.881500px;}
.y1c0{bottom:735.861000px;}
.y176{bottom:736.170000px;}
.y36{bottom:736.920000px;}
.y1f0{bottom:738.211500px;}
.y10{bottom:738.985500px;}
.y253{bottom:742.189500px;}
.y67{bottom:745.084500px;}
.y9a{bottom:745.102500px;}
.y124{bottom:746.448000px;}
.yf9{bottom:746.896500px;}
.y21e{bottom:752.455500px;}
.y175{bottom:754.999500px;}
.y1bf{bottom:755.094000px;}
.yf{bottom:756.874500px;}
.y1ef{bottom:757.039500px;}
.y35{bottom:757.399500px;}
.y252{bottom:759.450000px;}
.y194{bottom:759.897000px;}
.y66{bottom:763.914000px;}
.y123{bottom:765.277500px;}
.yf8{bottom:765.726000px;}
.y34{bottom:769.200000px;}
.y174{bottom:773.829000px;}
.ye{bottom:774.762000px;}
.y1ee{bottom:775.869000px;}
.y251{bottom:776.709000px;}
.y99{bottom:778.726500px;}
.y21d{bottom:778.996500px;}
.y65{bottom:782.743500px;}
.y122{bottom:784.107000px;}
.yf7{bottom:784.555500px;}
.y33{bottom:789.679500px;}
.y173{bottom:792.658500px;}
.y250{bottom:793.969500px;}
.y1ed{bottom:794.698500px;}
.yb{bottom:797.132964px;}
.y98{bottom:797.556000px;}
.yc8{bottom:798.901500px;}
.y32{bottom:801.478500px;}
.y64{bottom:801.573000px;}
.y121{bottom:802.936500px;}
.yf6{bottom:803.385000px;}
.y21c{bottom:805.537500px;}
.y1be{bottom:807.729000px;}
.y24f{bottom:811.230000px;}
.y1ec{bottom:813.528000px;}
.y172{bottom:815.971500px;}
.y97{bottom:816.385500px;}
.y31{bottom:817.618500px;}
.yc7{bottom:817.731000px;}
.y63{bottom:820.402500px;}
.y120{bottom:821.766000px;}
.yf5{bottom:822.214500px;}
.y21b{bottom:823.111500px;}
.y24e{bottom:828.490500px;}
.y1eb{bottom:832.357500px;}
.y96{bottom:835.215000px;}
.yc6{bottom:836.560500px;}
.y30{bottom:838.098000px;}
.y62{bottom:839.232000px;}
.y11f{bottom:840.595500px;}
.y21a{bottom:840.685500px;}
.yf4{bottom:841.044000px;}
.y24d{bottom:845.751000px;}
.y2f{bottom:849.897000px;}
.y1ea{bottom:851.187000px;}
.y95{bottom:854.044500px;}
.yc5{bottom:855.390000px;}
.y61{bottom:858.061500px;}
.y219{bottom:858.259500px;}
.y11e{bottom:859.425000px;}
.yf3{bottom:859.873500px;}
.y171{bottom:859.968000px;}
.y24c{bottom:863.011500px;}
.y1e9{bottom:870.016500px;}
.y2e{bottom:870.376500px;}
.y94{bottom:872.874000px;}
.yc4{bottom:874.219500px;}
.y218{bottom:875.833500px;}
.y60{bottom:876.891000px;}
.y170{bottom:877.005000px;}
.y11d{bottom:878.254500px;}
.yf2{bottom:878.703000px;}
.y24b{bottom:880.272000px;}
.y1e8{bottom:888.846000px;}
.y93{bottom:891.703500px;}
.yc3{bottom:893.049000px;}
.y217{bottom:893.407500px;}
.y16f{bottom:894.040500px;}
.y5f{bottom:895.720500px;}
.y11c{bottom:897.084000px;}
.yf1{bottom:897.532500px;}
.y1e7{bottom:907.675500px;}
.y92{bottom:910.533000px;}
.ya{bottom:910.570500px;}
.y16e{bottom:911.076000px;}
.yc2{bottom:911.878500px;}
.y5e{bottom:914.550000px;}
.y24a{bottom:914.793000px;}
.y11b{bottom:915.913500px;}
.yf0{bottom:916.362000px;}
.y216{bottom:919.948500px;}
.y1e6{bottom:926.505000px;}
.y16d{bottom:928.113000px;}
.y91{bottom:929.362500px;}
.y9{bottom:929.400000px;}
.yc1{bottom:930.708000px;}
.y249{bottom:932.052000px;}
.y5d{bottom:933.379500px;}
.y142{bottom:934.743000px;}
.yef{bottom:935.191500px;}
.y215{bottom:937.522500px;}
.y11a{bottom:939.226500px;}
.y16c{bottom:945.148500px;}
.y1e5{bottom:945.334500px;}
.y90{bottom:948.192000px;}
.y8{bottom:948.228000px;}
.y248{bottom:949.312500px;}
.yc0{bottom:949.537500px;}
.y5c{bottom:952.209000px;}
.y141{bottom:953.572500px;}
.yee{bottom:954.021000px;}
.y1b5{bottom:958.054500px;}
.y16b{bottom:962.185500px;}
.y214{bottom:964.062000px;}
.y1e4{bottom:964.164000px;}
.y247{bottom:966.573000px;}
.y8f{bottom:967.021500px;}
.y7{bottom:967.057500px;}
.ybf{bottom:968.367000px;}
.y5b{bottom:971.038500px;}
.y140{bottom:972.402000px;}
.yed{bottom:972.849000px;}
.y16a{bottom:979.221000px;}
.y213{bottom:981.637500px;}
.y1e3{bottom:982.993500px;}
.y246{bottom:983.833500px;}
.y8e{bottom:985.851000px;}
.ybe{bottom:987.196500px;}
.y5a{bottom:989.868000px;}
.yec{bottom:991.678500px;}
.y13f{bottom:995.713500px;}
.y169{bottom:996.256500px;}
.y212{bottom:999.211500px;}
.y245{bottom:1001.094000px;}
.y1e2{bottom:1001.823000px;}
.y8d{bottom:1004.680500px;}
.ybd{bottom:1006.026000px;}
.y59{bottom:1008.697500px;}
.yeb{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y168{bottom:1013.293500px;}
.y211{bottom:1016.785500px;}
.y244{bottom:1018.354500px;}
.y1e1{bottom:1020.652500px;}
.y8c{bottom:1023.510000px;}
.ybc{bottom:1024.855500px;}
.y58{bottom:1027.527000px;}
.yea{bottom:1029.337500px;}
.y167{bottom:1030.329000px;}
.y210{bottom:1034.359500px;}
.y243{bottom:1035.615000px;}
.y1e0{bottom:1039.482000px;}
.y5{bottom:1041.199500px;}
.y8b{bottom:1042.339500px;}
.ybb{bottom:1043.685000px;}
.y57{bottom:1046.356500px;}
.ye9{bottom:1048.167000px;}
.y20f{bottom:1051.933500px;}
.y242{bottom:1052.875500px;}
.y166{bottom:1054.866000px;}
.y1df{bottom:1058.311500px;}
.y8a{bottom:1061.169000px;}
.yba{bottom:1062.513000px;}
.y56{bottom:1065.186000px;}
.ye8{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y20e{bottom:1069.507500px;}
.y241{bottom:1070.134500px;}
.y1de{bottom:1077.141000px;}
.yb9{bottom:1081.342500px;}
.y55{bottom:1084.015500px;}
.y89{bottom:1084.482000px;}
.ye7{bottom:1085.826000px;}
.y165{bottom:1086.904500px;}
.y20d{bottom:1087.081500px;}
.y240{bottom:1087.395000px;}
.y1dd{bottom:1095.970500px;}
.y3{bottom:1097.688000px;}
.y88{bottom:1104.655500px;}
.y164{bottom:1106.137500px;}
.y54{bottom:1107.327000px;}
.y1dc{bottom:1119.283500px;}
.y1{bottom:1141.174500px;}
.y53{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.h17{height:27.855430px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.he{height:34.813397px;}
.h12{height:35.052500px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h11{height:39.434227px;}
.h18{height:41.057001px;}
.h1e{height:41.109156px;}
.h19{height:41.340936px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.h4{height:43.815515px;}
.h15{height:46.714950px;}
.h1d{height:47.996609px;}
.h2{height:50.930649px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h16{height:54.768749px;}
.h1a{height:54.774749px;}
.h5{height:77.792486px;}
.h3{height:94.491000px;}
.h1b{height:892.914000px;}
.h1c{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x94{left:55.867500px;}
.x2{left:58.555600px;}
.xba{left:61.890960px;}
.x90{left:79.644000px;}
.x91{left:83.940000px;}
.x8e{left:85.446000px;}
.xbc{left:133.156500px;}
.x8f{left:136.681500px;}
.xbb{left:197.088000px;}
.x95{left:199.098000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x8a{left:251.905500px;}
.x99{left:256.428000px;}
.x6d{left:259.863000px;}
.xad{left:264.640500px;}
.x87{left:268.665000px;}
.x5{left:270.622500px;}
.x6e{left:276.126000px;}
.xb3{left:280.344000px;}
.x8{left:281.950500px;}
.x9a{left:284.868000px;}
.x88{left:286.239000px;}
.x42{left:292.549500px;}
.x5c{left:294.022500px;}
.x12{left:296.010000px;}
.xaf{left:297.490500px;}
.x43{left:300.766500px;}
.x3a{left:308.137500px;}
.x7{left:309.477000px;}
.x39{left:311.184000px;}
.xb0{left:313.795500px;}
.x4a{left:315.999000px;}
.x96{left:317.062500px;}
.x4b{left:325.230000px;}
.x6b{left:326.776500px;}
.x7a{left:332.718000px;}
.xa3{left:334.066500px;}
.x6c{left:336.483000px;}
.x5d{left:338.673000px;}
.x9{left:343.875000px;}
.x37{left:345.498000px;}
.x38{left:351.475500px;}
.xb4{left:355.047000px;}
.x5e{left:356.362500px;}
.x40{left:362.205000px;}
.xb5{left:369.990000px;}
.x41{left:373.408500px;}
.xae{left:377.640000px;}
.xc1{left:379.480500px;}
.x7b{left:381.621000px;}
.x24{left:389.025000px;}
.xc0{left:392.262000px;}
.xa6{left:394.960500px;}
.x7c{left:396.724500px;}
.x8b{left:399.744000px;}
.x5f{left:401.011500px;}
.x25{left:403.968000px;}
.x57{left:406.851000px;}
.xa7{left:411.486000px;}
.x4e{left:413.148000px;}
.x84{left:416.979000px;}
.x60{left:418.701000px;}
.xa2{left:422.029500px;}
.x4f{left:428.092500px;}
.xb1{left:433.891500px;}
.xa{left:436.011000px;}
.x97{left:438.667500px;}
.x31{left:441.999000px;}
.x8c{left:443.194500px;}
.x61{left:445.092000px;}
.xaa{left:447.181500px;}
.x1e{left:448.416000px;}
.x6a{left:450.295500px;}
.x3f{left:452.307000px;}
.x1f{left:455.887500px;}
.x32{left:457.200000px;}
.x1b{left:458.617500px;}
.xb2{left:462.330000px;}
.x1c{left:466.090500px;}
.x98{left:467.106000px;}
.x58{left:470.209500px;}
.x44{left:472.125000px;}
.xb{left:473.698500px;}
.x33{left:476.026500px;}
.x72{left:479.002500px;}
.x1d{left:481.048500px;}
.x17{left:483.654000px;}
.x50{left:484.849500px;}
.x89{left:488.557500px;}
.x18{left:491.125500px;}
.x19{left:494.907000px;}
.x45{left:497.368500px;}
.x51{left:499.794000px;}
.x1a{left:502.378500px;}
.x67{left:504.931500px;}
.xb6{left:506.301000px;}
.x34{left:508.843500px;}
.x2d{left:511.354500px;}
.x20{left:512.725500px;}
.x9f{left:514.372500px;}
.x59{left:515.833500px;}
.x8d{left:518.452500px;}
.x21{left:520.197000px;}
.xe{left:523.528500px;}
.x2e{left:526.299000px;}
.x69{left:530.851500px;}
.x5a{left:533.568000px;}
.xa8{left:535.524000px;}
.x46{left:537.807000px;}
.x75{left:545.283000px;}
.x4c{left:546.991500px;}
.xab{left:549.126000px;}
.x47{left:553.003500px;}
.x4d{left:556.222500px;}
.xf{left:557.311500px;}
.x5b{left:559.959000px;}
.x76{left:562.690500px;}
.xa9{left:564.760500px;}
.x85{left:569.559000px;}
.xa0{left:571.300500px;}
.x52{left:575.547000px;}
.x63{left:577.068000px;}
.x92{left:579.181500px;}
.x77{left:580.923000px;}
.x93{left:584.560500px;}
.xac{left:588.990000px;}
.x80{left:591.261000px;}
.x48{left:595.846500px;}
.x53{left:600.369000px;}
.xa1{left:601.555500px;}
.x86{left:602.616000px;}
.xa4{left:603.702000px;}
.x81{left:606.205500px;}
.x82{left:609.865500px;}
.x49{left:611.041500px;}
.xc{left:619.468500px;}
.x83{left:624.810000px;}
.x9d{left:626.448000px;}
.x2f{left:630.303000px;}
.x64{left:633.288000px;}
.xa5{left:635.889000px;}
.x6f{left:636.903000px;}
.x30{left:645.490500px;}
.x65{left:654.690000px;}
.xd{left:657.157500px;}
.x9e{left:658.585500px;}
.x10{left:664.141500px;}
.x66{left:669.634500px;}
.x7d{left:671.646000px;}
.x7e{left:675.456000px;}
.xc3{left:677.851500px;}
.xc7{left:682.380000px;}
.x73{left:685.777500px;}
.x78{left:688.255500px;}
.x7f{left:690.400500px;}
.x62{left:691.639500px;}
.x11{left:697.924500px;}
.xbd{left:702.672000px;}
.xc4{left:704.751000px;}
.x26{left:706.135500px;}
.x79{left:707.151000px;}
.x27{left:721.078500px;}
.x28{left:724.740000px;}
.xc5{left:729.822000px;}
.x29{left:739.684500px;}
.x3b{left:745.099500px;}
.x54{left:747.228000px;}
.x3c{left:755.563500px;}
.x9b{left:757.783500px;}
.x3d{left:763.857000px;}
.x70{left:766.693500px;}
.xc2{left:768.532500px;}
.x3e{left:772.827000px;}
.xb7{left:777.234000px;}
.x2a{left:784.665000px;}
.x13{left:786.991500px;}
.x9c{left:789.976500px;}
.x55{left:791.637000px;}
.x14{left:794.464500px;}
.x15{left:798.274500px;}
.x2b{left:799.608000px;}
.x56{left:800.866500px;}
.x2c{left:803.419500px;}
.x16{left:805.747500px;}
.x71{left:808.551000px;}
.xc6{left:810.265500px;}
.x22{left:817.716000px;}
.x35{left:819.453000px;}
.x23{left:832.659000px;}
.x36{left:833.949000px;}
.x68{left:835.506000px;}
.x74{left:837.120000px;}
.xb8{left:893.871000px;}
.xb9{left:900.763500px;}
.xbe{left:995.478000px;}
.xbf{left:1125.903000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-9.648000pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.648000pt;}
.v7{vertical-align:16.971093pt;}
.v1{vertical-align:19.290667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000540pt;}
.ls48{letter-spacing:0.002525pt;}
.ls3b{letter-spacing:0.561231pt;}
.ls31{letter-spacing:0.601600pt;}
.ls21{letter-spacing:0.637762pt;}
.ls1d{letter-spacing:0.665067pt;}
.ls16{letter-spacing:1.009183pt;}
.ls9{letter-spacing:1.060267pt;}
.lsc{letter-spacing:1.133683pt;}
.ls20{letter-spacing:1.157835pt;}
.ls11{letter-spacing:1.192259pt;}
.ls24{letter-spacing:1.197593pt;}
.ls32{letter-spacing:1.612388pt;}
.ls4{letter-spacing:1.654338pt;}
.ls13{letter-spacing:1.691850pt;}
.ls38{letter-spacing:1.707676pt;}
.ls18{letter-spacing:1.974516pt;}
.ls19{letter-spacing:1.979850pt;}
.ls2{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.657067pt;}
.ls15{letter-spacing:10.397762pt;}
.ls47{letter-spacing:10.624392pt;}
.lsa{letter-spacing:10.626533pt;}
.ls14{letter-spacing:11.111733pt;}
.ls49{letter-spacing:11.761807pt;}
.ls45{letter-spacing:11.954133pt;}
.ls46{letter-spacing:11.959467pt;}
.ls4a{letter-spacing:12.098781pt;}
.ls2d{letter-spacing:12.175924pt;}
.ls10{letter-spacing:12.752128pt;}
.lse{letter-spacing:13.017797pt;}
.lsd{letter-spacing:13.124065pt;}
.ls17{letter-spacing:13.321295pt;}
.ls39{letter-spacing:13.571712pt;}
.ls3f{letter-spacing:13.944877pt;}
.ls40{letter-spacing:13.945067pt;}
.ls42{letter-spacing:13.950210pt;}
.ls3e{letter-spacing:13.950400pt;}
.lsf{letter-spacing:14.399278pt;}
.ls3a{letter-spacing:14.739791pt;}
.ls1e{letter-spacing:15.400429pt;}
.ls12{letter-spacing:16.061762pt;}
.ls30{letter-spacing:16.064696pt;}
.ls22{letter-spacing:16.083733pt;}
.ls23{letter-spacing:16.089067pt;}
.ls2b{letter-spacing:16.110400pt;}
.ls1f{letter-spacing:16.163733pt;}
.ls2c{letter-spacing:17.507733pt;}
.ls1b{letter-spacing:17.733852pt;}
.ls1a{letter-spacing:17.739185pt;}
.ls29{letter-spacing:18.075733pt;}
.ls27{letter-spacing:19.315733pt;}
.ls2e{letter-spacing:19.913067pt;}
.ls2f{letter-spacing:20.457067pt;}
.ls28{letter-spacing:21.006400pt;}
.ls26{letter-spacing:22.659733pt;}
.ls2a{letter-spacing:22.750400pt;}
.ls25{letter-spacing:22.761067pt;}
.ls8{letter-spacing:23.126084pt;}
.ls7{letter-spacing:23.131418pt;}
.ls0{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ls35{letter-spacing:107.401275pt;}
.ls36{letter-spacing:107.405968pt;}
.ls37{letter-spacing:121.570448pt;}
.ls33{letter-spacing:142.330965pt;}
.ls34{letter-spacing:158.699408pt;}
.ls3d{letter-spacing:271.383733pt;}
.ls44{letter-spacing:334.162400pt;}
.ls43{letter-spacing:422.685067pt;}
.ls41{letter-spacing:442.797067pt;}
.ls3c{letter-spacing:448.823733pt;}
.ws59{word-spacing:-13.283467pt;}
.wse6{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws7a{word-spacing:-4.622646pt;}
.ws49{word-spacing:-2.869229pt;}
.wsb7{word-spacing:-2.550426pt;}
.wsb3{word-spacing:-2.497292pt;}
.ws80{word-spacing:-2.344542pt;}
.ws7f{word-spacing:-2.339209pt;}
.ws1b{word-spacing:-2.056294pt;}
.ws3f{word-spacing:-2.019087pt;}
.wsbd{word-spacing:-1.965953pt;}
.ws83{word-spacing:-1.912819pt;}
.wsf0{word-spacing:-1.721549pt;}
.ws4{word-spacing:-1.696326pt;}
.ws44{word-spacing:-1.540882pt;}
.wsd2{word-spacing:-1.530266pt;}
.wsc1{word-spacing:-1.346999pt;}
.wsd0{word-spacing:-1.338982pt;}
.wsc0{word-spacing:-1.328347pt;}
.wsa1{word-spacing:-1.275213pt;}
.ws54{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws75{word-spacing:-1.168945pt;}
.ws85{word-spacing:-1.115811pt;}
.wsd1{word-spacing:-1.099878pt;}
.ws9f{word-spacing:-1.062677pt;}
.ws5a{word-spacing:-1.009543pt;}
.ws92{word-spacing:-0.956410pt;}
.ws50{word-spacing:-0.903276pt;}
.wse4{word-spacing:-0.860774pt;}
.wsa4{word-spacing:-0.797008pt;}
.wse1{word-spacing:-0.765133pt;}
.ws5c{word-spacing:-0.743874pt;}
.wsff{word-spacing:-0.717312pt;}
.ws51{word-spacing:-0.690740pt;}
.wsd4{word-spacing:-0.669491pt;}
.wsaa{word-spacing:-0.637606pt;}
.ws6c{word-spacing:-0.621670pt;}
.ws7b{word-spacing:-0.611209pt;}
.ws74{word-spacing:-0.584473pt;}
.ws73{word-spacing:-0.531339pt;}
.ws48{word-spacing:-0.478205pt;}
.wsd5{word-spacing:-0.430387pt;}
.ws99{word-spacing:-0.425071pt;}
.wsac{word-spacing:-0.382566pt;}
.ws97{word-spacing:-0.371937pt;}
.ws43{word-spacing:-0.318803pt;}
.wsf4{word-spacing:-0.286925pt;}
.ws7e{word-spacing:-0.280920pt;}
.ws4c{word-spacing:-0.265669pt;}
.ws62{word-spacing:-0.239104pt;}
.ws38{word-spacing:-0.212535pt;}
.wsa5{word-spacing:-0.193241pt;}
.ws61{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws35{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.042507pt;}
.wsbb{word-spacing:-0.040382pt;}
.ws8{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.001874pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws1d{word-spacing:0.095642pt;}
.ws3a{word-spacing:0.106268pt;}
.ws71{word-spacing:0.121868pt;}
.ws13{word-spacing:0.143462pt;}
.ws3e{word-spacing:0.159402pt;}
.ws6f{word-spacing:0.180869pt;}
.ws9{word-spacing:0.185968pt;}
.ws6e{word-spacing:0.186278pt;}
.ws65{word-spacing:0.191283pt;}
.ws56{word-spacing:0.212535pt;}
.ws66{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws57{word-spacing:0.265669pt;}
.ws9b{word-spacing:0.286925pt;}
.ws30{word-spacing:0.318803pt;}
.ws100{word-spacing:0.334746pt;}
.ws47{word-spacing:0.371937pt;}
.ws108{word-spacing:0.382566pt;}
.ws5b{word-spacing:0.425071pt;}
.wscd{word-spacing:0.478205pt;}
.ws9a{word-spacing:0.526029pt;}
.ws87{word-spacing:0.531339pt;}
.ws58{word-spacing:0.584473pt;}
.ws1c{word-spacing:0.621670pt;}
.ws2d{word-spacing:0.637606pt;}
.ws4a{word-spacing:0.690740pt;}
.ws67{word-spacing:0.717312pt;}
.ws79{word-spacing:0.743874pt;}
.wse3{word-spacing:0.765133pt;}
.ws70{word-spacing:0.797008pt;}
.ws64{word-spacing:0.812954pt;}
.ws37{word-spacing:0.850142pt;}
.wsb5{word-spacing:0.956410pt;}
.wse2{word-spacing:0.956416pt;}
.ws6d{word-spacing:1.004237pt;}
.wsa8{word-spacing:1.009543pt;}
.ws5e{word-spacing:1.115811pt;}
.ws63{word-spacing:1.147699pt;}
.ws39{word-spacing:1.222079pt;}
.ws40{word-spacing:1.275213pt;}
.ws53{word-spacing:1.328347pt;}
.wsb6{word-spacing:1.381481pt;}
.ws17{word-spacing:1.386803pt;}
.wsab{word-spacing:1.434614pt;}
.wsd3{word-spacing:1.482445pt;}
.ws4f{word-spacing:1.487748pt;}
.ws69{word-spacing:1.530266pt;}
.ws89{word-spacing:1.540882pt;}
.wsbc{word-spacing:1.594016pt;}
.ws8e{word-spacing:1.647150pt;}
.wscf{word-spacing:1.700284pt;}
.wsce{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws55{word-spacing:1.806551pt;}
.wsa0{word-spacing:1.912819pt;}
.wsec{word-spacing:2.008474pt;}
.ws5d{word-spacing:2.019087pt;}
.ws76{word-spacing:2.072221pt;}
.ws72{word-spacing:2.125355pt;}
.ws94{word-spacing:2.178489pt;}
.ws45{word-spacing:2.231622pt;}
.ws6b{word-spacing:2.247578pt;}
.ws3d{word-spacing:2.337890pt;}
.ws36{word-spacing:2.391024pt;}
.ws60{word-spacing:2.438861pt;}
.ws34{word-spacing:2.444158pt;}
.wsef{word-spacing:2.534502pt;}
.ws8f{word-spacing:2.550426pt;}
.wsb4{word-spacing:2.603559pt;}
.ws4b{word-spacing:2.656693pt;}
.ws5f{word-spacing:2.725786pt;}
.ws68{word-spacing:2.773606pt;}
.ws27{word-spacing:2.861926pt;}
.ws1e{word-spacing:2.917069pt;}
.wsa2{word-spacing:2.922363pt;}
.ws8c{word-spacing:2.975497pt;}
.ws52{word-spacing:3.081764pt;}
.wsa6{word-spacing:3.134898pt;}
.ws2b{word-spacing:3.188032pt;}
.ws98{word-spacing:3.241166pt;}
.ws2e{word-spacing:3.294300pt;}
.ws25{word-spacing:3.347456pt;}
.wsa7{word-spacing:3.400567pt;}
.ws104{word-spacing:3.443098pt;}
.ws31{word-spacing:3.453701pt;}
.wsbe{word-spacing:3.506835pt;}
.ws1f{word-spacing:3.538739pt;}
.ws41{word-spacing:3.719371pt;}
.ws22{word-spacing:3.730022pt;}
.ws9c{word-spacing:3.825638pt;}
.wsa3{word-spacing:3.878772pt;}
.ws8a{word-spacing:3.985040pt;}
.ws8b{word-spacing:4.038174pt;}
.wsc2{word-spacing:4.091308pt;}
.ws7c{word-spacing:4.197575pt;}
.ws6a{word-spacing:4.256051pt;}
.wsfb{word-spacing:4.303872pt;}
.ws42{word-spacing:4.463245pt;}
.ws20{word-spacing:4.495155pt;}
.wsdf{word-spacing:4.622646pt;}
.ws88{word-spacing:4.675780pt;}
.ws82{word-spacing:4.728914pt;}
.ws4e{word-spacing:4.994583pt;}
.ws23{word-spacing:5.021184pt;}
.wsa9{word-spacing:5.047717pt;}
.ws21{word-spacing:5.069005pt;}
.ws93{word-spacing:5.207119pt;}
.wsc5{word-spacing:5.284533pt;}
.ws7d{word-spacing:5.313387pt;}
.ws46{word-spacing:5.366521pt;}
.ws11{word-spacing:5.393072pt;}
.wsc3{word-spacing:5.419654pt;}
.ws12{word-spacing:5.467459pt;}
.ws91{word-spacing:5.472788pt;}
.wsde{word-spacing:5.525922pt;}
.ws8d{word-spacing:5.579056pt;}
.ws84{word-spacing:5.632190pt;}
.ws14{word-spacing:6.073242pt;}
.wse0{word-spacing:6.216662pt;}
.ws3c{word-spacing:6.269796pt;}
.wsb2{word-spacing:6.322930pt;}
.ws81{word-spacing:6.376064pt;}
.wsbf{word-spacing:6.482332pt;}
.ws77{word-spacing:6.854269pt;}
.ws78{word-spacing:6.854441pt;}
.ws90{word-spacing:7.173072pt;}
.ws9d{word-spacing:7.385607pt;}
.ws9e{word-spacing:7.438741pt;}
.ws86{word-spacing:7.491875pt;}
.wsf{word-spacing:7.699075pt;}
.wsc4{word-spacing:7.982368pt;}
.ws106{word-spacing:8.129152pt;}
.wsf7{word-spacing:8.129536pt;}
.ws3b{word-spacing:8.979623pt;}
.ws6{word-spacing:9.261657pt;}
.wsf1{word-spacing:10.185830pt;}
.wsba{word-spacing:10.366595pt;}
.ws28{word-spacing:10.581753pt;}
.wsc7{word-spacing:11.134769pt;}
.wsc6{word-spacing:11.136591pt;}
.wsf5{word-spacing:11.620454pt;}
.wse9{word-spacing:11.716096pt;}
.wse8{word-spacing:11.897882pt;}
.ws109{word-spacing:11.903590pt;}
.wseb{word-spacing:11.905476pt;}
.wsea{word-spacing:11.907379pt;}
.wse7{word-spacing:11.907840pt;}
.wsf6{word-spacing:11.907900pt;}
.wsf9{word-spacing:11.955200pt;}
.ws102{word-spacing:12.003021pt;}
.ws101{word-spacing:12.624691pt;}
.wsb9{word-spacing:12.881363pt;}
.ws4d{word-spacing:13.230333pt;}
.ws2f{word-spacing:13.496002pt;}
.ws5{word-spacing:13.763148pt;}
.wsed{word-spacing:13.915853pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.ws18{word-spacing:14.461619pt;}
.wsf8{word-spacing:14.772591pt;}
.wsfa{word-spacing:14.774033pt;}
.wsee{word-spacing:14.774528pt;}
.wsfd{word-spacing:14.774639pt;}
.wse5{word-spacing:14.775612pt;}
.wsfe{word-spacing:14.775646pt;}
.ws107{word-spacing:14.775987pt;}
.wsf3{word-spacing:14.776627pt;}
.ws103{word-spacing:14.777523pt;}
.wsf2{word-spacing:14.920090pt;}
.ws105{word-spacing:15.350477pt;}
.wse{word-spacing:15.732893pt;}
.ws96{word-spacing:16.030493pt;}
.wsb8{word-spacing:16.032201pt;}
.ws1a{word-spacing:16.419354pt;}
.ws95{word-spacing:16.570080pt;}
.wsb1{word-spacing:18.212209pt;}
.wsb0{word-spacing:18.217542pt;}
.ws10{word-spacing:24.399002pt;}
.ws24{word-spacing:24.883977pt;}
.wsfc{word-spacing:28.070810pt;}
.wsd6{word-spacing:56.109363pt;}
.wsad{word-spacing:125.739037pt;}
.wsd9{word-spacing:126.671138pt;}
.wsaf{word-spacing:128.212427pt;}
.wsae{word-spacing:138.055507pt;}
.wsd7{word-spacing:161.548208pt;}
.wsdd{word-spacing:173.969067pt;}
.wsca{word-spacing:174.969823pt;}
.wscb{word-spacing:197.126645pt;}
.wsdb{word-spacing:221.259733pt;}
.wsc8{word-spacing:237.030179pt;}
.wsd8{word-spacing:247.255261pt;}
.wscc{word-spacing:263.597113pt;}
.wsc9{word-spacing:281.798413pt;}
.wsda{word-spacing:345.476401pt;}
.wsdc{word-spacing:368.862287pt;}
._1{margin-left:-10.616218pt;}
._1a{margin-left:-6.853854pt;}
._b{margin-left:-5.812865pt;}
._21{margin-left:-4.888316pt;}
._5{margin-left:-3.930330pt;}
._8{margin-left:-3.030181pt;}
._4{margin-left:-1.965953pt;}
._6{margin-left:-0.909731pt;}
._7{width:0.969929pt;}
._2{width:2.659474pt;}
._e{width:3.586560pt;}
._8d{width:4.675780pt;}
._1b{width:9.032757pt;}
._10{width:11.046605pt;}
._9{width:12.153898pt;}
._17{width:13.175632pt;}
._f{width:14.773088pt;}
._11{width:15.885530pt;}
._d{width:17.015181pt;}
._14{width:18.315366pt;}
._c{width:19.328627pt;}
._13{width:20.849869pt;}
._1d{width:21.891153pt;}
._a{width:23.061099pt;}
._12{width:24.011263pt;}
._16{width:25.346321pt;}
._15{width:26.391464pt;}
._1c{width:27.406619pt;}
._22{width:28.379940pt;}
._0{width:29.648896pt;}
._1e{width:31.089767pt;}
._20{width:33.693327pt;}
._34{width:35.712413pt;}
._1f{width:39.319061pt;}
._98{width:43.599666pt;}
._3{width:48.376563pt;}
._97{width:54.993920pt;}
._62{width:56.109363pt;}
._54{width:57.418582pt;}
._77{width:60.130534pt;}
._24{width:63.752872pt;}
._56{width:66.536353pt;}
._55{width:67.798814pt;}
._93{width:69.244518pt;}
._64{width:73.269477pt;}
._79{width:74.251391pt;}
._8e{width:76.809229pt;}
._70{width:79.488265pt;}
._7c{width:81.135414pt;}
._51{width:88.780628pt;}
._7d{width:96.012897pt;}
._95{width:100.719629pt;}
._52{width:106.559774pt;}
._91{width:109.987840pt;}
._94{width:113.383117pt;}
._8f{width:118.739046pt;}
._53{width:120.729631pt;}
._5f{width:125.030364pt;}
._84{width:126.671138pt;}
._74{width:129.051535pt;}
._5d{width:130.126965pt;}
._6f{width:139.686810pt;}
._90{width:142.123418pt;}
._96{width:144.801382pt;}
._92{width:147.192422pt;}
._25{width:148.554792pt;}
._6b{width:153.739655pt;}
._6a{width:155.193924pt;}
._2f{width:158.397872pt;}
._8a{width:160.070848pt;}
._59{width:162.427947pt;}
._46{width:172.797789pt;}
._58{width:175.902854pt;}
._71{width:184.927110pt;}
._4f{width:194.948157pt;}
._7b{width:204.724788pt;}
._40{width:210.463246pt;}
._66{width:214.838395pt;}
._39{width:216.276110pt;}
._4c{width:223.213797pt;}
._43{width:228.156823pt;}
._89{width:231.615277pt;}
._4d{width:233.204541pt;}
._6c{width:234.677412pt;}
._57{width:237.799150pt;}
._36{width:240.643282pt;}
._6e{width:244.436084pt;}
._83{width:246.805234pt;}
._3d{width:248.082023pt;}
._78{width:249.724765pt;}
._76{width:251.790767pt;}
._86{width:256.724610pt;}
._5a{width:258.111730pt;}
._35{width:259.505805pt;}
._68{width:262.816949pt;}
._33{width:263.945976pt;}
._47{width:267.475885pt;}
._72{width:270.680920pt;}
._5b{width:273.112325pt;}
._29{width:276.413877pt;}
._30{width:289.033211pt;}
._7f{width:290.902309pt;}
._4b{width:296.805779pt;}
._26{width:299.986792pt;}
._38{width:306.369875pt;}
._3f{width:308.654631pt;}
._2a{width:312.606125pt;}
._45{width:316.624711pt;}
._4e{width:319.653342pt;}
._32{width:321.793000pt;}
._2e{width:323.256843pt;}
._28{width:334.361856pt;}
._2c{width:335.775221pt;}
._41{width:337.293786pt;}
._3e{width:339.578542pt;}
._44{width:346.220275pt;}
._67{width:350.058350pt;}
._5c{width:354.228454pt;}
._5e{width:358.003241pt;}
._4a{width:360.991490pt;}
._27{width:372.371288pt;}
._2d{width:373.835131pt;}
._37{width:378.631934pt;}
._7a{width:381.129226pt;}
._31{width:385.041099pt;}
._2b{width:386.454464pt;}
._87{width:395.739462pt;}
._82{width:399.354142pt;}
._48{width:403.976788pt;}
._80{width:424.433327pt;}
._49{width:453.285017pt;}
._3b{width:462.795979pt;}
._42{width:479.609050pt;}
._6d{width:484.551109pt;}
._81{width:487.822030pt;}
._60{width:494.352929pt;}
._75{width:503.423943pt;}
._65{width:512.248573pt;}
._69{width:515.878837pt;}
._7e{width:539.149345pt;}
._63{width:542.942945pt;}
._3c{width:605.460411pt;}
._3a{width:612.261546pt;}
._73{width:643.667912pt;}
._61{width:648.244420pt;}
._85{width:772.488176pt;}
._18{width:900.387510pt;}
._88{width:1199.819626pt;}
._8b{width:1737.595376pt;}
._23{width:2251.474400pt;}
._8c{width:2269.873591pt;}
._19{width:2272.727733pt;}
._50{width:3566.749067pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:35.536043pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:46.757803pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.721963pt;}
.fsa{font-size:49.829333pt;}
.fsc{font-size:50.477333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.044747pt;}
.yc{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y52{bottom:28.346667pt;}
.y156{bottom:82.513333pt;}
.y1bd{bottom:84.960000pt;}
.y1b4{bottom:90.153333pt;}
.y2d{bottom:91.398667pt;}
.ye6{bottom:92.014667pt;}
.y119{bottom:94.044000pt;}
.y155{bottom:99.250667pt;}
.y1bc{bottom:102.056000pt;}
.y23f{bottom:103.024000pt;}
.y1b3{bottom:106.890667pt;}
.y2c{bottom:107.298667pt;}
.ye5{bottom:108.752000pt;}
.y118{bottom:110.780000pt;}
.y154{bottom:115.988000pt;}
.y23e{bottom:118.366667pt;}
.y1bb{bottom:119.152000pt;}
.y2b{bottom:123.200000pt;}
.y1b2{bottom:123.628000pt;}
.ye4{bottom:125.489333pt;}
.y87{bottom:126.705333pt;}
.y117{bottom:127.517333pt;}
.y153{bottom:132.725333pt;}
.y23d{bottom:133.709333pt;}
.y1ba{bottom:136.248000pt;}
.yb8{bottom:139.074667pt;}
.y2a{bottom:139.100000pt;}
.y1b1{bottom:140.365333pt;}
.y86{bottom:143.442667pt;}
.y116{bottom:144.254667pt;}
.y163{bottom:144.653333pt;}
.ye3{bottom:146.212000pt;}
.y23c{bottom:149.052000pt;}
.y152{bottom:149.462667pt;}
.y193{bottom:151.856000pt;}
.y1b9{bottom:153.344000pt;}
.y29{bottom:155.000000pt;}
.yb7{bottom:155.812000pt;}
.y1b0{bottom:157.102667pt;}
.y85{bottom:160.178667pt;}
.y115{bottom:160.992000pt;}
.y162{bottom:161.390667pt;}
.y23b{bottom:164.394667pt;}
.y151{bottom:166.200000pt;}
.y192{bottom:168.593333pt;}
.y271{bottom:168.762667pt;}
.y20c{bottom:170.408000pt;}
.y28{bottom:170.901333pt;}
.yb6{bottom:172.549333pt;}
.ye2{bottom:173.258667pt;}
.y1af{bottom:173.840000pt;}
.y1db{bottom:176.266667pt;}
.y84{bottom:176.916000pt;}
.y114{bottom:177.729333pt;}
.y161{bottom:178.128000pt;}
.y51{bottom:178.718667pt;}
.y23a{bottom:179.736000pt;}
.y150{bottom:182.937333pt;}
.y270{bottom:184.105333pt;}
.y191{bottom:185.330667pt;}
.y27{bottom:186.801333pt;}
.y20b{bottom:187.145333pt;}
.yb5{bottom:189.286667pt;}
.ye1{bottom:190.354667pt;}
.y1ae{bottom:190.577333pt;}
.y1da{bottom:192.206667pt;}
.y83{bottom:193.653333pt;}
.y113{bottom:194.466667pt;}
.y160{bottom:194.865333pt;}
.y239{bottom:195.078667pt;}
.y26f{bottom:199.448000pt;}
.y14f{bottom:199.673333pt;}
.y190{bottom:202.068000pt;}
.y26{bottom:202.701333pt;}
.y20a{bottom:203.882667pt;}
.yb4{bottom:206.024000pt;}
.y1ad{bottom:207.314667pt;}
.ye0{bottom:207.450667pt;}
.y1d9{bottom:208.148000pt;}
.yd5{bottom:208.654667pt;}
.y82{bottom:210.390667pt;}
.y238{bottom:210.421333pt;}
.y13e{bottom:211.204000pt;}
.y15f{bottom:211.602667pt;}
.y50{bottom:211.954667pt;}
.y26e{bottom:214.790667pt;}
.y112{bottom:215.189333pt;}
.y14e{bottom:216.410667pt;}
.y18f{bottom:218.805333pt;}
.y209{bottom:220.620000pt;}
.yb3{bottom:222.761333pt;}
.y1ac{bottom:224.052000pt;}
.y1d8{bottom:224.088000pt;}
.ydf{bottom:224.546667pt;}
.yd4{bottom:225.750667pt;}
.y237{bottom:225.764000pt;}
.y81{bottom:227.128000pt;}
.y13d{bottom:227.941333pt;}
.y15e{bottom:228.340000pt;}
.y4f{bottom:229.249333pt;}
.y26d{bottom:230.133333pt;}
.y14d{bottom:233.148000pt;}
.y18e{bottom:235.542667pt;}
.y208{bottom:237.357333pt;}
.yb2{bottom:239.498667pt;}
.y1d7{bottom:240.028000pt;}
.y1ab{bottom:240.789333pt;}
.y236{bottom:241.106667pt;}
.yde{bottom:241.642667pt;}
.yd3{bottom:242.846667pt;}
.y80{bottom:243.865333pt;}
.y13c{bottom:244.678667pt;}
.y111{bottom:245.077333pt;}
.y26c{bottom:245.476000pt;}
.y4e{bottom:246.544000pt;}
.y14c{bottom:249.885333pt;}
.y18d{bottom:252.280000pt;}
.y207{bottom:254.094667pt;}
.y1d6{bottom:255.968000pt;}
.yb1{bottom:256.236000pt;}
.y235{bottom:256.449333pt;}
.y1aa{bottom:257.526667pt;}
.ydd{bottom:258.738667pt;}
.yd2{bottom:259.942667pt;}
.y7f{bottom:260.602667pt;}
.y26b{bottom:260.818667pt;}
.y13b{bottom:261.416000pt;}
.y110{bottom:261.814667pt;}
.y4d{bottom:263.840000pt;}
.y18c{bottom:269.017333pt;}
.y14b{bottom:270.608000pt;}
.y206{bottom:270.832000pt;}
.y1d5{bottom:271.908000pt;}
.yb0{bottom:272.973333pt;}
.y25{bottom:273.154667pt;}
.y1a9{bottom:274.264000pt;}
.y234{bottom:275.777333pt;}
.ydc{bottom:275.833333pt;}
.y26a{bottom:276.161333pt;}
.yd1{bottom:277.038667pt;}
.y7e{bottom:277.340000pt;}
.y13a{bottom:278.153333pt;}
.y10f{bottom:278.552000pt;}
.y4c{bottom:281.134667pt;}
.y18b{bottom:285.754667pt;}
.y205{bottom:287.569333pt;}
.y1d4{bottom:287.848000pt;}
.y24{bottom:289.054667pt;}
.yaf{bottom:289.710667pt;}
.y1a8{bottom:291.001333pt;}
.y269{bottom:291.502667pt;}
.ydb{bottom:292.929333pt;}
.y7d{bottom:294.077333pt;}
.yd0{bottom:294.134667pt;}
.y139{bottom:294.890667pt;}
.y10e{bottom:295.289333pt;}
.y14a{bottom:297.654667pt;}
.y4b{bottom:298.430667pt;}
.y204{bottom:304.305333pt;}
.y23{bottom:304.954667pt;}
.yae{bottom:306.448000pt;}
.y18a{bottom:306.477333pt;}
.y268{bottom:306.845333pt;}
.y233{bottom:307.494667pt;}
.y1a7{bottom:307.738667pt;}
.yda{bottom:310.025333pt;}
.y7c{bottom:310.814667pt;}
.ycf{bottom:311.230667pt;}
.y138{bottom:311.628000pt;}
.y10d{bottom:312.026667pt;}
.y149{bottom:314.750667pt;}
.y4a{bottom:315.725333pt;}
.y1d3{bottom:319.729333pt;}
.y22{bottom:320.856000pt;}
.y203{bottom:321.042667pt;}
.y267{bottom:322.188000pt;}
.y232{bottom:323.116000pt;}
.y1a6{bottom:324.476000pt;}
.yd9{bottom:327.121333pt;}
.yad{bottom:327.169333pt;}
.y7b{bottom:327.552000pt;}
.yce{bottom:328.326667pt;}
.y137{bottom:328.365333pt;}
.y10c{bottom:328.764000pt;}
.y148{bottom:331.846667pt;}
.y49{bottom:333.020000pt;}
.y189{bottom:336.365333pt;}
.y266{bottom:337.530667pt;}
.y202{bottom:337.780000pt;}
.y231{bottom:338.738667pt;}
.y1a5{bottom:341.213333pt;}
.y1d2{bottom:342.337333pt;}
.yd8{bottom:344.217333pt;}
.y7a{bottom:344.289333pt;}
.y136{bottom:345.102667pt;}
.ycd{bottom:345.421333pt;}
.y10b{bottom:345.501333pt;}
.y48{bottom:350.316000pt;}
.y265{bottom:352.873333pt;}
.y188{bottom:353.102667pt;}
.y230{bottom:354.360000pt;}
.y201{bottom:354.517333pt;}
.y21{bottom:354.688000pt;}
.yac{bottom:357.057333pt;}
.y1a4{bottom:357.950667pt;}
.y79{bottom:361.026667pt;}
.yd7{bottom:361.313333pt;}
.y135{bottom:361.840000pt;}
.y10a{bottom:362.238667pt;}
.ycc{bottom:362.517333pt;}
.y47{bottom:367.610667pt;}
.y264{bottom:368.216000pt;}
.y187{bottom:369.840000pt;}
.y22f{bottom:369.981333pt;}
.y20{bottom:370.589333pt;}
.y200{bottom:371.254667pt;}
.y1d1{bottom:371.373333pt;}
.yab{bottom:373.794667pt;}
.y1a3{bottom:374.688000pt;}
.y78{bottom:377.764000pt;}
.yd6{bottom:378.409333pt;}
.y134{bottom:378.577333pt;}
.y109{bottom:378.976000pt;}
.ycb{bottom:379.613333pt;}
.y263{bottom:383.558667pt;}
.y46{bottom:384.905333pt;}
.y22e{bottom:385.602667pt;}
.y1f{bottom:386.489333pt;}
.y186{bottom:386.577333pt;}
.yaa{bottom:390.532000pt;}
.y1ff{bottom:391.977333pt;}
.y77{bottom:394.501333pt;}
.y133{bottom:395.314667pt;}
.y108{bottom:395.713333pt;}
.yca{bottom:396.709333pt;}
.y262{bottom:398.901333pt;}
.y22d{bottom:401.224000pt;}
.y45{bottom:402.201333pt;}
.y185{bottom:403.314667pt;}
.ya9{bottom:407.269333pt;}
.y1d0{bottom:410.421547pt;}
.y76{bottom:411.238667pt;}
.y132{bottom:412.052000pt;}
.y107{bottom:412.450667pt;}
.yc9{bottom:413.805333pt;}
.y261{bottom:414.244000pt;}
.y15d{bottom:416.434667pt;}
.y1a2{bottom:416.825333pt;}
.y22c{bottom:416.845333pt;}
.y1e{bottom:418.330667pt;}
.y44{bottom:419.496000pt;}
.y184{bottom:420.052000pt;}
.y1fe{bottom:421.865333pt;}
.ya8{bottom:424.006667pt;}
.y1cf{bottom:424.448747pt;}
.y75{bottom:427.976000pt;}
.y131{bottom:428.789333pt;}
.y106{bottom:429.188000pt;}
.y260{bottom:429.585333pt;}
.y22b{bottom:432.466667pt;}
.y1a1{bottom:432.765333pt;}
.y1d{bottom:434.230667pt;}
.y183{bottom:436.789333pt;}
.y43{bottom:436.792000pt;}
.y1ce{bottom:438.477120pt;}
.y1fd{bottom:438.602667pt;}
.ya7{bottom:440.744000pt;}
.y74{bottom:444.713333pt;}
.y25f{bottom:444.928000pt;}
.y130{bottom:445.526667pt;}
.y105{bottom:445.925333pt;}
.y15c{bottom:446.322667pt;}
.y22a{bottom:448.088000pt;}
.y1a0{bottom:448.705333pt;}
.y1cd{bottom:452.504320pt;}
.y182{bottom:453.526667pt;}
.y42{bottom:454.086667pt;}
.y1fc{bottom:455.340000pt;}
.ya6{bottom:457.481333pt;}
.y25e{bottom:460.270667pt;}
.y73{bottom:461.450667pt;}
.y12f{bottom:462.264000pt;}
.y104{bottom:462.662667pt;}
.y15b{bottom:463.060000pt;}
.y229{bottom:463.709333pt;}
.y19f{bottom:464.645333pt;}
.y1c{bottom:466.070667pt;}
.y1cc{bottom:466.531520pt;}
.y181{bottom:470.262667pt;}
.y41{bottom:471.381333pt;}
.y1fb{bottom:472.077333pt;}
.ya5{bottom:474.218667pt;}
.y25d{bottom:475.613333pt;}
.y72{bottom:478.188000pt;}
.y12e{bottom:479.001333pt;}
.y228{bottom:479.330667pt;}
.y103{bottom:479.398667pt;}
.y15a{bottom:479.797333pt;}
.y1cb{bottom:480.558720pt;}
.y19e{bottom:480.585333pt;}
.y1b{bottom:481.972000pt;}
.y180{bottom:487.000000pt;}
.y40{bottom:488.677333pt;}
.y1fa{bottom:488.814667pt;}
.ya4{bottom:490.956000pt;}
.y1ca{bottom:494.585920pt;}
.y71{bottom:494.925333pt;}
.y227{bottom:494.952000pt;}
.y12d{bottom:495.738667pt;}
.y102{bottom:496.136000pt;}
.y19d{bottom:496.526667pt;}
.y159{bottom:496.534667pt;}
.y1a{bottom:497.872000pt;}
.y17f{bottom:503.737333pt;}
.y1f9{bottom:505.552000pt;}
.y3f{bottom:505.972000pt;}
.y25c{bottom:506.298667pt;}
.ya3{bottom:507.693333pt;}
.y1c9{bottom:508.614293pt;}
.y226{bottom:510.573333pt;}
.y70{bottom:511.662667pt;}
.y19c{bottom:512.466667pt;}
.y12c{bottom:512.476000pt;}
.y1b8{bottom:512.873333pt;}
.y158{bottom:513.272000pt;}
.y19{bottom:513.772000pt;}
.y101{bottom:516.858667pt;}
.y17e{bottom:520.474667pt;}
.y25b{bottom:521.641333pt;}
.y1f8{bottom:522.289333pt;}
.y1c8{bottom:522.641493pt;}
.ya2{bottom:524.430667pt;}
.y225{bottom:526.194667pt;}
.y6f{bottom:528.400000pt;}
.y19b{bottom:528.406667pt;}
.y147{bottom:529.213333pt;}
.y1b7{bottom:529.610667pt;}
.y18{bottom:529.673333pt;}
.y157{bottom:530.009333pt;}
.y12b{bottom:533.197333pt;}
.y1c7{bottom:536.668693pt;}
.y25a{bottom:536.984000pt;}
.y17d{bottom:537.212000pt;}
.y1f7{bottom:539.026667pt;}
.y3e{bottom:540.270667pt;}
.ya1{bottom:541.168000pt;}
.y224{bottom:541.816000pt;}
.y19a{bottom:544.346667pt;}
.y6e{bottom:545.137333pt;}
.y17{bottom:545.573333pt;}
.y146{bottom:545.950667pt;}
.y1b6{bottom:546.348000pt;}
.y100{bottom:546.746667pt;}
.y1c6{bottom:550.695893pt;}
.y259{bottom:552.325333pt;}
.y17c{bottom:553.949333pt;}
.y3d{bottom:554.616000pt;}
.y1f6{bottom:555.764000pt;}
.y223{bottom:557.437333pt;}
.ya0{bottom:557.905333pt;}
.y199{bottom:560.286667pt;}
.y16{bottom:561.473333pt;}
.y6d{bottom:561.874667pt;}
.y145{bottom:562.686667pt;}
.y12a{bottom:563.085333pt;}
.yff{bottom:563.484000pt;}
.y1c5{bottom:564.723093pt;}
.y258{bottom:567.668000pt;}
.y17b{bottom:570.686667pt;}
.y1f5{bottom:572.501333pt;}
.y3c{bottom:572.820000pt;}
.y9f{bottom:574.642667pt;}
.y198{bottom:576.226667pt;}
.y15{bottom:577.374667pt;}
.y6c{bottom:578.612000pt;}
.y1c4{bottom:578.750293pt;}
.y144{bottom:579.424000pt;}
.y129{bottom:579.822667pt;}
.yfe{bottom:580.221333pt;}
.y257{bottom:583.010667pt;}
.y3b{bottom:583.309333pt;}
.y222{bottom:585.322667pt;}
.y17a{bottom:587.424000pt;}
.y1f4{bottom:589.238667pt;}
.y9e{bottom:591.380000pt;}
.y197{bottom:592.168000pt;}
.y1c3{bottom:592.778667pt;}
.y14{bottom:593.274667pt;}
.y6b{bottom:595.349333pt;}
.y128{bottom:596.560000pt;}
.yfd{bottom:596.958667pt;}
.y256{bottom:598.353333pt;}
.y143{bottom:600.146667pt;}
.y3a{bottom:601.513333pt;}
.y179{bottom:604.161333pt;}
.y221{bottom:604.929333pt;}
.y1f3{bottom:605.976000pt;}
.y1c2{bottom:606.805867pt;}
.y9d{bottom:608.117333pt;}
.y13{bottom:609.174667pt;}
.y39{bottom:612.001333pt;}
.y6a{bottom:612.085333pt;}
.y127{bottom:613.297333pt;}
.yfc{bottom:613.696000pt;}
.y196{bottom:614.776000pt;}
.y178{bottom:620.898667pt;}
.y1f2{bottom:622.713333pt;}
.y9c{bottom:624.854667pt;}
.y12{bottom:625.076000pt;}
.y1c1{bottom:626.700907pt;}
.y69{bottom:628.822667pt;}
.y255{bottom:629.038667pt;}
.y126{bottom:630.034667pt;}
.y38{bottom:630.205333pt;}
.yfb{bottom:630.433333pt;}
.y220{bottom:637.606667pt;}
.y177{bottom:637.636000pt;}
.y1f1{bottom:639.450667pt;}
.y11{bottom:640.976000pt;}
.y9b{bottom:641.592000pt;}
.y195{bottom:643.812000pt;}
.y254{bottom:644.381333pt;}
.y37{bottom:644.552000pt;}
.y68{bottom:645.560000pt;}
.y125{bottom:646.772000pt;}
.yfa{bottom:647.170667pt;}
.y21f{bottom:653.228000pt;}
.y1c0{bottom:654.098667pt;}
.y176{bottom:654.373333pt;}
.y36{bottom:655.040000pt;}
.y1f0{bottom:656.188000pt;}
.y10{bottom:656.876000pt;}
.y253{bottom:659.724000pt;}
.y67{bottom:662.297333pt;}
.y9a{bottom:662.313333pt;}
.y124{bottom:663.509333pt;}
.yf9{bottom:663.908000pt;}
.y21e{bottom:668.849333pt;}
.y175{bottom:671.110667pt;}
.y1bf{bottom:671.194667pt;}
.yf{bottom:672.777333pt;}
.y1ef{bottom:672.924000pt;}
.y35{bottom:673.244000pt;}
.y252{bottom:675.066667pt;}
.y194{bottom:675.464000pt;}
.y66{bottom:679.034667pt;}
.y123{bottom:680.246667pt;}
.yf8{bottom:680.645333pt;}
.y34{bottom:683.733333pt;}
.y174{bottom:687.848000pt;}
.ye{bottom:688.677333pt;}
.y1ee{bottom:689.661333pt;}
.y251{bottom:690.408000pt;}
.y99{bottom:692.201333pt;}
.y21d{bottom:692.441333pt;}
.y65{bottom:695.772000pt;}
.y122{bottom:696.984000pt;}
.yf7{bottom:697.382667pt;}
.y33{bottom:701.937333pt;}
.y173{bottom:704.585333pt;}
.y250{bottom:705.750667pt;}
.y1ed{bottom:706.398667pt;}
.yb{bottom:708.562634pt;}
.y98{bottom:708.938667pt;}
.yc8{bottom:710.134667pt;}
.y32{bottom:712.425333pt;}
.y64{bottom:712.509333pt;}
.y121{bottom:713.721333pt;}
.yf6{bottom:714.120000pt;}
.y21c{bottom:716.033333pt;}
.y1be{bottom:717.981333pt;}
.y24f{bottom:721.093333pt;}
.y1ec{bottom:723.136000pt;}
.y172{bottom:725.308000pt;}
.y97{bottom:725.676000pt;}
.y31{bottom:726.772000pt;}
.yc7{bottom:726.872000pt;}
.y63{bottom:729.246667pt;}
.y120{bottom:730.458667pt;}
.yf5{bottom:730.857333pt;}
.y21b{bottom:731.654667pt;}
.y24e{bottom:736.436000pt;}
.y1eb{bottom:739.873333pt;}
.y96{bottom:742.413333pt;}
.yc6{bottom:743.609333pt;}
.y30{bottom:744.976000pt;}
.y62{bottom:745.984000pt;}
.y11f{bottom:747.196000pt;}
.y21a{bottom:747.276000pt;}
.yf4{bottom:747.594667pt;}
.y24d{bottom:751.778667pt;}
.y2f{bottom:755.464000pt;}
.y1ea{bottom:756.610667pt;}
.y95{bottom:759.150667pt;}
.yc5{bottom:760.346667pt;}
.y61{bottom:762.721333pt;}
.y219{bottom:762.897333pt;}
.y11e{bottom:763.933333pt;}
.yf3{bottom:764.332000pt;}
.y171{bottom:764.416000pt;}
.y24c{bottom:767.121333pt;}
.y1e9{bottom:773.348000pt;}
.y2e{bottom:773.668000pt;}
.y94{bottom:775.888000pt;}
.yc4{bottom:777.084000pt;}
.y218{bottom:778.518667pt;}
.y60{bottom:779.458667pt;}
.y170{bottom:779.560000pt;}
.y11d{bottom:780.670667pt;}
.yf2{bottom:781.069333pt;}
.y24b{bottom:782.464000pt;}
.y1e8{bottom:790.085333pt;}
.y93{bottom:792.625333pt;}
.yc3{bottom:793.821333pt;}
.y217{bottom:794.140000pt;}
.y16f{bottom:794.702667pt;}
.y5f{bottom:796.196000pt;}
.y11c{bottom:797.408000pt;}
.yf1{bottom:797.806667pt;}
.y1e7{bottom:806.822667pt;}
.y92{bottom:809.362667pt;}
.ya{bottom:809.396000pt;}
.y16e{bottom:809.845333pt;}
.yc2{bottom:810.558667pt;}
.y5e{bottom:812.933333pt;}
.y24a{bottom:813.149333pt;}
.y11b{bottom:814.145333pt;}
.yf0{bottom:814.544000pt;}
.y216{bottom:817.732000pt;}
.y1e6{bottom:823.560000pt;}
.y16d{bottom:824.989333pt;}
.y91{bottom:826.100000pt;}
.y9{bottom:826.133333pt;}
.yc1{bottom:827.296000pt;}
.y249{bottom:828.490667pt;}
.y5d{bottom:829.670667pt;}
.y142{bottom:830.882667pt;}
.yef{bottom:831.281333pt;}
.y215{bottom:833.353333pt;}
.y11a{bottom:834.868000pt;}
.y16c{bottom:840.132000pt;}
.y1e5{bottom:840.297333pt;}
.y90{bottom:842.837333pt;}
.y8{bottom:842.869333pt;}
.y248{bottom:843.833333pt;}
.yc0{bottom:844.033333pt;}
.y5c{bottom:846.408000pt;}
.y141{bottom:847.620000pt;}
.yee{bottom:848.018667pt;}
.y1b5{bottom:851.604000pt;}
.y16b{bottom:855.276000pt;}
.y214{bottom:856.944000pt;}
.y1e4{bottom:857.034667pt;}
.y247{bottom:859.176000pt;}
.y8f{bottom:859.574667pt;}
.y7{bottom:859.606667pt;}
.ybf{bottom:860.770667pt;}
.y5b{bottom:863.145333pt;}
.y140{bottom:864.357333pt;}
.yed{bottom:864.754667pt;}
.y16a{bottom:870.418667pt;}
.y213{bottom:872.566667pt;}
.y1e3{bottom:873.772000pt;}
.y246{bottom:874.518667pt;}
.y8e{bottom:876.312000pt;}
.ybe{bottom:877.508000pt;}
.y5a{bottom:879.882667pt;}
.yec{bottom:881.492000pt;}
.y13f{bottom:885.078667pt;}
.y169{bottom:885.561333pt;}
.y212{bottom:888.188000pt;}
.y245{bottom:889.861333pt;}
.y1e2{bottom:890.509333pt;}
.y8d{bottom:893.049333pt;}
.ybd{bottom:894.245333pt;}
.y59{bottom:896.620000pt;}
.yeb{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y168{bottom:900.705333pt;}
.y211{bottom:903.809333pt;}
.y244{bottom:905.204000pt;}
.y1e1{bottom:907.246667pt;}
.y8c{bottom:909.786667pt;}
.ybc{bottom:910.982667pt;}
.y58{bottom:913.357333pt;}
.yea{bottom:914.966667pt;}
.y167{bottom:915.848000pt;}
.y210{bottom:919.430667pt;}
.y243{bottom:920.546667pt;}
.y1e0{bottom:923.984000pt;}
.y5{bottom:925.510667pt;}
.y8b{bottom:926.524000pt;}
.ybb{bottom:927.720000pt;}
.y57{bottom:930.094667pt;}
.ye9{bottom:931.704000pt;}
.y20f{bottom:935.052000pt;}
.y242{bottom:935.889333pt;}
.y166{bottom:937.658667pt;}
.y1df{bottom:940.721333pt;}
.y8a{bottom:943.261333pt;}
.yba{bottom:944.456000pt;}
.y56{bottom:946.832000pt;}
.ye8{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y20e{bottom:950.673333pt;}
.y241{bottom:951.230667pt;}
.y1de{bottom:957.458667pt;}
.yb9{bottom:961.193333pt;}
.y55{bottom:963.569333pt;}
.y89{bottom:963.984000pt;}
.ye7{bottom:965.178667pt;}
.y165{bottom:966.137333pt;}
.y20d{bottom:966.294667pt;}
.y240{bottom:966.573333pt;}
.y1dd{bottom:974.196000pt;}
.y3{bottom:975.722667pt;}
.y88{bottom:981.916000pt;}
.y164{bottom:983.233333pt;}
.y54{bottom:984.290667pt;}
.y1dc{bottom:994.918667pt;}
.y1{bottom:1014.377333pt;}
.y53{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.h17{height:24.760382pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.he{height:30.945242pt;}
.h12{height:31.157778pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h11{height:35.052646pt;}
.h18{height:36.495112pt;}
.h1e{height:36.541472pt;}
.h19{height:36.747499pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.h4{height:38.947124pt;}
.h15{height:41.524400pt;}
.h1d{height:42.663652pt;}
.h2{height:45.271688pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h16{height:48.683332pt;}
.h1a{height:48.688666pt;}
.h5{height:69.148877pt;}
.h3{height:83.992000pt;}
.h1b{height:793.701333pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x94{left:49.660000pt;}
.x2{left:52.049422pt;}
.xba{left:55.014187pt;}
.x90{left:70.794667pt;}
.x91{left:74.613333pt;}
.x8e{left:75.952000pt;}
.xbc{left:118.361333pt;}
.x8f{left:121.494667pt;}
.xbb{left:175.189333pt;}
.x95{left:176.976000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x8a{left:223.916000pt;}
.x99{left:227.936000pt;}
.x6d{left:230.989333pt;}
.xad{left:235.236000pt;}
.x87{left:238.813333pt;}
.x5{left:240.553333pt;}
.x6e{left:245.445333pt;}
.xb3{left:249.194667pt;}
.x8{left:250.622667pt;}
.x9a{left:253.216000pt;}
.x88{left:254.434667pt;}
.x42{left:260.044000pt;}
.x5c{left:261.353333pt;}
.x12{left:263.120000pt;}
.xaf{left:264.436000pt;}
.x43{left:267.348000pt;}
.x3a{left:273.900000pt;}
.x7{left:275.090667pt;}
.x39{left:276.608000pt;}
.xb0{left:278.929333pt;}
.x4a{left:280.888000pt;}
.x96{left:281.833333pt;}
.x4b{left:289.093333pt;}
.x6b{left:290.468000pt;}
.x7a{left:295.749333pt;}
.xa3{left:296.948000pt;}
.x6c{left:299.096000pt;}
.x5d{left:301.042667pt;}
.x9{left:305.666667pt;}
.x37{left:307.109333pt;}
.x38{left:312.422667pt;}
.xb4{left:315.597333pt;}
.x5e{left:316.766667pt;}
.x40{left:321.960000pt;}
.xb5{left:328.880000pt;}
.x41{left:331.918667pt;}
.xae{left:335.680000pt;}
.xc1{left:337.316000pt;}
.x7b{left:339.218667pt;}
.x24{left:345.800000pt;}
.xc0{left:348.677333pt;}
.xa6{left:351.076000pt;}
.x7c{left:352.644000pt;}
.x8b{left:355.328000pt;}
.x5f{left:356.454667pt;}
.x25{left:359.082667pt;}
.x57{left:361.645333pt;}
.xa7{left:365.765333pt;}
.x4e{left:367.242667pt;}
.x84{left:370.648000pt;}
.x60{left:372.178667pt;}
.xa2{left:375.137333pt;}
.x4f{left:380.526667pt;}
.xb1{left:385.681333pt;}
.xa{left:387.565333pt;}
.x97{left:389.926667pt;}
.x31{left:392.888000pt;}
.x8c{left:393.950667pt;}
.x61{left:395.637333pt;}
.xaa{left:397.494667pt;}
.x1e{left:398.592000pt;}
.x6a{left:400.262667pt;}
.x3f{left:402.050667pt;}
.x1f{left:405.233333pt;}
.x32{left:406.400000pt;}
.x1b{left:407.660000pt;}
.xb2{left:410.960000pt;}
.x1c{left:414.302667pt;}
.x98{left:415.205333pt;}
.x58{left:417.964000pt;}
.x44{left:419.666667pt;}
.xb{left:421.065333pt;}
.x33{left:423.134667pt;}
.x72{left:425.780000pt;}
.x1d{left:427.598667pt;}
.x17{left:429.914667pt;}
.x50{left:430.977333pt;}
.x89{left:434.273333pt;}
.x18{left:436.556000pt;}
.x19{left:439.917333pt;}
.x45{left:442.105333pt;}
.x51{left:444.261333pt;}
.x1a{left:446.558667pt;}
.x67{left:448.828000pt;}
.xb6{left:450.045333pt;}
.x34{left:452.305333pt;}
.x2d{left:454.537333pt;}
.x20{left:455.756000pt;}
.x9f{left:457.220000pt;}
.x59{left:458.518667pt;}
.x8d{left:460.846667pt;}
.x21{left:462.397333pt;}
.xe{left:465.358667pt;}
.x2e{left:467.821333pt;}
.x69{left:471.868000pt;}
.x5a{left:474.282667pt;}
.xa8{left:476.021333pt;}
.x46{left:478.050667pt;}
.x75{left:484.696000pt;}
.x4c{left:486.214667pt;}
.xab{left:488.112000pt;}
.x47{left:491.558667pt;}
.x4d{left:494.420000pt;}
.xf{left:495.388000pt;}
.x5b{left:497.741333pt;}
.x76{left:500.169333pt;}
.xa9{left:502.009333pt;}
.x85{left:506.274667pt;}
.xa0{left:507.822667pt;}
.x52{left:511.597333pt;}
.x63{left:512.949333pt;}
.x92{left:514.828000pt;}
.x77{left:516.376000pt;}
.x93{left:519.609333pt;}
.xac{left:523.546667pt;}
.x80{left:525.565333pt;}
.x48{left:529.641333pt;}
.x53{left:533.661333pt;}
.xa1{left:534.716000pt;}
.x86{left:535.658667pt;}
.xa4{left:536.624000pt;}
.x81{left:538.849333pt;}
.x82{left:542.102667pt;}
.x49{left:543.148000pt;}
.xc{left:550.638667pt;}
.x83{left:555.386667pt;}
.x9d{left:556.842667pt;}
.x2f{left:560.269333pt;}
.x64{left:562.922667pt;}
.xa5{left:565.234667pt;}
.x6f{left:566.136000pt;}
.x30{left:573.769333pt;}
.x65{left:581.946667pt;}
.xd{left:584.140000pt;}
.x9e{left:585.409333pt;}
.x10{left:590.348000pt;}
.x66{left:595.230667pt;}
.x7d{left:597.018667pt;}
.x7e{left:600.405333pt;}
.xc3{left:602.534667pt;}
.xc7{left:606.560000pt;}
.x73{left:609.580000pt;}
.x78{left:611.782667pt;}
.x7f{left:613.689333pt;}
.x62{left:614.790667pt;}
.x11{left:620.377333pt;}
.xbd{left:624.597333pt;}
.xc4{left:626.445333pt;}
.x26{left:627.676000pt;}
.x79{left:628.578667pt;}
.x27{left:640.958667pt;}
.x28{left:644.213333pt;}
.xc5{left:648.730667pt;}
.x29{left:657.497333pt;}
.x3b{left:662.310667pt;}
.x54{left:664.202667pt;}
.x3c{left:671.612000pt;}
.x9b{left:673.585333pt;}
.x3d{left:678.984000pt;}
.x70{left:681.505333pt;}
.xc2{left:683.140000pt;}
.x3e{left:686.957333pt;}
.xb7{left:690.874667pt;}
.x2a{left:697.480000pt;}
.x13{left:699.548000pt;}
.x9c{left:702.201333pt;}
.x55{left:703.677333pt;}
.x14{left:706.190667pt;}
.x15{left:709.577333pt;}
.x2b{left:710.762667pt;}
.x56{left:711.881333pt;}
.x2c{left:714.150667pt;}
.x16{left:716.220000pt;}
.x71{left:718.712000pt;}
.xc6{left:720.236000pt;}
.x22{left:726.858667pt;}
.x35{left:728.402667pt;}
.x23{left:740.141333pt;}
.x36{left:741.288000pt;}
.x68{left:742.672000pt;}
.x74{left:744.106667pt;}
.xb8{left:794.552000pt;}
.xb9{left:800.678667pt;}
.xbe{left:884.869333pt;}
.xbf{left:1000.802667pt;}
}


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