
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_6a46f0ae73cc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_e63f290de20d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_450033e88d9d.woff")format("woff");}.ff4{font-family:ff4;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_5a68847bd1cd.woff")format("woff");}.ff5{font-family:ff5;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_f16dd0f8e3a5.woff")format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_b21b04fd4388.woff")format("woff");}.ff7{font-family:ff7;line-height:1.142000;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_30e446eda453.woff")format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_6a46f0ae73cc.woff")format("woff");}.ff9{font-family:ff9;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_6a46f0ae73cc.woff")format("woff");}.ffa{font-family:ffa;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_00faeb844081.woff")format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_5a236141159d.woff")format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_00faeb844081.woff")format("woff");}.ffd{font-family:ffd;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_00faeb844081.woff")format("woff");}.ffe{font-family:ffe;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_9fd93319c1b1.woff")format("woff");}.fff{font-family:fff;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_00faeb844081.woff")format("woff");}.ff10{font-family:ff10;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_3f4ac131a39d.woff")format("woff");}.ff11{font-family:ff11;line-height:0.871000;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_279d55ec0463.woff")format("woff");}.ff12{font-family:ff12;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_001ee9db6074.woff")format("woff");}.ff13{font-family:ff13;line-height:0.871000;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;}
.m6{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);}
.m5{transform:matrix(0.000000,-0.250137,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250137,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250137,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.504995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504995,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.504997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200000px;}
.v3{vertical-align:-13.791000px;}
.v4{vertical-align:-3.600060px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.250000px;}
.v1{vertical-align:22.799940px;}
.ls3d{letter-spacing:-1.077955px;}
.ls2a{letter-spacing:-1.056000px;}
.ls45{letter-spacing:-0.923962px;}
.lse{letter-spacing:-0.798000px;}
.ls40{letter-spacing:-0.769968px;}
.ls25{letter-spacing:-0.769332px;}
.ls3a{letter-spacing:-0.731470px;}
.ls16{letter-spacing:-0.730466px;}
.ls28{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.615974px;}
.ls14{letter-spacing:-0.499793px;}
.ls41{letter-spacing:-0.461981px;}
.ls1c{letter-spacing:-0.461599px;}
.ls27{letter-spacing:-0.456000px;}
.ls29{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.423482px;}
.ls22{letter-spacing:-0.423133px;}
.ls34{letter-spacing:-0.384984px;}
.ls3b{letter-spacing:-0.346486px;}
.ls19{letter-spacing:-0.346010px;}
.ls48{letter-spacing:-0.230990px;}
.ls49{letter-spacing:-0.192492px;}
.ls2d{letter-spacing:-0.180774px;}
.ls4d{letter-spacing:-0.153994px;}
.ls35{letter-spacing:-0.115495px;}
.ls24{letter-spacing:-0.115400px;}
.ls2f{letter-spacing:-0.076997px;}
.ls1a{letter-spacing:-0.076933px;}
.ls18{letter-spacing:-0.076891px;}
.ls43{letter-spacing:-0.038498px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000120px;}
.ls54{letter-spacing:0.072000px;}
.ls53{letter-spacing:0.192000px;}
.ls36{letter-spacing:0.192492px;}
.ls12{letter-spacing:0.230800px;}
.ls5{letter-spacing:0.243785px;}
.ls3{letter-spacing:0.267019px;}
.ls30{letter-spacing:0.269489px;}
.ls6{letter-spacing:0.286249px;}
.ls33{letter-spacing:0.307987px;}
.ls15{letter-spacing:0.422902px;}
.ls1d{letter-spacing:0.423133px;}
.ls4b{letter-spacing:0.423482px;}
.ls17{letter-spacing:0.461347px;}
.ls1f{letter-spacing:0.461599px;}
.ls4a{letter-spacing:0.461981px;}
.ls13{letter-spacing:0.538532px;}
.ls2c{letter-spacing:0.538978px;}
.lsf{letter-spacing:0.558540px;}
.ls8{letter-spacing:0.644100px;}
.ls55{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.689640px;}
.ls31{letter-spacing:0.731470px;}
.lsc{letter-spacing:0.752340px;}
.lsa{letter-spacing:0.758100px;}
.ls7{letter-spacing:0.798000px;}
.ls10{letter-spacing:0.803700px;}
.ls37{letter-spacing:0.808466px;}
.ls9{letter-spacing:0.815100px;}
.ls58{letter-spacing:0.816000px;}
.ls3c{letter-spacing:0.846965px;}
.lsd{letter-spacing:0.917640px;}
.ls1e{letter-spacing:0.923198px;}
.ls32{letter-spacing:0.923962px;}
.ls4f{letter-spacing:0.962460px;}
.ls23{letter-spacing:1.000132px;}
.ls51{letter-spacing:1.000958px;}
.ls1b{letter-spacing:1.038598px;}
.ls42{letter-spacing:1.039457px;}
.ls2e{letter-spacing:1.154952px;}
.ls46{letter-spacing:1.193450px;}
.ls26{letter-spacing:1.230931px;}
.ls47{letter-spacing:1.231949px;}
.ls3e{letter-spacing:1.270447px;}
.ls2b{letter-spacing:1.308958px;}
.ls50{letter-spacing:1.424441px;}
.ls59{letter-spacing:1.488000px;}
.ls3f{letter-spacing:1.501438px;}
.ls56{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.538664px;}
.ls4c{letter-spacing:1.539936px;}
.ls4e{letter-spacing:1.616933px;}
.ls20{letter-spacing:1.654060px;}
.ls44{letter-spacing:1.655427px;}
.ls57{letter-spacing:1.680000px;}
.ls38{letter-spacing:1.847923px;}
.ls0{letter-spacing:3.360000px;}
.ls11{letter-spacing:6.343523px;}
.ls1{letter-spacing:40.585800px;}
.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:-14.976000px;}
.ws6{word-spacing:-14.250000px;}
.ws25{word-spacing:-13.452000px;}
.ws12d{word-spacing:-12.672000px;}
.ws156{word-spacing:-12.624000px;}
.ws49{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.799000px;}
.ws59{word-spacing:-11.340000px;}
.ws7{word-spacing:-10.944000px;}
.wsdd{word-spacing:-10.356066px;}
.wsa4{word-spacing:-10.347512px;}
.wse9{word-spacing:-10.317571px;}
.wse6{word-spacing:-10.240574px;}
.wsa5{word-spacing:-10.232116px;}
.wsd7{word-spacing:-10.202076px;}
.wsea{word-spacing:-10.125079px;}
.ws5a{word-spacing:-9.975000px;}
.wsd6{word-spacing:-9.971086px;}
.wse0{word-spacing:-9.932587px;}
.wsdf{word-spacing:-9.894089px;}
.wsca{word-spacing:-9.855590px;}
.wsda{word-spacing:-9.740095px;}
.ws9e{word-spacing:-9.732050px;}
.wseb{word-spacing:-9.701597px;}
.ws24{word-spacing:-9.694249px;}
.wsa8{word-spacing:-9.693583px;}
.wsa{word-spacing:-9.675019px;}
.wscc{word-spacing:-9.624600px;}
.wsa2{word-spacing:-9.616650px;}
.wsd4{word-spacing:-9.547603px;}
.wscf{word-spacing:-9.509105px;}
.wscb{word-spacing:-9.432108px;}
.ws1{word-spacing:-9.408000px;}
.wse4{word-spacing:-9.239616px;}
.ws10c{word-spacing:-9.216000px;}
.wse7{word-spacing:-9.162619px;}
.wsa3{word-spacing:-9.155051px;}
.ws9b{word-spacing:-9.150053px;}
.wse5{word-spacing:-9.124121px;}
.wsa1{word-spacing:-9.116584px;}
.ws99{word-spacing:-9.111607px;}
.wse2{word-spacing:-8.970127px;}
.wsd5{word-spacing:-8.893130px;}
.wsdc{word-spacing:-8.700638px;}
.wsa0{word-spacing:-8.693452px;}
.ws98{word-spacing:-8.688706px;}
.wsdb{word-spacing:-8.662140px;}
.wsd3{word-spacing:-8.623642px;}
.ws9d{word-spacing:-8.616518px;}
.wsce{word-spacing:-8.585143px;}
.wsa9{word-spacing:-8.578052px;}
.wse8{word-spacing:-8.546645px;}
.wse3{word-spacing:-8.508146px;}
.wse1{word-spacing:-8.469648px;}
.ws9{word-spacing:-8.400000px;}
.wsd2{word-spacing:-8.354153px;}
.ws9c{word-spacing:-8.342695px;}
.wscd{word-spacing:-8.315654px;}
.wsd0{word-spacing:-8.277156px;}
.wsa7{word-spacing:-8.270319px;}
.ws4{word-spacing:-8.259300px;}
.wsd9{word-spacing:-8.238658px;}
.ws9f{word-spacing:-8.231852px;}
.ws97{word-spacing:-8.188913px;}
.wsec{word-spacing:-8.084664px;}
.wsd1{word-spacing:-7.969169px;}
.ws9a{word-spacing:-7.958239px;}
.wsd8{word-spacing:-7.930670px;}
.wsaa{word-spacing:-7.924120px;}
.wsde{word-spacing:-7.776677px;}
.wsc9{word-spacing:-6.628380px;}
.wsbf{word-spacing:-6.000000px;}
.wse{word-spacing:-2.052000px;}
.wsb{word-spacing:-1.890000px;}
.wsf9{word-spacing:-1.847923px;}
.ws13c{word-spacing:-1.824000px;}
.ws100{word-spacing:-1.616933px;}
.ws103{word-spacing:-1.424441px;}
.wsad{word-spacing:-1.368000px;}
.ws93{word-spacing:-1.254000px;}
.wsb2{word-spacing:-1.230931px;}
.ws101{word-spacing:-0.962460px;}
.wsff{word-spacing:-0.923962px;}
.ws28{word-spacing:-0.798000px;}
.ws4d{word-spacing:-0.741000px;}
.ws7a{word-spacing:-0.684000px;}
.ws133{word-spacing:-0.672000px;}
.ws1c{word-spacing:-0.627000px;}
.ws171{word-spacing:-0.624000px;}
.ws95{word-spacing:-0.570000px;}
.wsf6{word-spacing:-0.538978px;}
.wsb0{word-spacing:-0.538532px;}
.ws2a{word-spacing:-0.513000px;}
.wsc{word-spacing:-0.480000px;}
.wsf{word-spacing:-0.479023px;}
.wsfd{word-spacing:-0.461981px;}
.ws114{word-spacing:-0.384000px;}
.ws50{word-spacing:-0.342000px;}
.wsf7{word-spacing:-0.307987px;}
.ws26{word-spacing:-0.286251px;}
.ws37{word-spacing:-0.285000px;}
.wsf5{word-spacing:-0.269489px;}
.ws23{word-spacing:-0.267019px;}
.ws121{word-spacing:-0.240000px;}
.wsf2{word-spacing:-0.228000px;}
.wsf8{word-spacing:-0.192492px;}
.ws180{word-spacing:-0.192000px;}
.ws14b{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.114000px;}
.ws13a{word-spacing:-0.096000px;}
.ws8{word-spacing:-0.066000px;}
.ws5{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws12e{word-spacing:0.048000px;}
.wsb4{word-spacing:0.057000px;}
.wsb1{word-spacing:0.076891px;}
.ws8e{word-spacing:0.114000px;}
.wsfc{word-spacing:0.115495px;}
.ws14a{word-spacing:0.144000px;}
.ws1f{word-spacing:0.171000px;}
.wsf4{word-spacing:0.180774px;}
.ws102{word-spacing:0.192492px;}
.ws45{word-spacing:0.228000px;}
.wsf3{word-spacing:0.285000px;}
.ws15b{word-spacing:0.336000px;}
.ws7c{word-spacing:0.342000px;}
.ws155{word-spacing:0.432000px;}
.wsb5{word-spacing:0.456000px;}
.wsfb{word-spacing:0.461981px;}
.ws144{word-spacing:0.480000px;}
.ws78{word-spacing:0.513000px;}
.ws2b{word-spacing:0.570000px;}
.ws130{word-spacing:0.624000px;}
.ws5c{word-spacing:0.627000px;}
.ws113{word-spacing:0.672000px;}
.ws88{word-spacing:0.684000px;}
.ws80{word-spacing:0.741000px;}
.wsfe{word-spacing:0.769968px;}
.ws2c{word-spacing:0.798000px;}
.ws33{word-spacing:0.855000px;}
.ws74{word-spacing:0.912000px;}
.ws132{word-spacing:0.960000px;}
.wsf1{word-spacing:0.969000px;}
.ws12b{word-spacing:1.008000px;}
.ws32{word-spacing:1.026000px;}
.ws167{word-spacing:1.056000px;}
.wsfa{word-spacing:1.077955px;}
.ws73{word-spacing:1.083000px;}
.ws15a{word-spacing:1.104000px;}
.ws4c{word-spacing:1.140000px;}
.ws16f{word-spacing:1.152000px;}
.wsf0{word-spacing:1.197000px;}
.ws13{word-spacing:1.254000px;}
.ws138{word-spacing:1.296000px;}
.ws15{word-spacing:1.311000px;}
.ws150{word-spacing:1.344000px;}
.ws4b{word-spacing:1.368000px;}
.ws152{word-spacing:1.440000px;}
.ws35{word-spacing:1.482000px;}
.ws166{word-spacing:1.488000px;}
.ws2f{word-spacing:1.539000px;}
.ws151{word-spacing:1.632000px;}
.ws7e{word-spacing:1.653000px;}
.ws128{word-spacing:1.680000px;}
.ws108{word-spacing:1.710000px;}
.ws17d{word-spacing:1.728000px;}
.ws11d{word-spacing:1.776000px;}
.ws124{word-spacing:1.824000px;}
.ws120{word-spacing:1.872000px;}
.ws1b{word-spacing:1.881000px;}
.ws140{word-spacing:1.968000px;}
.ws1a{word-spacing:1.995000px;}
.ws20{word-spacing:2.052000px;}
.ws6b{word-spacing:2.109000px;}
.ws12f{word-spacing:2.160000px;}
.ws89{word-spacing:2.166000px;}
.ws2d{word-spacing:2.223000px;}
.ws5d{word-spacing:2.280000px;}
.wsc1{word-spacing:2.337000px;}
.wsc0{word-spacing:2.394000px;}
.ws11b{word-spacing:2.447995px;}
.ws6c{word-spacing:2.450994px;}
.wsab{word-spacing:2.508000px;}
.ws11e{word-spacing:2.544000px;}
.ws75{word-spacing:2.622000px;}
.ws19{word-spacing:2.679000px;}
.ws47{word-spacing:2.736000px;}
.ws16e{word-spacing:2.784000px;}
.ws43{word-spacing:2.793000px;}
.ws8d{word-spacing:2.850000px;}
.ws14f{word-spacing:2.880000px;}
.wsae{word-spacing:2.906994px;}
.ws137{word-spacing:3.024000px;}
.ws126{word-spacing:3.072000px;}
.wsc5{word-spacing:3.078000px;}
.ws174{word-spacing:3.120000px;}
.ws3a{word-spacing:3.135000px;}
.ws164{word-spacing:3.168000px;}
.wsb3{word-spacing:3.192000px;}
.ws134{word-spacing:3.216000px;}
.ws10e{word-spacing:3.249000px;}
.ws68{word-spacing:3.306000px;}
.ws2e{word-spacing:3.363000px;}
.ws153{word-spacing:3.407995px;}
.wsb6{word-spacing:3.420000px;}
.ws145{word-spacing:3.456000px;}
.wsc8{word-spacing:3.477000px;}
.ws14e{word-spacing:3.504000px;}
.ws36{word-spacing:3.534000px;}
.ws147{word-spacing:3.552000px;}
.ws4f{word-spacing:3.591000px;}
.ws115{word-spacing:3.600000px;}
.wsee{word-spacing:3.648000px;}
.ws139{word-spacing:3.696000px;}
.ws8b{word-spacing:3.705000px;}
.ws58{word-spacing:3.744000px;}
.ws107{word-spacing:3.762000px;}
.ws168{word-spacing:3.792000px;}
.ws5e{word-spacing:3.819000px;}
.ws87{word-spacing:3.876000px;}
.ws13b{word-spacing:3.888000px;}
.wsaf{word-spacing:3.933000px;}
.ws116{word-spacing:3.936000px;}
.ws17c{word-spacing:3.984000px;}
.ws148{word-spacing:4.032000px;}
.ws66{word-spacing:4.046994px;}
.ws3f{word-spacing:4.104000px;}
.ws123{word-spacing:4.127995px;}
.ws34{word-spacing:4.275000px;}
.ws159{word-spacing:4.320000px;}
.ws4e{word-spacing:4.332000px;}
.ws129{word-spacing:4.368000px;}
.ws96{word-spacing:4.389000px;}
.ws169{word-spacing:4.416000px;}
.ws30{word-spacing:4.446000px;}
.ws31{word-spacing:4.503000px;}
.wsef{word-spacing:4.560000px;}
.ws170{word-spacing:4.608000px;}
.ws52{word-spacing:4.617000px;}
.ws51{word-spacing:4.674000px;}
.ws13f{word-spacing:4.704000px;}
.wsb7{word-spacing:4.731000px;}
.ws11f{word-spacing:4.752000px;}
.ws41{word-spacing:4.788000px;}
.ws11c{word-spacing:4.800000px;}
.ws54{word-spacing:4.845000px;}
.ws7f{word-spacing:4.901994px;}
.ws105{word-spacing:4.958994px;}
.ws142{word-spacing:4.992000px;}
.ws117{word-spacing:5.040000px;}
.ws83{word-spacing:5.073000px;}
.ws131{word-spacing:5.088000px;}
.ws39{word-spacing:5.130000px;}
.ws7d{word-spacing:5.187000px;}
.ws111{word-spacing:5.232000px;}
.ws162{word-spacing:5.280000px;}
.ws6d{word-spacing:5.301000px;}
.ws21{word-spacing:5.358000px;}
.ws178{word-spacing:5.376000px;}
.ws12{word-spacing:5.415000px;}
.ws15d{word-spacing:5.424000px;}
.ws13d{word-spacing:5.472000px;}
.ws17b{word-spacing:5.520000px;}
.ws18{word-spacing:5.529000px;}
.ws6f{word-spacing:5.586000px;}
.ws12a{word-spacing:5.616000px;}
.ws127{word-spacing:5.712000px;}
.ws61{word-spacing:5.757000px;}
.ws46{word-spacing:5.814000px;}
.ws8f{word-spacing:5.871000px;}
.ws10f{word-spacing:5.904000px;}
.ws64{word-spacing:5.928000px;}
.ws91{word-spacing:5.985000px;}
.ws12c{word-spacing:6.000000px;}
.wsc2{word-spacing:6.042000px;}
.ws15c{word-spacing:6.048000px;}
.ws16{word-spacing:6.099000px;}
.ws84{word-spacing:6.156000px;}
.ws136{word-spacing:6.192000px;}
.ws10d{word-spacing:6.270000px;}
.ws29{word-spacing:6.327000px;}
.ws3b{word-spacing:6.384000px;}
.ws173{word-spacing:6.432000px;}
.ws40{word-spacing:6.441000px;}
.ws3e{word-spacing:6.555000px;}
.ws38{word-spacing:6.612000px;}
.ws92{word-spacing:6.669000px;}
.ws16a{word-spacing:6.672000px;}
.ws17a{word-spacing:6.720000px;}
.ws14{word-spacing:6.726000px;}
.ws112{word-spacing:6.768000px;}
.ws42{word-spacing:6.783000px;}
.ws7b{word-spacing:6.840000px;}
.ws17e{word-spacing:6.864000px;}
.ws57{word-spacing:6.897000px;}
.wsc6{word-spacing:6.954000px;}
.ws179{word-spacing:7.008000px;}
.ws10b{word-spacing:7.068000px;}
.ws11a{word-spacing:7.104000px;}
.ws1e{word-spacing:7.125000px;}
.ws157{word-spacing:7.152000px;}
.ws3c{word-spacing:7.182000px;}
.ws122{word-spacing:7.296000px;}
.ws60{word-spacing:7.353000px;}
.ws118{word-spacing:7.392000px;}
.wsb8{word-spacing:7.410000px;}
.ws70{word-spacing:7.467000px;}
.ws82{word-spacing:7.524000px;}
.ws13e{word-spacing:7.536000px;}
.ws149{word-spacing:7.584000px;}
.ws27{word-spacing:7.638000px;}
.ws110{word-spacing:7.680000px;}
.ws106{word-spacing:7.695000px;}
.ws10a{word-spacing:7.752000px;}
.ws81{word-spacing:7.866000px;}
.ws4a{word-spacing:7.923000px;}
.ws3d{word-spacing:7.980000px;}
.wsc4{word-spacing:8.037000px;}
.wsac{word-spacing:8.151000px;}
.ws63{word-spacing:8.208000px;}
.ws158{word-spacing:8.256000px;}
.ws11{word-spacing:8.379000px;}
.ws146{word-spacing:8.544000px;}
.ws72{word-spacing:8.550000px;}
.ws160{word-spacing:8.592000px;}
.ws109{word-spacing:8.607000px;}
.ws5f{word-spacing:8.664000px;}
.ws94{word-spacing:8.721000px;}
.ws104{word-spacing:8.778000px;}
.ws135{word-spacing:8.784000px;}
.ws163{word-spacing:8.880000px;}
.ws65{word-spacing:8.892000px;}
.ws176{word-spacing:9.024000px;}
.ws16b{word-spacing:9.216000px;}
.wsc7{word-spacing:9.291000px;}
.ws56{word-spacing:9.348000px;}
.ws119{word-spacing:9.600000px;}
.ws17f{word-spacing:9.744000px;}
.ws48{word-spacing:9.804000px;}
.ws14c{word-spacing:9.936000px;}
.ws125{word-spacing:10.032000px;}
.ws165{word-spacing:10.128000px;}
.wsc3{word-spacing:10.146000px;}
.ws8a{word-spacing:10.317000px;}
.ws15f{word-spacing:10.368000px;}
.ws8c{word-spacing:10.374000px;}
.ws10{word-spacing:10.488000px;}
.ws6a{word-spacing:10.545000px;}
.ws44{word-spacing:10.716000px;}
.ws71{word-spacing:10.773000px;}
.ws67{word-spacing:11.400000px;}
.ws15e{word-spacing:11.424000px;}
.ws5b{word-spacing:11.457000px;}
.ws17{word-spacing:11.742000px;}
.ws55{word-spacing:11.799000px;}
.ws62{word-spacing:11.913000px;}
.ws69{word-spacing:12.027000px;}
.ws90{word-spacing:12.141000px;}
.ws6e{word-spacing:12.369000px;}
.ws85{word-spacing:12.711000px;}
.ws76{word-spacing:13.053000px;}
.ws16d{word-spacing:13.296000px;}
.ws143{word-spacing:13.440000px;}
.ws175{word-spacing:14.208000px;}
.ws141{word-spacing:14.544000px;}
.ws86{word-spacing:14.934000px;}
.ws77{word-spacing:15.960000px;}
.ws79{word-spacing:16.359000px;}
.ws16c{word-spacing:16.416000px;}
.ws53{word-spacing:16.644000px;}
.ws177{word-spacing:17.520000px;}
.ws154{word-spacing:19.104000px;}
.ws172{word-spacing:22.464000px;}
.ws161{word-spacing:33.936000px;}
.ws14d{word-spacing:42.336000px;}
.ws22{word-spacing:73.056000px;}
.wsed{word-spacing:108.790341px;}
.wsa6{word-spacing:132.902180px;}
.wsb9{word-spacing:144.144000px;}
.wsbb{word-spacing:220.080000px;}
.wsbd{word-spacing:355.920000px;}
.wsba{word-spacing:368.448000px;}
.wsbc{word-spacing:386.448000px;}
.wsbe{word-spacing:1744.608000px;}
._50{margin-left:-35.136000px;}
._52{margin-left:-30.192000px;}
._4f{margin-left:-29.088000px;}
._48{margin-left:-27.216000px;}
._4c{margin-left:-22.608000px;}
._49{margin-left:-21.216000px;}
._10{margin-left:-19.337337px;}
._43{margin-left:-17.712000px;}
._4a{margin-left:-16.704000px;}
._6{margin-left:-15.600000px;}
._3b{margin-left:-14.176200px;}
._3f{margin-left:-12.603900px;}
._45{margin-left:-10.848000px;}
._3c{margin-left:-4.980000px;}
._1{margin-left:-3.892800px;}
._5{margin-left:-2.871300px;}
._0{margin-left:-1.632000px;}
._2{width:1.482000px;}
._21{width:2.498944px;}
._b{width:3.534300px;}
._c{width:5.508000px;}
._a{width:7.125000px;}
._9{width:8.353389px;}
._d{width:10.320600px;}
._f{width:12.401100px;}
._51{width:13.488000px;}
._e{width:14.784000px;}
._4e{width:16.560000px;}
._37{width:18.039300px;}
._4d{width:19.392000px;}
._42{width:20.502000px;}
._7{width:22.320000px;}
._4b{width:23.328000px;}
._44{width:24.336000px;}
._3d{width:25.419000px;}
._41{width:26.667010px;}
._3e{width:27.983400px;}
._46{width:29.184000px;}
._40{width:30.768000px;}
._20{width:35.489400px;}
._3{width:40.190460px;}
._4{width:41.304900px;}
._8{width:56.256000px;}
._47{width:67.056000px;}
._2a{width:89.424000px;}
._22{width:118.848000px;}
._2f{width:157.392000px;}
._2c{width:171.120000px;}
._12{width:176.064000px;}
._15{width:211.104000px;}
._1f{width:213.360000px;}
._33{width:218.574600px;}
._14{width:226.560000px;}
._16{width:243.120000px;}
._34{width:262.464000px;}
._24{width:273.345540px;}
._2d{width:282.327300px;}
._27{width:286.464000px;}
._1a{width:310.608000px;}
._26{width:311.751300px;}
._19{width:337.920000px;}
._32{width:386.544000px;}
._31{width:388.944000px;}
._13{width:395.520000px;}
._2e{width:412.224000px;}
._35{width:418.560000px;}
._39{width:423.888000px;}
._23{width:430.608000px;}
._30{width:475.439940px;}
._17{width:559.536000px;}
._1d{width:563.520000px;}
._1e{width:572.784000px;}
._1c{width:609.216000px;}
._18{width:615.552000px;}
._11{width:625.824000px;}
._1b{width:691.584000px;}
._3a{width:750.480000px;}
._25{width:919.487940px;}
._29{width:960.383940px;}
._36{width:1042.848000px;}
._38{width:1083.839940px;}
._28{width:1523.184120px;}
._2b{width:2008.176060px;}
.fc3{color:rgb(5,4,7);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(122,122,122);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:30.129000px;}
.fs6{font-size:33.600000px;}
.fsa{font-size:38.445600px;}
.fs9{font-size:38.466600px;}
.fsc{font-size:38.498400px;}
.fs4{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:56.400000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.y75{bottom:33.984900px;}
.y3{bottom:33.985050px;}
.y148{bottom:73.275000px;}
.y149{bottom:73.275030px;}
.y14e{bottom:73.287015px;}
.y16a{bottom:73.298970px;}
.y150{bottom:73.298985px;}
.y168{bottom:73.299000px;}
.y16b{bottom:73.310955px;}
.y155{bottom:73.310985px;}
.y151{bottom:73.311000px;}
.y156{bottom:73.322985px;}
.y159{bottom:73.334970px;}
.y15a{bottom:73.346955px;}
.y15d{bottom:73.358925px;}
.y164{bottom:73.370880px;}
.y161{bottom:73.370910px;}
.y5b{bottom:73.426035px;}
.ye6{bottom:73.635000px;}
.y1ac{bottom:73.849050px;}
.ybb{bottom:74.312985px;}
.yd5{bottom:74.420985px;}
.y10e{bottom:74.468250px;}
.y12d{bottom:74.668800px;}
.y146{bottom:75.529800px;}
.y26{bottom:78.075000px;}
.ya1{bottom:80.660550px;}
.y229{bottom:84.989535px;}
.y1cf{bottom:86.446050px;}
.y1f0{bottom:88.175850px;}
.y5a{bottom:90.682785px;}
.y1ab{bottom:91.105800px;}
.yba{bottom:91.569735px;}
.yd4{bottom:91.677735px;}
.y195{bottom:91.725000px;}
.y10d{bottom:92.625000px;}
.y145{bottom:92.786550px;}
.ya0{bottom:97.917300px;}
.y228{bottom:98.861535px;}
.y25{bottom:99.497250px;}
.y1ef{bottom:102.047850px;}
.y1ce{bottom:103.702800px;}
.y71{bottom:104.527215px;}
.y59{bottom:107.939535px;}
.y1aa{bottom:108.362550px;}
.yb9{bottom:108.826485px;}
.yd3{bottom:108.934485px;}
.y10c{bottom:108.961500px;}
.y144{bottom:110.043300px;}
.y12c{bottom:110.529300px;}
.y227{bottom:112.733535px;}
.y9f{bottom:115.174050px;}
.y1ee{bottom:115.919850px;}
.y1cd{bottom:120.959550px;}
.y70{bottom:121.783965px;}
.y24{bottom:122.975250px;}
.y22b{bottom:124.637535px;}
.y58{bottom:125.196285px;}
.y1a9{bottom:125.619300px;}
.yb8{bottom:126.083235px;}
.yd2{bottom:126.191235px;}
.y10b{bottom:126.218250px;}
.y226{bottom:126.605535px;}
.y194{bottom:126.975000px;}
.y143{bottom:127.300050px;}
.y1ed{bottom:129.791850px;}
.y9e{bottom:132.430800px;}
.y23{bottom:136.847250px;}
.y1cc{bottom:138.216300px;}
.y22a{bottom:138.509535px;}
.y6f{bottom:139.040715px;}
.y225{bottom:140.477535px;}
.y57{bottom:142.453035px;}
.y1a8{bottom:142.876050px;}
.yb7{bottom:143.339985px;}
.yd1{bottom:143.447985px;}
.y1ec{bottom:143.663850px;}
.y10a{bottom:144.375000px;}
.y142{bottom:144.556800px;}
.y14a{bottom:147.639030px;}
.y9d{bottom:149.687550px;}
.y224{bottom:154.349535px;}
.y1cb{bottom:155.473050px;}
.y6e{bottom:156.297465px;}
.y1eb{bottom:157.535850px;}
.y56{bottom:159.709785px;}
.y1a7{bottom:160.132800px;}
.yb6{bottom:160.596735px;}
.yd0{bottom:160.704735px;}
.y141{bottom:161.813550px;}
.y223{bottom:168.221535px;}
.y193{bottom:168.737835px;}
.y1ea{bottom:171.407850px;}
.y1ca{bottom:172.729800px;}
.y6d{bottom:173.554215px;}
.y124{bottom:175.344300px;}
.y55{bottom:176.966535px;}
.y1a6{bottom:177.389550px;}
.yb5{bottom:177.853485px;}
.ycf{bottom:177.961485px;}
.y140{bottom:179.070300px;}
.y222{bottom:182.093535px;}
.y9c{bottom:184.937550px;}
.y192{bottom:185.994585px;}
.y1c9{bottom:189.986550px;}
.y6c{bottom:190.810965px;}
.y54{bottom:194.223285px;}
.yb4{bottom:195.110235px;}
.yce{bottom:195.218235px;}
.y22{bottom:195.814950px;}
.y221{bottom:195.965535px;}
.y13f{bottom:196.232550px;}
.y191{bottom:203.251335px;}
.y1e9{bottom:203.582700px;}
.y1c8{bottom:207.243300px;}
.y6b{bottom:208.067715px;}
.y220{bottom:209.837535px;}
.y53{bottom:211.480035px;}
.yb3{bottom:212.366985px;}
.ycd{bottom:212.474985px;}
.y1a5{bottom:212.639550px;}
.y21{bottom:213.071700px;}
.y109{bottom:213.375000px;}
.y13e{bottom:213.489300px;}
.y125{bottom:215.859255px;}
.y190{bottom:220.508085px;}
.y14b{bottom:221.919030px;}
.y21f{bottom:223.709535px;}
.y1c7{bottom:224.500050px;}
.y6a{bottom:225.324465px;}
.y52{bottom:228.736785px;}
.yb2{bottom:229.623735px;}
.y108{bottom:229.704735px;}
.y20{bottom:230.328450px;}
.y13d{bottom:230.746050px;}
.y166{bottom:230.931015px;}
.y152{bottom:230.955000px;}
.y157{bottom:230.966985px;}
.y15b{bottom:230.990955px;}
.y15e{bottom:231.002925px;}
.y162{bottom:231.014910px;}
.y21e{bottom:237.581535px;}
.y18f{bottom:237.764835px;}
.y12b{bottom:240.132300px;}
.y69{bottom:242.581215px;}
.y9b{bottom:244.113285px;}
.y51{bottom:245.993535px;}
.yb1{bottom:246.880485px;}
.y107{bottom:246.961485px;}
.y1f{bottom:247.585200px;}
.ycc{bottom:247.724985px;}
.y13c{bottom:248.002800px;}
.y21d{bottom:251.453535px;}
.y18e{bottom:255.021585px;}
.y126{bottom:256.374195px;}
.y1e8{bottom:259.090215px;}
.y1c6{bottom:259.750050px;}
.y68{bottom:259.837965px;}
.y9a{bottom:261.370035px;}
.y50{bottom:263.250285px;}
.yb0{bottom:264.137235px;}
.y106{bottom:264.218235px;}
.y1e{bottom:264.841950px;}
.y13b{bottom:265.259550px;}
.y21c{bottom:265.325535px;}
.y1a4{bottom:266.626050px;}
.y18d{bottom:272.278335px;}
.y1e7{bottom:272.962215px;}
.y67{bottom:277.094715px;}
.y99{bottom:278.626785px;}
.y21b{bottom:279.197535px;}
.y4f{bottom:280.507035px;}
.yaf{bottom:281.393985px;}
.y1d{bottom:282.098700px;}
.y105{bottom:282.375000px;}
.y13a{bottom:282.516300px;}
.ycb{bottom:283.724985px;}
.y1a3{bottom:283.882800px;}
.y1e6{bottom:286.834215px;}
.y18c{bottom:289.535085px;}
.y21a{bottom:293.069535px;}
.y66{bottom:294.351465px;}
.y98{bottom:295.883535px;}
.y127{bottom:296.889135px;}
.y4e{bottom:297.763785px;}
.yae{bottom:298.650735px;}
.y104{bottom:298.711485px;}
.y139{bottom:299.773050px;}
.y1e5{bottom:300.706215px;}
.y1a2{bottom:301.085550px;}
.y18b{bottom:306.791835px;}
.y219{bottom:306.941535px;}
.y65{bottom:311.608215px;}
.y97{bottom:313.140285px;}
.y1e4{bottom:314.578215px;}
.y4d{bottom:315.020535px;}
.yad{bottom:315.907485px;}
.y103{bottom:315.968235px;}
.y138{bottom:317.029800px;}
.y1c{bottom:317.348700px;}
.y1a1{bottom:318.342300px;}
.y218{bottom:320.813535px;}
.y18a{bottom:324.048585px;}
.y1e3{bottom:328.450215px;}
.y64{bottom:328.864965px;}
.y96{bottom:330.397035px;}
.y4c{bottom:332.277285px;}
.yac{bottom:333.164235px;}
.yca{bottom:333.648600px;}
.y102{bottom:334.125000px;}
.y137{bottom:334.286550px;}
.y217{bottom:334.685535px;}
.y1a0{bottom:335.599050px;}
.y128{bottom:337.404075px;}
.y189{bottom:341.305335px;}
.y1e2{bottom:342.322215px;}
.y63{bottom:346.121715px;}
.y95{bottom:347.653785px;}
.y216{bottom:348.557535px;}
.y4b{bottom:349.534035px;}
.yab{bottom:350.420985px;}
.y101{bottom:350.447985px;}
.yc9{bottom:350.905350px;}
.y136{bottom:351.543300px;}
.y19f{bottom:352.855800px;}
.y1e1{bottom:356.194215px;}
.y188{bottom:358.562085px;}
.y215{bottom:362.429535px;}
.y62{bottom:363.378465px;}
.y94{bottom:364.910535px;}
.y4a{bottom:366.790785px;}
.yaa{bottom:367.677735px;}
.y100{bottom:367.704735px;}
.yc8{bottom:368.162100px;}
.y135{bottom:368.800050px;}
.y19e{bottom:370.112550px;}
.y1b{bottom:371.248200px;}
.y187{bottom:375.818835px;}
.y214{bottom:376.301535px;}
.y129{bottom:377.919030px;}
.y14c{bottom:378.243030px;}
.y167{bottom:378.255015px;}
.y153{bottom:378.279000px;}
.y163{bottom:378.338910px;}
.y61{bottom:380.635215px;}
.y93{bottom:382.167285px;}
.y49{bottom:384.047535px;}
.ya9{bottom:384.934485px;}
.yff{bottom:384.961485px;}
.yc7{bottom:385.418850px;}
.y134{bottom:386.056800px;}
.y1e0{bottom:387.322215px;}
.y19d{bottom:387.369300px;}
.y213{bottom:390.173535px;}
.y186{bottom:393.075585px;}
.y60{bottom:397.891965px;}
.y92{bottom:399.424035px;}
.y48{bottom:401.304285px;}
.ya8{bottom:402.191235px;}
.yfe{bottom:402.218235px;}
.yc6{bottom:402.675600px;}
.y133{bottom:403.313550px;}
.y212{bottom:404.045535px;}
.y19c{bottom:404.626050px;}
.y1a{bottom:405.747450px;}
.y185{bottom:410.332335px;}
.y5f{bottom:415.148715px;}
.y91{bottom:416.680785px;}
.y211{bottom:417.917535px;}
.y12a{bottom:418.433970px;}
.y47{bottom:418.561035px;}
.ya7{bottom:419.447985px;}
.yc5{bottom:419.932350px;}
.yfd{bottom:420.375000px;}
.y132{bottom:420.570300px;}
.y19b{bottom:421.882800px;}
.y19{bottom:423.004200px;}
.y1df{bottom:423.646215px;}
.y184{bottom:427.589085px;}
.y210{bottom:431.789535px;}
.y5e{bottom:432.405465px;}
.y90{bottom:433.890285px;}
.y46{bottom:435.817785px;}
.ya6{bottom:436.704735px;}
.yfc{bottom:436.711485px;}
.y131{bottom:437.820300px;}
.y19a{bottom:439.112550px;}
.y18{bottom:440.260950px;}
.y183{bottom:444.845835px;}
.y20f{bottom:445.661535px;}
.y5d{bottom:449.662215px;}
.y8f{bottom:451.147035px;}
.y1de{bottom:451.402215px;}
.y45{bottom:453.074535px;}
.ya5{bottom:453.961485px;}
.yfb{bottom:453.968235px;}
.y130{bottom:455.070300px;}
.yc4{bottom:455.182350px;}
.y199{bottom:456.369300px;}
.y17{bottom:457.517700px;}
.y20e{bottom:459.533535px;}
.y182{bottom:462.102585px;}
.y8e{bottom:468.403785px;}
.y44{bottom:470.331285px;}
.ya4{bottom:471.218235px;}
.yfa{bottom:472.125000px;}
.y12f{bottom:472.327050px;}
.y20d{bottom:473.405535px;}
.y198{bottom:473.626050px;}
.y16{bottom:474.774450px;}
.y1dd{bottom:479.158215px;}
.y181{bottom:479.359335px;}
.y123{bottom:484.045185px;}
.y8d{bottom:485.660535px;}
.y20c{bottom:487.277535px;}
.y43{bottom:487.588035px;}
.yf9{bottom:488.454735px;}
.ya3{bottom:488.474985px;}
.y197{bottom:490.882800px;}
.y15{bottom:492.031200px;}
.y180{bottom:496.616085px;}
.y20b{bottom:501.149535px;}
.y122{bottom:501.301935px;}
.y8c{bottom:502.917285px;}
.y42{bottom:504.844785px;}
.yf8{bottom:505.711485px;}
.y12e{bottom:507.577050px;}
.y196{bottom:508.139550px;}
.y14{bottom:509.287950px;}
.y1dc{bottom:510.283215px;}
.y17f{bottom:513.872835px;}
.y20a{bottom:515.021535px;}
.y121{bottom:518.558685px;}
.yc3{bottom:518.592450px;}
.y8b{bottom:520.174035px;}
.y41{bottom:522.101535px;}
.yf7{bottom:522.968235px;}
.ya2{bottom:523.724985px;}
.y13{bottom:526.544700px;}
.y209{bottom:528.893535px;}
.y17e{bottom:531.129585px;}
.y14d{bottom:534.435030px;}
.y158{bottom:534.482985px;}
.y15c{bottom:534.506940px;}
.y15f{bottom:534.518925px;}
.y120{bottom:535.815435px;}
.yc2{bottom:535.849200px;}
.y8a{bottom:537.430785px;}
.y40{bottom:539.358285px;}
.yf6{bottom:541.125000px;}
.y208{bottom:542.765535px;}
.y1db{bottom:543.283035px;}
.y12{bottom:543.801450px;}
.y73{bottom:546.037065px;}
.y17d{bottom:548.386335px;}
.y11f{bottom:553.072185px;}
.yc1{bottom:553.105950px;}
.y89{bottom:554.572785px;}
.y3f{bottom:556.615035px;}
.y207{bottom:556.637535px;}
.y147{bottom:556.669050px;}
.y1c5{bottom:556.681635px;}
.yf5{bottom:557.454735px;}
.y72{bottom:559.909065px;}
.y11{bottom:561.058200px;}
.ye5{bottom:563.509050px;}
.y17c{bottom:565.643085px;}
.y11e{bottom:570.328935px;}
.yc0{bottom:570.362700px;}
.y206{bottom:570.509535px;}
.y1da{bottom:570.655035px;}
.y88{bottom:571.829535px;}
.y3e{bottom:573.871785px;}
.yf4{bottom:574.711485px;}
.y10{bottom:578.314950px;}
.y17b{bottom:582.899835px;}
.y205{bottom:584.381535px;}
.y11d{bottom:587.585685px;}
.ybf{bottom:587.619450px;}
.y87{bottom:589.086285px;}
.y1bd{bottom:589.720965px;}
.y3d{bottom:591.128535px;}
.yf3{bottom:591.968235px;}
.yf{bottom:595.571700px;}
.y1d9{bottom:598.027035px;}
.y204{bottom:598.253535px;}
.y17a{bottom:600.156585px;}
.y1bc{bottom:604.581360px;}
.y11c{bottom:604.842435px;}
.ybe{bottom:604.876200px;}
.y86{bottom:606.343035px;}
.y3c{bottom:608.385285px;}
.yf2{bottom:610.125000px;}
.y1d8{bottom:611.899035px;}
.y203{bottom:612.125535px;}
.ye{bottom:612.828450px;}
.y179{bottom:617.413335px;}
.y11b{bottom:622.099185px;}
.ybd{bottom:622.132950px;}
.y85{bottom:623.599785px;}
.y3b{bottom:625.642035px;}
.y1d7{bottom:625.771035px;}
.y202{bottom:625.997535px;}
.y1bb{bottom:628.662105px;}
.yd{bottom:630.085200px;}
.y178{bottom:634.670085px;}
.y11a{bottom:639.355935px;}
.ybc{bottom:639.389700px;}
.y1d6{bottom:639.643035px;}
.y201{bottom:639.869535px;}
.y84{bottom:640.856535px;}
.y3a{bottom:642.898785px;}
.yf1{bottom:643.664280px;}
.yc{bottom:647.341950px;}
.y177{bottom:651.926835px;}
.y200{bottom:653.741535px;}
.y119{bottom:656.612685px;}
.y83{bottom:658.113285px;}
.y39{bottom:660.155535px;}
.yf0{bottom:660.921030px;}
.yb{bottom:664.598700px;}
.y1ba{bottom:665.562825px;}
.y1d5{bottom:667.015035px;}
.y1ff{bottom:667.613535px;}
.y176{bottom:669.183585px;}
.y82{bottom:675.370035px;}
.y38{bottom:677.412285px;}
.yef{bottom:678.177780px;}
.y1d4{bottom:680.887035px;}
.y1fe{bottom:681.485535px;}
.y175{bottom:686.440335px;}
.y118{bottom:691.862685px;}
.y81{bottom:692.626785px;}
.ye4{bottom:693.060495px;}
.y37{bottom:694.669035px;}
.y1d3{bottom:694.759035px;}
.y1fd{bottom:695.357535px;}
.yee{bottom:695.434530px;}
.y174{bottom:703.697085px;}
.y1bf{bottom:704.860065px;}
.y1d2{bottom:708.631035px;}
.y1fc{bottom:709.229535px;}
.y80{bottom:709.883535px;}
.ye3{bottom:710.724495px;}
.y1b9{bottom:710.817690px;}
.y36{bottom:711.925785px;}
.ya{bottom:712.337700px;}
.yed{bottom:712.691280px;}
.y1be{bottom:716.775315px;}
.y173{bottom:720.953835px;}
.y1fb{bottom:723.101535px;}
.y28{bottom:726.198690px;}
.y9{bottom:726.209700px;}
.y7f{bottom:727.140285px;}
.ye2{bottom:728.316495px;}
.y35{bottom:729.182535px;}
.yec{bottom:729.948030px;}
.y1ad{bottom:735.198165px;}
.y1d1{bottom:736.003035px;}
.y1fa{bottom:736.973535px;}
.y172{bottom:738.210585px;}
.y7e{bottom:744.397035px;}
.ye1{bottom:745.908495px;}
.y34{bottom:746.439285px;}
.y117{bottom:746.566230px;}
.yeb{bottom:747.204780px;}
.y1d0{bottom:749.875035px;}
.y1f9{bottom:750.845535px;}
.y171{bottom:755.467335px;}
.y1ae{bottom:757.425840px;}
.y1c0{bottom:758.979180px;}
.y1b8{bottom:758.988810px;}
.y7d{bottom:761.653785px;}
.ye0{bottom:763.500495px;}
.y33{bottom:763.696035px;}
.y116{bottom:763.822980px;}
.y8{bottom:763.974450px;}
.yea{bottom:764.461530px;}
.y1f8{bottom:764.717535px;}
.y169{bottom:766.274985px;}
.y14f{bottom:766.275000px;}
.y154{bottom:766.286985px;}
.y160{bottom:766.346925px;}
.y170{bottom:772.724085px;}
.y1f7{bottom:778.589535px;}
.y7c{bottom:778.910535px;}
.y1af{bottom:779.653500px;}
.y32{bottom:780.952785px;}
.y115{bottom:781.079730px;}
.ydf{bottom:781.092495px;}
.y7{bottom:781.231200px;}
.ye9{bottom:781.718280px;}
.y16f{bottom:789.980835px;}
.y1f6{bottom:792.461535px;}
.y7b{bottom:796.167285px;}
.y31{bottom:798.209535px;}
.y114{bottom:798.336480px;}
.yde{bottom:798.684495px;}
.ye8{bottom:798.975030px;}
.y1b0{bottom:801.873645px;}
.y1c1{bottom:804.234060px;}
.y1b7{bottom:804.243675px;}
.y1f5{bottom:806.333535px;}
.y16e{bottom:807.237585px;}
.y7a{bottom:813.424035px;}
.y30{bottom:815.466285px;}
.y113{bottom:815.593230px;}
.ydd{bottom:816.276495px;}
.y1f4{bottom:820.205535px;}
.y6{bottom:823.663170px;}
.y1b1{bottom:824.093775px;}
.y79{bottom:830.680785px;}
.y2f{bottom:832.723035px;}
.y112{bottom:832.849980px;}
.ydc{bottom:833.868495px;}
.y1f3{bottom:834.077535px;}
.ye7{bottom:834.225030px;}
.y1c2{bottom:841.134780px;}
.y1b6{bottom:841.144395px;}
.y16d{bottom:842.487585px;}
.y5{bottom:846.166170px;}
.y1b2{bottom:846.313920px;}
.y78{bottom:847.937535px;}
.y1f2{bottom:847.949535px;}
.y2e{bottom:849.979785px;}
.y111{bottom:850.106730px;}
.ydb{bottom:851.460495px;}
.y1f1{bottom:861.821535px;}
.y1c3{bottom:865.225140px;}
.y1b5{bottom:865.234770px;}
.y2d{bottom:867.236535px;}
.y1b3{bottom:868.541595px;}
.yda{bottom:869.604495px;}
.yd8{bottom:875.693535px;}
.y1b4{bottom:880.095150px;}
.y77{bottom:883.187535px;}
.y2c{bottom:884.493285px;}
.y110{bottom:884.605980px;}
.yd7{bottom:889.565535px;}
.y1c4{bottom:897.548670px;}
.yd9{bottom:897.612495px;}
.y4{bottom:899.785215px;}
.y76{bottom:901.187535px;}
.y2b{bottom:901.750035px;}
.y10f{bottom:902.762505px;}
.yd6{bottom:903.437535px;}
.y2{bottom:926.117130px;}
.y74{bottom:939.961500px;}
.y165{bottom:939.961530px;}
.y5c{bottom:939.988500px;}
.y16c{bottom:939.988530px;}
.y2a{bottom:939.989069px;}
.y29{bottom:939.989100px;}
.y27{bottom:939.990000px;}
.h1c{height:20.879397px;}
.h14{height:26.642801px;}
.h13{height:26.657354px;}
.h1d{height:26.679391px;}
.hd{height:31.046400px;}
.h2{height:33.840000px;}
.h9{height:41.097000px;}
.h3{height:42.048000px;}
.hc{height:44.352000px;}
.h5{height:46.704000px;}
.hb{height:47.586000px;}
.h18{height:49.104000px;}
.h12{height:52.113600px;}
.ha{height:52.668000px;}
.h1b{height:52.722000px;}
.h19{height:52.776000px;}
.h1a{height:52.884000px;}
.h17{height:53.046000px;}
.hf{height:53.127000px;}
.h11{height:53.160000px;}
.he{height:53.640000px;}
.h4{height:54.862258px;}
.h1e{height:59.004000px;}
.h15{height:59.667540px;}
.h16{height:59.694540px;}
.h10{height:59.856720px;}
.h7{height:61.622640px;}
.h8{height:61.649640px;}
.h6{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xd{left:69.053550px;}
.x2{left:70.157550px;}
.xb{left:72.368402px;}
.x4{left:74.529450px;}
.x16{left:79.157550px;}
.xc{left:87.165300px;}
.x10{left:89.929200px;}
.xf{left:91.157400px;}
.x13{left:92.306700px;}
.x48{left:95.669400px;}
.x12{left:97.105320px;}
.x45{left:98.482335px;}
.x11{left:102.055200px;}
.x17{left:116.795850px;}
.x42{left:127.147545px;}
.x18{left:130.667850px;}
.x44{left:136.853325px;}
.x14{left:143.793000px;}
.x43{left:153.388725px;}
.x36{left:157.314150px;}
.x19{left:158.651850px;}
.x37{left:171.186150px;}
.x1a{left:172.523850px;}
.x41{left:179.264370px;}
.x46{left:186.623055px;}
.x38{left:188.778150px;}
.x1b{left:190.667850px;}
.x39{left:202.650150px;}
.x1c{left:208.259850px;}
.x3a{left:220.242150px;}
.x1d{left:222.131850px;}
.x1e{left:236.003850px;}
.x3b{left:237.906150px;}
.x47{left:243.003165px;}
.xe{left:248.741580px;}
.x1f{left:249.875850px;}
.x20{left:263.747850px;}
.x21{left:281.339850px;}
.x5{left:297.871065px;}
.x22{left:298.931850px;}
.x6{left:305.348115px;}
.x3c{left:308.301675px;}
.x23{left:312.803850px;}
.x24{left:326.675850px;}
.x8{left:330.910395px;}
.x7{left:339.235650px;}
.x25{left:340.547850px;}
.x26{left:354.419850px;}
.x27{left:372.011850px;}
.x3d{left:376.736910px;}
.x28{left:389.603850px;}
.x29{left:403.475850px;}
.x2a{left:417.347850px;}
.x3e{left:418.436145px;}
.x2b{left:431.219850px;}
.x2c{left:445.091850px;}
.x3f{left:449.371485px;}
.x2d{left:458.963850px;}
.x40{left:465.829935px;}
.x2e{left:476.555850px;}
.x1{left:485.858414px;}
.x2f{left:490.427850px;}
.x30{left:504.299850px;}
.x31{left:521.879850px;}
.x3{left:528.009430px;}
.x32{left:535.751850px;}
.x33{left:549.623850px;}
.x9{left:558.963825px;}
.x34{left:563.495850px;}
.xa{left:566.440860px;}
.x15{left:568.048500px;}
.x35{left:581.087850px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v3{vertical-align:-12.258667pt;}
.v4{vertical-align:-3.200053pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.666667pt;}
.v1{vertical-align:20.266613pt;}
.ls3d{letter-spacing:-0.958182pt;}
.ls2a{letter-spacing:-0.938667pt;}
.ls45{letter-spacing:-0.821299pt;}
.lse{letter-spacing:-0.709333pt;}
.ls40{letter-spacing:-0.684416pt;}
.ls25{letter-spacing:-0.683851pt;}
.ls3a{letter-spacing:-0.650195pt;}
.ls16{letter-spacing:-0.649303pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.547533pt;}
.ls14{letter-spacing:-0.444260pt;}
.ls41{letter-spacing:-0.410650pt;}
.ls1c{letter-spacing:-0.410310pt;}
.ls27{letter-spacing:-0.405333pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.376429pt;}
.ls22{letter-spacing:-0.376118pt;}
.ls34{letter-spacing:-0.342208pt;}
.ls3b{letter-spacing:-0.307987pt;}
.ls19{letter-spacing:-0.307565pt;}
.ls48{letter-spacing:-0.205325pt;}
.ls49{letter-spacing:-0.171104pt;}
.ls2d{letter-spacing:-0.160688pt;}
.ls4d{letter-spacing:-0.136883pt;}
.ls35{letter-spacing:-0.102662pt;}
.ls24{letter-spacing:-0.102578pt;}
.ls2f{letter-spacing:-0.068442pt;}
.ls1a{letter-spacing:-0.068385pt;}
.ls18{letter-spacing:-0.068348pt;}
.ls43{letter-spacing:-0.034221pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000107pt;}
.ls54{letter-spacing:0.064000pt;}
.ls53{letter-spacing:0.170667pt;}
.ls36{letter-spacing:0.171104pt;}
.ls12{letter-spacing:0.205155pt;}
.ls5{letter-spacing:0.216698pt;}
.ls3{letter-spacing:0.237350pt;}
.ls30{letter-spacing:0.239546pt;}
.ls6{letter-spacing:0.254444pt;}
.ls33{letter-spacing:0.273766pt;}
.ls15{letter-spacing:0.375913pt;}
.ls1d{letter-spacing:0.376118pt;}
.ls4b{letter-spacing:0.376429pt;}
.ls17{letter-spacing:0.410086pt;}
.ls1f{letter-spacing:0.410310pt;}
.ls4a{letter-spacing:0.410650pt;}
.ls13{letter-spacing:0.478695pt;}
.ls2c{letter-spacing:0.479091pt;}
.lsf{letter-spacing:0.496480pt;}
.ls8{letter-spacing:0.572533pt;}
.ls55{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.613013pt;}
.ls31{letter-spacing:0.650195pt;}
.lsc{letter-spacing:0.668747pt;}
.lsa{letter-spacing:0.673867pt;}
.ls7{letter-spacing:0.709333pt;}
.ls10{letter-spacing:0.714400pt;}
.ls37{letter-spacing:0.718637pt;}
.ls9{letter-spacing:0.724533pt;}
.ls58{letter-spacing:0.725333pt;}
.ls3c{letter-spacing:0.752858pt;}
.lsd{letter-spacing:0.815680pt;}
.ls1e{letter-spacing:0.820621pt;}
.ls32{letter-spacing:0.821299pt;}
.ls4f{letter-spacing:0.855520pt;}
.ls23{letter-spacing:0.889006pt;}
.ls51{letter-spacing:0.889741pt;}
.ls1b{letter-spacing:0.923198pt;}
.ls42{letter-spacing:0.923962pt;}
.ls2e{letter-spacing:1.026624pt;}
.ls46{letter-spacing:1.060845pt;}
.ls26{letter-spacing:1.094161pt;}
.ls47{letter-spacing:1.095066pt;}
.ls3e{letter-spacing:1.129286pt;}
.ls2b{letter-spacing:1.163518pt;}
.ls50{letter-spacing:1.266170pt;}
.ls59{letter-spacing:1.322667pt;}
.ls3f{letter-spacing:1.334611pt;}
.ls56{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.367701pt;}
.ls4c{letter-spacing:1.368832pt;}
.ls4e{letter-spacing:1.437274pt;}
.ls20{letter-spacing:1.470276pt;}
.ls44{letter-spacing:1.471491pt;}
.ls57{letter-spacing:1.493333pt;}
.ls38{letter-spacing:1.642598pt;}
.ls0{letter-spacing:2.986667pt;}
.ls11{letter-spacing:5.638687pt;}
.ls1{letter-spacing:36.076267pt;}
.ws2{word-spacing:-13.312000pt;}
.ws6{word-spacing:-12.666667pt;}
.ws25{word-spacing:-11.957333pt;}
.ws12d{word-spacing:-11.264000pt;}
.ws156{word-spacing:-11.221333pt;}
.ws49{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.488000pt;}
.ws59{word-spacing:-10.080000pt;}
.ws7{word-spacing:-9.728000pt;}
.wsdd{word-spacing:-9.205392pt;}
.wsa4{word-spacing:-9.197788pt;}
.wse9{word-spacing:-9.171174pt;}
.wse6{word-spacing:-9.102733pt;}
.wsa5{word-spacing:-9.095214pt;}
.wsd7{word-spacing:-9.068512pt;}
.wsea{word-spacing:-9.000070pt;}
.ws5a{word-spacing:-8.866667pt;}
.wsd6{word-spacing:-8.863187pt;}
.wse0{word-spacing:-8.828966pt;}
.wsdf{word-spacing:-8.794746pt;}
.wsca{word-spacing:-8.760525pt;}
.wsda{word-spacing:-8.657862pt;}
.ws9e{word-spacing:-8.650711pt;}
.wseb{word-spacing:-8.623642pt;}
.ws24{word-spacing:-8.617110pt;}
.wsa8{word-spacing:-8.616518pt;}
.wsa{word-spacing:-8.600017pt;}
.wscc{word-spacing:-8.555200pt;}
.wsa2{word-spacing:-8.548133pt;}
.wsd4{word-spacing:-8.486758pt;}
.wscf{word-spacing:-8.452538pt;}
.wscb{word-spacing:-8.384096pt;}
.ws1{word-spacing:-8.362667pt;}
.wse4{word-spacing:-8.212992pt;}
.ws10c{word-spacing:-8.192000pt;}
.wse7{word-spacing:-8.144550pt;}
.wsa3{word-spacing:-8.137823pt;}
.ws9b{word-spacing:-8.133380pt;}
.wse5{word-spacing:-8.110330pt;}
.wsa1{word-spacing:-8.103630pt;}
.ws99{word-spacing:-8.099206pt;}
.wse2{word-spacing:-7.973446pt;}
.wsd5{word-spacing:-7.905005pt;}
.wsdc{word-spacing:-7.733901pt;}
.wsa0{word-spacing:-7.727513pt;}
.ws98{word-spacing:-7.723294pt;}
.wsdb{word-spacing:-7.699680pt;}
.wsd3{word-spacing:-7.665459pt;}
.ws9d{word-spacing:-7.659127pt;}
.wsce{word-spacing:-7.631238pt;}
.wsa9{word-spacing:-7.624935pt;}
.wse8{word-spacing:-7.597018pt;}
.wse3{word-spacing:-7.562797pt;}
.wse1{word-spacing:-7.528576pt;}
.ws9{word-spacing:-7.466667pt;}
.wsd2{word-spacing:-7.425914pt;}
.ws9c{word-spacing:-7.415729pt;}
.wscd{word-spacing:-7.391693pt;}
.wsd0{word-spacing:-7.357472pt;}
.wsa7{word-spacing:-7.351395pt;}
.ws4{word-spacing:-7.341600pt;}
.wsd9{word-spacing:-7.323251pt;}
.ws9f{word-spacing:-7.317202pt;}
.ws97{word-spacing:-7.279034pt;}
.wsec{word-spacing:-7.186368pt;}
.wsd1{word-spacing:-7.083706pt;}
.ws9a{word-spacing:-7.073990pt;}
.wsd8{word-spacing:-7.049485pt;}
.wsaa{word-spacing:-7.043662pt;}
.wsde{word-spacing:-6.912602pt;}
.wsc9{word-spacing:-5.891893pt;}
.wsbf{word-spacing:-5.333333pt;}
.wse{word-spacing:-1.824000pt;}
.wsb{word-spacing:-1.680000pt;}
.wsf9{word-spacing:-1.642598pt;}
.ws13c{word-spacing:-1.621333pt;}
.ws100{word-spacing:-1.437274pt;}
.ws103{word-spacing:-1.266170pt;}
.wsad{word-spacing:-1.216000pt;}
.ws93{word-spacing:-1.114667pt;}
.wsb2{word-spacing:-1.094161pt;}
.ws101{word-spacing:-0.855520pt;}
.wsff{word-spacing:-0.821299pt;}
.ws28{word-spacing:-0.709333pt;}
.ws4d{word-spacing:-0.658667pt;}
.ws7a{word-spacing:-0.608000pt;}
.ws133{word-spacing:-0.597333pt;}
.ws1c{word-spacing:-0.557333pt;}
.ws171{word-spacing:-0.554667pt;}
.ws95{word-spacing:-0.506667pt;}
.wsf6{word-spacing:-0.479091pt;}
.wsb0{word-spacing:-0.478695pt;}
.ws2a{word-spacing:-0.456000pt;}
.wsc{word-spacing:-0.426667pt;}
.wsf{word-spacing:-0.425798pt;}
.wsfd{word-spacing:-0.410650pt;}
.ws114{word-spacing:-0.341333pt;}
.ws50{word-spacing:-0.304000pt;}
.wsf7{word-spacing:-0.273766pt;}
.ws26{word-spacing:-0.254446pt;}
.ws37{word-spacing:-0.253333pt;}
.wsf5{word-spacing:-0.239546pt;}
.ws23{word-spacing:-0.237350pt;}
.ws121{word-spacing:-0.213333pt;}
.wsf2{word-spacing:-0.202667pt;}
.wsf8{word-spacing:-0.171104pt;}
.ws180{word-spacing:-0.170667pt;}
.ws14b{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.101333pt;}
.ws13a{word-spacing:-0.085333pt;}
.ws8{word-spacing:-0.058667pt;}
.ws5{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws12e{word-spacing:0.042667pt;}
.wsb4{word-spacing:0.050667pt;}
.wsb1{word-spacing:0.068348pt;}
.ws8e{word-spacing:0.101333pt;}
.wsfc{word-spacing:0.102662pt;}
.ws14a{word-spacing:0.128000pt;}
.ws1f{word-spacing:0.152000pt;}
.wsf4{word-spacing:0.160688pt;}
.ws102{word-spacing:0.171104pt;}
.ws45{word-spacing:0.202667pt;}
.wsf3{word-spacing:0.253333pt;}
.ws15b{word-spacing:0.298667pt;}
.ws7c{word-spacing:0.304000pt;}
.ws155{word-spacing:0.384000pt;}
.wsb5{word-spacing:0.405333pt;}
.wsfb{word-spacing:0.410650pt;}
.ws144{word-spacing:0.426667pt;}
.ws78{word-spacing:0.456000pt;}
.ws2b{word-spacing:0.506667pt;}
.ws130{word-spacing:0.554667pt;}
.ws5c{word-spacing:0.557333pt;}
.ws113{word-spacing:0.597333pt;}
.ws88{word-spacing:0.608000pt;}
.ws80{word-spacing:0.658667pt;}
.wsfe{word-spacing:0.684416pt;}
.ws2c{word-spacing:0.709333pt;}
.ws33{word-spacing:0.760000pt;}
.ws74{word-spacing:0.810667pt;}
.ws132{word-spacing:0.853333pt;}
.wsf1{word-spacing:0.861333pt;}
.ws12b{word-spacing:0.896000pt;}
.ws32{word-spacing:0.912000pt;}
.ws167{word-spacing:0.938667pt;}
.wsfa{word-spacing:0.958182pt;}
.ws73{word-spacing:0.962667pt;}
.ws15a{word-spacing:0.981333pt;}
.ws4c{word-spacing:1.013333pt;}
.ws16f{word-spacing:1.024000pt;}
.wsf0{word-spacing:1.064000pt;}
.ws13{word-spacing:1.114667pt;}
.ws138{word-spacing:1.152000pt;}
.ws15{word-spacing:1.165333pt;}
.ws150{word-spacing:1.194667pt;}
.ws4b{word-spacing:1.216000pt;}
.ws152{word-spacing:1.280000pt;}
.ws35{word-spacing:1.317333pt;}
.ws166{word-spacing:1.322667pt;}
.ws2f{word-spacing:1.368000pt;}
.ws151{word-spacing:1.450667pt;}
.ws7e{word-spacing:1.469333pt;}
.ws128{word-spacing:1.493333pt;}
.ws108{word-spacing:1.520000pt;}
.ws17d{word-spacing:1.536000pt;}
.ws11d{word-spacing:1.578667pt;}
.ws124{word-spacing:1.621333pt;}
.ws120{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.672000pt;}
.ws140{word-spacing:1.749333pt;}
.ws1a{word-spacing:1.773333pt;}
.ws20{word-spacing:1.824000pt;}
.ws6b{word-spacing:1.874667pt;}
.ws12f{word-spacing:1.920000pt;}
.ws89{word-spacing:1.925333pt;}
.ws2d{word-spacing:1.976000pt;}
.ws5d{word-spacing:2.026667pt;}
.wsc1{word-spacing:2.077333pt;}
.wsc0{word-spacing:2.128000pt;}
.ws11b{word-spacing:2.175996pt;}
.ws6c{word-spacing:2.178662pt;}
.wsab{word-spacing:2.229333pt;}
.ws11e{word-spacing:2.261333pt;}
.ws75{word-spacing:2.330667pt;}
.ws19{word-spacing:2.381333pt;}
.ws47{word-spacing:2.432000pt;}
.ws16e{word-spacing:2.474667pt;}
.ws43{word-spacing:2.482667pt;}
.ws8d{word-spacing:2.533333pt;}
.ws14f{word-spacing:2.560000pt;}
.wsae{word-spacing:2.583995pt;}
.ws137{word-spacing:2.688000pt;}
.ws126{word-spacing:2.730667pt;}
.wsc5{word-spacing:2.736000pt;}
.ws174{word-spacing:2.773333pt;}
.ws3a{word-spacing:2.786667pt;}
.ws164{word-spacing:2.816000pt;}
.wsb3{word-spacing:2.837333pt;}
.ws134{word-spacing:2.858667pt;}
.ws10e{word-spacing:2.888000pt;}
.ws68{word-spacing:2.938667pt;}
.ws2e{word-spacing:2.989333pt;}
.ws153{word-spacing:3.029329pt;}
.wsb6{word-spacing:3.040000pt;}
.ws145{word-spacing:3.072000pt;}
.wsc8{word-spacing:3.090667pt;}
.ws14e{word-spacing:3.114667pt;}
.ws36{word-spacing:3.141333pt;}
.ws147{word-spacing:3.157333pt;}
.ws4f{word-spacing:3.192000pt;}
.ws115{word-spacing:3.200000pt;}
.wsee{word-spacing:3.242667pt;}
.ws139{word-spacing:3.285333pt;}
.ws8b{word-spacing:3.293333pt;}
.ws58{word-spacing:3.328000pt;}
.ws107{word-spacing:3.344000pt;}
.ws168{word-spacing:3.370667pt;}
.ws5e{word-spacing:3.394667pt;}
.ws87{word-spacing:3.445333pt;}
.ws13b{word-spacing:3.456000pt;}
.wsaf{word-spacing:3.496000pt;}
.ws116{word-spacing:3.498667pt;}
.ws17c{word-spacing:3.541333pt;}
.ws148{word-spacing:3.584000pt;}
.ws66{word-spacing:3.597328pt;}
.ws3f{word-spacing:3.648000pt;}
.ws123{word-spacing:3.669329pt;}
.ws34{word-spacing:3.800000pt;}
.ws159{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.850667pt;}
.ws129{word-spacing:3.882667pt;}
.ws96{word-spacing:3.901333pt;}
.ws169{word-spacing:3.925333pt;}
.ws30{word-spacing:3.952000pt;}
.ws31{word-spacing:4.002667pt;}
.wsef{word-spacing:4.053333pt;}
.ws170{word-spacing:4.096000pt;}
.ws52{word-spacing:4.104000pt;}
.ws51{word-spacing:4.154667pt;}
.ws13f{word-spacing:4.181333pt;}
.wsb7{word-spacing:4.205333pt;}
.ws11f{word-spacing:4.224000pt;}
.ws41{word-spacing:4.256000pt;}
.ws11c{word-spacing:4.266667pt;}
.ws54{word-spacing:4.306667pt;}
.ws7f{word-spacing:4.357328pt;}
.ws105{word-spacing:4.407995pt;}
.ws142{word-spacing:4.437333pt;}
.ws117{word-spacing:4.480000pt;}
.ws83{word-spacing:4.509333pt;}
.ws131{word-spacing:4.522667pt;}
.ws39{word-spacing:4.560000pt;}
.ws7d{word-spacing:4.610667pt;}
.ws111{word-spacing:4.650667pt;}
.ws162{word-spacing:4.693333pt;}
.ws6d{word-spacing:4.712000pt;}
.ws21{word-spacing:4.762667pt;}
.ws178{word-spacing:4.778667pt;}
.ws12{word-spacing:4.813333pt;}
.ws15d{word-spacing:4.821333pt;}
.ws13d{word-spacing:4.864000pt;}
.ws17b{word-spacing:4.906667pt;}
.ws18{word-spacing:4.914667pt;}
.ws6f{word-spacing:4.965333pt;}
.ws12a{word-spacing:4.992000pt;}
.ws127{word-spacing:5.077333pt;}
.ws61{word-spacing:5.117333pt;}
.ws46{word-spacing:5.168000pt;}
.ws8f{word-spacing:5.218667pt;}
.ws10f{word-spacing:5.248000pt;}
.ws64{word-spacing:5.269333pt;}
.ws91{word-spacing:5.320000pt;}
.ws12c{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.370667pt;}
.ws15c{word-spacing:5.376000pt;}
.ws16{word-spacing:5.421333pt;}
.ws84{word-spacing:5.472000pt;}
.ws136{word-spacing:5.504000pt;}
.ws10d{word-spacing:5.573333pt;}
.ws29{word-spacing:5.624000pt;}
.ws3b{word-spacing:5.674667pt;}
.ws173{word-spacing:5.717333pt;}
.ws40{word-spacing:5.725333pt;}
.ws3e{word-spacing:5.826667pt;}
.ws38{word-spacing:5.877333pt;}
.ws92{word-spacing:5.928000pt;}
.ws16a{word-spacing:5.930667pt;}
.ws17a{word-spacing:5.973333pt;}
.ws14{word-spacing:5.978667pt;}
.ws112{word-spacing:6.016000pt;}
.ws42{word-spacing:6.029333pt;}
.ws7b{word-spacing:6.080000pt;}
.ws17e{word-spacing:6.101333pt;}
.ws57{word-spacing:6.130667pt;}
.wsc6{word-spacing:6.181333pt;}
.ws179{word-spacing:6.229333pt;}
.ws10b{word-spacing:6.282667pt;}
.ws11a{word-spacing:6.314667pt;}
.ws1e{word-spacing:6.333333pt;}
.ws157{word-spacing:6.357333pt;}
.ws3c{word-spacing:6.384000pt;}
.ws122{word-spacing:6.485333pt;}
.ws60{word-spacing:6.536000pt;}
.ws118{word-spacing:6.570667pt;}
.wsb8{word-spacing:6.586667pt;}
.ws70{word-spacing:6.637333pt;}
.ws82{word-spacing:6.688000pt;}
.ws13e{word-spacing:6.698667pt;}
.ws149{word-spacing:6.741333pt;}
.ws27{word-spacing:6.789333pt;}
.ws110{word-spacing:6.826667pt;}
.ws106{word-spacing:6.840000pt;}
.ws10a{word-spacing:6.890667pt;}
.ws81{word-spacing:6.992000pt;}
.ws4a{word-spacing:7.042667pt;}
.ws3d{word-spacing:7.093333pt;}
.wsc4{word-spacing:7.144000pt;}
.wsac{word-spacing:7.245333pt;}
.ws63{word-spacing:7.296000pt;}
.ws158{word-spacing:7.338667pt;}
.ws11{word-spacing:7.448000pt;}
.ws146{word-spacing:7.594667pt;}
.ws72{word-spacing:7.600000pt;}
.ws160{word-spacing:7.637333pt;}
.ws109{word-spacing:7.650667pt;}
.ws5f{word-spacing:7.701333pt;}
.ws94{word-spacing:7.752000pt;}
.ws104{word-spacing:7.802667pt;}
.ws135{word-spacing:7.808000pt;}
.ws163{word-spacing:7.893333pt;}
.ws65{word-spacing:7.904000pt;}
.ws176{word-spacing:8.021333pt;}
.ws16b{word-spacing:8.192000pt;}
.wsc7{word-spacing:8.258667pt;}
.ws56{word-spacing:8.309333pt;}
.ws119{word-spacing:8.533333pt;}
.ws17f{word-spacing:8.661333pt;}
.ws48{word-spacing:8.714667pt;}
.ws14c{word-spacing:8.832000pt;}
.ws125{word-spacing:8.917333pt;}
.ws165{word-spacing:9.002667pt;}
.wsc3{word-spacing:9.018667pt;}
.ws8a{word-spacing:9.170667pt;}
.ws15f{word-spacing:9.216000pt;}
.ws8c{word-spacing:9.221333pt;}
.ws10{word-spacing:9.322667pt;}
.ws6a{word-spacing:9.373333pt;}
.ws44{word-spacing:9.525333pt;}
.ws71{word-spacing:9.576000pt;}
.ws67{word-spacing:10.133333pt;}
.ws15e{word-spacing:10.154667pt;}
.ws5b{word-spacing:10.184000pt;}
.ws17{word-spacing:10.437333pt;}
.ws55{word-spacing:10.488000pt;}
.ws62{word-spacing:10.589333pt;}
.ws69{word-spacing:10.690667pt;}
.ws90{word-spacing:10.792000pt;}
.ws6e{word-spacing:10.994667pt;}
.ws85{word-spacing:11.298667pt;}
.ws76{word-spacing:11.602667pt;}
.ws16d{word-spacing:11.818667pt;}
.ws143{word-spacing:11.946667pt;}
.ws175{word-spacing:12.629333pt;}
.ws141{word-spacing:12.928000pt;}
.ws86{word-spacing:13.274667pt;}
.ws77{word-spacing:14.186667pt;}
.ws79{word-spacing:14.541333pt;}
.ws16c{word-spacing:14.592000pt;}
.ws53{word-spacing:14.794667pt;}
.ws177{word-spacing:15.573333pt;}
.ws154{word-spacing:16.981333pt;}
.ws172{word-spacing:19.968000pt;}
.ws161{word-spacing:30.165333pt;}
.ws14d{word-spacing:37.632000pt;}
.ws22{word-spacing:64.938667pt;}
.wsed{word-spacing:96.702525pt;}
.wsa6{word-spacing:118.135271pt;}
.wsb9{word-spacing:128.128000pt;}
.wsbb{word-spacing:195.626667pt;}
.wsbd{word-spacing:316.373333pt;}
.wsba{word-spacing:327.509333pt;}
.wsbc{word-spacing:343.509333pt;}
.wsbe{word-spacing:1550.762667pt;}
._50{margin-left:-31.232000pt;}
._52{margin-left:-26.837333pt;}
._4f{margin-left:-25.856000pt;}
._48{margin-left:-24.192000pt;}
._4c{margin-left:-20.096000pt;}
._49{margin-left:-18.858667pt;}
._10{margin-left:-17.188744pt;}
._43{margin-left:-15.744000pt;}
._4a{margin-left:-14.848000pt;}
._6{margin-left:-13.866667pt;}
._3b{margin-left:-12.601067pt;}
._3f{margin-left:-11.203466pt;}
._45{margin-left:-9.642667pt;}
._3c{margin-left:-4.426667pt;}
._1{margin-left:-3.460267pt;}
._5{margin-left:-2.552267pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.317333pt;}
._21{width:2.221284pt;}
._b{width:3.141600pt;}
._c{width:4.896000pt;}
._a{width:6.333333pt;}
._9{width:7.425234pt;}
._d{width:9.173867pt;}
._f{width:11.023200pt;}
._51{width:11.989333pt;}
._e{width:13.141333pt;}
._4e{width:14.720000pt;}
._37{width:16.034933pt;}
._4d{width:17.237333pt;}
._42{width:18.224000pt;}
._7{width:19.840000pt;}
._4b{width:20.736000pt;}
._44{width:21.632000pt;}
._3d{width:22.594667pt;}
._41{width:23.704009pt;}
._3e{width:24.874133pt;}
._46{width:25.941333pt;}
._40{width:27.349333pt;}
._20{width:31.546133pt;}
._3{width:35.724853pt;}
._4{width:36.715467pt;}
._8{width:50.005333pt;}
._47{width:59.605333pt;}
._2a{width:79.488000pt;}
._22{width:105.642667pt;}
._2f{width:139.904000pt;}
._2c{width:152.106667pt;}
._12{width:156.501333pt;}
._15{width:187.648000pt;}
._1f{width:189.653333pt;}
._33{width:194.288533pt;}
._14{width:201.386667pt;}
._16{width:216.106667pt;}
._34{width:233.301333pt;}
._24{width:242.973813pt;}
._2d{width:250.957600pt;}
._27{width:254.634667pt;}
._1a{width:276.096000pt;}
._26{width:277.112267pt;}
._19{width:300.373333pt;}
._32{width:343.594667pt;}
._31{width:345.728000pt;}
._13{width:351.573333pt;}
._2e{width:366.421333pt;}
._35{width:372.053333pt;}
._39{width:376.789333pt;}
._23{width:382.762667pt;}
._30{width:422.613280pt;}
._17{width:497.365333pt;}
._1d{width:500.906667pt;}
._1e{width:509.141333pt;}
._1c{width:541.525333pt;}
._18{width:547.157333pt;}
._11{width:556.288000pt;}
._1b{width:614.741333pt;}
._3a{width:667.093333pt;}
._25{width:817.322613pt;}
._29{width:853.674613pt;}
._36{width:926.976000pt;}
._38{width:963.413280pt;}
._28{width:1353.941440pt;}
._2b{width:1785.045387pt;}
.fsb{font-size:26.781333pt;}
.fs6{font-size:29.866667pt;}
.fsa{font-size:34.173867pt;}
.fs9{font-size:34.192533pt;}
.fsc{font-size:34.220800pt;}
.fs4{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:50.133333pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.y75{bottom:30.208800pt;}
.y3{bottom:30.208933pt;}
.y148{bottom:65.133333pt;}
.y149{bottom:65.133360pt;}
.y14e{bottom:65.144013pt;}
.y16a{bottom:65.154640pt;}
.y150{bottom:65.154653pt;}
.y168{bottom:65.154667pt;}
.y16b{bottom:65.165293pt;}
.y155{bottom:65.165320pt;}
.y151{bottom:65.165333pt;}
.y156{bottom:65.175987pt;}
.y159{bottom:65.186640pt;}
.y15a{bottom:65.197293pt;}
.y15d{bottom:65.207933pt;}
.y164{bottom:65.218560pt;}
.y161{bottom:65.218587pt;}
.y5b{bottom:65.267587pt;}
.ye6{bottom:65.453333pt;}
.y1ac{bottom:65.643600pt;}
.ybb{bottom:66.055987pt;}
.yd5{bottom:66.151987pt;}
.y10e{bottom:66.194000pt;}
.y12d{bottom:66.372267pt;}
.y146{bottom:67.137600pt;}
.y26{bottom:69.400000pt;}
.ya1{bottom:71.698267pt;}
.y229{bottom:75.546253pt;}
.y1cf{bottom:76.840933pt;}
.y1f0{bottom:78.378533pt;}
.y5a{bottom:80.606920pt;}
.y1ab{bottom:80.982933pt;}
.yba{bottom:81.395320pt;}
.yd4{bottom:81.491320pt;}
.y195{bottom:81.533333pt;}
.y10d{bottom:82.333333pt;}
.y145{bottom:82.476933pt;}
.ya0{bottom:87.037600pt;}
.y228{bottom:87.876920pt;}
.y25{bottom:88.442000pt;}
.y1ef{bottom:90.709200pt;}
.y1ce{bottom:92.180267pt;}
.y71{bottom:92.913080pt;}
.y59{bottom:95.946253pt;}
.y1aa{bottom:96.322267pt;}
.yb9{bottom:96.734653pt;}
.yd3{bottom:96.830653pt;}
.y10c{bottom:96.854667pt;}
.y144{bottom:97.816267pt;}
.y12c{bottom:98.248267pt;}
.y227{bottom:100.207587pt;}
.y9f{bottom:102.376933pt;}
.y1ee{bottom:103.039867pt;}
.y1cd{bottom:107.519600pt;}
.y70{bottom:108.252413pt;}
.y24{bottom:109.311333pt;}
.y22b{bottom:110.788920pt;}
.y58{bottom:111.285587pt;}
.y1a9{bottom:111.661600pt;}
.yb8{bottom:112.073987pt;}
.yd2{bottom:112.169987pt;}
.y10b{bottom:112.194000pt;}
.y226{bottom:112.538253pt;}
.y194{bottom:112.866667pt;}
.y143{bottom:113.155600pt;}
.y1ed{bottom:115.370533pt;}
.y9e{bottom:117.716267pt;}
.y23{bottom:121.642000pt;}
.y1cc{bottom:122.858933pt;}
.y22a{bottom:123.119587pt;}
.y6f{bottom:123.591747pt;}
.y225{bottom:124.868920pt;}
.y57{bottom:126.624920pt;}
.y1a8{bottom:127.000933pt;}
.yb7{bottom:127.413320pt;}
.yd1{bottom:127.509320pt;}
.y1ec{bottom:127.701200pt;}
.y10a{bottom:128.333333pt;}
.y142{bottom:128.494933pt;}
.y14a{bottom:131.234693pt;}
.y9d{bottom:133.055600pt;}
.y224{bottom:137.199587pt;}
.y1cb{bottom:138.198267pt;}
.y6e{bottom:138.931080pt;}
.y1eb{bottom:140.031867pt;}
.y56{bottom:141.964253pt;}
.y1a7{bottom:142.340267pt;}
.yb6{bottom:142.752653pt;}
.yd0{bottom:142.848653pt;}
.y141{bottom:143.834267pt;}
.y223{bottom:149.530253pt;}
.y193{bottom:149.989187pt;}
.y1ea{bottom:152.362533pt;}
.y1ca{bottom:153.537600pt;}
.y6d{bottom:154.270413pt;}
.y124{bottom:155.861600pt;}
.y55{bottom:157.303587pt;}
.y1a6{bottom:157.679600pt;}
.yb5{bottom:158.091987pt;}
.ycf{bottom:158.187987pt;}
.y140{bottom:159.173600pt;}
.y222{bottom:161.860920pt;}
.y9c{bottom:164.388933pt;}
.y192{bottom:165.328520pt;}
.y1c9{bottom:168.876933pt;}
.y6c{bottom:169.609747pt;}
.y54{bottom:172.642920pt;}
.yb4{bottom:173.431320pt;}
.yce{bottom:173.527320pt;}
.y22{bottom:174.057733pt;}
.y221{bottom:174.191587pt;}
.y13f{bottom:174.428933pt;}
.y191{bottom:180.667853pt;}
.y1e9{bottom:180.962400pt;}
.y1c8{bottom:184.216267pt;}
.y6b{bottom:184.949080pt;}
.y220{bottom:186.522253pt;}
.y53{bottom:187.982253pt;}
.yb3{bottom:188.770653pt;}
.ycd{bottom:188.866653pt;}
.y1a5{bottom:189.012933pt;}
.y21{bottom:189.397067pt;}
.y109{bottom:189.666667pt;}
.y13e{bottom:189.768267pt;}
.y125{bottom:191.874893pt;}
.y190{bottom:196.007187pt;}
.y14b{bottom:197.261360pt;}
.y21f{bottom:198.852920pt;}
.y1c7{bottom:199.555600pt;}
.y6a{bottom:200.288413pt;}
.y52{bottom:203.321587pt;}
.yb2{bottom:204.109987pt;}
.y108{bottom:204.181987pt;}
.y20{bottom:204.736400pt;}
.y13d{bottom:205.107600pt;}
.y166{bottom:205.272013pt;}
.y152{bottom:205.293333pt;}
.y157{bottom:205.303987pt;}
.y15b{bottom:205.325293pt;}
.y15e{bottom:205.335933pt;}
.y162{bottom:205.346587pt;}
.y21e{bottom:211.183587pt;}
.y18f{bottom:211.346520pt;}
.y12b{bottom:213.450933pt;}
.y69{bottom:215.627747pt;}
.y9b{bottom:216.989587pt;}
.y51{bottom:218.660920pt;}
.yb1{bottom:219.449320pt;}
.y107{bottom:219.521320pt;}
.y1f{bottom:220.075733pt;}
.ycc{bottom:220.199987pt;}
.y13c{bottom:220.446933pt;}
.y21d{bottom:223.514253pt;}
.y18e{bottom:226.685853pt;}
.y126{bottom:227.888173pt;}
.y1e8{bottom:230.302413pt;}
.y1c6{bottom:230.888933pt;}
.y68{bottom:230.967080pt;}
.y9a{bottom:232.328920pt;}
.y50{bottom:234.000253pt;}
.yb0{bottom:234.788653pt;}
.y106{bottom:234.860653pt;}
.y1e{bottom:235.415067pt;}
.y13b{bottom:235.786267pt;}
.y21c{bottom:235.844920pt;}
.y1a4{bottom:237.000933pt;}
.y18d{bottom:242.025187pt;}
.y1e7{bottom:242.633080pt;}
.y67{bottom:246.306413pt;}
.y99{bottom:247.668253pt;}
.y21b{bottom:248.175587pt;}
.y4f{bottom:249.339587pt;}
.yaf{bottom:250.127987pt;}
.y1d{bottom:250.754400pt;}
.y105{bottom:251.000000pt;}
.y13a{bottom:251.125600pt;}
.ycb{bottom:252.199987pt;}
.y1a3{bottom:252.340267pt;}
.y1e6{bottom:254.963747pt;}
.y18c{bottom:257.364520pt;}
.y21a{bottom:260.506253pt;}
.y66{bottom:261.645747pt;}
.y98{bottom:263.007587pt;}
.y127{bottom:263.901453pt;}
.y4e{bottom:264.678920pt;}
.yae{bottom:265.467320pt;}
.y104{bottom:265.521320pt;}
.y139{bottom:266.464933pt;}
.y1e5{bottom:267.294413pt;}
.y1a2{bottom:267.631600pt;}
.y18b{bottom:272.703853pt;}
.y219{bottom:272.836920pt;}
.y65{bottom:276.985080pt;}
.y97{bottom:278.346920pt;}
.y1e4{bottom:279.625080pt;}
.y4d{bottom:280.018253pt;}
.yad{bottom:280.806653pt;}
.y103{bottom:280.860653pt;}
.y138{bottom:281.804267pt;}
.y1c{bottom:282.087733pt;}
.y1a1{bottom:282.970933pt;}
.y218{bottom:285.167587pt;}
.y18a{bottom:288.043187pt;}
.y1e3{bottom:291.955747pt;}
.y64{bottom:292.324413pt;}
.y96{bottom:293.686253pt;}
.y4c{bottom:295.357587pt;}
.yac{bottom:296.145987pt;}
.yca{bottom:296.576533pt;}
.y102{bottom:297.000000pt;}
.y137{bottom:297.143600pt;}
.y217{bottom:297.498253pt;}
.y1a0{bottom:298.310267pt;}
.y128{bottom:299.914733pt;}
.y189{bottom:303.382520pt;}
.y1e2{bottom:304.286413pt;}
.y63{bottom:307.663747pt;}
.y95{bottom:309.025587pt;}
.y216{bottom:309.828920pt;}
.y4b{bottom:310.696920pt;}
.yab{bottom:311.485320pt;}
.y101{bottom:311.509320pt;}
.yc9{bottom:311.915867pt;}
.y136{bottom:312.482933pt;}
.y19f{bottom:313.649600pt;}
.y1e1{bottom:316.617080pt;}
.y188{bottom:318.721853pt;}
.y215{bottom:322.159587pt;}
.y62{bottom:323.003080pt;}
.y94{bottom:324.364920pt;}
.y4a{bottom:326.036253pt;}
.yaa{bottom:326.824653pt;}
.y100{bottom:326.848653pt;}
.yc8{bottom:327.255200pt;}
.y135{bottom:327.822267pt;}
.y19e{bottom:328.988933pt;}
.y1b{bottom:329.998400pt;}
.y187{bottom:334.061187pt;}
.y214{bottom:334.490253pt;}
.y129{bottom:335.928027pt;}
.y14c{bottom:336.216027pt;}
.y167{bottom:336.226680pt;}
.y153{bottom:336.248000pt;}
.y163{bottom:336.301253pt;}
.y61{bottom:338.342413pt;}
.y93{bottom:339.704253pt;}
.y49{bottom:341.375587pt;}
.ya9{bottom:342.163987pt;}
.yff{bottom:342.187987pt;}
.yc7{bottom:342.594533pt;}
.y134{bottom:343.161600pt;}
.y1e0{bottom:344.286413pt;}
.y19d{bottom:344.328267pt;}
.y213{bottom:346.820920pt;}
.y186{bottom:349.400520pt;}
.y60{bottom:353.681747pt;}
.y92{bottom:355.043587pt;}
.y48{bottom:356.714920pt;}
.ya8{bottom:357.503320pt;}
.yfe{bottom:357.527320pt;}
.yc6{bottom:357.933867pt;}
.y133{bottom:358.500933pt;}
.y212{bottom:359.151587pt;}
.y19c{bottom:359.667600pt;}
.y1a{bottom:360.664400pt;}
.y185{bottom:364.739853pt;}
.y5f{bottom:369.021080pt;}
.y91{bottom:370.382920pt;}
.y211{bottom:371.482253pt;}
.y12a{bottom:371.941307pt;}
.y47{bottom:372.054253pt;}
.ya7{bottom:372.842653pt;}
.yc5{bottom:373.273200pt;}
.yfd{bottom:373.666667pt;}
.y132{bottom:373.840267pt;}
.y19b{bottom:375.006933pt;}
.y19{bottom:376.003733pt;}
.y1df{bottom:376.574413pt;}
.y184{bottom:380.079187pt;}
.y210{bottom:383.812920pt;}
.y5e{bottom:384.360413pt;}
.y90{bottom:385.680253pt;}
.y46{bottom:387.393587pt;}
.ya6{bottom:388.181987pt;}
.yfc{bottom:388.187987pt;}
.y131{bottom:389.173600pt;}
.y19a{bottom:390.322267pt;}
.y18{bottom:391.343067pt;}
.y183{bottom:395.418520pt;}
.y20f{bottom:396.143587pt;}
.y5d{bottom:399.699747pt;}
.y8f{bottom:401.019587pt;}
.y1de{bottom:401.246413pt;}
.y45{bottom:402.732920pt;}
.ya5{bottom:403.521320pt;}
.yfb{bottom:403.527320pt;}
.y130{bottom:404.506933pt;}
.yc4{bottom:404.606533pt;}
.y199{bottom:405.661600pt;}
.y17{bottom:406.682400pt;}
.y20e{bottom:408.474253pt;}
.y182{bottom:410.757853pt;}
.y8e{bottom:416.358920pt;}
.y44{bottom:418.072253pt;}
.ya4{bottom:418.860653pt;}
.yfa{bottom:419.666667pt;}
.y12f{bottom:419.846267pt;}
.y20d{bottom:420.804920pt;}
.y198{bottom:421.000933pt;}
.y16{bottom:422.021733pt;}
.y1dd{bottom:425.918413pt;}
.y181{bottom:426.097187pt;}
.y123{bottom:430.262387pt;}
.y8d{bottom:431.698253pt;}
.y20c{bottom:433.135587pt;}
.y43{bottom:433.411587pt;}
.yf9{bottom:434.181987pt;}
.ya3{bottom:434.199987pt;}
.y197{bottom:436.340267pt;}
.y15{bottom:437.361067pt;}
.y180{bottom:441.436520pt;}
.y20b{bottom:445.466253pt;}
.y122{bottom:445.601720pt;}
.y8c{bottom:447.037587pt;}
.y42{bottom:448.750920pt;}
.yf8{bottom:449.521320pt;}
.y12e{bottom:451.179600pt;}
.y196{bottom:451.679600pt;}
.y14{bottom:452.700400pt;}
.y1dc{bottom:453.585080pt;}
.y17f{bottom:456.775853pt;}
.y20a{bottom:457.796920pt;}
.y121{bottom:460.941053pt;}
.yc3{bottom:460.971067pt;}
.y8b{bottom:462.376920pt;}
.y41{bottom:464.090253pt;}
.yf7{bottom:464.860653pt;}
.ya2{bottom:465.533320pt;}
.y13{bottom:468.039733pt;}
.y209{bottom:470.127587pt;}
.y17e{bottom:472.115187pt;}
.y14d{bottom:475.053360pt;}
.y158{bottom:475.095987pt;}
.y15c{bottom:475.117280pt;}
.y15f{bottom:475.127933pt;}
.y120{bottom:476.280387pt;}
.yc2{bottom:476.310400pt;}
.y8a{bottom:477.716253pt;}
.y40{bottom:479.429587pt;}
.yf6{bottom:481.000000pt;}
.y208{bottom:482.458253pt;}
.y1db{bottom:482.918253pt;}
.y12{bottom:483.379067pt;}
.y73{bottom:485.366280pt;}
.y17d{bottom:487.454520pt;}
.y11f{bottom:491.619720pt;}
.yc1{bottom:491.649733pt;}
.y89{bottom:492.953587pt;}
.y3f{bottom:494.768920pt;}
.y207{bottom:494.788920pt;}
.y147{bottom:494.816933pt;}
.y1c5{bottom:494.828120pt;}
.yf5{bottom:495.515320pt;}
.y72{bottom:497.696947pt;}
.y11{bottom:498.718400pt;}
.ye5{bottom:500.896933pt;}
.y17c{bottom:502.793853pt;}
.y11e{bottom:506.959053pt;}
.yc0{bottom:506.989067pt;}
.y206{bottom:507.119587pt;}
.y1da{bottom:507.248920pt;}
.y88{bottom:508.292920pt;}
.y3e{bottom:510.108253pt;}
.yf4{bottom:510.854653pt;}
.y10{bottom:514.057733pt;}
.y17b{bottom:518.133187pt;}
.y205{bottom:519.450253pt;}
.y11d{bottom:522.298387pt;}
.ybf{bottom:522.328400pt;}
.y87{bottom:523.632253pt;}
.y1bd{bottom:524.196413pt;}
.y3d{bottom:525.447587pt;}
.yf3{bottom:526.193987pt;}
.yf{bottom:529.397067pt;}
.y1d9{bottom:531.579587pt;}
.y204{bottom:531.780920pt;}
.y17a{bottom:533.472520pt;}
.y1bc{bottom:537.405653pt;}
.y11c{bottom:537.637720pt;}
.ybe{bottom:537.667733pt;}
.y86{bottom:538.971587pt;}
.y3c{bottom:540.786920pt;}
.yf2{bottom:542.333333pt;}
.y1d8{bottom:543.910253pt;}
.y203{bottom:544.111587pt;}
.ye{bottom:544.736400pt;}
.y179{bottom:548.811853pt;}
.y11b{bottom:552.977053pt;}
.ybd{bottom:553.007067pt;}
.y85{bottom:554.310920pt;}
.y3b{bottom:556.126253pt;}
.y1d7{bottom:556.240920pt;}
.y202{bottom:556.442253pt;}
.y1bb{bottom:558.810760pt;}
.yd{bottom:560.075733pt;}
.y178{bottom:564.151187pt;}
.y11a{bottom:568.316387pt;}
.ybc{bottom:568.346400pt;}
.y1d6{bottom:568.571587pt;}
.y201{bottom:568.772920pt;}
.y84{bottom:569.650253pt;}
.y3a{bottom:571.465587pt;}
.yf1{bottom:572.146027pt;}
.yc{bottom:575.415067pt;}
.y177{bottom:579.490520pt;}
.y200{bottom:581.103587pt;}
.y119{bottom:583.655720pt;}
.y83{bottom:584.989587pt;}
.y39{bottom:586.804920pt;}
.yf0{bottom:587.485360pt;}
.yb{bottom:590.754400pt;}
.y1ba{bottom:591.611400pt;}
.y1d5{bottom:592.902253pt;}
.y1ff{bottom:593.434253pt;}
.y176{bottom:594.829853pt;}
.y82{bottom:600.328920pt;}
.y38{bottom:602.144253pt;}
.yef{bottom:602.824693pt;}
.y1d4{bottom:605.232920pt;}
.y1fe{bottom:605.764920pt;}
.y175{bottom:610.169187pt;}
.y118{bottom:614.989053pt;}
.y81{bottom:615.668253pt;}
.ye4{bottom:616.053773pt;}
.y37{bottom:617.483587pt;}
.y1d3{bottom:617.563587pt;}
.y1fd{bottom:618.095587pt;}
.yee{bottom:618.164027pt;}
.y174{bottom:625.508520pt;}
.y1bf{bottom:626.542280pt;}
.y1d2{bottom:629.894253pt;}
.y1fc{bottom:630.426253pt;}
.y80{bottom:631.007587pt;}
.ye3{bottom:631.755107pt;}
.y1b9{bottom:631.837947pt;}
.y36{bottom:632.822920pt;}
.ya{bottom:633.189067pt;}
.yed{bottom:633.503360pt;}
.y1be{bottom:637.133613pt;}
.y173{bottom:640.847853pt;}
.y1fb{bottom:642.756920pt;}
.y28{bottom:645.509947pt;}
.y9{bottom:645.519733pt;}
.y7f{bottom:646.346920pt;}
.ye2{bottom:647.392440pt;}
.y35{bottom:648.162253pt;}
.yec{bottom:648.842693pt;}
.y1ad{bottom:653.509480pt;}
.y1d1{bottom:654.224920pt;}
.y1fa{bottom:655.087587pt;}
.y172{bottom:656.187187pt;}
.y7e{bottom:661.686253pt;}
.ye1{bottom:663.029773pt;}
.y34{bottom:663.501587pt;}
.y117{bottom:663.614427pt;}
.yeb{bottom:664.182027pt;}
.y1d0{bottom:666.555587pt;}
.y1f9{bottom:667.418253pt;}
.y171{bottom:671.526520pt;}
.y1ae{bottom:673.267413pt;}
.y1c0{bottom:674.648160pt;}
.y1b8{bottom:674.656720pt;}
.y7d{bottom:677.025587pt;}
.ye0{bottom:678.667107pt;}
.y33{bottom:678.840920pt;}
.y116{bottom:678.953760pt;}
.y8{bottom:679.088400pt;}
.yea{bottom:679.521360pt;}
.y1f8{bottom:679.748920pt;}
.y169{bottom:681.133320pt;}
.y14f{bottom:681.133333pt;}
.y154{bottom:681.143987pt;}
.y160{bottom:681.197267pt;}
.y170{bottom:686.865853pt;}
.y1f7{bottom:692.079587pt;}
.y7c{bottom:692.364920pt;}
.y1af{bottom:693.025333pt;}
.y32{bottom:694.180253pt;}
.y115{bottom:694.293093pt;}
.ydf{bottom:694.304440pt;}
.y7{bottom:694.427733pt;}
.ye9{bottom:694.860693pt;}
.y16f{bottom:702.205187pt;}
.y1f6{bottom:704.410253pt;}
.y7b{bottom:707.704253pt;}
.y31{bottom:709.519587pt;}
.y114{bottom:709.632427pt;}
.yde{bottom:709.941773pt;}
.ye8{bottom:710.200027pt;}
.y1b0{bottom:712.776573pt;}
.y1c1{bottom:714.874720pt;}
.y1b7{bottom:714.883267pt;}
.y1f5{bottom:716.740920pt;}
.y16e{bottom:717.544520pt;}
.y7a{bottom:723.043587pt;}
.y30{bottom:724.858920pt;}
.y113{bottom:724.971760pt;}
.ydd{bottom:725.579107pt;}
.y1f4{bottom:729.071587pt;}
.y6{bottom:732.145040pt;}
.y1b1{bottom:732.527800pt;}
.y79{bottom:738.382920pt;}
.y2f{bottom:740.198253pt;}
.y112{bottom:740.311093pt;}
.ydc{bottom:741.216440pt;}
.y1f3{bottom:741.402253pt;}
.ye7{bottom:741.533360pt;}
.y1c2{bottom:747.675360pt;}
.y1b6{bottom:747.683907pt;}
.y16d{bottom:748.877853pt;}
.y5{bottom:752.147707pt;}
.y1b2{bottom:752.279040pt;}
.y78{bottom:753.722253pt;}
.y1f2{bottom:753.732920pt;}
.y2e{bottom:755.537587pt;}
.y111{bottom:755.650427pt;}
.ydb{bottom:756.853773pt;}
.y1f1{bottom:766.063587pt;}
.y1c3{bottom:769.089013pt;}
.y1b5{bottom:769.097573pt;}
.y2d{bottom:770.876920pt;}
.y1b3{bottom:772.036973pt;}
.yda{bottom:772.981773pt;}
.yd8{bottom:778.394253pt;}
.y1b4{bottom:782.306800pt;}
.y77{bottom:785.055587pt;}
.y2c{bottom:786.216253pt;}
.y110{bottom:786.316427pt;}
.yd7{bottom:790.724920pt;}
.y1c4{bottom:797.821040pt;}
.yd9{bottom:797.877773pt;}
.y4{bottom:799.809080pt;}
.y76{bottom:801.055587pt;}
.y2b{bottom:801.555587pt;}
.y10f{bottom:802.455560pt;}
.yd6{bottom:803.055587pt;}
.y2{bottom:823.215227pt;}
.y74{bottom:835.521333pt;}
.y165{bottom:835.521360pt;}
.y5c{bottom:835.545333pt;}
.y16c{bottom:835.545360pt;}
.y2a{bottom:835.545839pt;}
.y29{bottom:835.545867pt;}
.y27{bottom:835.546667pt;}
.h1c{height:18.559464pt;}
.h14{height:23.682490pt;}
.h13{height:23.695426pt;}
.h1d{height:23.715014pt;}
.hd{height:27.596800pt;}
.h2{height:30.080000pt;}
.h9{height:36.530667pt;}
.h3{height:37.376000pt;}
.hc{height:39.424000pt;}
.h5{height:41.514667pt;}
.hb{height:42.298667pt;}
.h18{height:43.648000pt;}
.h12{height:46.323200pt;}
.ha{height:46.816000pt;}
.h1b{height:46.864000pt;}
.h19{height:46.912000pt;}
.h1a{height:47.008000pt;}
.h17{height:47.152000pt;}
.hf{height:47.224000pt;}
.h11{height:47.253333pt;}
.he{height:47.680000pt;}
.h4{height:48.766452pt;}
.h1e{height:52.448000pt;}
.h15{height:53.037813pt;}
.h16{height:53.061813pt;}
.h10{height:53.205973pt;}
.h7{height:54.775680pt;}
.h8{height:54.799680pt;}
.h6{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xd{left:61.380933pt;}
.x2{left:62.362267pt;}
.xb{left:64.327469pt;}
.x4{left:66.248400pt;}
.x16{left:70.362267pt;}
.xc{left:77.480267pt;}
.x10{left:79.937067pt;}
.xf{left:81.028800pt;}
.x13{left:82.050400pt;}
.x48{left:85.039467pt;}
.x12{left:86.315840pt;}
.x45{left:87.539853pt;}
.x11{left:90.715733pt;}
.x17{left:103.818533pt;}
.x42{left:113.020040pt;}
.x18{left:116.149200pt;}
.x44{left:121.647400pt;}
.x14{left:127.816000pt;}
.x43{left:136.345533pt;}
.x36{left:139.834800pt;}
.x19{left:141.023867pt;}
.x37{left:152.165467pt;}
.x1a{left:153.354533pt;}
.x41{left:159.346107pt;}
.x46{left:165.887160pt;}
.x38{left:167.802800pt;}
.x1b{left:169.482533pt;}
.x39{left:180.133467pt;}
.x1c{left:185.119867pt;}
.x3a{left:195.770800pt;}
.x1d{left:197.450533pt;}
.x1e{left:209.781200pt;}
.x3b{left:211.472133pt;}
.x47{left:216.002813pt;}
.xe{left:221.103627pt;}
.x1f{left:222.111867pt;}
.x20{left:234.442533pt;}
.x21{left:250.079867pt;}
.x5{left:264.774280pt;}
.x22{left:265.717200pt;}
.x6{left:271.420547pt;}
.x3c{left:274.045933pt;}
.x23{left:278.047867pt;}
.x24{left:290.378533pt;}
.x8{left:294.142573pt;}
.x7{left:301.542800pt;}
.x25{left:302.709200pt;}
.x26{left:315.039867pt;}
.x27{left:330.677200pt;}
.x3d{left:334.877253pt;}
.x28{left:346.314533pt;}
.x29{left:358.645200pt;}
.x2a{left:370.975867pt;}
.x3e{left:371.943240pt;}
.x2b{left:383.306533pt;}
.x2c{left:395.637200pt;}
.x3f{left:399.441320pt;}
.x2d{left:407.967867pt;}
.x40{left:414.071053pt;}
.x2e{left:423.605200pt;}
.x1{left:431.874146pt;}
.x2f{left:435.935867pt;}
.x30{left:448.266533pt;}
.x31{left:463.893200pt;}
.x3{left:469.341715pt;}
.x32{left:476.223867pt;}
.x33{left:488.554533pt;}
.x9{left:496.856733pt;}
.x34{left:500.885200pt;}
.xa{left:503.502987pt;}
.x15{left:504.932000pt;}
.x35{left:516.522533pt;}
}


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