
/* 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_55977dafdd42.woff")format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_da3a88f5de28.woff")format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_40d4fba2ae88.woff")format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_f87269d9f972.woff")format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_57d4f131a23e.woff")format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_68954e6250c2.woff")format("woff");}.ff6{font-family:ff6;line-height:1.113000;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_dcb33562ed49.woff")format("woff");}.ff7{font-family:ff7;line-height:0.770000;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_0450876a1e4c.woff")format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_6aa0c2747ca4.woff")format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_018fce0c2ce1.woff")format("woff");}.ffa{font-family:ffa;line-height:0.751000;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_fffe30fc9ab1.woff")format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_d6dff4555f2c.woff")format("woff");}.ffc{font-family:ffc;line-height:1.237000;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_da7ae822f737.woff")format("woff");}.ffd{font-family:ffd;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_ec60561b1ace.woff")format("woff");}.ffe{font-family:ffe;line-height:0.386786;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_5a5d77a3a430.woff")format("woff");}.fff{font-family:fff;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_98e960331d7b.woff")format("woff");}.ff10{font-family:ff10;line-height:0.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_0032221e278d.woff")format("woff");}.ff11{font-family:ff11;line-height:0.700000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-14.757582px;}
.v7{vertical-align:-12.005963px;}
.v9{vertical-align:-10.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.va{vertical-align:10.500000px;}
.vb{vertical-align:12.000000px;}
.vc{vertical-align:18.000000px;}
.v8{vertical-align:19.200806px;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:26.399780px;}
.v6{vertical-align:54.000000px;}
.ls4{letter-spacing:-4.667933px;}
.ls1e{letter-spacing:-1.528800px;}
.lsd{letter-spacing:-1.352400px;}
.ls3{letter-spacing:-1.050000px;}
.ls20{letter-spacing:-0.940800px;}
.lsc{letter-spacing:-0.882000px;}
.ls1b{letter-spacing:-0.823200px;}
.ls11{letter-spacing:-0.768000px;}
.ls18{letter-spacing:-0.617400px;}
.ls23{letter-spacing:-0.588000px;}
.ls19{letter-spacing:-0.537600px;}
.lsb{letter-spacing:-0.470400px;}
.ls25{letter-spacing:-0.411600px;}
.lsf{letter-spacing:-0.352800px;}
.ls22{letter-spacing:-0.294000px;}
.ls2b{letter-spacing:-0.225000px;}
.ls24{letter-spacing:-0.117600px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls2c{letter-spacing:0.000030px;}
.ls1d{letter-spacing:0.000034px;}
.ls26{letter-spacing:0.000047px;}
.ls29{letter-spacing:0.000053px;}
.ls15{letter-spacing:0.000134px;}
.ls1c{letter-spacing:0.000400px;}
.ls27{letter-spacing:0.000491px;}
.ls28{letter-spacing:0.000583px;}
.ls17{letter-spacing:0.005070px;}
.ls16{letter-spacing:0.014511px;}
.ls1a{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.411577px;}
.ls8{letter-spacing:0.429211px;}
.ls7{letter-spacing:0.441000px;}
.ls10{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.529200px;}
.ls6{letter-spacing:0.535080px;}
.ls1f{letter-spacing:0.940800px;}
.ls14{letter-spacing:1.029000px;}
.ls12{letter-spacing:1.176000px;}
.ls13{letter-spacing:2.058000px;}
.ls0{letter-spacing:5.460000px;}
.lsa{letter-spacing:16.859988px;}
.ls2a{letter-spacing:18.992400px;}
.ls21{letter-spacing:637.200000px;}
.lse{letter-spacing:675.264000px;}
.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;}
}
.ws1{word-spacing:-21.216000px;}
.ws152{word-spacing:-19.580400px;}
.wsba{word-spacing:-15.876000px;}
.ws9f{word-spacing:-14.994000px;}
.ws138{word-spacing:-14.758800px;}
.ws166{word-spacing:-14.347200px;}
.wsa{word-spacing:-13.818000px;}
.ws151{word-spacing:-13.706280px;}
.ws163{word-spacing:-13.700400px;}
.ws15d{word-spacing:-13.524000px;}
.ws150{word-spacing:-13.230000px;}
.wsd{word-spacing:-13.140000px;}
.ws60{word-spacing:-12.936000px;}
.ws14e{word-spacing:-12.877200px;}
.ws3{word-spacing:-12.483600px;}
.wsc{word-spacing:-12.465600px;}
.ws4{word-spacing:-12.420000px;}
.ws9e{word-spacing:-11.426400px;}
.wsb9{word-spacing:-10.701600px;}
.ws108{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws7{word-spacing:-9.855000px;}
.ws102{word-spacing:-9.744000px;}
.wsb{word-spacing:-9.672600px;}
.ws174{word-spacing:-9.315000px;}
.ws153{word-spacing:-9.261000px;}
.ws5{word-spacing:-9.198000px;}
.ws10c{word-spacing:-8.904000px;}
.ws63{word-spacing:-8.640000px;}
.ws6{word-spacing:-8.148000px;}
.ws176{word-spacing:-8.100000px;}
.ws62{word-spacing:-7.358400px;}
.ws175{word-spacing:-6.898500px;}
.ws109{word-spacing:-6.820800px;}
.ws39{word-spacing:-6.468000px;}
.ws104{word-spacing:-6.232800px;}
.ws105{word-spacing:-5.615400px;}
.ws9c{word-spacing:-4.512000px;}
.ws9d{word-spacing:-3.744000px;}
.ws9{word-spacing:-2.772000px;}
.ws103{word-spacing:-2.400000px;}
.wsdd{word-spacing:-2.058000px;}
.ws114{word-spacing:-2.016000px;}
.ws178{word-spacing:-1.890000px;}
.ws177{word-spacing:-1.800000px;}
.ws10d{word-spacing:-1.680000px;}
.ws15c{word-spacing:-1.528800px;}
.ws127{word-spacing:-1.293600px;}
.wsb4{word-spacing:-1.176000px;}
.wsd4{word-spacing:-1.117200px;}
.ws19{word-spacing:-0.999600px;}
.ws6a{word-spacing:-0.882000px;}
.ws160{word-spacing:-0.705600px;}
.wsa2{word-spacing:-0.588000px;}
.ws24{word-spacing:-0.529200px;}
.ws9b{word-spacing:-0.480000px;}
.wsed{word-spacing:-0.470400px;}
.wsfa{word-spacing:-0.411600px;}
.ws53{word-spacing:-0.352800px;}
.ws13b{word-spacing:-0.294000px;}
.ws1c{word-spacing:-0.235200px;}
.ws17a{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.176400px;}
.ws179{word-spacing:-0.135000px;}
.ws5b{word-spacing:-0.117600px;}
.ws12c{word-spacing:-0.058800px;}
.ws167{word-spacing:-0.041160px;}
.ws17c{word-spacing:-0.031500px;}
.ws8{word-spacing:0.000000px;}
.ws11a{word-spacing:0.058800px;}
.wsc2{word-spacing:0.117600px;}
.wscc{word-spacing:0.176400px;}
.ws17b{word-spacing:0.225000px;}
.ws56{word-spacing:0.235200px;}
.ws96{word-spacing:0.294000px;}
.wsf8{word-spacing:0.352800px;}
.ws42{word-spacing:0.470400px;}
.wsa5{word-spacing:0.529200px;}
.ws161{word-spacing:0.588000px;}
.ws173{word-spacing:0.646800px;}
.wsc7{word-spacing:0.705600px;}
.ws2c{word-spacing:0.823200px;}
.ws29{word-spacing:0.882000px;}
.ws13c{word-spacing:0.940800px;}
.ws133{word-spacing:0.999600px;}
.ws1e{word-spacing:1.058400px;}
.wsf3{word-spacing:1.117200px;}
.ws86{word-spacing:1.176000px;}
.ws87{word-spacing:1.234800px;}
.ws123{word-spacing:1.293600px;}
.ws49{word-spacing:1.352400px;}
.ws1b{word-spacing:1.411200px;}
.ws12e{word-spacing:1.470000px;}
.wse7{word-spacing:1.528800px;}
.ws5a{word-spacing:1.587600px;}
.ws122{word-spacing:1.646400px;}
.ws131{word-spacing:1.705200px;}
.ws130{word-spacing:1.764000px;}
.wsc4{word-spacing:1.822800px;}
.ws25{word-spacing:1.881600px;}
.wsc6{word-spacing:1.940400px;}
.ws164{word-spacing:1.999200px;}
.ws95{word-spacing:2.058000px;}
.wsd1{word-spacing:2.116800px;}
.ws3a{word-spacing:2.175600px;}
.wsdc{word-spacing:2.234400px;}
.wsca{word-spacing:2.293200px;}
.wsc9{word-spacing:2.352000px;}
.wsee{word-spacing:2.410800px;}
.wsa8{word-spacing:2.469600px;}
.ws1d{word-spacing:2.528400px;}
.ws7c{word-spacing:2.646000px;}
.wsf6{word-spacing:2.704800px;}
.wsf2{word-spacing:2.763600px;}
.wsf4{word-spacing:2.822400px;}
.wsc8{word-spacing:2.881200px;}
.wsd2{word-spacing:2.940000px;}
.ws139{word-spacing:2.998800px;}
.wsa0{word-spacing:3.057600px;}
.wsa3{word-spacing:3.116400px;}
.ws33{word-spacing:3.175200px;}
.ws15b{word-spacing:3.292800px;}
.ws55{word-spacing:3.351600px;}
.ws149{word-spacing:3.410400px;}
.ws165{word-spacing:3.469200px;}
.wsa6{word-spacing:3.528000px;}
.ws101{word-spacing:3.586800px;}
.wsfd{word-spacing:3.645600px;}
.wsc3{word-spacing:3.704400px;}
.wsf0{word-spacing:3.763200px;}
.wsa7{word-spacing:3.822000px;}
.wsdb{word-spacing:3.880800px;}
.ws13d{word-spacing:3.939600px;}
.ws113{word-spacing:3.998400px;}
.wsc0{word-spacing:4.116000px;}
.ws72{word-spacing:4.174800px;}
.wse3{word-spacing:4.233600px;}
.ws170{word-spacing:4.292400px;}
.ws34{word-spacing:4.351200px;}
.ws30{word-spacing:4.410000px;}
.ws28{word-spacing:4.468800px;}
.ws73{word-spacing:4.527600px;}
.ws12d{word-spacing:4.586400px;}
.ws67{word-spacing:4.645200px;}
.ws120{word-spacing:4.704000px;}
.ws162{word-spacing:4.762800px;}
.wsfb{word-spacing:4.880400px;}
.ws112{word-spacing:4.939200px;}
.wsac{word-spacing:4.998000px;}
.ws5c{word-spacing:5.056800px;}
.wsec{word-spacing:5.115600px;}
.ws48{word-spacing:5.174400px;}
.ws98{word-spacing:5.233200px;}
.ws89{word-spacing:5.292000px;}
.wscd{word-spacing:5.350800px;}
.ws16a{word-spacing:5.409600px;}
.ws92{word-spacing:5.468400px;}
.ws8b{word-spacing:5.527200px;}
.wsa4{word-spacing:5.586000px;}
.ws20{word-spacing:5.644800px;}
.ws83{word-spacing:5.703600px;}
.wse6{word-spacing:5.821200px;}
.ws14c{word-spacing:5.880000px;}
.ws58{word-spacing:5.938800px;}
.wsf9{word-spacing:5.997600px;}
.ws129{word-spacing:6.056400px;}
.wsd7{word-spacing:6.115200px;}
.ws143{word-spacing:6.174000px;}
.ws144{word-spacing:6.232800px;}
.ws8d{word-spacing:6.291600px;}
.ws2f{word-spacing:6.350400px;}
.ws7f{word-spacing:6.409200px;}
.ws15e{word-spacing:6.468000px;}
.ws37{word-spacing:6.526800px;}
.ws91{word-spacing:6.585600px;}
.wsab{word-spacing:6.644400px;}
.ws7d{word-spacing:6.703200px;}
.wsbc{word-spacing:6.762000px;}
.wscb{word-spacing:6.820800px;}
.wsd6{word-spacing:6.879600px;}
.ws5f{word-spacing:6.938400px;}
.ws8f{word-spacing:6.997200px;}
.ws66{word-spacing:7.056000px;}
.wsd0{word-spacing:7.114800px;}
.ws8a{word-spacing:7.173600px;}
.ws46{word-spacing:7.232400px;}
.ws23{word-spacing:7.291200px;}
.ws47{word-spacing:7.350000px;}
.wsb3{word-spacing:7.408800px;}
.ws4d{word-spacing:7.467600px;}
.ws85{word-spacing:7.526400px;}
.wsb1{word-spacing:7.585200px;}
.ws12f{word-spacing:7.644000px;}
.ws10e{word-spacing:7.702800px;}
.ws2e{word-spacing:7.761600px;}
.wsb8{word-spacing:7.820400px;}
.ws118{word-spacing:7.879200px;}
.wseb{word-spacing:7.938000px;}
.ws1a{word-spacing:7.996800px;}
.wscf{word-spacing:8.055600px;}
.ws6b{word-spacing:8.114400px;}
.ws13f{word-spacing:8.173200px;}
.wsbf{word-spacing:8.232000px;}
.ws54{word-spacing:8.290800px;}
.ws99{word-spacing:8.349600px;}
.ws36{word-spacing:8.408400px;}
.ws3b{word-spacing:8.467200px;}
.wsbe{word-spacing:8.584800px;}
.ws4e{word-spacing:8.643600px;}
.ws44{word-spacing:8.702400px;}
.ws32{word-spacing:8.761200px;}
.ws31{word-spacing:8.878800px;}
.wse9{word-spacing:8.937600px;}
.ws15a{word-spacing:8.996400px;}
.ws43{word-spacing:9.055200px;}
.wse{word-spacing:9.114000px;}
.wsd8{word-spacing:9.172800px;}
.ws2b{word-spacing:9.231600px;}
.ws45{word-spacing:9.290400px;}
.wsfc{word-spacing:9.349200px;}
.wsa1{word-spacing:9.408000px;}
.ws111{word-spacing:9.466800px;}
.ws6d{word-spacing:9.525600px;}
.ws168{word-spacing:9.584400px;}
.wsd3{word-spacing:9.643200px;}
.ws3c{word-spacing:9.702000px;}
.ws6e{word-spacing:9.760800px;}
.ws11e{word-spacing:9.819600px;}
.ws69{word-spacing:9.937200px;}
.ws14b{word-spacing:9.996000px;}
.ws94{word-spacing:10.054800px;}
.ws57{word-spacing:10.113600px;}
.ws41{word-spacing:10.172400px;}
.ws76{word-spacing:10.348800px;}
.wse1{word-spacing:10.407600px;}
.ws137{word-spacing:10.466400px;}
.ws8c{word-spacing:10.525200px;}
.ws18{word-spacing:10.584000px;}
.ws6f{word-spacing:10.642800px;}
.wse8{word-spacing:10.760400px;}
.ws68{word-spacing:10.819200px;}
.ws4a{word-spacing:10.936800px;}
.wsf{word-spacing:10.995600px;}
.ws171{word-spacing:11.054400px;}
.ws12b{word-spacing:11.113200px;}
.ws9a{word-spacing:11.172000px;}
.ws11b{word-spacing:11.230800px;}
.wsb7{word-spacing:11.289600px;}
.ws59{word-spacing:11.348400px;}
.ws2d{word-spacing:11.524800px;}
.ws14a{word-spacing:11.583600px;}
.ws14{word-spacing:11.642400px;}
.ws8e{word-spacing:11.701200px;}
.ws11{word-spacing:11.760000px;}
.ws77{word-spacing:11.818800px;}
.ws142{word-spacing:11.995200px;}
.wse4{word-spacing:12.054000px;}
.ws7b{word-spacing:12.112800px;}
.wsb6{word-spacing:12.171600px;}
.wsd5{word-spacing:12.230400px;}
.ws50{word-spacing:12.289200px;}
.ws146{word-spacing:12.348000px;}
.ws132{word-spacing:12.465600px;}
.ws93{word-spacing:12.583200px;}
.ws79{word-spacing:12.642000px;}
.wsb2{word-spacing:12.700800px;}
.ws125{word-spacing:12.759600px;}
.wsf7{word-spacing:12.818400px;}
.ws3e{word-spacing:12.877200px;}
.ws126{word-spacing:12.994800px;}
.ws2a{word-spacing:13.053600px;}
.wsbb{word-spacing:13.112400px;}
.wse2{word-spacing:13.171200px;}
.ws4b{word-spacing:13.230000px;}
.ws38{word-spacing:13.347600px;}
.ws4f{word-spacing:13.406400px;}
.ws75{word-spacing:13.524000px;}
.ws11d{word-spacing:13.582800px;}
.ws51{word-spacing:13.641600px;}
.ws4c{word-spacing:13.700400px;}
.wsfe{word-spacing:13.759200px;}
.ws70{word-spacing:13.818000px;}
.ws84{word-spacing:13.876800px;}
.ws5d{word-spacing:13.935600px;}
.ws1f{word-spacing:13.994400px;}
.wse5{word-spacing:14.112000px;}
.ws147{word-spacing:14.229600px;}
.ws40{word-spacing:14.288400px;}
.wsa9{word-spacing:14.347200px;}
.ws10f{word-spacing:14.464800px;}
.ws121{word-spacing:14.523600px;}
.ws35{word-spacing:14.582400px;}
.wsc1{word-spacing:14.641200px;}
.ws7a{word-spacing:14.700000px;}
.wsef{word-spacing:14.758800px;}
.wsb5{word-spacing:14.817600px;}
.wsf5{word-spacing:14.994000px;}
.ws12{word-spacing:15.111600px;}
.wsf1{word-spacing:15.170400px;}
.ws71{word-spacing:15.346800px;}
.ws78{word-spacing:15.405600px;}
.ws74{word-spacing:15.464400px;}
.wsce{word-spacing:15.523200px;}
.ws136{word-spacing:15.582000px;}
.ws22{word-spacing:15.640800px;}
.ws13a{word-spacing:15.699600px;}
.wsda{word-spacing:15.758400px;}
.wsde{word-spacing:15.817200px;}
.ws15f{word-spacing:16.111200px;}
.ws16e{word-spacing:16.287600px;}
.ws88{word-spacing:16.405200px;}
.ws140{word-spacing:16.581600px;}
.ws27{word-spacing:16.758000px;}
.ws16f{word-spacing:16.875600px;}
.ws14d{word-spacing:17.052000px;}
.ws124{word-spacing:17.169600px;}
.ws117{word-spacing:17.228400px;}
.ws15{word-spacing:17.287200px;}
.ws21{word-spacing:17.346000px;}
.ws148{word-spacing:17.404800px;}
.ws5e{word-spacing:17.463600px;}
.ws11f{word-spacing:17.522400px;}
.ws10{word-spacing:17.581200px;}
.ws110{word-spacing:17.698800px;}
.wsaa{word-spacing:17.757600px;}
.ws17{word-spacing:17.816400px;}
.ws13e{word-spacing:18.110400px;}
.ws100{word-spacing:18.228000px;}
.ws7e{word-spacing:18.286800px;}
.ws135{word-spacing:18.345600px;}
.ws12a{word-spacing:18.404400px;}
.ws145{word-spacing:18.463200px;}
.wsad{word-spacing:18.757200px;}
.ws3d{word-spacing:18.933600px;}
.ws97{word-spacing:18.992400px;}
.ws172{word-spacing:19.404000px;}
.wsae{word-spacing:19.521600px;}
.wse0{word-spacing:19.933200px;}
.ws116{word-spacing:19.992000px;}
.ws158{word-spacing:20.050800px;}
.ws141{word-spacing:21.168000px;}
.ws90{word-spacing:21.403200px;}
.wsff{word-spacing:21.462000px;}
.wsea{word-spacing:21.697200px;}
.ws14f{word-spacing:21.756000px;}
.ws16d{word-spacing:21.873600px;}
.ws16b{word-spacing:22.226400px;}
.ws16{word-spacing:22.285200px;}
.wsd9{word-spacing:22.344000px;}
.wsbd{word-spacing:22.520400px;}
.ws159{word-spacing:22.638000px;}
.ws6c{word-spacing:23.226000px;}
.ws128{word-spacing:23.696400px;}
.ws115{word-spacing:23.814000px;}
.ws169{word-spacing:23.872800px;}
.ws80{word-spacing:24.460800px;}
.ws11c{word-spacing:24.637200px;}
.wsc5{word-spacing:24.813600px;}
.wsdf{word-spacing:25.048800px;}
.wsb0{word-spacing:25.284000px;}
.wsaf{word-spacing:26.401200px;}
.ws13{word-spacing:29.635200px;}
.ws16c{word-spacing:29.988000px;}
.ws52{word-spacing:30.458400px;}
.ws119{word-spacing:30.811200px;}
.ws134{word-spacing:32.810400px;}
.ws81{word-spacing:33.810000px;}
.ws3f{word-spacing:40.219200px;}
.ws82{word-spacing:43.512000px;}
.ws65{word-spacing:60.340769px;}
.ws61{word-spacing:102.912000px;}
.ws155{word-spacing:382.128000px;}
.ws156{word-spacing:397.440000px;}
.ws154{word-spacing:414.768000px;}
.ws107{word-spacing:423.408000px;}
.ws106{word-spacing:430.752000px;}
.ws10b{word-spacing:491.664000px;}
.ws10a{word-spacing:766.656000px;}
.ws64{word-spacing:808.992000px;}
.ws157{word-spacing:1230.240078px;}
._13{margin-left:-50.380464px;}
._40{margin-left:-35.522508px;}
._3f{margin-left:-31.129170px;}
._54{margin-left:-25.815600px;}
._55{margin-left:-23.429990px;}
._d{margin-left:-19.641600px;}
._42{margin-left:-16.601694px;}
._2a{margin-left:-14.643600px;}
._12{margin-left:-13.119606px;}
._3e{margin-left:-10.704000px;}
._2b{margin-left:-9.702012px;}
._f{margin-left:-8.116800px;}
._14{margin-left:-6.879600px;}
._8{margin-left:-5.773536px;}
._c{margin-left:-4.704000px;}
._3{margin-left:-3.357024px;}
._2{margin-left:-2.251200px;}
._0{margin-left:-1.060800px;}
._1{width:1.766400px;}
._4{width:2.772000px;}
._2c{width:3.951600px;}
._b{width:4.995600px;}
._2e{width:5.997600px;}
._10{width:7.114800px;}
._9{width:8.286000px;}
._28{width:9.937189px;}
._2d{width:10.995581px;}
._11{width:12.289200px;}
._a{width:13.329960px;}
._7{width:14.940000px;}
._6{width:16.900790px;}
._2f{width:18.228000px;}
._e{width:19.374600px;}
._41{width:21.941994px;}
._29{width:23.181575px;}
._3d{width:24.234960px;}
._5{width:38.100657px;}
._56{width:45.204000px;}
._23{width:112.848000px;}
._22{width:135.648000px;}
._17{width:159.072000px;}
._44{width:160.651200px;}
._1d{width:252.353254px;}
._18{width:264.398381px;}
._43{width:282.576000px;}
._4b{width:284.122560px;}
._25{width:303.164400px;}
._1a{width:306.148761px;}
._1c{width:324.729592px;}
._39{width:378.518551px;}
._4d{width:384.336000px;}
._24{width:393.691181px;}
._32{width:401.327982px;}
._50{width:407.760000px;}
._4e{width:413.712000px;}
._34{width:424.751978px;}
._48{width:431.232000px;}
._46{width:437.856000px;}
._1e{width:440.466316px;}
._35{width:449.726423px;}
._38{width:456.527982px;}
._31{width:458.191860px;}
._37{width:461.626189px;}
._4a{width:467.472000px;}
._36{width:469.041593px;}
._52{width:493.504171px;}
._33{width:501.159165px;}
._4f{width:502.960171px;}
._4c{width:511.120171px;}
._51{width:522.428107px;}
._3c{width:525.600000px;}
._30{width:528.720000px;}
._3a{width:540.070926px;}
._27{width:550.775090px;}
._1b{width:554.787684px;}
._19{width:564.528000px;}
._20{width:568.104577px;}
._1f{width:576.117486px;}
._3b{width:627.758400px;}
._53{width:637.937169px;}
._26{width:660.859161px;}
._21{width:774.783439px;}
._15{width:815.855961px;}
._45{width:945.984078px;}
._49{width:1034.101797px;}
._16{width:1127.323163px;}
._47{width:1309.837536px;}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.400000px;}
.fsa{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs8{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:6.589325px;}
.y29{bottom:79.008299px;}
.y28{bottom:91.009799px;}
.ydc{bottom:100.386303px;}
.yfc{bottom:100.420657px;}
.y10d{bottom:100.427857px;}
.y1cf{bottom:100.947145px;}
.y1ab{bottom:101.083819px;}
.y322{bottom:101.638496px;}
.y27{bottom:103.011299px;}
.y2f1{bottom:104.214298px;}
.y180{bottom:107.745153px;}
.y25b{bottom:107.752353px;}
.y273{bottom:107.766753px;}
.y28b{bottom:107.788353px;}
.y152{bottom:107.831553px;}
.y2a6{bottom:107.877445px;}
.y2c1{bottom:108.270746px;}
.y205{bottom:108.485555px;}
.y1eb{bottom:108.934502px;}
.y200{bottom:109.218745px;}
.y62{bottom:111.861305px;}
.y8f{bottom:112.658847px;}
.y39f{bottom:114.342773px;}
.y26{bottom:115.012799px;}
.yfb{bottom:118.413457px;}
.y10c{bottom:118.420657px;}
.y3b5{bottom:118.842750px;}
.y119{bottom:118.849503px;}
.y114{bottom:118.878303px;}
.y1ce{bottom:118.939945px;}
.y1aa{bottom:119.076619px;}
.y321{bottom:119.631296px;}
.ye9{bottom:122.121147px;}
.y2f0{bottom:122.207098px;}
.y1ea{bottom:123.934502px;}
.y17f{bottom:125.737953px;}
.y25a{bottom:125.745153px;}
.y272{bottom:125.759553px;}
.y28a{bottom:125.781153px;}
.y151{bottom:125.824353px;}
.y2a5{bottom:125.906257px;}
.y2c0{bottom:126.277946px;}
.y204{bottom:126.478355px;}
.y25{bottom:127.014299px;}
.y1ff{bottom:127.211545px;}
.y39e{bottom:127.842773px;}
.y1f1{bottom:128.697145px;}
.y1f7{bottom:128.711545px;}
.y61{bottom:129.875705px;}
.y8e{bottom:130.651647px;}
.y3b4{bottom:132.342750px;}
.yfa{bottom:136.406257px;}
.y10b{bottom:136.413457px;}
.y113{bottom:136.871103px;}
.y118{bottom:136.900499px;}
.y1cd{bottom:136.939945px;}
.y1a9{bottom:137.069419px;}
.y320{bottom:137.624096px;}
.y359{bottom:138.511803px;}
.y1e9{bottom:138.934502px;}
.y24{bottom:139.015799px;}
.y2ef{bottom:140.199898px;}
.ye8{bottom:140.349147px;}
.y39d{bottom:141.342773px;}
.y17e{bottom:143.737953px;}
.y271{bottom:143.752353px;}
.y289{bottom:143.773953px;}
.y232{bottom:143.781153px;}
.y150{bottom:143.817153px;}
.y2a4{bottom:143.899057px;}
.y2bf{bottom:144.270746px;}
.y203{bottom:144.471155px;}
.y1fe{bottom:145.204345px;}
.y3b3{bottom:145.842750px;}
.y1f0{bottom:146.689945px;}
.y1f6{bottom:146.704345px;}
.y60{bottom:147.868505px;}
.y8d{bottom:148.644447px;}
.y23{bottom:151.017299px;}
.yf9{bottom:154.399057px;}
.y10a{bottom:154.406257px;}
.y39c{bottom:154.842773px;}
.y112{bottom:154.863903px;}
.y117{bottom:154.893299px;}
.y1cc{bottom:154.968757px;}
.y1a8{bottom:155.062219px;}
.y31f{bottom:155.645707px;}
.y2ee{bottom:158.214298px;}
.ye7{bottom:158.493147px;}
.y259{bottom:161.737953px;}
.y270{bottom:161.745153px;}
.y17d{bottom:161.766753px;}
.y231{bottom:161.773953px;}
.y14f{bottom:161.809953px;}
.y2a3{bottom:161.891857px;}
.y2be{bottom:162.270746px;}
.y202{bottom:162.463955px;}
.y22{bottom:163.018799px;}
.y1fd{bottom:163.197145px;}
.y1ef{bottom:164.689945px;}
.y1f5{bottom:164.697145px;}
.y358{bottom:165.511803px;}
.y5f{bottom:165.861305px;}
.y8c{bottom:166.644447px;}
.y39b{bottom:168.342773px;}
.yf8{bottom:172.391857px;}
.y109{bottom:172.399057px;}
.y111{bottom:172.856703px;}
.y116{bottom:172.886099px;}
.y1cb{bottom:172.961557px;}
.y1a7{bottom:173.055019px;}
.y31e{bottom:173.638507px;}
.y2ed{bottom:176.207098px;}
.ye6{bottom:176.643156px;}
.y357{bottom:179.011803px;}
.y26f{bottom:179.737953px;}
.y258{bottom:179.745153px;}
.y17c{bottom:179.759553px;}
.y230{bottom:179.766753px;}
.y14e{bottom:179.802753px;}
.y2a2{bottom:179.884657px;}
.y2bd{bottom:180.263546px;}
.y201{bottom:180.463955px;}
.y1fc{bottom:181.189945px;}
.y39a{bottom:181.842773px;}
.y1f4{bottom:182.689945px;}
.y1ee{bottom:182.704357px;}
.y5e{bottom:183.890105px;}
.y8b{bottom:184.651647px;}
.ye5{bottom:190.143156px;}
.yf7{bottom:190.384657px;}
.y108{bottom:190.391857px;}
.y110{bottom:190.849503px;}
.y115{bottom:190.878899px;}
.y1ca{bottom:190.954357px;}
.y1a6{bottom:191.047819px;}
.y31d{bottom:191.631307px;}
.y356{bottom:192.511803px;}
.y2ec{bottom:194.199898px;}
.y399{bottom:195.342773px;}
.y257{bottom:197.737953px;}
.y17b{bottom:197.752353px;}
.y22f{bottom:197.759553px;}
.y26e{bottom:197.766753px;}
.y14d{bottom:197.795553px;}
.y2a1{bottom:197.877457px;}
.y2bc{bottom:198.263557px;}
.y1ed{bottom:200.697157px;}
.y1f3{bottom:200.697745px;}
.y33{bottom:200.893799px;}
.y5d{bottom:201.882905px;}
.y8a{bottom:202.644447px;}
.y355{bottom:206.011803px;}
.ye4{bottom:208.305142px;}
.yf6{bottom:208.377457px;}
.y107{bottom:208.384657px;}
.y398{bottom:208.842773px;}
.y1c9{bottom:208.947157px;}
.y1a5{bottom:209.040619px;}
.y31c{bottom:209.624107px;}
.y2eb{bottom:212.207098px;}
.y32{bottom:214.393799px;}
.y17a{bottom:215.745153px;}
.y22e{bottom:215.752353px;}
.y26d{bottom:215.759553px;}
.y14c{bottom:215.788353px;}
.y256{bottom:215.838730px;}
.y2a0{bottom:215.956519px;}
.y2bb{bottom:216.285157px;}
.y1ec{bottom:218.689957px;}
.y1f2{bottom:218.690545px;}
.y354{bottom:219.511803px;}
.y5c{bottom:219.875705px;}
.y89{bottom:220.658847px;}
.ye3{bottom:221.805142px;}
.y397{bottom:222.342773px;}
.y106{bottom:226.377457px;}
.yf5{bottom:226.384657px;}
.y1c8{bottom:226.939957px;}
.y1a4{bottom:227.033419px;}
.y31b{bottom:227.624107px;}
.y31{bottom:227.893799px;}
.y2ea{bottom:230.199898px;}
.y179{bottom:233.737953px;}
.y22d{bottom:233.745153px;}
.y26c{bottom:233.752353px;}
.y14b{bottom:233.781153px;}
.y255{bottom:233.831530px;}
.y29f{bottom:233.949319px;}
.y2ba{bottom:234.277957px;}
.y396{bottom:235.842773px;}
.y353{bottom:237.511803px;}
.y5b{bottom:237.868505px;}
.y88{bottom:238.651647px;}
.ye2{bottom:239.955152px;}
.y209{bottom:243.747757px;}
.yf4{bottom:244.377457px;}
.y105{bottom:244.384657px;}
.y1c7{bottom:244.982996px;}
.y1a3{bottom:245.026219px;}
.y30{bottom:245.893799px;}
.y352{bottom:246.511780px;}
.y2e9{bottom:248.228698px;}
.y395{bottom:249.342773px;}
.y178{bottom:251.737953px;}
.y26b{bottom:251.745153px;}
.y14a{bottom:251.773953px;}
.y254{bottom:251.824330px;}
.y29e{bottom:251.942119px;}
.y2b9{bottom:252.270757px;}
.y2f{bottom:254.893799px;}
.y5a{bottom:255.861305px;}
.y87{bottom:256.644447px;}
.ye1{bottom:258.105161px;}
.y208{bottom:258.747757px;}
.y104{bottom:262.377457px;}
.yf3{bottom:262.391696px;}
.y394{bottom:262.842773px;}
.y1c6{bottom:262.975796px;}
.y1a2{bottom:263.019019px;}
.y31a{bottom:264.919203px;}
.y2e8{bottom:266.221498px;}
.y26a{bottom:269.737953px;}
.y288{bottom:269.745153px;}
.y177{bottom:269.752353px;}
.y149{bottom:269.766753px;}
.y22c{bottom:269.773953px;}
.y253{bottom:269.817130px;}
.y29d{bottom:269.934919px;}
.y2b8{bottom:270.263557px;}
.y2e{bottom:272.893799px;}
.y351{bottom:273.511780px;}
.y207{bottom:273.747757px;}
.y59{bottom:273.890105px;}
.y86{bottom:274.687647px;}
.ye0{bottom:276.250652px;}
.y393{bottom:276.342773px;}
.y103{bottom:280.382097px;}
.yf2{bottom:280.384496px;}
.y1c5{bottom:280.968596px;}
.y1a1{bottom:281.011819px;}
.y2d{bottom:281.893799px;}
.y319{bottom:282.912003px;}
.y1fb{bottom:283.527740px;}
.y11e{bottom:283.805260px;}
.y2e7{bottom:284.214298px;}
.y350{bottom:287.011780px;}
.y269{bottom:287.737953px;}
.y176{bottom:287.745153px;}
.y148{bottom:287.759553px;}
.y22b{bottom:287.766753px;}
.y252{bottom:287.809930px;}
.y29c{bottom:287.927719px;}
.y2b7{bottom:288.263557px;}
.y206{bottom:288.747757px;}
.y392{bottom:289.842773px;}
.y58{bottom:291.882905px;}
.y85{bottom:292.680447px;}
.ydf{bottom:294.394652px;}
.yf1{bottom:298.377296px;}
.y1fa{bottom:298.527740px;}
.y11d{bottom:298.805260px;}
.y1c4{bottom:298.961396px;}
.y1a0{bottom:299.004619px;}
.y318{bottom:300.948003px;}
.y2e6{bottom:302.207098px;}
.y391{bottom:303.342773px;}
.y175{bottom:305.737953px;}
.y287{bottom:305.745153px;}
.y147{bottom:305.752353px;}
.y22a{bottom:305.759553px;}
.y251{bottom:305.802730px;}
.y29b{bottom:305.920519px;}
.y2b6{bottom:306.263557px;}
.y57{bottom:309.875705px;}
.y84{bottom:310.673247px;}
.y1f9{bottom:313.527740px;}
.y11c{bottom:313.805260px;}
.y34f{bottom:314.011780px;}
.yf0{bottom:316.377296px;}
.y390{bottom:316.842773px;}
.y1c3{bottom:316.954196px;}
.y19f{bottom:316.997419px;}
.y317{bottom:318.940803px;}
.y2e5{bottom:320.199898px;}
.yde{bottom:321.286652px;}
.y286{bottom:323.737953px;}
.y146{bottom:323.745153px;}
.y229{bottom:323.752353px;}
.y174{bottom:323.781130px;}
.y250{bottom:323.795530px;}
.y29a{bottom:323.913319px;}
.y21{bottom:325.715103px;}
.y34e{bottom:327.511780px;}
.y56{bottom:327.868505px;}
.y1f8{bottom:328.527740px;}
.y83{bottom:328.666047px;}
.y11b{bottom:328.805260px;}
.y38f{bottom:330.342773px;}
.yef{bottom:334.406119px;}
.y102{bottom:334.459357px;}
.ydd{bottom:334.786652px;}
.y1c2{bottom:334.946996px;}
.y19e{bottom:334.990219px;}
.y316{bottom:336.933603px;}
.y2e4{bottom:338.214298px;}
.y145{bottom:341.737953px;}
.y228{bottom:341.745153px;}
.y268{bottom:341.766730px;}
.y173{bottom:341.773930px;}
.y24f{bottom:341.788330px;}
.y299{bottom:341.906119px;}
.y2b5{bottom:342.270757px;}
.y20{bottom:343.715103px;}
.y11a{bottom:343.805260px;}
.y38e{bottom:343.842773px;}
.y55{bottom:345.861305px;}
.y82{bottom:346.658847px;}
.yee{bottom:352.398919px;}
.y101{bottom:352.452157px;}
.y1c1{bottom:352.939796px;}
.y19d{bottom:352.983019px;}
.y34d{bottom:354.511780px;}
.y315{bottom:354.926403px;}
.y2e3{bottom:356.207098px;}
.y38d{bottom:357.342773px;}
.ydb{bottom:359.099396px;}
.y227{bottom:359.737953px;}
.y144{bottom:359.745153px;}
.y267{bottom:359.759530px;}
.y172{bottom:359.766730px;}
.y24e{bottom:359.781130px;}
.y298{bottom:359.898919px;}
.y2b4{bottom:360.263557px;}
.y1f{bottom:361.715103px;}
.y54{bottom:363.868505px;}
.y81{bottom:364.651647px;}
.y34c{bottom:368.011780px;}
.yed{bottom:370.391719px;}
.y100{bottom:370.444957px;}
.y38c{bottom:370.842773px;}
.y19c{bottom:370.975819px;}
.y1c0{bottom:370.990219px;}
.y314{bottom:372.919203px;}
.y2e2{bottom:374.199898px;}
.y143{bottom:377.737953px;}
.y266{bottom:377.752330px;}
.y171{bottom:377.759530px;}
.y226{bottom:377.766730px;}
.y24d{bottom:377.773930px;}
.y297{bottom:377.891719px;}
.y2b3{bottom:378.270735px;}
.y1e{bottom:379.715103px;}
.y53{bottom:381.861305px;}
.y80{bottom:382.644447px;}
.y38b{bottom:384.342773px;}
.yec{bottom:388.384519px;}
.yff{bottom:388.437757px;}
.y19b{bottom:388.968619px;}
.y1bf{bottom:388.983019px;}
.y313{bottom:390.912003px;}
.y2e1{bottom:392.199921px;}
.y34b{bottom:395.011780px;}
.y142{bottom:395.745130px;}
.y170{bottom:395.752330px;}
.y225{bottom:395.759530px;}
.y24c{bottom:395.766730px;}
.y296{bottom:395.884519px;}
.y2b2{bottom:396.263535px;}
.y1d{bottom:397.715103px;}
.y38a{bottom:397.842773px;}
.y52{bottom:399.911682px;}
.y7f{bottom:400.651670px;}
.yeb{bottom:406.377319px;}
.yfe{bottom:406.430557px;}
.y19a{bottom:406.961419px;}
.y1be{bottom:406.975819px;}
.y34a{bottom:408.511780px;}
.y312{bottom:408.912003px;}
.y389{bottom:411.342773px;}
.y141{bottom:413.737930px;}
.y16f{bottom:413.745130px;}
.y224{bottom:413.752330px;}
.y24b{bottom:413.759530px;}
.y295{bottom:413.877319px;}
.y2b1{bottom:414.292335px;}
.y51{bottom:417.904482px;}
.y7e{bottom:418.644470px;}
.y1c{bottom:420.215103px;}
.y349{bottom:422.011780px;}
.yea{bottom:424.377319px;}
.yfd{bottom:424.423357px;}
.y388{bottom:424.842773px;}
.y199{bottom:424.954219px;}
.y1bd{bottom:424.968619px;}
.y2e0{bottom:429.983257px;}
.yb9{bottom:430.620895px;}
.y16e{bottom:431.737930px;}
.y140{bottom:431.745130px;}
.y24a{bottom:431.752330px;}
.y294{bottom:431.891719px;}
.y2b0{bottom:432.285135px;}
.y50{bottom:435.897282px;}
.y7d{bottom:436.644470px;}
.y1b{bottom:438.215103px;}
.y387{bottom:438.342773px;}
.y198{bottom:442.947019px;}
.y1bc{bottom:442.961419px;}
.y311{bottom:446.228721px;}
.y2df{bottom:447.976057px;}
.yb8{bottom:448.642495px;}
.yda{bottom:448.721695px;}
.y348{bottom:449.011780px;}
.y13f{bottom:449.737930px;}
.y249{bottom:449.745130px;}
.y293{bottom:449.884519px;}
.y2af{bottom:450.277935px;}
.y386{bottom:451.842773px;}
.y4f{bottom:453.890082px;}
.y7c{bottom:454.723670px;}
.y1a{bottom:456.215103px;}
.y197{bottom:460.939819px;}
.y1bb{bottom:460.954219px;}
.y347{bottom:462.511780px;}
.y310{bottom:464.221521px;}
.y385{bottom:465.342773px;}
.y2de{bottom:465.968857px;}
.yb7{bottom:466.635295px;}
.yd9{bottom:466.714495px;}
.y13e{bottom:467.737930px;}
.y16d{bottom:467.745130px;}
.y292{bottom:467.877319px;}
.y2ae{bottom:468.270735px;}
.y4e{bottom:471.882882px;}
.y7b{bottom:472.716470px;}
.y19{bottom:474.215103px;}
.y346{bottom:476.011780px;}
.y10f{bottom:477.305237px;}
.y384{bottom:478.842773px;}
.y196{bottom:478.947019px;}
.y30f{bottom:482.214321px;}
.y2dd{bottom:483.968857px;}
.yb6{bottom:484.628095px;}
.yd8{bottom:484.707295px;}
.y16c{bottom:485.737930px;}
.y13d{bottom:485.745130px;}
.y291{bottom:485.877319px;}
.y2ad{bottom:486.263535px;}
.y4d{bottom:489.875682px;}
.y7a{bottom:490.709270px;}
.y18{bottom:492.215103px;}
.y10e{bottom:492.305237px;}
.y383{bottom:492.342773px;}
.y195{bottom:496.939819px;}
.y30e{bottom:500.207121px;}
.y2dc{bottom:501.976057px;}
.yb5{bottom:502.620895px;}
.yd7{bottom:502.700095px;}
.y345{bottom:503.011780px;}
.y223{bottom:503.737930px;}
.y13c{bottom:503.745130px;}
.y16b{bottom:503.752330px;}
.y290{bottom:503.877319px;}
.y2ac{bottom:504.285135px;}
.y382{bottom:505.842773px;}
.y4c{bottom:507.868482px;}
.y79{bottom:508.702070px;}
.y17{bottom:510.215103px;}
.y194{bottom:514.954219px;}
.y1ba{bottom:514.997419px;}
.y344{bottom:516.511780px;}
.y30d{bottom:518.199921px;}
.y381{bottom:519.342773px;}
.y2db{bottom:519.968857px;}
.yb4{bottom:520.664095px;}
.yd6{bottom:520.692895px;}
.y13b{bottom:521.737930px;}
.y16a{bottom:521.745130px;}
.y222{bottom:521.759530px;}
.y2ab{bottom:522.277935px;}
.y4b{bottom:525.861282px;}
.y78{bottom:526.694870px;}
.y16{bottom:528.215103px;}
.y343{bottom:530.011780px;}
.y380{bottom:532.842773px;}
.y193{bottom:532.947019px;}
.y1b9{bottom:532.990219px;}
.y30c{bottom:536.228721px;}
.y2da{bottom:537.968857px;}
.yb3{bottom:538.656895px;}
.yd5{bottom:538.685695px;}
.y13a{bottom:539.737930px;}
.y221{bottom:539.752330px;}
.y285{bottom:539.781130px;}
.y28f{bottom:539.891719px;}
.y2aa{bottom:540.270735px;}
.y342{bottom:543.511780px;}
.y4a{bottom:543.890082px;}
.y77{bottom:544.687670px;}
.y15{bottom:546.215103px;}
.y37f{bottom:546.342773px;}
.y192{bottom:550.939819px;}
.y1b8{bottom:550.983019px;}
.y30b{bottom:554.221521px;}
.yb2{bottom:556.649695px;}
.yd4{bottom:556.678495px;}
.y341{bottom:557.011780px;}
.y220{bottom:557.745130px;}
.y139{bottom:557.752330px;}
.y169{bottom:557.766730px;}
.y284{bottom:557.773930px;}
.y265{bottom:557.781130px;}
.y248{bottom:557.802730px;}
.y28e{bottom:557.884519px;}
.y2a9{bottom:558.270735px;}
.y37e{bottom:559.842773px;}
.y49{bottom:561.882882px;}
.y76{bottom:562.680470px;}
.y14{bottom:564.215103px;}
.y191{bottom:568.975819px;}
.y340{bottom:570.511780px;}
.y30a{bottom:572.214321px;}
.y37d{bottom:573.342773px;}
.yb1{bottom:574.642495px;}
.yd3{bottom:574.671295px;}
.y21f{bottom:575.737930px;}
.y138{bottom:575.745130px;}
.y168{bottom:575.759530px;}
.y283{bottom:575.766730px;}
.y264{bottom:575.773930px;}
.y247{bottom:575.795530px;}
.y28d{bottom:575.877319px;}
.y2a8{bottom:576.263535px;}
.y48{bottom:579.875682px;}
.y75{bottom:580.673270px;}
.y13{bottom:582.215103px;}
.y33f{bottom:584.011780px;}
.y37c{bottom:586.842773px;}
.y190{bottom:586.968619px;}
.y309{bottom:590.207121px;}
.yb0{bottom:592.635295px;}
.yd2{bottom:592.664095px;}
.y137{bottom:593.737930px;}
.y167{bottom:593.752330px;}
.y282{bottom:593.759530px;}
.y263{bottom:593.766730px;}
.y246{bottom:593.788330px;}
.y28c{bottom:593.877319px;}
.y2a7{bottom:594.263535px;}
.y33e{bottom:597.511780px;}
.y47{bottom:597.868482px;}
.y74{bottom:598.666070px;}
.y12{bottom:600.215103px;}
.y37b{bottom:600.342773px;}
.y18f{bottom:604.961419px;}
.y308{bottom:608.207121px;}
.yaf{bottom:610.628095px;}
.yd1{bottom:610.656895px;}
.y136{bottom:611.745130px;}
.y281{bottom:611.752330px;}
.y262{bottom:611.759530px;}
.y245{bottom:611.781130px;}
.y37a{bottom:613.842773px;}
.y46{bottom:615.861282px;}
.y73{bottom:616.658870px;}
.y11{bottom:618.215103px;}
.y18e{bottom:622.954219px;}
.y33d{bottom:624.511780px;}
.y307{bottom:626.199921px;}
.y379{bottom:627.342773px;}
.yae{bottom:628.620895px;}
.yd0{bottom:628.649695px;}
.y135{bottom:629.737930px;}
.y280{bottom:629.745130px;}
.y261{bottom:629.752330px;}
.y244{bottom:629.773930px;}
.y45{bottom:633.911682px;}
.y72{bottom:634.651670px;}
.y10{bottom:636.215103px;}
.y33c{bottom:638.011780px;}
.y378{bottom:640.842773px;}
.y18d{bottom:640.947019px;}
.y306{bottom:644.207121px;}
.ycf{bottom:646.642495px;}
.yad{bottom:646.649695px;}
.y2d5{bottom:647.227518px;}
.y27f{bottom:647.737930px;}
.y134{bottom:647.742731px;}
.y260{bottom:647.745130px;}
.y243{bottom:647.766730px;}
.y21e{bottom:647.802776px;}
.y44{bottom:651.904482px;}
.y71{bottom:652.644470px;}
.yf{bottom:654.215103px;}
.y377{bottom:654.342773px;}
.y18c{bottom:658.939819px;}
.y305{bottom:662.199921px;}
.yce{bottom:664.635295px;}
.yac{bottom:664.642495px;}
.y33b{bottom:665.011780px;}
.y2d4{bottom:665.455518px;}
.y133{bottom:665.737930px;}
.y27e{bottom:665.752330px;}
.y242{bottom:665.759530px;}
.y21d{bottom:665.795576px;}
.y376{bottom:667.842773px;}
.y43{bottom:669.897282px;}
.y70{bottom:670.644470px;}
.ye{bottom:672.215103px;}
.y18b{bottom:676.944620px;}
.y1b7{bottom:676.954219px;}
.y33a{bottom:678.511780px;}
.y304{bottom:680.221521px;}
.y375{bottom:681.342773px;}
.ycd{bottom:682.628095px;}
.yab{bottom:682.635295px;}
.y2d3{bottom:683.599518px;}
.y25f{bottom:683.737930px;}
.y27d{bottom:683.745130px;}
.y241{bottom:683.752330px;}
.y21c{bottom:683.788376px;}
.y42{bottom:687.890082px;}
.y6f{bottom:688.716470px;}
.y339{bottom:692.011780px;}
.yd{bottom:694.715103px;}
.y374{bottom:694.842773px;}
.y18a{bottom:694.939819px;}
.y1b6{bottom:694.947019px;}
.y303{bottom:698.214321px;}
.ycc{bottom:700.620895px;}
.yaa{bottom:700.628095px;}
.y132{bottom:701.737930px;}
.y2d2{bottom:701.743518px;}
.y240{bottom:701.745130px;}
.y166{bottom:701.766776px;}
.y21b{bottom:701.781176px;}
.y338{bottom:705.511780px;}
.y41{bottom:705.882882px;}
.y6e{bottom:706.709270px;}
.y373{bottom:708.342773px;}
.yc{bottom:712.715103px;}
.y1b5{bottom:712.939819px;}
.y302{bottom:716.207121px;}
.ya9{bottom:718.620895px;}
.ycb{bottom:718.649741px;}
.y337{bottom:719.011780px;}
.y23f{bottom:719.737930px;}
.y2d9{bottom:719.745130px;}
.y165{bottom:719.759576px;}
.y131{bottom:719.766776px;}
.y21a{bottom:719.773976px;}
.y2d1{bottom:719.887518px;}
.y372{bottom:721.842773px;}
.y40{bottom:723.875682px;}
.y6d{bottom:724.702070px;}
.yb{bottom:730.715103px;}
.y189{bottom:730.939819px;}
.y1b4{bottom:730.961419px;}
.y336{bottom:732.511780px;}
.y301{bottom:734.199921px;}
.y371{bottom:735.342773px;}
.ya8{bottom:736.635341px;}
.yca{bottom:736.642541px;}
.y25e{bottom:737.737930px;}
.y23e{bottom:737.745130px;}
.y164{bottom:737.752376px;}
.y130{bottom:737.759576px;}
.y219{bottom:737.766776px;}
.y2d0{bottom:738.031518px;}
.y3f{bottom:741.868482px;}
.y6c{bottom:742.694870px;}
.y335{bottom:746.011780px;}
.ya{bottom:748.715103px;}
.y370{bottom:748.842773px;}
.y188{bottom:748.939819px;}
.y1b3{bottom:748.954219px;}
.y300{bottom:752.199921px;}
.ya7{bottom:754.628141px;}
.yc9{bottom:754.635341px;}
.y23d{bottom:755.737930px;}
.y163{bottom:755.745176px;}
.y12f{bottom:755.752376px;}
.y218{bottom:755.759576px;}
.y2cf{bottom:756.175518px;}
.y334{bottom:759.511780px;}
.y3e{bottom:759.861282px;}
.y6b{bottom:760.687670px;}
.y2ce{bottom:760.819518px;}
.y1de{bottom:761.339975px;}
.y36f{bottom:762.342773px;}
.y1b2{bottom:766.947019px;}
.y187{bottom:766.975819px;}
.y9{bottom:771.215057px;}
.ya6{bottom:772.620941px;}
.yc8{bottom:772.628141px;}
.y333{bottom:773.011780px;}
.y162{bottom:773.737976px;}
.y12e{bottom:773.745176px;}
.y217{bottom:773.752376px;}
.y1dd{bottom:774.089975px;}
.y2cd{bottom:774.319518px;}
.y36e{bottom:775.842773px;}
.y3d{bottom:777.861328px;}
.y6a{bottom:778.680470px;}
.y1b1{bottom:784.939819px;}
.y186{bottom:784.968619px;}
.y332{bottom:786.511780px;}
.y1dc{bottom:786.839975px;}
.y36d{bottom:789.342773px;}
.y2ff{bottom:789.968811px;}
.yc7{bottom:790.620941px;}
.ya5{bottom:790.685741px;}
.y12d{bottom:791.737976px;}
.y216{bottom:791.745176px;}
.y161{bottom:791.925453px;}
.y2cc{bottom:792.463518px;}
.y3c{bottom:795.897328px;}
.y69{bottom:796.673270px;}
.y1db{bottom:799.592975px;}
.y331{bottom:800.011780px;}
.y36c{bottom:802.842773px;}
.y3b2{bottom:802.842808px;}
.y1b0{bottom:802.939819px;}
.y185{bottom:802.961419px;}
.y2fe{bottom:807.968811px;}
.yc6{bottom:808.625742px;}
.ya4{bottom:808.678541px;}
.y12c{bottom:809.737976px;}
.y2d8{bottom:809.745176px;}
.y215{bottom:809.759576px;}
.y160{bottom:809.918253px;}
.y2cb{bottom:810.619518px;}
.y1da{bottom:812.339975px;}
.y330{bottom:813.511780px;}
.y3b{bottom:813.890128px;}
.y68{bottom:814.666070px;}
.y36b{bottom:816.342773px;}
.y3b1{bottom:816.342808px;}
.y1af{bottom:820.947019px;}
.y184{bottom:820.954219px;}
.y1d9{bottom:825.086975px;}
.y2fd{bottom:825.990411px;}
.yc5{bottom:826.620941px;}
.ya3{bottom:826.671341px;}
.y32f{bottom:827.011780px;}
.y2d7{bottom:827.737976px;}
.y25d{bottom:827.745176px;}
.y214{bottom:827.752376px;}
.y12b{bottom:827.824376px;}
.y15f{bottom:827.911053px;}
.y2ca{bottom:828.763518px;}
.y36a{bottom:829.842773px;}
.y3b0{bottom:829.842808px;}
.y3a{bottom:831.882928px;}
.y67{bottom:832.658870px;}
.y1ae{bottom:838.939819px;}
.y183{bottom:838.947019px;}
.y32e{bottom:840.511780px;}
.y369{bottom:843.342773px;}
.y3af{bottom:843.342808px;}
.y8{bottom:843.548112px;}
.y2fc{bottom:843.983211px;}
.yc4{bottom:844.620941px;}
.ya2{bottom:844.664141px;}
.y25c{bottom:845.737976px;}
.y2d6{bottom:845.742776px;}
.y213{bottom:845.745176px;}
.y12a{bottom:845.817176px;}
.y15e{bottom:845.903853px;}
.y1e8{bottom:846.822018px;}
.y2c9{bottom:846.907518px;}
.y39{bottom:849.875728px;}
.y66{bottom:850.651670px;}
.y32d{bottom:854.011780px;}
.y368{bottom:856.842773px;}
.y3ae{bottom:856.842808px;}
.y182{bottom:856.939819px;}
.y1ad{bottom:857.090118px;}
.y2fb{bottom:861.976011px;}
.ya1{bottom:862.656941px;}
.y212{bottom:863.737976px;}
.y129{bottom:863.809976px;}
.y15d{bottom:863.896653px;}
.y7{bottom:864.552612px;}
.y1e7{bottom:865.055982px;}
.y2c8{bottom:865.063518px;}
.y32c{bottom:867.511780px;}
.y38{bottom:867.868528px;}
.y65{bottom:868.644470px;}
.y367{bottom:870.342773px;}
.y3ad{bottom:870.342808px;}
.y181{bottom:874.939819px;}
.y1ac{bottom:875.082918px;}
.y2fa{bottom:879.968811px;}
.yc3{bottom:880.635341px;}
.ya0{bottom:880.649741px;}
.y32b{bottom:881.011780px;}
.y27c{bottom:881.737976px;}
.y211{bottom:881.745176px;}
.y23c{bottom:881.752376px;}
.y128{bottom:881.802776px;}
.y15c{bottom:881.889453px;}
.y1e6{bottom:883.206037px;}
.y2c7{bottom:883.207518px;}
.y366{bottom:883.842773px;}
.y3ac{bottom:883.842808px;}
.y37{bottom:885.861328px;}
.y64{bottom:886.654202px;}
.y32a{bottom:894.511780px;}
.y365{bottom:897.342773px;}
.y3ab{bottom:897.342808px;}
.y2f9{bottom:897.968811px;}
.yc2{bottom:898.628141px;}
.y9f{bottom:898.642541px;}
.y210{bottom:899.737976px;}
.y23b{bottom:899.745176px;}
.y127{bottom:899.795576px;}
.y15b{bottom:899.882253px;}
.y6{bottom:900.577528px;}
.y1e5{bottom:901.361963px;}
.y2c6{bottom:901.363518px;}
.y36{bottom:903.861328px;}
.y63{bottom:904.647002px;}
.y329{bottom:908.011780px;}
.y364{bottom:910.842773px;}
.y3aa{bottom:910.842808px;}
.y2f8{bottom:915.968811px;}
.yc1{bottom:916.620941px;}
.y9e{bottom:916.635341px;}
.y23a{bottom:917.737976px;}
.y20f{bottom:917.773976px;}
.y126{bottom:917.788376px;}
.y27b{bottom:917.810253px;}
.y15a{bottom:917.875053px;}
.y1e4{bottom:919.505963px;}
.y2c5{bottom:919.507518px;}
.y328{bottom:921.511780px;}
.y363{bottom:924.342773px;}
.y3a9{bottom:924.342808px;}
.y1d6{bottom:933.237579px;}
.y9d{bottom:934.628141px;}
.yc0{bottom:934.669187px;}
.y327{bottom:935.011780px;}
.y20e{bottom:935.766776px;}
.y239{bottom:935.773976px;}
.y125{bottom:935.781176px;}
.y27a{bottom:935.803053px;}
.y159{bottom:935.867853px;}
.y2c4{bottom:937.651518px;}
.y1e3{bottom:937.656018px;}
.y362{bottom:937.842773px;}
.y3a8{bottom:937.842808px;}
.y5{bottom:939.565528px;}
.y1d5{bottom:948.237579px;}
.y361{bottom:951.342773px;}
.y3a7{bottom:951.342808px;}
.y9c{bottom:952.620941px;}
.ybf{bottom:952.661987px;}
.y2f7{bottom:953.737976px;}
.y20d{bottom:953.759576px;}
.y238{bottom:953.766776px;}
.y124{bottom:953.773976px;}
.y279{bottom:953.795853px;}
.y158{bottom:953.860653px;}
.y2c3{bottom:955.795518px;}
.y1e2{bottom:955.805982px;}
.y1d4{bottom:963.237579px;}
.y360{bottom:964.842773px;}
.y3a6{bottom:964.842808px;}
.y9b{bottom:970.628141px;}
.ybe{bottom:970.654787px;}
.y2f6{bottom:971.745176px;}
.y20c{bottom:971.752376px;}
.y237{bottom:971.759576px;}
.y123{bottom:971.766776px;}
.y278{bottom:971.788653px;}
.y157{bottom:971.853453px;}
.y93{bottom:973.925079px;}
.y2c2{bottom:973.939518px;}
.y1e1{bottom:973.956037px;}
.y326{bottom:974.015530px;}
.y1d3{bottom:978.237579px;}
.y35f{bottom:978.342773px;}
.y3a5{bottom:978.342808px;}
.y4{bottom:978.553528px;}
.y9a{bottom:988.620941px;}
.ybd{bottom:988.647587px;}
.y2f5{bottom:989.737976px;}
.y20b{bottom:989.745176px;}
.y236{bottom:989.752376px;}
.y122{bottom:989.759576px;}
.y277{bottom:989.781453px;}
.y156{bottom:989.846253px;}
.y35e{bottom:991.842773px;}
.y3a4{bottom:991.842808px;}
.y92{bottom:991.925079px;}
.y1e0{bottom:992.095518px;}
.y1d2{bottom:993.237579px;}
.y35d{bottom:1005.342773px;}
.y3a3{bottom:1005.342808px;}
.y99{bottom:1006.635341px;}
.ybc{bottom:1006.640387px;}
.y20a{bottom:1007.737976px;}
.y235{bottom:1007.745176px;}
.y121{bottom:1007.752376px;}
.y2f4{bottom:1007.764519px;}
.y276{bottom:1007.774253px;}
.y155{bottom:1007.839053px;}
.y1d1{bottom:1008.237579px;}
.y325{bottom:1011.511780px;}
.y91{bottom:1014.425079px;}
.y35c{bottom:1018.842773px;}
.y3a2{bottom:1018.842808px;}
.y1df{bottom:1018.987518px;}
.y1d0{bottom:1023.237579px;}
.y98{bottom:1024.628141px;}
.ybb{bottom:1024.633187px;}
.y324{bottom:1025.011780px;}
.y234{bottom:1025.737976px;}
.y120{bottom:1025.745176px;}
.y2f3{bottom:1025.757319px;}
.y275{bottom:1025.767053px;}
.y154{bottom:1025.831853px;}
.y35b{bottom:1032.342773px;}
.y3a1{bottom:1032.342808px;}
.y90{bottom:1032.425079px;}
.y3{bottom:1033.362579px;}
.y2a{bottom:1035.750183px;}
.y1d7{bottom:1038.237579px;}
.y97{bottom:1042.620941px;}
.yba{bottom:1042.625987px;}
.y323{bottom:1043.011780px;}
.y1d8{bottom:1043.300079px;}
.y11f{bottom:1043.737976px;}
.y233{bottom:1043.738253px;}
.y2f2{bottom:1043.750119px;}
.y274{bottom:1043.759853px;}
.y153{bottom:1043.824653px;}
.y35a{bottom:1045.842773px;}
.y3a0{bottom:1045.842808px;}
.y2b{bottom:1108.714508px;}
.y2{bottom:1112.297079px;}
.y94{bottom:1126.524628px;}
.y34{bottom:1126.524719px;}
.y96{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y95{bottom:1127.300079px;}
.y35{bottom:1127.304719px;}
.he{height:27.424500px;}
.h11{height:27.814500px;}
.hd{height:37.086000px;}
.h10{height:39.735000px;}
.h16{height:39.984000px;}
.h1f{height:40.026000px;}
.h19{height:42.384000px;}
.h28{height:42.840000px;}
.h26{height:43.740000px;}
.h25{height:44.505000px;}
.h3{height:45.696000px;}
.h12{height:45.744000px;}
.h27{height:45.814500px;}
.h17{height:46.656000px;}
.h2{height:47.232000px;}
.h1c{height:47.472000px;}
.h1e{height:48.869606px;}
.h20{height:48.886580px;}
.hb{height:52.980000px;}
.h15{height:53.406000px;}
.h14{height:53.654399px;}
.h13{height:55.860000px;}
.ha{height:58.320000px;}
.hc{height:61.086000px;}
.h9{height:61.120200px;}
.h21{height:62.534765px;}
.h23{height:62.593235px;}
.h1d{height:62.593279px;}
.h22{height:62.593281px;}
.h24{height:62.621989px;}
.h7{height:67.194379px;}
.h8{height:67.212379px;}
.hf{height:73.908933px;}
.h4{height:77.142000px;}
.h1a{height:96.384000px;}
.h1b{height:96.407963px;}
.h18{height:100.656000px;}
.h5{height:137.088000px;}
.h6{height:137.232000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:234.392990px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xb{left:95.880900px;}
.x8{left:97.034392px;}
.x12{left:107.539352px;}
.xc{left:142.576352px;}
.x4{left:270.817497px;}
.xe{left:293.733444px;}
.x10{left:352.771487px;}
.xd{left:421.552514px;}
.x9{left:457.096198px;}
.xa{left:469.081794px;}
.x11{left:479.586594px;}
.x6{left:575.350479px;}
.x5{left:694.929886px;}
.xf{left:741.068390px;}
.x7{left:747.224258px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.117850pt;}
.v7{vertical-align:-10.671967pt;}
.v9{vertical-align:-9.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.va{vertical-align:9.333333pt;}
.vb{vertical-align:10.666667pt;}
.vc{vertical-align:16.000000pt;}
.v8{vertical-align:17.067383pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:23.466471pt;}
.v6{vertical-align:48.000000pt;}
.ls4{letter-spacing:-4.149273pt;}
.ls1e{letter-spacing:-1.358933pt;}
.lsd{letter-spacing:-1.202133pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls20{letter-spacing:-0.836267pt;}
.lsc{letter-spacing:-0.784000pt;}
.ls1b{letter-spacing:-0.731733pt;}
.ls11{letter-spacing:-0.682667pt;}
.ls18{letter-spacing:-0.548800pt;}
.ls23{letter-spacing:-0.522667pt;}
.ls19{letter-spacing:-0.477867pt;}
.lsb{letter-spacing:-0.418133pt;}
.ls25{letter-spacing:-0.365867pt;}
.lsf{letter-spacing:-0.313600pt;}
.ls22{letter-spacing:-0.261333pt;}
.ls2b{letter-spacing:-0.200000pt;}
.ls24{letter-spacing:-0.104533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls2c{letter-spacing:0.000027pt;}
.ls1d{letter-spacing:0.000030pt;}
.ls26{letter-spacing:0.000042pt;}
.ls29{letter-spacing:0.000047pt;}
.ls15{letter-spacing:0.000119pt;}
.ls1c{letter-spacing:0.000355pt;}
.ls27{letter-spacing:0.000437pt;}
.ls28{letter-spacing:0.000518pt;}
.ls17{letter-spacing:0.004507pt;}
.ls16{letter-spacing:0.012899pt;}
.ls1a{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.365846pt;}
.ls8{letter-spacing:0.381521pt;}
.ls7{letter-spacing:0.392000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.470400pt;}
.ls6{letter-spacing:0.475627pt;}
.ls1f{letter-spacing:0.836267pt;}
.ls14{letter-spacing:0.914667pt;}
.ls12{letter-spacing:1.045333pt;}
.ls13{letter-spacing:1.829333pt;}
.ls0{letter-spacing:4.853333pt;}
.lsa{letter-spacing:14.986656pt;}
.ls2a{letter-spacing:16.882133pt;}
.ls21{letter-spacing:566.400000pt;}
.lse{letter-spacing:600.234667pt;}
.ws1{word-spacing:-18.858667pt;}
.ws152{word-spacing:-17.404800pt;}
.wsba{word-spacing:-14.112000pt;}
.ws9f{word-spacing:-13.328000pt;}
.ws138{word-spacing:-13.118933pt;}
.ws166{word-spacing:-12.753067pt;}
.wsa{word-spacing:-12.282667pt;}
.ws151{word-spacing:-12.183360pt;}
.ws163{word-spacing:-12.178133pt;}
.ws15d{word-spacing:-12.021333pt;}
.ws150{word-spacing:-11.760000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws60{word-spacing:-11.498667pt;}
.ws14e{word-spacing:-11.446400pt;}
.ws3{word-spacing:-11.096533pt;}
.wsc{word-spacing:-11.080533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws9e{word-spacing:-10.156800pt;}
.wsb9{word-spacing:-9.512533pt;}
.ws108{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws7{word-spacing:-8.760000pt;}
.ws102{word-spacing:-8.661333pt;}
.wsb{word-spacing:-8.597867pt;}
.ws174{word-spacing:-8.280000pt;}
.ws153{word-spacing:-8.232000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws10c{word-spacing:-7.914667pt;}
.ws63{word-spacing:-7.680000pt;}
.ws6{word-spacing:-7.242667pt;}
.ws176{word-spacing:-7.200000pt;}
.ws62{word-spacing:-6.540800pt;}
.ws175{word-spacing:-6.132000pt;}
.ws109{word-spacing:-6.062933pt;}
.ws39{word-spacing:-5.749333pt;}
.ws104{word-spacing:-5.540267pt;}
.ws105{word-spacing:-4.991467pt;}
.ws9c{word-spacing:-4.010667pt;}
.ws9d{word-spacing:-3.328000pt;}
.ws9{word-spacing:-2.464000pt;}
.ws103{word-spacing:-2.133333pt;}
.wsdd{word-spacing:-1.829333pt;}
.ws114{word-spacing:-1.792000pt;}
.ws178{word-spacing:-1.680000pt;}
.ws177{word-spacing:-1.600000pt;}
.ws10d{word-spacing:-1.493333pt;}
.ws15c{word-spacing:-1.358933pt;}
.ws127{word-spacing:-1.149867pt;}
.wsb4{word-spacing:-1.045333pt;}
.wsd4{word-spacing:-0.993067pt;}
.ws19{word-spacing:-0.888533pt;}
.ws6a{word-spacing:-0.784000pt;}
.ws160{word-spacing:-0.627200pt;}
.wsa2{word-spacing:-0.522667pt;}
.ws24{word-spacing:-0.470400pt;}
.ws9b{word-spacing:-0.426667pt;}
.wsed{word-spacing:-0.418133pt;}
.wsfa{word-spacing:-0.365867pt;}
.ws53{word-spacing:-0.313600pt;}
.ws13b{word-spacing:-0.261333pt;}
.ws1c{word-spacing:-0.209067pt;}
.ws17a{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.156800pt;}
.ws179{word-spacing:-0.120000pt;}
.ws5b{word-spacing:-0.104533pt;}
.ws12c{word-spacing:-0.052267pt;}
.ws167{word-spacing:-0.036587pt;}
.ws17c{word-spacing:-0.028000pt;}
.ws8{word-spacing:0.000000pt;}
.ws11a{word-spacing:0.052267pt;}
.wsc2{word-spacing:0.104533pt;}
.wscc{word-spacing:0.156800pt;}
.ws17b{word-spacing:0.200000pt;}
.ws56{word-spacing:0.209067pt;}
.ws96{word-spacing:0.261333pt;}
.wsf8{word-spacing:0.313600pt;}
.ws42{word-spacing:0.418133pt;}
.wsa5{word-spacing:0.470400pt;}
.ws161{word-spacing:0.522667pt;}
.ws173{word-spacing:0.574933pt;}
.wsc7{word-spacing:0.627200pt;}
.ws2c{word-spacing:0.731733pt;}
.ws29{word-spacing:0.784000pt;}
.ws13c{word-spacing:0.836267pt;}
.ws133{word-spacing:0.888533pt;}
.ws1e{word-spacing:0.940800pt;}
.wsf3{word-spacing:0.993067pt;}
.ws86{word-spacing:1.045333pt;}
.ws87{word-spacing:1.097600pt;}
.ws123{word-spacing:1.149867pt;}
.ws49{word-spacing:1.202133pt;}
.ws1b{word-spacing:1.254400pt;}
.ws12e{word-spacing:1.306667pt;}
.wse7{word-spacing:1.358933pt;}
.ws5a{word-spacing:1.411200pt;}
.ws122{word-spacing:1.463467pt;}
.ws131{word-spacing:1.515733pt;}
.ws130{word-spacing:1.568000pt;}
.wsc4{word-spacing:1.620267pt;}
.ws25{word-spacing:1.672533pt;}
.wsc6{word-spacing:1.724800pt;}
.ws164{word-spacing:1.777067pt;}
.ws95{word-spacing:1.829333pt;}
.wsd1{word-spacing:1.881600pt;}
.ws3a{word-spacing:1.933867pt;}
.wsdc{word-spacing:1.986133pt;}
.wsca{word-spacing:2.038400pt;}
.wsc9{word-spacing:2.090667pt;}
.wsee{word-spacing:2.142933pt;}
.wsa8{word-spacing:2.195200pt;}
.ws1d{word-spacing:2.247467pt;}
.ws7c{word-spacing:2.352000pt;}
.wsf6{word-spacing:2.404267pt;}
.wsf2{word-spacing:2.456533pt;}
.wsf4{word-spacing:2.508800pt;}
.wsc8{word-spacing:2.561067pt;}
.wsd2{word-spacing:2.613333pt;}
.ws139{word-spacing:2.665600pt;}
.wsa0{word-spacing:2.717867pt;}
.wsa3{word-spacing:2.770133pt;}
.ws33{word-spacing:2.822400pt;}
.ws15b{word-spacing:2.926933pt;}
.ws55{word-spacing:2.979200pt;}
.ws149{word-spacing:3.031467pt;}
.ws165{word-spacing:3.083733pt;}
.wsa6{word-spacing:3.136000pt;}
.ws101{word-spacing:3.188267pt;}
.wsfd{word-spacing:3.240533pt;}
.wsc3{word-spacing:3.292800pt;}
.wsf0{word-spacing:3.345067pt;}
.wsa7{word-spacing:3.397333pt;}
.wsdb{word-spacing:3.449600pt;}
.ws13d{word-spacing:3.501867pt;}
.ws113{word-spacing:3.554133pt;}
.wsc0{word-spacing:3.658667pt;}
.ws72{word-spacing:3.710933pt;}
.wse3{word-spacing:3.763200pt;}
.ws170{word-spacing:3.815467pt;}
.ws34{word-spacing:3.867733pt;}
.ws30{word-spacing:3.920000pt;}
.ws28{word-spacing:3.972267pt;}
.ws73{word-spacing:4.024533pt;}
.ws12d{word-spacing:4.076800pt;}
.ws67{word-spacing:4.129067pt;}
.ws120{word-spacing:4.181333pt;}
.ws162{word-spacing:4.233600pt;}
.wsfb{word-spacing:4.338133pt;}
.ws112{word-spacing:4.390400pt;}
.wsac{word-spacing:4.442667pt;}
.ws5c{word-spacing:4.494933pt;}
.wsec{word-spacing:4.547200pt;}
.ws48{word-spacing:4.599467pt;}
.ws98{word-spacing:4.651733pt;}
.ws89{word-spacing:4.704000pt;}
.wscd{word-spacing:4.756267pt;}
.ws16a{word-spacing:4.808533pt;}
.ws92{word-spacing:4.860800pt;}
.ws8b{word-spacing:4.913067pt;}
.wsa4{word-spacing:4.965333pt;}
.ws20{word-spacing:5.017600pt;}
.ws83{word-spacing:5.069867pt;}
.wse6{word-spacing:5.174400pt;}
.ws14c{word-spacing:5.226667pt;}
.ws58{word-spacing:5.278933pt;}
.wsf9{word-spacing:5.331200pt;}
.ws129{word-spacing:5.383467pt;}
.wsd7{word-spacing:5.435733pt;}
.ws143{word-spacing:5.488000pt;}
.ws144{word-spacing:5.540267pt;}
.ws8d{word-spacing:5.592533pt;}
.ws2f{word-spacing:5.644800pt;}
.ws7f{word-spacing:5.697067pt;}
.ws15e{word-spacing:5.749333pt;}
.ws37{word-spacing:5.801600pt;}
.ws91{word-spacing:5.853867pt;}
.wsab{word-spacing:5.906133pt;}
.ws7d{word-spacing:5.958400pt;}
.wsbc{word-spacing:6.010667pt;}
.wscb{word-spacing:6.062933pt;}
.wsd6{word-spacing:6.115200pt;}
.ws5f{word-spacing:6.167467pt;}
.ws8f{word-spacing:6.219733pt;}
.ws66{word-spacing:6.272000pt;}
.wsd0{word-spacing:6.324267pt;}
.ws8a{word-spacing:6.376533pt;}
.ws46{word-spacing:6.428800pt;}
.ws23{word-spacing:6.481067pt;}
.ws47{word-spacing:6.533333pt;}
.wsb3{word-spacing:6.585600pt;}
.ws4d{word-spacing:6.637867pt;}
.ws85{word-spacing:6.690133pt;}
.wsb1{word-spacing:6.742400pt;}
.ws12f{word-spacing:6.794667pt;}
.ws10e{word-spacing:6.846933pt;}
.ws2e{word-spacing:6.899200pt;}
.wsb8{word-spacing:6.951467pt;}
.ws118{word-spacing:7.003733pt;}
.wseb{word-spacing:7.056000pt;}
.ws1a{word-spacing:7.108267pt;}
.wscf{word-spacing:7.160533pt;}
.ws6b{word-spacing:7.212800pt;}
.ws13f{word-spacing:7.265067pt;}
.wsbf{word-spacing:7.317333pt;}
.ws54{word-spacing:7.369600pt;}
.ws99{word-spacing:7.421867pt;}
.ws36{word-spacing:7.474133pt;}
.ws3b{word-spacing:7.526400pt;}
.wsbe{word-spacing:7.630933pt;}
.ws4e{word-spacing:7.683200pt;}
.ws44{word-spacing:7.735467pt;}
.ws32{word-spacing:7.787733pt;}
.ws31{word-spacing:7.892267pt;}
.wse9{word-spacing:7.944533pt;}
.ws15a{word-spacing:7.996800pt;}
.ws43{word-spacing:8.049067pt;}
.wse{word-spacing:8.101333pt;}
.wsd8{word-spacing:8.153600pt;}
.ws2b{word-spacing:8.205867pt;}
.ws45{word-spacing:8.258133pt;}
.wsfc{word-spacing:8.310400pt;}
.wsa1{word-spacing:8.362667pt;}
.ws111{word-spacing:8.414933pt;}
.ws6d{word-spacing:8.467200pt;}
.ws168{word-spacing:8.519467pt;}
.wsd3{word-spacing:8.571733pt;}
.ws3c{word-spacing:8.624000pt;}
.ws6e{word-spacing:8.676267pt;}
.ws11e{word-spacing:8.728533pt;}
.ws69{word-spacing:8.833067pt;}
.ws14b{word-spacing:8.885333pt;}
.ws94{word-spacing:8.937600pt;}
.ws57{word-spacing:8.989867pt;}
.ws41{word-spacing:9.042133pt;}
.ws76{word-spacing:9.198933pt;}
.wse1{word-spacing:9.251200pt;}
.ws137{word-spacing:9.303467pt;}
.ws8c{word-spacing:9.355733pt;}
.ws18{word-spacing:9.408000pt;}
.ws6f{word-spacing:9.460267pt;}
.wse8{word-spacing:9.564800pt;}
.ws68{word-spacing:9.617067pt;}
.ws4a{word-spacing:9.721600pt;}
.wsf{word-spacing:9.773867pt;}
.ws171{word-spacing:9.826133pt;}
.ws12b{word-spacing:9.878400pt;}
.ws9a{word-spacing:9.930667pt;}
.ws11b{word-spacing:9.982933pt;}
.wsb7{word-spacing:10.035200pt;}
.ws59{word-spacing:10.087467pt;}
.ws2d{word-spacing:10.244267pt;}
.ws14a{word-spacing:10.296533pt;}
.ws14{word-spacing:10.348800pt;}
.ws8e{word-spacing:10.401067pt;}
.ws11{word-spacing:10.453333pt;}
.ws77{word-spacing:10.505600pt;}
.ws142{word-spacing:10.662400pt;}
.wse4{word-spacing:10.714667pt;}
.ws7b{word-spacing:10.766933pt;}
.wsb6{word-spacing:10.819200pt;}
.wsd5{word-spacing:10.871467pt;}
.ws50{word-spacing:10.923733pt;}
.ws146{word-spacing:10.976000pt;}
.ws132{word-spacing:11.080533pt;}
.ws93{word-spacing:11.185067pt;}
.ws79{word-spacing:11.237333pt;}
.wsb2{word-spacing:11.289600pt;}
.ws125{word-spacing:11.341867pt;}
.wsf7{word-spacing:11.394133pt;}
.ws3e{word-spacing:11.446400pt;}
.ws126{word-spacing:11.550933pt;}
.ws2a{word-spacing:11.603200pt;}
.wsbb{word-spacing:11.655467pt;}
.wse2{word-spacing:11.707733pt;}
.ws4b{word-spacing:11.760000pt;}
.ws38{word-spacing:11.864533pt;}
.ws4f{word-spacing:11.916800pt;}
.ws75{word-spacing:12.021333pt;}
.ws11d{word-spacing:12.073600pt;}
.ws51{word-spacing:12.125867pt;}
.ws4c{word-spacing:12.178133pt;}
.wsfe{word-spacing:12.230400pt;}
.ws70{word-spacing:12.282667pt;}
.ws84{word-spacing:12.334933pt;}
.ws5d{word-spacing:12.387200pt;}
.ws1f{word-spacing:12.439467pt;}
.wse5{word-spacing:12.544000pt;}
.ws147{word-spacing:12.648533pt;}
.ws40{word-spacing:12.700800pt;}
.wsa9{word-spacing:12.753067pt;}
.ws10f{word-spacing:12.857600pt;}
.ws121{word-spacing:12.909867pt;}
.ws35{word-spacing:12.962133pt;}
.wsc1{word-spacing:13.014400pt;}
.ws7a{word-spacing:13.066667pt;}
.wsef{word-spacing:13.118933pt;}
.wsb5{word-spacing:13.171200pt;}
.wsf5{word-spacing:13.328000pt;}
.ws12{word-spacing:13.432533pt;}
.wsf1{word-spacing:13.484800pt;}
.ws71{word-spacing:13.641600pt;}
.ws78{word-spacing:13.693867pt;}
.ws74{word-spacing:13.746133pt;}
.wsce{word-spacing:13.798400pt;}
.ws136{word-spacing:13.850667pt;}
.ws22{word-spacing:13.902933pt;}
.ws13a{word-spacing:13.955200pt;}
.wsda{word-spacing:14.007467pt;}
.wsde{word-spacing:14.059733pt;}
.ws15f{word-spacing:14.321067pt;}
.ws16e{word-spacing:14.477867pt;}
.ws88{word-spacing:14.582400pt;}
.ws140{word-spacing:14.739200pt;}
.ws27{word-spacing:14.896000pt;}
.ws16f{word-spacing:15.000533pt;}
.ws14d{word-spacing:15.157333pt;}
.ws124{word-spacing:15.261867pt;}
.ws117{word-spacing:15.314133pt;}
.ws15{word-spacing:15.366400pt;}
.ws21{word-spacing:15.418667pt;}
.ws148{word-spacing:15.470933pt;}
.ws5e{word-spacing:15.523200pt;}
.ws11f{word-spacing:15.575467pt;}
.ws10{word-spacing:15.627733pt;}
.ws110{word-spacing:15.732267pt;}
.wsaa{word-spacing:15.784533pt;}
.ws17{word-spacing:15.836800pt;}
.ws13e{word-spacing:16.098133pt;}
.ws100{word-spacing:16.202667pt;}
.ws7e{word-spacing:16.254933pt;}
.ws135{word-spacing:16.307200pt;}
.ws12a{word-spacing:16.359467pt;}
.ws145{word-spacing:16.411733pt;}
.wsad{word-spacing:16.673067pt;}
.ws3d{word-spacing:16.829867pt;}
.ws97{word-spacing:16.882133pt;}
.ws172{word-spacing:17.248000pt;}
.wsae{word-spacing:17.352533pt;}
.wse0{word-spacing:17.718400pt;}
.ws116{word-spacing:17.770667pt;}
.ws158{word-spacing:17.822933pt;}
.ws141{word-spacing:18.816000pt;}
.ws90{word-spacing:19.025067pt;}
.wsff{word-spacing:19.077333pt;}
.wsea{word-spacing:19.286400pt;}
.ws14f{word-spacing:19.338667pt;}
.ws16d{word-spacing:19.443200pt;}
.ws16b{word-spacing:19.756800pt;}
.ws16{word-spacing:19.809067pt;}
.wsd9{word-spacing:19.861333pt;}
.wsbd{word-spacing:20.018133pt;}
.ws159{word-spacing:20.122667pt;}
.ws6c{word-spacing:20.645333pt;}
.ws128{word-spacing:21.063467pt;}
.ws115{word-spacing:21.168000pt;}
.ws169{word-spacing:21.220267pt;}
.ws80{word-spacing:21.742933pt;}
.ws11c{word-spacing:21.899733pt;}
.wsc5{word-spacing:22.056533pt;}
.wsdf{word-spacing:22.265600pt;}
.wsb0{word-spacing:22.474667pt;}
.wsaf{word-spacing:23.467733pt;}
.ws13{word-spacing:26.342400pt;}
.ws16c{word-spacing:26.656000pt;}
.ws52{word-spacing:27.074133pt;}
.ws119{word-spacing:27.387733pt;}
.ws134{word-spacing:29.164800pt;}
.ws81{word-spacing:30.053333pt;}
.ws3f{word-spacing:35.750400pt;}
.ws82{word-spacing:38.677333pt;}
.ws65{word-spacing:53.636239pt;}
.ws61{word-spacing:91.477333pt;}
.ws155{word-spacing:339.669333pt;}
.ws156{word-spacing:353.280000pt;}
.ws154{word-spacing:368.682667pt;}
.ws107{word-spacing:376.362667pt;}
.ws106{word-spacing:382.890667pt;}
.ws10b{word-spacing:437.034667pt;}
.ws10a{word-spacing:681.472000pt;}
.ws64{word-spacing:719.104000pt;}
.ws157{word-spacing:1093.546736pt;}
._13{margin-left:-44.782635pt;}
._40{margin-left:-31.575563pt;}
._3f{margin-left:-27.670373pt;}
._54{margin-left:-22.947200pt;}
._55{margin-left:-20.826658pt;}
._d{margin-left:-17.459200pt;}
._42{margin-left:-14.757061pt;}
._2a{margin-left:-13.016533pt;}
._12{margin-left:-11.661872pt;}
._3e{margin-left:-9.514667pt;}
._2b{margin-left:-8.624011pt;}
._f{margin-left:-7.214933pt;}
._14{margin-left:-6.115200pt;}
._8{margin-left:-5.132032pt;}
._c{margin-left:-4.181333pt;}
._3{margin-left:-2.984022pt;}
._2{margin-left:-2.001067pt;}
._0{margin-left:-0.942933pt;}
._1{width:1.570133pt;}
._4{width:2.464000pt;}
._2c{width:3.512533pt;}
._b{width:4.440533pt;}
._2e{width:5.331200pt;}
._10{width:6.324267pt;}
._9{width:7.365333pt;}
._28{width:8.833057pt;}
._2d{width:9.773850pt;}
._11{width:10.923733pt;}
._a{width:11.848853pt;}
._7{width:13.280000pt;}
._6{width:15.022924pt;}
._2f{width:16.202667pt;}
._e{width:17.221867pt;}
._41{width:19.503995pt;}
._29{width:20.605844pt;}
._3d{width:21.542186pt;}
._5{width:33.867251pt;}
._56{width:40.181333pt;}
._23{width:100.309333pt;}
._22{width:120.576000pt;}
._17{width:141.397333pt;}
._44{width:142.801067pt;}
._1d{width:224.314004pt;}
._18{width:235.020783pt;}
._43{width:251.178667pt;}
._4b{width:252.553387pt;}
._25{width:269.479467pt;}
._1a{width:272.132232pt;}
._1c{width:288.648526pt;}
._39{width:336.460935pt;}
._4d{width:341.632000pt;}
._24{width:349.947716pt;}
._32{width:356.735984pt;}
._50{width:362.453333pt;}
._4e{width:367.744000pt;}
._34{width:377.557313pt;}
._48{width:383.317333pt;}
._46{width:389.205333pt;}
._1e{width:391.525614pt;}
._35{width:399.756820pt;}
._38{width:405.802650pt;}
._31{width:407.281654pt;}
._37{width:410.334390pt;}
._4a{width:415.530667pt;}
._36{width:416.925861pt;}
._52{width:438.670374pt;}
._33{width:445.474813pt;}
._4f{width:447.075708pt;}
._4c{width:454.329041pt;}
._51{width:464.380539pt;}
._3c{width:467.200000pt;}
._30{width:469.973333pt;}
._3a{width:480.063045pt;}
._27{width:489.577858pt;}
._1b{width:493.144608pt;}
._19{width:501.802667pt;}
._20{width:504.981846pt;}
._1f{width:512.104432pt;}
._3b{width:558.007467pt;}
._53{width:567.055261pt;}
._26{width:587.430365pt;}
._21{width:688.696390pt;}
._15{width:725.205299pt;}
._45{width:840.874736pt;}
._49{width:919.201598pt;}
._16{width:1002.065034pt;}
._47{width:1164.300032pt;}
.fs10{font-size:26.133333pt;}
.fsa{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs8{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:5.857178pt;}
.y29{bottom:70.229599pt;}
.y28{bottom:80.897599pt;}
.ydc{bottom:89.232269pt;}
.yfc{bottom:89.262806pt;}
.y10d{bottom:89.269206pt;}
.y1cf{bottom:89.730796pt;}
.y1ab{bottom:89.852284pt;}
.y322{bottom:90.345330pt;}
.y27{bottom:91.565599pt;}
.y2f1{bottom:92.634931pt;}
.y180{bottom:95.773469pt;}
.y25b{bottom:95.779869pt;}
.y273{bottom:95.792669pt;}
.y28b{bottom:95.811869pt;}
.y152{bottom:95.850269pt;}
.y2a6{bottom:95.891062pt;}
.y2c1{bottom:96.240663pt;}
.y205{bottom:96.431604pt;}
.y1eb{bottom:96.830668pt;}
.y200{bottom:97.083329pt;}
.y62{bottom:99.432271pt;}
.y8f{bottom:100.141198pt;}
.y39f{bottom:101.638021pt;}
.y26{bottom:102.233599pt;}
.yfb{bottom:105.256406pt;}
.y10c{bottom:105.262806pt;}
.y3b5{bottom:105.638000pt;}
.y119{bottom:105.644002pt;}
.y114{bottom:105.669602pt;}
.y1ce{bottom:105.724396pt;}
.y1aa{bottom:105.845884pt;}
.y321{bottom:106.338930pt;}
.ye9{bottom:108.552131pt;}
.y2f0{bottom:108.628531pt;}
.y1ea{bottom:110.164001pt;}
.y17f{bottom:111.767069pt;}
.y25a{bottom:111.773469pt;}
.y272{bottom:111.786269pt;}
.y28a{bottom:111.805469pt;}
.y151{bottom:111.843869pt;}
.y2a5{bottom:111.916673pt;}
.y2c0{bottom:112.247063pt;}
.y204{bottom:112.425204pt;}
.y25{bottom:112.901599pt;}
.y1ff{bottom:113.076929pt;}
.y39e{bottom:113.638021pt;}
.y1f1{bottom:114.397462pt;}
.y1f7{bottom:114.410262pt;}
.y61{bottom:115.445071pt;}
.y8e{bottom:116.134798pt;}
.y3b4{bottom:117.638000pt;}
.yfa{bottom:121.250006pt;}
.y10b{bottom:121.256406pt;}
.y113{bottom:121.663202pt;}
.y118{bottom:121.689333pt;}
.y1cd{bottom:121.724396pt;}
.y1a9{bottom:121.839484pt;}
.y320{bottom:122.332530pt;}
.y359{bottom:123.121602pt;}
.y1e9{bottom:123.497335pt;}
.y24{bottom:123.569599pt;}
.y2ef{bottom:124.622131pt;}
.ye8{bottom:124.754797pt;}
.y39d{bottom:125.638021pt;}
.y17e{bottom:127.767069pt;}
.y271{bottom:127.779869pt;}
.y289{bottom:127.799069pt;}
.y232{bottom:127.805469pt;}
.y150{bottom:127.837469pt;}
.y2a4{bottom:127.910273pt;}
.y2bf{bottom:128.240663pt;}
.y203{bottom:128.418804pt;}
.y1fe{bottom:129.070529pt;}
.y3b3{bottom:129.638000pt;}
.y1f0{bottom:130.391062pt;}
.y1f6{bottom:130.403862pt;}
.y60{bottom:131.438671pt;}
.y8d{bottom:132.128398pt;}
.y23{bottom:134.237599pt;}
.yf9{bottom:137.243606pt;}
.y10a{bottom:137.250006pt;}
.y39c{bottom:137.638021pt;}
.y112{bottom:137.656802pt;}
.y117{bottom:137.682933pt;}
.y1cc{bottom:137.750006pt;}
.y1a8{bottom:137.833084pt;}
.y31f{bottom:138.351740pt;}
.y2ee{bottom:140.634931pt;}
.ye7{bottom:140.882797pt;}
.y259{bottom:143.767069pt;}
.y270{bottom:143.773469pt;}
.y17d{bottom:143.792669pt;}
.y231{bottom:143.799069pt;}
.y14f{bottom:143.831069pt;}
.y2a3{bottom:143.903873pt;}
.y2be{bottom:144.240663pt;}
.y202{bottom:144.412404pt;}
.y22{bottom:144.905599pt;}
.y1fd{bottom:145.064129pt;}
.y1ef{bottom:146.391062pt;}
.y1f5{bottom:146.397462pt;}
.y358{bottom:147.121602pt;}
.y5f{bottom:147.432271pt;}
.y8c{bottom:148.128398pt;}
.y39b{bottom:149.638021pt;}
.yf8{bottom:153.237206pt;}
.y109{bottom:153.243606pt;}
.y111{bottom:153.650402pt;}
.y116{bottom:153.676533pt;}
.y1cb{bottom:153.743606pt;}
.y1a7{bottom:153.826684pt;}
.y31e{bottom:154.345340pt;}
.y2ed{bottom:156.628531pt;}
.ye6{bottom:157.016139pt;}
.y357{bottom:159.121602pt;}
.y26f{bottom:159.767069pt;}
.y258{bottom:159.773469pt;}
.y17c{bottom:159.786269pt;}
.y230{bottom:159.792669pt;}
.y14e{bottom:159.824669pt;}
.y2a2{bottom:159.897473pt;}
.y2bd{bottom:160.234263pt;}
.y201{bottom:160.412404pt;}
.y1fc{bottom:161.057729pt;}
.y39a{bottom:161.638021pt;}
.y1f4{bottom:162.391062pt;}
.y1ee{bottom:162.403873pt;}
.y5e{bottom:163.457871pt;}
.y8b{bottom:164.134798pt;}
.ye5{bottom:169.016139pt;}
.yf7{bottom:169.230806pt;}
.y108{bottom:169.237206pt;}
.y110{bottom:169.644002pt;}
.y115{bottom:169.670133pt;}
.y1ca{bottom:169.737206pt;}
.y1a6{bottom:169.820284pt;}
.y31d{bottom:170.338940pt;}
.y356{bottom:171.121602pt;}
.y2ec{bottom:172.622131pt;}
.y399{bottom:173.638021pt;}
.y257{bottom:175.767069pt;}
.y17b{bottom:175.779869pt;}
.y22f{bottom:175.786269pt;}
.y26e{bottom:175.792669pt;}
.y14d{bottom:175.818269pt;}
.y2a1{bottom:175.891073pt;}
.y2bc{bottom:176.234273pt;}
.y1ed{bottom:178.397473pt;}
.y1f3{bottom:178.397996pt;}
.y33{bottom:178.572266pt;}
.y5d{bottom:179.451471pt;}
.y8a{bottom:180.128398pt;}
.y355{bottom:183.121602pt;}
.ye4{bottom:185.160127pt;}
.yf6{bottom:185.224406pt;}
.y107{bottom:185.230806pt;}
.y398{bottom:185.638021pt;}
.y1c9{bottom:185.730806pt;}
.y1a5{bottom:185.813884pt;}
.y31c{bottom:186.332540pt;}
.y2eb{bottom:188.628531pt;}
.y32{bottom:190.572266pt;}
.y17a{bottom:191.773469pt;}
.y22e{bottom:191.779869pt;}
.y26d{bottom:191.786269pt;}
.y14c{bottom:191.811869pt;}
.y256{bottom:191.856649pt;}
.y2a0{bottom:191.961351pt;}
.y2bb{bottom:192.253473pt;}
.y1ec{bottom:194.391073pt;}
.y1f2{bottom:194.391596pt;}
.y354{bottom:195.121602pt;}
.y5c{bottom:195.445071pt;}
.y89{bottom:196.141198pt;}
.ye3{bottom:197.160127pt;}
.y397{bottom:197.638021pt;}
.y106{bottom:201.224406pt;}
.yf5{bottom:201.230806pt;}
.y1c8{bottom:201.724406pt;}
.y1a4{bottom:201.807484pt;}
.y31b{bottom:202.332540pt;}
.y31{bottom:202.572266pt;}
.y2ea{bottom:204.622131pt;}
.y179{bottom:207.767069pt;}
.y22d{bottom:207.773469pt;}
.y26c{bottom:207.779869pt;}
.y14b{bottom:207.805469pt;}
.y255{bottom:207.850249pt;}
.y29f{bottom:207.954951pt;}
.y2ba{bottom:208.247073pt;}
.y396{bottom:209.638021pt;}
.y353{bottom:211.121602pt;}
.y5b{bottom:211.438671pt;}
.y88{bottom:212.134798pt;}
.ye2{bottom:213.293468pt;}
.y209{bottom:216.664673pt;}
.yf4{bottom:217.224406pt;}
.y105{bottom:217.230806pt;}
.y1c7{bottom:217.762664pt;}
.y1a3{bottom:217.801084pt;}
.y30{bottom:218.572266pt;}
.y352{bottom:219.121582pt;}
.y2e9{bottom:220.647731pt;}
.y395{bottom:221.638021pt;}
.y178{bottom:223.767069pt;}
.y26b{bottom:223.773469pt;}
.y14a{bottom:223.799069pt;}
.y254{bottom:223.843849pt;}
.y29e{bottom:223.948551pt;}
.y2b9{bottom:224.240673pt;}
.y2f{bottom:226.572266pt;}
.y5a{bottom:227.432271pt;}
.y87{bottom:228.128398pt;}
.ye1{bottom:229.426810pt;}
.y208{bottom:229.998006pt;}
.y104{bottom:233.224406pt;}
.yf3{bottom:233.237064pt;}
.y394{bottom:233.638021pt;}
.y1c6{bottom:233.756264pt;}
.y1a2{bottom:233.794684pt;}
.y31a{bottom:235.483736pt;}
.y2e8{bottom:236.641331pt;}
.y26a{bottom:239.767069pt;}
.y288{bottom:239.773469pt;}
.y177{bottom:239.779869pt;}
.y149{bottom:239.792669pt;}
.y22c{bottom:239.799069pt;}
.y253{bottom:239.837449pt;}
.y29d{bottom:239.942151pt;}
.y2b8{bottom:240.234273pt;}
.y2e{bottom:242.572266pt;}
.y351{bottom:243.121582pt;}
.y207{bottom:243.331340pt;}
.y59{bottom:243.457871pt;}
.y86{bottom:244.166798pt;}
.ye0{bottom:245.556135pt;}
.y393{bottom:245.638021pt;}
.y103{bottom:249.228531pt;}
.yf2{bottom:249.230664pt;}
.y1c5{bottom:249.749864pt;}
.y1a1{bottom:249.788284pt;}
.y2d{bottom:250.572266pt;}
.y319{bottom:251.477336pt;}
.y1fb{bottom:252.024658pt;}
.y11e{bottom:252.271342pt;}
.y2e7{bottom:252.634931pt;}
.y350{bottom:255.121582pt;}
.y269{bottom:255.767069pt;}
.y176{bottom:255.773469pt;}
.y148{bottom:255.786269pt;}
.y22b{bottom:255.792669pt;}
.y252{bottom:255.831049pt;}
.y29c{bottom:255.935751pt;}
.y2b7{bottom:256.234273pt;}
.y206{bottom:256.664673pt;}
.y392{bottom:257.638021pt;}
.y58{bottom:259.451471pt;}
.y85{bottom:260.160398pt;}
.ydf{bottom:261.684135pt;}
.yf1{bottom:265.224264pt;}
.y1fa{bottom:265.357992pt;}
.y11d{bottom:265.604675pt;}
.y1c4{bottom:265.743464pt;}
.y1a0{bottom:265.781884pt;}
.y318{bottom:267.509336pt;}
.y2e6{bottom:268.628531pt;}
.y391{bottom:269.638021pt;}
.y175{bottom:271.767069pt;}
.y287{bottom:271.773469pt;}
.y147{bottom:271.779869pt;}
.y22a{bottom:271.786269pt;}
.y251{bottom:271.824649pt;}
.y29b{bottom:271.929351pt;}
.y2b6{bottom:272.234273pt;}
.y57{bottom:275.445071pt;}
.y84{bottom:276.153998pt;}
.y1f9{bottom:278.691325pt;}
.y11c{bottom:278.938009pt;}
.y34f{bottom:279.121582pt;}
.yf0{bottom:281.224264pt;}
.y390{bottom:281.638021pt;}
.y1c3{bottom:281.737064pt;}
.y19f{bottom:281.775484pt;}
.y317{bottom:283.502936pt;}
.y2e5{bottom:284.622131pt;}
.yde{bottom:285.588135pt;}
.y286{bottom:287.767069pt;}
.y146{bottom:287.773469pt;}
.y229{bottom:287.779869pt;}
.y174{bottom:287.805449pt;}
.y250{bottom:287.818249pt;}
.y29a{bottom:287.922951pt;}
.y21{bottom:289.524536pt;}
.y34e{bottom:291.121582pt;}
.y56{bottom:291.438671pt;}
.y1f8{bottom:292.024658pt;}
.y83{bottom:292.147598pt;}
.y11b{bottom:292.271342pt;}
.y38f{bottom:293.638021pt;}
.yef{bottom:297.249884pt;}
.y102{bottom:297.297206pt;}
.ydd{bottom:297.588135pt;}
.y1c2{bottom:297.730664pt;}
.y19e{bottom:297.769084pt;}
.y316{bottom:299.496536pt;}
.y2e4{bottom:300.634931pt;}
.y145{bottom:303.767069pt;}
.y228{bottom:303.773469pt;}
.y268{bottom:303.792649pt;}
.y173{bottom:303.799049pt;}
.y24f{bottom:303.811849pt;}
.y299{bottom:303.916551pt;}
.y2b5{bottom:304.240673pt;}
.y20{bottom:305.524536pt;}
.y11a{bottom:305.604675pt;}
.y38e{bottom:305.638021pt;}
.y55{bottom:307.432271pt;}
.y82{bottom:308.141198pt;}
.yee{bottom:313.243484pt;}
.y101{bottom:313.290806pt;}
.y1c1{bottom:313.724264pt;}
.y19d{bottom:313.762684pt;}
.y34d{bottom:315.121582pt;}
.y315{bottom:315.490136pt;}
.y2e3{bottom:316.628531pt;}
.y38d{bottom:317.638021pt;}
.ydb{bottom:319.199463pt;}
.y227{bottom:319.767069pt;}
.y144{bottom:319.773469pt;}
.y267{bottom:319.786249pt;}
.y172{bottom:319.792649pt;}
.y24e{bottom:319.805449pt;}
.y298{bottom:319.910151pt;}
.y2b4{bottom:320.234273pt;}
.y1f{bottom:321.524536pt;}
.y54{bottom:323.438671pt;}
.y81{bottom:324.134798pt;}
.y34c{bottom:327.121582pt;}
.yed{bottom:329.237084pt;}
.y100{bottom:329.284406pt;}
.y38c{bottom:329.638021pt;}
.y19c{bottom:329.756284pt;}
.y1c0{bottom:329.769084pt;}
.y314{bottom:331.483736pt;}
.y2e2{bottom:332.622131pt;}
.y143{bottom:335.767069pt;}
.y266{bottom:335.779849pt;}
.y171{bottom:335.786249pt;}
.y226{bottom:335.792649pt;}
.y24d{bottom:335.799049pt;}
.y297{bottom:335.903751pt;}
.y2b3{bottom:336.240653pt;}
.y1e{bottom:337.524536pt;}
.y53{bottom:339.432271pt;}
.y80{bottom:340.128398pt;}
.y38b{bottom:341.638021pt;}
.yec{bottom:345.230684pt;}
.yff{bottom:345.278006pt;}
.y19b{bottom:345.749884pt;}
.y1bf{bottom:345.762684pt;}
.y313{bottom:347.477336pt;}
.y2e1{bottom:348.622152pt;}
.y34b{bottom:351.121582pt;}
.y142{bottom:351.773449pt;}
.y170{bottom:351.779849pt;}
.y225{bottom:351.786249pt;}
.y24c{bottom:351.792649pt;}
.y296{bottom:351.897351pt;}
.y2b2{bottom:352.234253pt;}
.y1d{bottom:353.524536pt;}
.y38a{bottom:353.638021pt;}
.y52{bottom:355.477051pt;}
.y7f{bottom:356.134818pt;}
.yeb{bottom:361.224284pt;}
.yfe{bottom:361.271606pt;}
.y19a{bottom:361.743484pt;}
.y1be{bottom:361.756284pt;}
.y34a{bottom:363.121582pt;}
.y312{bottom:363.477336pt;}
.y389{bottom:365.638021pt;}
.y141{bottom:367.767049pt;}
.y16f{bottom:367.773449pt;}
.y224{bottom:367.779849pt;}
.y24b{bottom:367.786249pt;}
.y295{bottom:367.890951pt;}
.y2b1{bottom:368.259853pt;}
.y51{bottom:371.470651pt;}
.y7e{bottom:372.128418pt;}
.y1c{bottom:373.524536pt;}
.y349{bottom:375.121582pt;}
.yea{bottom:377.224284pt;}
.yfd{bottom:377.265206pt;}
.y388{bottom:377.638021pt;}
.y199{bottom:377.737084pt;}
.y1bd{bottom:377.749884pt;}
.y2e0{bottom:382.207339pt;}
.yb9{bottom:382.774129pt;}
.y16e{bottom:383.767049pt;}
.y140{bottom:383.773449pt;}
.y24a{bottom:383.779849pt;}
.y294{bottom:383.903751pt;}
.y2b0{bottom:384.253453pt;}
.y50{bottom:387.464251pt;}
.y7d{bottom:388.128418pt;}
.y1b{bottom:389.524536pt;}
.y387{bottom:389.638021pt;}
.y198{bottom:393.730684pt;}
.y1bc{bottom:393.743484pt;}
.y311{bottom:396.647752pt;}
.y2df{bottom:398.200939pt;}
.yb8{bottom:398.793329pt;}
.yda{bottom:398.863729pt;}
.y348{bottom:399.121582pt;}
.y13f{bottom:399.767049pt;}
.y249{bottom:399.773449pt;}
.y293{bottom:399.897351pt;}
.y2af{bottom:400.247053pt;}
.y386{bottom:401.638021pt;}
.y4f{bottom:403.457851pt;}
.y7c{bottom:404.198818pt;}
.y1a{bottom:405.524536pt;}
.y197{bottom:409.724284pt;}
.y1bb{bottom:409.737084pt;}
.y347{bottom:411.121582pt;}
.y310{bottom:412.641352pt;}
.y385{bottom:413.638021pt;}
.y2de{bottom:414.194539pt;}
.yb7{bottom:414.786929pt;}
.yd9{bottom:414.857329pt;}
.y13e{bottom:415.767049pt;}
.y16d{bottom:415.773449pt;}
.y292{bottom:415.890951pt;}
.y2ae{bottom:416.240653pt;}
.y4e{bottom:419.451451pt;}
.y7b{bottom:420.192418pt;}
.y19{bottom:421.524536pt;}
.y346{bottom:423.121582pt;}
.y10f{bottom:424.271322pt;}
.y384{bottom:425.638021pt;}
.y196{bottom:425.730684pt;}
.y30f{bottom:428.634952pt;}
.y2dd{bottom:430.194539pt;}
.yb6{bottom:430.780529pt;}
.yd8{bottom:430.850929pt;}
.y16c{bottom:431.767049pt;}
.y13d{bottom:431.773449pt;}
.y291{bottom:431.890951pt;}
.y2ad{bottom:432.234253pt;}
.y4d{bottom:435.445051pt;}
.y7a{bottom:436.186018pt;}
.y18{bottom:437.524536pt;}
.y10e{bottom:437.604655pt;}
.y383{bottom:437.638021pt;}
.y195{bottom:441.724284pt;}
.y30e{bottom:444.628552pt;}
.y2dc{bottom:446.200939pt;}
.yb5{bottom:446.774129pt;}
.yd7{bottom:446.844529pt;}
.y345{bottom:447.121582pt;}
.y223{bottom:447.767049pt;}
.y13c{bottom:447.773449pt;}
.y16b{bottom:447.779849pt;}
.y290{bottom:447.890951pt;}
.y2ac{bottom:448.253453pt;}
.y382{bottom:449.638021pt;}
.y4c{bottom:451.438651pt;}
.y79{bottom:452.179618pt;}
.y17{bottom:453.524536pt;}
.y194{bottom:457.737084pt;}
.y1ba{bottom:457.775484pt;}
.y344{bottom:459.121582pt;}
.y30d{bottom:460.622152pt;}
.y381{bottom:461.638021pt;}
.y2db{bottom:462.194539pt;}
.yb4{bottom:462.812529pt;}
.yd6{bottom:462.838129pt;}
.y13b{bottom:463.767049pt;}
.y16a{bottom:463.773449pt;}
.y222{bottom:463.786249pt;}
.y2ab{bottom:464.247053pt;}
.y4b{bottom:467.432251pt;}
.y78{bottom:468.173218pt;}
.y16{bottom:469.524536pt;}
.y343{bottom:471.121582pt;}
.y380{bottom:473.638021pt;}
.y193{bottom:473.730684pt;}
.y1b9{bottom:473.769084pt;}
.y30c{bottom:476.647752pt;}
.y2da{bottom:478.194539pt;}
.yb3{bottom:478.806129pt;}
.yd5{bottom:478.831729pt;}
.y13a{bottom:479.767049pt;}
.y221{bottom:479.779849pt;}
.y285{bottom:479.805449pt;}
.y28f{bottom:479.903751pt;}
.y2aa{bottom:480.240653pt;}
.y342{bottom:483.121582pt;}
.y4a{bottom:483.457851pt;}
.y77{bottom:484.166818pt;}
.y15{bottom:485.524536pt;}
.y37f{bottom:485.638021pt;}
.y192{bottom:489.724284pt;}
.y1b8{bottom:489.762684pt;}
.y30b{bottom:492.641352pt;}
.yb2{bottom:494.799729pt;}
.yd4{bottom:494.825329pt;}
.y341{bottom:495.121582pt;}
.y220{bottom:495.773449pt;}
.y139{bottom:495.779849pt;}
.y169{bottom:495.792649pt;}
.y284{bottom:495.799049pt;}
.y265{bottom:495.805449pt;}
.y248{bottom:495.824649pt;}
.y28e{bottom:495.897351pt;}
.y2a9{bottom:496.240653pt;}
.y37e{bottom:497.638021pt;}
.y49{bottom:499.451451pt;}
.y76{bottom:500.160418pt;}
.y14{bottom:501.524536pt;}
.y191{bottom:505.756284pt;}
.y340{bottom:507.121582pt;}
.y30a{bottom:508.634952pt;}
.y37d{bottom:509.638021pt;}
.yb1{bottom:510.793329pt;}
.yd3{bottom:510.818929pt;}
.y21f{bottom:511.767049pt;}
.y138{bottom:511.773449pt;}
.y168{bottom:511.786249pt;}
.y283{bottom:511.792649pt;}
.y264{bottom:511.799049pt;}
.y247{bottom:511.818249pt;}
.y28d{bottom:511.890951pt;}
.y2a8{bottom:512.234253pt;}
.y48{bottom:515.445051pt;}
.y75{bottom:516.154018pt;}
.y13{bottom:517.524536pt;}
.y33f{bottom:519.121582pt;}
.y37c{bottom:521.638021pt;}
.y190{bottom:521.749884pt;}
.y309{bottom:524.628552pt;}
.yb0{bottom:526.786929pt;}
.yd2{bottom:526.812529pt;}
.y137{bottom:527.767049pt;}
.y167{bottom:527.779849pt;}
.y282{bottom:527.786249pt;}
.y263{bottom:527.792649pt;}
.y246{bottom:527.811849pt;}
.y28c{bottom:527.890951pt;}
.y2a7{bottom:528.234253pt;}
.y33e{bottom:531.121582pt;}
.y47{bottom:531.438651pt;}
.y74{bottom:532.147618pt;}
.y12{bottom:533.524536pt;}
.y37b{bottom:533.638021pt;}
.y18f{bottom:537.743484pt;}
.y308{bottom:540.628552pt;}
.yaf{bottom:542.780529pt;}
.yd1{bottom:542.806129pt;}
.y136{bottom:543.773449pt;}
.y281{bottom:543.779849pt;}
.y262{bottom:543.786249pt;}
.y245{bottom:543.805449pt;}
.y37a{bottom:545.638021pt;}
.y46{bottom:547.432251pt;}
.y73{bottom:548.141218pt;}
.y11{bottom:549.524536pt;}
.y18e{bottom:553.737084pt;}
.y33d{bottom:555.121582pt;}
.y307{bottom:556.622152pt;}
.y379{bottom:557.638021pt;}
.yae{bottom:558.774129pt;}
.yd0{bottom:558.799729pt;}
.y135{bottom:559.767049pt;}
.y280{bottom:559.773449pt;}
.y261{bottom:559.779849pt;}
.y244{bottom:559.799049pt;}
.y45{bottom:563.477051pt;}
.y72{bottom:564.134818pt;}
.y10{bottom:565.524536pt;}
.y33c{bottom:567.121582pt;}
.y378{bottom:569.638021pt;}
.y18d{bottom:569.730684pt;}
.y306{bottom:572.628552pt;}
.ycf{bottom:574.793329pt;}
.yad{bottom:574.799729pt;}
.y2d5{bottom:575.313350pt;}
.y27f{bottom:575.767049pt;}
.y134{bottom:575.771316pt;}
.y260{bottom:575.773449pt;}
.y243{bottom:575.792649pt;}
.y21e{bottom:575.824690pt;}
.y44{bottom:579.470651pt;}
.y71{bottom:580.128418pt;}
.yf{bottom:581.524536pt;}
.y377{bottom:581.638021pt;}
.y18c{bottom:585.724284pt;}
.y305{bottom:588.622152pt;}
.yce{bottom:590.786929pt;}
.yac{bottom:590.793329pt;}
.y33b{bottom:591.121582pt;}
.y2d4{bottom:591.516016pt;}
.y133{bottom:591.767049pt;}
.y27e{bottom:591.779849pt;}
.y242{bottom:591.786249pt;}
.y21d{bottom:591.818290pt;}
.y376{bottom:593.638021pt;}
.y43{bottom:595.464251pt;}
.y70{bottom:596.128418pt;}
.ye{bottom:597.524536pt;}
.y18b{bottom:601.728551pt;}
.y1b7{bottom:601.737084pt;}
.y33a{bottom:603.121582pt;}
.y304{bottom:604.641352pt;}
.y375{bottom:605.638021pt;}
.ycd{bottom:606.780529pt;}
.yab{bottom:606.786929pt;}
.y2d3{bottom:607.644016pt;}
.y25f{bottom:607.767049pt;}
.y27d{bottom:607.773449pt;}
.y241{bottom:607.779849pt;}
.y21c{bottom:607.811890pt;}
.y42{bottom:611.457851pt;}
.y6f{bottom:612.192418pt;}
.y339{bottom:615.121582pt;}
.yd{bottom:617.524536pt;}
.y374{bottom:617.638021pt;}
.y18a{bottom:617.724284pt;}
.y1b6{bottom:617.730684pt;}
.y303{bottom:620.634952pt;}
.ycc{bottom:622.774129pt;}
.yaa{bottom:622.780529pt;}
.y132{bottom:623.767049pt;}
.y2d2{bottom:623.772016pt;}
.y240{bottom:623.773449pt;}
.y166{bottom:623.792690pt;}
.y21b{bottom:623.805490pt;}
.y338{bottom:627.121582pt;}
.y41{bottom:627.451451pt;}
.y6e{bottom:628.186018pt;}
.y373{bottom:629.638021pt;}
.yc{bottom:633.524536pt;}
.y1b5{bottom:633.724284pt;}
.y302{bottom:636.628552pt;}
.ya9{bottom:638.774129pt;}
.ycb{bottom:638.799770pt;}
.y337{bottom:639.121582pt;}
.y23f{bottom:639.767049pt;}
.y2d9{bottom:639.773449pt;}
.y165{bottom:639.786290pt;}
.y131{bottom:639.792690pt;}
.y21a{bottom:639.799090pt;}
.y2d1{bottom:639.900016pt;}
.y372{bottom:641.638021pt;}
.y40{bottom:643.445051pt;}
.y6d{bottom:644.179618pt;}
.yb{bottom:649.524536pt;}
.y189{bottom:649.724284pt;}
.y1b4{bottom:649.743484pt;}
.y336{bottom:651.121582pt;}
.y301{bottom:652.622152pt;}
.y371{bottom:653.638021pt;}
.ya8{bottom:654.786970pt;}
.yca{bottom:654.793370pt;}
.y25e{bottom:655.767049pt;}
.y23e{bottom:655.773449pt;}
.y164{bottom:655.779890pt;}
.y130{bottom:655.786290pt;}
.y219{bottom:655.792690pt;}
.y2d0{bottom:656.028016pt;}
.y3f{bottom:659.438651pt;}
.y6c{bottom:660.173218pt;}
.y335{bottom:663.121582pt;}
.ya{bottom:665.524536pt;}
.y370{bottom:665.638021pt;}
.y188{bottom:665.724284pt;}
.y1b3{bottom:665.737084pt;}
.y300{bottom:668.622152pt;}
.ya7{bottom:670.780570pt;}
.yc9{bottom:670.786970pt;}
.y23d{bottom:671.767049pt;}
.y163{bottom:671.773490pt;}
.y12f{bottom:671.779890pt;}
.y218{bottom:671.786290pt;}
.y2cf{bottom:672.156016pt;}
.y334{bottom:675.121582pt;}
.y3e{bottom:675.432251pt;}
.y6b{bottom:676.166818pt;}
.y2ce{bottom:676.284016pt;}
.y1de{bottom:676.746645pt;}
.y36f{bottom:677.638021pt;}
.y1b2{bottom:681.730684pt;}
.y187{bottom:681.756284pt;}
.y9{bottom:685.524495pt;}
.ya6{bottom:686.774170pt;}
.yc8{bottom:686.780570pt;}
.y333{bottom:687.121582pt;}
.y162{bottom:687.767090pt;}
.y12e{bottom:687.773490pt;}
.y217{bottom:687.779890pt;}
.y1dd{bottom:688.079978pt;}
.y2cd{bottom:688.284016pt;}
.y36e{bottom:689.638021pt;}
.y3d{bottom:691.432292pt;}
.y6a{bottom:692.160418pt;}
.y1b1{bottom:697.724284pt;}
.y186{bottom:697.749884pt;}
.y332{bottom:699.121582pt;}
.y1dc{bottom:699.413311pt;}
.y36d{bottom:701.638021pt;}
.y2ff{bottom:702.194499pt;}
.yc7{bottom:702.774170pt;}
.ya5{bottom:702.831770pt;}
.y12d{bottom:703.767090pt;}
.y216{bottom:703.773490pt;}
.y161{bottom:703.933736pt;}
.y2cc{bottom:704.412016pt;}
.y3c{bottom:707.464292pt;}
.y69{bottom:708.154018pt;}
.y1db{bottom:710.749311pt;}
.y331{bottom:711.121582pt;}
.y36c{bottom:713.638021pt;}
.y3b2{bottom:713.638051pt;}
.y1b0{bottom:713.724284pt;}
.y185{bottom:713.743484pt;}
.y2fe{bottom:718.194499pt;}
.yc6{bottom:718.778437pt;}
.ya4{bottom:718.825370pt;}
.y12c{bottom:719.767090pt;}
.y2d8{bottom:719.773490pt;}
.y215{bottom:719.786290pt;}
.y160{bottom:719.927336pt;}
.y2cb{bottom:720.550683pt;}
.y1da{bottom:722.079978pt;}
.y330{bottom:723.121582pt;}
.y3b{bottom:723.457892pt;}
.y68{bottom:724.147618pt;}
.y36b{bottom:725.638021pt;}
.y3b1{bottom:725.638051pt;}
.y1af{bottom:729.730684pt;}
.y184{bottom:729.737084pt;}
.y1d9{bottom:733.410645pt;}
.y2fd{bottom:734.213699pt;}
.yc5{bottom:734.774170pt;}
.ya3{bottom:734.818970pt;}
.y32f{bottom:735.121582pt;}
.y2d7{bottom:735.767090pt;}
.y25d{bottom:735.773490pt;}
.y214{bottom:735.779890pt;}
.y12b{bottom:735.843890pt;}
.y15f{bottom:735.920936pt;}
.y2ca{bottom:736.678683pt;}
.y36a{bottom:737.638021pt;}
.y3b0{bottom:737.638051pt;}
.y3a{bottom:739.451492pt;}
.y67{bottom:740.141218pt;}
.y1ae{bottom:745.724284pt;}
.y183{bottom:745.730684pt;}
.y32e{bottom:747.121582pt;}
.y369{bottom:749.638021pt;}
.y3af{bottom:749.638051pt;}
.y8{bottom:749.820544pt;}
.y2fc{bottom:750.207299pt;}
.yc4{bottom:750.774170pt;}
.ya2{bottom:750.812570pt;}
.y25c{bottom:751.767090pt;}
.y2d6{bottom:751.771357pt;}
.y213{bottom:751.773490pt;}
.y12a{bottom:751.837490pt;}
.y15e{bottom:751.914536pt;}
.y1e8{bottom:752.730683pt;}
.y2c9{bottom:752.806683pt;}
.y39{bottom:755.445092pt;}
.y66{bottom:756.134818pt;}
.y32d{bottom:759.121582pt;}
.y368{bottom:761.638021pt;}
.y3ae{bottom:761.638051pt;}
.y182{bottom:761.724284pt;}
.y1ad{bottom:761.857882pt;}
.y2fb{bottom:766.200899pt;}
.ya1{bottom:766.806170pt;}
.y212{bottom:767.767090pt;}
.y129{bottom:767.831090pt;}
.y15d{bottom:767.908136pt;}
.y7{bottom:768.491211pt;}
.y1e7{bottom:768.938650pt;}
.y2c8{bottom:768.945350pt;}
.y32c{bottom:771.121582pt;}
.y38{bottom:771.438692pt;}
.y65{bottom:772.128418pt;}
.y367{bottom:773.638021pt;}
.y3ad{bottom:773.638051pt;}
.y181{bottom:777.724284pt;}
.y1ac{bottom:777.851482pt;}
.y2fa{bottom:782.194499pt;}
.yc3{bottom:782.786970pt;}
.ya0{bottom:782.799770pt;}
.y32b{bottom:783.121582pt;}
.y27c{bottom:783.767090pt;}
.y211{bottom:783.773490pt;}
.y23c{bottom:783.779890pt;}
.y128{bottom:783.824690pt;}
.y15c{bottom:783.901736pt;}
.y1e6{bottom:785.072033pt;}
.y2c7{bottom:785.073350pt;}
.y366{bottom:785.638021pt;}
.y3ac{bottom:785.638051pt;}
.y37{bottom:787.432292pt;}
.y64{bottom:788.137068pt;}
.y32a{bottom:795.121582pt;}
.y365{bottom:797.638021pt;}
.y3ab{bottom:797.638051pt;}
.y2f9{bottom:798.194499pt;}
.yc2{bottom:798.780570pt;}
.y9f{bottom:798.793370pt;}
.y210{bottom:799.767090pt;}
.y23b{bottom:799.773490pt;}
.y127{bottom:799.818290pt;}
.y15b{bottom:799.895336pt;}
.y6{bottom:800.513358pt;}
.y1e5{bottom:801.210634pt;}
.y2c6{bottom:801.212016pt;}
.y36{bottom:803.432292pt;}
.y63{bottom:804.130668pt;}
.y329{bottom:807.121582pt;}
.y364{bottom:809.638021pt;}
.y3aa{bottom:809.638051pt;}
.y2f8{bottom:814.194499pt;}
.yc1{bottom:814.774170pt;}
.y9e{bottom:814.786970pt;}
.y23a{bottom:815.767090pt;}
.y20f{bottom:815.799090pt;}
.y126{bottom:815.811890pt;}
.y27b{bottom:815.831336pt;}
.y15a{bottom:815.888936pt;}
.y1e4{bottom:817.338634pt;}
.y2c5{bottom:817.340016pt;}
.y328{bottom:819.121582pt;}
.y363{bottom:821.638021pt;}
.y3a9{bottom:821.638051pt;}
.y1d6{bottom:829.544515pt;}
.y9d{bottom:830.780570pt;}
.yc0{bottom:830.817055pt;}
.y327{bottom:831.121582pt;}
.y20e{bottom:831.792690pt;}
.y239{bottom:831.799090pt;}
.y125{bottom:831.805490pt;}
.y27a{bottom:831.824936pt;}
.y159{bottom:831.882536pt;}
.y2c4{bottom:833.468016pt;}
.y1e3{bottom:833.472016pt;}
.y362{bottom:833.638021pt;}
.y3a8{bottom:833.638051pt;}
.y5{bottom:835.169358pt;}
.y1d5{bottom:842.877848pt;}
.y361{bottom:845.638021pt;}
.y3a7{bottom:845.638051pt;}
.y9c{bottom:846.774170pt;}
.ybf{bottom:846.810655pt;}
.y2f7{bottom:847.767090pt;}
.y20d{bottom:847.786290pt;}
.y238{bottom:847.792690pt;}
.y124{bottom:847.799090pt;}
.y279{bottom:847.818536pt;}
.y158{bottom:847.876136pt;}
.y2c3{bottom:849.596016pt;}
.y1e2{bottom:849.605317pt;}
.y1d4{bottom:856.211182pt;}
.y360{bottom:857.638021pt;}
.y3a6{bottom:857.638051pt;}
.y9b{bottom:862.780570pt;}
.ybe{bottom:862.804255pt;}
.y2f6{bottom:863.773490pt;}
.y20c{bottom:863.779890pt;}
.y237{bottom:863.786290pt;}
.y123{bottom:863.792690pt;}
.y278{bottom:863.812136pt;}
.y157{bottom:863.869736pt;}
.y93{bottom:865.711182pt;}
.y2c2{bottom:865.724016pt;}
.y1e1{bottom:865.738699pt;}
.y326{bottom:865.791582pt;}
.y1d3{bottom:869.544515pt;}
.y35f{bottom:869.638021pt;}
.y3a5{bottom:869.638051pt;}
.y4{bottom:869.825358pt;}
.y9a{bottom:878.774170pt;}
.ybd{bottom:878.797855pt;}
.y2f5{bottom:879.767090pt;}
.y20b{bottom:879.773490pt;}
.y236{bottom:879.779890pt;}
.y122{bottom:879.786290pt;}
.y277{bottom:879.805736pt;}
.y156{bottom:879.863336pt;}
.y35e{bottom:881.638021pt;}
.y3a4{bottom:881.638051pt;}
.y92{bottom:881.711182pt;}
.y1e0{bottom:881.862683pt;}
.y1d2{bottom:882.877848pt;}
.y35d{bottom:893.638021pt;}
.y3a3{bottom:893.638051pt;}
.y99{bottom:894.786970pt;}
.ybc{bottom:894.791455pt;}
.y20a{bottom:895.767090pt;}
.y235{bottom:895.773490pt;}
.y121{bottom:895.779890pt;}
.y2f4{bottom:895.790684pt;}
.y276{bottom:895.799336pt;}
.y155{bottom:895.856936pt;}
.y1d1{bottom:896.211182pt;}
.y325{bottom:899.121582pt;}
.y91{bottom:901.711182pt;}
.y35c{bottom:905.638021pt;}
.y3a2{bottom:905.638051pt;}
.y1df{bottom:905.766683pt;}
.y1d0{bottom:909.544515pt;}
.y98{bottom:910.780570pt;}
.ybb{bottom:910.785055pt;}
.y324{bottom:911.121582pt;}
.y234{bottom:911.767090pt;}
.y120{bottom:911.773490pt;}
.y2f3{bottom:911.784284pt;}
.y275{bottom:911.792936pt;}
.y154{bottom:911.850536pt;}
.y35b{bottom:917.638021pt;}
.y3a1{bottom:917.638051pt;}
.y90{bottom:917.711182pt;}
.y3{bottom:918.544515pt;}
.y2a{bottom:920.666829pt;}
.y1d7{bottom:922.877848pt;}
.y97{bottom:926.774170pt;}
.yba{bottom:926.778655pt;}
.y323{bottom:927.121582pt;}
.y1d8{bottom:927.377848pt;}
.y11f{bottom:927.767090pt;}
.y233{bottom:927.767336pt;}
.y2f2{bottom:927.777884pt;}
.y274{bottom:927.786536pt;}
.y153{bottom:927.844136pt;}
.y35a{bottom:929.638021pt;}
.y3a0{bottom:929.638051pt;}
.y2b{bottom:985.524007pt;}
.y2{bottom:988.708515pt;}
.y94{bottom:1001.355225pt;}
.y34{bottom:1001.355306pt;}
.y96{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y95{bottom:1002.044515pt;}
.y35{bottom:1002.048639pt;}
.he{height:24.377333pt;}
.h11{height:24.724000pt;}
.hd{height:32.965333pt;}
.h10{height:35.320000pt;}
.h16{height:35.541333pt;}
.h1f{height:35.578667pt;}
.h19{height:37.674667pt;}
.h28{height:38.080000pt;}
.h26{height:38.880000pt;}
.h25{height:39.560000pt;}
.h3{height:40.618667pt;}
.h12{height:40.661333pt;}
.h27{height:40.724000pt;}
.h17{height:41.472000pt;}
.h2{height:41.984000pt;}
.h1c{height:42.197333pt;}
.h1e{height:43.439649pt;}
.h20{height:43.454738pt;}
.hb{height:47.093333pt;}
.h15{height:47.472000pt;}
.h14{height:47.692799pt;}
.h13{height:49.653333pt;}
.ha{height:51.840000pt;}
.hc{height:54.298667pt;}
.h9{height:54.329067pt;}
.h21{height:55.586458pt;}
.h23{height:55.638431pt;}
.h1d{height:55.638470pt;}
.h22{height:55.638472pt;}
.h24{height:55.663990pt;}
.h7{height:59.728337pt;}
.h8{height:59.744337pt;}
.hf{height:65.696829pt;}
.h4{height:68.570667pt;}
.h1a{height:85.674667pt;}
.h1b{height:85.695967pt;}
.h18{height:89.472000pt;}
.h5{height:121.856000pt;}
.h6{height:121.984000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:208.349325pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xb{left:85.227467pt;}
.x8{left:86.252793pt;}
.x12{left:95.590535pt;}
.xc{left:126.734535pt;}
.x4{left:240.726664pt;}
.xe{left:261.096395pt;}
.x10{left:313.574655pt;}
.xd{left:374.713346pt;}
.x9{left:406.307731pt;}
.xa{left:416.961594pt;}
.x11{left:426.299194pt;}
.x6{left:511.422648pt;}
.x5{left:617.715454pt;}
.xf{left:658.727458pt;}
.x7{left:664.199341pt;}
}


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