
/* 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_f9096b4269c2.woff")format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_b2021c3541f3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_68906ee6e886.woff")format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_93b7695a654e.woff")format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_9b67fe42164e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_b34a65224c54.woff")format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_85bd836ded7f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_6da19e8861fa.woff")format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_e79ad76abe45.woff")format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_68906ee6e886.woff")format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_7e36e2122710.woff")format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_5c26d4bf4985.woff")format("woff");}.ffc{font-family:ffc;line-height:0.917053;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_ba4bf4d5e4d1.woff")format("woff");}.ffd{font-family:ffd;line-height:1.006000;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_b2021c3541f3.woff")format("woff");}.ffe{font-family:ffe;line-height:0.936000;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_68906ee6e886.woff")format("woff");}.fff{font-family:fff;line-height:0.904000;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_93b7695a654e.woff")format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_b2021c3541f3.woff")format("woff");}.ff11{font-family:ff11;line-height:0.936000;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_68906ee6e886.woff")format("woff");}.ff12{font-family:ff12;line-height:0.904000;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_93b7695a654e.woff")format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_b2021c3541f3.woff")format("woff");}.ff14{font-family:ff14;line-height:0.936000;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:ff15;src:url("fonts/font_0020_68906ee6e886.woff")format("woff");}.ff15{font-family:ff15;line-height:0.904000;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:ff16;src:url("fonts/font_0021_93b7695a654e.woff")format("woff");}.ff16{font-family:ff16;line-height:0.912000;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:ff17;src:url("fonts/font_0022_da7c6a176495.woff")format("woff");}.ff17{font-family:ff17;line-height:0.679000;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:ff18;src:url("fonts/font_0023_770d4d8d1f3b.woff")format("woff");}.ff18{font-family:ff18;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.294000px;}
.v5{vertical-align:21.600000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.ls4{letter-spacing:-1.776000px;}
.ls9{letter-spacing:-1.320000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.027600px;}
.ls1{letter-spacing:3.780000px;}
.ls0{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls8{letter-spacing:217.821000px;}
.ls7{letter-spacing:802.548000px;}
.ls5{letter-spacing:1617.645600px;}
.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;}
}
.ws2{word-spacing:-15.600000px;}
.wsc8{word-spacing:-15.012000px;}
.wsb6{word-spacing:-14.400000px;}
.ws135{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.wsf3{word-spacing:-11.676000px;}
.ws6{word-spacing:-11.520000px;}
.ws3{word-spacing:-10.342800px;}
.wsb8{word-spacing:-8.847072px;}
.wsf0{word-spacing:-7.803000px;}
.ws1{word-spacing:-7.637760px;}
.ws49{word-spacing:-5.580000px;}
.ws4e{word-spacing:-5.400000px;}
.ws109{word-spacing:-4.440000px;}
.ws112{word-spacing:-4.080000px;}
.ws11b{word-spacing:-3.960000px;}
.ws40{word-spacing:-3.840000px;}
.ws96{word-spacing:-3.780000px;}
.ws8a{word-spacing:-3.660000px;}
.ws32{word-spacing:-3.540000px;}
.wsce{word-spacing:-3.360000px;}
.ws131{word-spacing:-3.300000px;}
.wsbd{word-spacing:-3.180000px;}
.ws4d{word-spacing:-3.060000px;}
.ws5f{word-spacing:-3.000000px;}
.wsc{word-spacing:-2.940000px;}
.ws120{word-spacing:-2.820000px;}
.wsa6{word-spacing:-2.760000px;}
.wsee{word-spacing:-2.700000px;}
.ws17{word-spacing:-2.640000px;}
.wsa7{word-spacing:-2.460000px;}
.ws6f{word-spacing:-2.400000px;}
.ws38{word-spacing:-2.340000px;}
.wsb1{word-spacing:-2.220000px;}
.wscb{word-spacing:-2.160000px;}
.ws103{word-spacing:-2.040000px;}
.ws100{word-spacing:-1.980000px;}
.wsde{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.800000px;}
.ws7{word-spacing:-1.776000px;}
.wscf{word-spacing:-1.740000px;}
.ws2c{word-spacing:-1.728000px;}
.ws71{word-spacing:-1.620000px;}
.ws5b{word-spacing:-1.560000px;}
.ws84{word-spacing:-1.380000px;}
.wsac{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.020000px;}
.wsb5{word-spacing:-0.960000px;}
.wsc3{word-spacing:-0.900000px;}
.wsae{word-spacing:-0.840000px;}
.wsad{word-spacing:-0.780000px;}
.ws12e{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.660000px;}
.ws78{word-spacing:-0.540000px;}
.ws73{word-spacing:-0.420000px;}
.ws9d{word-spacing:-0.360000px;}
.ws11d{word-spacing:-0.300000px;}
.ws53{word-spacing:-0.240000px;}
.ws134{word-spacing:-0.192000px;}
.ws61{word-spacing:-0.060000px;}
.wsb7{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.wse4{word-spacing:0.060000px;}
.ws10f{word-spacing:0.120000px;}
.ws46{word-spacing:0.240000px;}
.ws117{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws95{word-spacing:0.420000px;}
.ws27{word-spacing:0.432000px;}
.ws4c{word-spacing:0.480000px;}
.ws37{word-spacing:0.556920px;}
.ws12{word-spacing:0.600000px;}
.ws12a{word-spacing:0.780000px;}
.ws36{word-spacing:0.840000px;}
.ws11a{word-spacing:0.900000px;}
.ws94{word-spacing:1.080000px;}
.ws98{word-spacing:1.140000px;}
.wse0{word-spacing:1.200000px;}
.ws34{word-spacing:1.260000px;}
.ws54{word-spacing:1.312740px;}
.ws132{word-spacing:1.320000px;}
.wsfb{word-spacing:1.380000px;}
.ws39{word-spacing:1.440000px;}
.ws8b{word-spacing:1.500000px;}
.ws18{word-spacing:1.560000px;}
.ws123{word-spacing:1.680000px;}
.wse1{word-spacing:1.740000px;}
.ws5{word-spacing:1.776000px;}
.ws85{word-spacing:1.800000px;}
.ws8d{word-spacing:1.920000px;}
.ws3e{word-spacing:1.980000px;}
.wsd0{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws2b{word-spacing:2.106000px;}
.ws133{word-spacing:2.160000px;}
.ws83{word-spacing:2.220000px;}
.ws6d{word-spacing:2.340000px;}
.ws2d{word-spacing:2.430000px;}
.ws107{word-spacing:2.460000px;}
.wsda{word-spacing:2.580000px;}
.ws10d{word-spacing:2.640000px;}
.wsfc{word-spacing:2.700000px;}
.ws59{word-spacing:2.760000px;}
.ws6c{word-spacing:2.940000px;}
.wsdd{word-spacing:3.000000px;}
.wsb9{word-spacing:3.060000px;}
.ws5c{word-spacing:3.180000px;}
.ws45{word-spacing:3.222180px;}
.ws1e{word-spacing:3.240000px;}
.ws47{word-spacing:3.300000px;}
.ws48{word-spacing:3.360000px;}
.wseb{word-spacing:3.420000px;}
.ws6b{word-spacing:3.480000px;}
.ws52{word-spacing:3.540000px;}
.ws90{word-spacing:3.660000px;}
.wse9{word-spacing:3.720000px;}
.wsf9{word-spacing:3.780000px;}
.wsfa{word-spacing:3.840000px;}
.wsaf{word-spacing:3.960000px;}
.wsf7{word-spacing:4.017780px;}
.ws9e{word-spacing:4.020000px;}
.ws9f{word-spacing:4.080000px;}
.wsd1{word-spacing:4.140000px;}
.ws26{word-spacing:4.158000px;}
.ws77{word-spacing:4.260000px;}
.wsab{word-spacing:4.320000px;}
.wsdb{word-spacing:4.380000px;}
.ws9{word-spacing:4.440000px;}
.wsea{word-spacing:4.500000px;}
.wsed{word-spacing:4.560000px;}
.wsbc{word-spacing:4.680000px;}
.ws82{word-spacing:4.740000px;}
.ws105{word-spacing:4.800000px;}
.ws44{word-spacing:4.860000px;}
.ws130{word-spacing:4.920000px;}
.wsc6{word-spacing:5.040000px;}
.ws41{word-spacing:5.100000px;}
.ws2f{word-spacing:5.130000px;}
.wse8{word-spacing:5.160000px;}
.ws24{word-spacing:5.292000px;}
.ws12d{word-spacing:5.340000px;}
.ws51{word-spacing:5.400000px;}
.wse2{word-spacing:5.520000px;}
.ws10c{word-spacing:5.700000px;}
.ws108{word-spacing:5.760000px;}
.wsf{word-spacing:5.820000px;}
.ws2a{word-spacing:5.832000px;}
.ws25{word-spacing:5.940000px;}
.ws6a{word-spacing:6.000000px;}
.ws15{word-spacing:6.060000px;}
.ws50{word-spacing:6.120000px;}
.ws7f{word-spacing:6.240000px;}
.ws86{word-spacing:6.300000px;}
.ws55{word-spacing:6.360000px;}
.ws11{word-spacing:6.420000px;}
.wsd8{word-spacing:6.480000px;}
.ws106{word-spacing:6.600000px;}
.wsc4{word-spacing:6.660000px;}
.ws10a{word-spacing:6.722820px;}
.ws67{word-spacing:6.780000px;}
.ws76{word-spacing:6.840000px;}
.wsc2{word-spacing:6.960000px;}
.ws5e{word-spacing:7.080000px;}
.ws121{word-spacing:7.140000px;}
.wsa0{word-spacing:7.200000px;}
.wsb{word-spacing:7.260000px;}
.ws11e{word-spacing:7.380000px;}
.wsd7{word-spacing:7.440000px;}
.ws9b{word-spacing:7.500000px;}
.ws7e{word-spacing:7.560000px;}
.ws70{word-spacing:7.620000px;}
.ws87{word-spacing:7.680000px;}
.wsb0{word-spacing:7.740000px;}
.ws125{word-spacing:7.800000px;}
.wsa2{word-spacing:7.860000px;}
.ws63{word-spacing:7.920000px;}
.ws31{word-spacing:7.980000px;}
.ws28{word-spacing:7.992000px;}
.wsf8{word-spacing:8.040000px;}
.ws16{word-spacing:8.160000px;}
.wsff{word-spacing:8.280000px;}
.ws9a{word-spacing:8.340000px;}
.ws110{word-spacing:8.460000px;}
.ws118{word-spacing:8.520000px;}
.ws93{word-spacing:8.580000px;}
.wsf4{word-spacing:8.640000px;}
.wsa9{word-spacing:8.700000px;}
.ws1b{word-spacing:8.820000px;}
.ws10b{word-spacing:8.880000px;}
.ws89{word-spacing:9.000000px;}
.wse6{word-spacing:9.060000px;}
.ws64{word-spacing:9.120000px;}
.ws1f{word-spacing:9.240000px;}
.ws126{word-spacing:9.300000px;}
.ws101{word-spacing:9.420000px;}
.ws8e{word-spacing:9.480000px;}
.ws116{word-spacing:9.540000px;}
.wscd{word-spacing:9.600000px;}
.ws97{word-spacing:9.660000px;}
.ws13{word-spacing:9.780000px;}
.ws81{word-spacing:9.900000px;}
.ws5a{word-spacing:10.080000px;}
.wsa3{word-spacing:10.140000px;}
.ws5d{word-spacing:10.200000px;}
.ws124{word-spacing:10.320000px;}
.ws115{word-spacing:10.380000px;}
.ws111{word-spacing:10.740000px;}
.ws23{word-spacing:10.860000px;}
.ws8c{word-spacing:10.920000px;}
.wsd9{word-spacing:10.980000px;}
.ws69{word-spacing:11.100000px;}
.wsd5{word-spacing:11.220000px;}
.ws8f{word-spacing:11.280000px;}
.wsfe{word-spacing:11.340000px;}
.ws3d{word-spacing:11.400000px;}
.ws92{word-spacing:11.460000px;}
.ws11c{word-spacing:11.640000px;}
.ws12b{word-spacing:11.700000px;}
.wsc5{word-spacing:11.820000px;}
.wsdf{word-spacing:11.940000px;}
.wsd3{word-spacing:12.060000px;}
.ws113{word-spacing:12.120000px;}
.wse7{word-spacing:12.240000px;}
.wsc0{word-spacing:12.360000px;}
.ws2e{word-spacing:12.420000px;}
.wsa5{word-spacing:12.540000px;}
.ws57{word-spacing:12.600000px;}
.wsef{word-spacing:12.660000px;}
.wsd2{word-spacing:12.720000px;}
.ws88{word-spacing:12.840000px;}
.wsd4{word-spacing:12.900000px;}
.ws14{word-spacing:12.960000px;}
.ws128{word-spacing:13.020000px;}
.ws60{word-spacing:13.080000px;}
.ws3f{word-spacing:13.260000px;}
.ws43{word-spacing:13.440000px;}
.ws79{word-spacing:13.500000px;}
.wsa8{word-spacing:13.560000px;}
.ws10e{word-spacing:13.620000px;}
.wsec{word-spacing:13.680000px;}
.wsc1{word-spacing:13.800000px;}
.ws9c{word-spacing:13.860000px;}
.ws68{word-spacing:13.980000px;}
.ws4f{word-spacing:14.340000px;}
.ws91{word-spacing:14.640000px;}
.ws20{word-spacing:14.760000px;}
.ws129{word-spacing:14.820000px;}
.ws102{word-spacing:14.940000px;}
.ws62{word-spacing:15.060000px;}
.ws3c{word-spacing:15.180000px;}
.ws19{word-spacing:15.240000px;}
.ws75{word-spacing:15.360000px;}
.ws56{word-spacing:15.480000px;}
.ws29{word-spacing:15.552000px;}
.ws12c{word-spacing:15.660000px;}
.ws99{word-spacing:15.720000px;}
.ws114{word-spacing:15.780000px;}
.ws7a{word-spacing:16.260000px;}
.ws127{word-spacing:16.380000px;}
.wsfd{word-spacing:16.440000px;}
.ws122{word-spacing:16.500000px;}
.ws42{word-spacing:16.920000px;}
.wsbb{word-spacing:17.040000px;}
.wsa4{word-spacing:17.100000px;}
.ws30{word-spacing:17.160000px;}
.ws4b{word-spacing:17.220000px;}
.wscc{word-spacing:17.280000px;}
.wsf6{word-spacing:17.460000px;}
.ws3a{word-spacing:17.700000px;}
.wsa1{word-spacing:17.760000px;}
.ws1d{word-spacing:17.820000px;}
.ws6e{word-spacing:17.880000px;}
.ws66{word-spacing:17.940000px;}
.ws21{word-spacing:18.120000px;}
.ws7d{word-spacing:18.240000px;}
.ws72{word-spacing:18.480000px;}
.ws7b{word-spacing:18.600000px;}
.ws12f{word-spacing:18.960000px;}
.wsf5{word-spacing:19.200000px;}
.wsbe{word-spacing:19.680000px;}
.ws1c{word-spacing:19.980000px;}
.wsba{word-spacing:20.640000px;}
.ws119{word-spacing:20.880000px;}
.wsbf{word-spacing:21.000000px;}
.wsd{word-spacing:21.180000px;}
.ws8{word-spacing:21.300000px;}
.ws65{word-spacing:21.840000px;}
.wsdc{word-spacing:21.960000px;}
.ws3b{word-spacing:22.080000px;}
.wsaa{word-spacing:22.200000px;}
.ws11f{word-spacing:23.100000px;}
.ws74{word-spacing:23.580000px;}
.wsd6{word-spacing:24.720000px;}
.wse3{word-spacing:24.840000px;}
.wse{word-spacing:25.860000px;}
.wsb3{word-spacing:26.400000px;}
.ws7c{word-spacing:26.520000px;}
.ws58{word-spacing:28.500000px;}
.wse5{word-spacing:30.420000px;}
.wsc7{word-spacing:31.560000px;}
.ws10{word-spacing:34.860000px;}
.ws1a{word-spacing:37.740000px;}
.wsc9{word-spacing:38.988000px;}
.ws104{word-spacing:45.240000px;}
.wsb2{word-spacing:55.560000px;}
.wsca{word-spacing:337.365000px;}
.wsf1{word-spacing:392.910000px;}
.wsf2{word-spacing:439.614000px;}
._1f{margin-left:-1975.050000px;}
._6d{margin-left:-61.113732px;}
._12{margin-left:-59.040000px;}
._2b{margin-left:-54.000000px;}
._e{margin-left:-50.460000px;}
._a{margin-left:-47.970000px;}
._30{margin-left:-38.988000px;}
._1c{margin-left:-37.800000px;}
._1{margin-left:-33.000000px;}
._7e{margin-left:-30.420000px;}
._1b{margin-left:-29.160000px;}
._16{margin-left:-26.760000px;}
._10{margin-left:-24.420000px;}
._17{margin-left:-23.313732px;}
._f{margin-left:-21.660000px;}
._19{margin-left:-20.400000px;}
._1a{margin-left:-19.384800px;}
._5{margin-left:-18.348000px;}
._11{margin-left:-15.600000px;}
._15{margin-left:-14.520000px;}
._58{margin-left:-13.278144px;}
._d{margin-left:-12.051732px;}
._b{margin-left:-11.040000px;}
._13{margin-left:-10.020000px;}
._18{margin-left:-7.560000px;}
._2{margin-left:-6.078600px;}
._c{margin-left:-4.599732px;}
._7{margin-left:-3.552000px;}
._0{margin-left:-1.776000px;}
._6{width:1.181400px;}
._14{width:2.613732px;}
._59{width:6.300000px;}
._5a{width:8.550000px;}
._8{width:9.739200px;}
._9{width:11.520000px;}
._7f{width:13.104000px;}
._3{width:14.643732px;}
._81{width:20.475000px;}
._80{width:25.155000px;}
._4{width:35.664600px;}
._1d{width:38.016000px;}
._1e{width:39.072600px;}
._62{width:42.876000px;}
._57{width:44.874000px;}
._55{width:50.264268px;}
._22{width:54.000000px;}
._6c{width:55.539000px;}
._64{width:57.171000px;}
._6a{width:58.854000px;}
._7d{width:60.387000px;}
._40{width:61.758000px;}
._56{width:62.856000px;}
._7c{width:64.548000px;}
._5f{width:87.210000px;}
._61{width:89.661000px;}
._6e{width:91.320000px;}
._65{width:102.969000px;}
._5c{width:107.865000px;}
._7b{width:118.020000px;}
._63{width:144.789000px;}
._69{width:149.889000px;}
._78{width:153.048000px;}
._7a{width:160.986000px;}
._75{width:164.724000px;}
._66{width:173.145000px;}
._76{width:189.612000px;}
._77{width:195.048000px;}
._79{width:196.980000px;}
._73{width:200.718000px;}
._5e{width:202.113000px;}
._68{width:215.331732px;}
._60{width:226.746000px;}
._74{width:230.076000px;}
._67{width:231.438000px;}
._72{width:243.000000px;}
._39{width:244.782000px;}
._43{width:259.794000px;}
._41{width:265.788000px;}
._6b{width:274.023000px;}
._42{width:277.776000px;}
._37{width:280.800000px;}
._44{width:289.764000px;}
._5b{width:298.809000px;}
._28{width:301.860000px;}
._45{width:303.366000px;}
._29{width:313.848000px;}
._53{width:319.842000px;}
._5d{width:322.932000px;}
._2a{width:325.836000px;}
._3f{width:331.884000px;}
._26{width:334.854000px;}
._38{width:337.824000px;}
._24{width:340.848000px;}
._3d{width:343.872000px;}
._2f{width:349.866000px;}
._25{width:352.836000px;}
._2d{width:355.860000px;}
._4f{width:361.908000px;}
._2e{width:367.848000px;}
._6f{width:369.270000px;}
._50{width:373.896000px;}
._35{width:379.890000px;}
._52{width:381.834000px;}
._70{width:385.938000px;}
._71{width:391.944000px;}
._48{width:409.914000px;}
._33{width:415.908000px;}
._34{width:427.896000px;}
._20{width:439.506000px;}
._46{width:445.932000px;}
._21{width:451.494000px;}
._47{width:457.920000px;}
._3c{width:496.518000px;}
._51{width:511.630536px;}
._4c{width:520.020000px;}
._54{width:575.364000px;}
._3e{width:608.790000px;}
._4d{width:630.990000px;}
._4e{width:673.974000px;}
._27{width:676.340268px;}
._49{width:702.314268px;}
._36{width:722.930268px;}
._2c{width:734.463732px;}
._3b{width:769.986000px;}
._23{width:776.402268px;}
._31{width:807.030000px;}
._4b{width:868.050000px;}
._32{width:881.538000px;}
._4a{width:2053.098600px;}
._3a{width:2063.952600px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs6{font-size:31.824000px;}
.fsc{font-size:37.200000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fsb{font-size:42.000000px;}
.fs4{font-size:43.758000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:49.800000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.yc1{bottom:81.571350px;}
.y1e7{bottom:81.586350px;}
.y13b{bottom:81.601350px;}
.y74{bottom:81.604650px;}
.y10e{bottom:81.615900px;}
.y1cc{bottom:81.616050px;}
.yea{bottom:81.631350px;}
.y2c{bottom:81.637800px;}
.y261{bottom:81.721350px;}
.y21d{bottom:81.826350px;}
.y2ae{bottom:81.890850px;}
.y15d{bottom:81.891450px;}
.y5d{bottom:81.955650px;}
.y1a3{bottom:90.586200px;}
.y2ad{bottom:94.637100px;}
.y260{bottom:96.253350px;}
.y2b{bottom:96.637800px;}
.yc0{bottom:99.571350px;}
.y1e6{bottom:99.586350px;}
.y13a{bottom:99.601350px;}
.y73{bottom:99.604650px;}
.y10d{bottom:99.615900px;}
.y1cb{bottom:99.616050px;}
.ye9{bottom:99.631350px;}
.y21c{bottom:99.856350px;}
.y5c{bottom:99.955650px;}
.y15c{bottom:100.401450px;}
.y1a2{bottom:105.526200px;}
.y2ac{bottom:107.383350px;}
.y2a{bottom:111.637800px;}
.ybf{bottom:117.571350px;}
.y1e5{bottom:117.586350px;}
.y139{bottom:117.601350px;}
.y72{bottom:117.604650px;}
.y10c{bottom:117.615900px;}
.y1ca{bottom:117.616050px;}
.ye8{bottom:117.631350px;}
.y21b{bottom:117.886350px;}
.y5b{bottom:117.955650px;}
.y15b{bottom:118.911450px;}
.y2ab{bottom:120.129600px;}
.y1a1{bottom:120.466200px;}
.y25f{bottom:122.785350px;}
.y2aa{bottom:132.875850px;}
.y1a0{bottom:135.406200px;}
.ybe{bottom:135.571350px;}
.y1e4{bottom:135.586350px;}
.y138{bottom:135.601350px;}
.y71{bottom:135.604650px;}
.y10b{bottom:135.615900px;}
.y1c9{bottom:135.616050px;}
.ye7{bottom:135.631350px;}
.y21a{bottom:135.916350px;}
.y5a{bottom:135.955650px;}
.y25e{bottom:137.317350px;}
.y15a{bottom:137.421450px;}
.y29{bottom:140.137800px;}
.y2a9{bottom:145.622100px;}
.y25d{bottom:151.849350px;}
.ybd{bottom:153.571350px;}
.y1e3{bottom:153.586350px;}
.y137{bottom:153.601350px;}
.y70{bottom:153.604650px;}
.y10a{bottom:153.615900px;}
.y1c8{bottom:153.616050px;}
.ye6{bottom:153.631350px;}
.y219{bottom:153.946350px;}
.y59{bottom:153.955650px;}
.y28{bottom:155.137800px;}
.y159{bottom:155.931450px;}
.y2a8{bottom:158.368350px;}
.y19f{bottom:162.301350px;}
.y14c{bottom:162.531450px;}
.y25c{bottom:166.381350px;}
.y2a7{bottom:171.114600px;}
.ybc{bottom:171.571350px;}
.y1e2{bottom:171.586350px;}
.y136{bottom:171.601350px;}
.y6f{bottom:171.604650px;}
.y109{bottom:171.615900px;}
.y1c7{bottom:171.616050px;}
.ye5{bottom:171.631350px;}
.y58{bottom:171.955650px;}
.y218{bottom:171.976350px;}
.y158{bottom:174.441450px;}
.y27{bottom:175.537800px;}
.y14b{bottom:180.531450px;}
.y25b{bottom:180.913350px;}
.y19e{bottom:182.688600px;}
.y2a6{bottom:183.860850px;}
.y26{bottom:185.137800px;}
.ybb{bottom:189.571350px;}
.y1e1{bottom:189.586350px;}
.y135{bottom:189.601350px;}
.y6e{bottom:189.604650px;}
.y108{bottom:189.615900px;}
.y1c6{bottom:189.616050px;}
.ye4{bottom:189.631350px;}
.y57{bottom:189.955650px;}
.y217{bottom:190.006350px;}
.y157{bottom:192.951450px;}
.y25a{bottom:195.445350px;}
.y2a5{bottom:196.607100px;}
.y14a{bottom:198.531450px;}
.y25{bottom:200.137800px;}
.y19d{bottom:203.789850px;}
.yba{bottom:207.571350px;}
.y1e0{bottom:207.586350px;}
.y134{bottom:207.601350px;}
.y6d{bottom:207.604650px;}
.y107{bottom:207.615900px;}
.y1c5{bottom:207.616050px;}
.ye3{bottom:207.631350px;}
.y56{bottom:207.955650px;}
.y216{bottom:208.036350px;}
.y2a4{bottom:209.353350px;}
.y156{bottom:211.461450px;}
.y259{bottom:215.977350px;}
.y149{bottom:216.531450px;}
.y24{bottom:220.537800px;}
.y2a3{bottom:222.099600px;}
.y19c{bottom:224.891100px;}
.yb9{bottom:225.571350px;}
.y1df{bottom:225.586350px;}
.y133{bottom:225.601350px;}
.y6c{bottom:225.604650px;}
.y106{bottom:225.615900px;}
.y1c4{bottom:225.616050px;}
.ye2{bottom:225.631350px;}
.y55{bottom:225.955650px;}
.y215{bottom:226.066350px;}
.y155{bottom:229.971450px;}
.y23{bottom:230.137800px;}
.y258{bottom:230.377350px;}
.y148{bottom:234.531450px;}
.y2a2{bottom:234.845850px;}
.yb8{bottom:243.571350px;}
.y1de{bottom:243.586350px;}
.y132{bottom:243.601350px;}
.y6b{bottom:243.604650px;}
.y105{bottom:243.615900px;}
.y1c3{bottom:243.616050px;}
.ye1{bottom:243.631350px;}
.y214{bottom:244.096350px;}
.y257{bottom:244.777350px;}
.y22{bottom:245.137800px;}
.y19b{bottom:245.992350px;}
.y2a1{bottom:247.592100px;}
.y154{bottom:248.481450px;}
.y147{bottom:252.531450px;}
.y256{bottom:259.177350px;}
.y21{bottom:260.137800px;}
.y2a0{bottom:260.338350px;}
.yb7{bottom:261.571350px;}
.y1dd{bottom:261.586350px;}
.y131{bottom:261.601350px;}
.y6a{bottom:261.604650px;}
.y104{bottom:261.615900px;}
.y1c2{bottom:261.616050px;}
.ye0{bottom:261.631350px;}
.y213{bottom:262.126350px;}
.y153{bottom:266.991450px;}
.y19a{bottom:267.093600px;}
.y146{bottom:270.531450px;}
.y29f{bottom:273.084600px;}
.y255{bottom:273.577350px;}
.y20{bottom:275.137800px;}
.yb6{bottom:279.571350px;}
.y1dc{bottom:279.586350px;}
.y193{bottom:279.601350px;}
.y69{bottom:279.604650px;}
.y103{bottom:279.615900px;}
.y1c1{bottom:279.616050px;}
.ydf{bottom:279.631350px;}
.y212{bottom:280.156350px;}
.y54{bottom:284.836650px;}
.y152{bottom:285.501450px;}
.y29e{bottom:285.830850px;}
.y254{bottom:287.977350px;}
.y199{bottom:288.194850px;}
.y145{bottom:288.531450px;}
.y1f{bottom:295.537800px;}
.yb5{bottom:297.571350px;}
.y130{bottom:297.586350px;}
.y192{bottom:297.601350px;}
.y68{bottom:297.604650px;}
.y102{bottom:297.615900px;}
.y1c0{bottom:297.616050px;}
.yde{bottom:297.631350px;}
.y211{bottom:298.186350px;}
.y29d{bottom:298.577100px;}
.y53{bottom:301.333650px;}
.y253{bottom:302.377350px;}
.y151{bottom:304.011450px;}
.y1e{bottom:305.137800px;}
.y144{bottom:306.531450px;}
.y198{bottom:307.804350px;}
.y29c{bottom:311.323350px;}
.yb4{bottom:315.571350px;}
.y12f{bottom:315.586350px;}
.y191{bottom:315.601350px;}
.y67{bottom:315.604650px;}
.y101{bottom:315.615900px;}
.y1bf{bottom:315.616050px;}
.ydd{bottom:315.631350px;}
.y210{bottom:316.216350px;}
.y252{bottom:316.777350px;}
.y52{bottom:317.830650px;}
.y1d{bottom:320.137800px;}
.y150{bottom:322.521450px;}
.y29b{bottom:324.069600px;}
.y143{bottom:324.531450px;}
.y251{bottom:331.177350px;}
.y197{bottom:331.901850px;}
.yb3{bottom:333.571350px;}
.y12e{bottom:333.586350px;}
.y190{bottom:333.601350px;}
.y66{bottom:333.604650px;}
.y100{bottom:333.615900px;}
.y1be{bottom:333.616050px;}
.ydc{bottom:333.631350px;}
.y20f{bottom:334.246350px;}
.y51{bottom:334.327650px;}
.y29a{bottom:336.815850px;}
.y1c{bottom:340.537800px;}
.y14f{bottom:341.031450px;}
.y142{bottom:342.531450px;}
.y299{bottom:349.562100px;}
.y50{bottom:350.824650px;}
.yb2{bottom:351.571350px;}
.y250{bottom:351.577350px;}
.y12d{bottom:351.586350px;}
.y18f{bottom:351.601350px;}
.y65{bottom:351.604650px;}
.yff{bottom:351.615900px;}
.y1bd{bottom:351.616050px;}
.ydb{bottom:351.631350px;}
.y20e{bottom:352.276350px;}
.y196{bottom:353.386200px;}
.y32{bottom:354.205650px;}
.y14e{bottom:359.541450px;}
.y141{bottom:360.531450px;}
.y298{bottom:362.308350px;}
.y4f{bottom:367.321650px;}
.y31{bottom:368.605650px;}
.yb1{bottom:369.571350px;}
.y12c{bottom:369.586350px;}
.y18e{bottom:369.601350px;}
.y64{bottom:369.604650px;}
.y1bc{bottom:369.616050px;}
.yda{bottom:369.631350px;}
.y195{bottom:369.883200px;}
.y20d{bottom:370.306350px;}
.y24f{bottom:371.977350px;}
.y297{bottom:375.054600px;}
.y14d{bottom:378.051450px;}
.y140{bottom:378.531450px;}
.y30{bottom:383.005650px;}
.yfe{bottom:383.115900px;}
.y4e{bottom:383.818650px;}
.y194{bottom:386.380200px;}
.yb0{bottom:387.571350px;}
.y12b{bottom:387.586350px;}
.y18d{bottom:387.601350px;}
.y63{bottom:387.604650px;}
.y1bb{bottom:387.616050px;}
.yd9{bottom:387.631350px;}
.y296{bottom:387.800850px;}
.y20c{bottom:388.336350px;}
.y24e{bottom:392.509350px;}
.y2f{bottom:397.405650px;}
.y4d{bottom:400.315650px;}
.y295{bottom:400.547100px;}
.yfd{bottom:401.115900px;}
.yaf{bottom:405.571350px;}
.y12a{bottom:405.586350px;}
.y18c{bottom:405.601350px;}
.y62{bottom:405.604650px;}
.y1ba{bottom:405.616050px;}
.yd8{bottom:405.631350px;}
.y20b{bottom:406.366350px;}
.y24d{bottom:407.041350px;}
.y2e{bottom:411.805650px;}
.y294{bottom:413.293350px;}
.y4c{bottom:416.812650px;}
.yfc{bottom:419.115900px;}
.y24c{bottom:421.573350px;}
.yae{bottom:423.571350px;}
.y129{bottom:423.586350px;}
.y18b{bottom:423.601350px;}
.y61{bottom:423.604650px;}
.y1b9{bottom:423.616050px;}
.yd7{bottom:423.631350px;}
.y20a{bottom:424.396350px;}
.y17e{bottom:424.761300px;}
.y293{bottom:426.039600px;}
.y2d{bottom:426.205650px;}
.y4b{bottom:433.309650px;}
.yfb{bottom:437.115900px;}
.y292{bottom:438.785850px;}
.y17d{bottom:439.761300px;}
.yad{bottom:441.571350px;}
.y128{bottom:441.586350px;}
.y18a{bottom:441.601350px;}
.y60{bottom:441.610650px;}
.y1b8{bottom:441.616050px;}
.yd6{bottom:441.631350px;}
.y24b{bottom:442.105350px;}
.y209{bottom:442.426350px;}
.y182{bottom:446.071350px;}
.y4a{bottom:449.806650px;}
.y291{bottom:451.532100px;}
.y17c{bottom:454.761300px;}
.yfa{bottom:455.115900px;}
.yac{bottom:459.571350px;}
.y127{bottom:459.586350px;}
.y189{bottom:459.601350px;}
.y5f{bottom:459.610650px;}
.y1b7{bottom:459.616050px;}
.yd5{bottom:459.631350px;}
.y208{bottom:460.456350px;}
.y24a{bottom:463.237350px;}
.y181{bottom:464.071350px;}
.y290{bottom:464.278350px;}
.y49{bottom:466.303650px;}
.yf9{bottom:473.115900px;}
.y28f{bottom:477.024600px;}
.yab{bottom:477.571350px;}
.y126{bottom:477.586350px;}
.y188{bottom:477.601350px;}
.y5e{bottom:477.610650px;}
.y1b6{bottom:477.616050px;}
.yd4{bottom:477.631350px;}
.y249{bottom:477.637350px;}
.y207{bottom:478.486350px;}
.y17b{bottom:482.022000px;}
.y180{bottom:482.071350px;}
.y48{bottom:482.800650px;}
.y28e{bottom:489.770850px;}
.yf8{bottom:491.115900px;}
.y248{bottom:492.037350px;}
.yaa{bottom:495.571350px;}
.y125{bottom:495.586350px;}
.y187{bottom:495.601350px;}
.y1b5{bottom:495.616050px;}
.yd3{bottom:495.631350px;}
.y206{bottom:496.516350px;}
.y47{bottom:499.297650px;}
.y17f{bottom:500.071350px;}
.y28d{bottom:502.517100px;}
.y17a{bottom:502.987500px;}
.y247{bottom:506.437350px;}
.yf7{bottom:509.115900px;}
.ya9{bottom:513.571350px;}
.y124{bottom:513.586350px;}
.y186{bottom:513.601350px;}
.y1b4{bottom:513.616050px;}
.yd2{bottom:513.631350px;}
.y205{bottom:514.546350px;}
.y28c{bottom:515.263350px;}
.y46{bottom:515.794650px;}
.y246{bottom:520.837350px;}
.y86{bottom:524.518500px;}
.y179{bottom:524.628000px;}
.yf6{bottom:527.115900px;}
.y28b{bottom:528.009600px;}
.ya8{bottom:531.571350px;}
.y123{bottom:531.586350px;}
.y185{bottom:531.601350px;}
.y1b3{bottom:531.616050px;}
.yd1{bottom:531.631350px;}
.y45{bottom:532.291650px;}
.y204{bottom:532.576350px;}
.y245{bottom:535.237350px;}
.y28a{bottom:540.755850px;}
.y85{bottom:541.015500px;}
.yf5{bottom:545.115900px;}
.y178{bottom:546.268500px;}
.y44{bottom:548.788650px;}
.ya7{bottom:549.571350px;}
.y122{bottom:549.586350px;}
.y184{bottom:549.601350px;}
.y1b2{bottom:549.616050px;}
.yd0{bottom:549.631350px;}
.y244{bottom:549.637350px;}
.y203{bottom:550.606350px;}
.y289{bottom:553.502100px;}
.y1b{bottom:553.834650px;}
.y84{bottom:557.512500px;}
.yf4{bottom:563.115900px;}
.y243{bottom:564.037350px;}
.y43{bottom:565.285650px;}
.y288{bottom:566.248350px;}
.ya6{bottom:567.571350px;}
.y121{bottom:567.586350px;}
.y183{bottom:567.601350px;}
.y1b1{bottom:567.616050px;}
.y177{bottom:567.909000px;}
.y202{bottom:568.636350px;}
.y1a{bottom:568.834650px;}
.y83{bottom:574.009500px;}
.y242{bottom:578.437350px;}
.y287{bottom:578.994600px;}
.yf3{bottom:581.115900px;}
.y42{bottom:581.782650px;}
.ycf{bottom:584.236350px;}
.ya5{bottom:585.571350px;}
.y120{bottom:585.586350px;}
.y1b0{bottom:585.616050px;}
.y201{bottom:586.666350px;}
.y176{bottom:589.549500px;}
.y82{bottom:590.515500px;}
.y286{bottom:591.740850px;}
.y241{bottom:592.837350px;}
.y19{bottom:597.334650px;}
.y41{bottom:598.279650px;}
.yf2{bottom:599.115900px;}
.yce{bottom:602.236350px;}
.ya4{bottom:603.571350px;}
.y11f{bottom:603.586350px;}
.y1af{bottom:603.616050px;}
.y285{bottom:604.487100px;}
.y200{bottom:604.696350px;}
.y81{bottom:607.012500px;}
.y240{bottom:607.237350px;}
.y175{bottom:611.190000px;}
.y18{bottom:612.334650px;}
.y40{bottom:614.776650px;}
.yf1{bottom:617.115900px;}
.y284{bottom:617.233350px;}
.ycd{bottom:620.236350px;}
.ya3{bottom:621.571350px;}
.y11e{bottom:621.586350px;}
.y1ae{bottom:621.616050px;}
.y23f{bottom:621.637350px;}
.y1ff{bottom:622.726350px;}
.y80{bottom:623.509500px;}
.y17{bottom:627.334650px;}
.y283{bottom:629.979600px;}
.y3f{bottom:631.273650px;}
.y174{bottom:632.830500px;}
.yf0{bottom:635.115900px;}
.y23e{bottom:636.037350px;}
.ycc{bottom:638.236350px;}
.ya2{bottom:639.571350px;}
.y11d{bottom:639.586350px;}
.y1ad{bottom:639.616050px;}
.y7f{bottom:640.018500px;}
.y1fe{bottom:640.756350px;}
.y16{bottom:642.334650px;}
.y282{bottom:642.725850px;}
.y3e{bottom:647.770650px;}
.y23d{bottom:650.437350px;}
.yef{bottom:653.115900px;}
.y173{bottom:654.471000px;}
.y281{bottom:655.472100px;}
.ycb{bottom:656.236350px;}
.y7e{bottom:656.515500px;}
.y15{bottom:657.334650px;}
.ya1{bottom:657.571350px;}
.y11c{bottom:657.586350px;}
.y1ac{bottom:657.616050px;}
.y1fd{bottom:658.786350px;}
.y3d{bottom:664.267650px;}
.y23c{bottom:664.837350px;}
.y280{bottom:668.218350px;}
.yee{bottom:671.115900px;}
.y14{bottom:672.334650px;}
.y7d{bottom:673.012500px;}
.yca{bottom:674.236350px;}
.ya0{bottom:675.571350px;}
.y11b{bottom:675.586350px;}
.y1ab{bottom:675.616050px;}
.y172{bottom:676.111500px;}
.y1fc{bottom:676.816350px;}
.y23b{bottom:679.237350px;}
.y3c{bottom:680.764650px;}
.y27f{bottom:680.964600px;}
.y13{bottom:687.334650px;}
.yed{bottom:689.115900px;}
.y7c{bottom:689.509500px;}
.yc9{bottom:692.236350px;}
.y9f{bottom:693.571350px;}
.y11a{bottom:693.586350px;}
.y1aa{bottom:693.616050px;}
.y23a{bottom:693.637350px;}
.y27e{bottom:693.710850px;}
.y1fb{bottom:694.846350px;}
.y3b{bottom:697.261650px;}
.y171{bottom:697.752000px;}
.y7b{bottom:706.015500px;}
.y27d{bottom:706.457100px;}
.yec{bottom:707.115900px;}
.y239{bottom:708.037350px;}
.yc8{bottom:710.236350px;}
.y12{bottom:711.334650px;}
.y9e{bottom:711.571350px;}
.y119{bottom:711.586350px;}
.y1a9{bottom:711.616050px;}
.y1fa{bottom:712.876350px;}
.y3a{bottom:713.758650px;}
.y170{bottom:713.952000px;}
.y27c{bottom:719.203350px;}
.y238{bottom:722.437350px;}
.y7a{bottom:722.512500px;}
.yeb{bottom:725.115900px;}
.y11{bottom:726.334650px;}
.y9d{bottom:729.571350px;}
.y118{bottom:729.586350px;}
.y1a8{bottom:729.616050px;}
.y39{bottom:730.255650px;}
.y27b{bottom:731.949600px;}
.y16f{bottom:735.592500px;}
.y237{bottom:736.837350px;}
.y79{bottom:739.009500px;}
.y10{bottom:741.334650px;}
.y27a{bottom:744.695850px;}
.yc7{bottom:744.841350px;}
.y38{bottom:746.752650px;}
.y9c{bottom:747.571350px;}
.y117{bottom:747.586350px;}
.y1a7{bottom:747.616050px;}
.y236{bottom:751.237350px;}
.y78{bottom:755.515500px;}
.yf{bottom:756.334650px;}
.y16e{bottom:757.233000px;}
.y279{bottom:757.442100px;}
.yc6{bottom:762.841350px;}
.y37{bottom:763.249650px;}
.y9b{bottom:765.571350px;}
.y116{bottom:765.586350px;}
.y1a6{bottom:765.616050px;}
.y235{bottom:765.637350px;}
.y13f{bottom:765.960900px;}
.y278{bottom:770.188350px;}
.ye{bottom:771.334650px;}
.y77{bottom:772.012500px;}
.y16d{bottom:778.873500px;}
.y36{bottom:779.746650px;}
.y234{bottom:780.037350px;}
.yc5{bottom:780.841350px;}
.y13e{bottom:782.160900px;}
.y277{bottom:782.934600px;}
.y1f9{bottom:783.031350px;}
.y9a{bottom:783.571350px;}
.y115{bottom:783.586350px;}
.y1a5{bottom:783.616050px;}
.yd{bottom:786.334650px;}
.y76{bottom:788.509500px;}
.y233{bottom:794.437350px;}
.y276{bottom:795.680850px;}
.y35{bottom:796.243650px;}
.y13d{bottom:798.360900px;}
.y16c{bottom:800.514000px;}
.y1f8{bottom:801.061350px;}
.yc{bottom:801.334650px;}
.y99{bottom:801.571350px;}
.y114{bottom:801.586350px;}
.y1a4{bottom:801.616050px;}
.y275{bottom:808.427100px;}
.y232{bottom:808.837350px;}
.y34{bottom:812.740650px;}
.y13c{bottom:814.560900px;}
.yc4{bottom:815.446350px;}
.yb{bottom:816.334650px;}
.y1f7{bottom:819.091350px;}
.y98{bottom:819.571350px;}
.y113{bottom:819.586350px;}
.y75{bottom:820.240800px;}
.y274{bottom:821.173350px;}
.y16b{bottom:822.154500px;}
.y231{bottom:823.237350px;}
.y33{bottom:829.240650px;}
.y2c5{bottom:829.351350px;}
.y2da{bottom:829.722600px;}
.ya{bottom:831.334650px;}
.yc3{bottom:833.446350px;}
.y273{bottom:833.919600px;}
.y1f6{bottom:837.121350px;}
.y97{bottom:837.571350px;}
.y230{bottom:837.637350px;}
.y2c4{bottom:842.097600px;}
.y2d9{bottom:843.728850px;}
.y16a{bottom:843.795000px;}
.y272{bottom:846.665850px;}
.yc2{bottom:851.446350px;}
.y22f{bottom:852.037350px;}
.y2c3{bottom:854.843850px;}
.y1f5{bottom:855.151350px;}
.y96{bottom:855.571350px;}
.y2d8{bottom:857.735100px;}
.y271{bottom:859.412100px;}
.y1db{bottom:859.995900px;}
.y169{bottom:865.435500px;}
.y22e{bottom:866.437350px;}
.y2c2{bottom:867.590100px;}
.y1da{bottom:871.155900px;}
.y2d7{bottom:871.741350px;}
.y270{bottom:872.158350px;}
.y1f4{bottom:873.181350px;}
.y95{bottom:873.571350px;}
.y2c1{bottom:880.336350px;}
.y1d9{bottom:882.315900px;}
.y26f{bottom:884.904600px;}
.y2d6{bottom:885.747600px;}
.y22d{bottom:886.837350px;}
.y168{bottom:887.076000px;}
.y1f3{bottom:891.211350px;}
.y94{bottom:891.571350px;}
.y2c0{bottom:893.082600px;}
.y26e{bottom:897.650850px;}
.y9{bottom:898.240650px;}
.y2d5{bottom:899.753850px;}
.y22c{bottom:901.369350px;}
.y2bf{bottom:905.828850px;}
.y1d8{bottom:906.948000px;}
.y167{bottom:908.716500px;}
.y1f2{bottom:909.241350px;}
.y93{bottom:909.571350px;}
.y26d{bottom:910.397100px;}
.y2d4{bottom:913.760100px;}
.y22b{bottom:915.901350px;}
.y8{bottom:918.040650px;}
.y2be{bottom:918.575100px;}
.y1d7{bottom:919.548000px;}
.y26c{bottom:923.143350px;}
.y1f1{bottom:927.271350px;}
.y92{bottom:927.571350px;}
.y2d3{bottom:927.766350px;}
.y166{bottom:930.357000px;}
.y2bd{bottom:931.321350px;}
.y26b{bottom:935.889600px;}
.y22a{bottom:936.433350px;}
.y1d6{bottom:937.545000px;}
.y2d2{bottom:941.772600px;}
.y2bc{bottom:944.067600px;}
.y1f0{bottom:945.301350px;}
.y91{bottom:945.571350px;}
.y26a{bottom:948.635850px;}
.y1d5{bottom:950.145000px;}
.y229{bottom:950.833350px;}
.y165{bottom:951.997500px;}
.y2d1{bottom:955.778850px;}
.y2bb{bottom:956.813850px;}
.y269{bottom:961.382100px;}
.y1ef{bottom:963.331350px;}
.y90{bottom:963.571350px;}
.y228{bottom:965.233350px;}
.y2ba{bottom:969.560100px;}
.y1d4{bottom:969.643500px;}
.y2d0{bottom:969.785100px;}
.y164{bottom:973.638000px;}
.y268{bottom:974.128350px;}
.y7{bottom:976.822650px;}
.y227{bottom:979.633350px;}
.y1ee{bottom:981.361350px;}
.y8f{bottom:981.571350px;}
.y1d3{bottom:982.243500px;}
.y2b9{bottom:982.306350px;}
.y2cf{bottom:983.791350px;}
.y267{bottom:986.874600px;}
.y226{bottom:994.033350px;}
.y1d2{bottom:994.843500px;}
.y2b8{bottom:995.052600px;}
.y163{bottom:995.278500px;}
.y2ce{bottom:997.797600px;}
.y1ed{bottom:999.391350px;}
.y8e{bottom:999.571350px;}
.y266{bottom:999.620850px;}
.y2b7{bottom:1007.798850px;}
.y225{bottom:1008.433350px;}
.y2cd{bottom:1011.803850px;}
.y265{bottom:1012.367100px;}
.y1d1{bottom:1014.342000px;}
.y162{bottom:1015.420500px;}
.y6{bottom:1015.828650px;}
.y1ec{bottom:1017.421350px;}
.y8d{bottom:1017.571350px;}
.y2b6{bottom:1020.545100px;}
.y224{bottom:1022.833350px;}
.y264{bottom:1025.113350px;}
.y2cc{bottom:1025.810100px;}
.y1d0{bottom:1026.942000px;}
.y2b5{bottom:1033.291350px;}
.y1eb{bottom:1035.451350px;}
.y8c{bottom:1035.571350px;}
.y223{bottom:1037.233350px;}
.y263{bottom:1037.863350px;}
.y2cb{bottom:1039.816350px;}
.y161{bottom:1040.058000px;}
.y1cf{bottom:1044.939000px;}
.y2b4{bottom:1046.037600px;}
.y222{bottom:1051.633350px;}
.y1ea{bottom:1053.481350px;}
.y112{bottom:1053.570900px;}
.y8b{bottom:1053.571350px;}
.y2ca{bottom:1053.822600px;}
.y5{bottom:1054.834650px;}
.y1ce{bottom:1057.539000px;}
.y2b3{bottom:1058.783850px;}
.y15f{bottom:1061.698500px;}
.y221{bottom:1066.033350px;}
.y2c9{bottom:1067.828850px;}
.y1e9{bottom:1071.511350px;}
.y2b2{bottom:1071.530100px;}
.y111{bottom:1071.570900px;}
.y8a{bottom:1071.571350px;}
.y160{bottom:1077.898500px;}
.y1cd{bottom:1080.040500px;}
.y220{bottom:1080.433350px;}
.y2c8{bottom:1081.835100px;}
.y2b1{bottom:1084.276350px;}
.y1e8{bottom:1089.541350px;}
.y110{bottom:1089.570900px;}
.y89{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y21f{bottom:1094.833350px;}
.y2c7{bottom:1095.841350px;}
.y2b0{bottom:1097.022600px;}
.y15e{bottom:1099.912350px;}
.y10f{bottom:1107.570900px;}
.y88{bottom:1107.571350px;}
.y21e{bottom:1109.233350px;}
.y262{bottom:1109.281350px;}
.y2af{bottom:1109.768850px;}
.y2c6{bottom:1109.847600px;}
.y3{bottom:1140.946200px;}
.y87{bottom:1140.946350px;}
.h8{height:23.931648px;}
.h18{height:27.193200px;}
.h17{height:30.702000px;}
.h19{height:32.895000px;}
.h9{height:34.944000px;}
.h13{height:35.088000px;}
.h3{height:36.096000px;}
.h16{height:36.403800px;}
.h14{height:37.281000px;}
.h10{height:39.474000px;}
.h15{height:40.392000px;}
.ha{height:40.608000px;}
.h11{height:42.768000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hb{height:44.040000px;}
.h12{height:44.863344px;}
.hd{height:56.174520px;}
.he{height:56.193720px;}
.hc{height:56.198520px;}
.hf{height:56.200320px;}
.h6{height:61.687098px;}
.h7{height:61.687698px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xd{left:74.249850px;}
.x15{left:80.247000px;}
.x18{left:84.675000px;}
.x16{left:129.750000px;}
.x4{left:220.379400px;}
.x2{left:266.555700px;}
.x11{left:333.750000px;}
.xe{left:460.331550px;}
.xf{left:473.831850px;}
.x12{left:482.250000px;}
.x17{left:484.249500px;}
.x8{left:537.519600px;}
.xa{left:546.518850px;}
.x9{left:551.017800px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x13{left:633.747000px;}
.x7{left:688.870650px;}
.x10{left:723.955500px;}
.x14{left:780.748500px;}
.x1{left:824.963400px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.928000pt;}
.v5{vertical-align:19.200000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024533pt;}
.ls1{letter-spacing:3.360000pt;}
.ls0{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls8{letter-spacing:193.618667pt;}
.ls7{letter-spacing:713.376000pt;}
.ls5{letter-spacing:1437.907200pt;}
.ws2{word-spacing:-13.866667pt;}
.wsc8{word-spacing:-13.344000pt;}
.wsb6{word-spacing:-12.800000pt;}
.ws135{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.wsf3{word-spacing:-10.378667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws3{word-spacing:-9.193600pt;}
.wsb8{word-spacing:-7.864064pt;}
.wsf0{word-spacing:-6.936000pt;}
.ws1{word-spacing:-6.789120pt;}
.ws49{word-spacing:-4.960000pt;}
.ws4e{word-spacing:-4.800000pt;}
.ws109{word-spacing:-3.946667pt;}
.ws112{word-spacing:-3.626667pt;}
.ws11b{word-spacing:-3.520000pt;}
.ws40{word-spacing:-3.413333pt;}
.ws96{word-spacing:-3.360000pt;}
.ws8a{word-spacing:-3.253333pt;}
.ws32{word-spacing:-3.146667pt;}
.wsce{word-spacing:-2.986667pt;}
.ws131{word-spacing:-2.933333pt;}
.wsbd{word-spacing:-2.826667pt;}
.ws4d{word-spacing:-2.720000pt;}
.ws5f{word-spacing:-2.666667pt;}
.wsc{word-spacing:-2.613333pt;}
.ws120{word-spacing:-2.506667pt;}
.wsa6{word-spacing:-2.453333pt;}
.wsee{word-spacing:-2.400000pt;}
.ws17{word-spacing:-2.346667pt;}
.wsa7{word-spacing:-2.186667pt;}
.ws6f{word-spacing:-2.133333pt;}
.ws38{word-spacing:-2.080000pt;}
.wsb1{word-spacing:-1.973333pt;}
.wscb{word-spacing:-1.920000pt;}
.ws103{word-spacing:-1.813333pt;}
.ws100{word-spacing:-1.760000pt;}
.wsde{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.600000pt;}
.ws7{word-spacing:-1.578667pt;}
.wscf{word-spacing:-1.546667pt;}
.ws2c{word-spacing:-1.536000pt;}
.ws71{word-spacing:-1.440000pt;}
.ws5b{word-spacing:-1.386667pt;}
.ws84{word-spacing:-1.226667pt;}
.wsac{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.906667pt;}
.wsb5{word-spacing:-0.853333pt;}
.wsc3{word-spacing:-0.800000pt;}
.wsae{word-spacing:-0.746667pt;}
.wsad{word-spacing:-0.693333pt;}
.ws12e{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.586667pt;}
.ws78{word-spacing:-0.480000pt;}
.ws73{word-spacing:-0.373333pt;}
.ws9d{word-spacing:-0.320000pt;}
.ws11d{word-spacing:-0.266667pt;}
.ws53{word-spacing:-0.213333pt;}
.ws134{word-spacing:-0.170667pt;}
.ws61{word-spacing:-0.053333pt;}
.wsb7{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.wse4{word-spacing:0.053333pt;}
.ws10f{word-spacing:0.106667pt;}
.ws46{word-spacing:0.213333pt;}
.ws117{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws95{word-spacing:0.373333pt;}
.ws27{word-spacing:0.384000pt;}
.ws4c{word-spacing:0.426667pt;}
.ws37{word-spacing:0.495040pt;}
.ws12{word-spacing:0.533333pt;}
.ws12a{word-spacing:0.693333pt;}
.ws36{word-spacing:0.746667pt;}
.ws11a{word-spacing:0.800000pt;}
.ws94{word-spacing:0.960000pt;}
.ws98{word-spacing:1.013333pt;}
.wse0{word-spacing:1.066667pt;}
.ws34{word-spacing:1.120000pt;}
.ws54{word-spacing:1.166880pt;}
.ws132{word-spacing:1.173333pt;}
.wsfb{word-spacing:1.226667pt;}
.ws39{word-spacing:1.280000pt;}
.ws8b{word-spacing:1.333333pt;}
.ws18{word-spacing:1.386667pt;}
.ws123{word-spacing:1.493333pt;}
.wse1{word-spacing:1.546667pt;}
.ws5{word-spacing:1.578667pt;}
.ws85{word-spacing:1.600000pt;}
.ws8d{word-spacing:1.706667pt;}
.ws3e{word-spacing:1.760000pt;}
.wsd0{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.872000pt;}
.ws133{word-spacing:1.920000pt;}
.ws83{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.080000pt;}
.ws2d{word-spacing:2.160000pt;}
.ws107{word-spacing:2.186667pt;}
.wsda{word-spacing:2.293333pt;}
.ws10d{word-spacing:2.346667pt;}
.wsfc{word-spacing:2.400000pt;}
.ws59{word-spacing:2.453333pt;}
.ws6c{word-spacing:2.613333pt;}
.wsdd{word-spacing:2.666667pt;}
.wsb9{word-spacing:2.720000pt;}
.ws5c{word-spacing:2.826667pt;}
.ws45{word-spacing:2.864160pt;}
.ws1e{word-spacing:2.880000pt;}
.ws47{word-spacing:2.933333pt;}
.ws48{word-spacing:2.986667pt;}
.wseb{word-spacing:3.040000pt;}
.ws6b{word-spacing:3.093333pt;}
.ws52{word-spacing:3.146667pt;}
.ws90{word-spacing:3.253333pt;}
.wse9{word-spacing:3.306667pt;}
.wsf9{word-spacing:3.360000pt;}
.wsfa{word-spacing:3.413333pt;}
.wsaf{word-spacing:3.520000pt;}
.wsf7{word-spacing:3.571360pt;}
.ws9e{word-spacing:3.573333pt;}
.ws9f{word-spacing:3.626667pt;}
.wsd1{word-spacing:3.680000pt;}
.ws26{word-spacing:3.696000pt;}
.ws77{word-spacing:3.786667pt;}
.wsab{word-spacing:3.840000pt;}
.wsdb{word-spacing:3.893333pt;}
.ws9{word-spacing:3.946667pt;}
.wsea{word-spacing:4.000000pt;}
.wsed{word-spacing:4.053333pt;}
.wsbc{word-spacing:4.160000pt;}
.ws82{word-spacing:4.213333pt;}
.ws105{word-spacing:4.266667pt;}
.ws44{word-spacing:4.320000pt;}
.ws130{word-spacing:4.373333pt;}
.wsc6{word-spacing:4.480000pt;}
.ws41{word-spacing:4.533333pt;}
.ws2f{word-spacing:4.560000pt;}
.wse8{word-spacing:4.586667pt;}
.ws24{word-spacing:4.704000pt;}
.ws12d{word-spacing:4.746667pt;}
.ws51{word-spacing:4.800000pt;}
.wse2{word-spacing:4.906667pt;}
.ws10c{word-spacing:5.066667pt;}
.ws108{word-spacing:5.120000pt;}
.wsf{word-spacing:5.173333pt;}
.ws2a{word-spacing:5.184000pt;}
.ws25{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.333333pt;}
.ws15{word-spacing:5.386667pt;}
.ws50{word-spacing:5.440000pt;}
.ws7f{word-spacing:5.546667pt;}
.ws86{word-spacing:5.600000pt;}
.ws55{word-spacing:5.653333pt;}
.ws11{word-spacing:5.706667pt;}
.wsd8{word-spacing:5.760000pt;}
.ws106{word-spacing:5.866667pt;}
.wsc4{word-spacing:5.920000pt;}
.ws10a{word-spacing:5.975840pt;}
.ws67{word-spacing:6.026667pt;}
.ws76{word-spacing:6.080000pt;}
.wsc2{word-spacing:6.186667pt;}
.ws5e{word-spacing:6.293333pt;}
.ws121{word-spacing:6.346667pt;}
.wsa0{word-spacing:6.400000pt;}
.wsb{word-spacing:6.453333pt;}
.ws11e{word-spacing:6.560000pt;}
.wsd7{word-spacing:6.613333pt;}
.ws9b{word-spacing:6.666667pt;}
.ws7e{word-spacing:6.720000pt;}
.ws70{word-spacing:6.773333pt;}
.ws87{word-spacing:6.826667pt;}
.wsb0{word-spacing:6.880000pt;}
.ws125{word-spacing:6.933333pt;}
.wsa2{word-spacing:6.986667pt;}
.ws63{word-spacing:7.040000pt;}
.ws31{word-spacing:7.093333pt;}
.ws28{word-spacing:7.104000pt;}
.wsf8{word-spacing:7.146667pt;}
.ws16{word-spacing:7.253333pt;}
.wsff{word-spacing:7.360000pt;}
.ws9a{word-spacing:7.413333pt;}
.ws110{word-spacing:7.520000pt;}
.ws118{word-spacing:7.573333pt;}
.ws93{word-spacing:7.626667pt;}
.wsf4{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.733333pt;}
.ws1b{word-spacing:7.840000pt;}
.ws10b{word-spacing:7.893333pt;}
.ws89{word-spacing:8.000000pt;}
.wse6{word-spacing:8.053333pt;}
.ws64{word-spacing:8.106667pt;}
.ws1f{word-spacing:8.213333pt;}
.ws126{word-spacing:8.266667pt;}
.ws101{word-spacing:8.373333pt;}
.ws8e{word-spacing:8.426667pt;}
.ws116{word-spacing:8.480000pt;}
.wscd{word-spacing:8.533333pt;}
.ws97{word-spacing:8.586667pt;}
.ws13{word-spacing:8.693333pt;}
.ws81{word-spacing:8.800000pt;}
.ws5a{word-spacing:8.960000pt;}
.wsa3{word-spacing:9.013333pt;}
.ws5d{word-spacing:9.066667pt;}
.ws124{word-spacing:9.173333pt;}
.ws115{word-spacing:9.226667pt;}
.ws111{word-spacing:9.546667pt;}
.ws23{word-spacing:9.653333pt;}
.ws8c{word-spacing:9.706667pt;}
.wsd9{word-spacing:9.760000pt;}
.ws69{word-spacing:9.866667pt;}
.wsd5{word-spacing:9.973333pt;}
.ws8f{word-spacing:10.026667pt;}
.wsfe{word-spacing:10.080000pt;}
.ws3d{word-spacing:10.133333pt;}
.ws92{word-spacing:10.186667pt;}
.ws11c{word-spacing:10.346667pt;}
.ws12b{word-spacing:10.400000pt;}
.wsc5{word-spacing:10.506667pt;}
.wsdf{word-spacing:10.613333pt;}
.wsd3{word-spacing:10.720000pt;}
.ws113{word-spacing:10.773333pt;}
.wse7{word-spacing:10.880000pt;}
.wsc0{word-spacing:10.986667pt;}
.ws2e{word-spacing:11.040000pt;}
.wsa5{word-spacing:11.146667pt;}
.ws57{word-spacing:11.200000pt;}
.wsef{word-spacing:11.253333pt;}
.wsd2{word-spacing:11.306667pt;}
.ws88{word-spacing:11.413333pt;}
.wsd4{word-spacing:11.466667pt;}
.ws14{word-spacing:11.520000pt;}
.ws128{word-spacing:11.573333pt;}
.ws60{word-spacing:11.626667pt;}
.ws3f{word-spacing:11.786667pt;}
.ws43{word-spacing:11.946667pt;}
.ws79{word-spacing:12.000000pt;}
.wsa8{word-spacing:12.053333pt;}
.ws10e{word-spacing:12.106667pt;}
.wsec{word-spacing:12.160000pt;}
.wsc1{word-spacing:12.266667pt;}
.ws9c{word-spacing:12.320000pt;}
.ws68{word-spacing:12.426667pt;}
.ws4f{word-spacing:12.746667pt;}
.ws91{word-spacing:13.013333pt;}
.ws20{word-spacing:13.120000pt;}
.ws129{word-spacing:13.173333pt;}
.ws102{word-spacing:13.280000pt;}
.ws62{word-spacing:13.386667pt;}
.ws3c{word-spacing:13.493333pt;}
.ws19{word-spacing:13.546667pt;}
.ws75{word-spacing:13.653333pt;}
.ws56{word-spacing:13.760000pt;}
.ws29{word-spacing:13.824000pt;}
.ws12c{word-spacing:13.920000pt;}
.ws99{word-spacing:13.973333pt;}
.ws114{word-spacing:14.026667pt;}
.ws7a{word-spacing:14.453333pt;}
.ws127{word-spacing:14.560000pt;}
.wsfd{word-spacing:14.613333pt;}
.ws122{word-spacing:14.666667pt;}
.ws42{word-spacing:15.040000pt;}
.wsbb{word-spacing:15.146667pt;}
.wsa4{word-spacing:15.200000pt;}
.ws30{word-spacing:15.253333pt;}
.ws4b{word-spacing:15.306667pt;}
.wscc{word-spacing:15.360000pt;}
.wsf6{word-spacing:15.520000pt;}
.ws3a{word-spacing:15.733333pt;}
.wsa1{word-spacing:15.786667pt;}
.ws1d{word-spacing:15.840000pt;}
.ws6e{word-spacing:15.893333pt;}
.ws66{word-spacing:15.946667pt;}
.ws21{word-spacing:16.106667pt;}
.ws7d{word-spacing:16.213333pt;}
.ws72{word-spacing:16.426667pt;}
.ws7b{word-spacing:16.533333pt;}
.ws12f{word-spacing:16.853333pt;}
.wsf5{word-spacing:17.066667pt;}
.wsbe{word-spacing:17.493333pt;}
.ws1c{word-spacing:17.760000pt;}
.wsba{word-spacing:18.346667pt;}
.ws119{word-spacing:18.560000pt;}
.wsbf{word-spacing:18.666667pt;}
.wsd{word-spacing:18.826667pt;}
.ws8{word-spacing:18.933333pt;}
.ws65{word-spacing:19.413333pt;}
.wsdc{word-spacing:19.520000pt;}
.ws3b{word-spacing:19.626667pt;}
.wsaa{word-spacing:19.733333pt;}
.ws11f{word-spacing:20.533333pt;}
.ws74{word-spacing:20.960000pt;}
.wsd6{word-spacing:21.973333pt;}
.wse3{word-spacing:22.080000pt;}
.wse{word-spacing:22.986667pt;}
.wsb3{word-spacing:23.466667pt;}
.ws7c{word-spacing:23.573333pt;}
.ws58{word-spacing:25.333333pt;}
.wse5{word-spacing:27.040000pt;}
.wsc7{word-spacing:28.053333pt;}
.ws10{word-spacing:30.986667pt;}
.ws1a{word-spacing:33.546667pt;}
.wsc9{word-spacing:34.656000pt;}
.ws104{word-spacing:40.213333pt;}
.wsb2{word-spacing:49.386667pt;}
.wsca{word-spacing:299.880000pt;}
.wsf1{word-spacing:349.253333pt;}
.wsf2{word-spacing:390.768000pt;}
._1f{margin-left:-1755.600000pt;}
._6d{margin-left:-54.323317pt;}
._12{margin-left:-52.480000pt;}
._2b{margin-left:-48.000000pt;}
._e{margin-left:-44.853333pt;}
._a{margin-left:-42.640000pt;}
._30{margin-left:-34.656000pt;}
._1c{margin-left:-33.600000pt;}
._1{margin-left:-29.333333pt;}
._7e{margin-left:-27.040000pt;}
._1b{margin-left:-25.920000pt;}
._16{margin-left:-23.786667pt;}
._10{margin-left:-21.706667pt;}
._17{margin-left:-20.723317pt;}
._f{margin-left:-19.253333pt;}
._19{margin-left:-18.133333pt;}
._1a{margin-left:-17.230933pt;}
._5{margin-left:-16.309333pt;}
._11{margin-left:-13.866667pt;}
._15{margin-left:-12.906667pt;}
._58{margin-left:-11.802795pt;}
._d{margin-left:-10.712651pt;}
._b{margin-left:-9.813333pt;}
._13{margin-left:-8.906667pt;}
._18{margin-left:-6.720000pt;}
._2{margin-left:-5.403200pt;}
._c{margin-left:-4.088651pt;}
._7{margin-left:-3.157333pt;}
._0{margin-left:-1.578667pt;}
._6{width:1.050133pt;}
._14{width:2.323317pt;}
._59{width:5.600000pt;}
._5a{width:7.600000pt;}
._8{width:8.657067pt;}
._9{width:10.240000pt;}
._7f{width:11.648000pt;}
._3{width:13.016651pt;}
._81{width:18.200000pt;}
._80{width:22.360000pt;}
._4{width:31.701867pt;}
._1d{width:33.792000pt;}
._1e{width:34.731200pt;}
._62{width:38.112000pt;}
._57{width:39.888000pt;}
._55{width:44.679349pt;}
._22{width:48.000000pt;}
._6c{width:49.368000pt;}
._64{width:50.818667pt;}
._6a{width:52.314667pt;}
._7d{width:53.677333pt;}
._40{width:54.896000pt;}
._56{width:55.872000pt;}
._7c{width:57.376000pt;}
._5f{width:77.520000pt;}
._61{width:79.698667pt;}
._6e{width:81.173333pt;}
._65{width:91.528000pt;}
._5c{width:95.880000pt;}
._7b{width:104.906667pt;}
._63{width:128.701333pt;}
._69{width:133.234667pt;}
._78{width:136.042667pt;}
._7a{width:143.098667pt;}
._75{width:146.421333pt;}
._66{width:153.906667pt;}
._76{width:168.544000pt;}
._77{width:173.376000pt;}
._79{width:175.093333pt;}
._73{width:178.416000pt;}
._5e{width:179.656000pt;}
._68{width:191.405984pt;}
._60{width:201.552000pt;}
._74{width:204.512000pt;}
._67{width:205.722667pt;}
._72{width:216.000000pt;}
._39{width:217.584000pt;}
._43{width:230.928000pt;}
._41{width:236.256000pt;}
._6b{width:243.576000pt;}
._42{width:246.912000pt;}
._37{width:249.600000pt;}
._44{width:257.568000pt;}
._5b{width:265.608000pt;}
._28{width:268.320000pt;}
._45{width:269.658667pt;}
._29{width:278.976000pt;}
._53{width:284.304000pt;}
._5d{width:287.050667pt;}
._2a{width:289.632000pt;}
._3f{width:295.008000pt;}
._26{width:297.648000pt;}
._38{width:300.288000pt;}
._24{width:302.976000pt;}
._3d{width:305.664000pt;}
._2f{width:310.992000pt;}
._25{width:313.632000pt;}
._2d{width:316.320000pt;}
._4f{width:321.696000pt;}
._2e{width:326.976000pt;}
._6f{width:328.240000pt;}
._50{width:332.352000pt;}
._35{width:337.680000pt;}
._52{width:339.408000pt;}
._70{width:343.056000pt;}
._71{width:348.394667pt;}
._48{width:364.368000pt;}
._33{width:369.696000pt;}
._34{width:380.352000pt;}
._20{width:390.672000pt;}
._46{width:396.384000pt;}
._21{width:401.328000pt;}
._47{width:407.040000pt;}
._3c{width:441.349333pt;}
._51{width:454.782699pt;}
._4c{width:462.240000pt;}
._54{width:511.434667pt;}
._3e{width:541.146667pt;}
._4d{width:560.880000pt;}
._4e{width:599.088000pt;}
._27{width:601.191349pt;}
._49{width:624.279349pt;}
._36{width:642.604683pt;}
._2c{width:652.856651pt;}
._3b{width:684.432000pt;}
._23{width:690.135349pt;}
._31{width:717.360000pt;}
._4b{width:771.600000pt;}
._32{width:783.589333pt;}
._4a{width:1824.976533pt;}
._3a{width:1834.624533pt;}
.fs6{font-size:28.288000pt;}
.fsc{font-size:33.066667pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fsb{font-size:37.333333pt;}
.fs4{font-size:38.896000pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:44.266667pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.yc1{bottom:72.507867pt;}
.y1e7{bottom:72.521200pt;}
.y13b{bottom:72.534533pt;}
.y74{bottom:72.537467pt;}
.y10e{bottom:72.547467pt;}
.y1cc{bottom:72.547600pt;}
.yea{bottom:72.561200pt;}
.y2c{bottom:72.566933pt;}
.y261{bottom:72.641200pt;}
.y21d{bottom:72.734533pt;}
.y2ae{bottom:72.791867pt;}
.y15d{bottom:72.792400pt;}
.y5d{bottom:72.849467pt;}
.y1a3{bottom:80.521067pt;}
.y2ad{bottom:84.121867pt;}
.y260{bottom:85.558533pt;}
.y2b{bottom:85.900267pt;}
.yc0{bottom:88.507867pt;}
.y1e6{bottom:88.521200pt;}
.y13a{bottom:88.534533pt;}
.y73{bottom:88.537467pt;}
.y10d{bottom:88.547467pt;}
.y1cb{bottom:88.547600pt;}
.ye9{bottom:88.561200pt;}
.y21c{bottom:88.761200pt;}
.y5c{bottom:88.849467pt;}
.y15c{bottom:89.245733pt;}
.y1a2{bottom:93.801067pt;}
.y2ac{bottom:95.451867pt;}
.y2a{bottom:99.233600pt;}
.ybf{bottom:104.507867pt;}
.y1e5{bottom:104.521200pt;}
.y139{bottom:104.534533pt;}
.y72{bottom:104.537467pt;}
.y10c{bottom:104.547467pt;}
.y1ca{bottom:104.547600pt;}
.ye8{bottom:104.561200pt;}
.y21b{bottom:104.787867pt;}
.y5b{bottom:104.849467pt;}
.y15b{bottom:105.699067pt;}
.y2ab{bottom:106.781867pt;}
.y1a1{bottom:107.081067pt;}
.y25f{bottom:109.142533pt;}
.y2aa{bottom:118.111867pt;}
.y1a0{bottom:120.361067pt;}
.ybe{bottom:120.507867pt;}
.y1e4{bottom:120.521200pt;}
.y138{bottom:120.534533pt;}
.y71{bottom:120.537467pt;}
.y10b{bottom:120.547467pt;}
.y1c9{bottom:120.547600pt;}
.ye7{bottom:120.561200pt;}
.y21a{bottom:120.814533pt;}
.y5a{bottom:120.849467pt;}
.y25e{bottom:122.059867pt;}
.y15a{bottom:122.152400pt;}
.y29{bottom:124.566933pt;}
.y2a9{bottom:129.441867pt;}
.y25d{bottom:134.977200pt;}
.ybd{bottom:136.507867pt;}
.y1e3{bottom:136.521200pt;}
.y137{bottom:136.534533pt;}
.y70{bottom:136.537467pt;}
.y10a{bottom:136.547467pt;}
.y1c8{bottom:136.547600pt;}
.ye6{bottom:136.561200pt;}
.y219{bottom:136.841200pt;}
.y59{bottom:136.849467pt;}
.y28{bottom:137.900267pt;}
.y159{bottom:138.605733pt;}
.y2a8{bottom:140.771867pt;}
.y19f{bottom:144.267867pt;}
.y14c{bottom:144.472400pt;}
.y25c{bottom:147.894533pt;}
.y2a7{bottom:152.101867pt;}
.ybc{bottom:152.507867pt;}
.y1e2{bottom:152.521200pt;}
.y136{bottom:152.534533pt;}
.y6f{bottom:152.537467pt;}
.y109{bottom:152.547467pt;}
.y1c7{bottom:152.547600pt;}
.ye5{bottom:152.561200pt;}
.y58{bottom:152.849467pt;}
.y218{bottom:152.867867pt;}
.y158{bottom:155.059067pt;}
.y27{bottom:156.033600pt;}
.y14b{bottom:160.472400pt;}
.y25b{bottom:160.811867pt;}
.y19e{bottom:162.389867pt;}
.y2a6{bottom:163.431867pt;}
.y26{bottom:164.566933pt;}
.ybb{bottom:168.507867pt;}
.y1e1{bottom:168.521200pt;}
.y135{bottom:168.534533pt;}
.y6e{bottom:168.537467pt;}
.y108{bottom:168.547467pt;}
.y1c6{bottom:168.547600pt;}
.ye4{bottom:168.561200pt;}
.y57{bottom:168.849467pt;}
.y217{bottom:168.894533pt;}
.y157{bottom:171.512400pt;}
.y25a{bottom:173.729200pt;}
.y2a5{bottom:174.761867pt;}
.y14a{bottom:176.472400pt;}
.y25{bottom:177.900267pt;}
.y19d{bottom:181.146533pt;}
.yba{bottom:184.507867pt;}
.y1e0{bottom:184.521200pt;}
.y134{bottom:184.534533pt;}
.y6d{bottom:184.537467pt;}
.y107{bottom:184.547467pt;}
.y1c5{bottom:184.547600pt;}
.ye3{bottom:184.561200pt;}
.y56{bottom:184.849467pt;}
.y216{bottom:184.921200pt;}
.y2a4{bottom:186.091867pt;}
.y156{bottom:187.965733pt;}
.y259{bottom:191.979867pt;}
.y149{bottom:192.472400pt;}
.y24{bottom:196.033600pt;}
.y2a3{bottom:197.421867pt;}
.y19c{bottom:199.903200pt;}
.yb9{bottom:200.507867pt;}
.y1df{bottom:200.521200pt;}
.y133{bottom:200.534533pt;}
.y6c{bottom:200.537467pt;}
.y106{bottom:200.547467pt;}
.y1c4{bottom:200.547600pt;}
.ye2{bottom:200.561200pt;}
.y55{bottom:200.849467pt;}
.y215{bottom:200.947867pt;}
.y155{bottom:204.419067pt;}
.y23{bottom:204.566933pt;}
.y258{bottom:204.779867pt;}
.y148{bottom:208.472400pt;}
.y2a2{bottom:208.751867pt;}
.yb8{bottom:216.507867pt;}
.y1de{bottom:216.521200pt;}
.y132{bottom:216.534533pt;}
.y6b{bottom:216.537467pt;}
.y105{bottom:216.547467pt;}
.y1c3{bottom:216.547600pt;}
.ye1{bottom:216.561200pt;}
.y214{bottom:216.974533pt;}
.y257{bottom:217.579867pt;}
.y22{bottom:217.900267pt;}
.y19b{bottom:218.659867pt;}
.y2a1{bottom:220.081867pt;}
.y154{bottom:220.872400pt;}
.y147{bottom:224.472400pt;}
.y256{bottom:230.379867pt;}
.y21{bottom:231.233600pt;}
.y2a0{bottom:231.411867pt;}
.yb7{bottom:232.507867pt;}
.y1dd{bottom:232.521200pt;}
.y131{bottom:232.534533pt;}
.y6a{bottom:232.537467pt;}
.y104{bottom:232.547467pt;}
.y1c2{bottom:232.547600pt;}
.ye0{bottom:232.561200pt;}
.y213{bottom:233.001200pt;}
.y153{bottom:237.325733pt;}
.y19a{bottom:237.416533pt;}
.y146{bottom:240.472400pt;}
.y29f{bottom:242.741867pt;}
.y255{bottom:243.179867pt;}
.y20{bottom:244.566933pt;}
.yb6{bottom:248.507867pt;}
.y1dc{bottom:248.521200pt;}
.y193{bottom:248.534533pt;}
.y69{bottom:248.537467pt;}
.y103{bottom:248.547467pt;}
.y1c1{bottom:248.547600pt;}
.ydf{bottom:248.561200pt;}
.y212{bottom:249.027867pt;}
.y54{bottom:253.188133pt;}
.y152{bottom:253.779067pt;}
.y29e{bottom:254.071867pt;}
.y254{bottom:255.979867pt;}
.y199{bottom:256.173200pt;}
.y145{bottom:256.472400pt;}
.y1f{bottom:262.700267pt;}
.yb5{bottom:264.507867pt;}
.y130{bottom:264.521200pt;}
.y192{bottom:264.534533pt;}
.y68{bottom:264.537467pt;}
.y102{bottom:264.547467pt;}
.y1c0{bottom:264.547600pt;}
.yde{bottom:264.561200pt;}
.y211{bottom:265.054533pt;}
.y29d{bottom:265.401867pt;}
.y53{bottom:267.852133pt;}
.y253{bottom:268.779867pt;}
.y151{bottom:270.232400pt;}
.y1e{bottom:271.233600pt;}
.y144{bottom:272.472400pt;}
.y198{bottom:273.603867pt;}
.y29c{bottom:276.731867pt;}
.yb4{bottom:280.507867pt;}
.y12f{bottom:280.521200pt;}
.y191{bottom:280.534533pt;}
.y67{bottom:280.537467pt;}
.y101{bottom:280.547467pt;}
.y1bf{bottom:280.547600pt;}
.ydd{bottom:280.561200pt;}
.y210{bottom:281.081200pt;}
.y252{bottom:281.579867pt;}
.y52{bottom:282.516133pt;}
.y1d{bottom:284.566933pt;}
.y150{bottom:286.685733pt;}
.y29b{bottom:288.061867pt;}
.y143{bottom:288.472400pt;}
.y251{bottom:294.379867pt;}
.y197{bottom:295.023867pt;}
.yb3{bottom:296.507867pt;}
.y12e{bottom:296.521200pt;}
.y190{bottom:296.534533pt;}
.y66{bottom:296.537467pt;}
.y100{bottom:296.547467pt;}
.y1be{bottom:296.547600pt;}
.ydc{bottom:296.561200pt;}
.y20f{bottom:297.107867pt;}
.y51{bottom:297.180133pt;}
.y29a{bottom:299.391867pt;}
.y1c{bottom:302.700267pt;}
.y14f{bottom:303.139067pt;}
.y142{bottom:304.472400pt;}
.y299{bottom:310.721867pt;}
.y50{bottom:311.844133pt;}
.yb2{bottom:312.507867pt;}
.y250{bottom:312.513200pt;}
.y12d{bottom:312.521200pt;}
.y18f{bottom:312.534533pt;}
.y65{bottom:312.537467pt;}
.yff{bottom:312.547467pt;}
.y1bd{bottom:312.547600pt;}
.ydb{bottom:312.561200pt;}
.y20e{bottom:313.134533pt;}
.y196{bottom:314.121067pt;}
.y32{bottom:314.849467pt;}
.y14e{bottom:319.592400pt;}
.y141{bottom:320.472400pt;}
.y298{bottom:322.051867pt;}
.y4f{bottom:326.508133pt;}
.y31{bottom:327.649467pt;}
.yb1{bottom:328.507867pt;}
.y12c{bottom:328.521200pt;}
.y18e{bottom:328.534533pt;}
.y64{bottom:328.537467pt;}
.y1bc{bottom:328.547600pt;}
.yda{bottom:328.561200pt;}
.y195{bottom:328.785067pt;}
.y20d{bottom:329.161200pt;}
.y24f{bottom:330.646533pt;}
.y297{bottom:333.381867pt;}
.y14d{bottom:336.045733pt;}
.y140{bottom:336.472400pt;}
.y30{bottom:340.449467pt;}
.yfe{bottom:340.547467pt;}
.y4e{bottom:341.172133pt;}
.y194{bottom:343.449067pt;}
.yb0{bottom:344.507867pt;}
.y12b{bottom:344.521200pt;}
.y18d{bottom:344.534533pt;}
.y63{bottom:344.537467pt;}
.y1bb{bottom:344.547600pt;}
.yd9{bottom:344.561200pt;}
.y296{bottom:344.711867pt;}
.y20c{bottom:345.187867pt;}
.y24e{bottom:348.897200pt;}
.y2f{bottom:353.249467pt;}
.y4d{bottom:355.836133pt;}
.y295{bottom:356.041867pt;}
.yfd{bottom:356.547467pt;}
.yaf{bottom:360.507867pt;}
.y12a{bottom:360.521200pt;}
.y18c{bottom:360.534533pt;}
.y62{bottom:360.537467pt;}
.y1ba{bottom:360.547600pt;}
.yd8{bottom:360.561200pt;}
.y20b{bottom:361.214533pt;}
.y24d{bottom:361.814533pt;}
.y2e{bottom:366.049467pt;}
.y294{bottom:367.371867pt;}
.y4c{bottom:370.500133pt;}
.yfc{bottom:372.547467pt;}
.y24c{bottom:374.731867pt;}
.yae{bottom:376.507867pt;}
.y129{bottom:376.521200pt;}
.y18b{bottom:376.534533pt;}
.y61{bottom:376.537467pt;}
.y1b9{bottom:376.547600pt;}
.yd7{bottom:376.561200pt;}
.y20a{bottom:377.241200pt;}
.y17e{bottom:377.565600pt;}
.y293{bottom:378.701867pt;}
.y2d{bottom:378.849467pt;}
.y4b{bottom:385.164133pt;}
.yfb{bottom:388.547467pt;}
.y292{bottom:390.031867pt;}
.y17d{bottom:390.898933pt;}
.yad{bottom:392.507867pt;}
.y128{bottom:392.521200pt;}
.y18a{bottom:392.534533pt;}
.y60{bottom:392.542800pt;}
.y1b8{bottom:392.547600pt;}
.yd6{bottom:392.561200pt;}
.y24b{bottom:392.982533pt;}
.y209{bottom:393.267867pt;}
.y182{bottom:396.507867pt;}
.y4a{bottom:399.828133pt;}
.y291{bottom:401.361867pt;}
.y17c{bottom:404.232267pt;}
.yfa{bottom:404.547467pt;}
.yac{bottom:408.507867pt;}
.y127{bottom:408.521200pt;}
.y189{bottom:408.534533pt;}
.y5f{bottom:408.542800pt;}
.y1b7{bottom:408.547600pt;}
.yd5{bottom:408.561200pt;}
.y208{bottom:409.294533pt;}
.y24a{bottom:411.766533pt;}
.y181{bottom:412.507867pt;}
.y290{bottom:412.691867pt;}
.y49{bottom:414.492133pt;}
.yf9{bottom:420.547467pt;}
.y28f{bottom:424.021867pt;}
.yab{bottom:424.507867pt;}
.y126{bottom:424.521200pt;}
.y188{bottom:424.534533pt;}
.y5e{bottom:424.542800pt;}
.y1b6{bottom:424.547600pt;}
.yd4{bottom:424.561200pt;}
.y249{bottom:424.566533pt;}
.y207{bottom:425.321200pt;}
.y17b{bottom:428.464000pt;}
.y180{bottom:428.507867pt;}
.y48{bottom:429.156133pt;}
.y28e{bottom:435.351867pt;}
.yf8{bottom:436.547467pt;}
.y248{bottom:437.366533pt;}
.yaa{bottom:440.507867pt;}
.y125{bottom:440.521200pt;}
.y187{bottom:440.534533pt;}
.y1b5{bottom:440.547600pt;}
.yd3{bottom:440.561200pt;}
.y206{bottom:441.347867pt;}
.y47{bottom:443.820133pt;}
.y17f{bottom:444.507867pt;}
.y28d{bottom:446.681867pt;}
.y17a{bottom:447.100000pt;}
.y247{bottom:450.166533pt;}
.yf7{bottom:452.547467pt;}
.ya9{bottom:456.507867pt;}
.y124{bottom:456.521200pt;}
.y186{bottom:456.534533pt;}
.y1b4{bottom:456.547600pt;}
.yd2{bottom:456.561200pt;}
.y205{bottom:457.374533pt;}
.y28c{bottom:458.011867pt;}
.y46{bottom:458.484133pt;}
.y246{bottom:462.966533pt;}
.y86{bottom:466.238667pt;}
.y179{bottom:466.336000pt;}
.yf6{bottom:468.547467pt;}
.y28b{bottom:469.341867pt;}
.ya8{bottom:472.507867pt;}
.y123{bottom:472.521200pt;}
.y185{bottom:472.534533pt;}
.y1b3{bottom:472.547600pt;}
.yd1{bottom:472.561200pt;}
.y45{bottom:473.148133pt;}
.y204{bottom:473.401200pt;}
.y245{bottom:475.766533pt;}
.y28a{bottom:480.671867pt;}
.y85{bottom:480.902667pt;}
.yf5{bottom:484.547467pt;}
.y178{bottom:485.572000pt;}
.y44{bottom:487.812133pt;}
.ya7{bottom:488.507867pt;}
.y122{bottom:488.521200pt;}
.y184{bottom:488.534533pt;}
.y1b2{bottom:488.547600pt;}
.yd0{bottom:488.561200pt;}
.y244{bottom:488.566533pt;}
.y203{bottom:489.427867pt;}
.y289{bottom:492.001867pt;}
.y1b{bottom:492.297467pt;}
.y84{bottom:495.566667pt;}
.yf4{bottom:500.547467pt;}
.y243{bottom:501.366533pt;}
.y43{bottom:502.476133pt;}
.y288{bottom:503.331867pt;}
.ya6{bottom:504.507867pt;}
.y121{bottom:504.521200pt;}
.y183{bottom:504.534533pt;}
.y1b1{bottom:504.547600pt;}
.y177{bottom:504.808000pt;}
.y202{bottom:505.454533pt;}
.y1a{bottom:505.630800pt;}
.y83{bottom:510.230667pt;}
.y242{bottom:514.166533pt;}
.y287{bottom:514.661867pt;}
.yf3{bottom:516.547467pt;}
.y42{bottom:517.140133pt;}
.ycf{bottom:519.321200pt;}
.ya5{bottom:520.507867pt;}
.y120{bottom:520.521200pt;}
.y1b0{bottom:520.547600pt;}
.y201{bottom:521.481200pt;}
.y176{bottom:524.044000pt;}
.y82{bottom:524.902667pt;}
.y286{bottom:525.991867pt;}
.y241{bottom:526.966533pt;}
.y19{bottom:530.964133pt;}
.y41{bottom:531.804133pt;}
.yf2{bottom:532.547467pt;}
.yce{bottom:535.321200pt;}
.ya4{bottom:536.507867pt;}
.y11f{bottom:536.521200pt;}
.y1af{bottom:536.547600pt;}
.y285{bottom:537.321867pt;}
.y200{bottom:537.507867pt;}
.y81{bottom:539.566667pt;}
.y240{bottom:539.766533pt;}
.y175{bottom:543.280000pt;}
.y18{bottom:544.297467pt;}
.y40{bottom:546.468133pt;}
.yf1{bottom:548.547467pt;}
.y284{bottom:548.651867pt;}
.ycd{bottom:551.321200pt;}
.ya3{bottom:552.507867pt;}
.y11e{bottom:552.521200pt;}
.y1ae{bottom:552.547600pt;}
.y23f{bottom:552.566533pt;}
.y1ff{bottom:553.534533pt;}
.y80{bottom:554.230667pt;}
.y17{bottom:557.630800pt;}
.y283{bottom:559.981867pt;}
.y3f{bottom:561.132133pt;}
.y174{bottom:562.516000pt;}
.yf0{bottom:564.547467pt;}
.y23e{bottom:565.366533pt;}
.ycc{bottom:567.321200pt;}
.ya2{bottom:568.507867pt;}
.y11d{bottom:568.521200pt;}
.y1ad{bottom:568.547600pt;}
.y7f{bottom:568.905333pt;}
.y1fe{bottom:569.561200pt;}
.y16{bottom:570.964133pt;}
.y282{bottom:571.311867pt;}
.y3e{bottom:575.796133pt;}
.y23d{bottom:578.166533pt;}
.yef{bottom:580.547467pt;}
.y173{bottom:581.752000pt;}
.y281{bottom:582.641867pt;}
.ycb{bottom:583.321200pt;}
.y7e{bottom:583.569333pt;}
.y15{bottom:584.297467pt;}
.ya1{bottom:584.507867pt;}
.y11c{bottom:584.521200pt;}
.y1ac{bottom:584.547600pt;}
.y1fd{bottom:585.587867pt;}
.y3d{bottom:590.460133pt;}
.y23c{bottom:590.966533pt;}
.y280{bottom:593.971867pt;}
.yee{bottom:596.547467pt;}
.y14{bottom:597.630800pt;}
.y7d{bottom:598.233333pt;}
.yca{bottom:599.321200pt;}
.ya0{bottom:600.507867pt;}
.y11b{bottom:600.521200pt;}
.y1ab{bottom:600.547600pt;}
.y172{bottom:600.988000pt;}
.y1fc{bottom:601.614533pt;}
.y23b{bottom:603.766533pt;}
.y3c{bottom:605.124133pt;}
.y27f{bottom:605.301867pt;}
.y13{bottom:610.964133pt;}
.yed{bottom:612.547467pt;}
.y7c{bottom:612.897333pt;}
.yc9{bottom:615.321200pt;}
.y9f{bottom:616.507867pt;}
.y11a{bottom:616.521200pt;}
.y1aa{bottom:616.547600pt;}
.y23a{bottom:616.566533pt;}
.y27e{bottom:616.631867pt;}
.y1fb{bottom:617.641200pt;}
.y3b{bottom:619.788133pt;}
.y171{bottom:620.224000pt;}
.y7b{bottom:627.569333pt;}
.y27d{bottom:627.961867pt;}
.yec{bottom:628.547467pt;}
.y239{bottom:629.366533pt;}
.yc8{bottom:631.321200pt;}
.y12{bottom:632.297467pt;}
.y9e{bottom:632.507867pt;}
.y119{bottom:632.521200pt;}
.y1a9{bottom:632.547600pt;}
.y1fa{bottom:633.667867pt;}
.y3a{bottom:634.452133pt;}
.y170{bottom:634.624000pt;}
.y27c{bottom:639.291867pt;}
.y238{bottom:642.166533pt;}
.y7a{bottom:642.233333pt;}
.yeb{bottom:644.547467pt;}
.y11{bottom:645.630800pt;}
.y9d{bottom:648.507867pt;}
.y118{bottom:648.521200pt;}
.y1a8{bottom:648.547600pt;}
.y39{bottom:649.116133pt;}
.y27b{bottom:650.621867pt;}
.y16f{bottom:653.860000pt;}
.y237{bottom:654.966533pt;}
.y79{bottom:656.897333pt;}
.y10{bottom:658.964133pt;}
.y27a{bottom:661.951867pt;}
.yc7{bottom:662.081200pt;}
.y38{bottom:663.780133pt;}
.y9c{bottom:664.507867pt;}
.y117{bottom:664.521200pt;}
.y1a7{bottom:664.547600pt;}
.y236{bottom:667.766533pt;}
.y78{bottom:671.569333pt;}
.yf{bottom:672.297467pt;}
.y16e{bottom:673.096000pt;}
.y279{bottom:673.281867pt;}
.yc6{bottom:678.081200pt;}
.y37{bottom:678.444133pt;}
.y9b{bottom:680.507867pt;}
.y116{bottom:680.521200pt;}
.y1a6{bottom:680.547600pt;}
.y235{bottom:680.566533pt;}
.y13f{bottom:680.854133pt;}
.y278{bottom:684.611867pt;}
.ye{bottom:685.630800pt;}
.y77{bottom:686.233333pt;}
.y16d{bottom:692.332000pt;}
.y36{bottom:693.108133pt;}
.y234{bottom:693.366533pt;}
.yc5{bottom:694.081200pt;}
.y13e{bottom:695.254133pt;}
.y277{bottom:695.941867pt;}
.y1f9{bottom:696.027867pt;}
.y9a{bottom:696.507867pt;}
.y115{bottom:696.521200pt;}
.y1a5{bottom:696.547600pt;}
.yd{bottom:698.964133pt;}
.y76{bottom:700.897333pt;}
.y233{bottom:706.166533pt;}
.y276{bottom:707.271867pt;}
.y35{bottom:707.772133pt;}
.y13d{bottom:709.654133pt;}
.y16c{bottom:711.568000pt;}
.y1f8{bottom:712.054533pt;}
.yc{bottom:712.297467pt;}
.y99{bottom:712.507867pt;}
.y114{bottom:712.521200pt;}
.y1a4{bottom:712.547600pt;}
.y275{bottom:718.601867pt;}
.y232{bottom:718.966533pt;}
.y34{bottom:722.436133pt;}
.y13c{bottom:724.054133pt;}
.yc4{bottom:724.841200pt;}
.yb{bottom:725.630800pt;}
.y1f7{bottom:728.081200pt;}
.y98{bottom:728.507867pt;}
.y113{bottom:728.521200pt;}
.y75{bottom:729.102933pt;}
.y274{bottom:729.931867pt;}
.y16b{bottom:730.804000pt;}
.y231{bottom:731.766533pt;}
.y33{bottom:737.102800pt;}
.y2c5{bottom:737.201200pt;}
.y2da{bottom:737.531200pt;}
.ya{bottom:738.964133pt;}
.yc3{bottom:740.841200pt;}
.y273{bottom:741.261867pt;}
.y1f6{bottom:744.107867pt;}
.y97{bottom:744.507867pt;}
.y230{bottom:744.566533pt;}
.y2c4{bottom:748.531200pt;}
.y2d9{bottom:749.981200pt;}
.y16a{bottom:750.040000pt;}
.y272{bottom:752.591867pt;}
.yc2{bottom:756.841200pt;}
.y22f{bottom:757.366533pt;}
.y2c3{bottom:759.861200pt;}
.y1f5{bottom:760.134533pt;}
.y96{bottom:760.507867pt;}
.y2d8{bottom:762.431200pt;}
.y271{bottom:763.921867pt;}
.y1db{bottom:764.440800pt;}
.y169{bottom:769.276000pt;}
.y22e{bottom:770.166533pt;}
.y2c2{bottom:771.191200pt;}
.y1da{bottom:774.360800pt;}
.y2d7{bottom:774.881200pt;}
.y270{bottom:775.251867pt;}
.y1f4{bottom:776.161200pt;}
.y95{bottom:776.507867pt;}
.y2c1{bottom:782.521200pt;}
.y1d9{bottom:784.280800pt;}
.y26f{bottom:786.581867pt;}
.y2d6{bottom:787.331200pt;}
.y22d{bottom:788.299867pt;}
.y168{bottom:788.512000pt;}
.y1f3{bottom:792.187867pt;}
.y94{bottom:792.507867pt;}
.y2c0{bottom:793.851200pt;}
.y26e{bottom:797.911867pt;}
.y9{bottom:798.436133pt;}
.y2d5{bottom:799.781200pt;}
.y22c{bottom:801.217200pt;}
.y2bf{bottom:805.181200pt;}
.y1d8{bottom:806.176000pt;}
.y167{bottom:807.748000pt;}
.y1f2{bottom:808.214533pt;}
.y93{bottom:808.507867pt;}
.y26d{bottom:809.241867pt;}
.y2d4{bottom:812.231200pt;}
.y22b{bottom:814.134533pt;}
.y8{bottom:816.036133pt;}
.y2be{bottom:816.511200pt;}
.y1d7{bottom:817.376000pt;}
.y26c{bottom:820.571867pt;}
.y1f1{bottom:824.241200pt;}
.y92{bottom:824.507867pt;}
.y2d3{bottom:824.681200pt;}
.y166{bottom:826.984000pt;}
.y2bd{bottom:827.841200pt;}
.y26b{bottom:831.901867pt;}
.y22a{bottom:832.385200pt;}
.y1d6{bottom:833.373333pt;}
.y2d2{bottom:837.131200pt;}
.y2bc{bottom:839.171200pt;}
.y1f0{bottom:840.267867pt;}
.y91{bottom:840.507867pt;}
.y26a{bottom:843.231867pt;}
.y1d5{bottom:844.573333pt;}
.y229{bottom:845.185200pt;}
.y165{bottom:846.220000pt;}
.y2d1{bottom:849.581200pt;}
.y2bb{bottom:850.501200pt;}
.y269{bottom:854.561867pt;}
.y1ef{bottom:856.294533pt;}
.y90{bottom:856.507867pt;}
.y228{bottom:857.985200pt;}
.y2ba{bottom:861.831200pt;}
.y1d4{bottom:861.905333pt;}
.y2d0{bottom:862.031200pt;}
.y164{bottom:865.456000pt;}
.y268{bottom:865.891867pt;}
.y7{bottom:868.286800pt;}
.y227{bottom:870.785200pt;}
.y1ee{bottom:872.321200pt;}
.y8f{bottom:872.507867pt;}
.y1d3{bottom:873.105333pt;}
.y2b9{bottom:873.161200pt;}
.y2cf{bottom:874.481200pt;}
.y267{bottom:877.221867pt;}
.y226{bottom:883.585200pt;}
.y1d2{bottom:884.305333pt;}
.y2b8{bottom:884.491200pt;}
.y163{bottom:884.692000pt;}
.y2ce{bottom:886.931200pt;}
.y1ed{bottom:888.347867pt;}
.y8e{bottom:888.507867pt;}
.y266{bottom:888.551867pt;}
.y2b7{bottom:895.821200pt;}
.y225{bottom:896.385200pt;}
.y2cd{bottom:899.381200pt;}
.y265{bottom:899.881867pt;}
.y1d1{bottom:901.637333pt;}
.y162{bottom:902.596000pt;}
.y6{bottom:902.958800pt;}
.y1ec{bottom:904.374533pt;}
.y8d{bottom:904.507867pt;}
.y2b6{bottom:907.151200pt;}
.y224{bottom:909.185200pt;}
.y264{bottom:911.211867pt;}
.y2cc{bottom:911.831200pt;}
.y1d0{bottom:912.837333pt;}
.y2b5{bottom:918.481200pt;}
.y1eb{bottom:920.401200pt;}
.y8c{bottom:920.507867pt;}
.y223{bottom:921.985200pt;}
.y263{bottom:922.545200pt;}
.y2cb{bottom:924.281200pt;}
.y161{bottom:924.496000pt;}
.y1cf{bottom:928.834667pt;}
.y2b4{bottom:929.811200pt;}
.y222{bottom:934.785200pt;}
.y1ea{bottom:936.427867pt;}
.y112{bottom:936.507467pt;}
.y8b{bottom:936.507867pt;}
.y2ca{bottom:936.731200pt;}
.y5{bottom:937.630800pt;}
.y1ce{bottom:940.034667pt;}
.y2b3{bottom:941.141200pt;}
.y15f{bottom:943.732000pt;}
.y221{bottom:947.585200pt;}
.y2c9{bottom:949.181200pt;}
.y1e9{bottom:952.454533pt;}
.y2b2{bottom:952.471200pt;}
.y111{bottom:952.507467pt;}
.y8a{bottom:952.507867pt;}
.y160{bottom:958.132000pt;}
.y1cd{bottom:960.036000pt;}
.y220{bottom:960.385200pt;}
.y2c8{bottom:961.631200pt;}
.y2b1{bottom:963.801200pt;}
.y1e8{bottom:968.481200pt;}
.y110{bottom:968.507467pt;}
.y89{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y21f{bottom:973.185200pt;}
.y2c7{bottom:974.081200pt;}
.y2b0{bottom:975.131200pt;}
.y15e{bottom:977.699867pt;}
.y10f{bottom:984.507467pt;}
.y88{bottom:984.507867pt;}
.y21e{bottom:985.985200pt;}
.y262{bottom:986.027867pt;}
.y2af{bottom:986.461200pt;}
.y2c6{bottom:986.531200pt;}
.y3{bottom:1014.174400pt;}
.y87{bottom:1014.174533pt;}
.h8{height:21.272576pt;}
.h18{height:24.171733pt;}
.h17{height:27.290667pt;}
.h19{height:29.240000pt;}
.h9{height:31.061333pt;}
.h13{height:31.189333pt;}
.h3{height:32.085333pt;}
.h16{height:32.358933pt;}
.h14{height:33.138667pt;}
.h10{height:35.088000pt;}
.h15{height:35.904000pt;}
.ha{height:36.096000pt;}
.h11{height:38.016000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hb{height:39.146667pt;}
.h12{height:39.878528pt;}
.hd{height:49.932907pt;}
.he{height:49.949973pt;}
.hc{height:49.954240pt;}
.hf{height:49.955840pt;}
.h6{height:54.832976pt;}
.h7{height:54.833509pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xd{left:65.999867pt;}
.x15{left:71.330667pt;}
.x18{left:75.266667pt;}
.x16{left:115.333333pt;}
.x4{left:195.892800pt;}
.x2{left:236.938400pt;}
.x11{left:296.666667pt;}
.xe{left:409.183600pt;}
.xf{left:421.183867pt;}
.x12{left:428.666667pt;}
.x17{left:430.444000pt;}
.x8{left:477.795200pt;}
.xa{left:485.794533pt;}
.x9{left:489.793600pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x13{left:563.330667pt;}
.x7{left:612.329467pt;}
.x10{left:643.516000pt;}
.x14{left:693.998667pt;}
.x1{left:733.300800pt;}
}


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