
/* 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_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_09f88ce1603a.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_7e3fb33050f3.woff")format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_509720873aa9.woff")format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_5a68847bd1cd.woff")format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_dc95ed900b46.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_6c97a047b749.woff")format("woff");}.ff7{font-family:ff7;line-height:1.179000;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_db28fb330943.woff")format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_2fdd9048fb18.woff")format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_8fdae1443588.woff")format("woff");}.ffa{font-family:ffa;line-height:1.144000;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_13be58653450.woff")format("woff");}.ffb{font-family:ffb;line-height:0.890000;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_500a9d7b19c0.woff")format("woff");}.ffc{font-family:ffc;line-height:0.588000;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_e1dda65b55fc.woff")format("woff");}.ffd{font-family:ffd;line-height:0.851000;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_60300c8c45aa.woff")format("woff");}.ffe{font-family:ffe;line-height:0.702000;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_c78648cfb343.woff")format("woff");}.fff{font-family:fff;line-height:0.120000;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_e64f32334f48.woff")format("woff");}.ff10{font-family:ff10;line-height:1.230000;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_f9b10f2ce6a4.woff")format("woff");}.ff11{font-family:ff11;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_0ea3ffc24b4a.woff")format("woff");}.ff12{font-family:ff12;line-height:0.676000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-19.199982px;}
.v4{vertical-align:-14.957522px;}
.v8{vertical-align:-1.055908px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.012085px;}
.v7{vertical-align:16.792831px;}
.v6{vertical-align:18.736094px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:48.011998px;}
.ls17{letter-spacing:-1.980495px;}
.ls8{letter-spacing:-1.980000px;}
.lsa{letter-spacing:-1.584000px;}
.ls16{letter-spacing:-1.140000px;}
.ls3{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.672000px;}
.lsb{letter-spacing:-0.652500px;}
.ls15{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.470400px;}
.ls7{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.004647px;}
.ls21{letter-spacing:0.278831px;}
.ls1d{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.672000px;}
.ls1e{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.200000px;}
.ls0{letter-spacing:3.360000px;}
.ls1b{letter-spacing:7.013941px;}
.ls1a{letter-spacing:7.013986px;}
.ls1c{letter-spacing:7.014032px;}
.lsf{letter-spacing:10.022505px;}
.ls10{letter-spacing:13.263314px;}
.lse{letter-spacing:13.323329px;}
.ls6{letter-spacing:14.999987px;}
.ls5{letter-spacing:14.999993px;}
.ls4{letter-spacing:15.000000px;}
.lsc{letter-spacing:16.307583px;}
.ls14{letter-spacing:16.309506px;}
.ls11{letter-spacing:16.363430px;}
.lsd{letter-spacing:16.363522px;}
.ls12{letter-spacing:16.363524px;}
.ls27{letter-spacing:593.821857px;}
.ls25{letter-spacing:637.838397px;}
.ls19{letter-spacing:707.251758px;}
.ls23{letter-spacing:730.762225px;}
.ls26{letter-spacing:777.948047px;}
.ls24{letter-spacing:821.964587px;}
.ls18{letter-spacing:891.377971px;}
.ls22{letter-spacing:914.889039px;}
.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;}
}
.ws3e{word-spacing:-15.000000px;}
.wsa5{word-spacing:-14.160000px;}
.wsaf{word-spacing:-13.332000px;}
.wscc{word-spacing:-13.020000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.ws5d{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.520000px;}
.ws60{word-spacing:-11.424000px;}
.ws105{word-spacing:-11.340000px;}
.ws153{word-spacing:-11.328000px;}
.ws19{word-spacing:-10.500000px;}
.wsd8{word-spacing:-10.416000px;}
.ws1{word-spacing:-9.408000px;}
.ws127{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.ws6{word-spacing:-8.400000px;}
.ws14a{word-spacing:-7.929600px;}
.ws5f{word-spacing:-6.000000px;}
.ws1a{word-spacing:-1.890000px;}
.ws7e{word-spacing:-1.500000px;}
.wse9{word-spacing:-1.380000px;}
.wsfe{word-spacing:-1.320000px;}
.ws7f{word-spacing:-1.140000px;}
.wsb8{word-spacing:-0.960000px;}
.ws10c{word-spacing:-0.900000px;}
.ws14f{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.840000px;}
.wsa6{word-spacing:-0.780000px;}
.ws4a{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.660000px;}
.ws49{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.540000px;}
.ws14d{word-spacing:-0.528000px;}
.ws8{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.360000px;}
.wsae{word-spacing:-0.300000px;}
.ws133{word-spacing:-0.288000px;}
.wsab{word-spacing:-0.240000px;}
.ws146{word-spacing:-0.192000px;}
.wsa2{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.144000px;}
.ws93{word-spacing:-0.120000px;}
.wsde{word-spacing:-0.060015px;}
.ws74{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws140{word-spacing:0.048000px;}
.ws4c{word-spacing:0.060000px;}
.ws134{word-spacing:0.096000px;}
.ws10{word-spacing:0.120000px;}
.ws126{word-spacing:0.144000px;}
.ws91{word-spacing:0.180000px;}
.wsb3{word-spacing:0.240000px;}
.ws11e{word-spacing:0.288000px;}
.ws9{word-spacing:0.300000px;}
.ws9c{word-spacing:0.360000px;}
.ws14c{word-spacing:0.384000px;}
.ws68{word-spacing:0.420000px;}
.ws12e{word-spacing:0.432000px;}
.ws24{word-spacing:0.480000px;}
.ws92{word-spacing:0.540000px;}
.ws132{word-spacing:0.576000px;}
.wse8{word-spacing:0.600000px;}
.ws136{word-spacing:0.624000px;}
.ws50{word-spacing:0.660000px;}
.ws137{word-spacing:0.672000px;}
.wsc2{word-spacing:0.720000px;}
.wsc4{word-spacing:0.780000px;}
.wsa4{word-spacing:0.840000px;}
.ws39{word-spacing:0.900000px;}
.ws2a{word-spacing:0.960000px;}
.ws135{word-spacing:1.008000px;}
.ws97{word-spacing:1.020000px;}
.ws6a{word-spacing:1.080000px;}
.wscb{word-spacing:1.104000px;}
.wsc3{word-spacing:1.140000px;}
.ws100{word-spacing:1.152000px;}
.ws9d{word-spacing:1.200000px;}
.ws61{word-spacing:1.248000px;}
.wsaa{word-spacing:1.260000px;}
.ws25{word-spacing:1.320000px;}
.ws131{word-spacing:1.344000px;}
.wsc9{word-spacing:1.380000px;}
.wsbf{word-spacing:1.440000px;}
.ws13b{word-spacing:1.488000px;}
.ws56{word-spacing:1.500000px;}
.ws98{word-spacing:1.560000px;}
.ws12d{word-spacing:1.584000px;}
.wsce{word-spacing:1.620000px;}
.wsf0{word-spacing:1.632000px;}
.ws8f{word-spacing:1.680000px;}
.ws158{word-spacing:1.683000px;}
.wsa8{word-spacing:1.740000px;}
.ws12a{word-spacing:1.776000px;}
.ws38{word-spacing:1.800000px;}
.ws142{word-spacing:1.824000px;}
.ws99{word-spacing:1.860000px;}
.wsf1{word-spacing:1.872000px;}
.wsfc{word-spacing:1.920000px;}
.wse1{word-spacing:1.920480px;}
.ws11c{word-spacing:1.968000px;}
.ws43{word-spacing:1.980000px;}
.ws111{word-spacing:2.040000px;}
.ws12b{word-spacing:2.064000px;}
.ws9e{word-spacing:2.100000px;}
.ws159{word-spacing:2.142000px;}
.ws8e{word-spacing:2.160000px;}
.ws3d{word-spacing:2.208000px;}
.wsb{word-spacing:2.220000px;}
.ws148{word-spacing:2.256000px;}
.wsd7{word-spacing:2.280000px;}
.ws141{word-spacing:2.304000px;}
.ws16{word-spacing:2.340000px;}
.ws139{word-spacing:2.352000px;}
.wsb6{word-spacing:2.400000px;}
.ws149{word-spacing:2.496000px;}
.ws46{word-spacing:2.520000px;}
.ws8c{word-spacing:2.580000px;}
.ws31{word-spacing:2.640000px;}
.ws101{word-spacing:2.688000px;}
.ws70{word-spacing:2.700000px;}
.wsc{word-spacing:2.760000px;}
.ws147{word-spacing:2.784000px;}
.ws6f{word-spacing:2.820000px;}
.ws20{word-spacing:2.880000px;}
.ws13c{word-spacing:2.928000px;}
.wsb1{word-spacing:2.940000px;}
.ws13f{word-spacing:2.976000px;}
.ws7d{word-spacing:3.000000px;}
.ws22{word-spacing:3.060000px;}
.ws157{word-spacing:3.072000px;}
.ws156{word-spacing:3.120000px;}
.ws11d{word-spacing:3.168000px;}
.ws2c{word-spacing:3.180000px;}
.ws13e{word-spacing:3.216000px;}
.ws1d{word-spacing:3.240000px;}
.ws12c{word-spacing:3.264000px;}
.ws57{word-spacing:3.300000px;}
.ws6d{word-spacing:3.360000px;}
.ws21{word-spacing:3.420000px;}
.ws4e{word-spacing:3.480000px;}
.ws13a{word-spacing:3.504000px;}
.ws51{word-spacing:3.540000px;}
.ws145{word-spacing:3.552000px;}
.wsb9{word-spacing:3.600000px;}
.ws11{word-spacing:3.660000px;}
.ws95{word-spacing:3.720000px;}
.ws3a{word-spacing:3.780000px;}
.wsb0{word-spacing:3.840000px;}
.ws14b{word-spacing:3.888000px;}
.ws53{word-spacing:3.900000px;}
.wsb5{word-spacing:3.960000px;}
.ws5b{word-spacing:4.020000px;}
.ws128{word-spacing:4.032000px;}
.ws36{word-spacing:4.080000px;}
.ws119{word-spacing:4.128000px;}
.wsff{word-spacing:4.176000px;}
.ws8d{word-spacing:4.200000px;}
.ws138{word-spacing:4.224000px;}
.ws5a{word-spacing:4.260000px;}
.wsc0{word-spacing:4.320000px;}
.ws83{word-spacing:4.380000px;}
.ws15{word-spacing:4.440000px;}
.ws109{word-spacing:4.500000px;}
.ws2d{word-spacing:4.560000px;}
.ws76{word-spacing:4.620000px;}
.ws7c{word-spacing:4.680000px;}
.ws12f{word-spacing:4.704000px;}
.ws55{word-spacing:4.740000px;}
.ws6c{word-spacing:4.800000px;}
.ws7a{word-spacing:4.860000px;}
.ws27{word-spacing:4.920000px;}
.ws121{word-spacing:4.944000px;}
.ws41{word-spacing:4.980000px;}
.wsfa{word-spacing:5.040000px;}
.ws143{word-spacing:5.088000px;}
.ws9a{word-spacing:5.100000px;}
.wsbe{word-spacing:5.160000px;}
.ws37{word-spacing:5.220000px;}
.ws129{word-spacing:5.280000px;}
.ws118{word-spacing:5.328000px;}
.ws1e{word-spacing:5.340000px;}
.ws65{word-spacing:5.400000px;}
.ws77{word-spacing:5.460000px;}
.ws86{word-spacing:5.520000px;}
.ws32{word-spacing:5.580000px;}
.ws79{word-spacing:5.640000px;}
.ws34{word-spacing:5.700000px;}
.ws23{word-spacing:5.760000px;}
.ws144{word-spacing:5.808000px;}
.ws67{word-spacing:5.820000px;}
.ws52{word-spacing:5.880000px;}
.ws30{word-spacing:5.940000px;}
.wsd2{word-spacing:6.000000px;}
.wseb{word-spacing:6.060000px;}
.wsa0{word-spacing:6.120000px;}
.wsa7{word-spacing:6.180000px;}
.ws130{word-spacing:6.192000px;}
.ws5c{word-spacing:6.240000px;}
.wsad{word-spacing:6.300000px;}
.ws85{word-spacing:6.360000px;}
.wscd{word-spacing:6.480000px;}
.wsf7{word-spacing:6.528000px;}
.wsac{word-spacing:6.540000px;}
.ws45{word-spacing:6.600000px;}
.ws47{word-spacing:6.660000px;}
.wsf9{word-spacing:6.720000px;}
.ws44{word-spacing:6.780000px;}
.wsc7{word-spacing:6.840000px;}
.wsa3{word-spacing:6.900000px;}
.ws12{word-spacing:6.960000px;}
.ws151{word-spacing:7.008000px;}
.wscf{word-spacing:7.020000px;}
.wsa9{word-spacing:7.080000px;}
.ws80{word-spacing:7.140000px;}
.ws40{word-spacing:7.200000px;}
.wse7{word-spacing:7.260000px;}
.ws73{word-spacing:7.320000px;}
.ws8a{word-spacing:7.380000px;}
.wsf{word-spacing:7.440000px;}
.ws11a{word-spacing:7.488000px;}
.ws72{word-spacing:7.500000px;}
.wsea{word-spacing:7.560000px;}
.ws2f{word-spacing:7.620000px;}
.wsc8{word-spacing:7.680000px;}
.wsca{word-spacing:7.740000px;}
.ws4f{word-spacing:7.800000px;}
.ws13d{word-spacing:7.824000px;}
.ws96{word-spacing:7.860000px;}
.ws26{word-spacing:7.920000px;}
.wsbc{word-spacing:7.980000px;}
.ws155{word-spacing:8.016000px;}
.ws62{word-spacing:8.040000px;}
.ws2b{word-spacing:8.100000px;}
.ws1b{word-spacing:8.160000px;}
.ws75{word-spacing:8.220000px;}
.wsfb{word-spacing:8.280000px;}
.ws48{word-spacing:8.340000px;}
.ws3f{word-spacing:8.400000px;}
.wsd{word-spacing:8.460000px;}
.ws9f{word-spacing:8.520000px;}
.ws59{word-spacing:8.580000px;}
.ws71{word-spacing:8.640000px;}
.ws1f{word-spacing:8.700000px;}
.ws14e{word-spacing:8.784000px;}
.wse{word-spacing:8.820000px;}
.wsb2{word-spacing:8.880000px;}
.ws63{word-spacing:9.000000px;}
.wsd6{word-spacing:9.120000px;}
.wsdc{word-spacing:9.168000px;}
.wsd4{word-spacing:9.180000px;}
.wsf8{word-spacing:9.240000px;}
.ws89{word-spacing:9.300000px;}
.ws29{word-spacing:9.360000px;}
.ws4d{word-spacing:9.480000px;}
.ws154{word-spacing:9.648000px;}
.ws17{word-spacing:9.720000px;}
.ws103{word-spacing:9.840000px;}
.ws6b{word-spacing:9.900000px;}
.wse2{word-spacing:9.902475px;}
.wsdf{word-spacing:9.908476px;}
.ws58{word-spacing:10.080000px;}
.wsba{word-spacing:10.140000px;}
.ws82{word-spacing:10.200000px;}
.ws10a{word-spacing:10.320000px;}
.ws33{word-spacing:10.380000px;}
.ws42{word-spacing:10.440000px;}
.ws54{word-spacing:10.500000px;}
.ws64{word-spacing:10.560000px;}
.wsf5{word-spacing:10.620000px;}
.ws2e{word-spacing:10.680000px;}
.wsc6{word-spacing:10.860000px;}
.ws69{word-spacing:10.980000px;}
.wsdd{word-spacing:11.040000px;}
.ws10f{word-spacing:11.100000px;}
.ws106{word-spacing:11.160000px;}
.wse6{word-spacing:11.366840px;}
.ws108{word-spacing:11.400000px;}
.ws78{word-spacing:11.520000px;}
.ws6e{word-spacing:11.580000px;}
.ws13{word-spacing:11.640000px;}
.wsbb{word-spacing:11.700000px;}
.ws104{word-spacing:12.000000px;}
.ws10b{word-spacing:12.120000px;}
.wsb7{word-spacing:12.240000px;}
.ws3c{word-spacing:12.300000px;}
.wsc1{word-spacing:12.480000px;}
.ws81{word-spacing:12.600000px;}
.wsd3{word-spacing:12.660000px;}
.ws110{word-spacing:12.720000px;}
.ws35{word-spacing:12.900000px;}
.ws28{word-spacing:12.960000px;}
.ws8b{word-spacing:13.020000px;}
.wsc5{word-spacing:13.080000px;}
.ws122{word-spacing:13.248000px;}
.wse3{word-spacing:13.263314px;}
.wse0{word-spacing:13.323329px;}
.ws107{word-spacing:13.380000px;}
.wsb4{word-spacing:13.500000px;}
.ws66{word-spacing:13.560000px;}
.ws4b{word-spacing:13.740000px;}
.ws150{word-spacing:13.824000px;}
.wsbd{word-spacing:14.340000px;}
.wsd1{word-spacing:14.940000px;}
.ws102{word-spacing:15.960000px;}
.ws10e{word-spacing:16.140000px;}
.ws84{word-spacing:16.560000px;}
.ws87{word-spacing:16.860000px;}
.wsf6{word-spacing:17.100000px;}
.ws94{word-spacing:17.160000px;}
.wsd0{word-spacing:17.340000px;}
.wsa1{word-spacing:17.400000px;}
.ws90{word-spacing:17.700000px;}
.wsfd{word-spacing:18.480000px;}
.ws7b{word-spacing:19.080000px;}
.ws14{word-spacing:19.668000px;}
.ws152{word-spacing:19.728000px;}
.ws10d{word-spacing:19.860000px;}
.wse5{word-spacing:19.990996px;}
.wse4{word-spacing:21.413350px;}
.wsed{word-spacing:41.412000px;}
.ws18{word-spacing:73.056000px;}
.wsee{word-spacing:80.682000px;}
.wsec{word-spacing:84.210000px;}
.wsd9{word-spacing:179.655000px;}
.ws116{word-spacing:182.160000px;}
.wsda{word-spacing:202.579500px;}
.ws117{word-spacing:266.160000px;}
.ws123{word-spacing:275.904000px;}
.ws112{word-spacing:318.192000px;}
.ws114{word-spacing:350.160000px;}
.wsf3{word-spacing:407.039978px;}
.wsf4{word-spacing:467.039978px;}
.wsd5{word-spacing:524.352000px;}
.wsf2{word-spacing:543.071978px;}
.ws120{word-spacing:561.456000px;}
.ws11b{word-spacing:605.476800px;}
.wsdb{word-spacing:656.110475px;}
.ws11f{word-spacing:737.520000px;}
.ws124{word-spacing:767.712000px;}
.ws125{word-spacing:774.384000px;}
.ws113{word-spacing:842.399984px;}
.ws115{word-spacing:849.071984px;}
.wsef{word-spacing:3103.758103px;}
._ac{margin-left:-19.032000px;}
._4{margin-left:-15.600000px;}
._10{margin-left:-13.332000px;}
._13{margin-left:-11.340000px;}
._99{margin-left:-6.180022px;}
._9{margin-left:-5.028000px;}
._1{margin-left:-3.892800px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.632000px;}
._2{width:1.572000px;}
._c{width:3.168000px;}
._a{width:4.674000px;}
._e{width:5.710786px;}
._14{width:7.086000px;}
._15{width:8.298000px;}
._d{width:9.791991px;}
._18{width:10.895991px;}
._b{width:12.390000px;}
._82{width:13.703400px;}
._11{width:14.827200px;}
._f{width:17.094000px;}
._12{width:18.660000px;}
._17{width:19.668000px;}
._5{width:22.320000px;}
._81{width:30.000000px;}
._16{width:33.000000px;}
._1c{width:37.824000px;}
._4f{width:40.782000px;}
._bd{width:44.832000px;}
._5c{width:51.912004px;}
._7{width:56.255991px;}
._53{width:61.403995px;}
._54{width:63.041990px;}
._6{width:73.056000px;}
._4d{width:75.180000px;}
._4b{width:76.817995px;}
._a8{width:88.848000px;}
._51{width:91.182000px;}
._ba{width:93.696000px;}
._4e{width:101.051990px;}
._50{width:102.311992px;}
._58{width:113.610000px;}
._4c{width:115.710000px;}
._5a{width:127.974005px;}
._a5{width:137.712000px;}
._59{width:141.959997px;}
._91{width:149.807984px;}
._78{width:158.255995px;}
._72{width:162.191978px;}
._33{width:166.648494px;}
._35{width:169.824000px;}
._26{width:175.440000px;}
._93{width:181.775984px;}
._6d{width:183.071978px;}
._75{width:186.191978px;}
._1e{width:187.632000px;}
._37{width:191.704500px;}
._52{width:200.970000px;}
._b8{width:202.128000px;}
._8f{width:205.055984px;}
._6e{width:207.215973px;}
._7d{width:210.191978px;}
._48{width:211.199975px;}
._39{width:212.932500px;}
._31{width:213.976500px;}
._36{width:215.575475px;}
._98{width:218.160000px;}
._1d{width:219.600000px;}
._28{width:224.208000px;}
._27{width:227.520000px;}
._2d{width:228.972000px;}
._6b{width:231.071978px;}
._30{width:233.986500px;}
._44{width:242.991000px;}
._a3{width:246.144000px;}
._8e{width:250.367984px;}
._79{width:255.071978px;}
._2f{width:258.172500px;}
._34{width:264.741000px;}
._9a{width:273.972008px;}
._bc{width:275.472000px;}
._9b{width:277.296000px;}
._29{width:284.256000px;}
._9e{width:295.008000px;}
._21{width:303.024000px;}
._77{width:304.055997px;}
._8b{width:307.103984px;}
._c2{width:313.248000px;}
._74{width:315.551995px;}
._a7{width:319.488000px;}
._55{width:326.760000px;}
._20{width:328.380000px;}
._19{width:336.244800px;}
._42{width:338.699975px;}
._3a{width:349.631975px;}
._83{width:354.192000px;}
._be{width:358.896000px;}
._87{width:361.679984px;}
._2c{width:362.832000px;}
._2b{width:364.272000px;}
._38{width:380.234975px;}
._45{width:384.104975px;}
._86{width:386.160000px;}
._43{width:387.412475px;}
._4a{width:388.520975px;}
._22{width:391.020000px;}
._1a{width:403.536000px;}
._85{width:407.663984px;}
._92{width:412.415984px;}
._2a{width:425.616000px;}
._aa{width:428.268000px;}
._1f{width:430.944000px;}
._9d{width:432.624000px;}
._b6{width:437.376000px;}
._46{width:438.523475px;}
._b4{width:440.688000px;}
._b2{width:442.140000px;}
._24{width:450.960000px;}
._3d{width:455.531975px;}
._c1{width:457.500000px;}
._23{width:461.616000px;}
._7c{width:472.319995px;}
._a2{width:476.784000px;}
._3c{width:478.516475px;}
._9f{width:481.392000px;}
._bb{width:486.816000px;}
._95{width:495.839984px;}
._7b{width:497.675995px;}
._56{width:500.555985px;}
._6c{width:502.031995px;}
._1b{width:504.288000px;}
._c0{width:506.832000px;}
._49{width:509.732975px;}
._25{width:511.248000px;}
._ae{width:516.192000px;}
._bf{width:517.488000px;}
._94{width:521.195984px;}
._84{width:525.551984px;}
._a6{width:530.832000px;}
._3e{width:535.283975px;}
._8a{width:537.743984px;}
._ad{width:541.548000px;}
._73{width:546.191995px;}
._6f{width:550.799995px;}
._ab{width:561.504000px;}
._47{width:566.630975px;}
._8c{width:569.711984px;}
._3b{width:571.459475px;}
._88{width:574.319984px;}
._b3{width:576.000000px;}
._b1{width:577.440000px;}
._2e{width:586.221266px;}
._40{width:589.598975px;}
._b9{width:591.120000px;}
._3f{width:599.255975px;}
._a9{width:611.136000px;}
._57{width:614.796000px;}
._7f{width:620.255995px;}
._90{width:623.759984px;}
._7e{width:630.911995px;}
._a4{width:635.136000px;}
._32{width:637.927475px;}
._41{width:644.387975px;}
._96{width:654.431984px;}
._b0{width:664.128000px;}
._af{width:674.784000px;}
._7a{width:680.543995px;}
._80{width:686.879995px;}
._a1{width:688.128000px;}
._76{width:704.543995px;}
._c3{width:706.368000px;}
._97{width:710.399984px;}
._b5{width:717.456000px;}
._b7{width:724.416000px;}
._8d{width:728.063984px;}
._71{width:757.535995px;}
._9c{width:761.472000px;}
._a0{width:768.432000px;}
._5b{width:779.478000px;}
._89{width:781.055984px;}
._6a{width:830.879995px;}
._70{width:837.839995px;}
._c5{width:843.743927px;}
._5d{width:944.160000px;}
._c4{width:997.247974px;}
._5e{width:1159.200000px;}
._5f{width:1323.882000px;}
._60{width:1467.564072px;}
._c6{width:1580.736000px;}
._61{width:1632.245972px;}
._8{width:1651.584000px;}
._c7{width:1737.264067px;}
._62{width:1746.486000px;}
._c8{width:1874.495955px;}
._63{width:1911.167923px;}
._64{width:2075.849983px;}
._65{width:2290.889938px;}
._66{width:2455.572000px;}
._cb{width:2556.432000px;}
._67{width:2569.854000px;}
._ca{width:2581.788000px;}
._cd{width:2704.368000px;}
._cc{width:2715.024000px;}
._68{width:2734.494110px;}
._c9{width:2764.656000px;}
._69{width:2949.575882px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.010200px;}
.fs7{font-size:43.500000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.014997px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y19c{bottom:0.606386px;}
.y1dd{bottom:2.444996px;}
.y1e3{bottom:2.445001px;}
.y19b{bottom:23.021988px;}
.y199{bottom:45.445816px;}
.y26{bottom:49.625399px;}
.y4{bottom:49.625999px;}
.y1{bottom:50.758198px;}
.y197{bottom:67.855637px;}
.y1e2{bottom:87.542999px;}
.y2e4{bottom:89.881027px;}
.y2de{bottom:89.881045px;}
.y2d7{bottom:89.893052px;}
.y2cf{bottom:89.905052px;}
.y2c7{bottom:89.917052px;}
.y2bf{bottom:89.929052px;}
.y2b7{bottom:89.941052px;}
.y2af{bottom:89.953052px;}
.y2a7{bottom:89.965052px;}
.y29f{bottom:89.977052px;}
.y2ea{bottom:89.989040px;}
.y297{bottom:89.989052px;}
.y5d{bottom:90.000000px;}
.y19d{bottom:90.000007px;}
.y25{bottom:90.006000px;}
.y61{bottom:90.008389px;}
.y69{bottom:90.020371px;}
.y1bc{bottom:90.027443px;}
.y19f{bottom:90.051923px;}
.y1a0{bottom:90.104389px;}
.y1a1{bottom:90.156909px;}
.y1a2{bottom:90.209377px;}
.y1a3{bottom:90.261897px;}
.y1a4{bottom:90.303869px;}
.y1a5{bottom:90.345836px;}
.y1a6{bottom:90.387859px;}
.y1a7{bottom:90.419330px;}
.y1a8{bottom:90.450855px;}
.y1a9{bottom:90.482345px;}
.y1aa{bottom:90.513862px;}
.y1ab{bottom:90.534832px;}
.y1ac{bottom:90.555838px;}
.y1ad{bottom:90.576803px;}
.y1ae{bottom:90.587260px;}
.y1af{bottom:90.597787px;}
.y1b1{bottom:90.608205px;}
.y1b0{bottom:90.608260px;}
.y6d{bottom:90.797516px;}
.y5c{bottom:90.797539px;}
.yaf{bottom:91.187516px;}
.y8f{bottom:91.202516px;}
.y11a{bottom:91.527443px;}
.y193{bottom:91.879399px;}
.y140{bottom:94.763499px;}
.y62{bottom:99.008389px;}
.y1e0{bottom:101.792999px;}
.y183{bottom:103.097516px;}
.y1fe{bottom:103.172516px;}
.y195{bottom:103.860306px;}
.y1e1{bottom:104.250000px;}
.y1df{bottom:104.256000px;}
.y20e{bottom:104.297516px;}
.yd7{bottom:104.672516px;}
.yec{bottom:105.047516px;}
.y353{bottom:105.383516px;}
.y1bb{bottom:108.027443px;}
.y6c{bottom:108.797516px;}
.y5b{bottom:108.797539px;}
.y13f{bottom:109.007499px;}
.y24{bottom:109.049995px;}
.yae{bottom:109.187516px;}
.y8e{bottom:109.202516px;}
.y119{bottom:109.527443px;}
.y253{bottom:111.090771px;}
.y1dc{bottom:116.042999px;}
.y31b{bottom:117.302982px;}
.y1de{bottom:118.500000px;}
.y1db{bottom:118.512000px;}
.y352{bottom:119.627516px;}
.y19e{bottom:120.438904px;}
.y182{bottom:121.097516px;}
.y1fd{bottom:121.172516px;}
.y20d{bottom:122.297516px;}
.yd6{bottom:122.672516px;}
.yeb{bottom:123.047516px;}
.y13e{bottom:123.251499px;}
.y252{bottom:125.334771px;}
.y1ba{bottom:126.027443px;}
.y6b{bottom:126.797516px;}
.y5a{bottom:126.797539px;}
.y8d{bottom:127.202516px;}
.y118{bottom:127.527443px;}
.y192{bottom:128.308502px;}
.y31a{bottom:131.546982px;}
.y1da{bottom:132.756000px;}
.y23{bottom:132.917250px;}
.y351{bottom:133.871516px;}
.y13d{bottom:137.495499px;}
.y181{bottom:139.097516px;}
.y1fc{bottom:139.172516px;}
.y20c{bottom:140.297516px;}
.y251{bottom:143.562771px;}
.y1b9{bottom:144.027443px;}
.y6a{bottom:144.797516px;}
.y59{bottom:144.797539px;}
.yad{bottom:145.187516px;}
.y8c{bottom:145.202516px;}
.y117{bottom:145.527443px;}
.y319{bottom:145.790982px;}
.y22{bottom:147.161250px;}
.y350{bottom:148.115516px;}
.y1d9{bottom:151.799995px;}
.y190{bottom:152.757294px;}
.y180{bottom:157.097516px;}
.y1fb{bottom:157.172516px;}
.y250{bottom:157.806771px;}
.y20b{bottom:158.297516px;}
.yd5{bottom:159.422516px;}
.yea{bottom:159.797516px;}
.y318{bottom:160.034982px;}
.y1b8{bottom:162.027443px;}
.y34f{bottom:162.359516px;}
.y50{bottom:162.797516px;}
.y58{bottom:162.797539px;}
.y10e{bottom:162.797562px;}
.y16a{bottom:163.192484px;}
.y8b{bottom:163.202516px;}
.y116{bottom:163.527443px;}
.y21{bottom:168.953250px;}
.y317{bottom:174.278982px;}
.y359{bottom:174.704553px;}
.y17f{bottom:175.097516px;}
.y1fa{bottom:175.172516px;}
.y24f{bottom:175.950771px;}
.y20a{bottom:176.297516px;}
.y34e{bottom:176.603516px;}
.y18e{bottom:177.205490px;}
.y288{bottom:177.263499px;}
.ye9{bottom:177.797516px;}
.y1b7{bottom:180.027443px;}
.y169{bottom:180.570734px;}
.y4f{bottom:180.797516px;}
.y57{bottom:180.797539px;}
.y10d{bottom:180.797562px;}
.y8a{bottom:181.202516px;}
.y115{bottom:181.527443px;}
.y20{bottom:183.197250px;}
.y316{bottom:188.522982px;}
.y358{bottom:188.959053px;}
.yac{bottom:189.992516px;}
.y24e{bottom:190.194771px;}
.y34d{bottom:190.847516px;}
.y287{bottom:191.507499px;}
.y17e{bottom:193.097516px;}
.y1f9{bottom:193.172516px;}
.y209{bottom:194.297516px;}
.yd4{bottom:196.172516px;}
.y168{bottom:197.872859px;}
.y1b6{bottom:198.027443px;}
.y4e{bottom:198.797516px;}
.y56{bottom:198.797539px;}
.y10c{bottom:198.797562px;}
.y89{bottom:199.202516px;}
.y114{bottom:199.527443px;}
.y18c{bottom:201.653687px;}
.y315{bottom:202.766982px;}
.y34c{bottom:205.091516px;}
.y286{bottom:205.751499px;}
.yab{bottom:207.992516px;}
.y24d{bottom:208.350771px;}
.y17d{bottom:211.097516px;}
.y1f8{bottom:211.172516px;}
.y208{bottom:212.297516px;}
.yd3{bottom:214.172516px;}
.ye8{bottom:214.547516px;}
.y167{bottom:215.174984px;}
.y1b5{bottom:216.027443px;}
.y4d{bottom:216.797516px;}
.y55{bottom:216.797539px;}
.y10b{bottom:216.797562px;}
.y314{bottom:217.010982px;}
.y88{bottom:217.202516px;}
.y113{bottom:217.527443px;}
.y357{bottom:219.071539px;}
.y34b{bottom:219.335516px;}
.y285{bottom:219.995499px;}
.y24c{bottom:222.594771px;}
.yaa{bottom:225.992516px;}
.y18a{bottom:226.102478px;}
.y1f{bottom:229.067093px;}
.y17c{bottom:229.097516px;}
.y1f7{bottom:229.172516px;}
.y207{bottom:230.297516px;}
.y313{bottom:231.254982px;}
.yd2{bottom:232.172516px;}
.y166{bottom:232.477109px;}
.ye7{bottom:232.547516px;}
.y356{bottom:233.315539px;}
.y34a{bottom:233.579516px;}
.y4c{bottom:234.797516px;}
.y54{bottom:234.797539px;}
.y10a{bottom:234.797562px;}
.y87{bottom:235.202516px;}
.y112{bottom:235.527443px;}
.y186{bottom:238.454590px;}
.y228{bottom:239.625000px;}
.y24b{bottom:240.750771px;}
.ya9{bottom:243.992516px;}
.y312{bottom:245.498982px;}
.y295{bottom:245.890492px;}
.y1e{bottom:247.067093px;}
.y17b{bottom:247.097516px;}
.y1f6{bottom:247.172516px;}
.y355{bottom:247.559539px;}
.y349{bottom:247.823516px;}
.y206{bottom:248.297516px;}
.y165{bottom:249.779234px;}
.yd1{bottom:250.172516px;}
.y1b4{bottom:252.027443px;}
.y4b{bottom:252.797516px;}
.y53{bottom:252.797539px;}
.y109{bottom:252.797562px;}
.y86{bottom:253.202516px;}
.y111{bottom:253.527443px;}
.y24a{bottom:254.994771px;}
.y311{bottom:259.742982px;}
.y354{bottom:261.803539px;}
.ya8{bottom:261.992516px;}
.y348{bottom:262.067516px;}
.y294{bottom:264.124500px;}
.y1d{bottom:265.067093px;}
.y17a{bottom:265.097516px;}
.y1f5{bottom:265.172516px;}
.y205{bottom:266.297516px;}
.y164{bottom:267.081359px;}
.yd0{bottom:268.172516px;}
.ye6{bottom:268.547516px;}
.y4a{bottom:270.797516px;}
.y52{bottom:270.797539px;}
.y108{bottom:270.797562px;}
.y85{bottom:271.202516px;}
.y110{bottom:271.527443px;}
.y249{bottom:273.138771px;}
.y310{bottom:273.986982px;}
.y227{bottom:275.625000px;}
.y347{bottom:276.311516px;}
.ya7{bottom:279.992516px;}
.y293{bottom:282.450473px;}
.y179{bottom:283.097516px;}
.y1f4{bottom:283.172516px;}
.y204{bottom:284.297516px;}
.y163{bottom:284.383484px;}
.ycf{bottom:286.172516px;}
.ye5{bottom:286.547516px;}
.y248{bottom:287.382771px;}
.y30f{bottom:288.230982px;}
.y49{bottom:288.797516px;}
.y10f{bottom:288.797539px;}
.y107{bottom:288.797562px;}
.y84{bottom:289.202516px;}
.y346{bottom:290.555516px;}
.y5e{bottom:295.556396px;}
.y63{bottom:295.568379px;}
.ya6{bottom:297.992516px;}
.y292{bottom:300.594473px;}
.y1c{bottom:301.067093px;}
.y178{bottom:301.097516px;}
.y1f3{bottom:301.172516px;}
.y162{bottom:301.685609px;}
.y203{bottom:302.297516px;}
.y30e{bottom:302.474982px;}
.yce{bottom:304.172516px;}
.y68{bottom:304.568379px;}
.y345{bottom:304.799516px;}
.y247{bottom:305.526771px;}
.y1b3{bottom:306.027443px;}
.y48{bottom:306.797516px;}
.y51{bottom:306.797539px;}
.y106{bottom:306.797562px;}
.y83{bottom:307.202516px;}
.y2d0{bottom:312.157052px;}
.y2c8{bottom:312.169052px;}
.y2c0{bottom:312.181052px;}
.y2b8{bottom:312.193052px;}
.y2b0{bottom:312.205052px;}
.y2a8{bottom:312.217052px;}
.y2a0{bottom:312.229052px;}
.y298{bottom:312.241052px;}
.y296{bottom:312.253052px;}
.ya5{bottom:315.992516px;}
.y30d{bottom:316.718982px;}
.y291{bottom:318.738473px;}
.y161{bottom:318.987734px;}
.y11c{bottom:318.995499px;}
.y344{bottom:319.043516px;}
.y177{bottom:319.097516px;}
.y1f2{bottom:319.172516px;}
.y246{bottom:319.770771px;}
.y202{bottom:320.297516px;}
.ycd{bottom:322.172516px;}
.ye4{bottom:323.297516px;}
.y1b2{bottom:324.027443px;}
.y47{bottom:324.797516px;}
.y105{bottom:324.797562px;}
.y82{bottom:325.202516px;}
.y226{bottom:329.625000px;}
.y30c{bottom:330.962982px;}
.y343{bottom:333.287516px;}
.ya4{bottom:333.992516px;}
.y160{bottom:336.289859px;}
.y290{bottom:336.882473px;}
.y176{bottom:337.097516px;}
.y1f1{bottom:337.172516px;}
.y245{bottom:337.926771px;}
.y201{bottom:338.297516px;}
.ycc{bottom:340.172516px;}
.ye3{bottom:341.297516px;}
.y46{bottom:342.797516px;}
.y104{bottom:342.797562px;}
.y81{bottom:343.202516px;}
.y13c{bottom:344.352917px;}
.y30b{bottom:345.206982px;}
.y342{bottom:347.531516px;}
.y225{bottom:347.625000px;}
.ya3{bottom:351.992516px;}
.y244{bottom:352.170771px;}
.y15f{bottom:353.591984px;}
.y28f{bottom:355.026473px;}
.y1b{bottom:355.067093px;}
.y175{bottom:355.097516px;}
.y1f0{bottom:355.172516px;}
.y200{bottom:356.297516px;}
.ycb{bottom:358.172516px;}
.y13b{bottom:358.596917px;}
.ye2{bottom:359.297516px;}
.y30a{bottom:359.450982px;}
.y45{bottom:360.797516px;}
.y103{bottom:360.797562px;}
.y80{bottom:361.202516px;}
.y341{bottom:361.775516px;}
.y224{bottom:365.625000px;}
.ya2{bottom:369.992516px;}
.y1bf{bottom:370.007499px;}
.y243{bottom:370.326771px;}
.y15e{bottom:370.894109px;}
.y174{bottom:373.097516px;}
.y28e{bottom:373.170473px;}
.y1ef{bottom:373.172516px;}
.y309{bottom:373.694982px;}
.y340{bottom:376.019516px;}
.yca{bottom:376.172516px;}
.y13a{bottom:376.824917px;}
.ye1{bottom:377.297516px;}
.y26b{bottom:378.263499px;}
.y44{bottom:378.797516px;}
.y102{bottom:378.797562px;}
.y7f{bottom:379.202516px;}
.y223{bottom:383.625000px;}
.y1be{bottom:384.251499px;}
.y242{bottom:384.570771px;}
.y308{bottom:387.938982px;}
.ya1{bottom:387.992516px;}
.y15d{bottom:388.196234px;}
.y33f{bottom:390.263516px;}
.y173{bottom:391.097516px;}
.y1ee{bottom:391.172516px;}
.y28d{bottom:391.314473px;}
.y1a{bottom:391.817093px;}
.y1ff{bottom:392.297516px;}
.y26a{bottom:392.507499px;}
.yc9{bottom:394.172516px;}
.y139{bottom:394.968917px;}
.ye0{bottom:395.297516px;}
.y43{bottom:396.797516px;}
.y101{bottom:396.797562px;}
.y7e{bottom:397.202516px;}
.y2d8{bottom:398.113045px;}
.y2d1{bottom:398.125052px;}
.y2c9{bottom:398.137052px;}
.y2c1{bottom:398.149052px;}
.y2b9{bottom:398.161052px;}
.y2b1{bottom:398.173052px;}
.y2a9{bottom:398.185052px;}
.y2a1{bottom:398.197052px;}
.y299{bottom:398.209052px;}
.y1bd{bottom:398.495499px;}
.y222{bottom:401.625000px;}
.y307{bottom:402.182982px;}
.y241{bottom:402.714771px;}
.y33e{bottom:404.507516px;}
.y15c{bottom:405.498359px;}
.ya0{bottom:405.992516px;}
.y269{bottom:406.751499px;}
.y172{bottom:409.097516px;}
.y1ed{bottom:409.172516px;}
.y138{bottom:409.212917px;}
.y28c{bottom:409.458473px;}
.y19{bottom:409.817093px;}
.yc8{bottom:412.172516px;}
.ydf{bottom:413.297516px;}
.y42{bottom:414.797516px;}
.y100{bottom:414.797562px;}
.y7d{bottom:415.202516px;}
.y306{bottom:416.426982px;}
.y240{bottom:416.958771px;}
.y33d{bottom:418.751516px;}
.y221{bottom:419.625000px;}
.y268{bottom:420.995499px;}
.y15b{bottom:422.800484px;}
.y9f{bottom:423.992516px;}
.y1d8{bottom:424.432812px;}
.y171{bottom:427.097516px;}
.y1ec{bottom:427.172516px;}
.y137{bottom:427.356917px;}
.y28b{bottom:427.602473px;}
.yc7{bottom:430.172516px;}
.y305{bottom:430.670982px;}
.yde{bottom:431.297516px;}
.y41{bottom:432.797516px;}
.yff{bottom:432.797562px;}
.y33c{bottom:432.995516px;}
.y7c{bottom:433.202516px;}
.y23f{bottom:435.102771px;}
.y220{bottom:437.625000px;}
.y15a{bottom:440.102609px;}
.y9e{bottom:441.992516px;}
.y1d7{bottom:442.666822px;}
.y304{bottom:444.914982px;}
.y170{bottom:445.097516px;}
.y1eb{bottom:445.172516px;}
.y136{bottom:445.500917px;}
.y284{bottom:445.540478px;}
.y28a{bottom:445.746473px;}
.y18{bottom:446.567093px;}
.y33b{bottom:447.239516px;}
.yc6{bottom:448.172516px;}
.ydd{bottom:449.297516px;}
.y23e{bottom:449.346771px;}
.y40{bottom:450.797516px;}
.yfe{bottom:450.797562px;}
.y7b{bottom:451.202516px;}
.y21f{bottom:455.625000px;}
.y159{bottom:457.404734px;}
.y303{bottom:459.158982px;}
.y135{bottom:459.744917px;}
.y9d{bottom:459.992516px;}
.y1d6{bottom:460.926771px;}
.y33a{bottom:461.483516px;}
.y16f{bottom:463.097516px;}
.y1ea{bottom:463.172516px;}
.y283{bottom:463.774488px;}
.y289{bottom:463.890473px;}
.y17{bottom:464.567093px;}
.yc5{bottom:466.172516px;}
.ydc{bottom:467.297516px;}
.y23d{bottom:467.490771px;}
.y3f{bottom:468.797516px;}
.yfd{bottom:468.797562px;}
.y7a{bottom:469.202516px;}
.y302{bottom:473.402982px;}
.y21e{bottom:473.625000px;}
.y158{bottom:474.706859px;}
.y339{bottom:475.727516px;}
.y134{bottom:477.888917px;}
.y9c{bottom:477.992516px;}
.y1d5{bottom:479.070771px;}
.y16e{bottom:481.097516px;}
.y1e9{bottom:481.172516px;}
.y23c{bottom:481.734771px;}
.y282{bottom:482.034473px;}
.y16{bottom:482.567093px;}
.y2df{bottom:484.081027px;}
.y2d9{bottom:484.081045px;}
.y2d2{bottom:484.093052px;}
.y2ca{bottom:484.105052px;}
.y2c2{bottom:484.117052px;}
.y2ba{bottom:484.129052px;}
.y2b2{bottom:484.141052px;}
.y2aa{bottom:484.153052px;}
.y2a2{bottom:484.165052px;}
.yc4{bottom:484.172516px;}
.y29a{bottom:484.177052px;}
.ydb{bottom:485.297516px;}
.y3e{bottom:486.797516px;}
.yfc{bottom:486.797562px;}
.y79{bottom:487.202516px;}
.y301{bottom:487.646982px;}
.y338{bottom:489.971516px;}
.y21d{bottom:491.625000px;}
.y157{bottom:492.008984px;}
.y9b{bottom:495.992516px;}
.y133{bottom:496.032917px;}
.y1d4{bottom:497.214771px;}
.y16d{bottom:499.097516px;}
.y1e8{bottom:499.172516px;}
.y23b{bottom:499.890771px;}
.y281{bottom:500.178473px;}
.y5f{bottom:500.564392px;}
.y15{bottom:500.567093px;}
.y64{bottom:500.576374px;}
.y300{bottom:501.890982px;}
.yc3{bottom:502.172516px;}
.yda{bottom:503.297516px;}
.y337{bottom:504.215516px;}
.y3d{bottom:504.797516px;}
.yfb{bottom:504.797562px;}
.y78{bottom:505.202516px;}
.y156{bottom:509.311109px;}
.y65{bottom:509.576374px;}
.y21c{bottom:509.625000px;}
.y132{bottom:510.276917px;}
.y9a{bottom:513.992516px;}
.y23a{bottom:514.134771px;}
.y1d3{bottom:515.358771px;}
.y2ff{bottom:516.134982px;}
.y16c{bottom:517.097516px;}
.y1e7{bottom:517.172516px;}
.y280{bottom:518.322473px;}
.y336{bottom:518.459516px;}
.y14{bottom:518.567093px;}
.yc2{bottom:520.172516px;}
.yd9{bottom:521.297516px;}
.y3c{bottom:522.797516px;}
.yfa{bottom:522.797562px;}
.y77{bottom:523.202516px;}
.y155{bottom:526.613234px;}
.y21b{bottom:527.625000px;}
.y131{bottom:528.420917px;}
.y2fe{bottom:530.378982px;}
.y99{bottom:531.992516px;}
.y239{bottom:532.290771px;}
.y335{bottom:532.703516px;}
.y1d2{bottom:533.502771px;}
.y16b{bottom:535.097516px;}
.y1e6{bottom:535.172516px;}
.y27f{bottom:536.466473px;}
.y267{bottom:536.552707px;}
.y13{bottom:536.567093px;}
.yc1{bottom:538.172516px;}
.y3b{bottom:540.797516px;}
.yf9{bottom:540.797562px;}
.y76{bottom:541.202516px;}
.y130{bottom:542.664917px;}
.y154{bottom:543.915359px;}
.y2fd{bottom:544.622982px;}
.y21a{bottom:545.625000px;}
.y238{bottom:546.534771px;}
.y334{bottom:546.947516px;}
.y98{bottom:549.992516px;}
.y266{bottom:550.796707px;}
.y1d1{bottom:551.646771px;}
.y1e5{bottom:553.172516px;}
.y12{bottom:554.567093px;}
.y27e{bottom:554.610473px;}
.yd8{bottom:558.047516px;}
.y3a{bottom:558.797516px;}
.yf8{bottom:558.797562px;}
.y2fc{bottom:558.866982px;}
.y75{bottom:559.202516px;}
.y12f{bottom:560.808917px;}
.y333{bottom:561.191516px;}
.y153{bottom:561.217484px;}
.y185{bottom:562.097992px;}
.y219{bottom:563.625000px;}
.y237{bottom:564.678771px;}
.y265{bottom:565.040707px;}
.y97{bottom:567.992516px;}
.y1d0{bottom:569.790771px;}
.y2e0{bottom:570.049027px;}
.y2da{bottom:570.049045px;}
.y2d3{bottom:570.061052px;}
.y2cb{bottom:570.073052px;}
.y2c3{bottom:570.085052px;}
.y2bb{bottom:570.097052px;}
.y2b3{bottom:570.109052px;}
.y2ab{bottom:570.121052px;}
.y2a3{bottom:570.133052px;}
.y29b{bottom:570.145052px;}
.y11{bottom:572.567093px;}
.y27d{bottom:572.754473px;}
.y2fb{bottom:573.110982px;}
.yc0{bottom:574.922516px;}
.y332{bottom:575.435516px;}
.y39{bottom:576.797516px;}
.yf7{bottom:576.797562px;}
.y74{bottom:577.202516px;}
.y152{bottom:578.519609px;}
.y236{bottom:578.922771px;}
.y12e{bottom:578.952917px;}
.y264{bottom:579.284707px;}
.y218{bottom:581.625000px;}
.y19a{bottom:585.119980px;}
.y96{bottom:585.992516px;}
.y2fa{bottom:587.354982px;}
.y1cf{bottom:587.934771px;}
.y1e4{bottom:589.172516px;}
.y331{bottom:589.679516px;}
.y10{bottom:590.567093px;}
.y27c{bottom:590.898473px;}
.ybf{bottom:592.922516px;}
.y12d{bottom:593.196917px;}
.y263{bottom:593.528707px;}
.y38{bottom:594.797516px;}
.yf6{bottom:594.797562px;}
.y73{bottom:595.202516px;}
.y151{bottom:595.821734px;}
.y235{bottom:597.066771px;}
.y217{bottom:599.625000px;}
.y2f9{bottom:601.598982px;}
.y330{bottom:603.923516px;}
.y95{bottom:603.992516px;}
.y1ce{bottom:606.078771px;}
.y198{bottom:607.543808px;}
.yf{bottom:608.567093px;}
.y27b{bottom:609.042473px;}
.y234{bottom:611.310771px;}
.y12c{bottom:611.340917px;}
.y37{bottom:612.797516px;}
.yf5{bottom:612.797562px;}
.y150{bottom:613.123859px;}
.y72{bottom:613.202516px;}
.y2f8{bottom:615.842982px;}
.y216{bottom:617.625000px;}
.y32f{bottom:618.167516px;}
.y262{bottom:620.012707px;}
.y94{bottom:621.992516px;}
.y1cd{bottom:624.222771px;}
.ye{bottom:626.567093px;}
.y27a{bottom:627.186473px;}
.y233{bottom:629.454771px;}
.y12b{bottom:629.484917px;}
.ybe{bottom:629.672516px;}
.y196{bottom:629.953629px;}
.y2f7{bottom:630.086982px;}
.y14f{bottom:630.425984px;}
.y36{bottom:630.797516px;}
.yf4{bottom:630.797562px;}
.y71{bottom:631.202516px;}
.y32e{bottom:632.411516px;}
.y215{bottom:635.625000px;}
.y261{bottom:638.246533px;}
.y93{bottom:639.992516px;}
.y1cc{bottom:642.366771px;}
.y232{bottom:643.698771px;}
.y12a{bottom:643.728917px;}
.y2f6{bottom:644.330982px;}
.yd{bottom:644.567093px;}
.y279{bottom:645.330473px;}
.y32d{bottom:646.655516px;}
.ybd{bottom:647.672516px;}
.y14e{bottom:647.728109px;}
.y35{bottom:648.797516px;}
.yf3{bottom:648.797562px;}
.y70{bottom:649.202516px;}
.y214{bottom:653.625000px;}
.y194{bottom:653.970016px;}
.y260{bottom:656.452909px;}
.y92{bottom:657.992516px;}
.y2f5{bottom:658.574982px;}
.y1cb{bottom:660.510771px;}
.y32c{bottom:660.899516px;}
.y231{bottom:661.842771px;}
.y129{bottom:661.872917px;}
.y2e1{bottom:662.017027px;}
.y2e5{bottom:662.017044px;}
.y2db{bottom:662.017045px;}
.y2d4{bottom:662.029052px;}
.y2cc{bottom:662.041052px;}
.y2c4{bottom:662.053052px;}
.y2bc{bottom:662.065052px;}
.y2b4{bottom:662.077052px;}
.y2ac{bottom:662.089052px;}
.y2a4{bottom:662.101052px;}
.y29c{bottom:662.113052px;}
.yc{bottom:662.567093px;}
.y278{bottom:663.474473px;}
.y14d{bottom:665.030234px;}
.ybc{bottom:665.672516px;}
.y34{bottom:666.797516px;}
.yf2{bottom:666.797562px;}
.y6f{bottom:667.202516px;}
.y213{bottom:671.625000px;}
.y25f{bottom:674.596909px;}
.y32b{bottom:675.143516px;}
.y91{bottom:675.992516px;}
.y230{bottom:676.086771px;}
.y191{bottom:678.418808px;}
.y1ca{bottom:678.654771px;}
.y128{bottom:680.016917px;}
.yb{bottom:680.567093px;}
.y184{bottom:680.822507px;}
.y277{bottom:681.618473px;}
.y14c{bottom:682.332359px;}
.ybb{bottom:683.672516px;}
.y33{bottom:684.797516px;}
.yf1{bottom:684.797562px;}
.y32a{bottom:689.387516px;}
.y212{bottom:689.625000px;}
.y2f4{bottom:691.125000px;}
.y25e{bottom:692.740909px;}
.y22f{bottom:694.242771px;}
.y1c9{bottom:696.798771px;}
.y127{bottom:698.160917px;}
.y14b{bottom:699.634484px;}
.y276{bottom:699.762473px;}
.yba{bottom:701.672516px;}
.y32{bottom:702.797516px;}
.yf0{bottom:702.797562px;}
.y18f{bottom:702.867004px;}
.y6e{bottom:703.202516px;}
.y329{bottom:703.631516px;}
.y60{bottom:706.820389px;}
.y66{bottom:706.832371px;}
.y25d{bottom:706.984909px;}
.y211{bottom:707.625000px;}
.y22e{bottom:708.486771px;}
.y90{bottom:711.992516px;}
.y1c8{bottom:714.942771px;}
.y67{bottom:715.832371px;}
.y126{bottom:716.304917px;}
.y14a{bottom:716.936609px;}
.y328{bottom:717.875516px;}
.y275{bottom:717.906473px;}
.yb9{bottom:719.672516px;}
.y31{bottom:720.797516px;}
.yef{bottom:720.797562px;}
.y25c{bottom:725.128909px;}
.y210{bottom:725.625000px;}
.y22d{bottom:726.642771px;}
.y18d{bottom:727.315200px;}
.ya{bottom:729.059696px;}
.y327{bottom:732.119516px;}
.y1c7{bottom:733.086771px;}
.y149{bottom:734.238734px;}
.y125{bottom:734.448917px;}
.y274{bottom:736.050473px;}
.yb8{bottom:737.672516px;}
.y30{bottom:738.797516px;}
.yee{bottom:738.797562px;}
.y25b{bottom:739.372909px;}
.y22c{bottom:740.886771px;}
.y9{bottom:743.303696px;}
.y326{bottom:746.363516px;}
.y1c6{bottom:751.230771px;}
.y148{bottom:751.540859px;}
.y18b{bottom:751.763992px;}
.y124{bottom:752.592917px;}
.y2e2{bottom:753.985027px;}
.y2e6{bottom:753.985044px;}
.y2dc{bottom:753.985045px;}
.y2d5{bottom:753.997052px;}
.y2cd{bottom:754.009052px;}
.y2c5{bottom:754.021052px;}
.y2bd{bottom:754.033052px;}
.y2b5{bottom:754.045052px;}
.y2ad{bottom:754.057052px;}
.y2a5{bottom:754.069052px;}
.y29d{bottom:754.081052px;}
.y2e8{bottom:754.093040px;}
.y273{bottom:754.194473px;}
.yb7{bottom:755.672516px;}
.y2f{bottom:756.797516px;}
.yed{bottom:756.797562px;}
.y25a{bottom:757.516909px;}
.y22b{bottom:759.030771px;}
.y2f3{bottom:759.839516px;}
.y325{bottom:760.607516px;}
.y20f{bottom:761.625000px;}
.y147{bottom:768.842984px;}
.y1c5{bottom:769.374771px;}
.y123{bottom:770.736917px;}
.y259{bottom:771.760909px;}
.y272{bottom:772.338473px;}
.y22a{bottom:773.274771px;}
.yb6{bottom:773.672516px;}
.y2f2{bottom:774.083516px;}
.y2e{bottom:774.797516px;}
.y324{bottom:774.851516px;}
.y189{bottom:776.198730px;}
.y8{bottom:781.152191px;}
.y122{bottom:784.980917px;}
.y146{bottom:786.145109px;}
.y1c4{bottom:787.518771px;}
.y2f1{bottom:788.327516px;}
.y323{bottom:789.095516px;}
.y258{bottom:789.904909px;}
.y271{bottom:790.482473px;}
.y229{bottom:791.418771px;}
.yb5{bottom:791.672516px;}
.y2d{bottom:792.797516px;}
.y188{bottom:796.799561px;}
.y187{bottom:800.552582px;}
.y2f0{bottom:802.571516px;}
.y121{bottom:803.124917px;}
.y322{bottom:803.339516px;}
.y145{bottom:803.447234px;}
.y257{bottom:804.148909px;}
.y1c3{bottom:805.662771px;}
.y270{bottom:808.626473px;}
.yb4{bottom:809.672516px;}
.y2c{bottom:810.797516px;}
.y2ef{bottom:816.815516px;}
.y321{bottom:817.583516px;}
.y144{bottom:820.749359px;}
.y120{bottom:821.268917px;}
.y7{bottom:823.895529px;}
.y26f{bottom:826.770473px;}
.yb3{bottom:827.672516px;}
.y2b{bottom:828.797516px;}
.y2ee{bottom:831.059516px;}
.y256{bottom:831.724909px;}
.y320{bottom:831.827516px;}
.y1c2{bottom:833.670771px;}
.y11f{bottom:835.512917px;}
.y143{bottom:838.051484px;}
.y2ed{bottom:845.303516px;}
.yb2{bottom:845.672516px;}
.y2e3{bottom:845.953027px;}
.y2e7{bottom:845.953044px;}
.y2dd{bottom:845.953045px;}
.y2d6{bottom:845.965052px;}
.y2ce{bottom:845.977052px;}
.y2c6{bottom:845.989052px;}
.y2be{bottom:846.001052px;}
.y2b6{bottom:846.013052px;}
.y2ae{bottom:846.025052px;}
.y2a6{bottom:846.037052px;}
.y29e{bottom:846.049052px;}
.y2e9{bottom:846.061040px;}
.y31f{bottom:846.071516px;}
.y6{bottom:846.398529px;}
.y2a{bottom:846.797516px;}
.y11e{bottom:853.656917px;}
.y26e{bottom:854.778473px;}
.y142{bottom:855.353609px;}
.y255{bottom:855.568909px;}
.y1c1{bottom:857.514771px;}
.y2ec{bottom:859.547516px;}
.y31e{bottom:860.315516px;}
.yb1{bottom:863.672516px;}
.y29{bottom:864.797516px;}
.y2eb{bottom:873.791516px;}
.y31d{bottom:874.559516px;}
.y26d{bottom:878.622473px;}
.y254{bottom:879.718781px;}
.y1c0{bottom:881.664734px;}
.y11d{bottom:881.664917px;}
.y141{bottom:882.508484px;}
.y28{bottom:882.797516px;}
.y31c{bottom:888.803516px;}
.y26c{bottom:897.222473px;}
.yb0{bottom:899.672516px;}
.y5{bottom:899.785217px;}
.y27{bottom:900.797516px;}
.y11b{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y2{bottom:940.111084px;}
.h18{height:3.960990px;}
.h1d{height:12.300000px;}
.hc{height:32.289600px;}
.h14{height:32.828204px;}
.h16{height:33.796779px;}
.h2{height:33.840000px;}
.h1f{height:39.506389px;}
.h1e{height:39.506431px;}
.h15{height:40.090018px;}
.h1a{height:40.362000px;}
.h13{height:40.990243px;}
.h11{height:41.803500px;}
.h3{height:42.048000px;}
.hb{height:46.128000px;}
.h5{height:46.704000px;}
.h27{height:49.011000px;}
.he{height:49.104000px;}
.h26{height:50.433765px;}
.h24{height:50.761694px;}
.h1b{height:51.025694px;}
.h22{height:51.025731px;}
.h20{height:51.240722px;}
.h1c{height:51.465454px;}
.h23{height:51.465637px;}
.h25{height:51.465642px;}
.h21{height:51.466186px;}
.h19{height:51.912973px;}
.h17{height:51.972988px;}
.hf{height:53.640000px;}
.h4{height:54.862258px;}
.h9{height:57.660000px;}
.h8{height:59.340000px;}
.h10{height:61.380000px;}
.hd{height:64.362000px;}
.h7{height:64.866000px;}
.ha{height:65.274000px;}
.h6{height:69.108000px;}
.h12{height:248.700005px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w4{width:10.830000px;}
.w3{width:10.831500px;}
.w2{width:279.855011px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x6d{left:1.764450px;}
.x2{left:76.535402px;}
.x6{left:78.746400px;}
.x4{left:80.907303px;}
.x8{left:85.535402px;}
.x7{left:93.545402px;}
.x5{left:97.799400px;}
.x84{left:102.047402px;}
.x9{left:106.918200px;}
.x25{left:108.864155px;}
.x6c{left:118.746002px;}
.xa{left:121.162200px;}
.x26{left:123.108155px;}
.x6e{left:129.576450px;}
.xb{left:135.406200px;}
.x27{left:137.352155px;}
.x5a{left:140.606838px;}
.x5e{left:142.246799px;}
.x75{left:145.006350px;}
.x82{left:146.952155px;}
.x58{left:154.403996px;}
.xc{left:157.906200px;}
.x28{left:159.432155px;}
.x3b{left:164.928155px;}
.x5f{left:169.126799px;}
.xd{left:172.150200px;}
.x29{left:173.676155px;}
.x3c{left:179.172155px;}
.xe{left:186.394200px;}
.x2a{left:187.920155px;}
.x4d{left:189.600002px;}
.x3d{left:193.416155px;}
.x54{left:199.149147px;}
.xf{left:200.638200px;}
.x2b{left:202.152155px;}
.x60{left:203.167799px;}
.x52{left:204.778358px;}
.x3e{left:207.660155px;}
.x10{left:214.882200px;}
.x2c{left:216.396155px;}
.x61{left:220.188299px;}
.x3f{left:221.880155px;}
.x56{left:227.735859px;}
.x11{left:229.102200px;}
.x2d{left:230.640155px;}
.x50{left:234.033005px;}
.x40{left:236.124155px;}
.x62{left:237.208799px;}
.x4b{left:238.931402px;}
.x12{left:243.346200px;}
.x2e{left:244.884155px;}
.x41{left:250.368155px;}
.x76{left:252.034350px;}
.x63{left:254.229299px;}
.x53{left:256.429939px;}
.x13{left:257.590200px;}
.x2f{left:259.128155px;}
.x42{left:264.612155px;}
.x77{left:270.178350px;}
.x14{left:271.834200px;}
.x30{left:273.324158px;}
.x43{left:278.856155px;}
.x78{left:284.422350px;}
.x15{left:286.078200px;}
.x31{left:287.568158px;}
.x44{left:293.100155px;}
.x16{left:300.322200px;}
.x32{left:301.812158px;}
.x83{left:304.080155px;}
.x64{left:305.290799px;}
.x45{left:307.344155px;}
.x6b{left:311.583893px;}
.x17{left:314.506200px;}
.x33{left:316.056158px;}
.x71{left:317.461510px;}
.x59{left:319.933640px;}
.x46{left:321.588155px;}
.x18{left:328.750200px;}
.x34{left:330.300158px;}
.x57{left:333.730797px;}
.x47{left:335.832155px;}
.x65{left:339.331799px;}
.x19{left:342.994200px;}
.x35{left:344.544158px;}
.x48{left:350.004155px;}
.x51{left:355.789055px;}
.x1a{left:357.238200px;}
.x36{left:358.788158px;}
.x6f{left:367.001999px;}
.x1b{left:371.482200px;}
.x37{left:373.032158px;}
.x49{left:376.416158px;}
.x70{left:377.830948px;}
.x79{left:381.598350px;}
.x1c{left:385.726200px;}
.x38{left:387.276158px;}
.x4a{left:390.660158px;}
.x4e{left:396.451950px;}
.x1d{left:399.874200px;}
.x39{left:401.520158px;}
.x55{left:407.062637px;}
.x1e{left:414.118200px;}
.x3a{left:415.764158px;}
.x4f{left:418.294510px;}
.x72{left:419.989514px;}
.x66{left:424.434299px;}
.x1f{left:428.362200px;}
.x7a{left:432.142350px;}
.x67{left:441.454799px;}
.x20{left:442.606200px;}
.x7b{left:446.386350px;}
.x21{left:456.850200px;}
.x68{left:458.475299px;}
.x7c{left:464.530350px;}
.x74{left:468.562042px;}
.x22{left:471.094200px;}
.x69{left:475.495799px;}
.x7d{left:478.774350px;}
.x1{left:485.858414px;}
.x6a{left:492.600299px;}
.x7e{left:496.918350px;}
.x23{left:499.582200px;}
.x7f{left:511.162350px;}
.x24{left:513.826200px;}
.x73{left:516.349586px;}
.x5b{left:517.352829px;}
.x3{left:521.631592px;}
.x80{left:529.390350px;}
.x5c{left:531.596829px;}
.x81{left:543.634350px;}
.x5d{left:545.840829px;}
.x4c{left:565.025431px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v4{vertical-align:-13.295575pt;}
.v8{vertical-align:-0.938585pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.344076pt;}
.v7{vertical-align:14.926961pt;}
.v6{vertical-align:16.654306pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:42.677332pt;}
.ls17{letter-spacing:-1.760440pt;}
.ls8{letter-spacing:-1.760000pt;}
.lsa{letter-spacing:-1.408000pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.597333pt;}
.lsb{letter-spacing:-0.580000pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.418133pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.004131pt;}
.ls21{letter-spacing:0.247850pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.597333pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls0{letter-spacing:2.986667pt;}
.ls1b{letter-spacing:6.234614pt;}
.ls1a{letter-spacing:6.234655pt;}
.ls1c{letter-spacing:6.234695pt;}
.lsf{letter-spacing:8.908893pt;}
.ls10{letter-spacing:11.789613pt;}
.lse{letter-spacing:11.842960pt;}
.ls6{letter-spacing:13.333322pt;}
.ls5{letter-spacing:13.333327pt;}
.ls4{letter-spacing:13.333333pt;}
.lsc{letter-spacing:14.495629pt;}
.ls14{letter-spacing:14.497338pt;}
.ls11{letter-spacing:14.545271pt;}
.lsd{letter-spacing:14.545353pt;}
.ls12{letter-spacing:14.545355pt;}
.ls27{letter-spacing:527.841650pt;}
.ls25{letter-spacing:566.967464pt;}
.ls19{letter-spacing:628.668229pt;}
.ls23{letter-spacing:649.566423pt;}
.ls26{letter-spacing:691.509375pt;}
.ls24{letter-spacing:730.635189pt;}
.ls18{letter-spacing:792.335974pt;}
.ls22{letter-spacing:813.234701pt;}
.ws3e{word-spacing:-13.333333pt;}
.wsa5{word-spacing:-12.586667pt;}
.wsaf{word-spacing:-11.850667pt;}
.wscc{word-spacing:-11.573333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.ws5d{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws60{word-spacing:-10.154667pt;}
.ws105{word-spacing:-10.080000pt;}
.ws153{word-spacing:-10.069333pt;}
.ws19{word-spacing:-9.333333pt;}
.wsd8{word-spacing:-9.258667pt;}
.ws1{word-spacing:-8.362667pt;}
.ws127{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.ws6{word-spacing:-7.466667pt;}
.ws14a{word-spacing:-7.048533pt;}
.ws5f{word-spacing:-5.333333pt;}
.ws1a{word-spacing:-1.680000pt;}
.ws7e{word-spacing:-1.333333pt;}
.wse9{word-spacing:-1.226667pt;}
.wsfe{word-spacing:-1.173333pt;}
.ws7f{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-0.853333pt;}
.ws10c{word-spacing:-0.800000pt;}
.ws14f{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.746667pt;}
.wsa6{word-spacing:-0.693333pt;}
.ws4a{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws49{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.480000pt;}
.ws14d{word-spacing:-0.469333pt;}
.ws8{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.320000pt;}
.wsae{word-spacing:-0.266667pt;}
.ws133{word-spacing:-0.256000pt;}
.wsab{word-spacing:-0.213333pt;}
.ws146{word-spacing:-0.170667pt;}
.wsa2{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.128000pt;}
.ws93{word-spacing:-0.106667pt;}
.wsde{word-spacing:-0.053347pt;}
.ws74{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws140{word-spacing:0.042667pt;}
.ws4c{word-spacing:0.053333pt;}
.ws134{word-spacing:0.085333pt;}
.ws10{word-spacing:0.106667pt;}
.ws126{word-spacing:0.128000pt;}
.ws91{word-spacing:0.160000pt;}
.wsb3{word-spacing:0.213333pt;}
.ws11e{word-spacing:0.256000pt;}
.ws9{word-spacing:0.266667pt;}
.ws9c{word-spacing:0.320000pt;}
.ws14c{word-spacing:0.341333pt;}
.ws68{word-spacing:0.373333pt;}
.ws12e{word-spacing:0.384000pt;}
.ws24{word-spacing:0.426667pt;}
.ws92{word-spacing:0.480000pt;}
.ws132{word-spacing:0.512000pt;}
.wse8{word-spacing:0.533333pt;}
.ws136{word-spacing:0.554667pt;}
.ws50{word-spacing:0.586667pt;}
.ws137{word-spacing:0.597333pt;}
.wsc2{word-spacing:0.640000pt;}
.wsc4{word-spacing:0.693333pt;}
.wsa4{word-spacing:0.746667pt;}
.ws39{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.853333pt;}
.ws135{word-spacing:0.896000pt;}
.ws97{word-spacing:0.906667pt;}
.ws6a{word-spacing:0.960000pt;}
.wscb{word-spacing:0.981333pt;}
.wsc3{word-spacing:1.013333pt;}
.ws100{word-spacing:1.024000pt;}
.ws9d{word-spacing:1.066667pt;}
.ws61{word-spacing:1.109333pt;}
.wsaa{word-spacing:1.120000pt;}
.ws25{word-spacing:1.173333pt;}
.ws131{word-spacing:1.194667pt;}
.wsc9{word-spacing:1.226667pt;}
.wsbf{word-spacing:1.280000pt;}
.ws13b{word-spacing:1.322667pt;}
.ws56{word-spacing:1.333333pt;}
.ws98{word-spacing:1.386667pt;}
.ws12d{word-spacing:1.408000pt;}
.wsce{word-spacing:1.440000pt;}
.wsf0{word-spacing:1.450667pt;}
.ws8f{word-spacing:1.493333pt;}
.ws158{word-spacing:1.496000pt;}
.wsa8{word-spacing:1.546667pt;}
.ws12a{word-spacing:1.578667pt;}
.ws38{word-spacing:1.600000pt;}
.ws142{word-spacing:1.621333pt;}
.ws99{word-spacing:1.653333pt;}
.wsf1{word-spacing:1.664000pt;}
.wsfc{word-spacing:1.706667pt;}
.wse1{word-spacing:1.707093pt;}
.ws11c{word-spacing:1.749333pt;}
.ws43{word-spacing:1.760000pt;}
.ws111{word-spacing:1.813333pt;}
.ws12b{word-spacing:1.834667pt;}
.ws9e{word-spacing:1.866667pt;}
.ws159{word-spacing:1.904000pt;}
.ws8e{word-spacing:1.920000pt;}
.ws3d{word-spacing:1.962667pt;}
.wsb{word-spacing:1.973333pt;}
.ws148{word-spacing:2.005333pt;}
.wsd7{word-spacing:2.026667pt;}
.ws141{word-spacing:2.048000pt;}
.ws16{word-spacing:2.080000pt;}
.ws139{word-spacing:2.090667pt;}
.wsb6{word-spacing:2.133333pt;}
.ws149{word-spacing:2.218667pt;}
.ws46{word-spacing:2.240000pt;}
.ws8c{word-spacing:2.293333pt;}
.ws31{word-spacing:2.346667pt;}
.ws101{word-spacing:2.389333pt;}
.ws70{word-spacing:2.400000pt;}
.wsc{word-spacing:2.453333pt;}
.ws147{word-spacing:2.474667pt;}
.ws6f{word-spacing:2.506667pt;}
.ws20{word-spacing:2.560000pt;}
.ws13c{word-spacing:2.602667pt;}
.wsb1{word-spacing:2.613333pt;}
.ws13f{word-spacing:2.645333pt;}
.ws7d{word-spacing:2.666667pt;}
.ws22{word-spacing:2.720000pt;}
.ws157{word-spacing:2.730667pt;}
.ws156{word-spacing:2.773333pt;}
.ws11d{word-spacing:2.816000pt;}
.ws2c{word-spacing:2.826667pt;}
.ws13e{word-spacing:2.858667pt;}
.ws1d{word-spacing:2.880000pt;}
.ws12c{word-spacing:2.901333pt;}
.ws57{word-spacing:2.933333pt;}
.ws6d{word-spacing:2.986667pt;}
.ws21{word-spacing:3.040000pt;}
.ws4e{word-spacing:3.093333pt;}
.ws13a{word-spacing:3.114667pt;}
.ws51{word-spacing:3.146667pt;}
.ws145{word-spacing:3.157333pt;}
.wsb9{word-spacing:3.200000pt;}
.ws11{word-spacing:3.253333pt;}
.ws95{word-spacing:3.306667pt;}
.ws3a{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.413333pt;}
.ws14b{word-spacing:3.456000pt;}
.ws53{word-spacing:3.466667pt;}
.wsb5{word-spacing:3.520000pt;}
.ws5b{word-spacing:3.573333pt;}
.ws128{word-spacing:3.584000pt;}
.ws36{word-spacing:3.626667pt;}
.ws119{word-spacing:3.669333pt;}
.wsff{word-spacing:3.712000pt;}
.ws8d{word-spacing:3.733333pt;}
.ws138{word-spacing:3.754667pt;}
.ws5a{word-spacing:3.786667pt;}
.wsc0{word-spacing:3.840000pt;}
.ws83{word-spacing:3.893333pt;}
.ws15{word-spacing:3.946667pt;}
.ws109{word-spacing:4.000000pt;}
.ws2d{word-spacing:4.053333pt;}
.ws76{word-spacing:4.106667pt;}
.ws7c{word-spacing:4.160000pt;}
.ws12f{word-spacing:4.181333pt;}
.ws55{word-spacing:4.213333pt;}
.ws6c{word-spacing:4.266667pt;}
.ws7a{word-spacing:4.320000pt;}
.ws27{word-spacing:4.373333pt;}
.ws121{word-spacing:4.394667pt;}
.ws41{word-spacing:4.426667pt;}
.wsfa{word-spacing:4.480000pt;}
.ws143{word-spacing:4.522667pt;}
.ws9a{word-spacing:4.533333pt;}
.wsbe{word-spacing:4.586667pt;}
.ws37{word-spacing:4.640000pt;}
.ws129{word-spacing:4.693333pt;}
.ws118{word-spacing:4.736000pt;}
.ws1e{word-spacing:4.746667pt;}
.ws65{word-spacing:4.800000pt;}
.ws77{word-spacing:4.853333pt;}
.ws86{word-spacing:4.906667pt;}
.ws32{word-spacing:4.960000pt;}
.ws79{word-spacing:5.013333pt;}
.ws34{word-spacing:5.066667pt;}
.ws23{word-spacing:5.120000pt;}
.ws144{word-spacing:5.162667pt;}
.ws67{word-spacing:5.173333pt;}
.ws52{word-spacing:5.226667pt;}
.ws30{word-spacing:5.280000pt;}
.wsd2{word-spacing:5.333333pt;}
.wseb{word-spacing:5.386667pt;}
.wsa0{word-spacing:5.440000pt;}
.wsa7{word-spacing:5.493333pt;}
.ws130{word-spacing:5.504000pt;}
.ws5c{word-spacing:5.546667pt;}
.wsad{word-spacing:5.600000pt;}
.ws85{word-spacing:5.653333pt;}
.wscd{word-spacing:5.760000pt;}
.wsf7{word-spacing:5.802667pt;}
.wsac{word-spacing:5.813333pt;}
.ws45{word-spacing:5.866667pt;}
.ws47{word-spacing:5.920000pt;}
.wsf9{word-spacing:5.973333pt;}
.ws44{word-spacing:6.026667pt;}
.wsc7{word-spacing:6.080000pt;}
.wsa3{word-spacing:6.133333pt;}
.ws12{word-spacing:6.186667pt;}
.ws151{word-spacing:6.229333pt;}
.wscf{word-spacing:6.240000pt;}
.wsa9{word-spacing:6.293333pt;}
.ws80{word-spacing:6.346667pt;}
.ws40{word-spacing:6.400000pt;}
.wse7{word-spacing:6.453333pt;}
.ws73{word-spacing:6.506667pt;}
.ws8a{word-spacing:6.560000pt;}
.wsf{word-spacing:6.613333pt;}
.ws11a{word-spacing:6.656000pt;}
.ws72{word-spacing:6.666667pt;}
.wsea{word-spacing:6.720000pt;}
.ws2f{word-spacing:6.773333pt;}
.wsc8{word-spacing:6.826667pt;}
.wsca{word-spacing:6.880000pt;}
.ws4f{word-spacing:6.933333pt;}
.ws13d{word-spacing:6.954667pt;}
.ws96{word-spacing:6.986667pt;}
.ws26{word-spacing:7.040000pt;}
.wsbc{word-spacing:7.093333pt;}
.ws155{word-spacing:7.125333pt;}
.ws62{word-spacing:7.146667pt;}
.ws2b{word-spacing:7.200000pt;}
.ws1b{word-spacing:7.253333pt;}
.ws75{word-spacing:7.306667pt;}
.wsfb{word-spacing:7.360000pt;}
.ws48{word-spacing:7.413333pt;}
.ws3f{word-spacing:7.466667pt;}
.wsd{word-spacing:7.520000pt;}
.ws9f{word-spacing:7.573333pt;}
.ws59{word-spacing:7.626667pt;}
.ws71{word-spacing:7.680000pt;}
.ws1f{word-spacing:7.733333pt;}
.ws14e{word-spacing:7.808000pt;}
.wse{word-spacing:7.840000pt;}
.wsb2{word-spacing:7.893333pt;}
.ws63{word-spacing:8.000000pt;}
.wsd6{word-spacing:8.106667pt;}
.wsdc{word-spacing:8.149333pt;}
.wsd4{word-spacing:8.160000pt;}
.wsf8{word-spacing:8.213333pt;}
.ws89{word-spacing:8.266667pt;}
.ws29{word-spacing:8.320000pt;}
.ws4d{word-spacing:8.426667pt;}
.ws154{word-spacing:8.576000pt;}
.ws17{word-spacing:8.640000pt;}
.ws103{word-spacing:8.746667pt;}
.ws6b{word-spacing:8.800000pt;}
.wse2{word-spacing:8.802200pt;}
.wsdf{word-spacing:8.807535pt;}
.ws58{word-spacing:8.960000pt;}
.wsba{word-spacing:9.013333pt;}
.ws82{word-spacing:9.066667pt;}
.ws10a{word-spacing:9.173333pt;}
.ws33{word-spacing:9.226667pt;}
.ws42{word-spacing:9.280000pt;}
.ws54{word-spacing:9.333333pt;}
.ws64{word-spacing:9.386667pt;}
.wsf5{word-spacing:9.440000pt;}
.ws2e{word-spacing:9.493333pt;}
.wsc6{word-spacing:9.653333pt;}
.ws69{word-spacing:9.760000pt;}
.wsdd{word-spacing:9.813333pt;}
.ws10f{word-spacing:9.866667pt;}
.ws106{word-spacing:9.920000pt;}
.wse6{word-spacing:10.103858pt;}
.ws108{word-spacing:10.133333pt;}
.ws78{word-spacing:10.240000pt;}
.ws6e{word-spacing:10.293333pt;}
.ws13{word-spacing:10.346667pt;}
.wsbb{word-spacing:10.400000pt;}
.ws104{word-spacing:10.666667pt;}
.ws10b{word-spacing:10.773333pt;}
.wsb7{word-spacing:10.880000pt;}
.ws3c{word-spacing:10.933333pt;}
.wsc1{word-spacing:11.093333pt;}
.ws81{word-spacing:11.200000pt;}
.wsd3{word-spacing:11.253333pt;}
.ws110{word-spacing:11.306667pt;}
.ws35{word-spacing:11.466667pt;}
.ws28{word-spacing:11.520000pt;}
.ws8b{word-spacing:11.573333pt;}
.wsc5{word-spacing:11.626667pt;}
.ws122{word-spacing:11.776000pt;}
.wse3{word-spacing:11.789613pt;}
.wse0{word-spacing:11.842960pt;}
.ws107{word-spacing:11.893333pt;}
.wsb4{word-spacing:12.000000pt;}
.ws66{word-spacing:12.053333pt;}
.ws4b{word-spacing:12.213333pt;}
.ws150{word-spacing:12.288000pt;}
.wsbd{word-spacing:12.746667pt;}
.wsd1{word-spacing:13.280000pt;}
.ws102{word-spacing:14.186667pt;}
.ws10e{word-spacing:14.346667pt;}
.ws84{word-spacing:14.720000pt;}
.ws87{word-spacing:14.986667pt;}
.wsf6{word-spacing:15.200000pt;}
.ws94{word-spacing:15.253333pt;}
.wsd0{word-spacing:15.413333pt;}
.wsa1{word-spacing:15.466667pt;}
.ws90{word-spacing:15.733333pt;}
.wsfd{word-spacing:16.426667pt;}
.ws7b{word-spacing:16.960000pt;}
.ws14{word-spacing:17.482667pt;}
.ws152{word-spacing:17.536000pt;}
.ws10d{word-spacing:17.653333pt;}
.wse5{word-spacing:17.769774pt;}
.wse4{word-spacing:19.034089pt;}
.wsed{word-spacing:36.810667pt;}
.ws18{word-spacing:64.938667pt;}
.wsee{word-spacing:71.717333pt;}
.wsec{word-spacing:74.853333pt;}
.wsd9{word-spacing:159.693333pt;}
.ws116{word-spacing:161.920000pt;}
.wsda{word-spacing:180.070667pt;}
.ws117{word-spacing:236.586667pt;}
.ws123{word-spacing:245.248000pt;}
.ws112{word-spacing:282.837333pt;}
.ws114{word-spacing:311.253333pt;}
.wsf3{word-spacing:361.813314pt;}
.wsf4{word-spacing:415.146647pt;}
.wsd5{word-spacing:466.090667pt;}
.wsf2{word-spacing:482.730647pt;}
.ws120{word-spacing:499.072000pt;}
.ws11b{word-spacing:538.201600pt;}
.wsdb{word-spacing:583.209311pt;}
.ws11f{word-spacing:655.573333pt;}
.ws124{word-spacing:682.410667pt;}
.ws125{word-spacing:688.341333pt;}
.ws113{word-spacing:748.799986pt;}
.ws115{word-spacing:754.730652pt;}
.wsef{word-spacing:2758.896091pt;}
._ac{margin-left:-16.917333pt;}
._4{margin-left:-13.866667pt;}
._10{margin-left:-11.850667pt;}
._13{margin-left:-10.080000pt;}
._99{margin-left:-5.493353pt;}
._9{margin-left:-4.469333pt;}
._1{margin-left:-3.460267pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.397333pt;}
._c{width:2.816000pt;}
._a{width:4.154666pt;}
._e{width:5.076254pt;}
._14{width:6.298667pt;}
._15{width:7.376000pt;}
._d{width:8.703992pt;}
._18{width:9.685325pt;}
._b{width:11.013333pt;}
._82{width:12.180800pt;}
._11{width:13.179733pt;}
._f{width:15.194667pt;}
._12{width:16.586667pt;}
._17{width:17.482667pt;}
._5{width:19.840000pt;}
._81{width:26.666667pt;}
._16{width:29.333333pt;}
._1c{width:33.621333pt;}
._4f{width:36.250667pt;}
._bd{width:39.850667pt;}
._5c{width:46.144004pt;}
._7{width:50.005325pt;}
._53{width:54.581329pt;}
._54{width:56.037325pt;}
._6{width:64.938667pt;}
._4d{width:66.826667pt;}
._4b{width:68.282662pt;}
._a8{width:78.976000pt;}
._51{width:81.050667pt;}
._ba{width:83.285333pt;}
._4e{width:89.823991pt;}
._50{width:90.943993pt;}
._58{width:100.986667pt;}
._4c{width:102.853333pt;}
._5a{width:113.754671pt;}
._a5{width:122.410667pt;}
._59{width:126.186664pt;}
._91{width:133.162652pt;}
._78{width:140.671995pt;}
._72{width:144.170647pt;}
._33{width:148.131994pt;}
._35{width:150.954667pt;}
._26{width:155.946667pt;}
._93{width:161.578652pt;}
._6d{width:162.730647pt;}
._75{width:165.503980pt;}
._1e{width:166.784000pt;}
._37{width:170.404000pt;}
._52{width:178.640000pt;}
._b8{width:179.669333pt;}
._8f{width:182.271986pt;}
._6e{width:184.191976pt;}
._7d{width:186.837314pt;}
._48{width:187.733311pt;}
._39{width:189.273333pt;}
._31{width:190.201333pt;}
._36{width:191.622645pt;}
._98{width:193.920000pt;}
._1d{width:195.200000pt;}
._28{width:199.296000pt;}
._27{width:202.240000pt;}
._2d{width:203.530667pt;}
._6b{width:205.397314pt;}
._30{width:207.988000pt;}
._44{width:215.992000pt;}
._a3{width:218.794667pt;}
._8e{width:222.549319pt;}
._79{width:226.730647pt;}
._2f{width:229.486667pt;}
._34{width:235.325333pt;}
._9a{width:243.530673pt;}
._bc{width:244.864000pt;}
._9b{width:246.485333pt;}
._29{width:252.672000pt;}
._9e{width:262.229333pt;}
._21{width:269.354667pt;}
._77{width:270.271998pt;}
._8b{width:272.981319pt;}
._c2{width:278.442667pt;}
._74{width:280.490662pt;}
._a7{width:283.989333pt;}
._55{width:290.453333pt;}
._20{width:291.893333pt;}
._19{width:298.884267pt;}
._42{width:301.066645pt;}
._3a{width:310.783978pt;}
._83{width:314.837333pt;}
._be{width:319.018667pt;}
._87{width:321.493319pt;}
._2c{width:322.517333pt;}
._2b{width:323.797333pt;}
._38{width:337.986645pt;}
._45{width:341.426645pt;}
._86{width:343.253333pt;}
._43{width:344.366645pt;}
._4a{width:345.351978pt;}
._22{width:347.573333pt;}
._1a{width:358.698667pt;}
._85{width:362.367986pt;}
._92{width:366.591986pt;}
._2a{width:378.325333pt;}
._aa{width:380.682667pt;}
._1f{width:383.061333pt;}
._9d{width:384.554667pt;}
._b6{width:388.778667pt;}
._46{width:389.798645pt;}
._b4{width:391.722667pt;}
._b2{width:393.013333pt;}
._24{width:400.853333pt;}
._3d{width:404.917311pt;}
._c1{width:406.666667pt;}
._23{width:410.325333pt;}
._7c{width:419.839995pt;}
._a2{width:423.808000pt;}
._3c{width:425.347978pt;}
._9f{width:427.904000pt;}
._bb{width:432.725333pt;}
._95{width:440.746652pt;}
._7b{width:442.378662pt;}
._56{width:444.938653pt;}
._6c{width:446.250662pt;}
._1b{width:448.256000pt;}
._c0{width:450.517333pt;}
._49{width:453.095978pt;}
._25{width:454.442667pt;}
._ae{width:458.837333pt;}
._bf{width:459.989333pt;}
._94{width:463.285319pt;}
._84{width:467.157319pt;}
._a6{width:471.850667pt;}
._3e{width:475.807978pt;}
._8a{width:477.994652pt;}
._ad{width:481.376000pt;}
._73{width:485.503995pt;}
._6f{width:489.599995pt;}
._ab{width:499.114667pt;}
._47{width:503.671978pt;}
._8c{width:506.410652pt;}
._3b{width:507.963978pt;}
._88{width:510.506652pt;}
._b3{width:512.000000pt;}
._b1{width:513.280000pt;}
._2e{width:521.085570pt;}
._40{width:524.087978pt;}
._b9{width:525.440000pt;}
._3f{width:532.671978pt;}
._a9{width:543.232000pt;}
._57{width:546.485333pt;}
._7f{width:551.338662pt;}
._90{width:554.453319pt;}
._7e{width:560.810662pt;}
._a4{width:564.565333pt;}
._32{width:567.046645pt;}
._41{width:572.789311pt;}
._96{width:581.717319pt;}
._b0{width:590.336000pt;}
._af{width:599.808000pt;}
._7a{width:604.927995pt;}
._80{width:610.559995pt;}
._a1{width:611.669333pt;}
._76{width:626.261329pt;}
._c3{width:627.882667pt;}
._97{width:631.466652pt;}
._b5{width:637.738667pt;}
._b7{width:643.925333pt;}
._8d{width:647.167986pt;}
._71{width:673.365329pt;}
._9c{width:676.864000pt;}
._a0{width:683.050667pt;}
._5b{width:692.869333pt;}
._89{width:694.271986pt;}
._6a{width:738.559995pt;}
._70{width:744.746662pt;}
._c5{width:749.994602pt;}
._5d{width:839.253333pt;}
._c4{width:886.442644pt;}
._5e{width:1030.400000pt;}
._5f{width:1176.784000pt;}
._60{width:1304.501397pt;}
._c6{width:1405.098667pt;}
._61{width:1450.885308pt;}
._8{width:1468.074667pt;}
._c7{width:1544.234727pt;}
._62{width:1552.432000pt;}
._c8{width:1666.218626pt;}
._63{width:1698.815932pt;}
._64{width:1845.199985pt;}
._65{width:2036.346612pt;}
._66{width:2182.730667pt;}
._cb{width:2272.384000pt;}
._67{width:2284.314667pt;}
._ca{width:2294.922667pt;}
._cd{width:2403.882667pt;}
._cc{width:2413.354667pt;}
._68{width:2430.661431pt;}
._c9{width:2457.472000pt;}
._69{width:2621.845229pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.342400pt;}
.fs7{font-size:38.666667pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.346664pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:0.539010pt;}
.y1dd{bottom:2.173330pt;}
.y1e3{bottom:2.173334pt;}
.y19b{bottom:20.463989pt;}
.y199{bottom:40.396281pt;}
.y26{bottom:44.111465pt;}
.y4{bottom:44.112000pt;}
.y1{bottom:45.118398pt;}
.y197{bottom:60.316121pt;}
.y1e2{bottom:77.815999pt;}
.y2e4{bottom:79.894246pt;}
.y2de{bottom:79.894263pt;}
.y2d7{bottom:79.904935pt;}
.y2cf{bottom:79.915602pt;}
.y2c7{bottom:79.926268pt;}
.y2bf{bottom:79.936935pt;}
.y2b7{bottom:79.947602pt;}
.y2af{bottom:79.958268pt;}
.y2a7{bottom:79.968935pt;}
.y29f{bottom:79.979602pt;}
.y2ea{bottom:79.990258pt;}
.y297{bottom:79.990268pt;}
.y5d{bottom:80.000000pt;}
.y19d{bottom:80.000006pt;}
.y25{bottom:80.005333pt;}
.y61{bottom:80.007457pt;}
.y69{bottom:80.018108pt;}
.y1bc{bottom:80.024394pt;}
.y19f{bottom:80.046153pt;}
.y1a0{bottom:80.092790pt;}
.y1a1{bottom:80.139475pt;}
.y1a2{bottom:80.186113pt;}
.y1a3{bottom:80.232797pt;}
.y1a4{bottom:80.270106pt;}
.y1a5{bottom:80.307410pt;}
.y1a6{bottom:80.344764pt;}
.y1a7{bottom:80.372738pt;}
.y1a8{bottom:80.400760pt;}
.y1a9{bottom:80.428751pt;}
.y1aa{bottom:80.456767pt;}
.y1ab{bottom:80.475406pt;}
.y1ac{bottom:80.494078pt;}
.y1ad{bottom:80.512714pt;}
.y1ae{bottom:80.522009pt;}
.y1af{bottom:80.531366pt;}
.y1b1{bottom:80.540627pt;}
.y1b0{bottom:80.540675pt;}
.y6d{bottom:80.708903pt;}
.y5c{bottom:80.708923pt;}
.yaf{bottom:81.055570pt;}
.y8f{bottom:81.068903pt;}
.y11a{bottom:81.357727pt;}
.y193{bottom:81.670577pt;}
.y140{bottom:84.234221pt;}
.y62{bottom:88.007457pt;}
.y1e0{bottom:90.482666pt;}
.y183{bottom:91.642236pt;}
.y1fe{bottom:91.708903pt;}
.y195{bottom:92.320272pt;}
.y1e1{bottom:92.666667pt;}
.y1df{bottom:92.672000pt;}
.y20e{bottom:92.708903pt;}
.yd7{bottom:93.042236pt;}
.yec{bottom:93.375570pt;}
.y353{bottom:93.674236pt;}
.y1bb{bottom:96.024394pt;}
.y6c{bottom:96.708903pt;}
.y5b{bottom:96.708923pt;}
.y13f{bottom:96.895554pt;}
.y24{bottom:96.933329pt;}
.yae{bottom:97.055570pt;}
.y8e{bottom:97.068903pt;}
.y119{bottom:97.357727pt;}
.y253{bottom:98.747352pt;}
.y1dc{bottom:103.149333pt;}
.y31b{bottom:104.269317pt;}
.y1de{bottom:105.333333pt;}
.y1db{bottom:105.344000pt;}
.y352{bottom:106.335570pt;}
.y19e{bottom:107.056803pt;}
.y182{bottom:107.642236pt;}
.y1fd{bottom:107.708903pt;}
.y20d{bottom:108.708903pt;}
.yd6{bottom:109.042236pt;}
.yeb{bottom:109.375570pt;}
.y13e{bottom:109.556888pt;}
.y252{bottom:111.408685pt;}
.y1ba{bottom:112.024394pt;}
.y6b{bottom:112.708903pt;}
.y5a{bottom:112.708923pt;}
.y8d{bottom:113.068903pt;}
.y118{bottom:113.357727pt;}
.y192{bottom:114.052002pt;}
.y31a{bottom:116.930650pt;}
.y1da{bottom:118.005333pt;}
.y23{bottom:118.148667pt;}
.y351{bottom:118.996903pt;}
.y13d{bottom:122.218221pt;}
.y181{bottom:123.642236pt;}
.y1fc{bottom:123.708903pt;}
.y20c{bottom:124.708903pt;}
.y251{bottom:127.611352pt;}
.y1b9{bottom:128.024394pt;}
.y6a{bottom:128.708903pt;}
.y59{bottom:128.708923pt;}
.yad{bottom:129.055570pt;}
.y8c{bottom:129.068903pt;}
.y117{bottom:129.357727pt;}
.y319{bottom:129.591984pt;}
.y22{bottom:130.810000pt;}
.y350{bottom:131.658236pt;}
.y1d9{bottom:134.933329pt;}
.y190{bottom:135.784261pt;}
.y180{bottom:139.642236pt;}
.y1fb{bottom:139.708903pt;}
.y250{bottom:140.272685pt;}
.y20b{bottom:140.708903pt;}
.yd5{bottom:141.708903pt;}
.yea{bottom:142.042236pt;}
.y318{bottom:142.253317pt;}
.y1b8{bottom:144.024394pt;}
.y34f{bottom:144.319570pt;}
.y50{bottom:144.708903pt;}
.y58{bottom:144.708923pt;}
.y10e{bottom:144.708944pt;}
.y16a{bottom:145.059986pt;}
.y8b{bottom:145.068903pt;}
.y116{bottom:145.357727pt;}
.y21{bottom:150.180667pt;}
.y317{bottom:154.914650pt;}
.y359{bottom:155.292936pt;}
.y17f{bottom:155.642236pt;}
.y1fa{bottom:155.708903pt;}
.y24f{bottom:156.400685pt;}
.y20a{bottom:156.708903pt;}
.y34e{bottom:156.980903pt;}
.y18e{bottom:157.515991pt;}
.y288{bottom:157.567554pt;}
.ye9{bottom:158.042236pt;}
.y1b7{bottom:160.024394pt;}
.y169{bottom:160.507319pt;}
.y4f{bottom:160.708903pt;}
.y57{bottom:160.708923pt;}
.y10d{bottom:160.708944pt;}
.y8a{bottom:161.068903pt;}
.y115{bottom:161.357727pt;}
.y20{bottom:162.842000pt;}
.y316{bottom:167.575984pt;}
.y358{bottom:167.963603pt;}
.yac{bottom:168.882236pt;}
.y24e{bottom:169.062018pt;}
.y34d{bottom:169.642236pt;}
.y287{bottom:170.228888pt;}
.y17e{bottom:171.642236pt;}
.y1f9{bottom:171.708903pt;}
.y209{bottom:172.708903pt;}
.yd4{bottom:174.375570pt;}
.y168{bottom:175.886986pt;}
.y1b6{bottom:176.024394pt;}
.y4e{bottom:176.708903pt;}
.y56{bottom:176.708923pt;}
.y10c{bottom:176.708944pt;}
.y89{bottom:177.068903pt;}
.y114{bottom:177.357727pt;}
.y18c{bottom:179.247721pt;}
.y315{bottom:180.237317pt;}
.y34c{bottom:182.303570pt;}
.y286{bottom:182.890221pt;}
.yab{bottom:184.882236pt;}
.y24d{bottom:185.200685pt;}
.y17d{bottom:187.642236pt;}
.y1f8{bottom:187.708903pt;}
.y208{bottom:188.708903pt;}
.yd3{bottom:190.375570pt;}
.ye8{bottom:190.708903pt;}
.y167{bottom:191.266652pt;}
.y1b5{bottom:192.024394pt;}
.y4d{bottom:192.708903pt;}
.y55{bottom:192.708923pt;}
.y10b{bottom:192.708944pt;}
.y314{bottom:192.898650pt;}
.y88{bottom:193.068903pt;}
.y113{bottom:193.357727pt;}
.y357{bottom:194.730257pt;}
.y34b{bottom:194.964903pt;}
.y285{bottom:195.551554pt;}
.y24c{bottom:197.862018pt;}
.yaa{bottom:200.882236pt;}
.y18a{bottom:200.979980pt;}
.y1f{bottom:203.615194pt;}
.y17c{bottom:203.642236pt;}
.y1f7{bottom:203.708903pt;}
.y207{bottom:204.708903pt;}
.y313{bottom:205.559984pt;}
.yd2{bottom:206.375570pt;}
.y166{bottom:206.646319pt;}
.ye7{bottom:206.708903pt;}
.y356{bottom:207.391590pt;}
.y34a{bottom:207.626236pt;}
.y4c{bottom:208.708903pt;}
.y54{bottom:208.708923pt;}
.y10a{bottom:208.708944pt;}
.y87{bottom:209.068903pt;}
.y112{bottom:209.357727pt;}
.y186{bottom:211.959635pt;}
.y228{bottom:213.000000pt;}
.y24b{bottom:214.000685pt;}
.ya9{bottom:216.882236pt;}
.y312{bottom:218.221317pt;}
.y295{bottom:218.569326pt;}
.y1e{bottom:219.615194pt;}
.y17b{bottom:219.642236pt;}
.y1f6{bottom:219.708903pt;}
.y355{bottom:220.052923pt;}
.y349{bottom:220.287570pt;}
.y206{bottom:220.708903pt;}
.y165{bottom:222.025986pt;}
.yd1{bottom:222.375570pt;}
.y1b4{bottom:224.024394pt;}
.y4b{bottom:224.708903pt;}
.y53{bottom:224.708923pt;}
.y109{bottom:224.708944pt;}
.y86{bottom:225.068903pt;}
.y111{bottom:225.357727pt;}
.y24a{bottom:226.662018pt;}
.y311{bottom:230.882650pt;}
.y354{bottom:232.714257pt;}
.ya8{bottom:232.882236pt;}
.y348{bottom:232.948903pt;}
.y294{bottom:234.777333pt;}
.y1d{bottom:235.615194pt;}
.y17a{bottom:235.642236pt;}
.y1f5{bottom:235.708903pt;}
.y205{bottom:236.708903pt;}
.y164{bottom:237.405652pt;}
.yd0{bottom:238.375570pt;}
.ye6{bottom:238.708903pt;}
.y4a{bottom:240.708903pt;}
.y52{bottom:240.708923pt;}
.y108{bottom:240.708944pt;}
.y85{bottom:241.068903pt;}
.y110{bottom:241.357727pt;}
.y249{bottom:242.790018pt;}
.y310{bottom:243.543984pt;}
.y227{bottom:245.000000pt;}
.y347{bottom:245.610236pt;}
.ya7{bottom:248.882236pt;}
.y293{bottom:251.067087pt;}
.y179{bottom:251.642236pt;}
.y1f4{bottom:251.708903pt;}
.y204{bottom:252.708903pt;}
.y163{bottom:252.785319pt;}
.ycf{bottom:254.375570pt;}
.ye5{bottom:254.708903pt;}
.y248{bottom:255.451352pt;}
.y30f{bottom:256.205317pt;}
.y49{bottom:256.708903pt;}
.y10f{bottom:256.708923pt;}
.y107{bottom:256.708944pt;}
.y84{bottom:257.068903pt;}
.y346{bottom:258.271570pt;}
.y5e{bottom:262.716797pt;}
.y63{bottom:262.727448pt;}
.ya6{bottom:264.882236pt;}
.y292{bottom:267.195087pt;}
.y1c{bottom:267.615194pt;}
.y178{bottom:267.642236pt;}
.y1f3{bottom:267.708903pt;}
.y162{bottom:268.164986pt;}
.y203{bottom:268.708903pt;}
.y30e{bottom:268.866650pt;}
.yce{bottom:270.375570pt;}
.y68{bottom:270.727448pt;}
.y345{bottom:270.932903pt;}
.y247{bottom:271.579352pt;}
.y1b3{bottom:272.024394pt;}
.y48{bottom:272.708903pt;}
.y51{bottom:272.708923pt;}
.y106{bottom:272.708944pt;}
.y83{bottom:273.068903pt;}
.y2d0{bottom:277.472935pt;}
.y2c8{bottom:277.483602pt;}
.y2c0{bottom:277.494268pt;}
.y2b8{bottom:277.504935pt;}
.y2b0{bottom:277.515602pt;}
.y2a8{bottom:277.526268pt;}
.y2a0{bottom:277.536935pt;}
.y298{bottom:277.547602pt;}
.y296{bottom:277.558268pt;}
.ya5{bottom:280.882236pt;}
.y30d{bottom:281.527984pt;}
.y291{bottom:283.323087pt;}
.y161{bottom:283.544652pt;}
.y11c{bottom:283.551554pt;}
.y344{bottom:283.594236pt;}
.y177{bottom:283.642236pt;}
.y1f2{bottom:283.708903pt;}
.y246{bottom:284.240685pt;}
.y202{bottom:284.708903pt;}
.ycd{bottom:286.375570pt;}
.ye4{bottom:287.375570pt;}
.y1b2{bottom:288.024394pt;}
.y47{bottom:288.708903pt;}
.y105{bottom:288.708944pt;}
.y82{bottom:289.068903pt;}
.y226{bottom:293.000000pt;}
.y30c{bottom:294.189317pt;}
.y343{bottom:296.255570pt;}
.ya4{bottom:296.882236pt;}
.y160{bottom:298.924319pt;}
.y290{bottom:299.451087pt;}
.y176{bottom:299.642236pt;}
.y1f1{bottom:299.708903pt;}
.y245{bottom:300.379352pt;}
.y201{bottom:300.708903pt;}
.ycc{bottom:302.375570pt;}
.ye3{bottom:303.375570pt;}
.y46{bottom:304.708903pt;}
.y104{bottom:304.708944pt;}
.y81{bottom:305.068903pt;}
.y13c{bottom:306.091482pt;}
.y30b{bottom:306.850650pt;}
.y342{bottom:308.916903pt;}
.y225{bottom:309.000000pt;}
.ya3{bottom:312.882236pt;}
.y244{bottom:313.040685pt;}
.y15f{bottom:314.303986pt;}
.y28f{bottom:315.579087pt;}
.y1b{bottom:315.615194pt;}
.y175{bottom:315.642236pt;}
.y1f0{bottom:315.708903pt;}
.y200{bottom:316.708903pt;}
.ycb{bottom:318.375570pt;}
.y13b{bottom:318.752815pt;}
.ye2{bottom:319.375570pt;}
.y30a{bottom:319.511984pt;}
.y45{bottom:320.708903pt;}
.y103{bottom:320.708944pt;}
.y80{bottom:321.068903pt;}
.y341{bottom:321.578236pt;}
.y224{bottom:325.000000pt;}
.ya2{bottom:328.882236pt;}
.y1bf{bottom:328.895554pt;}
.y243{bottom:329.179352pt;}
.y15e{bottom:329.683652pt;}
.y174{bottom:331.642236pt;}
.y28e{bottom:331.707087pt;}
.y1ef{bottom:331.708903pt;}
.y309{bottom:332.173317pt;}
.y340{bottom:334.239570pt;}
.yca{bottom:334.375570pt;}
.y13a{bottom:334.955482pt;}
.ye1{bottom:335.375570pt;}
.y26b{bottom:336.234221pt;}
.y44{bottom:336.708903pt;}
.y102{bottom:336.708944pt;}
.y7f{bottom:337.068903pt;}
.y223{bottom:341.000000pt;}
.y1be{bottom:341.556888pt;}
.y242{bottom:341.840685pt;}
.y308{bottom:344.834650pt;}
.ya1{bottom:344.882236pt;}
.y15d{bottom:345.063319pt;}
.y33f{bottom:346.900903pt;}
.y173{bottom:347.642236pt;}
.y1ee{bottom:347.708903pt;}
.y28d{bottom:347.835087pt;}
.y1a{bottom:348.281860pt;}
.y1ff{bottom:348.708903pt;}
.y26a{bottom:348.895554pt;}
.yc9{bottom:350.375570pt;}
.y139{bottom:351.083482pt;}
.ye0{bottom:351.375570pt;}
.y43{bottom:352.708903pt;}
.y101{bottom:352.708944pt;}
.y7e{bottom:353.068903pt;}
.y2d8{bottom:353.878263pt;}
.y2d1{bottom:353.888935pt;}
.y2c9{bottom:353.899602pt;}
.y2c1{bottom:353.910268pt;}
.y2b9{bottom:353.920935pt;}
.y2b1{bottom:353.931602pt;}
.y2a9{bottom:353.942268pt;}
.y2a1{bottom:353.952935pt;}
.y299{bottom:353.963602pt;}
.y1bd{bottom:354.218221pt;}
.y222{bottom:357.000000pt;}
.y307{bottom:357.495984pt;}
.y241{bottom:357.968685pt;}
.y33e{bottom:359.562236pt;}
.y15c{bottom:360.442986pt;}
.ya0{bottom:360.882236pt;}
.y269{bottom:361.556888pt;}
.y172{bottom:363.642236pt;}
.y1ed{bottom:363.708903pt;}
.y138{bottom:363.744815pt;}
.y28c{bottom:363.963087pt;}
.y19{bottom:364.281860pt;}
.yc8{bottom:366.375570pt;}
.ydf{bottom:367.375570pt;}
.y42{bottom:368.708903pt;}
.y100{bottom:368.708944pt;}
.y7d{bottom:369.068903pt;}
.y306{bottom:370.157317pt;}
.y240{bottom:370.630018pt;}
.y33d{bottom:372.223570pt;}
.y221{bottom:373.000000pt;}
.y268{bottom:374.218221pt;}
.y15b{bottom:375.822652pt;}
.y9f{bottom:376.882236pt;}
.y1d8{bottom:377.273611pt;}
.y171{bottom:379.642236pt;}
.y1ec{bottom:379.708903pt;}
.y137{bottom:379.872815pt;}
.y28b{bottom:380.091087pt;}
.yc7{bottom:382.375570pt;}
.y305{bottom:382.818650pt;}
.yde{bottom:383.375570pt;}
.y41{bottom:384.708903pt;}
.yff{bottom:384.708944pt;}
.y33c{bottom:384.884903pt;}
.y7c{bottom:385.068903pt;}
.y23f{bottom:386.758018pt;}
.y220{bottom:389.000000pt;}
.y15a{bottom:391.202319pt;}
.y9e{bottom:392.882236pt;}
.y1d7{bottom:393.481619pt;}
.y304{bottom:395.479984pt;}
.y170{bottom:395.642236pt;}
.y1eb{bottom:395.708903pt;}
.y136{bottom:396.000815pt;}
.y284{bottom:396.035981pt;}
.y28a{bottom:396.219087pt;}
.y18{bottom:396.948527pt;}
.y33b{bottom:397.546236pt;}
.yc6{bottom:398.375570pt;}
.ydd{bottom:399.375570pt;}
.y23e{bottom:399.419352pt;}
.y40{bottom:400.708903pt;}
.yfe{bottom:400.708944pt;}
.y7b{bottom:401.068903pt;}
.y21f{bottom:405.000000pt;}
.y159{bottom:406.581986pt;}
.y303{bottom:408.141317pt;}
.y135{bottom:408.662148pt;}
.y9d{bottom:408.882236pt;}
.y1d6{bottom:409.712685pt;}
.y33a{bottom:410.207570pt;}
.y16f{bottom:411.642236pt;}
.y1ea{bottom:411.708903pt;}
.y283{bottom:412.243989pt;}
.y289{bottom:412.347087pt;}
.y17{bottom:412.948527pt;}
.yc5{bottom:414.375570pt;}
.ydc{bottom:415.375570pt;}
.y23d{bottom:415.547352pt;}
.y3f{bottom:416.708903pt;}
.yfd{bottom:416.708944pt;}
.y7a{bottom:417.068903pt;}
.y302{bottom:420.802650pt;}
.y21e{bottom:421.000000pt;}
.y158{bottom:421.961652pt;}
.y339{bottom:422.868903pt;}
.y134{bottom:424.790148pt;}
.y9c{bottom:424.882236pt;}
.y1d5{bottom:425.840685pt;}
.y16e{bottom:427.642236pt;}
.y1e9{bottom:427.708903pt;}
.y23c{bottom:428.208685pt;}
.y282{bottom:428.475087pt;}
.y16{bottom:428.948527pt;}
.y2df{bottom:430.294246pt;}
.y2d9{bottom:430.294263pt;}
.y2d2{bottom:430.304935pt;}
.y2ca{bottom:430.315602pt;}
.y2c2{bottom:430.326268pt;}
.y2ba{bottom:430.336935pt;}
.y2b2{bottom:430.347602pt;}
.y2aa{bottom:430.358268pt;}
.y2a2{bottom:430.368935pt;}
.yc4{bottom:430.375570pt;}
.y29a{bottom:430.379602pt;}
.ydb{bottom:431.375570pt;}
.y3e{bottom:432.708903pt;}
.yfc{bottom:432.708944pt;}
.y79{bottom:433.068903pt;}
.y301{bottom:433.463984pt;}
.y338{bottom:435.530236pt;}
.y21d{bottom:437.000000pt;}
.y157{bottom:437.341319pt;}
.y9b{bottom:440.882236pt;}
.y133{bottom:440.918148pt;}
.y1d4{bottom:441.968685pt;}
.y16d{bottom:443.642236pt;}
.y1e8{bottom:443.708903pt;}
.y23b{bottom:444.347352pt;}
.y281{bottom:444.603087pt;}
.y5f{bottom:444.946126pt;}
.y15{bottom:444.948527pt;}
.y64{bottom:444.956777pt;}
.y300{bottom:446.125317pt;}
.yc3{bottom:446.375570pt;}
.yda{bottom:447.375570pt;}
.y337{bottom:448.191570pt;}
.y3d{bottom:448.708903pt;}
.yfb{bottom:448.708944pt;}
.y78{bottom:449.068903pt;}
.y156{bottom:452.720986pt;}
.y65{bottom:452.956777pt;}
.y21c{bottom:453.000000pt;}
.y132{bottom:453.579482pt;}
.y9a{bottom:456.882236pt;}
.y23a{bottom:457.008685pt;}
.y1d3{bottom:458.096685pt;}
.y2ff{bottom:458.786650pt;}
.y16c{bottom:459.642236pt;}
.y1e7{bottom:459.708903pt;}
.y280{bottom:460.731087pt;}
.y336{bottom:460.852903pt;}
.y14{bottom:460.948527pt;}
.yc2{bottom:462.375570pt;}
.yd9{bottom:463.375570pt;}
.y3c{bottom:464.708903pt;}
.yfa{bottom:464.708944pt;}
.y77{bottom:465.068903pt;}
.y155{bottom:468.100652pt;}
.y21b{bottom:469.000000pt;}
.y131{bottom:469.707482pt;}
.y2fe{bottom:471.447984pt;}
.y99{bottom:472.882236pt;}
.y239{bottom:473.147352pt;}
.y335{bottom:473.514236pt;}
.y1d2{bottom:474.224685pt;}
.y16b{bottom:475.642236pt;}
.y1e6{bottom:475.708903pt;}
.y27f{bottom:476.859087pt;}
.y267{bottom:476.935740pt;}
.y13{bottom:476.948527pt;}
.yc1{bottom:478.375570pt;}
.y3b{bottom:480.708903pt;}
.yf9{bottom:480.708944pt;}
.y76{bottom:481.068903pt;}
.y130{bottom:482.368815pt;}
.y154{bottom:483.480319pt;}
.y2fd{bottom:484.109317pt;}
.y21a{bottom:485.000000pt;}
.y238{bottom:485.808685pt;}
.y334{bottom:486.175570pt;}
.y98{bottom:488.882236pt;}
.y266{bottom:489.597073pt;}
.y1d1{bottom:490.352685pt;}
.y1e5{bottom:491.708903pt;}
.y12{bottom:492.948527pt;}
.y27e{bottom:492.987087pt;}
.yd8{bottom:496.042236pt;}
.y3a{bottom:496.708903pt;}
.yf8{bottom:496.708944pt;}
.y2fc{bottom:496.770650pt;}
.y75{bottom:497.068903pt;}
.y12f{bottom:498.496815pt;}
.y333{bottom:498.836903pt;}
.y153{bottom:498.859986pt;}
.y185{bottom:499.642660pt;}
.y219{bottom:501.000000pt;}
.y237{bottom:501.936685pt;}
.y265{bottom:502.258407pt;}
.y97{bottom:504.882236pt;}
.y1d0{bottom:506.480685pt;}
.y2e0{bottom:506.710246pt;}
.y2da{bottom:506.710263pt;}
.y2d3{bottom:506.720935pt;}
.y2cb{bottom:506.731602pt;}
.y2c3{bottom:506.742268pt;}
.y2bb{bottom:506.752935pt;}
.y2b3{bottom:506.763602pt;}
.y2ab{bottom:506.774268pt;}
.y2a3{bottom:506.784935pt;}
.y29b{bottom:506.795602pt;}
.y11{bottom:508.948527pt;}
.y27d{bottom:509.115087pt;}
.y2fb{bottom:509.431984pt;}
.yc0{bottom:511.042236pt;}
.y332{bottom:511.498236pt;}
.y39{bottom:512.708903pt;}
.yf7{bottom:512.708944pt;}
.y74{bottom:513.068903pt;}
.y152{bottom:514.239652pt;}
.y236{bottom:514.598018pt;}
.y12e{bottom:514.624815pt;}
.y264{bottom:514.919740pt;}
.y218{bottom:517.000000pt;}
.y19a{bottom:520.106649pt;}
.y96{bottom:520.882236pt;}
.y2fa{bottom:522.093317pt;}
.y1cf{bottom:522.608685pt;}
.y1e4{bottom:523.708903pt;}
.y331{bottom:524.159570pt;}
.y10{bottom:524.948527pt;}
.y27c{bottom:525.243087pt;}
.ybf{bottom:527.042236pt;}
.y12d{bottom:527.286148pt;}
.y263{bottom:527.581073pt;}
.y38{bottom:528.708903pt;}
.yf6{bottom:528.708944pt;}
.y73{bottom:529.068903pt;}
.y151{bottom:529.619319pt;}
.y235{bottom:530.726018pt;}
.y217{bottom:533.000000pt;}
.y2f9{bottom:534.754650pt;}
.y330{bottom:536.820903pt;}
.y95{bottom:536.882236pt;}
.y1ce{bottom:538.736685pt;}
.y198{bottom:540.038940pt;}
.yf{bottom:540.948527pt;}
.y27b{bottom:541.371087pt;}
.y234{bottom:543.387352pt;}
.y12c{bottom:543.414148pt;}
.y37{bottom:544.708903pt;}
.yf5{bottom:544.708944pt;}
.y150{bottom:544.998986pt;}
.y72{bottom:545.068903pt;}
.y2f8{bottom:547.415984pt;}
.y216{bottom:549.000000pt;}
.y32f{bottom:549.482236pt;}
.y262{bottom:551.122407pt;}
.y94{bottom:552.882236pt;}
.y1cd{bottom:554.864685pt;}
.ye{bottom:556.948527pt;}
.y27a{bottom:557.499087pt;}
.y233{bottom:559.515352pt;}
.y12b{bottom:559.542148pt;}
.ybe{bottom:559.708903pt;}
.y196{bottom:559.958781pt;}
.y2f7{bottom:560.077317pt;}
.y14f{bottom:560.378652pt;}
.y36{bottom:560.708903pt;}
.yf4{bottom:560.708944pt;}
.y71{bottom:561.068903pt;}
.y32e{bottom:562.143570pt;}
.y215{bottom:565.000000pt;}
.y261{bottom:567.330252pt;}
.y93{bottom:568.882236pt;}
.y1cc{bottom:570.992685pt;}
.y232{bottom:572.176685pt;}
.y12a{bottom:572.203482pt;}
.y2f6{bottom:572.738650pt;}
.yd{bottom:572.948527pt;}
.y279{bottom:573.627087pt;}
.y32d{bottom:574.804903pt;}
.ybd{bottom:575.708903pt;}
.y14e{bottom:575.758319pt;}
.y35{bottom:576.708903pt;}
.yf3{bottom:576.708944pt;}
.y70{bottom:577.068903pt;}
.y214{bottom:581.000000pt;}
.y194{bottom:581.306681pt;}
.y260{bottom:583.513697pt;}
.y92{bottom:584.882236pt;}
.y2f5{bottom:585.399984pt;}
.y1cb{bottom:587.120685pt;}
.y32c{bottom:587.466236pt;}
.y231{bottom:588.304685pt;}
.y129{bottom:588.331482pt;}
.y2e1{bottom:588.459580pt;}
.y2e5{bottom:588.459595pt;}
.y2db{bottom:588.459596pt;}
.y2d4{bottom:588.470268pt;}
.y2cc{bottom:588.480935pt;}
.y2c4{bottom:588.491602pt;}
.y2bc{bottom:588.502268pt;}
.y2b4{bottom:588.512935pt;}
.y2ac{bottom:588.523602pt;}
.y2a4{bottom:588.534268pt;}
.y29c{bottom:588.544935pt;}
.yc{bottom:588.948527pt;}
.y278{bottom:589.755087pt;}
.y14d{bottom:591.137986pt;}
.ybc{bottom:591.708903pt;}
.y34{bottom:592.708903pt;}
.yf2{bottom:592.708944pt;}
.y6f{bottom:593.068903pt;}
.y213{bottom:597.000000pt;}
.y25f{bottom:599.641697pt;}
.y32b{bottom:600.127570pt;}
.y91{bottom:600.882236pt;}
.y230{bottom:600.966018pt;}
.y191{bottom:603.038940pt;}
.y1ca{bottom:603.248685pt;}
.y128{bottom:604.459482pt;}
.yb{bottom:604.948527pt;}
.y184{bottom:605.175562pt;}
.y277{bottom:605.883087pt;}
.y14c{bottom:606.517652pt;}
.ybb{bottom:607.708903pt;}
.y33{bottom:608.708903pt;}
.yf1{bottom:608.708944pt;}
.y32a{bottom:612.788903pt;}
.y212{bottom:613.000000pt;}
.y2f4{bottom:614.333333pt;}
.y25e{bottom:615.769697pt;}
.y22f{bottom:617.104685pt;}
.y1c9{bottom:619.376685pt;}
.y127{bottom:620.587482pt;}
.y14b{bottom:621.897319pt;}
.y276{bottom:622.011087pt;}
.yba{bottom:623.708903pt;}
.y32{bottom:624.708903pt;}
.yf0{bottom:624.708944pt;}
.y18f{bottom:624.770671pt;}
.y6e{bottom:625.068903pt;}
.y329{bottom:625.450236pt;}
.y60{bottom:628.284790pt;}
.y66{bottom:628.295441pt;}
.y25d{bottom:628.431030pt;}
.y211{bottom:629.000000pt;}
.y22e{bottom:629.766018pt;}
.y90{bottom:632.882236pt;}
.y1c8{bottom:635.504685pt;}
.y67{bottom:636.295441pt;}
.y126{bottom:636.715482pt;}
.y14a{bottom:637.276986pt;}
.y328{bottom:638.111570pt;}
.y275{bottom:638.139087pt;}
.yb9{bottom:639.708903pt;}
.y31{bottom:640.708903pt;}
.yef{bottom:640.708944pt;}
.y25c{bottom:644.559030pt;}
.y210{bottom:645.000000pt;}
.y22d{bottom:645.904685pt;}
.y18d{bottom:646.502400pt;}
.ya{bottom:648.053063pt;}
.y327{bottom:650.772903pt;}
.y1c7{bottom:651.632685pt;}
.y149{bottom:652.656652pt;}
.y125{bottom:652.843482pt;}
.y274{bottom:654.267087pt;}
.yb8{bottom:655.708903pt;}
.y30{bottom:656.708903pt;}
.yee{bottom:656.708944pt;}
.y25b{bottom:657.220363pt;}
.y22c{bottom:658.566018pt;}
.y9{bottom:660.714396pt;}
.y326{bottom:663.434236pt;}
.y1c6{bottom:667.760685pt;}
.y148{bottom:668.036319pt;}
.y18b{bottom:668.234660pt;}
.y124{bottom:668.971482pt;}
.y2e2{bottom:670.208913pt;}
.y2e6{bottom:670.208928pt;}
.y2dc{bottom:670.208929pt;}
.y2d5{bottom:670.219602pt;}
.y2cd{bottom:670.230268pt;}
.y2c5{bottom:670.240935pt;}
.y2bd{bottom:670.251602pt;}
.y2b5{bottom:670.262268pt;}
.y2ad{bottom:670.272935pt;}
.y2a5{bottom:670.283602pt;}
.y29d{bottom:670.294268pt;}
.y2e8{bottom:670.304925pt;}
.y273{bottom:670.395087pt;}
.yb7{bottom:671.708903pt;}
.y2f{bottom:672.708903pt;}
.yed{bottom:672.708944pt;}
.y25a{bottom:673.348363pt;}
.y22b{bottom:674.694018pt;}
.y2f3{bottom:675.412903pt;}
.y325{bottom:676.095570pt;}
.y20f{bottom:677.000000pt;}
.y147{bottom:683.415986pt;}
.y1c5{bottom:683.888685pt;}
.y123{bottom:685.099482pt;}
.y259{bottom:686.009697pt;}
.y272{bottom:686.523087pt;}
.y22a{bottom:687.355352pt;}
.yb6{bottom:687.708903pt;}
.y2f2{bottom:688.074236pt;}
.y2e{bottom:688.708903pt;}
.y324{bottom:688.756903pt;}
.y189{bottom:689.954427pt;}
.y8{bottom:694.357503pt;}
.y122{bottom:697.760815pt;}
.y146{bottom:698.795652pt;}
.y1c4{bottom:700.016685pt;}
.y2f1{bottom:700.735570pt;}
.y323{bottom:701.418236pt;}
.y258{bottom:702.137697pt;}
.y271{bottom:702.651087pt;}
.y229{bottom:703.483352pt;}
.yb5{bottom:703.708903pt;}
.y2d{bottom:704.708903pt;}
.y188{bottom:708.266276pt;}
.y187{bottom:711.602295pt;}
.y2f0{bottom:713.396903pt;}
.y121{bottom:713.888815pt;}
.y322{bottom:714.079570pt;}
.y145{bottom:714.175319pt;}
.y257{bottom:714.799030pt;}
.y1c3{bottom:716.144685pt;}
.y270{bottom:718.779087pt;}
.yb4{bottom:719.708903pt;}
.y2c{bottom:720.708903pt;}
.y2ef{bottom:726.058236pt;}
.y321{bottom:726.740903pt;}
.y144{bottom:729.554986pt;}
.y120{bottom:730.016815pt;}
.y7{bottom:732.351581pt;}
.y26f{bottom:734.907087pt;}
.yb3{bottom:735.708903pt;}
.y2b{bottom:736.708903pt;}
.y2ee{bottom:738.719570pt;}
.y256{bottom:739.311030pt;}
.y320{bottom:739.402236pt;}
.y1c2{bottom:741.040685pt;}
.y11f{bottom:742.678148pt;}
.y143{bottom:744.934652pt;}
.y2ed{bottom:751.380903pt;}
.yb2{bottom:751.708903pt;}
.y2e3{bottom:751.958246pt;}
.y2e7{bottom:751.958261pt;}
.y2dd{bottom:751.958263pt;}
.y2d6{bottom:751.968935pt;}
.y2ce{bottom:751.979602pt;}
.y2c6{bottom:751.990268pt;}
.y2be{bottom:752.000935pt;}
.y2b6{bottom:752.011602pt;}
.y2ae{bottom:752.022268pt;}
.y2a6{bottom:752.032935pt;}
.y29e{bottom:752.043602pt;}
.y2e9{bottom:752.054258pt;}
.y31f{bottom:752.063570pt;}
.y6{bottom:752.354248pt;}
.y2a{bottom:752.708903pt;}
.y11e{bottom:758.806148pt;}
.y26e{bottom:759.803087pt;}
.y142{bottom:760.314319pt;}
.y255{bottom:760.505697pt;}
.y1c1{bottom:762.235352pt;}
.y2ec{bottom:764.042236pt;}
.y31e{bottom:764.724903pt;}
.yb1{bottom:767.708903pt;}
.y29{bottom:768.708903pt;}
.y2eb{bottom:776.703570pt;}
.y31d{bottom:777.386236pt;}
.y26d{bottom:780.997754pt;}
.y254{bottom:781.972249pt;}
.y1c0{bottom:783.701986pt;}
.y11d{bottom:783.702148pt;}
.y141{bottom:784.451986pt;}
.y28{bottom:784.708903pt;}
.y31c{bottom:790.047570pt;}
.y26c{bottom:797.531087pt;}
.yb0{bottom:799.708903pt;}
.y5{bottom:799.809082pt;}
.y27{bottom:800.708903pt;}
.y11b{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y2{bottom:835.654297pt;}
.h18{height:3.520880pt;}
.h1d{height:10.933333pt;}
.hc{height:28.701867pt;}
.h14{height:29.180625pt;}
.h16{height:30.041581pt;}
.h2{height:30.080000pt;}
.h1f{height:35.116790pt;}
.h1e{height:35.116828pt;}
.h15{height:35.635572pt;}
.h1a{height:35.877333pt;}
.h13{height:36.435772pt;}
.h11{height:37.158667pt;}
.h3{height:37.376000pt;}
.hb{height:41.002667pt;}
.h5{height:41.514667pt;}
.h27{height:43.565333pt;}
.he{height:43.648000pt;}
.h26{height:44.830013pt;}
.h24{height:45.121506pt;}
.h1b{height:45.356173pt;}
.h22{height:45.356205pt;}
.h20{height:45.547308pt;}
.h1c{height:45.747070pt;}
.h23{height:45.747233pt;}
.h25{height:45.747237pt;}
.h21{height:45.747721pt;}
.h19{height:46.144865pt;}
.h17{height:46.198211pt;}
.hf{height:47.680000pt;}
.h4{height:48.766452pt;}
.h9{height:51.253333pt;}
.h8{height:52.746667pt;}
.h10{height:54.560000pt;}
.hd{height:57.210667pt;}
.h7{height:57.658667pt;}
.ha{height:58.021333pt;}
.h6{height:61.429333pt;}
.h12{height:221.066671pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w4{width:9.626666pt;}
.w3{width:9.628000pt;}
.w2{width:248.760010pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x6d{left:1.568400pt;}
.x2{left:68.031469pt;}
.x6{left:69.996800pt;}
.x4{left:71.917603pt;}
.x8{left:76.031469pt;}
.x7{left:83.151469pt;}
.x5{left:86.932800pt;}
.x84{left:90.708802pt;}
.x9{left:95.038400pt;}
.x25{left:96.768138pt;}
.x6c{left:105.552002pt;}
.xa{left:107.699733pt;}
.x26{left:109.429471pt;}
.x6e{left:115.179067pt;}
.xb{left:120.361067pt;}
.x27{left:122.090804pt;}
.x5a{left:124.983856pt;}
.x5e{left:126.441600pt;}
.x75{left:128.894533pt;}
.x82{left:130.624138pt;}
.x58{left:137.247996pt;}
.xc{left:140.361067pt;}
.x28{left:141.717471pt;}
.x3b{left:146.602804pt;}
.x5f{left:150.334933pt;}
.xd{left:153.022400pt;}
.x29{left:154.378804pt;}
.x3c{left:159.264138pt;}
.xe{left:165.683733pt;}
.x2a{left:167.040138pt;}
.x4d{left:168.533335pt;}
.x3d{left:171.925471pt;}
.x54{left:177.021464pt;}
.xf{left:178.345067pt;}
.x2b{left:179.690804pt;}
.x60{left:180.593600pt;}
.x52{left:182.025208pt;}
.x3e{left:184.586804pt;}
.x10{left:191.006400pt;}
.x2c{left:192.352138pt;}
.x61{left:195.722933pt;}
.x3f{left:197.226804pt;}
.x56{left:202.431875pt;}
.x11{left:203.646400pt;}
.x2d{left:205.013471pt;}
.x50{left:208.029338pt;}
.x40{left:209.888138pt;}
.x62{left:210.852266pt;}
.x4b{left:212.383469pt;}
.x12{left:216.307733pt;}
.x2e{left:217.674804pt;}
.x41{left:222.549471pt;}
.x76{left:224.030533pt;}
.x63{left:225.981600pt;}
.x53{left:227.937724pt;}
.x13{left:228.969067pt;}
.x2f{left:230.336138pt;}
.x42{left:235.210804pt;}
.x77{left:240.158533pt;}
.x14{left:241.630400pt;}
.x30{left:242.954807pt;}
.x43{left:247.872138pt;}
.x78{left:252.819867pt;}
.x15{left:254.291733pt;}
.x31{left:255.616141pt;}
.x44{left:260.533471pt;}
.x16{left:266.953067pt;}
.x32{left:268.277474pt;}
.x83{left:270.293471pt;}
.x64{left:271.369600pt;}
.x45{left:273.194804pt;}
.x6b{left:276.963460pt;}
.x17{left:279.561067pt;}
.x33{left:280.938807pt;}
.x71{left:282.188009pt;}
.x59{left:284.385457pt;}
.x46{left:285.856138pt;}
.x18{left:292.222400pt;}
.x34{left:293.600141pt;}
.x57{left:296.649597pt;}
.x47{left:298.517471pt;}
.x65{left:301.628266pt;}
.x19{left:304.883733pt;}
.x35{left:306.261474pt;}
.x48{left:311.114804pt;}
.x51{left:316.256938pt;}
.x1a{left:317.545067pt;}
.x36{left:318.922807pt;}
.x6f{left:326.223999pt;}
.x1b{left:330.206400pt;}
.x37{left:331.584141pt;}
.x49{left:334.592141pt;}
.x70{left:335.849731pt;}
.x79{left:339.198533pt;}
.x1c{left:342.867733pt;}
.x38{left:344.245474pt;}
.x4a{left:347.253474pt;}
.x4e{left:352.401733pt;}
.x1d{left:355.443733pt;}
.x39{left:356.906807pt;}
.x55{left:361.833455pt;}
.x1e{left:368.105067pt;}
.x3a{left:369.568141pt;}
.x4f{left:371.817342pt;}
.x72{left:373.324013pt;}
.x66{left:377.274933pt;}
.x1f{left:380.766400pt;}
.x7a{left:384.126533pt;}
.x67{left:392.404266pt;}
.x20{left:393.427733pt;}
.x7b{left:396.787867pt;}
.x21{left:406.089067pt;}
.x68{left:407.533600pt;}
.x7c{left:412.915867pt;}
.x74{left:416.499593pt;}
.x22{left:418.750400pt;}
.x69{left:422.662933pt;}
.x7d{left:425.577200pt;}
.x1{left:431.874146pt;}
.x6a{left:437.866933pt;}
.x7e{left:441.705200pt;}
.x23{left:444.073067pt;}
.x7f{left:454.366533pt;}
.x24{left:456.734400pt;}
.x73{left:458.977410pt;}
.x5b{left:459.869181pt;}
.x3{left:463.672526pt;}
.x80{left:470.569200pt;}
.x5c{left:472.530515pt;}
.x81{left:483.230533pt;}
.x5d{left:485.191848pt;}
.x4c{left:502.244827pt;}
}


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