
/* 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_c740caaa86c1.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e471e5ec2340.woff")format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_5a00bd967d5d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_336f5336596d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_9ad80033ab2b.woff")format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_bb3be75c08fe.woff")format("woff");}.ff6{font-family:ff6;line-height:0.873047;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_b39868fe26c5.woff")format("woff");}.ff7{font-family:ff7;line-height:0.667000;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_d363891e9e88.woff")format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_d3a7dcf3f40c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.895996;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;}
.m12{transform:matrix(0.000000,-0.245604,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245604,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245604,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250634,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250634,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250634,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250869,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250869,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250869,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.242372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242372,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249367,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);}
.md{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254898,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255219,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256213,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265290,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v6{vertical-align:-35.571414px;}
.v7{vertical-align:-14.795986px;}
.v2{vertical-align:-9.360000px;}
.v3{vertical-align:-6.515661px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.298369px;}
.v4{vertical-align:9.360000px;}
.vb{vertical-align:14.133464px;}
.v5{vertical-align:16.489044px;}
.va{vertical-align:19.887767px;}
.v8{vertical-align:28.574713px;}
.v1{vertical-align:30.240000px;}
.ls11{letter-spacing:-5.798724px;}
.ls15{letter-spacing:-1.594922px;}
.ls12{letter-spacing:-1.350887px;}
.ls3a{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.524400px;}
.ls7{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.414600px;}
.ls3f{letter-spacing:-0.345600px;}
.lsc{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.262200px;}
.ls24{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.178800px;}
.ls41{letter-spacing:-0.138240px;}
.ls8{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.089400px;}
.ls2{letter-spacing:-0.053400px;}
.ls23{letter-spacing:-0.013200px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.008400px;}
.lsb{letter-spacing:0.010647px;}
.lsa{letter-spacing:0.047909px;}
.ls37{letter-spacing:0.053400px;}
.ls40{letter-spacing:0.069120px;}
.lse{letter-spacing:0.089280px;}
.ls20{letter-spacing:0.153360px;}
.ls1e{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.224104px;}
.ls1f{letter-spacing:0.226200px;}
.ls36{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.262200px;}
.ls3e{letter-spacing:0.276480px;}
.ls3c{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.305400px;}
.ls39{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.414720px;}
.ls27{letter-spacing:0.769619px;}
.ls29{letter-spacing:0.834044px;}
.ls2e{letter-spacing:0.842485px;}
.ls32{letter-spacing:0.868709px;}
.ls2c{letter-spacing:0.917574px;}
.ls22{letter-spacing:0.926640px;}
.ls30{letter-spacing:0.982583px;}
.ls2f{letter-spacing:1.011705px;}
.ls2b{letter-spacing:1.013328px;}
.ls31{letter-spacing:1.015970px;}
.ls2a{letter-spacing:1.017411px;}
.ls34{letter-spacing:1.019698px;}
.ls33{letter-spacing:1.025005px;}
.ls35{letter-spacing:1.054346px;}
.ls14{letter-spacing:1.065222px;}
.ls38{letter-spacing:1.338000px;}
.ls1a{letter-spacing:1.491186px;}
.ls17{letter-spacing:1.727433px;}
.ls18{letter-spacing:3.049735px;}
.ls13{letter-spacing:3.675805px;}
.ls3b{letter-spacing:16.560000px;}
.ls28{letter-spacing:41.368234px;}
.ls2d{letter-spacing:41.786943px;}
.ls1c{letter-spacing:144.895052px;}
.ls1b{letter-spacing:301.192214px;}
.lsf{letter-spacing:306.170209px;}
.ls1d{letter-spacing:430.379895px;}
.lsd{letter-spacing:736.139067px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3b{word-spacing:-50.897949px;}
.ws36{word-spacing:-50.387947px;}
.ws27{word-spacing:-34.063200px;}
.ws28{word-spacing:-22.170000px;}
.ws44{word-spacing:-18.720120px;}
.wse{word-spacing:-18.676920px;}
.ws1b{word-spacing:-18.580720px;}
.ws14{word-spacing:-18.466960px;}
.ws10{word-spacing:-18.449139px;}
.ws1{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.109320px;}
.ws20{word-spacing:-18.087203px;}
.ws2a{word-spacing:-17.890320px;}
.ws18{word-spacing:-16.887635px;}
.ws1a{word-spacing:-16.853287px;}
.ws22{word-spacing:-16.819680px;}
.ws45{word-spacing:-16.666680px;}
.ws9{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.559880px;}
.ws1d{word-spacing:-16.524231px;}
.ws0{word-spacing:-16.506480px;}
.ws15{word-spacing:-16.495042px;}
.ws25{word-spacing:-16.353480px;}
.ws5{word-spacing:-16.102200px;}
.ws49{word-spacing:-15.897600px;}
.ws2{word-spacing:-15.840000px;}
.ws35{word-spacing:-15.836668px;}
.ws30{word-spacing:-15.753252px;}
.ws47{word-spacing:-15.690240px;}
.ws48{word-spacing:-15.621120px;}
.ws4a{word-spacing:-15.275520px;}
.ws16{word-spacing:-15.144155px;}
.ws1e{word-spacing:-13.474495px;}
.wsa{word-spacing:-13.318777px;}
.ws19{word-spacing:-13.211830px;}
.ws11{word-spacing:-12.650416px;}
.ws26{word-spacing:-11.835480px;}
.ws12{word-spacing:-11.754644px;}
.ws41{word-spacing:-11.736743px;}
.ws6{word-spacing:-11.609280px;}
.ws46{word-spacing:-11.519880px;}
.ws1f{word-spacing:-11.507047px;}
.ws2b{word-spacing:-11.430480px;}
.ws21{word-spacing:-10.808640px;}
.ws23{word-spacing:-10.795440px;}
.ws3{word-spacing:-10.350600px;}
.ws42{word-spacing:-10.149824px;}
.ws33{word-spacing:-10.052756px;}
.ws2e{word-spacing:-10.050172px;}
.ws3e{word-spacing:-9.394599px;}
.ws43{word-spacing:-9.371065px;}
.ws3a{word-spacing:-9.111006px;}
.ws3d{word-spacing:-9.038448px;}
.ws38{word-spacing:-9.019713px;}
.ws39{word-spacing:-8.957775px;}
.wsb{word-spacing:-8.630567px;}
.ws31{word-spacing:-7.195170px;}
.ws2c{word-spacing:-7.163918px;}
.ws4b{word-spacing:-0.069120px;}
.ws8{word-spacing:0.000000px;}
.ws4d{word-spacing:0.345600px;}
.ws4c{word-spacing:0.552960px;}
.ws40{word-spacing:9.508065px;}
.ws37{word-spacing:11.824929px;}
.ws3c{word-spacing:11.908303px;}
.ws29{word-spacing:19.954080px;}
.wsc{word-spacing:29.704343px;}
.ws3f{word-spacing:30.884676px;}
.wsf{word-spacing:281.302293px;}
.ws13{word-spacing:598.508784px;}
.ws1c{word-spacing:1080.667790px;}
.ws17{word-spacing:1087.475350px;}
.ws34{word-spacing:2013.430266px;}
.ws32{word-spacing:2058.196987px;}
.ws2f{word-spacing:2145.051755px;}
.ws2d{word-spacing:2199.439728px;}
._45{margin-left:-810.307116px;}
._46{margin-left:-806.714866px;}
._4d{margin-left:-761.097185px;}
._4e{margin-left:-757.243552px;}
._26{margin-left:-412.948757px;}
._1f{margin-left:-388.455464px;}
._1c{margin-left:-338.016142px;}
._18{margin-left:-336.549066px;}
._3c{margin-left:-320.865459px;}
._40{margin-left:-315.732181px;}
._22{margin-left:-298.777876px;}
._31{margin-left:-296.915358px;}
._2c{margin-left:-295.049069px;}
._2e{margin-left:-292.474846px;}
._38{margin-left:-290.745008px;}
._3a{margin-left:-288.404251px;}
._1a{margin-left:-286.210643px;}
._2b{margin-left:-283.108605px;}
._3d{margin-left:-281.439678px;}
._37{margin-left:-279.282277px;}
._2d{margin-left:-270.425812px;}
._39{margin-left:-266.994210px;}
._17{margin-left:-265.112497px;}
._19{margin-left:-263.088978px;}
._29{margin-left:-258.235806px;}
._35{margin-left:-254.580268px;}
._4a{margin-left:-247.987583px;}
._50{margin-left:-239.173229px;}
._32{margin-left:-234.122164px;}
._25{margin-left:-227.291756px;}
._24{margin-left:-213.712061px;}
._21{margin-left:-193.634473px;}
._49{margin-left:-160.000739px;}
._4f{margin-left:-150.271470px;}
._1d{margin-left:-143.195644px;}
._15{margin-left:-141.409358px;}
._28{margin-left:-106.553643px;}
._34{margin-left:-105.018375px;}
._1e{margin-left:-98.180917px;}
._16{margin-left:-97.094764px;}
._2a{margin-left:-81.026646px;}
._36{margin-left:-79.554463px;}
._4b{margin-left:-63.607212px;}
._47{margin-left:-58.410209px;}
._23{margin-left:-57.183744px;}
._27{margin-left:-54.819741px;}
._33{margin-left:-53.154032px;}
._48{margin-left:-25.676720px;}
._52{margin-left:-10.785219px;}
._3e{margin-left:-3.578273px;}
._12{margin-left:-2.515638px;}
._1{margin-left:-1.206241px;}
._0{width:1.266240px;}
._2{width:2.511742px;}
._7{width:4.309636px;}
._9{width:6.226825px;}
._a{width:7.644448px;}
._e{width:8.795668px;}
._5{width:10.612586px;}
._6{width:11.945820px;}
._f{width:13.225447px;}
._4{width:15.194048px;}
._3{width:16.760161px;}
._53{width:18.803377px;}
._13{width:19.805826px;}
._10{width:21.159948px;}
._11{width:22.248960px;}
._57{width:23.273181px;}
._8{width:24.310212px;}
._b{width:25.369788px;}
._c{width:26.523595px;}
._56{width:29.045843px;}
._5a{width:32.670307px;}
._59{width:34.312254px;}
._43{width:35.438466px;}
._42{width:36.895812px;}
._44{width:40.809472px;}
._55{width:43.087618px;}
._58{width:50.090880px;}
._54{width:91.822630px;}
._14{width:101.887851px;}
._4c{width:127.745496px;}
._d{width:157.131680px;}
._51{width:220.805542px;}
._2f{width:989.885280px;}
._3b{width:1025.885280px;}
._20{width:1355.645280px;}
._30{width:1385.885280px;}
._1b{width:1583.885280px;}
._3f{width:1655.885280px;}
._41{width:1679.645280px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(40,40,40);}
.fc0{color:rgb(0,0,0);}
.fs30{font-size:2.880000px;}
.fs1{font-size:12.240000px;}
.fs15{font-size:25.769490px;}
.fs18{font-size:25.881906px;}
.fs2c{font-size:28.176870px;}
.fs11{font-size:30.282332px;}
.fs6{font-size:31.045206px;}
.fs1f{font-size:32.222213px;}
.fs1b{font-size:32.445012px;}
.fs25{font-size:32.512403px;}
.fs21{font-size:32.773404px;}
.fs2e{font-size:33.708866px;}
.fs28{font-size:33.793521px;}
.fs1e{font-size:34.899959px;}
.fs20{font-size:35.000990px;}
.fs26{font-size:35.092253px;}
.fs1c{font-size:35.141273px;}
.fs1d{font-size:35.142031px;}
.fs24{font-size:35.214265px;}
.fs22{font-size:35.496956px;}
.fs23{font-size:36.132318px;}
.fs16{font-size:36.151700px;}
.fs19{font-size:36.160994px;}
.fs2f{font-size:36.417779px;}
.fs2d{font-size:36.510157px;}
.fs29{font-size:36.601847px;}
.fs2a{font-size:36.607322px;}
.fs14{font-size:38.880000px;}
.fsf{font-size:41.392257px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:42.129738px;}
.fs2b{font-size:42.218499px;}
.fs9{font-size:42.282892px;}
.fs12{font-size:42.341461px;}
.fsc{font-size:47.524567px;}
.fs5{font-size:47.909269px;}
.fs27{font-size:48.240000px;}
.fse{font-size:48.469408px;}
.fs32{font-size:52.531509px;}
.fs17{font-size:56.666375px;}
.fs33{font-size:56.682873px;}
.fs1a{font-size:56.966433px;}
.fsb{font-size:59.334685px;}
.fs0{font-size:59.760000px;}
.fsd{font-size:60.623334px;}
.fs10{font-size:65.061882px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:66.363811px;}
.fsa{font-size:66.427913px;}
.fs13{font-size:66.600077px;}
.fs31{font-size:67.092457px;}
.fs34{font-size:69.120000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y18a{bottom:0.180000px;}
.y1a2{bottom:0.360000px;}
.y1ca{bottom:1.080000px;}
.y184{bottom:1.348131px;}
.y1c4{bottom:1.350931px;}
.y19c{bottom:1.361188px;}
.y1b1{bottom:1.361776px;}
.y20f{bottom:1.400645px;}
.y1f8{bottom:1.404163px;}
.y1fe{bottom:1.440000px;}
.y1a1{bottom:2.677746px;}
.y1c9{bottom:2.719874px;}
.y1fa{bottom:2.808326px;}
.y112{bottom:3.240000px;}
.ye3{bottom:3.363375px;}
.y106{bottom:3.420000px;}
.ya9{bottom:3.423414px;}
.yad{bottom:3.435290px;}
.y4a{bottom:3.600000px;}
.y22b{bottom:4.031875px;}
.y1b4{bottom:4.103484px;}
.y234{bottom:4.350187px;}
.y110{bottom:4.500000px;}
.y10f{bottom:4.680000px;}
.y18d{bottom:4.712833px;}
.y181{bottom:4.740926px;}
.y1b9{bottom:4.755277px;}
.y1af{bottom:4.788912px;}
.y200{bottom:4.902259px;}
.y1f6{bottom:4.914570px;}
.y223{bottom:5.149492px;}
.y13b{bottom:5.217105px;}
.y128{bottom:5.238887px;}
.yf8{bottom:5.364893px;}
.yc1{bottom:5.397700px;}
.y188{bottom:5.410498px;}
.y216{bottom:5.580000px;}
.y13f{bottom:5.588000px;}
.y1fc{bottom:5.635374px;}
.y21c{bottom:6.120000px;}
.y226{bottom:6.300000px;}
.y224{bottom:6.377437px;}
.y12c{bottom:6.645608px;}
.y212{bottom:7.003227px;}
.y217{bottom:7.380000px;}
.y22e{bottom:7.425000px;}
.y219{bottom:7.560000px;}
.ybc{bottom:7.561201px;}
.yb1{bottom:7.578303px;}
.yd9{bottom:7.736282px;}
.y235{bottom:8.107757px;}
.y22c{bottom:8.266212px;}
.y141{bottom:8.777192px;}
.y12e{bottom:8.802834px;}
.y144{bottom:9.149348px;}
.yfa{bottom:10.101990px;}
.y131{bottom:10.210829px;}
.y47{bottom:11.520000px;}
.y20e{bottom:11.952174px;}
.y46{bottom:12.240000px;}
.ybd{bottom:12.577747px;}
.y19d{bottom:12.763924px;}
.y19a{bottom:13.768435px;}
.yc4{bottom:14.254173px;}
.y137{bottom:14.567694px;}
.y127{bottom:15.152190px;}
.y13a{bottom:15.155575px;}
.y1c2{bottom:15.243364px;}
.y124{bottom:15.589242px;}
.ye5{bottom:16.106510px;}
.y18c{bottom:16.111106px;}
.y1b8{bottom:16.256202px;}
.y1c8{bottom:16.274214px;}
.y69{bottom:16.333667px;}
.yaf{bottom:16.471157px;}
.y140{bottom:16.827126px;}
.y136{bottom:17.261098px;}
.y12d{bottom:17.872614px;}
.y123{bottom:18.309666px;}
.yc2{bottom:18.397186px;}
.y211{bottom:18.955401px;}
.yf9{bottom:18.965040px;}
.yf3{bottom:19.466529px;}
.y13d{bottom:19.520529px;}
.y17f{bottom:19.929865px;}
.y1ad{bottom:20.131676px;}
.ye7{bottom:20.208752px;}
.y143{bottom:20.388474px;}
.y12a{bottom:20.561184px;}
.yb2{bottom:20.614170px;}
.y49{bottom:20.700000px;}
.y8b{bottom:21.350832px;}
.y130{bottom:21.405980px;}
.yf4{bottom:22.121643px;}
.y1f4{bottom:22.162091px;}
.y187{bottom:22.307069px;}
.yfc{bottom:23.127545px;}
.yc6{bottom:23.826615px;}
.yc5{bottom:25.540865px;}
.y13c{bottom:25.930452px;}
.y138{bottom:26.765596px;}
.ye4{bottom:27.034480px;}
.y18f{bottom:27.201796px;}
.y129{bottom:27.661045px;}
.yae{bottom:27.721468px;}
.y125{bottom:27.754062px;}
.y1bb{bottom:28.797704px;}
.y142{bottom:29.490538px;}
.y1a0{bottom:29.544466px;}
.yc3{bottom:29.683878px;}
.y1c7{bottom:29.810542px;}
.y132{bottom:30.412050px;}
.yf5{bottom:30.589935px;}
.ye6{bottom:31.101217px;}
.y12f{bottom:31.194411px;}
.yb0{bottom:31.900861px;}
.y174{bottom:32.782045px;}
.y1a4{bottom:33.113939px;}
.yfb{bottom:33.604717px;}
.y183{bottom:35.160147px;}
.y203{bottom:35.460047px;}
.y1ea{bottom:35.548444px;}
.y186{bottom:38.529575px;}
.y13e{bottom:40.016890px;}
.y139{bottom:40.389046px;}
.y12b{bottom:40.982842px;}
.yf7{bottom:41.175300px;}
.y126{bottom:42.389562px;}
.y190{bottom:42.643465px;}
.y19f{bottom:42.977827px;}
.y1c6{bottom:43.364882px;}
.yf6{bottom:45.804204px;}
.y6a{bottom:48.228597px;}
.y175{bottom:50.352681px;}
.y1bc{bottom:53.857472px;}
.y1a5{bottom:54.970441px;}
.y204{bottom:55.139115px;}
.y1eb{bottom:55.276933px;}
.y3{bottom:56.520000px;}
.y84{bottom:56.716523px;}
.y191{bottom:58.085135px;}
.y238{bottom:63.900000px;}
.y176{bottom:67.945787px;}
.y192{bottom:73.526805px;}
.y1ec{bottom:74.982020px;}
.y205{bottom:75.518506px;}
.y1a6{bottom:76.826943px;}
.y1bd{bottom:79.615221px;}
.y177{bottom:85.516423px;}
.y193{bottom:88.967582px;}
.y1ed{bottom:94.706765px;}
.y206{bottom:95.173296px;}
.y71{bottom:99.152823px;}
.y1a7{bottom:99.363424px;}
.y75{bottom:100.037814px;}
.y178{bottom:103.083465px;}
.y194{bottom:104.409252px;}
.y1be{bottom:104.674088px;}
.y79{bottom:107.643410px;}
.ya7{bottom:110.916000px;}
.y159{bottom:114.336000px;}
.y74{bottom:114.410594px;}
.y1ee{bottom:114.411851px;}
.y1e8{bottom:115.236000px;}
.y207{bottom:115.557356px;}
.y147{bottom:117.216000px;}
.ye2{bottom:117.997788px;}
.y195{bottom:119.181485px;}
.y39{bottom:120.096000px;}
.y179{bottom:120.681064px;}
.y1a8{bottom:121.224465px;}
.y23b{bottom:122.436000px;}
.ya6{bottom:129.816000px;}
.y1bf{bottom:130.413825px;}
.y158{bottom:133.236000px;}
.y1e7{bottom:134.136000px;}
.y1ef{bottom:134.145021px;}
.y73{bottom:134.193130px;}
.y196{bottom:134.623155px;}
.y208{bottom:135.213080px;}
.y146{bottom:136.116000px;}
.y7c{bottom:137.347157px;}
.y172{bottom:137.736000px;}
.ye8{bottom:137.916000px;}
.y17a{bottom:138.925766px;}
.y38{bottom:139.176000px;}
.y23a{bottom:141.336000px;}
.y1a9{bottom:143.076428px;}
.y64{bottom:146.916000px;}
.ya5{bottom:148.716000px;}
.y197{bottom:150.064825px;}
.y135{bottom:151.609430px;}
.y157{bottom:152.130000px;}
.y1e6{bottom:153.030000px;}
.y1f0{bottom:153.850108px;}
.y171{bottom:155.010000px;}
.y1c0{bottom:155.496108px;}
.y209{bottom:155.587802px;}
.y68{bottom:155.625874px;}
.y17b{bottom:156.496403px;}
.y37{bottom:158.070000px;}
.y239{bottom:160.410000px;}
.y1aa{bottom:164.937469px;}
.y198{bottom:165.506494px;}
.y63{bottom:165.810000px;}
.ya4{bottom:167.790000px;}
.ye1{bottom:168.330000px;}
.y67{bottom:169.998654px;}
.y1e5{bottom:170.310000px;}
.y156{bottom:171.210000px;}
.y170{bottom:172.290000px;}
.y1f1{bottom:173.573916px;}
.y17c{bottom:174.085015px;}
.y20a{bottom:175.271539px;}
.y145{bottom:175.350000px;}
.y214{bottom:175.710000px;}
.y36{bottom:177.150000px;}
.y199{bottom:180.948164px;}
.y1c1{bottom:181.226839px;}
.y62{bottom:184.710000px;}
.ya3{bottom:186.690000px;}
.ye0{bottom:187.410000px;}
.y1ab{bottom:187.470319px;}
.y16f{bottom:189.390000px;}
.y155{bottom:190.110000px;}
.y17d{bottom:191.655651px;}
.y1f2{bottom:193.279003px;}
.y20b{bottom:195.627586px;}
.y35{bottom:196.050000px;}
.y237{bottom:196.950000px;}
.y7d{bottom:200.970666px;}
.y1fd{bottom:201.090000px;}
.y202{bottom:202.862032px;}
.y189{bottom:203.070000px;}
.y61{bottom:203.790000px;}
.y1e9{bottom:204.407315px;}
.y173{bottom:205.015213px;}
.y18e{bottom:205.185190px;}
.ya2{bottom:205.770000px;}
.y7b{bottom:205.953230px;}
.y1f5{bottom:206.162238px;}
.ydf{bottom:206.310000px;}
.y180{bottom:206.700376px;}
.y210{bottom:208.138170px;}
.y154{bottom:209.190000px;}
.y17e{bottom:209.226288px;}
.y1ac{bottom:209.331360px;}
.y134{bottom:209.370000px;}
.y1f3{bottom:213.012173px;}
.y34{bottom:214.950000px;}
.y20c{bottom:215.301985px;}
.y236{bottom:218.370000px;}
.y83{bottom:220.043878px;}
.y7a{bottom:220.326010px;}
.y60{bottom:222.690000px;}
.ya1{bottom:224.850000px;}
.yde{bottom:225.390000px;}
.y153{bottom:228.090000px;}
.y33{bottom:234.030000px;}
.y232{bottom:239.610000px;}
.y233{bottom:241.444005px;}
.y5f{bottom:241.770000px;}
.ya0{bottom:243.570000px;}
.ydd{bottom:244.290000px;}
.y122{bottom:246.181564px;}
.y152{bottom:246.990000px;}
.y32{bottom:252.930000px;}
.y19b{bottom:260.570265px;}
.y5e{bottom:260.670000px;}
.y231{bottom:260.850000px;}
.y9f{bottom:262.650000px;}
.ydc{bottom:263.190000px;}
.y6d{bottom:264.859006px;}
.y133{bottom:265.170000px;}
.y151{bottom:266.070000px;}
.y182{bottom:268.220073px;}
.y72{bottom:271.273525px;}
.y31{bottom:272.010000px;}
.y89{bottom:274.573941px;}
.y6c{bottom:279.231787px;}
.y5d{bottom:279.570000px;}
.y9e{bottom:281.550000px;}
.y230{bottom:282.090000px;}
.ydb{bottom:282.270000px;}
.y150{bottom:284.970000px;}
.y30{bottom:290.910000px;}
.y6b{bottom:293.604568px;}
.y20d{bottom:297.335005px;}
.y5c{bottom:298.650000px;}
.yd8{bottom:298.828111px;}
.y9d{bottom:300.630000px;}
.y82{bottom:302.867026px;}
.y22f{bottom:303.510000px;}
.y14f{bottom:303.870000px;}
.y121{bottom:305.670000px;}
.yda{bottom:306.750000px;}
.y91{bottom:306.816879px;}
.y7e{bottom:308.479065px;}
.y1fb{bottom:309.673385px;}
.y2f{bottom:309.810000px;}
.y78{bottom:310.133265px;}
.y1f7{bottom:314.606677px;}
.y5b{bottom:317.550000px;}
.y9c{bottom:319.530000px;}
.y14e{bottom:321.150000px;}
.y77{bottom:324.506046px;}
.y120{bottom:324.750000px;}
.yd7{bottom:325.650000px;}
.y2e{bottom:328.935000px;}
.y19e{bottom:331.757255px;}
.y5a{bottom:336.675000px;}
.y9b{bottom:338.475000px;}
.y76{bottom:338.878827px;}
.y185{bottom:342.592848px;}
.y11f{bottom:343.695000px;}
.yd6{bottom:344.775000px;}
.y22d{bottom:346.035000px;}
.y7f{bottom:346.662752px;}
.y2d{bottom:347.835000px;}
.y14d{bottom:352.155000px;}
.y59{bottom:355.575000px;}
.y9a{bottom:357.555000px;}
.y11e{bottom:362.595000px;}
.yd5{bottom:363.675000px;}
.y2c{bottom:366.915000px;}
.y229{bottom:367.455000px;}
.y22a{bottom:368.586282px;}
.y58{bottom:374.475000px;}
.y99{bottom:376.635000px;}
.y90{bottom:379.255694px;}
.y11d{bottom:381.675000px;}
.yd4{bottom:382.575000px;}
.y2b{bottom:385.815000px;}
.y1ff{bottom:387.256442px;}
.y88{bottom:387.746281px;}
.y228{bottom:388.695000px;}
.y57{bottom:393.555000px;}
.y98{bottom:395.535000px;}
.y1f9{bottom:395.580073px;}
.y70{bottom:397.423953px;}
.y18b{bottom:397.558405px;}
.y11c{bottom:400.575000px;}
.yd3{bottom:401.655000px;}
.y201{bottom:402.009907px;}
.y2a{bottom:404.715000px;}
.y8f{bottom:409.368000px;}
.y227{bottom:409.935000px;}
.y6f{bottom:411.796734px;}
.y56{bottom:412.455000px;}
.y97{bottom:414.435000px;}
.y81{bottom:414.643343px;}
.yd2{bottom:420.555000px;}
.y11b{bottom:420.915000px;}
.y8e{bottom:422.686777px;}
.y29{bottom:423.795000px;}
.y6e{bottom:426.169514px;}
.y225{bottom:431.355000px;}
.y55{bottom:431.535000px;}
.y222{bottom:432.207011px;}
.y96{bottom:433.335000px;}
.y16e{bottom:439.275000px;}
.yd1{bottom:439.635000px;}
.y11a{bottom:439.815000px;}
.y87{bottom:441.497819px;}
.y28{bottom:442.695000px;}
.y1e4{bottom:448.995000px;}
.y54{bottom:450.435000px;}
.y95{bottom:450.615000px;}
.y221{bottom:452.595000px;}
.y16d{bottom:458.175000px;}
.y86{bottom:458.472339px;}
.yd0{bottom:458.535000px;}
.y119{bottom:458.715000px;}
.y27{bottom:461.775000px;}
.y1e3{bottom:463.755000px;}
.y94{bottom:467.895000px;}
.y53{bottom:469.335000px;}
.y220{bottom:473.835000px;}
.y16c{bottom:477.255000px;}
.ycf{bottom:477.435000px;}
.y8d{bottom:477.542889px;}
.y118{bottom:477.795000px;}
.y66{bottom:479.995789px;}
.y26{bottom:480.675000px;}
.y93{bottom:481.575000px;}
.y1e2{bottom:482.655000px;}
.y52{bottom:488.415000px;}
.y80{bottom:491.010717px;}
.y8c{bottom:491.915670px;}
.y21f{bottom:495.255000px;}
.y16b{bottom:496.155000px;}
.yce{bottom:496.515000px;}
.y117{bottom:496.695000px;}
.y25{bottom:499.755000px;}
.y1e1{bottom:501.735000px;}
.y51{bottom:507.315000px;}
.y85{bottom:515.058508px;}
.y16a{bottom:515.235000px;}
.ycd{bottom:515.415000px;}
.y116{bottom:515.775000px;}
.y21e{bottom:516.495000px;}
.y24{bottom:518.655000px;}
.y1e0{bottom:520.635000px;}
.y92{bottom:523.549095px;}
.y50{bottom:526.395000px;}
.y8a{bottom:530.622367px;}
.y169{bottom:534.135000px;}
.ycc{bottom:534.495000px;}
.y115{bottom:534.675000px;}
.y23{bottom:537.555000px;}
.y21d{bottom:537.735000px;}
.y1df{bottom:539.535000px;}
.y4f{bottom:545.295000px;}
.y168{bottom:553.215000px;}
.ycb{bottom:553.395000px;}
.y114{bottom:553.575000px;}
.y22{bottom:556.815000px;}
.y1de{bottom:558.615000px;}
.y21b{bottom:559.155000px;}
.y4e{bottom:564.195000px;}
.y113{bottom:569.775000px;}
.y167{bottom:572.115000px;}
.yca{bottom:572.475000px;}
.y21{bottom:575.535000px;}
.y1dd{bottom:577.515000px;}
.y21a{bottom:580.395000px;}
.y4d{bottom:583.275000px;}
.y111{bottom:587.775000px;}
.y166{bottom:591.015000px;}
.yc9{bottom:591.375000px;}
.y20{bottom:594.615000px;}
.y1dc{bottom:596.625000px;}
.y218{bottom:601.665000px;}
.y4c{bottom:602.205000px;}
.y10e{bottom:605.805000px;}
.y165{bottom:610.125000px;}
.yc8{bottom:610.305000px;}
.y1f{bottom:613.545000px;}
.y1db{bottom:615.525000px;}
.y4b{bottom:621.285000px;}
.y215{bottom:623.085000px;}
.yc0{bottom:625.008501px;}
.y164{bottom:629.025000px;}
.y1e{bottom:632.445000px;}
.y10d{bottom:632.985000px;}
.y1da{bottom:634.425000px;}
.y48{bottom:636.585000px;}
.yc7{bottom:643.605000px;}
.y163{bottom:648.105000px;}
.y10c{bottom:650.265000px;}
.y1d{bottom:651.525000px;}
.y1d9{bottom:653.505000px;}
.y162{bottom:667.005000px;}
.y213{bottom:667.185000px;}
.y10b{bottom:669.165000px;}
.y1c{bottom:670.425000px;}
.y45{bottom:670.965000px;}
.y1d8{bottom:672.405000px;}
.ybf{bottom:678.885000px;}
.y161{bottom:685.905000px;}
.y10a{bottom:688.245000px;}
.y1b{bottom:689.505000px;}
.y1d7{bottom:691.485000px;}
.ybb{bottom:695.786715px;}
.ybe{bottom:703.185000px;}
.y160{bottom:704.985000px;}
.y109{bottom:707.145000px;}
.y1a{bottom:708.405000px;}
.y1d6{bottom:710.385000px;}
.y15f{bottom:723.885000px;}
.yba{bottom:724.785000px;}
.y108{bottom:726.225000px;}
.y19{bottom:727.305000px;}
.y1d5{bottom:729.465000px;}
.y107{bottom:742.245000px;}
.y15e{bottom:742.965000px;}
.yb9{bottom:743.865000px;}
.y18{bottom:746.385000px;}
.y1d4{bottom:748.365000px;}
.y105{bottom:760.245000px;}
.y15d{bottom:761.865000px;}
.yb8{bottom:762.765000px;}
.y17{bottom:765.285000px;}
.y1d3{bottom:767.265000px;}
.y104{bottom:778.245000px;}
.y15c{bottom:780.765000px;}
.yb7{bottom:781.665000px;}
.y16{bottom:784.365000px;}
.y1d2{bottom:786.345000px;}
.y15b{bottom:799.845000px;}
.yb6{bottom:800.745000px;}
.y15{bottom:803.265000px;}
.y103{bottom:804.345000px;}
.y1d1{bottom:805.245000px;}
.y15a{bottom:818.745000px;}
.yb5{bottom:819.645000px;}
.y102{bottom:821.625000px;}
.y14{bottom:822.165000px;}
.y1d0{bottom:824.325000px;}
.y14c{bottom:837.825000px;}
.yb4{bottom:838.725000px;}
.y101{bottom:840.525000px;}
.y13{bottom:841.245000px;}
.y1cf{bottom:843.225000px;}
.yac{bottom:854.202153px;}
.y14b{bottom:856.725000px;}
.y100{bottom:859.605000px;}
.y12{bottom:860.145000px;}
.y1ce{bottom:862.125000px;}
.yb3{bottom:875.130000px;}
.y14a{bottom:875.670000px;}
.yff{bottom:878.550000px;}
.y11{bottom:879.450000px;}
.y1cd{bottom:881.070000px;}
.y149{bottom:894.750000px;}
.yfe{bottom:897.630000px;}
.y10{bottom:898.170000px;}
.y1cc{bottom:898.350000px;}
.yab{bottom:907.170000px;}
.yf2{bottom:913.498146px;}
.y44{bottom:913.650000px;}
.y1cb{bottom:915.630000px;}
.yf{bottom:917.070000px;}
.ya8{bottom:923.833029px;}
.y1b6{bottom:929.310000px;}
.y1a3{bottom:930.909390px;}
.yaa{bottom:931.470000px;}
.y1ba{bottom:932.025169px;}
.y1ae{bottom:932.611700px;}
.y43{bottom:932.730000px;}
.ye{bottom:936.510000px;}
.yfd{bottom:936.870000px;}
.y42{bottom:951.630000px;}
.y23d{bottom:951.810000px;}
.yd{bottom:955.410000px;}
.y41{bottom:970.530000px;}
.yc{bottom:974.130000px;}
.y244{bottom:974.854080px;}
.yf1{bottom:978.090000px;}
.y1c3{bottom:984.531709px;}
.y40{bottom:989.610000px;}
.yb{bottom:993.030000px;}
.yf0{bottom:996.990000px;}
.y243{bottom:999.149760px;}
.y3f{bottom:1008.510000px;}
.ya{bottom:1011.930000px;}
.y1b0{bottom:1014.567908px;}
.y1b2{bottom:1015.929684px;}
.yef{bottom:1016.070000px;}
.y3e{bottom:1027.590000px;}
.y242{bottom:1029.216960px;}
.y9{bottom:1031.010000px;}
.yee{bottom:1034.970000px;}
.y3d{bottom:1046.490000px;}
.y241{bottom:1050.281280px;}
.y8{bottom:1050.990000px;}
.yed{bottom:1053.870000px;}
.y1c5{bottom:1063.114459px;}
.y65{bottom:1065.570000px;}
.y3c{bottom:1065.750000px;}
.yec{bottom:1073.130000px;}
.y7{bottom:1075.110000px;}
.y240{bottom:1080.348480px;}
.y1b3{bottom:1082.183708px;}
.y3b{bottom:1084.470000px;}
.yeb{bottom:1091.850000px;}
.y6{bottom:1099.230000px;}
.y23f{bottom:1101.412800px;}
.y3a{bottom:1103.370000px;}
.ye9{bottom:1107.327153px;}
.y5{bottom:1122.450000px;}
.y23c{bottom:1122.630000px;}
.y1b7{bottom:1126.130882px;}
.y1b5{bottom:1127.258487px;}
.yea{bottom:1128.210000px;}
.y23e{bottom:1131.480000px;}
.y4{bottom:1141.380000px;}
.y148{bottom:1141.560000px;}
.y2{bottom:1189.980000px;}
.y1{bottom:1196.100000px;}
.h69{height:2.098125px;}
.h3{height:8.917031px;}
.h4d{height:12.982263px;}
.h5d{height:15.492598px;}
.h39{height:15.548441px;}
.h48{height:15.705814px;}
.h61{height:16.154111px;}
.h59{height:16.194679px;}
.h2a{height:17.100000px;}
.h29{height:17.136000px;}
.h27{height:17.280000px;}
.h5f{height:18.300924px;}
.h28{height:18.360000px;}
.h70{height:18.773245px;}
.h2c{height:18.773476px;}
.h32{height:18.855373px;}
.h73{height:19.405995px;}
.h6d{height:20.387989px;}
.h6a{height:21.240000px;}
.h6c{height:21.276000px;}
.h6b{height:21.420000px;}
.h22{height:22.061152px;}
.h1c{height:22.995790px;}
.h42{height:23.474385px;}
.h38{height:23.636698px;}
.h52{height:23.685794px;}
.h47{height:23.875937px;}
.h11{height:24.235235px;}
.h16{height:24.443815px;}
.h64{height:24.557436px;}
.h58{height:24.619108px;}
.h40{height:25.425165px;}
.h44{height:25.498768px;}
.h54{height:25.565255px;}
.h3a{height:25.600967px;}
.h3c{height:25.601519px;}
.h50{height:25.654142px;}
.h49{height:25.860087px;}
.h4b{height:26.322958px;}
.h2e{height:26.337078px;}
.h34{height:26.343849px;}
.h66{height:26.530921px;}
.h62{height:26.598220px;}
.h5a{height:26.665018px;}
.h5c{height:26.669006px;}
.h3f{height:26.866720px;}
.h4f{height:27.108680px;}
.h67{height:28.082941px;}
.h1f{height:30.154906px;}
.h5e{height:30.756836px;}
.h14{height:30.803747px;}
.h23{height:30.846416px;}
.h24{height:33.144785px;}
.hb{height:34.380000px;}
.hf{height:34.879258px;}
.he{height:34.902651px;}
.h72{height:35.038517px;}
.h56{height:35.143594px;}
.h71{height:35.576759px;}
.h75{height:37.807477px;}
.h74{height:38.388255px;}
.h18{height:39.576235px;}
.h30{height:41.282339px;}
.h36{height:41.500937px;}
.h17{height:43.226245px;}
.hc{height:43.506914px;}
.h2{height:43.536094px;}
.h1d{height:44.165046px;}
.h1b{height:44.307418px;}
.h6f{height:44.750669px;}
.h10{height:44.860781px;}
.h6e{height:45.438104px;}
.h8{height:45.992812px;}
.h33{height:46.155189px;}
.h2d{height:46.224845px;}
.h20{height:47.398597px;}
.h1e{height:47.464325px;}
.h19{height:47.915610px;}
.h9{height:48.224531px;}
.h4{height:48.256875px;}
.h6{height:48.289219px;}
.h15{height:48.393773px;}
.h26{height:48.519197px;}
.h13{height:48.607522px;}
.h3d{height:49.341583px;}
.h78{height:49.612500px;}
.h5b{height:49.988201px;}
.h31{height:51.937377px;}
.h45{height:52.372253px;}
.h55{height:52.866429px;}
.h2b{height:53.897021px;}
.h2f{height:55.415804px;}
.h35{height:55.746330px;}
.h7{height:59.235469px;}
.h21{height:59.296305px;}
.h1a{height:59.378460px;}
.h76{height:60.863203px;}
.h5{height:61.329023px;}
.h12{height:64.836117px;}
.h25{height:65.169216px;}
.h4c{height:89.468671px;}
.h65{height:96.943338px;}
.h4a{height:101.071001px;}
.h43{height:114.830683px;}
.h53{height:122.619494px;}
.h3b{height:127.110749px;}
.h41{height:222.554810px;}
.h37{height:222.724787px;}
.h51{height:224.592621px;}
.h3e{height:224.670000px;}
.h46{height:225.718970px;}
.h4e{height:227.370000px;}
.h57{height:229.561637px;}
.h63{height:232.797968px;}
.h60{height:234.570000px;}
.ha{height:239.070000px;}
.h68{height:468.615000px;}
.hd{height:544.056924px;}
.h77{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3b{width:9.193118px;}
.w3c{width:9.886692px;}
.w3a{width:13.305435px;}
.w22{width:18.043056px;}
.w2b{width:18.280255px;}
.w2f{width:20.327827px;}
.w1d{width:31.666496px;}
.w18{width:31.726693px;}
.w27{width:31.749065px;}
.w31{width:32.925025px;}
.w2c{width:34.453950px;}
.w2d{width:34.477356px;}
.w1e{width:40.416744px;}
.w28{width:40.544566px;}
.w38{width:48.780000px;}
.w32{width:50.481934px;}
.w33{width:51.157200px;}
.w19{width:51.971559px;}
.w3f{width:54.036000px;}
.w17{width:57.386667px;}
.w21{width:59.003797px;}
.w2a{width:59.779476px;}
.w13{width:84.060000px;}
.w11{width:84.096000px;}
.w10{width:84.240000px;}
.w12{width:84.276000px;}
.w23{width:84.670680px;}
.wf{width:97.200000px;}
.w25{width:108.076959px;}
.w1b{width:112.522363px;}
.w24{width:119.393745px;}
.we{width:121.140000px;}
.wd{width:121.176000px;}
.w37{width:121.500000px;}
.wc{width:155.930819px;}
.wa{width:162.272513px;}
.wb{width:162.898206px;}
.w5{width:182.798721px;}
.w1c{width:186.624212px;}
.w26{width:189.103275px;}
.w39{width:194.250000px;}
.w30{width:195.547649px;}
.w1f{width:198.030000px;}
.w34{width:202.350000px;}
.w8{width:229.127541px;}
.w6{width:236.944760px;}
.w36{width:243.030000px;}
.w40{width:243.930000px;}
.w3e{width:297.975000px;}
.w3{width:306.075000px;}
.w3d{width:315.795000px;}
.w9{width:319.792377px;}
.w7{width:333.471498px;}
.w35{width:380.775000px;}
.w2{width:386.175000px;}
.w16{width:436.803762px;}
.w29{width:455.016838px;}
.w20{width:472.658766px;}
.w2e{width:476.205000px;}
.w1a{width:485.205000px;}
.w15{width:585.537490px;}
.w14{width:617.581823px;}
.w4{width:670.836876px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9d{left:1.348160px;}
.x4d{left:2.887077px;}
.x8d{left:7.806751px;}
.x69{left:9.000000px;}
.x4c{left:10.488644px;}
.x6b{left:12.240000px;}
.xd{left:14.256000px;}
.x67{left:16.200000px;}
.x37{left:18.333724px;}
.xaa{left:20.737907px;}
.x36{left:21.935766px;}
.x60{left:24.300000px;}
.x70{left:27.540000px;}
.xf{left:29.190000px;}
.x5b{left:30.780000px;}
.x6f{left:32.985000px;}
.x50{left:34.441989px;}
.x5d{left:35.460000px;}
.x9b{left:36.804761px;}
.x71{left:38.025000px;}
.xab{left:41.148128px;}
.x63{left:45.900000px;}
.x61{left:49.680000px;}
.x62{left:51.330000px;}
.x56{left:52.463607px;}
.x4a{left:53.658518px;}
.x57{left:55.097692px;}
.x64{left:56.340000px;}
.x49{left:57.825679px;}
.x4b{left:74.454108px;}
.x58{left:85.060967px;}
.x45{left:88.174492px;}
.x51{left:92.391568px;}
.x54{left:93.452267px;}
.x9{left:98.280000px;}
.x1{left:106.416000px;}
.x55{left:109.098668px;}
.x10{left:111.015428px;}
.x97{left:112.896000px;}
.x99{left:114.516000px;}
.xa9{left:116.496000px;}
.x94{left:119.002435px;}
.x3d{left:120.276000px;}
.x65{left:122.616000px;}
.x8{left:124.776000px;}
.x93{left:129.463896px;}
.x1f{left:131.998146px;}
.x44{left:134.842956px;}
.x53{left:136.082801px;}
.x3{left:140.256000px;}
.x20{left:142.484089px;}
.x42{left:144.029896px;}
.x4{left:145.656000px;}
.x7e{left:147.007129px;}
.x6{left:148.536000px;}
.x21{left:150.168444px;}
.xb4{left:155.190000px;}
.x26{left:157.197762px;}
.x7{left:160.230000px;}
.xe{left:162.570000px;}
.x25{left:168.916403px;}
.x8c{left:170.804891px;}
.x7d{left:177.174732px;}
.x31{left:179.218242px;}
.x2f{left:182.700216px;}
.x2e{left:183.880885px;}
.x2c{left:185.661894px;}
.x30{left:186.715825px;}
.x48{left:187.801464px;}
.xa3{left:190.665000px;}
.x66{left:192.090000px;}
.x81{left:193.230644px;}
.x43{left:194.652024px;}
.x40{left:200.140326px;}
.x7c{left:202.243586px;}
.x41{left:204.942591px;}
.x7b{left:208.526893px;}
.x1e{left:210.569344px;}
.x22{left:214.398181px;}
.xad{left:232.318628px;}
.x5a{left:241.590000px;}
.x24{left:263.962272px;}
.x23{left:268.957103px;}
.x68{left:277.050000px;}
.x92{left:284.061185px;}
.x98{left:290.370000px;}
.x8b{left:294.905147px;}
.x80{left:295.991054px;}
.xac{left:298.445869px;}
.x3e{left:306.075000px;}
.x18{left:307.808456px;}
.x17{left:309.825600px;}
.x9c{left:311.000773px;}
.x4f{left:314.436426px;}
.x19{left:317.798118px;}
.x59{left:321.015000px;}
.x7a{left:324.021302px;}
.x52{left:326.955000px;}
.xc{left:328.935000px;}
.x91{left:330.927191px;}
.x8a{left:335.512049px;}
.x5c{left:337.035000px;}
.x3f{left:344.955000px;}
.x89{left:349.923443px;}
.x79{left:350.944246px;}
.x6a{left:361.875000px;}
.x90{left:365.223474px;}
.x78{left:367.502308px;}
.x5{left:370.155000px;}
.x88{left:373.195460px;}
.xa{left:377.355000px;}
.x87{left:378.411380px;}
.x7f{left:383.532468px;}
.x9a{left:387.075000px;}
.x77{left:392.532534px;}
.x4e{left:394.455000px;}
.x76{left:398.815842px;}
.x46{left:402.015000px;}
.x3a{left:408.241379px;}
.x39{left:410.130449px;}
.x38{left:412.003511px;}
.x9e{left:426.448187px;}
.x2{left:438.195000px;}
.xa4{left:441.761477px;}
.x3c{left:446.655000px;}
.x34{left:449.237948px;}
.x5e{left:458.895000px;}
.x8f{left:463.810799px;}
.xae{left:467.385000px;}
.x86{left:474.654761px;}
.xb5{left:479.055000px;}
.xb{left:484.455000px;}
.x2b{left:487.072725px;}
.x33{left:490.301221px;}
.x47{left:493.455000px;}
.x16{left:496.344646px;}
.x12{left:498.636612px;}
.x11{left:504.976205px;}
.x29{left:507.984577px;}
.x8e{left:510.689684px;}
.x75{left:514.451883px;}
.x35{left:515.895727px;}
.x1a{left:520.328906px;}
.x1c{left:524.027002px;}
.x1b{left:525.035574px;}
.x85{left:529.685935px;}
.x6c{left:531.825000px;}
.x27{left:534.643686px;}
.x28{left:536.660830px;}
.x74{left:541.400578px;}
.x1d{left:549.641520px;}
.x84{left:552.945074px;}
.x15{left:557.052387px;}
.xa5{left:561.051088px;}
.x83{left:567.446619px;}
.xb3{left:574.485000px;}
.x2d{left:575.629583px;}
.xb0{left:577.956026px;}
.x5f{left:580.785000px;}
.x73{left:582.950239px;}
.xa0{left:585.140794px;}
.xa1{left:586.819239px;}
.xa7{left:591.539925px;}
.x2a{left:593.521056px;}
.x72{left:598.465374px;}
.x14{left:602.422101px;}
.x13{left:607.080741px;}
.x6d{left:616.605000px;}
.x9f{left:619.828484px;}
.xa6{left:623.288991px;}
.xb2{left:627.716124px;}
.x32{left:641.393522px;}
.x95{left:694.725000px;}
.xb1{left:699.201151px;}
.x6e{left:701.565000px;}
.xaf{left:706.214601px;}
.x82{left:726.990000px;}
.xa2{left:729.665350px;}
.xa8{left:730.674874px;}
.x3b{left:783.150000px;}
.x96{left:790.890000px;}
@media print{
.v6{vertical-align:-31.619035pt;}
.v7{vertical-align:-13.151987pt;}
.v2{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.791698pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.042995pt;}
.v4{vertical-align:8.320000pt;}
.vb{vertical-align:12.563079pt;}
.v5{vertical-align:14.656928pt;}
.va{vertical-align:17.678015pt;}
.v8{vertical-align:25.399745pt;}
.v1{vertical-align:26.880000pt;}
.ls11{letter-spacing:-5.154421pt;}
.ls15{letter-spacing:-1.417708pt;}
.ls12{letter-spacing:-1.200789pt;}
.ls3a{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.466133pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls3f{letter-spacing:-0.307200pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.158933pt;}
.ls41{letter-spacing:-0.122880pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:-0.047467pt;}
.ls23{letter-spacing:-0.011733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.007467pt;}
.lsb{letter-spacing:0.009464pt;}
.lsa{letter-spacing:0.042586pt;}
.ls37{letter-spacing:0.047467pt;}
.ls40{letter-spacing:0.061440pt;}
.lse{letter-spacing:0.079360pt;}
.ls20{letter-spacing:0.136320pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.199204pt;}
.ls1f{letter-spacing:0.201067pt;}
.ls36{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.233067pt;}
.ls3e{letter-spacing:0.245760pt;}
.ls3c{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.271467pt;}
.ls39{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.368640pt;}
.ls27{letter-spacing:0.684106pt;}
.ls29{letter-spacing:0.741372pt;}
.ls2e{letter-spacing:0.748876pt;}
.ls32{letter-spacing:0.772186pt;}
.ls2c{letter-spacing:0.815622pt;}
.ls22{letter-spacing:0.823680pt;}
.ls30{letter-spacing:0.873407pt;}
.ls2f{letter-spacing:0.899293pt;}
.ls2b{letter-spacing:0.900736pt;}
.ls31{letter-spacing:0.903085pt;}
.ls2a{letter-spacing:0.904366pt;}
.ls34{letter-spacing:0.906398pt;}
.ls33{letter-spacing:0.911116pt;}
.ls35{letter-spacing:0.937196pt;}
.ls14{letter-spacing:0.946864pt;}
.ls38{letter-spacing:1.189333pt;}
.ls1a{letter-spacing:1.325499pt;}
.ls17{letter-spacing:1.535496pt;}
.ls18{letter-spacing:2.710876pt;}
.ls13{letter-spacing:3.267382pt;}
.ls3b{letter-spacing:14.720000pt;}
.ls28{letter-spacing:36.771763pt;}
.ls2d{letter-spacing:37.143949pt;}
.ls1c{letter-spacing:128.795602pt;}
.ls1b{letter-spacing:267.726412pt;}
.lsf{letter-spacing:272.151297pt;}
.ls1d{letter-spacing:382.559907pt;}
.lsd{letter-spacing:654.345838pt;}
.ws3b{word-spacing:-45.242622pt;}
.ws36{word-spacing:-44.789286pt;}
.ws27{word-spacing:-30.278400pt;}
.ws28{word-spacing:-19.706667pt;}
.ws44{word-spacing:-16.640107pt;}
.wse{word-spacing:-16.601707pt;}
.ws1b{word-spacing:-16.516195pt;}
.ws14{word-spacing:-16.415075pt;}
.ws10{word-spacing:-16.399235pt;}
.ws1{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.097173pt;}
.ws20{word-spacing:-16.077514pt;}
.ws2a{word-spacing:-15.902507pt;}
.ws18{word-spacing:-15.011231pt;}
.ws1a{word-spacing:-14.980699pt;}
.ws22{word-spacing:-14.950827pt;}
.ws45{word-spacing:-14.814827pt;}
.ws9{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.719893pt;}
.ws1d{word-spacing:-14.688205pt;}
.ws0{word-spacing:-14.672427pt;}
.ws15{word-spacing:-14.662260pt;}
.ws25{word-spacing:-14.536427pt;}
.ws5{word-spacing:-14.313067pt;}
.ws49{word-spacing:-14.131200pt;}
.ws2{word-spacing:-14.080000pt;}
.ws35{word-spacing:-14.077039pt;}
.ws30{word-spacing:-14.002891pt;}
.ws47{word-spacing:-13.946880pt;}
.ws48{word-spacing:-13.885440pt;}
.ws4a{word-spacing:-13.578240pt;}
.ws16{word-spacing:-13.461471pt;}
.ws1e{word-spacing:-11.977329pt;}
.wsa{word-spacing:-11.838913pt;}
.ws19{word-spacing:-11.743848pt;}
.ws11{word-spacing:-11.244814pt;}
.ws26{word-spacing:-10.520427pt;}
.ws12{word-spacing:-10.448572pt;}
.ws41{word-spacing:-10.432660pt;}
.ws6{word-spacing:-10.319360pt;}
.ws46{word-spacing:-10.239893pt;}
.ws1f{word-spacing:-10.228487pt;}
.ws2b{word-spacing:-10.160427pt;}
.ws21{word-spacing:-9.607680pt;}
.ws23{word-spacing:-9.595947pt;}
.ws3{word-spacing:-9.200533pt;}
.ws42{word-spacing:-9.022066pt;}
.ws33{word-spacing:-8.935783pt;}
.ws2e{word-spacing:-8.933487pt;}
.ws3e{word-spacing:-8.350755pt;}
.ws43{word-spacing:-8.329835pt;}
.ws3a{word-spacing:-8.098672pt;}
.ws3d{word-spacing:-8.034176pt;}
.ws38{word-spacing:-8.017523pt;}
.ws39{word-spacing:-7.962467pt;}
.wsb{word-spacing:-7.671615pt;}
.ws31{word-spacing:-6.395707pt;}
.ws2c{word-spacing:-6.367927pt;}
.ws4b{word-spacing:-0.061440pt;}
.ws8{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.307200pt;}
.ws4c{word-spacing:0.491520pt;}
.ws40{word-spacing:8.451613pt;}
.ws37{word-spacing:10.511048pt;}
.ws3c{word-spacing:10.585158pt;}
.ws29{word-spacing:17.736960pt;}
.wsc{word-spacing:26.403860pt;}
.ws3f{word-spacing:27.453046pt;}
.wsf{word-spacing:250.046483pt;}
.ws13{word-spacing:532.007808pt;}
.ws1c{word-spacing:960.593591pt;}
.ws17{word-spacing:966.644755pt;}
.ws34{word-spacing:1789.715792pt;}
.ws32{word-spacing:1829.508433pt;}
.ws2f{word-spacing:1906.712671pt;}
.ws2d{word-spacing:1955.057536pt;}
._45{margin-left:-720.272992pt;}
._46{margin-left:-717.079881pt;}
._4d{margin-left:-676.530831pt;}
._4e{margin-left:-673.105379pt;}
._26{margin-left:-367.065562pt;}
._1f{margin-left:-345.293746pt;}
._1c{margin-left:-300.458793pt;}
._18{margin-left:-299.154726pt;}
._3c{margin-left:-285.213741pt;}
._40{margin-left:-280.650828pt;}
._22{margin-left:-265.580334pt;}
._31{margin-left:-263.924763pt;}
._2c{margin-left:-262.265839pt;}
._2e{margin-left:-259.977641pt;}
._38{margin-left:-258.440007pt;}
._3a{margin-left:-256.359335pt;}
._1a{margin-left:-254.409461pt;}
._2b{margin-left:-251.652093pt;}
._3d{margin-left:-250.168603pt;}
._37{margin-left:-248.250913pt;}
._2d{margin-left:-240.378500pt;}
._39{margin-left:-237.328187pt;}
._17{margin-left:-235.655553pt;}
._19{margin-left:-233.856870pt;}
._29{margin-left:-229.542938pt;}
._35{margin-left:-226.293571pt;}
._4a{margin-left:-220.433407pt;}
._50{margin-left:-212.598426pt;}
._32{margin-left:-208.108590pt;}
._25{margin-left:-202.037117pt;}
._24{margin-left:-189.966276pt;}
._21{margin-left:-172.119532pt;}
._49{margin-left:-142.222879pt;}
._4f{margin-left:-133.574640pt;}
._1d{margin-left:-127.285017pt;}
._15{margin-left:-125.697208pt;}
._28{margin-left:-94.714349pt;}
._34{margin-left:-93.349666pt;}
._1e{margin-left:-87.271926pt;}
._16{margin-left:-86.306457pt;}
._2a{margin-left:-72.023686pt;}
._36{margin-left:-70.715079pt;}
._4b{margin-left:-56.539744pt;}
._47{margin-left:-51.920186pt;}
._23{margin-left:-50.829994pt;}
._27{margin-left:-48.728659pt;}
._33{margin-left:-47.248028pt;}
._48{margin-left:-22.823751pt;}
._52{margin-left:-9.586861pt;}
._3e{margin-left:-3.180687pt;}
._12{margin-left:-2.236122pt;}
._1{margin-left:-1.072214pt;}
._0{width:1.125547pt;}
._2{width:2.232660pt;}
._7{width:3.830787pt;}
._9{width:5.534956pt;}
._a{width:6.795065pt;}
._e{width:7.818371pt;}
._5{width:9.433410pt;}
._6{width:10.618506pt;}
._f{width:11.755953pt;}
._4{width:13.505820pt;}
._3{width:14.897921pt;}
._53{width:16.714113pt;}
._13{width:17.605179pt;}
._10{width:18.808843pt;}
._11{width:19.776853pt;}
._57{width:20.687272pt;}
._8{width:21.609078pt;}
._b{width:22.550922pt;}
._c{width:23.576529pt;}
._56{width:25.818527pt;}
._5a{width:29.040273pt;}
._59{width:30.499781pt;}
._43{width:31.500859pt;}
._42{width:32.796278pt;}
._44{width:36.275087pt;}
._55{width:38.300105pt;}
._58{width:44.525227pt;}
._54{width:81.620115pt;}
._14{width:90.566979pt;}
._4c{width:113.551552pt;}
._d{width:139.672604pt;}
._51{width:196.271593pt;}
._2f{width:879.898027pt;}
._3b{width:911.898027pt;}
._20{width:1205.018027pt;}
._30{width:1231.898027pt;}
._1b{width:1407.898027pt;}
._3f{width:1471.898027pt;}
._41{width:1493.018027pt;}
.fs30{font-size:2.560000pt;}
.fs1{font-size:10.880000pt;}
.fs15{font-size:22.906213pt;}
.fs18{font-size:23.006139pt;}
.fs2c{font-size:25.046106pt;}
.fs11{font-size:26.917628pt;}
.fs6{font-size:27.595739pt;}
.fs1f{font-size:28.641967pt;}
.fs1b{font-size:28.840011pt;}
.fs25{font-size:28.899914pt;}
.fs21{font-size:29.131915pt;}
.fs2e{font-size:29.963437pt;}
.fs28{font-size:30.038686pt;}
.fs1e{font-size:31.022186pt;}
.fs20{font-size:31.111991pt;}
.fs26{font-size:31.193114pt;}
.fs1c{font-size:31.236687pt;}
.fs1d{font-size:31.237361pt;}
.fs24{font-size:31.301569pt;}
.fs22{font-size:31.552850pt;}
.fs23{font-size:32.117616pt;}
.fs16{font-size:32.134844pt;}
.fs19{font-size:32.143106pt;}
.fs2f{font-size:32.371359pt;}
.fs2d{font-size:32.453473pt;}
.fs29{font-size:32.534975pt;}
.fs2a{font-size:32.539842pt;}
.fs14{font-size:34.560000pt;}
.fsf{font-size:36.793117pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:37.448656pt;}
.fs2b{font-size:37.527555pt;}
.fs9{font-size:37.584793pt;}
.fs12{font-size:37.636854pt;}
.fsc{font-size:42.244059pt;}
.fs5{font-size:42.586017pt;}
.fs27{font-size:42.880000pt;}
.fse{font-size:43.083918pt;}
.fs32{font-size:46.694675pt;}
.fs17{font-size:50.370111pt;}
.fs33{font-size:50.384776pt;}
.fs1a{font-size:50.636830pt;}
.fsb{font-size:52.741942pt;}
.fs0{font-size:53.120000pt;}
.fsd{font-size:53.887408pt;}
.fs10{font-size:57.832784pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:58.990054pt;}
.fsa{font-size:59.047034pt;}
.fs13{font-size:59.200068pt;}
.fs31{font-size:59.637739pt;}
.fs34{font-size:61.440000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y18a{bottom:0.160000pt;}
.y1a2{bottom:0.320000pt;}
.y1ca{bottom:0.960000pt;}
.y184{bottom:1.198338pt;}
.y1c4{bottom:1.200827pt;}
.y19c{bottom:1.209945pt;}
.y1b1{bottom:1.210467pt;}
.y20f{bottom:1.245018pt;}
.y1f8{bottom:1.248145pt;}
.y1fe{bottom:1.280000pt;}
.y1a1{bottom:2.380219pt;}
.y1c9{bottom:2.417666pt;}
.y1fa{bottom:2.496290pt;}
.y112{bottom:2.880000pt;}
.ye3{bottom:2.989667pt;}
.y106{bottom:3.040000pt;}
.ya9{bottom:3.043035pt;}
.yad{bottom:3.053591pt;}
.y4a{bottom:3.200000pt;}
.y22b{bottom:3.583889pt;}
.y1b4{bottom:3.647542pt;}
.y234{bottom:3.866833pt;}
.y110{bottom:4.000000pt;}
.y10f{bottom:4.160000pt;}
.y18d{bottom:4.189185pt;}
.y181{bottom:4.214157pt;}
.y1b9{bottom:4.226913pt;}
.y1af{bottom:4.256810pt;}
.y200{bottom:4.357564pt;}
.y1f6{bottom:4.368507pt;}
.y223{bottom:4.577326pt;}
.y13b{bottom:4.637427pt;}
.y128{bottom:4.656789pt;}
.yf8{bottom:4.768793pt;}
.yc1{bottom:4.797956pt;}
.y188{bottom:4.809331pt;}
.y216{bottom:4.960000pt;}
.y13f{bottom:4.967111pt;}
.y1fc{bottom:5.009221pt;}
.y21c{bottom:5.440000pt;}
.y226{bottom:5.600000pt;}
.y224{bottom:5.668833pt;}
.y12c{bottom:5.907207pt;}
.y212{bottom:6.225091pt;}
.y217{bottom:6.560000pt;}
.y22e{bottom:6.600000pt;}
.y219{bottom:6.720000pt;}
.ybc{bottom:6.721067pt;}
.yb1{bottom:6.736269pt;}
.yd9{bottom:6.876695pt;}
.y235{bottom:7.206895pt;}
.y22c{bottom:7.347744pt;}
.y141{bottom:7.801948pt;}
.y12e{bottom:7.824742pt;}
.y144{bottom:8.132754pt;}
.yfa{bottom:8.979546pt;}
.y131{bottom:9.076293pt;}
.y47{bottom:10.240000pt;}
.y20e{bottom:10.624155pt;}
.y46{bottom:10.880000pt;}
.ybd{bottom:11.180220pt;}
.y19d{bottom:11.345710pt;}
.y19a{bottom:12.238609pt;}
.yc4{bottom:12.670376pt;}
.y137{bottom:12.949062pt;}
.y127{bottom:13.468613pt;}
.y13a{bottom:13.471623pt;}
.y1c2{bottom:13.549657pt;}
.y124{bottom:13.857104pt;}
.ye5{bottom:14.316897pt;}
.y18c{bottom:14.320983pt;}
.y1b8{bottom:14.449957pt;}
.y1c8{bottom:14.465968pt;}
.y69{bottom:14.518815pt;}
.yaf{bottom:14.641028pt;}
.y140{bottom:14.957445pt;}
.y136{bottom:15.343198pt;}
.y12d{bottom:15.886768pt;}
.y123{bottom:16.275259pt;}
.yc2{bottom:16.353055pt;}
.y211{bottom:16.849246pt;}
.yf9{bottom:16.857813pt;}
.yf3{bottom:17.303581pt;}
.y13d{bottom:17.351582pt;}
.y17f{bottom:17.715436pt;}
.y1ad{bottom:17.894824pt;}
.ye7{bottom:17.963335pt;}
.y143{bottom:18.123088pt;}
.y12a{bottom:18.276608pt;}
.yb2{bottom:18.323707pt;}
.y49{bottom:18.400000pt;}
.y8b{bottom:18.978517pt;}
.y130{bottom:19.027538pt;}
.yf4{bottom:19.663682pt;}
.y1f4{bottom:19.699636pt;}
.y187{bottom:19.828506pt;}
.yfc{bottom:20.557818pt;}
.yc6{bottom:21.179213pt;}
.yc5{bottom:22.702991pt;}
.y13c{bottom:23.049290pt;}
.y138{bottom:23.791641pt;}
.ye4{bottom:24.030649pt;}
.y18f{bottom:24.179374pt;}
.y129{bottom:24.587596pt;}
.yae{bottom:24.641305pt;}
.y125{bottom:24.670277pt;}
.y1bb{bottom:25.597959pt;}
.y142{bottom:26.213812pt;}
.y1a0{bottom:26.261748pt;}
.yc3{bottom:26.385669pt;}
.y1c7{bottom:26.498259pt;}
.y132{bottom:27.032934pt;}
.yf5{bottom:27.191053pt;}
.ye6{bottom:27.645526pt;}
.y12f{bottom:27.728365pt;}
.yb0{bottom:28.356321pt;}
.y174{bottom:29.139595pt;}
.y1a4{bottom:29.434613pt;}
.yfb{bottom:29.870860pt;}
.y183{bottom:31.253464pt;}
.y203{bottom:31.520042pt;}
.y1ea{bottom:31.598617pt;}
.y186{bottom:34.248511pt;}
.y13e{bottom:35.570569pt;}
.y139{bottom:35.901374pt;}
.y12b{bottom:36.429193pt;}
.yf7{bottom:36.600267pt;}
.y126{bottom:37.679611pt;}
.y190{bottom:37.905303pt;}
.y19f{bottom:38.202513pt;}
.y1c6{bottom:38.546561pt;}
.yf6{bottom:40.714848pt;}
.y6a{bottom:42.869864pt;}
.y175{bottom:44.757939pt;}
.y1bc{bottom:47.873308pt;}
.y1a5{bottom:48.862614pt;}
.y204{bottom:49.012547pt;}
.y1eb{bottom:49.135052pt;}
.y3{bottom:50.240000pt;}
.y84{bottom:50.414687pt;}
.y191{bottom:51.631231pt;}
.y238{bottom:56.800000pt;}
.y176{bottom:60.396255pt;}
.y192{bottom:65.357160pt;}
.y1ec{bottom:66.650684pt;}
.y205{bottom:67.127561pt;}
.y1a6{bottom:68.290616pt;}
.y1bd{bottom:70.769085pt;}
.y177{bottom:76.014599pt;}
.y193{bottom:79.082295pt;}
.y1ed{bottom:84.183791pt;}
.y206{bottom:84.598485pt;}
.y71{bottom:88.135843pt;}
.y1a7{bottom:88.323044pt;}
.y75{bottom:88.922501pt;}
.y178{bottom:91.629747pt;}
.y194{bottom:92.808224pt;}
.y1be{bottom:93.043634pt;}
.y79{bottom:95.683031pt;}
.ya7{bottom:98.592000pt;}
.y159{bottom:101.632000pt;}
.y74{bottom:101.698306pt;}
.y1ee{bottom:101.699423pt;}
.y1e8{bottom:102.432000pt;}
.y207{bottom:102.717650pt;}
.y147{bottom:104.192000pt;}
.ye2{bottom:104.886922pt;}
.y195{bottom:105.939098pt;}
.y39{bottom:106.752000pt;}
.y179{bottom:107.272057pt;}
.y1a8{bottom:107.755080pt;}
.y23b{bottom:108.832000pt;}
.ya6{bottom:115.392000pt;}
.y1bf{bottom:115.923400pt;}
.y158{bottom:118.432000pt;}
.y1e7{bottom:119.232000pt;}
.y1ef{bottom:119.240019pt;}
.y73{bottom:119.282782pt;}
.y196{bottom:119.665027pt;}
.y208{bottom:120.189404pt;}
.y146{bottom:120.992000pt;}
.y7c{bottom:122.086362pt;}
.y172{bottom:122.432000pt;}
.ye8{bottom:122.592000pt;}
.y17a{bottom:123.489570pt;}
.y38{bottom:123.712000pt;}
.y23a{bottom:125.632000pt;}
.y1a9{bottom:127.179047pt;}
.y64{bottom:130.592000pt;}
.ya5{bottom:132.192000pt;}
.y197{bottom:133.390955pt;}
.y135{bottom:134.763938pt;}
.y157{bottom:135.226667pt;}
.y1e6{bottom:136.026667pt;}
.y1f0{bottom:136.755651pt;}
.y171{bottom:137.786667pt;}
.y1c0{bottom:138.218763pt;}
.y209{bottom:138.300268pt;}
.y68{bottom:138.334110pt;}
.y17b{bottom:139.107914pt;}
.y37{bottom:140.506667pt;}
.y239{bottom:142.586667pt;}
.y1aa{bottom:146.611083pt;}
.y198{bottom:147.116884pt;}
.y63{bottom:147.386667pt;}
.ya4{bottom:149.146667pt;}
.ye1{bottom:149.626667pt;}
.y67{bottom:151.109915pt;}
.y1e5{bottom:151.386667pt;}
.y156{bottom:152.186667pt;}
.y170{bottom:153.146667pt;}
.y1f1{bottom:154.287926pt;}
.y17c{bottom:154.742235pt;}
.y20a{bottom:155.796923pt;}
.y145{bottom:155.866667pt;}
.y214{bottom:156.186667pt;}
.y36{bottom:157.466667pt;}
.y199{bottom:160.842813pt;}
.y1c1{bottom:161.090523pt;}
.y62{bottom:164.186667pt;}
.ya3{bottom:165.946667pt;}
.ye0{bottom:166.586667pt;}
.y1ab{bottom:166.640284pt;}
.y16f{bottom:168.346667pt;}
.y155{bottom:168.986667pt;}
.y17d{bottom:170.360579pt;}
.y1f2{bottom:171.803558pt;}
.y20b{bottom:173.891187pt;}
.y35{bottom:174.266667pt;}
.y237{bottom:175.066667pt;}
.y7d{bottom:178.640592pt;}
.y1fd{bottom:178.746667pt;}
.y202{bottom:180.321806pt;}
.y189{bottom:180.506667pt;}
.y61{bottom:181.146667pt;}
.y1e9{bottom:181.695391pt;}
.y173{bottom:182.235745pt;}
.y18e{bottom:182.386836pt;}
.ya2{bottom:182.906667pt;}
.y7b{bottom:183.069537pt;}
.y1f5{bottom:183.255322pt;}
.ydf{bottom:183.386667pt;}
.y180{bottom:183.733668pt;}
.y210{bottom:185.011707pt;}
.y154{bottom:185.946667pt;}
.y17e{bottom:185.978923pt;}
.y1ac{bottom:186.072320pt;}
.y134{bottom:186.106667pt;}
.y1f3{bottom:189.344154pt;}
.y34{bottom:191.066667pt;}
.y20c{bottom:191.379542pt;}
.y236{bottom:194.106667pt;}
.y83{bottom:195.594558pt;}
.y7a{bottom:195.845342pt;}
.y60{bottom:197.946667pt;}
.ya1{bottom:199.866667pt;}
.yde{bottom:200.346667pt;}
.y153{bottom:202.746667pt;}
.y33{bottom:208.026667pt;}
.y232{bottom:212.986667pt;}
.y233{bottom:214.616894pt;}
.y5f{bottom:214.906667pt;}
.ya0{bottom:216.506667pt;}
.ydd{bottom:217.146667pt;}
.y122{bottom:218.828057pt;}
.y152{bottom:219.546667pt;}
.y32{bottom:224.826667pt;}
.y19b{bottom:231.618013pt;}
.y5e{bottom:231.706667pt;}
.y231{bottom:231.866667pt;}
.y9f{bottom:233.466667pt;}
.ydc{bottom:233.946667pt;}
.y6d{bottom:235.430228pt;}
.y133{bottom:235.706667pt;}
.y151{bottom:236.506667pt;}
.y182{bottom:238.417843pt;}
.y72{bottom:241.132022pt;}
.y31{bottom:241.786667pt;}
.y89{bottom:244.065726pt;}
.y6c{bottom:248.206033pt;}
.y5d{bottom:248.506667pt;}
.y9e{bottom:250.266667pt;}
.y230{bottom:250.746667pt;}
.ydb{bottom:250.906667pt;}
.y150{bottom:253.306667pt;}
.y30{bottom:258.586667pt;}
.y6b{bottom:260.981838pt;}
.y20d{bottom:264.297783pt;}
.y5c{bottom:265.466667pt;}
.yd8{bottom:265.624988pt;}
.y9d{bottom:267.226667pt;}
.y82{bottom:269.215134pt;}
.y22f{bottom:269.786667pt;}
.y14f{bottom:270.106667pt;}
.y121{bottom:271.706667pt;}
.yda{bottom:272.666667pt;}
.y91{bottom:272.726115pt;}
.y7e{bottom:274.203613pt;}
.y1fb{bottom:275.265231pt;}
.y2f{bottom:275.386667pt;}
.y78{bottom:275.674014pt;}
.y1f7{bottom:279.650380pt;}
.y5b{bottom:282.266667pt;}
.y9c{bottom:284.026667pt;}
.y14e{bottom:285.466667pt;}
.y77{bottom:288.449819pt;}
.y120{bottom:288.666667pt;}
.yd7{bottom:289.466667pt;}
.y2e{bottom:292.386667pt;}
.y19e{bottom:294.895338pt;}
.y5a{bottom:299.266667pt;}
.y9b{bottom:300.866667pt;}
.y76{bottom:301.225624pt;}
.y185{bottom:304.526976pt;}
.y11f{bottom:305.506667pt;}
.yd6{bottom:306.466667pt;}
.y22d{bottom:307.586667pt;}
.y7f{bottom:308.144668pt;}
.y2d{bottom:309.186667pt;}
.y14d{bottom:313.026667pt;}
.y59{bottom:316.066667pt;}
.y9a{bottom:317.826667pt;}
.y11e{bottom:322.306667pt;}
.yd5{bottom:323.266667pt;}
.y2c{bottom:326.146667pt;}
.y229{bottom:326.626667pt;}
.y22a{bottom:327.632250pt;}
.y58{bottom:332.866667pt;}
.y99{bottom:334.786667pt;}
.y90{bottom:337.116172pt;}
.y11d{bottom:339.266667pt;}
.yd4{bottom:340.066667pt;}
.y2b{bottom:342.946667pt;}
.y1ff{bottom:344.227948pt;}
.y88{bottom:344.663361pt;}
.y228{bottom:345.506667pt;}
.y57{bottom:349.826667pt;}
.y98{bottom:351.586667pt;}
.y1f9{bottom:351.626732pt;}
.y70{bottom:353.265736pt;}
.y18b{bottom:353.385249pt;}
.y11c{bottom:356.066667pt;}
.yd3{bottom:357.026667pt;}
.y201{bottom:357.342139pt;}
.y2a{bottom:359.746667pt;}
.y8f{bottom:363.882667pt;}
.y227{bottom:364.386667pt;}
.y6f{bottom:366.041541pt;}
.y56{bottom:366.626667pt;}
.y97{bottom:368.386667pt;}
.y81{bottom:368.571860pt;}
.yd2{bottom:373.826667pt;}
.y11b{bottom:374.146667pt;}
.y8e{bottom:375.721579pt;}
.y29{bottom:376.706667pt;}
.y6e{bottom:378.817346pt;}
.y225{bottom:383.426667pt;}
.y55{bottom:383.586667pt;}
.y222{bottom:384.184010pt;}
.y96{bottom:385.186667pt;}
.y16e{bottom:390.466667pt;}
.yd1{bottom:390.786667pt;}
.y11a{bottom:390.946667pt;}
.y87{bottom:392.442505pt;}
.y28{bottom:393.506667pt;}
.y1e4{bottom:399.106667pt;}
.y54{bottom:400.386667pt;}
.y95{bottom:400.546667pt;}
.y221{bottom:402.306667pt;}
.y16d{bottom:407.266667pt;}
.y86{bottom:407.530968pt;}
.yd0{bottom:407.586667pt;}
.y119{bottom:407.746667pt;}
.y27{bottom:410.466667pt;}
.y1e3{bottom:412.226667pt;}
.y94{bottom:415.906667pt;}
.y53{bottom:417.186667pt;}
.y220{bottom:421.186667pt;}
.y16c{bottom:424.226667pt;}
.ycf{bottom:424.386667pt;}
.y8d{bottom:424.482568pt;}
.y118{bottom:424.706667pt;}
.y66{bottom:426.662924pt;}
.y26{bottom:427.266667pt;}
.y93{bottom:428.066667pt;}
.y1e2{bottom:429.026667pt;}
.y52{bottom:434.146667pt;}
.y80{bottom:436.453971pt;}
.y8c{bottom:437.258373pt;}
.y21f{bottom:440.226667pt;}
.y16b{bottom:441.026667pt;}
.yce{bottom:441.346667pt;}
.y117{bottom:441.506667pt;}
.y25{bottom:444.226667pt;}
.y1e1{bottom:445.986667pt;}
.y51{bottom:450.946667pt;}
.y85{bottom:457.829785pt;}
.y16a{bottom:457.986667pt;}
.ycd{bottom:458.146667pt;}
.y116{bottom:458.466667pt;}
.y21e{bottom:459.106667pt;}
.y24{bottom:461.026667pt;}
.y1e0{bottom:462.786667pt;}
.y92{bottom:465.376974pt;}
.y50{bottom:467.906667pt;}
.y8a{bottom:471.664326pt;}
.y169{bottom:474.786667pt;}
.ycc{bottom:475.106667pt;}
.y115{bottom:475.266667pt;}
.y23{bottom:477.826667pt;}
.y21d{bottom:477.986667pt;}
.y1df{bottom:479.586667pt;}
.y4f{bottom:484.706667pt;}
.y168{bottom:491.746667pt;}
.ycb{bottom:491.906667pt;}
.y114{bottom:492.066667pt;}
.y22{bottom:494.946667pt;}
.y1de{bottom:496.546667pt;}
.y21b{bottom:497.026667pt;}
.y4e{bottom:501.506667pt;}
.y113{bottom:506.466667pt;}
.y167{bottom:508.546667pt;}
.yca{bottom:508.866667pt;}
.y21{bottom:511.586667pt;}
.y1dd{bottom:513.346667pt;}
.y21a{bottom:515.906667pt;}
.y4d{bottom:518.466667pt;}
.y111{bottom:522.466667pt;}
.y166{bottom:525.346667pt;}
.yc9{bottom:525.666667pt;}
.y20{bottom:528.546667pt;}
.y1dc{bottom:530.333333pt;}
.y218{bottom:534.813333pt;}
.y4c{bottom:535.293333pt;}
.y10e{bottom:538.493333pt;}
.y165{bottom:542.333333pt;}
.yc8{bottom:542.493333pt;}
.y1f{bottom:545.373333pt;}
.y1db{bottom:547.133333pt;}
.y4b{bottom:552.253333pt;}
.y215{bottom:553.853333pt;}
.yc0{bottom:555.563112pt;}
.y164{bottom:559.133333pt;}
.y1e{bottom:562.173333pt;}
.y10d{bottom:562.653333pt;}
.y1da{bottom:563.933333pt;}
.y48{bottom:565.853333pt;}
.yc7{bottom:572.093333pt;}
.y163{bottom:576.093333pt;}
.y10c{bottom:578.013333pt;}
.y1d{bottom:579.133333pt;}
.y1d9{bottom:580.893333pt;}
.y162{bottom:592.893333pt;}
.y213{bottom:593.053333pt;}
.y10b{bottom:594.813333pt;}
.y1c{bottom:595.933333pt;}
.y45{bottom:596.413333pt;}
.y1d8{bottom:597.693333pt;}
.ybf{bottom:603.453333pt;}
.y161{bottom:609.693333pt;}
.y10a{bottom:611.773333pt;}
.y1b{bottom:612.893333pt;}
.y1d7{bottom:614.653333pt;}
.ybb{bottom:618.477080pt;}
.ybe{bottom:625.053333pt;}
.y160{bottom:626.653333pt;}
.y109{bottom:628.573333pt;}
.y1a{bottom:629.693333pt;}
.y1d6{bottom:631.453333pt;}
.y15f{bottom:643.453333pt;}
.yba{bottom:644.253333pt;}
.y108{bottom:645.533333pt;}
.y19{bottom:646.493333pt;}
.y1d5{bottom:648.413333pt;}
.y107{bottom:659.773333pt;}
.y15e{bottom:660.413333pt;}
.yb9{bottom:661.213333pt;}
.y18{bottom:663.453333pt;}
.y1d4{bottom:665.213333pt;}
.y105{bottom:675.773333pt;}
.y15d{bottom:677.213333pt;}
.yb8{bottom:678.013333pt;}
.y17{bottom:680.253333pt;}
.y1d3{bottom:682.013333pt;}
.y104{bottom:691.773333pt;}
.y15c{bottom:694.013333pt;}
.yb7{bottom:694.813333pt;}
.y16{bottom:697.213333pt;}
.y1d2{bottom:698.973333pt;}
.y15b{bottom:710.973333pt;}
.yb6{bottom:711.773333pt;}
.y15{bottom:714.013333pt;}
.y103{bottom:714.973333pt;}
.y1d1{bottom:715.773333pt;}
.y15a{bottom:727.773333pt;}
.yb5{bottom:728.573333pt;}
.y102{bottom:730.333333pt;}
.y14{bottom:730.813333pt;}
.y1d0{bottom:732.733333pt;}
.y14c{bottom:744.733333pt;}
.yb4{bottom:745.533333pt;}
.y101{bottom:747.133333pt;}
.y13{bottom:747.773333pt;}
.y1cf{bottom:749.533333pt;}
.yac{bottom:759.290803pt;}
.y14b{bottom:761.533333pt;}
.y100{bottom:764.093333pt;}
.y12{bottom:764.573333pt;}
.y1ce{bottom:766.333333pt;}
.yb3{bottom:777.893333pt;}
.y14a{bottom:778.373333pt;}
.yff{bottom:780.933333pt;}
.y11{bottom:781.733333pt;}
.y1cd{bottom:783.173333pt;}
.y149{bottom:795.333333pt;}
.yfe{bottom:797.893333pt;}
.y10{bottom:798.373333pt;}
.y1cc{bottom:798.533333pt;}
.yab{bottom:806.373333pt;}
.yf2{bottom:811.998352pt;}
.y44{bottom:812.133333pt;}
.y1cb{bottom:813.893333pt;}
.yf{bottom:815.173333pt;}
.ya8{bottom:821.184915pt;}
.y1b6{bottom:826.053333pt;}
.y1a3{bottom:827.475013pt;}
.yaa{bottom:827.973333pt;}
.y1ba{bottom:828.466816pt;}
.y1ae{bottom:828.988178pt;}
.y43{bottom:829.093333pt;}
.ye{bottom:832.453333pt;}
.yfd{bottom:832.773333pt;}
.y42{bottom:845.893333pt;}
.y23d{bottom:846.053333pt;}
.yd{bottom:849.253333pt;}
.y41{bottom:862.693333pt;}
.yc{bottom:865.893333pt;}
.y244{bottom:866.536960pt;}
.yf1{bottom:869.413333pt;}
.y1c3{bottom:875.139297pt;}
.y40{bottom:879.653333pt;}
.yb{bottom:882.693333pt;}
.yf0{bottom:886.213333pt;}
.y243{bottom:888.133120pt;}
.y3f{bottom:896.453333pt;}
.ya{bottom:899.493333pt;}
.y1b0{bottom:901.838140pt;}
.y1b2{bottom:903.048608pt;}
.yef{bottom:903.173333pt;}
.y3e{bottom:913.413333pt;}
.y242{bottom:914.859520pt;}
.y9{bottom:916.453333pt;}
.yee{bottom:919.973333pt;}
.y3d{bottom:930.213333pt;}
.y241{bottom:933.583360pt;}
.y8{bottom:934.213333pt;}
.yed{bottom:936.773333pt;}
.y1c5{bottom:944.990630pt;}
.y65{bottom:947.173333pt;}
.y3c{bottom:947.333333pt;}
.yec{bottom:953.893333pt;}
.y7{bottom:955.653333pt;}
.y240{bottom:960.309760pt;}
.y1b3{bottom:961.941074pt;}
.y3b{bottom:963.973333pt;}
.yeb{bottom:970.533333pt;}
.y6{bottom:977.093333pt;}
.y23f{bottom:979.033600pt;}
.y3a{bottom:980.773333pt;}
.ye9{bottom:984.290803pt;}
.y5{bottom:997.733333pt;}
.y23c{bottom:997.893333pt;}
.y1b7{bottom:1001.005228pt;}
.y1b5{bottom:1002.007544pt;}
.yea{bottom:1002.853333pt;}
.y23e{bottom:1005.760000pt;}
.y4{bottom:1014.560000pt;}
.y148{bottom:1014.720000pt;}
.y2{bottom:1057.760000pt;}
.y1{bottom:1063.200000pt;}
.h69{height:1.865000pt;}
.h3{height:7.926250pt;}
.h4d{height:11.539789pt;}
.h5d{height:13.771198pt;}
.h39{height:13.820836pt;}
.h48{height:13.960724pt;}
.h61{height:14.359209pt;}
.h59{height:14.395270pt;}
.h2a{height:15.200000pt;}
.h29{height:15.232000pt;}
.h27{height:15.360000pt;}
.h5f{height:16.267488pt;}
.h28{height:16.320000pt;}
.h70{height:16.687329pt;}
.h2c{height:16.687534pt;}
.h32{height:16.760332pt;}
.h73{height:17.249773pt;}
.h6d{height:18.122657pt;}
.h6a{height:18.880000pt;}
.h6c{height:18.912000pt;}
.h6b{height:19.040000pt;}
.h22{height:19.609913pt;}
.h1c{height:20.440702pt;}
.h42{height:20.866120pt;}
.h38{height:21.010398pt;}
.h52{height:21.054039pt;}
.h47{height:21.223055pt;}
.h11{height:21.542431pt;}
.h16{height:21.727835pt;}
.h64{height:21.828832pt;}
.h58{height:21.883652pt;}
.h40{height:22.600147pt;}
.h44{height:22.665571pt;}
.h54{height:22.724671pt;}
.h3a{height:22.756415pt;}
.h3c{height:22.756906pt;}
.h50{height:22.803682pt;}
.h49{height:22.986744pt;}
.h4b{height:23.398185pt;}
.h2e{height:23.410736pt;}
.h34{height:23.416755pt;}
.h66{height:23.583041pt;}
.h62{height:23.642862pt;}
.h5a{height:23.702238pt;}
.h5c{height:23.705783pt;}
.h3f{height:23.881529pt;}
.h4f{height:24.096604pt;}
.h67{height:24.962614pt;}
.h1f{height:26.804361pt;}
.h5e{height:27.339410pt;}
.h14{height:27.381109pt;}
.h23{height:27.419036pt;}
.h24{height:29.462031pt;}
.hb{height:30.560000pt;}
.hf{height:31.003785pt;}
.he{height:31.024579pt;}
.h72{height:31.145348pt;}
.h56{height:31.238750pt;}
.h71{height:31.623786pt;}
.h75{height:33.606646pt;}
.h74{height:34.122893pt;}
.h18{height:35.178876pt;}
.h30{height:36.695413pt;}
.h36{height:36.889722pt;}
.h17{height:38.423329pt;}
.hc{height:38.672812pt;}
.h2{height:38.698750pt;}
.h1d{height:39.257819pt;}
.h1b{height:39.384372pt;}
.h6f{height:39.778372pt;}
.h10{height:39.876250pt;}
.h6e{height:40.389426pt;}
.h8{height:40.882500pt;}
.h33{height:41.026835pt;}
.h2d{height:41.088751pt;}
.h20{height:42.132087pt;}
.h1e{height:42.190511pt;}
.h19{height:42.591653pt;}
.h9{height:42.866250pt;}
.h4{height:42.895000pt;}
.h6{height:42.923750pt;}
.h15{height:43.016687pt;}
.h26{height:43.128175pt;}
.h13{height:43.206686pt;}
.h3d{height:43.859185pt;}
.h78{height:44.100000pt;}
.h5b{height:44.433956pt;}
.h31{height:46.166557pt;}
.h45{height:46.553114pt;}
.h55{height:46.992381pt;}
.h2b{height:47.908463pt;}
.h2f{height:49.258492pt;}
.h35{height:49.552293pt;}
.h7{height:52.653750pt;}
.h21{height:52.707827pt;}
.h1a{height:52.780854pt;}
.h76{height:54.100625pt;}
.h5{height:54.514687pt;}
.h12{height:57.632104pt;}
.h25{height:57.928192pt;}
.h4c{height:79.527707pt;}
.h65{height:86.171856pt;}
.h4a{height:89.840889pt;}
.h43{height:102.071718pt;}
.h53{height:108.995106pt;}
.h3b{height:112.987332pt;}
.h41{height:197.826498pt;}
.h37{height:197.977588pt;}
.h51{height:199.637885pt;}
.h3e{height:199.706667pt;}
.h46{height:200.639085pt;}
.h4e{height:202.106667pt;}
.h57{height:204.054788pt;}
.h63{height:206.931527pt;}
.h60{height:208.506667pt;}
.ha{height:212.506667pt;}
.h68{height:416.546667pt;}
.hd{height:483.606155pt;}
.h77{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3b{width:8.171660pt;}
.w3c{width:8.788171pt;}
.w3a{width:11.827054pt;}
.w22{width:16.038272pt;}
.w2b{width:16.249115pt;}
.w2f{width:18.069179pt;}
.w1d{width:28.147997pt;}
.w18{width:28.201505pt;}
.w27{width:28.221391pt;}
.w31{width:29.266689pt;}
.w2c{width:30.625733pt;}
.w2d{width:30.646539pt;}
.w1e{width:35.925995pt;}
.w28{width:36.039614pt;}
.w38{width:43.360000pt;}
.w32{width:44.872830pt;}
.w33{width:45.473067pt;}
.w19{width:46.196941pt;}
.w3f{width:48.032000pt;}
.w17{width:51.010371pt;}
.w21{width:52.447820pt;}
.w2a{width:53.137312pt;}
.w13{width:74.720000pt;}
.w11{width:74.752000pt;}
.w10{width:74.880000pt;}
.w12{width:74.912000pt;}
.w23{width:75.262827pt;}
.wf{width:86.400000pt;}
.w25{width:96.068408pt;}
.w1b{width:100.019878pt;}
.w24{width:106.127773pt;}
.we{width:107.680000pt;}
.wd{width:107.712000pt;}
.w37{width:108.000000pt;}
.wc{width:138.605173pt;}
.wa{width:144.242234pt;}
.wb{width:144.798405pt;}
.w5{width:162.487752pt;}
.w1c{width:165.888188pt;}
.w26{width:168.091800pt;}
.w39{width:172.666667pt;}
.w30{width:173.820133pt;}
.w1f{width:176.026667pt;}
.w34{width:179.866667pt;}
.w8{width:203.668925pt;}
.w6{width:210.617564pt;}
.w36{width:216.026667pt;}
.w40{width:216.826667pt;}
.w3e{width:264.866667pt;}
.w3{width:272.066667pt;}
.w3d{width:280.706667pt;}
.w9{width:284.259891pt;}
.w7{width:296.419109pt;}
.w35{width:338.466667pt;}
.w2{width:343.266667pt;}
.w16{width:388.270011pt;}
.w29{width:404.459412pt;}
.w20{width:420.141126pt;}
.w2e{width:423.293333pt;}
.w1a{width:431.293333pt;}
.w15{width:520.477769pt;}
.w14{width:548.961621pt;}
.w4{width:596.299446pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9d{left:1.198364pt;}
.x4d{left:2.566290pt;}
.x8d{left:6.939334pt;}
.x69{left:8.000000pt;}
.x4c{left:9.323239pt;}
.x6b{left:10.880000pt;}
.xd{left:12.672000pt;}
.x67{left:14.400000pt;}
.x37{left:16.296644pt;}
.xaa{left:18.433695pt;}
.x36{left:19.498459pt;}
.x60{left:21.600000pt;}
.x70{left:24.480000pt;}
.xf{left:25.946667pt;}
.x5b{left:27.360000pt;}
.x6f{left:29.320000pt;}
.x50{left:30.615101pt;}
.x5d{left:31.520000pt;}
.x9b{left:32.715344pt;}
.x71{left:33.800000pt;}
.xab{left:36.576113pt;}
.x63{left:40.800000pt;}
.x61{left:44.160000pt;}
.x62{left:45.626667pt;}
.x56{left:46.634317pt;}
.x4a{left:47.696461pt;}
.x57{left:48.975726pt;}
.x64{left:50.080000pt;}
.x49{left:51.400603pt;}
.x4b{left:66.181429pt;}
.x58{left:75.609748pt;}
.x45{left:78.377327pt;}
.x51{left:82.125839pt;}
.x54{left:83.068681pt;}
.x9{left:87.360000pt;}
.x1{left:94.592000pt;}
.x55{left:96.976594pt;}
.x10{left:98.680381pt;}
.x97{left:100.352000pt;}
.x99{left:101.792000pt;}
.xa9{left:103.552000pt;}
.x94{left:105.779942pt;}
.x3d{left:106.912000pt;}
.x65{left:108.992000pt;}
.x8{left:110.912000pt;}
.x93{left:115.079019pt;}
.x1f{left:117.331685pt;}
.x44{left:119.860405pt;}
.x53{left:120.962490pt;}
.x3{left:124.672000pt;}
.x20{left:126.652524pt;}
.x42{left:128.026574pt;}
.x4{left:129.472000pt;}
.x7e{left:130.673004pt;}
.x6{left:132.032000pt;}
.x21{left:133.483062pt;}
.xb4{left:137.946667pt;}
.x26{left:139.731344pt;}
.x7{left:142.426667pt;}
.xe{left:144.506667pt;}
.x25{left:150.147914pt;}
.x8c{left:151.826570pt;}
.x7d{left:157.488651pt;}
.x31{left:159.305104pt;}
.x2f{left:162.400192pt;}
.x2e{left:163.449675pt;}
.x2c{left:165.032795pt;}
.x30{left:165.969622pt;}
.x48{left:166.934634pt;}
.xa3{left:169.480000pt;}
.x66{left:170.746667pt;}
.x81{left:171.760572pt;}
.x43{left:173.024022pt;}
.x40{left:177.902512pt;}
.x7c{left:179.772076pt;}
.x41{left:182.171192pt;}
.x7b{left:185.357239pt;}
.x1e{left:187.172750pt;}
.x22{left:190.576161pt;}
.xad{left:206.505447pt;}
.x5a{left:214.746667pt;}
.x24{left:234.633131pt;}
.x23{left:239.072981pt;}
.x68{left:246.266667pt;}
.x92{left:252.498831pt;}
.x98{left:258.106667pt;}
.x8b{left:262.137909pt;}
.x80{left:263.103159pt;}
.xac{left:265.285217pt;}
.x3e{left:272.066667pt;}
.x18{left:273.607517pt;}
.x17{left:275.400533pt;}
.x9c{left:276.445132pt;}
.x4f{left:279.499045pt;}
.x19{left:282.487216pt;}
.x59{left:285.346667pt;}
.x7a{left:288.018935pt;}
.x52{left:290.626667pt;}
.xc{left:292.386667pt;}
.x91{left:294.157503pt;}
.x8a{left:298.232933pt;}
.x5c{left:299.586667pt;}
.x3f{left:306.626667pt;}
.x89{left:311.043060pt;}
.x79{left:311.950441pt;}
.x6a{left:321.666667pt;}
.x90{left:324.643088pt;}
.x78{left:326.668718pt;}
.x5{left:329.026667pt;}
.x88{left:331.729298pt;}
.xa{left:335.426667pt;}
.x87{left:336.365671pt;}
.x7f{left:340.917749pt;}
.x9a{left:344.066667pt;}
.x77{left:348.917808pt;}
.x4e{left:350.626667pt;}
.x76{left:354.502971pt;}
.x46{left:357.346667pt;}
.x3a{left:362.881225pt;}
.x39{left:364.560399pt;}
.x38{left:366.225343pt;}
.x9e{left:379.065055pt;}
.x2{left:389.506667pt;}
.xa4{left:392.676868pt;}
.x3c{left:397.026667pt;}
.x34{left:399.322620pt;}
.x5e{left:407.906667pt;}
.x8f{left:412.276266pt;}
.xae{left:415.453333pt;}
.x86{left:421.915343pt;}
.xb5{left:425.826667pt;}
.xb{left:430.626667pt;}
.x2b{left:432.953533pt;}
.x33{left:435.823308pt;}
.x47{left:438.626667pt;}
.x16{left:441.195241pt;}
.x12{left:443.232544pt;}
.x11{left:448.867738pt;}
.x29{left:451.541846pt;}
.x8e{left:453.946386pt;}
.x75{left:457.290562pt;}
.x35{left:458.573980pt;}
.x1a{left:462.514584pt;}
.x1c{left:465.801780pt;}
.x1b{left:466.698288pt;}
.x85{left:470.831942pt;}
.x6c{left:472.733333pt;}
.x27{left:475.238832pt;}
.x28{left:477.031848pt;}
.x74{left:481.244958pt;}
.x1d{left:488.570240pt;}
.x84{left:491.506733pt;}
.x15{left:495.157677pt;}
.xa5{left:498.712079pt;}
.x83{left:504.396995pt;}
.xb3{left:510.653333pt;}
.x2d{left:511.670740pt;}
.xb0{left:513.738690pt;}
.x5f{left:516.253333pt;}
.x73{left:518.177990pt;}
.xa0{left:520.125150pt;}
.xa1{left:521.617101pt;}
.xa7{left:525.813267pt;}
.x2a{left:527.574272pt;}
.x72{left:531.969221pt;}
.x14{left:535.486312pt;}
.x13{left:539.627326pt;}
.x6d{left:548.093333pt;}
.x9f{left:550.958653pt;}
.xa6{left:554.034658pt;}
.xb2{left:557.969888pt;}
.x32{left:570.127575pt;}
.x95{left:617.533333pt;}
.xb1{left:621.512134pt;}
.x6e{left:623.613333pt;}
.xaf{left:627.746312pt;}
.x82{left:646.213333pt;}
.xa2{left:648.591422pt;}
.xa8{left:649.488777pt;}
.x3b{left:696.133333pt;}
.x96{left:703.013333pt;}
}


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