
/* 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_ec90ccee0f34.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_0d23fb8fc548.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_9a16b294904d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_e738c6722b84.woff")format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_5bb8a1d73e9a.woff")format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_6a19fe820dbf.woff")format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_5744a36dba4c.woff")format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_10bd0d1f824b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_d5690621fc0e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.429000;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_12b424c6fa00.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_4b6a0bbe1576.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_9e8397073110.woff")format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_5cd4b5d11d9c.woff")format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_a3bb0a72a337.woff")format("woff");}.ffe{font-family:ffe;line-height:0.294000;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_75bb101c482a.woff")format("woff");}.fff{font-family:fff;line-height:0.532000;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_c8d6f3d826fe.woff")format("woff");}.ff10{font-family:ff10;line-height:0.888000;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_5e1c3b12abcf.woff")format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_2eaf2189e83b.woff")format("woff");}.ff12{font-family:ff12;line-height:0.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_b0ddc13b6d5d.woff")format("woff");}.ff13{font-family:ff13;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_b875e950d3de.woff")format("woff");}.ff14{font-family:ff14;line-height:0.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:24.684000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000141px;}
.ls33{letter-spacing:0.000532px;}
.ls10{letter-spacing:0.002338px;}
.ls2c{letter-spacing:0.002915px;}
.ls29{letter-spacing:0.003269px;}
.ls17{letter-spacing:0.004200px;}
.ls1c{letter-spacing:0.041843px;}
.ls36{letter-spacing:0.834017px;}
.ls4{letter-spacing:2.455834px;}
.ls1{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.987675px;}
.ls31{letter-spacing:2.988600px;}
.ls5{letter-spacing:2.988780px;}
.ls1a{letter-spacing:2.989200px;}
.ls7{letter-spacing:2.992766px;}
.lsa{letter-spacing:2.994600px;}
.lsf{letter-spacing:4.275175px;}
.ls11{letter-spacing:4.685915px;}
.ls16{letter-spacing:9.956338px;}
.ls28{letter-spacing:13.280338px;}
.ls12{letter-spacing:13.282287px;}
.ls1d{letter-spacing:16.067635px;}
.ls1b{letter-spacing:16.109478px;}
.ls15{letter-spacing:16.601607px;}
.ls27{letter-spacing:16.602538px;}
.ls14{letter-spacing:16.607306px;}
.ls3{letter-spacing:16.987200px;}
.lse{letter-spacing:18.368685px;}
.ls34{letter-spacing:19.766100px;}
.ls2f{letter-spacing:21.794245px;}
.ls2b{letter-spacing:22.610245px;}
.lsc{letter-spacing:23.057915px;}
.ls8{letter-spacing:24.312017px;}
.ls24{letter-spacing:24.716725px;}
.lsb{letter-spacing:24.764100px;}
.ls1f{letter-spacing:24.920725px;}
.ls2e{letter-spacing:25.172100px;}
.ls19{letter-spacing:25.203175px;}
.ls2a{letter-spacing:25.862245px;}
.ls35{letter-spacing:26.660245px;}
.ls23{letter-spacing:26.678725px;}
.ls18{letter-spacing:27.797306px;}
.ls2{letter-spacing:29.887409px;}
.ls26{letter-spacing:30.938725px;}
.lsd{letter-spacing:31.648287px;}
.ls32{letter-spacing:33.362245px;}
.ls25{letter-spacing:33.872725px;}
.ls9{letter-spacing:34.274100px;}
.ls30{letter-spacing:36.662100px;}
.ls22{letter-spacing:37.466725px;}
.ls20{letter-spacing:38.024725px;}
.ls1e{letter-spacing:38.252725px;}
.ls21{letter-spacing:44.282725px;}
.ls13{letter-spacing:73.058338px;}
.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;}
}
.wse6{word-spacing:-59.775600px;}
.wsbb{word-spacing:-16.605662px;}
.ws5{word-spacing:-14.943900px;}
.ws20{word-spacing:-14.920027px;}
.wsec{word-spacing:-13.531962px;}
.ws6{word-spacing:-13.449600px;}
.ws60{word-spacing:-11.955150px;}
.ws148{word-spacing:-9.713550px;}
.wse5{word-spacing:-3.335478px;}
.ws14d{word-spacing:-3.320193px;}
.wsfe{word-spacing:-2.624791px;}
.ws113{word-spacing:-1.948213px;}
.wsdc{word-spacing:-1.075961px;}
.wsff{word-spacing:-0.956410px;}
.ws91{word-spacing:-0.896634px;}
.ws40{word-spacing:-0.836858px;}
.ws144{word-spacing:-0.657532px;}
.ws106{word-spacing:-0.478205px;}
.ws3e{word-spacing:-0.418429px;}
.wsb0{word-spacing:-0.298878px;}
.ws2d{word-spacing:-0.179327px;}
.ws116{word-spacing:-0.119551px;}
.wse3{word-spacing:-0.059776px;}
.ws185{word-spacing:-0.047821px;}
.ws14e{word-spacing:-0.041843px;}
.ws187{word-spacing:-0.035866px;}
.wsef{word-spacing:-0.029888px;}
.wse4{word-spacing:-0.016402px;}
.ws81{word-spacing:-0.015956px;}
.ws0{word-spacing:0.000000px;}
.ws13f{word-spacing:0.059776px;}
.ws85{word-spacing:0.179327px;}
.ws39{word-spacing:0.239102px;}
.ws14f{word-spacing:0.358654px;}
.ws16a{word-spacing:0.418429px;}
.wsd7{word-spacing:0.475924px;}
.wsd9{word-spacing:0.478205px;}
.wsd8{word-spacing:0.481567px;}
.ws115{word-spacing:0.537980px;}
.ws75{word-spacing:0.597756px;}
.ws43{word-spacing:0.657532px;}
.ws12c{word-spacing:0.717307px;}
.ws76{word-spacing:0.777083px;}
.ws21{word-spacing:0.836858px;}
.ws32{word-spacing:0.956410px;}
.ws3b{word-spacing:1.016185px;}
.ws10c{word-spacing:1.075961px;}
.wsf1{word-spacing:1.113018px;}
.ws3a{word-spacing:1.135736px;}
.ws5b{word-spacing:1.195512px;}
.wsfa{word-spacing:1.255288px;}
.wsad{word-spacing:1.315063px;}
.ws2c{word-spacing:1.374839px;}
.wsf0{word-spacing:1.489604px;}
.ws83{word-spacing:1.494390px;}
.wsa2{word-spacing:1.554166px;}
.wsf8{word-spacing:1.598880px;}
.wsbd{word-spacing:1.611721px;}
.ws122{word-spacing:1.733492px;}
.ws6c{word-spacing:1.793268px;}
.ws105{word-spacing:1.853044px;}
.wsab{word-spacing:2.032370px;}
.ws52{word-spacing:2.056286px;}
.ws58{word-spacing:2.092146px;}
.ws87{word-spacing:2.151922px;}
.ws170{word-spacing:2.183975px;}
.wse{word-spacing:2.205734px;}
.ws16f{word-spacing:2.211697px;}
.ws155{word-spacing:2.331248px;}
.ws121{word-spacing:2.391024px;}
.wsb1{word-spacing:2.450800px;}
.ws1b0{word-spacing:2.510575px;}
.wsed{word-spacing:2.535674px;}
.ws72{word-spacing:2.570351px;}
.wseb{word-spacing:2.577516px;}
.wsca{word-spacing:2.630126px;}
.ws2f{word-spacing:2.689902px;}
.ws12{word-spacing:2.743718px;}
.ws111{word-spacing:2.749678px;}
.ws95{word-spacing:2.809453px;}
.ws5e{word-spacing:2.869229px;}
.wsd5{word-spacing:2.929004px;}
.ws114{word-spacing:2.988780px;}
.ws42{word-spacing:3.048556px;}
.ws192{word-spacing:3.152406px;}
.ws141{word-spacing:3.168107px;}
.ws194{word-spacing:3.179408px;}
.wsf9{word-spacing:3.227882px;}
.wsf7{word-spacing:3.255025px;}
.wsbf{word-spacing:3.272185px;}
.wsbe{word-spacing:3.287658px;}
.ws11{word-spacing:3.335501px;}
.ws172{word-spacing:3.395975px;}
.ws171{word-spacing:3.400326px;}
.ws104{word-spacing:3.404369px;}
.wse1{word-spacing:3.407209px;}
.wsdf{word-spacing:3.424801px;}
.wse0{word-spacing:3.428134px;}
.ws15a{word-spacing:3.466985px;}
.ws8b{word-spacing:3.526760px;}
.ws59{word-spacing:3.586536px;}
.ws180{word-spacing:3.590434px;}
.ws166{word-spacing:3.646312px;}
.ws8c{word-spacing:3.706087px;}
.wsaf{word-spacing:3.765863px;}
.ws89{word-spacing:3.825638px;}
.ws127{word-spacing:3.885414px;}
.ws38{word-spacing:3.945190px;}
.ws13{word-spacing:4.034880px;}
.ws1c2{word-spacing:4.064741px;}
.ws68{word-spacing:4.124516px;}
.wsf3{word-spacing:4.184280px;}
.ws140{word-spacing:4.184292px;}
.ws15b{word-spacing:4.244068px;}
.ws65{word-spacing:4.303843px;}
.ws124{word-spacing:4.363619px;}
.ws28{word-spacing:4.423394px;}
.ws199{word-spacing:4.542946px;}
.ws158{word-spacing:4.602721px;}
.ws136{word-spacing:4.662497px;}
.ws2e{word-spacing:4.722272px;}
.ws1a4{word-spacing:4.782048px;}
.ws53{word-spacing:4.782060px;}
.ws188{word-spacing:4.803793px;}
.ws189{word-spacing:4.826066px;}
.ws18a{word-spacing:4.826134px;}
.ws191{word-spacing:4.828309px;}
.ws193{word-spacing:4.832134px;}
.ws128{word-spacing:4.841824px;}
.ws18{word-spacing:4.841856px;}
.ws1b7{word-spacing:4.901599px;}
.ws78{word-spacing:4.961375px;}
.wsfd{word-spacing:4.972443px;}
.ws17{word-spacing:5.003251px;}
.ws19e{word-spacing:5.021150px;}
.ws8{word-spacing:5.057050px;}
.wsc0{word-spacing:5.080926px;}
.ws17b{word-spacing:5.140702px;}
.ws12d{word-spacing:5.200477px;}
.ws181{word-spacing:5.208317px;}
.ws1c6{word-spacing:5.219875px;}
.ws135{word-spacing:5.230350px;}
.wsc3{word-spacing:5.244608px;}
.wsc2{word-spacing:5.260253px;}
.wsaa{word-spacing:5.320028px;}
.ws34{word-spacing:5.379804px;}
.ws149{word-spacing:5.379840px;}
.ws48{word-spacing:5.439580px;}
.ws73{word-spacing:5.499355px;}
.ws15d{word-spacing:5.559131px;}
.ws92{word-spacing:5.618906px;}
.wsae{word-spacing:5.678682px;}
.ws11a{word-spacing:5.738458px;}
.ws7c{word-spacing:5.798233px;}
.wsde{word-spacing:5.858009px;}
.ws15{word-spacing:5.864026px;}
.ws13d{word-spacing:5.910702px;}
.ws1b3{word-spacing:5.917784px;}
.ws80{word-spacing:5.929754px;}
.ws5f{word-spacing:5.961520px;}
.ws4{word-spacing:5.977560px;}
.wse8{word-spacing:5.978134px;}
.ws7{word-spacing:6.025421px;}
.wsdb{word-spacing:6.037336px;}
.ws110{word-spacing:6.097111px;}
.ws11b{word-spacing:6.156887px;}
.ws8d{word-spacing:6.216662px;}
.ws7d{word-spacing:6.276438px;}
.ws145{word-spacing:6.336214px;}
.wsa9{word-spacing:6.395989px;}
.ws18b{word-spacing:6.444883px;}
.ws51{word-spacing:6.515540px;}
.ws1d{word-spacing:6.563405px;}
.ws63{word-spacing:6.575316px;}
.ws3{word-spacing:6.575340px;}
.wsfc{word-spacing:6.635092px;}
.ws134{word-spacing:6.694867px;}
.wsf{word-spacing:6.724800px;}
.ws61{word-spacing:6.754643px;}
.ws16e{word-spacing:6.814418px;}
.ws16d{word-spacing:6.843733px;}
.ws27{word-spacing:6.874194px;}
.ws84{word-spacing:6.933970px;}
.wsa3{word-spacing:6.993745px;}
.wsb{word-spacing:7.047590px;}
.ws24{word-spacing:7.053521px;}
.wsdd{word-spacing:7.113296px;}
.ws14{word-spacing:7.155187px;}
.ws49{word-spacing:7.173072px;}
.ws3d{word-spacing:7.232848px;}
.ws5c{word-spacing:7.292623px;}
.ws3f{word-spacing:7.412174px;}
.ws6f{word-spacing:7.471950px;}
.ws129{word-spacing:7.531726px;}
.ws86{word-spacing:7.591501px;}
.ws107{word-spacing:7.651277px;}
.ws15f{word-spacing:7.664134px;}
.wse2{word-spacing:7.711052px;}
.ws19d{word-spacing:7.731998px;}
.ws159{word-spacing:7.770828px;}
.ws99{word-spacing:7.830604px;}
.ws9a{word-spacing:7.890379px;}
.ws93{word-spacing:8.009930px;}
.ws15c{word-spacing:8.069706px;}
.ws45{word-spacing:8.129482px;}
.ws31{word-spacing:8.135645px;}
.ws6d{word-spacing:8.189257px;}
.ws4b{word-spacing:8.249033px;}
.ws23{word-spacing:8.308808px;}
.ws70{word-spacing:8.428360px;}
.ws16c{word-spacing:8.454317px;}
.ws79{word-spacing:8.488135px;}
.ws10f{word-spacing:8.607686px;}
.ws57{word-spacing:8.727238px;}
.ws137{word-spacing:8.787013px;}
.wsd{word-spacing:8.822938px;}
.ws195{word-spacing:8.846789px;}
.ws77{word-spacing:8.906564px;}
.ws7a{word-spacing:8.966340px;}
.ws125{word-spacing:9.026116px;}
.ws19a{word-spacing:9.085891px;}
.ws2b{word-spacing:9.145667px;}
.ws108{word-spacing:9.205442px;}
.wsb5{word-spacing:9.265218px;}
.wsa5{word-spacing:9.369967px;}
.ws19c{word-spacing:9.381139px;}
.wsa6{word-spacing:9.384769px;}
.ws126{word-spacing:9.504320px;}
.ws16{word-spacing:9.522317px;}
.wsd4{word-spacing:9.564096px;}
.wsc6{word-spacing:9.683647px;}
.ws17e{word-spacing:9.743423px;}
.ws1a{word-spacing:9.791309px;}
.wsd2{word-spacing:9.803198px;}
.wsd3{word-spacing:9.818700px;}
.ws50{word-spacing:9.862974px;}
.wse7{word-spacing:9.922750px;}
.ws29{word-spacing:9.982525px;}
.ws35{word-spacing:10.042301px;}
.ws1b1{word-spacing:10.161852px;}
.ws8a{word-spacing:10.221628px;}
.wsa0{word-spacing:10.281403px;}
.ws26{word-spacing:10.341179px;}
.ws132{word-spacing:10.400954px;}
.ws12a{word-spacing:10.520506px;}
.ws112{word-spacing:10.640057px;}
.ws33{word-spacing:10.699832px;}
.ws167{word-spacing:10.759608px;}
.ws139{word-spacing:10.819384px;}
.ws146{word-spacing:10.879159px;}
.ws15e{word-spacing:10.894841px;}
.wsb8{word-spacing:10.938935px;}
.ws190{word-spacing:10.998710px;}
.wsc9{word-spacing:11.058486px;}
.ws1c0{word-spacing:11.118262px;}
.wsa8{word-spacing:11.237813px;}
.ws197{word-spacing:11.297588px;}
.ws1b5{word-spacing:11.353759px;}
.wsa4{word-spacing:11.357364px;}
.ws118{word-spacing:11.417140px;}
.ws5d{word-spacing:11.476915px;}
.ws41{word-spacing:11.536691px;}
.ws8f{word-spacing:11.596466px;}
.ws1a1{word-spacing:11.714134px;}
.ws6e{word-spacing:11.716018px;}
.ws10e{word-spacing:11.775793px;}
.ws12b{word-spacing:11.835569px;}
.ws97{word-spacing:11.895344px;}
.ws7f{word-spacing:11.955120px;}
.ws156{word-spacing:12.014896px;}
.wsc{word-spacing:12.050842px;}
.ws1a5{word-spacing:12.074671px;}
.ws19b{word-spacing:12.134447px;}
.ws2a{word-spacing:12.194222px;}
.ws1bf{word-spacing:12.253998px;}
.wsf6{word-spacing:12.313774px;}
.wsf5{word-spacing:12.373549px;}
.ws165{word-spacing:12.422066px;}
.ws164{word-spacing:12.422134px;}
.wsb3{word-spacing:12.433325px;}
.ws69{word-spacing:12.493100px;}
.ws11f{word-spacing:12.552876px;}
.ws103{word-spacing:12.573901px;}
.ws71{word-spacing:12.612652px;}
.wsac{word-spacing:12.672427px;}
.ws10b{word-spacing:12.732203px;}
.ws10{word-spacing:12.750221px;}
.wsc4{word-spacing:12.851754px;}
.ws6b{word-spacing:12.911530px;}
.wscb{word-spacing:12.971305px;}
.ws4a{word-spacing:13.031081px;}
.ws7e{word-spacing:13.090856px;}
.ws1b2{word-spacing:13.150632px;}
.wscd{word-spacing:13.191934px;}
.wscc{word-spacing:13.193215px;}
.ws25{word-spacing:13.210408px;}
.ws30{word-spacing:13.270183px;}
.ws62{word-spacing:13.329959px;}
.ws10d{word-spacing:13.389734px;}
.wsce{word-spacing:13.449510px;}
.wsc8{word-spacing:13.509286px;}
.wsa7{word-spacing:13.569061px;}
.ws101{word-spacing:13.628837px;}
.ws123{word-spacing:13.688612px;}
.ws6a{word-spacing:13.748388px;}
.ws37{word-spacing:13.808164px;}
.ws1{word-spacing:13.848000px;}
.ws198{word-spacing:13.867939px;}
.ws143{word-spacing:13.927715px;}
.ws4e{word-spacing:13.987490px;}
.ws109{word-spacing:14.047266px;}
.wsfb{word-spacing:14.066880px;}
.ws117{word-spacing:14.107042px;}
.ws12f{word-spacing:14.166817px;}
.ws102{word-spacing:14.226593px;}
.wsc1{word-spacing:14.286368px;}
.ws47{word-spacing:14.346144px;}
.ws2{word-spacing:14.346180px;}
.ws67{word-spacing:14.405920px;}
.ws55{word-spacing:14.525471px;}
.ws66{word-spacing:14.585246px;}
.ws3c{word-spacing:14.645022px;}
.ws169{word-spacing:14.704798px;}
.ws44{word-spacing:14.764573px;}
.ws138{word-spacing:14.824349px;}
.ws56{word-spacing:14.884124px;}
.wsc5{word-spacing:14.943900px;}
.wsea{word-spacing:15.003676px;}
.wse9{word-spacing:15.009042px;}
.wsb9{word-spacing:15.063451px;}
.ws11e{word-spacing:15.123227px;}
.wsa{word-spacing:15.224947px;}
.wsc7{word-spacing:15.242778px;}
.ws182{word-spacing:15.259073px;}
.ws14c{word-spacing:15.343913px;}
.ws46{word-spacing:15.362329px;}
.ws130{word-spacing:15.422105px;}
.ws131{word-spacing:15.464632px;}
.ws152{word-spacing:15.481880px;}
.ws12e{word-spacing:15.601432px;}
.ws1af{word-spacing:15.661207px;}
.ws1b{word-spacing:15.709133px;}
.ws88{word-spacing:15.720983px;}
.ws11c{word-spacing:15.780758px;}
.ws13b{word-spacing:15.840534px;}
.ws18f{word-spacing:15.900310px;}
.ws119{word-spacing:16.019861px;}
.ws1b4{word-spacing:16.139412px;}
.ws36{word-spacing:16.318739px;}
.wscf{word-spacing:16.340725px;}
.wsd0{word-spacing:16.344317px;}
.wsb6{word-spacing:16.358801px;}
.ws153{word-spacing:16.498066px;}
.ws94{word-spacing:16.796944px;}
.ws8e{word-spacing:16.828246px;}
.ws168{word-spacing:16.856719px;}
.ws10a{word-spacing:16.916495px;}
.ws18e{word-spacing:16.976270px;}
.ws183{word-spacing:17.016883px;}
.ws90{word-spacing:17.036046px;}
.ws1a2{word-spacing:17.095822px;}
.ws5a{word-spacing:17.334924px;}
.wsa1{word-spacing:17.454475px;}
.ws18c{word-spacing:17.574026px;}
.ws142{word-spacing:17.633802px;}
.ws151{word-spacing:17.753353px;}
.wsb2{word-spacing:17.813129px;}
.ws13e{word-spacing:17.872904px;}
.ws1f{word-spacing:17.932680px;}
.wsb7{word-spacing:17.992456px;}
.ws17f{word-spacing:18.171782px;}
.ws4d{word-spacing:18.231558px;}
.ws179{word-spacing:18.291334px;}
.ws9b{word-spacing:18.351109px;}
.wsd6{word-spacing:18.410885px;}
.ws13c{word-spacing:18.590212px;}
.ws9e{word-spacing:18.649987px;}
.ws9d{word-spacing:18.663266px;}
.wsee{word-spacing:18.686994px;}
.ws9f{word-spacing:18.769538px;}
.ws9{word-spacing:18.775642px;}
.wsd1{word-spacing:18.829314px;}
.ws74{word-spacing:18.948865px;}
.ws19f{word-spacing:19.128192px;}
.wsbc{word-spacing:19.150890px;}
.wsba{word-spacing:19.307519px;}
.ws4f{word-spacing:19.367294px;}
.ws64{word-spacing:19.427070px;}
.ws1a0{word-spacing:19.486846px;}
.ws7b{word-spacing:19.546621px;}
.ws18d{word-spacing:19.606397px;}
.ws100{word-spacing:19.666172px;}
.ws98{word-spacing:19.845499px;}
.wsb4{word-spacing:19.905275px;}
.ws1a6{word-spacing:19.965050px;}
.ws1b6{word-spacing:20.084602px;}
.ws22{word-spacing:20.323704px;}
.ws14b{word-spacing:20.565019px;}
.ws157{word-spacing:20.682358px;}
.ws178{word-spacing:20.742133px;}
.ws16b{word-spacing:20.861684px;}
.wsda{word-spacing:20.981236px;}
.ws13a{word-spacing:21.041011px;}
.ws14a{word-spacing:21.220338px;}
.ws82{word-spacing:21.578992px;}
.ws9c{word-spacing:21.698543px;}
.ws175{word-spacing:21.719975px;}
.ws174{word-spacing:21.722134px;}
.ws173{word-spacing:21.724500px;}
.ws133{word-spacing:21.997421px;}
.ws1c{word-spacing:22.003546px;}
.wsf4{word-spacing:22.176748px;}
.ws17d{word-spacing:22.415850px;}
.ws1c1{word-spacing:22.535401px;}
.ws19{word-spacing:22.541530px;}
.ws120{word-spacing:22.714728px;}
.ws54{word-spacing:22.774504px;}
.ws1be{word-spacing:22.834279px;}
.ws184{word-spacing:22.858247px;}
.ws1a3{word-spacing:22.894055px;}
.ws11d{word-spacing:23.073382px;}
.ws4c{word-spacing:23.432035px;}
.ws154{word-spacing:24.687323px;}
.ws1ac{word-spacing:25.105752px;}
.ws96{word-spacing:25.464406px;}
.ws1b9{word-spacing:25.524181px;}
.ws1b8{word-spacing:25.583957px;}
.ws17c{word-spacing:25.703508px;}
.ws1e{word-spacing:25.769434px;}
.ws17a{word-spacing:26.241488px;}
.ws150{word-spacing:26.600142px;}
.ws177{word-spacing:26.779469px;}
.ws1ab{word-spacing:30.903985px;}
.ws1c4{word-spacing:31.621292px;}
.ws1c5{word-spacing:32.338600px;}
.ws1ae{word-spacing:36.343565px;}
.ws1ad{word-spacing:37.778179px;}
.ws176{word-spacing:38.913916px;}
.ws1bd{word-spacing:39.332345px;}
.ws1ba{word-spacing:39.870325px;}
.ws1a8{word-spacing:41.544042px;}
.ws1bc{word-spacing:43.098208px;}
.ws1bb{word-spacing:48.418236px;}
.ws1c3{word-spacing:48.956216px;}
.ws1aa{word-spacing:52.423201px;}
.ws1a7{word-spacing:54.874001px;}
.ws1a9{word-spacing:70.893862px;}
.ws147{word-spacing:94.884000px;}
.ws186{word-spacing:104.512800px;}
.ws162{word-spacing:109.681807px;}
.ws160{word-spacing:112.201807px;}
.wsf2{word-spacing:126.365256px;}
.ws196{word-spacing:153.334580px;}
.ws161{word-spacing:235.579549px;}
.ws163{word-spacing:242.798704px;}
._11{margin-left:-1189.981062px;}
._14{margin-left:-1130.041251px;}
._13{margin-left:-939.180090px;}
._12{margin-left:-505.644464px;}
._16{margin-left:-473.906001px;}
._17{margin-left:-336.013753px;}
._15{margin-left:-324.511167px;}
._51{margin-left:-83.644800px;}
._0{margin-left:-10.759635px;}
._6{margin-left:-7.075054px;}
._1{margin-left:-5.499355px;}
._5{margin-left:-4.190273px;}
._4{margin-left:-3.000792px;}
._2{margin-left:-1.793268px;}
._10{width:1.943203px;}
._7{width:2.988780px;}
._3{width:4.283956px;}
._3b{width:8.324159px;}
._f{width:12.851754px;}
._59{width:15.242778px;}
._2c{width:17.693578px;}
._d{width:19.606397px;}
._a{width:21.357882px;}
._9{width:22.666964px;}
._37{width:23.796670px;}
._54{width:26.121937px;}
._8{width:28.692288px;}
._b{width:29.887800px;}
._c{width:32.776064px;}
._e{width:34.140383px;}
._3c{width:38.615038px;}
._3d{width:46.186860px;}
._5a{width:47.946012px;}
._5c{width:59.776891px;}
._22{width:71.760402px;}
._5b{width:72.943972px;}
._29{width:76.530481px;}
._1a{width:85.694054px;}
._38{width:86.857200px;}
._23{width:92.054160px;}
._53{width:95.540400px;}
._21{width:97.284510px;}
._2a{width:98.820804px;}
._52{width:104.527200px;}
._25{width:106.573612px;}
._27{width:111.260005px;}
._3a{width:112.819200px;}
._24{width:118.164067px;}
._39{width:121.789200px;}
._1b{width:134.566445px;}
._44{width:153.537227px;}
._3f{width:157.291547px;}
._1c{width:160.090553px;}
._47{width:161.521094px;}
._4a{width:162.549227px;}
._40{width:164.041094px;}
._4c{width:167.983955px;}
._46{width:169.071965px;}
._31{width:170.670809px;}
._3e{width:173.175227px;}
._41{width:175.579230px;}
._1f{width:187.957858px;}
._1d{width:190.259212px;}
._1e{width:196.356316px;}
._28{width:199.548313px;}
._26{width:204.234707px;}
._56{width:211.319063px;}
._48{width:219.707276px;}
._43{width:223.673400px;}
._18{width:229.962056px;}
._20{width:232.143854px;}
._36{width:233.961043px;}
._49{width:235.583400px;}
._42{width:236.899273px;}
._2b{width:239.089759px;}
._35{width:247.948543px;}
._55{width:251.835227px;}
._45{width:254.753854px;}
._57{width:258.307273px;}
._58{width:259.655400px;}
._2d{width:261.433814px;}
._2f{width:295.912282px;}
._4e{width:297.502308px;}
._4f{width:301.895802px;}
._30{width:304.364527px;}
._50{width:306.833252px;}
._4b{width:311.454169px;}
._33{width:322.434644px;}
._4d{width:336.206898px;}
._32{width:350.349764px;}
._19{width:356.040385px;}
._2e{width:424.034935px;}
._34{width:463.486723px;}
.fcb{color:rgb(64,112,161);}
.fc9{color:rgb(97,161,176);}
.fc6{color:rgb(5,41,125);}
.fc8{color:rgb(64,161,112);}
.fc5{color:rgb(143,33,0);}
.fc7{color:rgb(102,102,102);}
.fc4{color:rgb(37,37,37);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(81,81,81);}
.fc1{color:rgb(1,2,2);}
.fca{color:rgb(0,112,33);}
.fc0{color:rgb(95,95,96);}
.fs0{font-size:28.782000px;}
.fsb{font-size:29.887800px;}
.fsa{font-size:35.865600px;}
.fsc{font-size:38.854200px;}
.fs9{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:65.753400px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:143.461800px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y22f{bottom:3.811500px;}
.y1fc{bottom:7.683000px;}
.y207{bottom:7.684500px;}
.y2aa{bottom:13.194000px;}
.y234{bottom:17.233500px;}
.y223{bottom:17.235000px;}
.y1fb{bottom:23.049000px;}
.y2a9{bottom:23.211000px;}
.y220{bottom:24.055500px;}
.y222{bottom:27.252000px;}
.y224{bottom:28.419000px;}
.y281{bottom:29.158500px;}
.y233{bottom:30.031500px;}
.y21e{bottom:30.033000px;}
.y2ac{bottom:32.905500px;}
.y2a8{bottom:32.907000px;}
.y221{bottom:33.229500px;}
.y21f{bottom:34.396500px;}
.y21d{bottom:36.010500px;}
.y1fd{bottom:37.254000px;}
.y2a7{bottom:38.884500px;}
.y2ab{bottom:39.208500px;}
.y282{bottom:42.135000px;}
.y225{bottom:49.080000px;}
.y28a{bottom:50.953500px;}
.y202{bottom:52.951500px;}
.y283{bottom:55.111500px;}
.y1fe{bottom:57.225000px;}
.y284{bottom:68.088000px;}
.y226{bottom:68.266500px;}
.y1ff{bottom:77.136000px;}
.y285{bottom:81.064500px;}
.y227{bottom:87.454500px;}
.y286{bottom:94.041000px;}
.y200{bottom:97.044000px;}
.y228{bottom:106.642500px;}
.y28c{bottom:106.809000px;}
.y287{bottom:107.016000px;}
.y22e{bottom:109.095000px;}
.y4{bottom:110.120550px;}
.y204{bottom:110.808000px;}
.y41{bottom:113.332500px;}
.y201{bottom:116.953500px;}
.y10c{bottom:117.552000px;}
.y15c{bottom:118.713000px;}
.y3{bottom:118.755150px;}
.y288{bottom:119.994000px;}
.y28b{bottom:120.259500px;}
.y251{bottom:121.464000px;}
.y203{bottom:124.257000px;}
.y229{bottom:125.830500px;}
.y2{bottom:127.389750px;}
.y6b{bottom:131.001000px;}
.y40{bottom:131.265000px;}
.y289{bottom:132.970500px;}
.y1{bottom:136.024350px;}
.y250{bottom:139.396500px;}
.y22a{bottom:145.017000px;}
.y5{bottom:146.054700px;}
.y10b{bottom:146.119500px;}
.y95{bottom:149.197500px;}
.y3f{bottom:149.199000px;}
.y15b{bottom:156.901500px;}
.y1ce{bottom:156.931500px;}
.y24f{bottom:157.329000px;}
.y280{bottom:158.011500px;}
.y6a{bottom:159.057000px;}
.y10a{bottom:164.052000px;}
.y235{bottom:164.205000px;}
.y22b{bottom:164.206500px;}
.yc2{bottom:167.130000px;}
.y3e{bottom:167.131500px;}
.y15a{bottom:168.856500px;}
.y24e{bottom:175.261500px;}
.y27f{bottom:175.944000px;}
.y69{bottom:176.989500px;}
.y159{bottom:180.811500px;}
.y109{bottom:181.984500px;}
.y22c{bottom:183.393000px;}
.yc1{bottom:185.062500px;}
.y3d{bottom:185.064000px;}
.y230{bottom:187.233000px;}
.y158{bottom:192.768000px;}
.y255{bottom:193.194000px;}
.y24d{bottom:193.195500px;}
.y27e{bottom:193.878000px;}
.y1cd{bottom:194.029500px;}
.y68{bottom:194.922000px;}
.y108{bottom:200.415000px;}
.y22d{bottom:202.581000px;}
.y3c{bottom:202.996500px;}
.y1f9{bottom:203.232000px;}
.y157{bottom:204.723000px;}
.y24c{bottom:211.128000px;}
.y27d{bottom:211.810500px;}
.y1cc{bottom:211.962000px;}
.y67{bottom:212.856000px;}
.y156{bottom:216.678000px;}
.y107{bottom:218.347500px;}
.y3b{bottom:220.929000px;}
.y1f8{bottom:221.164500px;}
.y1a3{bottom:223.170000px;}
.y2a6{bottom:224.205000px;}
.y155{bottom:228.633000px;}
.y24b{bottom:229.060500px;}
.y27c{bottom:229.743000px;}
.y1cb{bottom:229.894500px;}
.y66{bottom:230.788500px;}
.y106{bottom:236.280000px;}
.y3a{bottom:238.861500px;}
.y1f7{bottom:239.098500px;}
.y154{bottom:240.588000px;}
.y1a2{bottom:241.104000px;}
.y2a5{bottom:242.137500px;}
.y24a{bottom:246.993000px;}
.y27b{bottom:247.675500px;}
.y1ca{bottom:247.828500px;}
.y65{bottom:248.721000px;}
.y153{bottom:252.543000px;}
.y105{bottom:254.214000px;}
.y94{bottom:256.794000px;}
.y39{bottom:256.795500px;}
.y1f6{bottom:257.031000px;}
.y1a1{bottom:259.036500px;}
.y2a4{bottom:260.070000px;}
.y152{bottom:264.498000px;}
.y249{bottom:264.925500px;}
.y27a{bottom:265.608000px;}
.y1c9{bottom:265.761000px;}
.y64{bottom:266.653500px;}
.yc0{bottom:274.726500px;}
.y38{bottom:274.728000px;}
.y1f5{bottom:274.963500px;}
.y151{bottom:276.453000px;}
.y1a0{bottom:276.969000px;}
.y2a3{bottom:278.004000px;}
.y254{bottom:282.858000px;}
.y248{bottom:282.859500px;}
.y279{bottom:283.540500px;}
.y1c8{bottom:283.693500px;}
.y104{bottom:284.443500px;}
.y63{bottom:284.586000px;}
.y150{bottom:288.408000px;}
.y8{bottom:291.234000px;}
.y37{bottom:292.660500px;}
.ybf{bottom:293.004000px;}
.y19f{bottom:294.901500px;}
.y2a2{bottom:295.936500px;}
.y1f4{bottom:298.782000px;}
.y14f{bottom:300.364500px;}
.y247{bottom:300.792000px;}
.y278{bottom:301.474500px;}
.y1c7{bottom:301.626000px;}
.y62{bottom:302.518500px;}
.y7{bottom:305.634000px;}
.y36{bottom:310.593000px;}
.ybe{bottom:310.936500px;}
.y14e{bottom:312.319500px;}
.y103{bottom:314.674500px;}
.y19e{bottom:315.076500px;}
.y2a1{bottom:317.145000px;}
.y246{bottom:318.724500px;}
.y277{bottom:319.407000px;}
.y1c6{bottom:319.558500px;}
.y6{bottom:320.034000px;}
.y61{bottom:320.452500px;}
.y14d{bottom:324.274500px;}
.y35{bottom:328.525500px;}
.ybd{bottom:328.870500px;}
.y1f3{bottom:330.336000px;}
.y102{bottom:332.607000px;}
.y19d{bottom:333.009000px;}
.y2b1{bottom:334.135500px;}
.y2a0{bottom:335.077500px;}
.y14c{bottom:336.229500px;}
.y245{bottom:336.657000px;}
.y276{bottom:337.339500px;}
.y1c5{bottom:337.491000px;}
.y60{bottom:338.385000px;}
.y34{bottom:346.458000px;}
.ybc{bottom:346.803000px;}
.y14b{bottom:348.184500px;}
.y1f2{bottom:348.270000px;}
.y101{bottom:350.541000px;}
.y19c{bottom:350.941500px;}
.y2b0{bottom:352.069500px;}
.y29f{bottom:353.010000px;}
.y244{bottom:354.589500px;}
.y275{bottom:355.272000px;}
.y1c4{bottom:355.425000px;}
.y14a{bottom:360.139500px;}
.y5f{bottom:360.153000px;}
.y2c1{bottom:364.390500px;}
.y33{bottom:364.392000px;}
.ybb{bottom:364.735500px;}
.y21b{bottom:364.824000px;}
.y1f1{bottom:366.202500px;}
.y100{bottom:368.473500px;}
.y19b{bottom:368.874000px;}
.y2af{bottom:370.002000px;}
.y29e{bottom:370.942500px;}
.y149{bottom:372.094500px;}
.y243{bottom:372.522000px;}
.y274{bottom:373.204500px;}
.y1c3{bottom:373.357500px;}
.y5e{bottom:378.087000px;}
.y2c0{bottom:382.323000px;}
.y32{bottom:382.324500px;}
.y93{bottom:382.332000px;}
.yba{bottom:382.668000px;}
.y21a{bottom:382.758000px;}
.y148{bottom:384.049500px;}
.y1f0{bottom:384.135000px;}
.yff{bottom:386.406000px;}
.y184{bottom:387.031500px;}
.y2ae{bottom:387.934500px;}
.y29d{bottom:388.876500px;}
.y19a{bottom:389.049000px;}
.y253{bottom:390.454500px;}
.y242{bottom:390.456000px;}
.y1c2{bottom:391.290000px;}
.y147{bottom:396.004500px;}
.y5d{bottom:396.019500px;}
.y31{bottom:400.257000px;}
.y92{bottom:400.264500px;}
.yb9{bottom:400.600500px;}
.y219{bottom:400.690500px;}
.y1ef{bottom:402.067500px;}
.y199{bottom:406.981500px;}
.y146{bottom:407.961000px;}
.y241{bottom:408.388500px;}
.y273{bottom:409.173000px;}
.y1c1{bottom:409.222500px;}
.y2b2{bottom:409.471500px;}
.yfe{bottom:410.787000px;}
.y29c{bottom:412.161000px;}
.y5c{bottom:413.952000px;}
.y183{bottom:414.073500px;}
.y2ad{bottom:416.472000px;}
.y30{bottom:418.189500px;}
.y91{bottom:418.197000px;}
.yb8{bottom:418.533000px;}
.y218{bottom:418.623000px;}
.y145{bottom:419.916000px;}
.y1ee{bottom:420.000000px;}
.y198{bottom:424.914000px;}
.y240{bottom:426.321000px;}
.y272{bottom:427.105500px;}
.y1c0{bottom:427.155000px;}
.y144{bottom:431.871000px;}
.y5b{bottom:431.884500px;}
.y182{bottom:432.006000px;}
.y29b{bottom:436.093500px;}
.y2f{bottom:436.122000px;}
.y90{bottom:436.131000px;}
.y217{bottom:436.555500px;}
.y1ed{bottom:437.932500px;}
.yb7{bottom:441.978000px;}
.yfd{bottom:443.034000px;}
.y143{bottom:443.826000px;}
.y23f{bottom:444.253500px;}
.y271{bottom:445.038000px;}
.y1bf{bottom:445.087500px;}
.y197{bottom:445.089000px;}
.y5a{bottom:449.817000px;}
.y181{bottom:449.938500px;}
.yda{bottom:454.054500px;}
.y8f{bottom:454.063500px;}
.y216{bottom:454.488000px;}
.y142{bottom:455.781000px;}
.y1ec{bottom:455.866500px;}
.yfc{bottom:460.968000px;}
.y23e{bottom:462.186000px;}
.y270{bottom:462.972000px;}
.y196{bottom:463.021500px;}
.y2e{bottom:465.588000px;}
.y29a{bottom:466.050000px;}
.y141{bottom:467.736000px;}
.y59{bottom:467.749500px;}
.y180{bottom:467.872500px;}
.yb6{bottom:471.949500px;}
.y2bf{bottom:471.987000px;}
.yd9{bottom:471.988500px;}
.y8e{bottom:471.996000px;}
.y215{bottom:472.420500px;}
.y1eb{bottom:473.799000px;}
.yfb{bottom:478.900500px;}
.y140{bottom:479.691000px;}
.y23d{bottom:480.118500px;}
.y26f{bottom:480.904500px;}
.y195{bottom:480.954000px;}
.y299{bottom:483.982500px;}
.y17f{bottom:485.805000px;}
.y58{bottom:489.519000px;}
.yb5{bottom:489.882000px;}
.y2be{bottom:489.919500px;}
.yd8{bottom:489.921000px;}
.y8d{bottom:489.928500px;}
.y214{bottom:490.354500px;}
.y13f{bottom:491.646000px;}
.y1ea{bottom:491.731500px;}
.yfa{bottom:496.833000px;}
.y252{bottom:498.051000px;}
.y23c{bottom:498.052500px;}
.y26e{bottom:498.837000px;}
.y194{bottom:498.886500px;}
.y298{bottom:501.915000px;}
.y13e{bottom:503.601000px;}
.y17e{bottom:503.737500px;}
.y2d{bottom:507.430500px;}
.y57{bottom:507.451500px;}
.yb4{bottom:507.814500px;}
.yd7{bottom:507.853500px;}
.y8c{bottom:507.861000px;}
.y213{bottom:508.287000px;}
.y1e9{bottom:509.664000px;}
.yf9{bottom:514.765500px;}
.y13d{bottom:515.557500px;}
.y23b{bottom:515.985000px;}
.y26d{bottom:516.769500px;}
.y193{bottom:516.819000px;}
.y297{bottom:519.849000px;}
.y17d{bottom:521.670000px;}
.y2c{bottom:522.373500px;}
.y56{bottom:525.384000px;}
.yb3{bottom:525.747000px;}
.yd6{bottom:525.786000px;}
.y8b{bottom:525.793500px;}
.y212{bottom:526.219500px;}
.y13c{bottom:527.512500px;}
.yf8{bottom:533.196000px;}
.y23a{bottom:533.917500px;}
.y1e8{bottom:534.661500px;}
.y26c{bottom:534.702000px;}
.y1be{bottom:534.751500px;}
.y192{bottom:536.994000px;}
.y296{bottom:537.781500px;}
.y2b{bottom:538.455000px;}
.y13b{bottom:539.467500px;}
.y17c{bottom:539.602500px;}
.y55{bottom:543.318000px;}
.yb2{bottom:543.679500px;}
.yd5{bottom:543.718500px;}
.y8a{bottom:543.727500px;}
.y211{bottom:544.152000px;}
.yf7{bottom:551.128500px;}
.y13a{bottom:551.422500px;}
.y239{bottom:551.850000px;}
.y26b{bottom:552.636000px;}
.y1bd{bottom:552.685500px;}
.y2a{bottom:553.399500px;}
.y191{bottom:554.926500px;}
.y295{bottom:555.714000px;}
.y17b{bottom:557.535000px;}
.y54{bottom:561.250500px;}
.yb1{bottom:561.613500px;}
.yd4{bottom:561.651000px;}
.y89{bottom:561.660000px;}
.y139{bottom:563.377500px;}
.y1e7{bottom:566.215500px;}
.y29{bottom:568.344000px;}
.yf6{bottom:569.061000px;}
.y238{bottom:569.782500px;}
.y26a{bottom:570.568500px;}
.y1bc{bottom:570.618000px;}
.y190{bottom:572.859000px;}
.y294{bottom:573.646500px;}
.y138{bottom:575.332500px;}
.y17a{bottom:575.469000px;}
.y210{bottom:576.021000px;}
.y53{bottom:579.183000px;}
.yb0{bottom:579.546000px;}
.y2bd{bottom:579.583500px;}
.yd3{bottom:579.585000px;}
.y88{bottom:579.592500px;}
.y28{bottom:583.287000px;}
.y1e6{bottom:584.148000px;}
.yf5{bottom:586.993500px;}
.y137{bottom:587.287500px;}
.y269{bottom:588.501000px;}
.y1bb{bottom:588.550500px;}
.y293{bottom:591.579000px;}
.y18f{bottom:593.034000px;}
.y179{bottom:593.401500px;}
.y52{bottom:597.115500px;}
.yaf{bottom:597.478500px;}
.y2bc{bottom:597.516000px;}
.yd2{bottom:597.517500px;}
.y87{bottom:597.525000px;}
.y27{bottom:598.231500px;}
.y136{bottom:599.242500px;}
.y1e5{bottom:602.080500px;}
.yf4{bottom:604.927500px;}
.y268{bottom:606.433500px;}
.y1ba{bottom:606.483000px;}
.y20f{bottom:607.891500px;}
.y292{bottom:609.511500px;}
.y18e{bottom:610.966500px;}
.y135{bottom:611.197500px;}
.y178{bottom:611.334000px;}
.y26{bottom:613.174500px;}
.y51{bottom:615.048000px;}
.yae{bottom:615.411000px;}
.yd1{bottom:615.450000px;}
.y86{bottom:615.457500px;}
.y237{bottom:619.396500px;}
.y1e4{bottom:620.014500px;}
.yf3{bottom:622.860000px;}
.y134{bottom:623.154000px;}
.y267{bottom:624.366000px;}
.y1b9{bottom:624.415500px;}
.y20e{bottom:625.824000px;}
.y291{bottom:627.445500px;}
.y25{bottom:628.119000px;}
.y18d{bottom:628.899000px;}
.y177{bottom:629.266500px;}
.y50{bottom:632.980500px;}
.yad{bottom:633.343500px;}
.yd0{bottom:633.382500px;}
.y85{bottom:633.390000px;}
.y133{bottom:635.109000px;}
.y1e3{bottom:637.947000px;}
.yf2{bottom:640.792500px;}
.y266{bottom:642.298500px;}
.y1b8{bottom:642.348000px;}
.y24{bottom:643.063500px;}
.y20d{bottom:643.756500px;}
.y290{bottom:645.378000px;}
.y18c{bottom:646.833000px;}
.y236{bottom:646.894500px;}
.y132{bottom:647.064000px;}
.y176{bottom:647.199000px;}
.y4f{bottom:650.914500px;}
.yac{bottom:651.276000px;}
.ycf{bottom:651.315000px;}
.y84{bottom:651.324000px;}
.y1e2{bottom:655.879500px;}
.y23{bottom:658.006500px;}
.yf1{bottom:658.725000px;}
.y131{bottom:659.019000px;}
.y265{bottom:660.232500px;}
.y1b7{bottom:660.282000px;}
.y20c{bottom:661.689000px;}
.y28f{bottom:663.310500px;}
.y175{bottom:665.131500px;}
.y232{bottom:666.321000px;}
.y18b{bottom:667.006500px;}
.y4e{bottom:668.847000px;}
.yab{bottom:669.210000px;}
.yce{bottom:669.247500px;}
.y2b5{bottom:669.249000px;}
.y83{bottom:669.256500px;}
.y130{bottom:670.974000px;}
.y1e1{bottom:673.812000px;}
.y22{bottom:674.088000px;}
.yf0{bottom:676.657500px;}
.y264{bottom:678.165000px;}
.y1b6{bottom:678.214500px;}
.y20b{bottom:679.623000px;}
.y28e{bottom:681.243000px;}
.y12f{bottom:682.929000px;}
.y174{bottom:683.065500px;}
.y18a{bottom:684.939000px;}
.y4d{bottom:686.779500px;}
.yaa{bottom:687.142500px;}
.y2bb{bottom:687.180000px;}
.ycd{bottom:687.181500px;}
.y82{bottom:687.189000px;}
.y21{bottom:689.032500px;}
.y1e0{bottom:691.744500px;}
.yef{bottom:694.591500px;}
.y12e{bottom:694.884000px;}
.y263{bottom:696.097500px;}
.y1b5{bottom:696.147000px;}
.y20a{bottom:697.555500px;}
.y28d{bottom:699.175500px;}
.y173{bottom:700.998000px;}
.y189{bottom:702.871500px;}
.y20{bottom:703.977000px;}
.y4c{bottom:704.712000px;}
.ycc{bottom:705.114000px;}
.y81{bottom:705.121500px;}
.ya9{bottom:705.304500px;}
.y12d{bottom:706.839000px;}
.y1df{bottom:709.677000px;}
.yee{bottom:712.524000px;}
.y262{bottom:714.030000px;}
.y1b4{bottom:714.079500px;}
.y12c{bottom:718.795500px;}
.y1f{bottom:718.920000px;}
.y172{bottom:718.930500px;}
.y188{bottom:720.805500px;}
.y4b{bottom:722.644500px;}
.ycb{bottom:723.046500px;}
.y80{bottom:723.054000px;}
.ya8{bottom:723.237000px;}
.y1de{bottom:727.611000px;}
.y12b{bottom:730.750500px;}
.y261{bottom:731.962500px;}
.y1b3{bottom:732.012000px;}
.y1e{bottom:733.864500px;}
.y171{bottom:736.863000px;}
.yed{bottom:738.148500px;}
.y187{bottom:738.738000px;}
.y4a{bottom:740.577000px;}
.yca{bottom:740.979000px;}
.ya7{bottom:741.169500px;}
.y12a{bottom:742.705500px;}
.y1dd{bottom:745.543500px;}
.y7f{bottom:745.743000px;}
.y1d{bottom:748.809000px;}
.y260{bottom:749.895000px;}
.y1b2{bottom:749.944500px;}
.y129{bottom:754.660500px;}
.y170{bottom:754.795500px;}
.y186{bottom:756.670500px;}
.y49{bottom:758.511000px;}
.yc9{bottom:758.911500px;}
.ya6{bottom:759.103500px;}
.y209{bottom:761.602500px;}
.y1dc{bottom:763.476000px;}
.y1c{bottom:764.889000px;}
.y128{bottom:766.615500px;}
.ye{bottom:767.491500px;}
.y25f{bottom:767.829000px;}
.y1b1{bottom:767.878500px;}
.yec{bottom:770.395500px;}
.y16f{bottom:772.728000px;}
.y7e{bottom:773.830500px;}
.y185{bottom:774.603000px;}
.y48{bottom:776.443500px;}
.y2ba{bottom:776.844000px;}
.yc8{bottom:776.845500px;}
.ya5{bottom:777.036000px;}
.y127{bottom:778.570500px;}
.y1b{bottom:779.833500px;}
.y208{bottom:781.030500px;}
.y1db{bottom:781.408500px;}
.yd{bottom:784.041000px;}
.y25e{bottom:785.761500px;}
.y1b0{bottom:785.811000px;}
.yeb{bottom:788.329500px;}
.y126{bottom:790.525500px;}
.y16e{bottom:790.662000px;}
.y7d{bottom:791.764500px;}
.y47{bottom:794.376000px;}
.y2b9{bottom:794.776500px;}
.y1a{bottom:794.778000px;}
.ya4{bottom:794.968500px;}
.y1da{bottom:799.341000px;}
.y206{bottom:800.457000px;}
.y125{bottom:802.480500px;}
.y25d{bottom:803.694000px;}
.y1af{bottom:803.743500px;}
.yea{bottom:806.262000px;}
.y16d{bottom:808.594500px;}
.y7c{bottom:809.697000px;}
.y19{bottom:809.721000px;}
.y46{bottom:812.308500px;}
.yc7{bottom:812.710500px;}
.ya3{bottom:812.901000px;}
.y124{bottom:814.435500px;}
.y1d9{bottom:817.275000px;}
.y1ae{bottom:821.676000px;}
.ye9{bottom:824.194500px;}
.y18{bottom:824.665500px;}
.y123{bottom:826.392000px;}
.y16c{bottom:826.527000px;}
.y7b{bottom:827.629500px;}
.y45{bottom:830.241000px;}
.yc6{bottom:830.643000px;}
.ya2{bottom:830.833500px;}
.y1d8{bottom:835.207500px;}
.y122{bottom:838.347000px;}
.y1ad{bottom:839.608500px;}
.y17{bottom:839.610000px;}
.y25c{bottom:839.662500px;}
.ye8{bottom:842.127000px;}
.y16b{bottom:844.459500px;}
.y7a{bottom:845.562000px;}
.y44{bottom:848.175000px;}
.yc5{bottom:848.575500px;}
.ya1{bottom:848.766000px;}
.y121{bottom:850.302000px;}
.y1d7{bottom:853.140000px;}
.y16{bottom:854.553000px;}
.y1ac{bottom:857.541000px;}
.y25b{bottom:857.595000px;}
.ye7{bottom:860.059500px;}
.y120{bottom:862.257000px;}
.y16a{bottom:862.392000px;}
.y79{bottom:863.494500px;}
.y43{bottom:866.508000px;}
.ya0{bottom:866.700000px;}
.y15{bottom:869.497500px;}
.y1d6{bottom:871.072500px;}
.y11f{bottom:874.212000px;}
.y1ab{bottom:875.475000px;}
.y25a{bottom:875.527500px;}
.ye6{bottom:877.992000px;}
.y169{bottom:880.326000px;}
.y231{bottom:881.035500px;}
.y78{bottom:881.427000px;}
.y42{bottom:884.440500px;}
.y14{bottom:884.442000px;}
.y9f{bottom:884.632500px;}
.y11e{bottom:886.167000px;}
.y1d5{bottom:889.005000px;}
.y1aa{bottom:893.407500px;}
.y259{bottom:893.460000px;}
.ye5{bottom:895.926000px;}
.y11d{bottom:898.122000px;}
.y168{bottom:898.258500px;}
.y77{bottom:899.361000px;}
.y21c{bottom:900.462000px;}
.y2b8{bottom:902.373000px;}
.yc4{bottom:902.374500px;}
.y9e{bottom:902.565000px;}
.yc{bottom:905.592000px;}
.y1d4{bottom:906.937500px;}
.y11c{bottom:910.077000px;}
.y1a9{bottom:911.340000px;}
.y258{bottom:911.392500px;}
.ye4{bottom:913.858500px;}
.y76{bottom:920.299500px;}
.yc3{bottom:920.307000px;}
.y9d{bottom:920.497500px;}
.y11b{bottom:922.032000px;}
.y1d3{bottom:924.871500px;}
.y2b4{bottom:926.269500px;}
.y1a8{bottom:929.272500px;}
.y257{bottom:929.326500px;}
.ye3{bottom:931.791000px;}
.y11a{bottom:933.988500px;}
.y75{bottom:938.239500px;}
.y9c{bottom:938.430000px;}
.y119{bottom:945.943500px;}
.y1a7{bottom:947.205000px;}
.y205{bottom:948.103500px;}
.yb{bottom:948.792000px;}
.ye2{bottom:949.723500px;}
.y167{bottom:949.731000px;}
.y256{bottom:952.479000px;}
.y13{bottom:955.027500px;}
.y74{bottom:956.172000px;}
.y118{bottom:957.898500px;}
.y9b{bottom:961.875000px;}
.y166{bottom:962.881500px;}
.y1a6{bottom:965.139000px;}
.y1fa{bottom:967.530000px;}
.ye1{bottom:967.656000px;}
.y117{bottom:969.853500px;}
.y12{bottom:973.521000px;}
.y73{bottom:974.104500px;}
.y1d2{bottom:975.435000px;}
.y165{bottom:976.032000px;}
.y116{bottom:981.808500px;}
.y1a5{bottom:983.071500px;}
.ye0{bottom:985.588500px;}
.y1d1{bottom:988.585500px;}
.y164{bottom:989.184000px;}
.y9a{bottom:991.846500px;}
.ya{bottom:991.992000px;}
.y2b7{bottom:992.037000px;}
.y72{bottom:992.038500px;}
.y11{bottom:992.235000px;}
.y115{bottom:993.763500px;}
.y1d0{bottom:1001.736000px;}
.y163{bottom:1002.334500px;}
.ydf{bottom:1003.522500px;}
.y114{bottom:1005.718500px;}
.y1a4{bottom:1008.736500px;}
.y99{bottom:1009.779000px;}
.y2b6{bottom:1009.969500px;}
.y71{bottom:1009.971000px;}
.y1cf{bottom:1014.886500px;}
.y162{bottom:1015.485000px;}
.y2b3{bottom:1015.933500px;}
.y113{bottom:1017.673500px;}
.yde{bottom:1021.455000px;}
.y98{bottom:1027.711500px;}
.y70{bottom:1027.903500px;}
.y161{bottom:1028.635500px;}
.y112{bottom:1029.628500px;}
.y9{bottom:1037.031000px;}
.y10{bottom:1039.309500px;}
.ydd{bottom:1039.387500px;}
.y111{bottom:1041.585000px;}
.y160{bottom:1041.786000px;}
.y6f{bottom:1045.836000px;}
.y97{bottom:1051.729500px;}
.y110{bottom:1053.540000px;}
.y15f{bottom:1054.936500px;}
.ydc{bottom:1057.320000px;}
.y6e{bottom:1063.768500px;}
.y10f{bottom:1065.495000px;}
.ydb{bottom:1075.252500px;}
.y15e{bottom:1075.896000px;}
.y10e{bottom:1077.450000px;}
.yf{bottom:1081.152000px;}
.y6d{bottom:1081.701000px;}
.y10d{bottom:1089.405000px;}
.y15d{bottom:1096.048500px;}
.y96{bottom:1099.633500px;}
.y6c{bottom:1099.635000px;}
.h1{height:22.008111px;}
.h1b{height:24.209280px;}
.hd{height:24.675533px;}
.h16{height:26.731690px;}
.h13{height:28.787846px;}
.h12{height:28.955218px;}
.h11{height:31.382100px;}
.he{height:32.900573px;}
.h1a{height:33.665702px;}
.h2{height:36.703125px;}
.h17{height:37.013299px;}
.hb{height:37.228493px;}
.ha{height:37.820275px;}
.h8{height:41.006062px;}
.h9{height:41.125613px;}
.h1c{height:41.425613px;}
.h14{height:42.022247px;}
.hf{height:44.831700px;}
.h7{height:45.238339px;}
.h10{height:50.477846px;}
.hc{height:50.483846px;}
.h3{height:55.054688px;}
.h18{height:56.066100px;}
.h6{height:98.701718px;}
.h4{height:110.109375px;}
.h15{height:144.658815px;}
.h19{height:211.727940px;}
.h5{height:1188.000000px;}
.h0{height:1263.000000px;}
.w3{width:328.771725px;}
.w4{width:756.174525px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:12.207000px;}
.x27{left:22.312500px;}
.x26{left:24.553500px;}
.x49{left:40.237500px;}
.x24{left:42.286500px;}
.x48{left:50.385000px;}
.x61{left:58.899000px;}
.x1{left:63.723150px;}
.xd{left:73.446000px;}
.x1c{left:74.881500px;}
.x19{left:81.499500px;}
.x60{left:85.401000px;}
.xc{left:88.390500px;}
.x14{left:89.739000px;}
.x2{left:93.264000px;}
.x4d{left:95.535000px;}
.x15{left:103.333500px;}
.x4a{left:104.733000px;}
.x23{left:105.954000px;}
.x22{left:107.119500px;}
.x21{left:110.389500px;}
.x1a{left:113.047500px;}
.x30{left:116.089500px;}
.x1f{left:118.197000px;}
.x4b{left:120.016500px;}
.x25{left:130.078500px;}
.x62{left:134.538000px;}
.x31{left:139.398000px;}
.x4e{left:141.730500px;}
.x65{left:145.579500px;}
.x3{left:153.660000px;}
.x32{left:162.708000px;}
.x4f{left:164.826000px;}
.x1b{left:170.083500px;}
.x5f{left:176.644500px;}
.x66{left:184.074000px;}
.x33{left:186.016500px;}
.x50{left:187.924500px;}
.x20{left:193.566000px;}
.x16{left:197.317500px;}
.xe{left:203.430000px;}
.x5{left:210.264000px;}
.x77{left:219.897000px;}
.x67{left:222.570000px;}
.x5e{left:225.016500px;}
.x7{left:230.251500px;}
.x34{left:232.636500px;}
.x51{left:234.118500px;}
.x4{left:242.763000px;}
.x2c{left:247.494000px;}
.x29{left:254.667000px;}
.x2a{left:255.982500px;}
.x52{left:257.217000px;}
.x68{left:261.066000px;}
.x35{left:279.255000px;}
.x53{left:280.314000px;}
.x76{left:291.681000px;}
.x69{left:299.560500px;}
.x36{left:302.563500px;}
.x37{left:325.872000px;}
.x74{left:330.207000px;}
.x75{left:331.807500px;}
.x6{left:336.375000px;}
.x6a{left:338.056500px;}
.x38{left:349.182000px;}
.x39{left:372.490500px;}
.x6b{left:376.552500px;}
.x4c{left:389.916000px;}
.x3a{left:395.800500px;}
.x5d{left:411.334500px;}
.x6c{left:415.048500px;}
.x3b{left:419.109000px;}
.x3c{left:442.420500px;}
.x6d{left:453.543000px;}
.x3d{left:465.729000px;}
.xf{left:467.967000px;}
.x2e{left:475.768500px;}
.x1e{left:476.932500px;}
.x13{left:479.922000px;}
.x10{left:482.910000px;}
.x11{left:484.260000px;}
.x3e{left:489.037500px;}
.x6e{left:492.039000px;}
.x12{left:497.854500px;}
.x78{left:500.335500px;}
.x54{left:511.288500px;}
.x3f{left:512.347500px;}
.x9{left:527.409000px;}
.x2f{left:528.907500px;}
.x6f{left:530.536500px;}
.x1d{left:532.480500px;}
.x55{left:534.385500px;}
.x40{left:535.656000px;}
.x18{left:537.556500px;}
.xb{left:547.068000px;}
.x56{left:557.482500px;}
.x41{left:558.966000px;}
.x70{left:569.031000px;}
.x8{left:574.512000px;}
.x57{left:580.579500px;}
.x42{left:582.274500px;}
.x2b{left:587.176500px;}
.x17{left:596.784000px;}
.x64{left:601.500000px;}
.x58{left:603.676500px;}
.x43{left:605.584500px;}
.x71{left:607.527000px;}
.x2d{left:608.595000px;}
.x63{left:609.826500px;}
.x59{left:626.775000px;}
.x44{left:628.893000px;}
.x72{left:646.023000px;}
.x5a{left:649.872000px;}
.x45{left:652.203000px;}
.xa{left:653.520000px;}
.x5b{left:672.969000px;}
.x46{left:675.513000px;}
.x73{left:684.519000px;}
.x5c{left:696.067500px;}
.x47{left:698.821500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.941333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000125pt;}
.ls33{letter-spacing:0.000473pt;}
.ls10{letter-spacing:0.002079pt;}
.ls2c{letter-spacing:0.002591pt;}
.ls29{letter-spacing:0.002906pt;}
.ls17{letter-spacing:0.003733pt;}
.ls1c{letter-spacing:0.037194pt;}
.ls36{letter-spacing:0.741348pt;}
.ls4{letter-spacing:2.182963pt;}
.ls1{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.655711pt;}
.ls31{letter-spacing:2.656533pt;}
.ls5{letter-spacing:2.656693pt;}
.ls1a{letter-spacing:2.657067pt;}
.ls7{letter-spacing:2.660237pt;}
.lsa{letter-spacing:2.661867pt;}
.lsf{letter-spacing:3.800156pt;}
.ls11{letter-spacing:4.165258pt;}
.ls16{letter-spacing:8.850079pt;}
.ls28{letter-spacing:11.804745pt;}
.ls12{letter-spacing:11.806477pt;}
.ls1d{letter-spacing:14.282342pt;}
.ls1b{letter-spacing:14.319536pt;}
.ls15{letter-spacing:14.756984pt;}
.ls27{letter-spacing:14.757812pt;}
.ls14{letter-spacing:14.762050pt;}
.ls3{letter-spacing:15.099733pt;}
.lse{letter-spacing:16.327720pt;}
.ls34{letter-spacing:17.569867pt;}
.ls2f{letter-spacing:19.372662pt;}
.ls2b{letter-spacing:20.097995pt;}
.lsc{letter-spacing:20.495925pt;}
.ls8{letter-spacing:21.610682pt;}
.ls24{letter-spacing:21.970422pt;}
.lsb{letter-spacing:22.012533pt;}
.ls1f{letter-spacing:22.151756pt;}
.ls2e{letter-spacing:22.375200pt;}
.ls19{letter-spacing:22.402823pt;}
.ls2a{letter-spacing:22.988662pt;}
.ls35{letter-spacing:23.697995pt;}
.ls23{letter-spacing:23.714422pt;}
.ls18{letter-spacing:24.708716pt;}
.ls2{letter-spacing:26.566586pt;}
.ls26{letter-spacing:27.501089pt;}
.lsd{letter-spacing:28.131810pt;}
.ls32{letter-spacing:29.655329pt;}
.ls25{letter-spacing:30.109089pt;}
.ls9{letter-spacing:30.465867pt;}
.ls30{letter-spacing:32.588533pt;}
.ls22{letter-spacing:33.303756pt;}
.ls20{letter-spacing:33.799756pt;}
.ls1e{letter-spacing:34.002422pt;}
.ls21{letter-spacing:39.362422pt;}
.ls13{letter-spacing:64.940745pt;}
.wse6{word-spacing:-53.133867pt;}
.wsbb{word-spacing:-14.760588pt;}
.ws5{word-spacing:-13.283467pt;}
.ws20{word-spacing:-13.262246pt;}
.wsec{word-spacing:-12.028410pt;}
.ws6{word-spacing:-11.955200pt;}
.ws60{word-spacing:-10.626800pt;}
.ws148{word-spacing:-8.634267pt;}
.wse5{word-spacing:-2.964870pt;}
.ws14d{word-spacing:-2.951282pt;}
.wsfe{word-spacing:-2.333147pt;}
.ws113{word-spacing:-1.731745pt;}
.wsdc{word-spacing:-0.956410pt;}
.wsff{word-spacing:-0.850142pt;}
.ws91{word-spacing:-0.797008pt;}
.ws40{word-spacing:-0.743874pt;}
.ws144{word-spacing:-0.584473pt;}
.ws106{word-spacing:-0.425071pt;}
.ws3e{word-spacing:-0.371937pt;}
.wsb0{word-spacing:-0.265669pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws116{word-spacing:-0.106268pt;}
.wse3{word-spacing:-0.053134pt;}
.ws185{word-spacing:-0.042507pt;}
.ws14e{word-spacing:-0.037194pt;}
.ws187{word-spacing:-0.031881pt;}
.wsef{word-spacing:-0.026567pt;}
.wse4{word-spacing:-0.014579pt;}
.ws81{word-spacing:-0.014183pt;}
.ws0{word-spacing:0.000000pt;}
.ws13f{word-spacing:0.053134pt;}
.ws85{word-spacing:0.159402pt;}
.ws39{word-spacing:0.212535pt;}
.ws14f{word-spacing:0.318803pt;}
.ws16a{word-spacing:0.371937pt;}
.wsd7{word-spacing:0.423043pt;}
.wsd9{word-spacing:0.425071pt;}
.wsd8{word-spacing:0.428060pt;}
.ws115{word-spacing:0.478205pt;}
.ws75{word-spacing:0.531339pt;}
.ws43{word-spacing:0.584473pt;}
.ws12c{word-spacing:0.637606pt;}
.ws76{word-spacing:0.690740pt;}
.ws21{word-spacing:0.743874pt;}
.ws32{word-spacing:0.850142pt;}
.ws3b{word-spacing:0.903276pt;}
.ws10c{word-spacing:0.956410pt;}
.wsf1{word-spacing:0.989350pt;}
.ws3a{word-spacing:1.009543pt;}
.ws5b{word-spacing:1.062677pt;}
.wsfa{word-spacing:1.115811pt;}
.wsad{word-spacing:1.168945pt;}
.ws2c{word-spacing:1.222079pt;}
.wsf0{word-spacing:1.324092pt;}
.ws83{word-spacing:1.328347pt;}
.wsa2{word-spacing:1.381481pt;}
.wsf8{word-spacing:1.421227pt;}
.wsbd{word-spacing:1.432641pt;}
.ws122{word-spacing:1.540882pt;}
.ws6c{word-spacing:1.594016pt;}
.ws105{word-spacing:1.647150pt;}
.wsab{word-spacing:1.806551pt;}
.ws52{word-spacing:1.827810pt;}
.ws58{word-spacing:1.859685pt;}
.ws87{word-spacing:1.912819pt;}
.ws170{word-spacing:1.941311pt;}
.wse{word-spacing:1.960653pt;}
.ws16f{word-spacing:1.965953pt;}
.ws155{word-spacing:2.072221pt;}
.ws121{word-spacing:2.125355pt;}
.wsb1{word-spacing:2.178489pt;}
.ws1b0{word-spacing:2.231622pt;}
.wsed{word-spacing:2.253932pt;}
.ws72{word-spacing:2.284756pt;}
.wseb{word-spacing:2.291126pt;}
.wsca{word-spacing:2.337890pt;}
.ws2f{word-spacing:2.391024pt;}
.ws12{word-spacing:2.438861pt;}
.ws111{word-spacing:2.444158pt;}
.ws95{word-spacing:2.497292pt;}
.ws5e{word-spacing:2.550426pt;}
.wsd5{word-spacing:2.603559pt;}
.ws114{word-spacing:2.656693pt;}
.ws42{word-spacing:2.709827pt;}
.ws192{word-spacing:2.802138pt;}
.ws141{word-spacing:2.816095pt;}
.ws194{word-spacing:2.826140pt;}
.wsf9{word-spacing:2.869229pt;}
.wsf7{word-spacing:2.893356pt;}
.wsbf{word-spacing:2.908609pt;}
.wsbe{word-spacing:2.922363pt;}
.ws11{word-spacing:2.964890pt;}
.ws172{word-spacing:3.018644pt;}
.ws171{word-spacing:3.022512pt;}
.ws104{word-spacing:3.026106pt;}
.wse1{word-spacing:3.028630pt;}
.wsdf{word-spacing:3.044268pt;}
.wse0{word-spacing:3.047230pt;}
.ws15a{word-spacing:3.081764pt;}
.ws8b{word-spacing:3.134898pt;}
.ws59{word-spacing:3.188032pt;}
.ws180{word-spacing:3.191497pt;}
.ws166{word-spacing:3.241166pt;}
.ws8c{word-spacing:3.294300pt;}
.wsaf{word-spacing:3.347434pt;}
.ws89{word-spacing:3.400567pt;}
.ws127{word-spacing:3.453701pt;}
.ws38{word-spacing:3.506835pt;}
.ws13{word-spacing:3.586560pt;}
.ws1c2{word-spacing:3.613103pt;}
.ws68{word-spacing:3.666237pt;}
.wsf3{word-spacing:3.719360pt;}
.ws140{word-spacing:3.719371pt;}
.ws15b{word-spacing:3.772505pt;}
.ws65{word-spacing:3.825638pt;}
.ws124{word-spacing:3.878772pt;}
.ws28{word-spacing:3.931906pt;}
.ws199{word-spacing:4.038174pt;}
.ws158{word-spacing:4.091308pt;}
.ws136{word-spacing:4.144442pt;}
.ws2e{word-spacing:4.197575pt;}
.ws1a4{word-spacing:4.250709pt;}
.ws53{word-spacing:4.250720pt;}
.ws188{word-spacing:4.270038pt;}
.ws189{word-spacing:4.289837pt;}
.ws18a{word-spacing:4.289897pt;}
.ws191{word-spacing:4.291830pt;}
.ws193{word-spacing:4.295230pt;}
.ws128{word-spacing:4.303843pt;}
.ws18{word-spacing:4.303872pt;}
.ws1b7{word-spacing:4.356977pt;}
.ws78{word-spacing:4.410111pt;}
.wsfd{word-spacing:4.419949pt;}
.ws17{word-spacing:4.447334pt;}
.ws19e{word-spacing:4.463245pt;}
.ws8{word-spacing:4.495155pt;}
.wsc0{word-spacing:4.516379pt;}
.ws17b{word-spacing:4.569513pt;}
.ws12d{word-spacing:4.622646pt;}
.ws181{word-spacing:4.629615pt;}
.ws1c6{word-spacing:4.639889pt;}
.ws135{word-spacing:4.649200pt;}
.wsc3{word-spacing:4.661874pt;}
.wsc2{word-spacing:4.675780pt;}
.wsaa{word-spacing:4.728914pt;}
.ws34{word-spacing:4.782048pt;}
.ws149{word-spacing:4.782080pt;}
.ws48{word-spacing:4.835182pt;}
.ws73{word-spacing:4.888316pt;}
.ws15d{word-spacing:4.941450pt;}
.ws92{word-spacing:4.994583pt;}
.wsae{word-spacing:5.047717pt;}
.ws11a{word-spacing:5.100851pt;}
.ws7c{word-spacing:5.153985pt;}
.wsde{word-spacing:5.207119pt;}
.ws15{word-spacing:5.212467pt;}
.ws13d{word-spacing:5.253957pt;}
.ws1b3{word-spacing:5.260253pt;}
.ws80{word-spacing:5.270893pt;}
.ws5f{word-spacing:5.299129pt;}
.ws4{word-spacing:5.313387pt;}
.wse8{word-spacing:5.313897pt;}
.ws7{word-spacing:5.355930pt;}
.wsdb{word-spacing:5.366521pt;}
.ws110{word-spacing:5.419654pt;}
.ws11b{word-spacing:5.472788pt;}
.ws8d{word-spacing:5.525922pt;}
.ws7d{word-spacing:5.579056pt;}
.ws145{word-spacing:5.632190pt;}
.wsa9{word-spacing:5.685324pt;}
.ws18b{word-spacing:5.728785pt;}
.ws51{word-spacing:5.791591pt;}
.ws1d{word-spacing:5.834138pt;}
.ws63{word-spacing:5.844725pt;}
.ws3{word-spacing:5.844747pt;}
.wsfc{word-spacing:5.897859pt;}
.ws134{word-spacing:5.950993pt;}
.wsf{word-spacing:5.977600pt;}
.ws61{word-spacing:6.004127pt;}
.ws16e{word-spacing:6.057261pt;}
.ws16d{word-spacing:6.083318pt;}
.ws27{word-spacing:6.110395pt;}
.ws84{word-spacing:6.163529pt;}
.wsa3{word-spacing:6.216662pt;}
.wsb{word-spacing:6.264525pt;}
.ws24{word-spacing:6.269796pt;}
.wsdd{word-spacing:6.322930pt;}
.ws14{word-spacing:6.360166pt;}
.ws49{word-spacing:6.376064pt;}
.ws3d{word-spacing:6.429198pt;}
.ws5c{word-spacing:6.482332pt;}
.ws3f{word-spacing:6.588599pt;}
.ws6f{word-spacing:6.641733pt;}
.ws129{word-spacing:6.694867pt;}
.ws86{word-spacing:6.748001pt;}
.ws107{word-spacing:6.801135pt;}
.ws15f{word-spacing:6.812563pt;}
.wse2{word-spacing:6.854269pt;}
.ws19d{word-spacing:6.872887pt;}
.ws159{word-spacing:6.907403pt;}
.ws99{word-spacing:6.960537pt;}
.ws9a{word-spacing:7.013670pt;}
.ws93{word-spacing:7.119938pt;}
.ws15c{word-spacing:7.173072pt;}
.ws45{word-spacing:7.226206pt;}
.ws31{word-spacing:7.231684pt;}
.ws6d{word-spacing:7.279340pt;}
.ws4b{word-spacing:7.332474pt;}
.ws23{word-spacing:7.385607pt;}
.ws70{word-spacing:7.491875pt;}
.ws16c{word-spacing:7.514948pt;}
.ws79{word-spacing:7.545009pt;}
.ws10f{word-spacing:7.651277pt;}
.ws57{word-spacing:7.757545pt;}
.ws137{word-spacing:7.810678pt;}
.wsd{word-spacing:7.842611pt;}
.ws195{word-spacing:7.863812pt;}
.ws77{word-spacing:7.916946pt;}
.ws7a{word-spacing:7.970080pt;}
.ws125{word-spacing:8.023214pt;}
.ws19a{word-spacing:8.076348pt;}
.ws2b{word-spacing:8.129482pt;}
.ws108{word-spacing:8.182615pt;}
.wsb5{word-spacing:8.235749pt;}
.wsa5{word-spacing:8.328860pt;}
.ws19c{word-spacing:8.338790pt;}
.wsa6{word-spacing:8.342017pt;}
.ws126{word-spacing:8.448285pt;}
.ws16{word-spacing:8.464282pt;}
.wsd4{word-spacing:8.501419pt;}
.wsc6{word-spacing:8.607686pt;}
.ws17e{word-spacing:8.660820pt;}
.ws1a{word-spacing:8.703386pt;}
.wsd2{word-spacing:8.713954pt;}
.wsd3{word-spacing:8.727733pt;}
.ws50{word-spacing:8.767088pt;}
.wse7{word-spacing:8.820222pt;}
.ws29{word-spacing:8.873356pt;}
.ws35{word-spacing:8.926490pt;}
.ws1b1{word-spacing:9.032757pt;}
.ws8a{word-spacing:9.085891pt;}
.wsa0{word-spacing:9.139025pt;}
.ws26{word-spacing:9.192159pt;}
.ws132{word-spacing:9.245293pt;}
.ws12a{word-spacing:9.351561pt;}
.ws112{word-spacing:9.457828pt;}
.ws33{word-spacing:9.510962pt;}
.ws167{word-spacing:9.564096pt;}
.ws139{word-spacing:9.617230pt;}
.ws146{word-spacing:9.670364pt;}
.ws15e{word-spacing:9.684303pt;}
.wsb8{word-spacing:9.723498pt;}
.ws190{word-spacing:9.776631pt;}
.wsc9{word-spacing:9.829765pt;}
.ws1c0{word-spacing:9.882899pt;}
.wsa8{word-spacing:9.989167pt;}
.ws197{word-spacing:10.042301pt;}
.ws1b5{word-spacing:10.092230pt;}
.wsa4{word-spacing:10.095435pt;}
.ws118{word-spacing:10.148569pt;}
.ws5d{word-spacing:10.201702pt;}
.ws41{word-spacing:10.254836pt;}
.ws8f{word-spacing:10.307970pt;}
.ws1a1{word-spacing:10.412563pt;}
.ws6e{word-spacing:10.414238pt;}
.ws10e{word-spacing:10.467372pt;}
.ws12b{word-spacing:10.520506pt;}
.ws97{word-spacing:10.573639pt;}
.ws7f{word-spacing:10.626773pt;}
.ws156{word-spacing:10.679907pt;}
.wsc{word-spacing:10.711859pt;}
.ws1a5{word-spacing:10.733041pt;}
.ws19b{word-spacing:10.786175pt;}
.ws2a{word-spacing:10.839309pt;}
.ws1bf{word-spacing:10.892443pt;}
.wsf6{word-spacing:10.945577pt;}
.wsf5{word-spacing:10.998710pt;}
.ws165{word-spacing:11.041837pt;}
.ws164{word-spacing:11.041897pt;}
.wsb3{word-spacing:11.051844pt;}
.ws69{word-spacing:11.104978pt;}
.ws11f{word-spacing:11.158112pt;}
.ws103{word-spacing:11.176801pt;}
.ws71{word-spacing:11.211246pt;}
.wsac{word-spacing:11.264380pt;}
.ws10b{word-spacing:11.317514pt;}
.ws10{word-spacing:11.333530pt;}
.wsc4{word-spacing:11.423781pt;}
.ws6b{word-spacing:11.476915pt;}
.wscb{word-spacing:11.530049pt;}
.ws4a{word-spacing:11.583183pt;}
.ws7e{word-spacing:11.636317pt;}
.ws1b2{word-spacing:11.689451pt;}
.wscd{word-spacing:11.726163pt;}
.wscc{word-spacing:11.727302pt;}
.ws25{word-spacing:11.742585pt;}
.ws30{word-spacing:11.795718pt;}
.ws62{word-spacing:11.848852pt;}
.ws10d{word-spacing:11.901986pt;}
.wsce{word-spacing:11.955120pt;}
.wsc8{word-spacing:12.008254pt;}
.wsa7{word-spacing:12.061388pt;}
.ws101{word-spacing:12.114522pt;}
.ws123{word-spacing:12.167655pt;}
.ws6a{word-spacing:12.220789pt;}
.ws37{word-spacing:12.273923pt;}
.ws1{word-spacing:12.309333pt;}
.ws198{word-spacing:12.327057pt;}
.ws143{word-spacing:12.380191pt;}
.ws4e{word-spacing:12.433325pt;}
.ws109{word-spacing:12.486459pt;}
.wsfb{word-spacing:12.503893pt;}
.ws117{word-spacing:12.539593pt;}
.ws12f{word-spacing:12.592726pt;}
.ws102{word-spacing:12.645860pt;}
.wsc1{word-spacing:12.698994pt;}
.ws47{word-spacing:12.752128pt;}
.ws2{word-spacing:12.752160pt;}
.ws67{word-spacing:12.805262pt;}
.ws55{word-spacing:12.911530pt;}
.ws66{word-spacing:12.964663pt;}
.ws3c{word-spacing:13.017797pt;}
.ws169{word-spacing:13.070931pt;}
.ws44{word-spacing:13.124065pt;}
.ws138{word-spacing:13.177199pt;}
.ws56{word-spacing:13.230333pt;}
.wsc5{word-spacing:13.283467pt;}
.wsea{word-spacing:13.336601pt;}
.wse9{word-spacing:13.341371pt;}
.wsb9{word-spacing:13.389734pt;}
.ws11e{word-spacing:13.442868pt;}
.wsa{word-spacing:13.533286pt;}
.wsc7{word-spacing:13.549136pt;}
.ws182{word-spacing:13.563620pt;}
.ws14c{word-spacing:13.639034pt;}
.ws46{word-spacing:13.655404pt;}
.ws130{word-spacing:13.708538pt;}
.ws131{word-spacing:13.746339pt;}
.ws152{word-spacing:13.761671pt;}
.ws12e{word-spacing:13.867939pt;}
.ws1af{word-spacing:13.921073pt;}
.ws1b{word-spacing:13.963674pt;}
.ws88{word-spacing:13.974207pt;}
.ws11c{word-spacing:14.027341pt;}
.ws13b{word-spacing:14.080475pt;}
.ws18f{word-spacing:14.133609pt;}
.ws119{word-spacing:14.239876pt;}
.ws1b4{word-spacing:14.346144pt;}
.ws36{word-spacing:14.505546pt;}
.wscf{word-spacing:14.525089pt;}
.wsd0{word-spacing:14.528282pt;}
.wsb6{word-spacing:14.541156pt;}
.ws153{word-spacing:14.664947pt;}
.ws94{word-spacing:14.930617pt;}
.ws8e{word-spacing:14.958441pt;}
.ws168{word-spacing:14.983750pt;}
.ws10a{word-spacing:15.036884pt;}
.ws18e{word-spacing:15.090018pt;}
.ws183{word-spacing:15.126118pt;}
.ws90{word-spacing:15.143152pt;}
.ws1a2{word-spacing:15.196286pt;}
.ws5a{word-spacing:15.408821pt;}
.wsa1{word-spacing:15.515089pt;}
.ws18c{word-spacing:15.621357pt;}
.ws142{word-spacing:15.674491pt;}
.ws151{word-spacing:15.780758pt;}
.wsb2{word-spacing:15.833892pt;}
.ws13e{word-spacing:15.887026pt;}
.ws1f{word-spacing:15.940160pt;}
.wsb7{word-spacing:15.993294pt;}
.ws17f{word-spacing:16.152695pt;}
.ws4d{word-spacing:16.205829pt;}
.ws179{word-spacing:16.258963pt;}
.ws9b{word-spacing:16.312097pt;}
.wsd6{word-spacing:16.365231pt;}
.ws13c{word-spacing:16.524633pt;}
.ws9e{word-spacing:16.577766pt;}
.ws9d{word-spacing:16.589570pt;}
.wsee{word-spacing:16.610662pt;}
.ws9f{word-spacing:16.684034pt;}
.ws9{word-spacing:16.689459pt;}
.wsd1{word-spacing:16.737168pt;}
.ws74{word-spacing:16.843436pt;}
.ws19f{word-spacing:17.002837pt;}
.wsbc{word-spacing:17.023013pt;}
.wsba{word-spacing:17.162239pt;}
.ws4f{word-spacing:17.215373pt;}
.ws64{word-spacing:17.268507pt;}
.ws1a0{word-spacing:17.321641pt;}
.ws7b{word-spacing:17.374774pt;}
.ws18d{word-spacing:17.427908pt;}
.ws100{word-spacing:17.481042pt;}
.ws98{word-spacing:17.640444pt;}
.wsb4{word-spacing:17.693578pt;}
.ws1a6{word-spacing:17.746711pt;}
.ws1b6{word-spacing:17.852979pt;}
.ws22{word-spacing:18.065515pt;}
.ws14b{word-spacing:18.280017pt;}
.ws157{word-spacing:18.384318pt;}
.ws178{word-spacing:18.437452pt;}
.ws16b{word-spacing:18.543719pt;}
.wsda{word-spacing:18.649987pt;}
.ws13a{word-spacing:18.703121pt;}
.ws14a{word-spacing:18.862523pt;}
.ws82{word-spacing:19.181326pt;}
.ws9c{word-spacing:19.287594pt;}
.ws175{word-spacing:19.306644pt;}
.ws174{word-spacing:19.308563pt;}
.ws173{word-spacing:19.310667pt;}
.ws133{word-spacing:19.553263pt;}
.ws1c{word-spacing:19.558707pt;}
.wsf4{word-spacing:19.712665pt;}
.ws17d{word-spacing:19.925200pt;}
.ws1c1{word-spacing:20.031468pt;}
.ws19{word-spacing:20.036915pt;}
.ws120{word-spacing:20.190869pt;}
.ws54{word-spacing:20.244003pt;}
.ws1be{word-spacing:20.297137pt;}
.ws184{word-spacing:20.318442pt;}
.ws1a3{word-spacing:20.350271pt;}
.ws11d{word-spacing:20.509673pt;}
.ws4c{word-spacing:20.828476pt;}
.ws154{word-spacing:21.944287pt;}
.ws1ac{word-spacing:22.316224pt;}
.ws96{word-spacing:22.635027pt;}
.ws1b9{word-spacing:22.688161pt;}
.ws1b8{word-spacing:22.741295pt;}
.ws17c{word-spacing:22.847563pt;}
.ws1e{word-spacing:22.906163pt;}
.ws17a{word-spacing:23.325767pt;}
.ws150{word-spacing:23.644571pt;}
.ws177{word-spacing:23.803972pt;}
.ws1ab{word-spacing:27.470209pt;}
.ws1c4{word-spacing:28.107815pt;}
.ws1c5{word-spacing:28.745422pt;}
.ws1ae{word-spacing:32.305391pt;}
.ws1ad{word-spacing:33.580604pt;}
.ws176{word-spacing:34.590147pt;}
.ws1bd{word-spacing:34.962084pt;}
.ws1ba{word-spacing:35.440289pt;}
.ws1a8{word-spacing:36.928037pt;}
.ws1bc{word-spacing:38.309518pt;}
.ws1bb{word-spacing:43.038432pt;}
.ws1c3{word-spacing:43.516637pt;}
.ws1aa{word-spacing:46.598401pt;}
.ws1a7{word-spacing:48.776890pt;}
.ws1a9{word-spacing:63.016766pt;}
.ws147{word-spacing:84.341333pt;}
.ws186{word-spacing:92.900267pt;}
.ws162{word-spacing:97.494939pt;}
.ws160{word-spacing:99.734939pt;}
.wsf2{word-spacing:112.324672pt;}
.ws196{word-spacing:136.297404pt;}
.ws161{word-spacing:209.404043pt;}
.ws163{word-spacing:215.821070pt;}
._11{margin-left:-1057.760944pt;}
._14{margin-left:-1004.481112pt;}
._13{margin-left:-834.826747pt;}
._12{margin-left:-449.461746pt;}
._16{margin-left:-421.249779pt;}
._17{margin-left:-298.678891pt;}
._15{margin-left:-288.454371pt;}
._51{margin-left:-74.350933pt;}
._0{margin-left:-9.564120pt;}
._6{margin-left:-6.288937pt;}
._1{margin-left:-4.888316pt;}
._5{margin-left:-3.724687pt;}
._4{margin-left:-2.667371pt;}
._2{margin-left:-1.594016pt;}
._10{width:1.727292pt;}
._7{width:2.656693pt;}
._3{width:3.807961pt;}
._3b{width:7.399253pt;}
._f{width:11.423781pt;}
._59{width:13.549136pt;}
._2c{width:15.727625pt;}
._d{width:17.427908pt;}
._a{width:18.984784pt;}
._9{width:20.148413pt;}
._37{width:21.152595pt;}
._54{width:23.219500pt;}
._8{width:25.504256pt;}
._b{width:26.566933pt;}
._c{width:29.134279pt;}
._e{width:30.347007pt;}
._3c{width:34.324478pt;}
._3d{width:41.054987pt;}
._5a{width:42.618677pt;}
._5c{width:53.135014pt;}
._22{width:63.787024pt;}
._5b{width:64.839086pt;}
._29{width:68.027094pt;}
._1a{width:76.172493pt;}
._38{width:77.206400pt;}
._23{width:81.825920pt;}
._53{width:84.924800pt;}
._21{width:86.475120pt;}
._2a{width:87.840715pt;}
._52{width:92.913067pt;}
._25{width:94.732099pt;}
._27{width:98.897782pt;}
._3a{width:100.283733pt;}
._24{width:105.034726pt;}
._39{width:108.257067pt;}
._1b{width:119.614618pt;}
._44{width:136.477535pt;}
._3f{width:139.814709pt;}
._1c{width:142.302714pt;}
._47{width:143.574306pt;}
._4a{width:144.488202pt;}
._40{width:145.814306pt;}
._4c{width:149.319071pt;}
._46{width:150.286191pt;}
._31{width:151.707386pt;}
._3e{width:153.933535pt;}
._41{width:156.070427pt;}
._1f{width:167.073651pt;}
._1d{width:169.119299pt;}
._1e{width:174.538947pt;}
._28{width:177.376278pt;}
._26{width:181.541962pt;}
._56{width:187.839167pt;}
._48{width:195.295357pt;}
._43{width:198.820800pt;}
._18{width:204.410717pt;}
._20{width:206.350093pt;}
._36{width:207.965372pt;}
._49{width:209.407467pt;}
._42{width:210.577132pt;}
._2b{width:212.524230pt;}
._35{width:220.398705pt;}
._55{width:223.853535pt;}
._45{width:226.447870pt;}
._57{width:229.606465pt;}
._58{width:230.804800pt;}
._2d{width:232.385613pt;}
._2f{width:263.033139pt;}
._4e{width:264.446496pt;}
._4f{width:268.351824pt;}
._30{width:270.546246pt;}
._50{width:272.740669pt;}
._4b{width:276.848150pt;}
._33{width:286.608573pt;}
._4d{width:298.850576pt;}
._32{width:311.422013pt;}
._19{width:316.480342pt;}
._2e{width:376.919942pt;}
._34{width:411.988198pt;}
.fs0{font-size:25.584000pt;}
.fsb{font-size:26.566933pt;}
.fsa{font-size:31.880533pt;}
.fsc{font-size:34.537067pt;}
.fs9{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:58.447467pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:127.521600pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y22f{bottom:3.388000pt;}
.y1fc{bottom:6.829333pt;}
.y207{bottom:6.830667pt;}
.y2aa{bottom:11.728000pt;}
.y234{bottom:15.318667pt;}
.y223{bottom:15.320000pt;}
.y1fb{bottom:20.488000pt;}
.y2a9{bottom:20.632000pt;}
.y220{bottom:21.382667pt;}
.y222{bottom:24.224000pt;}
.y224{bottom:25.261333pt;}
.y281{bottom:25.918667pt;}
.y233{bottom:26.694667pt;}
.y21e{bottom:26.696000pt;}
.y2ac{bottom:29.249333pt;}
.y2a8{bottom:29.250667pt;}
.y221{bottom:29.537333pt;}
.y21f{bottom:30.574667pt;}
.y21d{bottom:32.009333pt;}
.y1fd{bottom:33.114667pt;}
.y2a7{bottom:34.564000pt;}
.y2ab{bottom:34.852000pt;}
.y282{bottom:37.453333pt;}
.y225{bottom:43.626667pt;}
.y28a{bottom:45.292000pt;}
.y202{bottom:47.068000pt;}
.y283{bottom:48.988000pt;}
.y1fe{bottom:50.866667pt;}
.y284{bottom:60.522667pt;}
.y226{bottom:60.681333pt;}
.y1ff{bottom:68.565333pt;}
.y285{bottom:72.057333pt;}
.y227{bottom:77.737333pt;}
.y286{bottom:83.592000pt;}
.y200{bottom:86.261333pt;}
.y228{bottom:94.793333pt;}
.y28c{bottom:94.941333pt;}
.y287{bottom:95.125333pt;}
.y22e{bottom:96.973333pt;}
.y4{bottom:97.884933pt;}
.y204{bottom:98.496000pt;}
.y41{bottom:100.740000pt;}
.y201{bottom:103.958667pt;}
.y10c{bottom:104.490667pt;}
.y15c{bottom:105.522667pt;}
.y3{bottom:105.560133pt;}
.y288{bottom:106.661333pt;}
.y28b{bottom:106.897333pt;}
.y251{bottom:107.968000pt;}
.y203{bottom:110.450667pt;}
.y229{bottom:111.849333pt;}
.y2{bottom:113.235333pt;}
.y6b{bottom:116.445333pt;}
.y40{bottom:116.680000pt;}
.y289{bottom:118.196000pt;}
.y1{bottom:120.910533pt;}
.y250{bottom:123.908000pt;}
.y22a{bottom:128.904000pt;}
.y5{bottom:129.826400pt;}
.y10b{bottom:129.884000pt;}
.y95{bottom:132.620000pt;}
.y3f{bottom:132.621333pt;}
.y15b{bottom:139.468000pt;}
.y1ce{bottom:139.494667pt;}
.y24f{bottom:139.848000pt;}
.y280{bottom:140.454667pt;}
.y6a{bottom:141.384000pt;}
.y10a{bottom:145.824000pt;}
.y235{bottom:145.960000pt;}
.y22b{bottom:145.961333pt;}
.yc2{bottom:148.560000pt;}
.y3e{bottom:148.561333pt;}
.y15a{bottom:150.094667pt;}
.y24e{bottom:155.788000pt;}
.y27f{bottom:156.394667pt;}
.y69{bottom:157.324000pt;}
.y159{bottom:160.721333pt;}
.y109{bottom:161.764000pt;}
.y22c{bottom:163.016000pt;}
.yc1{bottom:164.500000pt;}
.y3d{bottom:164.501333pt;}
.y230{bottom:166.429333pt;}
.y158{bottom:171.349333pt;}
.y255{bottom:171.728000pt;}
.y24d{bottom:171.729333pt;}
.y27e{bottom:172.336000pt;}
.y1cd{bottom:172.470667pt;}
.y68{bottom:173.264000pt;}
.y108{bottom:178.146667pt;}
.y22d{bottom:180.072000pt;}
.y3c{bottom:180.441333pt;}
.y1f9{bottom:180.650667pt;}
.y157{bottom:181.976000pt;}
.y24c{bottom:187.669333pt;}
.y27d{bottom:188.276000pt;}
.y1cc{bottom:188.410667pt;}
.y67{bottom:189.205333pt;}
.y156{bottom:192.602667pt;}
.y107{bottom:194.086667pt;}
.y3b{bottom:196.381333pt;}
.y1f8{bottom:196.590667pt;}
.y1a3{bottom:198.373333pt;}
.y2a6{bottom:199.293333pt;}
.y155{bottom:203.229333pt;}
.y24b{bottom:203.609333pt;}
.y27c{bottom:204.216000pt;}
.y1cb{bottom:204.350667pt;}
.y66{bottom:205.145333pt;}
.y106{bottom:210.026667pt;}
.y3a{bottom:212.321333pt;}
.y1f7{bottom:212.532000pt;}
.y154{bottom:213.856000pt;}
.y1a2{bottom:214.314667pt;}
.y2a5{bottom:215.233333pt;}
.y24a{bottom:219.549333pt;}
.y27b{bottom:220.156000pt;}
.y1ca{bottom:220.292000pt;}
.y65{bottom:221.085333pt;}
.y153{bottom:224.482667pt;}
.y105{bottom:225.968000pt;}
.y94{bottom:228.261333pt;}
.y39{bottom:228.262667pt;}
.y1f6{bottom:228.472000pt;}
.y1a1{bottom:230.254667pt;}
.y2a4{bottom:231.173333pt;}
.y152{bottom:235.109333pt;}
.y249{bottom:235.489333pt;}
.y27a{bottom:236.096000pt;}
.y1c9{bottom:236.232000pt;}
.y64{bottom:237.025333pt;}
.yc0{bottom:244.201333pt;}
.y38{bottom:244.202667pt;}
.y1f5{bottom:244.412000pt;}
.y151{bottom:245.736000pt;}
.y1a0{bottom:246.194667pt;}
.y2a3{bottom:247.114667pt;}
.y254{bottom:251.429333pt;}
.y248{bottom:251.430667pt;}
.y279{bottom:252.036000pt;}
.y1c8{bottom:252.172000pt;}
.y104{bottom:252.838667pt;}
.y63{bottom:252.965333pt;}
.y150{bottom:256.362667pt;}
.y8{bottom:258.874667pt;}
.y37{bottom:260.142667pt;}
.ybf{bottom:260.448000pt;}
.y19f{bottom:262.134667pt;}
.y2a2{bottom:263.054667pt;}
.y1f4{bottom:265.584000pt;}
.y14f{bottom:266.990667pt;}
.y247{bottom:267.370667pt;}
.y278{bottom:267.977333pt;}
.y1c7{bottom:268.112000pt;}
.y62{bottom:268.905333pt;}
.y7{bottom:271.674667pt;}
.y36{bottom:276.082667pt;}
.ybe{bottom:276.388000pt;}
.y14e{bottom:277.617333pt;}
.y103{bottom:279.710667pt;}
.y19e{bottom:280.068000pt;}
.y2a1{bottom:281.906667pt;}
.y246{bottom:283.310667pt;}
.y277{bottom:283.917333pt;}
.y1c6{bottom:284.052000pt;}
.y6{bottom:284.474667pt;}
.y61{bottom:284.846667pt;}
.y14d{bottom:288.244000pt;}
.y35{bottom:292.022667pt;}
.ybd{bottom:292.329333pt;}
.y1f3{bottom:293.632000pt;}
.y102{bottom:295.650667pt;}
.y19d{bottom:296.008000pt;}
.y2b1{bottom:297.009333pt;}
.y2a0{bottom:297.846667pt;}
.y14c{bottom:298.870667pt;}
.y245{bottom:299.250667pt;}
.y276{bottom:299.857333pt;}
.y1c5{bottom:299.992000pt;}
.y60{bottom:300.786667pt;}
.y34{bottom:307.962667pt;}
.ybc{bottom:308.269333pt;}
.y14b{bottom:309.497333pt;}
.y1f2{bottom:309.573333pt;}
.y101{bottom:311.592000pt;}
.y19c{bottom:311.948000pt;}
.y2b0{bottom:312.950667pt;}
.y29f{bottom:313.786667pt;}
.y244{bottom:315.190667pt;}
.y275{bottom:315.797333pt;}
.y1c4{bottom:315.933333pt;}
.y14a{bottom:320.124000pt;}
.y5f{bottom:320.136000pt;}
.y2c1{bottom:323.902667pt;}
.y33{bottom:323.904000pt;}
.ybb{bottom:324.209333pt;}
.y21b{bottom:324.288000pt;}
.y1f1{bottom:325.513333pt;}
.y100{bottom:327.532000pt;}
.y19b{bottom:327.888000pt;}
.y2af{bottom:328.890667pt;}
.y29e{bottom:329.726667pt;}
.y149{bottom:330.750667pt;}
.y243{bottom:331.130667pt;}
.y274{bottom:331.737333pt;}
.y1c3{bottom:331.873333pt;}
.y5e{bottom:336.077333pt;}
.y2c0{bottom:339.842667pt;}
.y32{bottom:339.844000pt;}
.y93{bottom:339.850667pt;}
.yba{bottom:340.149333pt;}
.y21a{bottom:340.229333pt;}
.y148{bottom:341.377333pt;}
.y1f0{bottom:341.453333pt;}
.yff{bottom:343.472000pt;}
.y184{bottom:344.028000pt;}
.y2ae{bottom:344.830667pt;}
.y29d{bottom:345.668000pt;}
.y19a{bottom:345.821333pt;}
.y253{bottom:347.070667pt;}
.y242{bottom:347.072000pt;}
.y1c2{bottom:347.813333pt;}
.y147{bottom:352.004000pt;}
.y5d{bottom:352.017333pt;}
.y31{bottom:355.784000pt;}
.y92{bottom:355.790667pt;}
.yb9{bottom:356.089333pt;}
.y219{bottom:356.169333pt;}
.y1ef{bottom:357.393333pt;}
.y199{bottom:361.761333pt;}
.y146{bottom:362.632000pt;}
.y241{bottom:363.012000pt;}
.y273{bottom:363.709333pt;}
.y1c1{bottom:363.753333pt;}
.y2b2{bottom:363.974667pt;}
.yfe{bottom:365.144000pt;}
.y29c{bottom:366.365333pt;}
.y5c{bottom:367.957333pt;}
.y183{bottom:368.065333pt;}
.y2ad{bottom:370.197333pt;}
.y30{bottom:371.724000pt;}
.y91{bottom:371.730667pt;}
.yb8{bottom:372.029333pt;}
.y218{bottom:372.109333pt;}
.y145{bottom:373.258667pt;}
.y1ee{bottom:373.333333pt;}
.y198{bottom:377.701333pt;}
.y240{bottom:378.952000pt;}
.y272{bottom:379.649333pt;}
.y1c0{bottom:379.693333pt;}
.y144{bottom:383.885333pt;}
.y5b{bottom:383.897333pt;}
.y182{bottom:384.005333pt;}
.y29b{bottom:387.638667pt;}
.y2f{bottom:387.664000pt;}
.y90{bottom:387.672000pt;}
.y217{bottom:388.049333pt;}
.y1ed{bottom:389.273333pt;}
.yb7{bottom:392.869333pt;}
.yfd{bottom:393.808000pt;}
.y143{bottom:394.512000pt;}
.y23f{bottom:394.892000pt;}
.y271{bottom:395.589333pt;}
.y1bf{bottom:395.633333pt;}
.y197{bottom:395.634667pt;}
.y5a{bottom:399.837333pt;}
.y181{bottom:399.945333pt;}
.yda{bottom:403.604000pt;}
.y8f{bottom:403.612000pt;}
.y216{bottom:403.989333pt;}
.y142{bottom:405.138667pt;}
.y1ec{bottom:405.214667pt;}
.yfc{bottom:409.749333pt;}
.y23e{bottom:410.832000pt;}
.y270{bottom:411.530667pt;}
.y196{bottom:411.574667pt;}
.y2e{bottom:413.856000pt;}
.y29a{bottom:414.266667pt;}
.y141{bottom:415.765333pt;}
.y59{bottom:415.777333pt;}
.y180{bottom:415.886667pt;}
.yb6{bottom:419.510667pt;}
.y2bf{bottom:419.544000pt;}
.yd9{bottom:419.545333pt;}
.y8e{bottom:419.552000pt;}
.y215{bottom:419.929333pt;}
.y1eb{bottom:421.154667pt;}
.yfb{bottom:425.689333pt;}
.y140{bottom:426.392000pt;}
.y23d{bottom:426.772000pt;}
.y26f{bottom:427.470667pt;}
.y195{bottom:427.514667pt;}
.y299{bottom:430.206667pt;}
.y17f{bottom:431.826667pt;}
.y58{bottom:435.128000pt;}
.yb5{bottom:435.450667pt;}
.y2be{bottom:435.484000pt;}
.yd8{bottom:435.485333pt;}
.y8d{bottom:435.492000pt;}
.y214{bottom:435.870667pt;}
.y13f{bottom:437.018667pt;}
.y1ea{bottom:437.094667pt;}
.yfa{bottom:441.629333pt;}
.y252{bottom:442.712000pt;}
.y23c{bottom:442.713333pt;}
.y26e{bottom:443.410667pt;}
.y194{bottom:443.454667pt;}
.y298{bottom:446.146667pt;}
.y13e{bottom:447.645333pt;}
.y17e{bottom:447.766667pt;}
.y2d{bottom:451.049333pt;}
.y57{bottom:451.068000pt;}
.yb4{bottom:451.390667pt;}
.yd7{bottom:451.425333pt;}
.y8c{bottom:451.432000pt;}
.y213{bottom:451.810667pt;}
.y1e9{bottom:453.034667pt;}
.yf9{bottom:457.569333pt;}
.y13d{bottom:458.273333pt;}
.y23b{bottom:458.653333pt;}
.y26d{bottom:459.350667pt;}
.y193{bottom:459.394667pt;}
.y297{bottom:462.088000pt;}
.y17d{bottom:463.706667pt;}
.y2c{bottom:464.332000pt;}
.y56{bottom:467.008000pt;}
.yb3{bottom:467.330667pt;}
.yd6{bottom:467.365333pt;}
.y8b{bottom:467.372000pt;}
.y212{bottom:467.750667pt;}
.y13c{bottom:468.900000pt;}
.yf8{bottom:473.952000pt;}
.y23a{bottom:474.593333pt;}
.y1e8{bottom:475.254667pt;}
.y26c{bottom:475.290667pt;}
.y1be{bottom:475.334667pt;}
.y192{bottom:477.328000pt;}
.y296{bottom:478.028000pt;}
.y2b{bottom:478.626667pt;}
.y13b{bottom:479.526667pt;}
.y17c{bottom:479.646667pt;}
.y55{bottom:482.949333pt;}
.yb2{bottom:483.270667pt;}
.yd5{bottom:483.305333pt;}
.y8a{bottom:483.313333pt;}
.y211{bottom:483.690667pt;}
.yf7{bottom:489.892000pt;}
.y13a{bottom:490.153333pt;}
.y239{bottom:490.533333pt;}
.y26b{bottom:491.232000pt;}
.y1bd{bottom:491.276000pt;}
.y2a{bottom:491.910667pt;}
.y191{bottom:493.268000pt;}
.y295{bottom:493.968000pt;}
.y17b{bottom:495.586667pt;}
.y54{bottom:498.889333pt;}
.yb1{bottom:499.212000pt;}
.yd4{bottom:499.245333pt;}
.y89{bottom:499.253333pt;}
.y139{bottom:500.780000pt;}
.y1e7{bottom:503.302667pt;}
.y29{bottom:505.194667pt;}
.yf6{bottom:505.832000pt;}
.y238{bottom:506.473333pt;}
.y26a{bottom:507.172000pt;}
.y1bc{bottom:507.216000pt;}
.y190{bottom:509.208000pt;}
.y294{bottom:509.908000pt;}
.y138{bottom:511.406667pt;}
.y17a{bottom:511.528000pt;}
.y210{bottom:512.018667pt;}
.y53{bottom:514.829333pt;}
.yb0{bottom:515.152000pt;}
.y2bd{bottom:515.185333pt;}
.yd3{bottom:515.186667pt;}
.y88{bottom:515.193333pt;}
.y28{bottom:518.477333pt;}
.y1e6{bottom:519.242667pt;}
.yf5{bottom:521.772000pt;}
.y137{bottom:522.033333pt;}
.y269{bottom:523.112000pt;}
.y1bb{bottom:523.156000pt;}
.y293{bottom:525.848000pt;}
.y18f{bottom:527.141333pt;}
.y179{bottom:527.468000pt;}
.y52{bottom:530.769333pt;}
.yaf{bottom:531.092000pt;}
.y2bc{bottom:531.125333pt;}
.yd2{bottom:531.126667pt;}
.y87{bottom:531.133333pt;}
.y27{bottom:531.761333pt;}
.y136{bottom:532.660000pt;}
.y1e5{bottom:535.182667pt;}
.yf4{bottom:537.713333pt;}
.y268{bottom:539.052000pt;}
.y1ba{bottom:539.096000pt;}
.y20f{bottom:540.348000pt;}
.y292{bottom:541.788000pt;}
.y18e{bottom:543.081333pt;}
.y135{bottom:543.286667pt;}
.y178{bottom:543.408000pt;}
.y26{bottom:545.044000pt;}
.y51{bottom:546.709333pt;}
.yae{bottom:547.032000pt;}
.yd1{bottom:547.066667pt;}
.y86{bottom:547.073333pt;}
.y237{bottom:550.574667pt;}
.y1e4{bottom:551.124000pt;}
.yf3{bottom:553.653333pt;}
.y134{bottom:553.914667pt;}
.y267{bottom:554.992000pt;}
.y1b9{bottom:555.036000pt;}
.y20e{bottom:556.288000pt;}
.y291{bottom:557.729333pt;}
.y25{bottom:558.328000pt;}
.y18d{bottom:559.021333pt;}
.y177{bottom:559.348000pt;}
.y50{bottom:562.649333pt;}
.yad{bottom:562.972000pt;}
.yd0{bottom:563.006667pt;}
.y85{bottom:563.013333pt;}
.y133{bottom:564.541333pt;}
.y1e3{bottom:567.064000pt;}
.yf2{bottom:569.593333pt;}
.y266{bottom:570.932000pt;}
.y1b8{bottom:570.976000pt;}
.y24{bottom:571.612000pt;}
.y20d{bottom:572.228000pt;}
.y290{bottom:573.669333pt;}
.y18c{bottom:574.962667pt;}
.y236{bottom:575.017333pt;}
.y132{bottom:575.168000pt;}
.y176{bottom:575.288000pt;}
.y4f{bottom:578.590667pt;}
.yac{bottom:578.912000pt;}
.ycf{bottom:578.946667pt;}
.y84{bottom:578.954667pt;}
.y1e2{bottom:583.004000pt;}
.y23{bottom:584.894667pt;}
.yf1{bottom:585.533333pt;}
.y131{bottom:585.794667pt;}
.y265{bottom:586.873333pt;}
.y1b7{bottom:586.917333pt;}
.y20c{bottom:588.168000pt;}
.y28f{bottom:589.609333pt;}
.y175{bottom:591.228000pt;}
.y232{bottom:592.285333pt;}
.y18b{bottom:592.894667pt;}
.y4e{bottom:594.530667pt;}
.yab{bottom:594.853333pt;}
.yce{bottom:594.886667pt;}
.y2b5{bottom:594.888000pt;}
.y83{bottom:594.894667pt;}
.y130{bottom:596.421333pt;}
.y1e1{bottom:598.944000pt;}
.y22{bottom:599.189333pt;}
.yf0{bottom:601.473333pt;}
.y264{bottom:602.813333pt;}
.y1b6{bottom:602.857333pt;}
.y20b{bottom:604.109333pt;}
.y28e{bottom:605.549333pt;}
.y12f{bottom:607.048000pt;}
.y174{bottom:607.169333pt;}
.y18a{bottom:608.834667pt;}
.y4d{bottom:610.470667pt;}
.yaa{bottom:610.793333pt;}
.y2bb{bottom:610.826667pt;}
.ycd{bottom:610.828000pt;}
.y82{bottom:610.834667pt;}
.y21{bottom:612.473333pt;}
.y1e0{bottom:614.884000pt;}
.yef{bottom:617.414667pt;}
.y12e{bottom:617.674667pt;}
.y263{bottom:618.753333pt;}
.y1b5{bottom:618.797333pt;}
.y20a{bottom:620.049333pt;}
.y28d{bottom:621.489333pt;}
.y173{bottom:623.109333pt;}
.y189{bottom:624.774667pt;}
.y20{bottom:625.757333pt;}
.y4c{bottom:626.410667pt;}
.ycc{bottom:626.768000pt;}
.y81{bottom:626.774667pt;}
.ya9{bottom:626.937333pt;}
.y12d{bottom:628.301333pt;}
.y1df{bottom:630.824000pt;}
.yee{bottom:633.354667pt;}
.y262{bottom:634.693333pt;}
.y1b4{bottom:634.737333pt;}
.y12c{bottom:638.929333pt;}
.y1f{bottom:639.040000pt;}
.y172{bottom:639.049333pt;}
.y188{bottom:640.716000pt;}
.y4b{bottom:642.350667pt;}
.ycb{bottom:642.708000pt;}
.y80{bottom:642.714667pt;}
.ya8{bottom:642.877333pt;}
.y1de{bottom:646.765333pt;}
.y12b{bottom:649.556000pt;}
.y261{bottom:650.633333pt;}
.y1b3{bottom:650.677333pt;}
.y1e{bottom:652.324000pt;}
.y171{bottom:654.989333pt;}
.yed{bottom:656.132000pt;}
.y187{bottom:656.656000pt;}
.y4a{bottom:658.290667pt;}
.yca{bottom:658.648000pt;}
.ya7{bottom:658.817333pt;}
.y12a{bottom:660.182667pt;}
.y1dd{bottom:662.705333pt;}
.y7f{bottom:662.882667pt;}
.y1d{bottom:665.608000pt;}
.y260{bottom:666.573333pt;}
.y1b2{bottom:666.617333pt;}
.y129{bottom:670.809333pt;}
.y170{bottom:670.929333pt;}
.y186{bottom:672.596000pt;}
.y49{bottom:674.232000pt;}
.yc9{bottom:674.588000pt;}
.ya6{bottom:674.758667pt;}
.y209{bottom:676.980000pt;}
.y1dc{bottom:678.645333pt;}
.y1c{bottom:679.901333pt;}
.y128{bottom:681.436000pt;}
.ye{bottom:682.214667pt;}
.y25f{bottom:682.514667pt;}
.y1b1{bottom:682.558667pt;}
.yec{bottom:684.796000pt;}
.y16f{bottom:686.869333pt;}
.y7e{bottom:687.849333pt;}
.y185{bottom:688.536000pt;}
.y48{bottom:690.172000pt;}
.y2ba{bottom:690.528000pt;}
.yc8{bottom:690.529333pt;}
.ya5{bottom:690.698667pt;}
.y127{bottom:692.062667pt;}
.y1b{bottom:693.185333pt;}
.y208{bottom:694.249333pt;}
.y1db{bottom:694.585333pt;}
.yd{bottom:696.925333pt;}
.y25e{bottom:698.454667pt;}
.y1b0{bottom:698.498667pt;}
.yeb{bottom:700.737333pt;}
.y126{bottom:702.689333pt;}
.y16e{bottom:702.810667pt;}
.y7d{bottom:703.790667pt;}
.y47{bottom:706.112000pt;}
.y2b9{bottom:706.468000pt;}
.y1a{bottom:706.469333pt;}
.ya4{bottom:706.638667pt;}
.y1da{bottom:710.525333pt;}
.y206{bottom:711.517333pt;}
.y125{bottom:713.316000pt;}
.y25d{bottom:714.394667pt;}
.y1af{bottom:714.438667pt;}
.yea{bottom:716.677333pt;}
.y16d{bottom:718.750667pt;}
.y7c{bottom:719.730667pt;}
.y19{bottom:719.752000pt;}
.y46{bottom:722.052000pt;}
.yc7{bottom:722.409333pt;}
.ya3{bottom:722.578667pt;}
.y124{bottom:723.942667pt;}
.y1d9{bottom:726.466667pt;}
.y1ae{bottom:730.378667pt;}
.ye9{bottom:732.617333pt;}
.y18{bottom:733.036000pt;}
.y123{bottom:734.570667pt;}
.y16c{bottom:734.690667pt;}
.y7b{bottom:735.670667pt;}
.y45{bottom:737.992000pt;}
.yc6{bottom:738.349333pt;}
.ya2{bottom:738.518667pt;}
.y1d8{bottom:742.406667pt;}
.y122{bottom:745.197333pt;}
.y1ad{bottom:746.318667pt;}
.y17{bottom:746.320000pt;}
.y25c{bottom:746.366667pt;}
.ye8{bottom:748.557333pt;}
.y16b{bottom:750.630667pt;}
.y7a{bottom:751.610667pt;}
.y44{bottom:753.933333pt;}
.yc5{bottom:754.289333pt;}
.ya1{bottom:754.458667pt;}
.y121{bottom:755.824000pt;}
.y1d7{bottom:758.346667pt;}
.y16{bottom:759.602667pt;}
.y1ac{bottom:762.258667pt;}
.y25b{bottom:762.306667pt;}
.ye7{bottom:764.497333pt;}
.y120{bottom:766.450667pt;}
.y16a{bottom:766.570667pt;}
.y79{bottom:767.550667pt;}
.y43{bottom:770.229333pt;}
.ya0{bottom:770.400000pt;}
.y15{bottom:772.886667pt;}
.y1d6{bottom:774.286667pt;}
.y11f{bottom:777.077333pt;}
.y1ab{bottom:778.200000pt;}
.y25a{bottom:778.246667pt;}
.ye6{bottom:780.437333pt;}
.y169{bottom:782.512000pt;}
.y231{bottom:783.142667pt;}
.y78{bottom:783.490667pt;}
.y42{bottom:786.169333pt;}
.y14{bottom:786.170667pt;}
.y9f{bottom:786.340000pt;}
.y11e{bottom:787.704000pt;}
.y1d5{bottom:790.226667pt;}
.y1aa{bottom:794.140000pt;}
.y259{bottom:794.186667pt;}
.ye5{bottom:796.378667pt;}
.y11d{bottom:798.330667pt;}
.y168{bottom:798.452000pt;}
.y77{bottom:799.432000pt;}
.y21c{bottom:800.410667pt;}
.y2b8{bottom:802.109333pt;}
.yc4{bottom:802.110667pt;}
.y9e{bottom:802.280000pt;}
.yc{bottom:804.970667pt;}
.y1d4{bottom:806.166667pt;}
.y11c{bottom:808.957333pt;}
.y1a9{bottom:810.080000pt;}
.y258{bottom:810.126667pt;}
.ye4{bottom:812.318667pt;}
.y76{bottom:818.044000pt;}
.yc3{bottom:818.050667pt;}
.y9d{bottom:818.220000pt;}
.y11b{bottom:819.584000pt;}
.y1d3{bottom:822.108000pt;}
.y2b4{bottom:823.350667pt;}
.y1a8{bottom:826.020000pt;}
.y257{bottom:826.068000pt;}
.ye3{bottom:828.258667pt;}
.y11a{bottom:830.212000pt;}
.y75{bottom:833.990667pt;}
.y9c{bottom:834.160000pt;}
.y119{bottom:840.838667pt;}
.y1a7{bottom:841.960000pt;}
.y205{bottom:842.758667pt;}
.yb{bottom:843.370667pt;}
.ye2{bottom:844.198667pt;}
.y167{bottom:844.205333pt;}
.y256{bottom:846.648000pt;}
.y13{bottom:848.913333pt;}
.y74{bottom:849.930667pt;}
.y118{bottom:851.465333pt;}
.y9b{bottom:855.000000pt;}
.y166{bottom:855.894667pt;}
.y1a6{bottom:857.901333pt;}
.y1fa{bottom:860.026667pt;}
.ye1{bottom:860.138667pt;}
.y117{bottom:862.092000pt;}
.y12{bottom:865.352000pt;}
.y73{bottom:865.870667pt;}
.y1d2{bottom:867.053333pt;}
.y165{bottom:867.584000pt;}
.y116{bottom:872.718667pt;}
.y1a5{bottom:873.841333pt;}
.ye0{bottom:876.078667pt;}
.y1d1{bottom:878.742667pt;}
.y164{bottom:879.274667pt;}
.y9a{bottom:881.641333pt;}
.ya{bottom:881.770667pt;}
.y2b7{bottom:881.810667pt;}
.y72{bottom:881.812000pt;}
.y11{bottom:881.986667pt;}
.y115{bottom:883.345333pt;}
.y1d0{bottom:890.432000pt;}
.y163{bottom:890.964000pt;}
.ydf{bottom:892.020000pt;}
.y114{bottom:893.972000pt;}
.y1a4{bottom:896.654667pt;}
.y99{bottom:897.581333pt;}
.y2b6{bottom:897.750667pt;}
.y71{bottom:897.752000pt;}
.y1cf{bottom:902.121333pt;}
.y162{bottom:902.653333pt;}
.y2b3{bottom:903.052000pt;}
.y113{bottom:904.598667pt;}
.yde{bottom:907.960000pt;}
.y98{bottom:913.521333pt;}
.y70{bottom:913.692000pt;}
.y161{bottom:914.342667pt;}
.y112{bottom:915.225333pt;}
.y9{bottom:921.805333pt;}
.y10{bottom:923.830667pt;}
.ydd{bottom:923.900000pt;}
.y111{bottom:925.853333pt;}
.y160{bottom:926.032000pt;}
.y6f{bottom:929.632000pt;}
.y97{bottom:934.870667pt;}
.y110{bottom:936.480000pt;}
.y15f{bottom:937.721333pt;}
.ydc{bottom:939.840000pt;}
.y6e{bottom:945.572000pt;}
.y10f{bottom:947.106667pt;}
.ydb{bottom:955.780000pt;}
.y15e{bottom:956.352000pt;}
.y10e{bottom:957.733333pt;}
.yf{bottom:961.024000pt;}
.y6d{bottom:961.512000pt;}
.y10d{bottom:968.360000pt;}
.y15d{bottom:974.265333pt;}
.y96{bottom:977.452000pt;}
.y6c{bottom:977.453333pt;}
.h1{height:19.562766pt;}
.h1b{height:21.519360pt;}
.hd{height:21.933807pt;}
.h16{height:23.761502pt;}
.h13{height:25.589197pt;}
.h12{height:25.737971pt;}
.h11{height:27.895200pt;}
.he{height:29.244954pt;}
.h1a{height:29.925069pt;}
.h2{height:32.625000pt;}
.h17{height:32.900710pt;}
.hb{height:33.091994pt;}
.ha{height:33.618022pt;}
.h8{height:36.449833pt;}
.h9{height:36.556100pt;}
.h1c{height:36.822767pt;}
.h14{height:37.353108pt;}
.hf{height:39.850400pt;}
.h7{height:40.211857pt;}
.h10{height:44.869197pt;}
.hc{height:44.874530pt;}
.h3{height:48.937500pt;}
.h18{height:49.836533pt;}
.h6{height:87.734861pt;}
.h4{height:97.875000pt;}
.h15{height:128.585613pt;}
.h19{height:188.202613pt;}
.h5{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w3{width:292.241533pt;}
.w4{width:672.155133pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:10.850667pt;}
.x27{left:19.833333pt;}
.x26{left:21.825333pt;}
.x49{left:35.766667pt;}
.x24{left:37.588000pt;}
.x48{left:44.786667pt;}
.x61{left:52.354667pt;}
.x1{left:56.642800pt;}
.xd{left:65.285333pt;}
.x1c{left:66.561333pt;}
.x19{left:72.444000pt;}
.x60{left:75.912000pt;}
.xc{left:78.569333pt;}
.x14{left:79.768000pt;}
.x2{left:82.901333pt;}
.x4d{left:84.920000pt;}
.x15{left:91.852000pt;}
.x4a{left:93.096000pt;}
.x23{left:94.181333pt;}
.x22{left:95.217333pt;}
.x21{left:98.124000pt;}
.x1a{left:100.486667pt;}
.x30{left:103.190667pt;}
.x1f{left:105.064000pt;}
.x4b{left:106.681333pt;}
.x25{left:115.625333pt;}
.x62{left:119.589333pt;}
.x31{left:123.909333pt;}
.x4e{left:125.982667pt;}
.x65{left:129.404000pt;}
.x3{left:136.586667pt;}
.x32{left:144.629333pt;}
.x4f{left:146.512000pt;}
.x1b{left:151.185333pt;}
.x5f{left:157.017333pt;}
.x66{left:163.621333pt;}
.x33{left:165.348000pt;}
.x50{left:167.044000pt;}
.x20{left:172.058667pt;}
.x16{left:175.393333pt;}
.xe{left:180.826667pt;}
.x5{left:186.901333pt;}
.x77{left:195.464000pt;}
.x67{left:197.840000pt;}
.x5e{left:200.014667pt;}
.x7{left:204.668000pt;}
.x34{left:206.788000pt;}
.x51{left:208.105333pt;}
.x4{left:215.789333pt;}
.x2c{left:219.994667pt;}
.x29{left:226.370667pt;}
.x2a{left:227.540000pt;}
.x52{left:228.637333pt;}
.x68{left:232.058667pt;}
.x35{left:248.226667pt;}
.x53{left:249.168000pt;}
.x76{left:259.272000pt;}
.x69{left:266.276000pt;}
.x36{left:268.945333pt;}
.x37{left:289.664000pt;}
.x74{left:293.517333pt;}
.x75{left:294.940000pt;}
.x6{left:299.000000pt;}
.x6a{left:300.494667pt;}
.x38{left:310.384000pt;}
.x39{left:331.102667pt;}
.x6b{left:334.713333pt;}
.x4c{left:346.592000pt;}
.x3a{left:351.822667pt;}
.x5d{left:365.630667pt;}
.x6c{left:368.932000pt;}
.x3b{left:372.541333pt;}
.x3c{left:393.262667pt;}
.x6d{left:403.149333pt;}
.x3d{left:413.981333pt;}
.xf{left:415.970667pt;}
.x2e{left:422.905333pt;}
.x1e{left:423.940000pt;}
.x13{left:426.597333pt;}
.x10{left:429.253333pt;}
.x11{left:430.453333pt;}
.x3e{left:434.700000pt;}
.x6e{left:437.368000pt;}
.x12{left:442.537333pt;}
.x78{left:444.742667pt;}
.x54{left:454.478667pt;}
.x3f{left:455.420000pt;}
.x9{left:468.808000pt;}
.x2f{left:470.140000pt;}
.x6f{left:471.588000pt;}
.x1d{left:473.316000pt;}
.x55{left:475.009333pt;}
.x40{left:476.138667pt;}
.x18{left:477.828000pt;}
.xb{left:486.282667pt;}
.x56{left:495.540000pt;}
.x41{left:496.858667pt;}
.x70{left:505.805333pt;}
.x8{left:510.677333pt;}
.x57{left:516.070667pt;}
.x42{left:517.577333pt;}
.x2b{left:521.934667pt;}
.x17{left:530.474667pt;}
.x64{left:534.666667pt;}
.x58{left:536.601333pt;}
.x43{left:538.297333pt;}
.x71{left:540.024000pt;}
.x2d{left:540.973333pt;}
.x63{left:542.068000pt;}
.x59{left:557.133333pt;}
.x44{left:559.016000pt;}
.x72{left:574.242667pt;}
.x5a{left:577.664000pt;}
.x45{left:579.736000pt;}
.xa{left:580.906667pt;}
.x5b{left:598.194667pt;}
.x46{left:600.456000pt;}
.x73{left:608.461333pt;}
.x5c{left:618.726667pt;}
.x47{left:621.174667pt;}
}


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