
/* 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_383a60af70e7.woff")format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_0856f9907cbc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_6e5eb64a9c92.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_b0f9887b1ff9.woff")format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_c5d94c06fc9a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_2bbcc68f82fd.woff")format("woff");}.ff9{font-family:ff9;line-height:0.634000;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_186ab9f06fc5.woff")format("woff");}.ffa{font-family:ffa;line-height:0.631000;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_94628f200fed.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_ea9f9d1d6a0f.woff")format("woff");}.ffc{font-family:ffc;line-height:0.922000;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;}
.m21{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);}
.m1f{transform:matrix(0.160699,0.191510,-0.191510,0.160699,0,0);-ms-transform:matrix(0.160699,0.191510,-0.191510,0.160699,0,0);-webkit-transform:matrix(0.160699,0.191510,-0.191510,0.160699,0,0);}
.m20{transform:matrix(0.160699,-0.191510,0.191510,0.160699,0,0);-ms-transform:matrix(0.160699,-0.191510,0.191510,0.160699,0,0);-webkit-transform:matrix(0.160699,-0.191510,0.191510,0.160699,0,0);}
.mb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v3{vertical-align:-57.678000px;}
.v2{vertical-align:-17.358000px;}
.v9{vertical-align:-14.604000px;}
.v8{vertical-align:-11.262000px;}
.va{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.166000px;}
.v7{vertical-align:5.910000px;}
.vb{vertical-align:10.920000px;}
.v1{vertical-align:21.696000px;}
.vc{vertical-align:25.716000px;}
.v5{vertical-align:53.628000px;}
.v4{vertical-align:59.304000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.001154px;}
.ls14{letter-spacing:0.670742px;}
.ls27{letter-spacing:0.717483px;}
.ls29{letter-spacing:0.723483px;}
.ls1f{letter-spacing:0.746725px;}
.ls19{letter-spacing:0.748200px;}
.ls11{letter-spacing:0.898800px;}
.ls15{letter-spacing:1.210800px;}
.ls6{letter-spacing:1.275394px;}
.ls17{letter-spacing:1.342800px;}
.ls0{letter-spacing:1.861130px;}
.ls10{letter-spacing:2.193044px;}
.ls12{letter-spacing:4.477702px;}
.lsb{letter-spacing:9.145667px;}
.ls16{letter-spacing:9.638400px;}
.ls1{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.458766px;}
.ls4{letter-spacing:11.954850px;}
.ls2b{letter-spacing:13.448400px;}
.ls2c{letter-spacing:13.454400px;}
.ls18{letter-spacing:14.055044px;}
.ls13{letter-spacing:14.658422px;}
.ls9{letter-spacing:14.704798px;}
.ls22{letter-spacing:14.764573px;}
.ls2a{letter-spacing:14.824349px;}
.ls7{letter-spacing:14.873275px;}
.lsf{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.003676px;}
.ls24{letter-spacing:15.123227px;}
.ls25{letter-spacing:15.242778px;}
.ls21{letter-spacing:17.325483px;}
.lse{letter-spacing:17.753353px;}
.ls23{letter-spacing:18.192172px;}
.lsd{letter-spacing:18.410885px;}
.ls20{letter-spacing:23.329200px;}
.ls1e{letter-spacing:23.415483px;}
.ls1c{letter-spacing:29.917200px;}
.ls1d{letter-spacing:32.905200px;}
.ls1a{letter-spacing:32.911200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls28{letter-spacing:105.748200px;}
.ls26{letter-spacing:131.578200px;}
.lsa{letter-spacing:1437.742800px;}
.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;}
}
.ws72{word-spacing:-24.089567px;}
.ws3b{word-spacing:-14.943900px;}
.wsb0{word-spacing:-13.449600px;}
.ws26{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws5b{word-spacing:-5.021150px;}
.ws59{word-spacing:-4.961375px;}
.wsa9{word-spacing:-4.303872px;}
.ws67{word-spacing:-4.233886px;}
.ws68{word-spacing:-4.229448px;}
.ws5c{word-spacing:-4.016930px;}
.ws5a{word-spacing:-3.969110px;}
.ws3d{word-spacing:-3.227904px;}
.wsa4{word-spacing:-3.012710px;}
.ws3e{word-spacing:-2.958912px;}
.wsa3{word-spacing:-2.749678px;}
.ws43{word-spacing:-2.689902px;}
.ws22{word-spacing:-2.151922px;}
.wsaa{word-spacing:-2.044339px;}
.ws9d{word-spacing:-2.032370px;}
.ws57{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.ws2e{word-spacing:-1.793268px;}
.wsa5{word-spacing:-1.775347px;}
.ws89{word-spacing:-1.733492px;}
.ws84{word-spacing:-1.673717px;}
.ws9f{word-spacing:-1.554166px;}
.ws51{word-spacing:-1.374839px;}
.wsab{word-spacing:-1.344960px;}
.ws4{word-spacing:-1.322630px;}
.ws33{word-spacing:-1.315063px;}
.ws73{word-spacing:-1.255288px;}
.wsc0{word-spacing:-1.022170px;}
.ws7d{word-spacing:-1.016185px;}
.wsbf{word-spacing:-0.968371px;}
.ws4a{word-spacing:-0.956410px;}
.wsad{word-spacing:-0.914573px;}
.ws64{word-spacing:-0.896634px;}
.wsac{word-spacing:-0.860774px;}
.ws81{word-spacing:-0.836858px;}
.ws76{word-spacing:-0.777083px;}
.wsbd{word-spacing:-0.753178px;}
.ws86{word-spacing:-0.717307px;}
.ws30{word-spacing:-0.657532px;}
.ws71{word-spacing:-0.597756px;}
.wsa0{word-spacing:-0.418429px;}
.ws46{word-spacing:-0.358654px;}
.ws35{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.179327px;}
.ws9a{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.ws5d{word-spacing:-0.107597px;}
.ws23{word-spacing:-0.059776px;}
.ws13{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.002857px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws15{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws14{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.wsb5{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws27{word-spacing:0.298878px;}
.ws16{word-spacing:0.322790px;}
.ws50{word-spacing:0.358654px;}
.ws2c{word-spacing:0.418429px;}
.ws40{word-spacing:0.478205px;}
.ws80{word-spacing:0.537980px;}
.wsaf{word-spacing:0.591782px;}
.wsae{word-spacing:0.613001px;}
.ws54{word-spacing:0.657532px;}
.ws2b{word-spacing:0.717307px;}
.ws79{word-spacing:0.746114px;}
.ws2d{word-spacing:0.777083px;}
.ws42{word-spacing:0.836858px;}
.ws6e{word-spacing:0.956410px;}
.ws9c{word-spacing:1.075961px;}
.ws52{word-spacing:1.195512px;}
.ws6f{word-spacing:1.255288px;}
.wsbc{word-spacing:1.291162px;}
.ws47{word-spacing:1.315063px;}
.wsc1{word-spacing:1.344960px;}
.ws55{word-spacing:1.434614px;}
.ws18{word-spacing:1.452557px;}
.ws83{word-spacing:1.494390px;}
.wsa7{word-spacing:1.506355px;}
.ws5f{word-spacing:1.554166px;}
.wsbb{word-spacing:1.560154px;}
.ws66{word-spacing:1.613941px;}
.ws8d{word-spacing:1.673717px;}
.ws24{word-spacing:1.733492px;}
.ws39{word-spacing:1.793268px;}
.ws4f{word-spacing:1.853044px;}
.ws85{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.wsba{word-spacing:1.990541px;}
.ws9{word-spacing:2.008454px;}
.ws3a{word-spacing:2.092146px;}
.ws37{word-spacing:2.151922px;}
.wsbe{word-spacing:2.205734px;}
.ws1b{word-spacing:2.211697px;}
.ws69{word-spacing:2.271473px;}
.ws2a{word-spacing:2.391024px;}
.ws94{word-spacing:2.401157px;}
.ws95{word-spacing:2.450800px;}
.ws41{word-spacing:2.510575px;}
.ws49{word-spacing:2.570351px;}
.ws88{word-spacing:2.630126px;}
.ws45{word-spacing:2.689902px;}
.ws58{word-spacing:2.749678px;}
.ws60{word-spacing:2.809453px;}
.ws6c{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws4b{word-spacing:2.929004px;}
.ws36{word-spacing:3.048556px;}
.wsb3{word-spacing:3.220570px;}
.wsb9{word-spacing:3.226243px;}
.ws9b{word-spacing:3.227882px;}
.wsb4{word-spacing:3.227904px;}
.wsa1{word-spacing:3.347434px;}
.ws7c{word-spacing:3.466985px;}
.ws6d{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.ws31{word-spacing:3.646312px;}
.ws44{word-spacing:3.706087px;}
.ws53{word-spacing:3.825638px;}
.wsa8{word-spacing:3.873485px;}
.ws4e{word-spacing:3.945190px;}
.ws56{word-spacing:4.004965px;}
.ws6a{word-spacing:4.064741px;}
.ws8c{word-spacing:4.124516px;}
.ws48{word-spacing:4.184292px;}
.wsb1{word-spacing:4.196275px;}
.ws87{word-spacing:4.244068px;}
.wsb2{word-spacing:4.250074px;}
.ws3f{word-spacing:4.542946px;}
.ws5e{word-spacing:4.602721px;}
.wsa2{word-spacing:4.662497px;}
.wsa6{word-spacing:4.734259px;}
.ws8e{word-spacing:4.782048px;}
.ws7f{word-spacing:4.901599px;}
.wsc2{word-spacing:4.949453px;}
.ws7a{word-spacing:4.961375px;}
.wsb6{word-spacing:5.003251px;}
.ws29{word-spacing:5.021150px;}
.wsb8{word-spacing:5.057050px;}
.ws34{word-spacing:5.080926px;}
.ws7b{word-spacing:5.260253px;}
.ws28{word-spacing:5.379804px;}
.ws75{word-spacing:5.917784px;}
.ws8f{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws61{word-spacing:6.097111px;}
.ws11{word-spacing:6.150892px;}
.ws9e{word-spacing:6.216662px;}
.wsb7{word-spacing:6.294413px;}
.ws74{word-spacing:6.395989px;}
.ws77{word-spacing:6.515540px;}
.ws70{word-spacing:6.575316px;}
.ws1c{word-spacing:6.694867px;}
.ws65{word-spacing:6.874194px;}
.ws38{word-spacing:7.113296px;}
.ws7e{word-spacing:7.471950px;}
.ws8b{word-spacing:7.531726px;}
.ws63{word-spacing:8.249033px;}
.ws6b{word-spacing:8.488135px;}
.ws91{word-spacing:8.497157px;}
.wse{word-spacing:8.661460px;}
.ws93{word-spacing:8.982334px;}
.ws92{word-spacing:12.303622px;}
.ws82{word-spacing:14.907038px;}
.ws90{word-spacing:15.078334px;}
.ws6{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.ws2{word-spacing:46.059600px;}
.ws99{word-spacing:60.916500px;}
.ws3{word-spacing:60.999600px;}
.ws98{word-spacing:75.858300px;}
.ws97{word-spacing:86.746500px;}
.ws96{word-spacing:101.694300px;}
.ws4c{word-spacing:407.545006px;}
.ws4d{word-spacing:754.346413px;}
.ws3c{word-spacing:908.998744px;}
.ws78{word-spacing:1028.231057px;}
._2d{margin-left:-1197.123479px;}
._19{margin-left:-606.290760px;}
._23{margin-left:-9.220652px;}
._1e{margin-left:-7.950155px;}
._c{margin-left:-6.939994px;}
._8{margin-left:-5.308087px;}
._1d{margin-left:-4.184292px;}
._4{margin-left:-3.096367px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._0{width:2.985101px;}
._24{width:4.483170px;}
._31{width:8.213200px;}
._28{width:9.340128px;}
._30{width:10.752041px;}
._32{width:11.831304px;}
._5{width:12.967636px;}
._13{width:14.047266px;}
._9{width:15.655334px;}
._1a{width:16.671312px;}
._a{width:17.762611px;}
._e{width:18.784673px;}
._b{width:19.914547px;}
._26{width:20.988803px;}
._12{width:22.064764px;}
._17{width:23.320051px;}
._15{width:24.941560px;}
._6{width:25.946136px;}
._27{width:26.958796px;}
._14{width:28.214083px;}
._16{width:30.126902px;}
._2a{width:31.382190px;}
._7{width:32.637384px;}
._25{width:34.018340px;}
._11{width:35.387155px;}
._1c{width:37.358045px;}
._d{width:39.212794px;}
._1f{width:44.054617px;}
._1{width:54.429634px;}
._33{width:61.868160px;}
._20{width:93.548814px;}
._2f{width:105.748200px;}
._2e{width:131.578200px;}
._1b{width:236.047737px;}
._21{width:327.202127px;}
._22{width:336.142127px;}
._29{width:381.592051px;}
._18{width:437.029675px;}
._2c{width:1004.113219px;}
._f{width:1013.425831px;}
._2b{width:2531.714700px;}
._10{width:2555.624700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fsa{font-size:59.774188px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fsb{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y4b{bottom:31.890000px;}
.y148{bottom:90.708000px;}
.yda{bottom:95.386500px;}
.y281{bottom:101.584500px;}
.y21{bottom:102.823500px;}
.y110{bottom:105.382500px;}
.y147{bottom:109.537500px;}
.y4a{bottom:111.652500px;}
.yad{bottom:112.204500px;}
.yd9{bottom:114.216000px;}
.y280{bottom:118.845000px;}
.y20{bottom:120.711000px;}
.y24b{bottom:121.041000px;}
.y10f{bottom:124.212000px;}
.y146{bottom:128.367000px;}
.y1af{bottom:128.689500px;}
.y49{bottom:130.482000px;}
.yac{bottom:131.034000px;}
.yd8{bottom:133.045500px;}
.y21e{bottom:133.153500px;}
.y27f{bottom:136.105500px;}
.y1f{bottom:138.600000px;}
.y24a{bottom:139.870500px;}
.y17c{bottom:140.616000px;}
.y10e{bottom:143.041500px;}
.y145{bottom:147.196500px;}
.y1ae{bottom:147.519000px;}
.y48{bottom:149.311500px;}
.yab{bottom:149.863500px;}
.yd7{bottom:151.875000px;}
.y21d{bottom:151.983000px;}
.y27e{bottom:153.366000px;}
.y1e{bottom:156.487500px;}
.y249{bottom:158.700000px;}
.y17b{bottom:159.445500px;}
.y10d{bottom:161.871000px;}
.y144{bottom:166.026000px;}
.y1ad{bottom:166.348500px;}
.y47{bottom:168.141000px;}
.yaa{bottom:168.693000px;}
.y27d{bottom:170.626500px;}
.yd6{bottom:170.704500px;}
.y21c{bottom:170.812500px;}
.y1d{bottom:174.375000px;}
.y248{bottom:177.529500px;}
.y17a{bottom:178.275000px;}
.y10c{bottom:180.700500px;}
.y143{bottom:184.855500px;}
.y1ac{bottom:185.178000px;}
.y46{bottom:186.970500px;}
.ya9{bottom:187.522500px;}
.y27c{bottom:187.887000px;}
.yd5{bottom:189.534000px;}
.y21b{bottom:189.642000px;}
.y1d1{bottom:189.862500px;}
.y1c{bottom:192.264000px;}
.y247{bottom:196.359000px;}
.y179{bottom:197.104500px;}
.y10b{bottom:199.530000px;}
.y141{bottom:203.685000px;}
.y1ab{bottom:204.007500px;}
.y142{bottom:204.225000px;}
.y27b{bottom:205.147500px;}
.y45{bottom:205.800000px;}
.ya8{bottom:206.352000px;}
.yd4{bottom:208.363500px;}
.y21a{bottom:208.471500px;}
.y1d0{bottom:208.692000px;}
.y1b{bottom:210.151500px;}
.y246{bottom:215.188500px;}
.y178{bottom:215.934000px;}
.y10a{bottom:218.359500px;}
.y27a{bottom:222.406500px;}
.y13f{bottom:222.514500px;}
.y1aa{bottom:222.837000px;}
.y140{bottom:223.054500px;}
.y44{bottom:224.628000px;}
.ya7{bottom:225.181500px;}
.yd3{bottom:227.193000px;}
.y219{bottom:227.301000px;}
.y1cf{bottom:227.521500px;}
.y1a{bottom:228.039000px;}
.y245{bottom:234.018000px;}
.y177{bottom:234.763500px;}
.y109{bottom:237.189000px;}
.y279{bottom:239.667000px;}
.y7b{bottom:241.173000px;}
.y13d{bottom:241.344000px;}
.y1a9{bottom:241.666500px;}
.y13e{bottom:241.884000px;}
.y43{bottom:243.457500px;}
.ya6{bottom:244.011000px;}
.yd2{bottom:246.022500px;}
.y218{bottom:246.130500px;}
.y1ce{bottom:246.351000px;}
.y244{bottom:252.847500px;}
.y176{bottom:253.593000px;}
.y108{bottom:256.018500px;}
.y278{bottom:256.927500px;}
.y7a{bottom:260.002500px;}
.y13c{bottom:260.173500px;}
.y1a8{bottom:260.496000px;}
.y42{bottom:262.287000px;}
.ya5{bottom:262.839000px;}
.yd1{bottom:264.852000px;}
.y217{bottom:264.960000px;}
.y1cd{bottom:265.180500px;}
.y243{bottom:271.677000px;}
.y175{bottom:272.422500px;}
.y277{bottom:274.188000px;}
.y107{bottom:274.846500px;}
.y79{bottom:278.832000px;}
.y13b{bottom:279.003000px;}
.y1a7{bottom:279.325500px;}
.y41{bottom:281.116500px;}
.ya4{bottom:281.668500px;}
.yd0{bottom:283.681500px;}
.y216{bottom:283.789500px;}
.y1cc{bottom:284.010000px;}
.y242{bottom:290.506500px;}
.y174{bottom:291.252000px;}
.y276{bottom:291.448500px;}
.y106{bottom:293.676000px;}
.y78{bottom:297.661500px;}
.y13a{bottom:297.832500px;}
.y1a6{bottom:298.155000px;}
.y40{bottom:299.946000px;}
.ya3{bottom:300.498000px;}
.ycf{bottom:302.511000px;}
.y215{bottom:302.619000px;}
.y1cb{bottom:302.839500px;}
.y19{bottom:307.299000px;}
.y275{bottom:308.709000px;}
.y241{bottom:309.336000px;}
.y173{bottom:310.081500px;}
.y1f5{bottom:310.147500px;}
.y105{bottom:312.505500px;}
.y77{bottom:316.491000px;}
.y139{bottom:316.662000px;}
.y1a5{bottom:316.984500px;}
.y3f{bottom:318.775500px;}
.ya2{bottom:319.327500px;}
.yce{bottom:321.340500px;}
.y214{bottom:321.448500px;}
.y1ca{bottom:321.667500px;}
.y18{bottom:325.186500px;}
.y274{bottom:325.969500px;}
.y240{bottom:328.165500px;}
.y172{bottom:328.911000px;}
.y104{bottom:331.335000px;}
.y76{bottom:335.320500px;}
.y138{bottom:335.491500px;}
.y1a4{bottom:335.814000px;}
.y3e{bottom:337.605000px;}
.y1ec{bottom:337.879500px;}
.ya1{bottom:338.157000px;}
.ycd{bottom:340.170000px;}
.y213{bottom:340.278000px;}
.y1c9{bottom:340.497000px;}
.y17{bottom:343.074000px;}
.y273{bottom:343.230000px;}
.y23f{bottom:346.995000px;}
.y171{bottom:347.740500px;}
.y103{bottom:350.164500px;}
.y75{bottom:354.150000px;}
.y137{bottom:354.321000px;}
.y1a3{bottom:354.643500px;}
.y3d{bottom:356.434500px;}
.ya0{bottom:356.986500px;}
.ycc{bottom:358.998000px;}
.y212{bottom:359.107500px;}
.y1e1{bottom:360.444000px;}
.y272{bottom:360.489000px;}
.y16{bottom:360.963000px;}
.y1c8{bottom:363.810000px;}
.y23e{bottom:365.824500px;}
.y102{bottom:368.994000px;}
.y170{bottom:371.053500px;}
.y74{bottom:372.979500px;}
.y136{bottom:373.150500px;}
.y1a2{bottom:373.473000px;}
.y3c{bottom:375.264000px;}
.y9f{bottom:375.816000px;}
.y271{bottom:377.749500px;}
.ycb{bottom:377.827500px;}
.y211{bottom:377.937000px;}
.y23d{bottom:384.654000px;}
.y101{bottom:387.823500px;}
.y1e2{bottom:390.258000px;}
.y73{bottom:391.809000px;}
.y135{bottom:391.980000px;}
.y1a1{bottom:392.302500px;}
.y3b{bottom:394.093500px;}
.y9e{bottom:394.645500px;}
.y270{bottom:395.010000px;}
.y1f4{bottom:395.788500px;}
.yca{bottom:396.657000px;}
.y210{bottom:396.766500px;}
.y15{bottom:399.024000px;}
.y23c{bottom:403.483500px;}
.y16f{bottom:404.677500px;}
.y100{bottom:406.653000px;}
.y1c7{bottom:407.628000px;}
.y72{bottom:410.638500px;}
.y134{bottom:410.808000px;}
.y1a0{bottom:411.132000px;}
.y26f{bottom:412.270500px;}
.y3a{bottom:412.923000px;}
.y9d{bottom:413.475000px;}
.y1f3{bottom:414.363000px;}
.yc9{bottom:415.486500px;}
.y20f{bottom:415.596000px;}
.y14{bottom:416.913000px;}
.y23b{bottom:422.313000px;}
.y16e{bottom:423.507000px;}
.y1c6{bottom:424.066500px;}
.yff{bottom:425.482500px;}
.y1e3{bottom:428.058000px;}
.y71{bottom:429.468000px;}
.y26e{bottom:429.531000px;}
.y133{bottom:429.637500px;}
.y19f{bottom:429.961500px;}
.y39{bottom:431.752500px;}
.y9c{bottom:432.304500px;}
.y1f2{bottom:432.939000px;}
.yc8{bottom:434.316000px;}
.y20e{bottom:434.425500px;}
.y13{bottom:434.800500px;}
.y1c5{bottom:440.505000px;}
.y23a{bottom:441.142500px;}
.y16d{bottom:442.336500px;}
.yfe{bottom:444.312000px;}
.y26d{bottom:446.791500px;}
.y70{bottom:448.297500px;}
.y1c1{bottom:448.725000px;}
.y19e{bottom:448.791000px;}
.y38{bottom:450.582000px;}
.y9b{bottom:451.134000px;}
.y1f1{bottom:451.513500px;}
.y1ed{bottom:452.605500px;}
.yc7{bottom:453.145500px;}
.y20d{bottom:453.255000px;}
.y1c4{bottom:456.943500px;}
.y239{bottom:459.972000px;}
.y16c{bottom:461.166000px;}
.yfd{bottom:463.141500px;}
.y132{bottom:463.204500px;}
.y26c{bottom:464.052000px;}
.y1e4{bottom:465.858000px;}
.y6f{bottom:467.127000px;}
.y19d{bottom:467.620500px;}
.y37{bottom:469.411500px;}
.y9a{bottom:469.963500px;}
.y1f0{bottom:470.089500px;}
.y12{bottom:470.622000px;}
.yc6{bottom:471.975000px;}
.y20c{bottom:472.084500px;}
.y1c3{bottom:473.382000px;}
.y238{bottom:478.801500px;}
.y16b{bottom:479.995500px;}
.y26b{bottom:481.312500px;}
.yfc{bottom:481.971000px;}
.y6e{bottom:485.956500px;}
.y19c{bottom:486.450000px;}
.y36{bottom:488.241000px;}
.y11{bottom:488.509500px;}
.y1ef{bottom:488.664000px;}
.y99{bottom:488.793000px;}
.y1c2{bottom:489.820500px;}
.yc5{bottom:490.804500px;}
.y20b{bottom:490.914000px;}
.y125{bottom:491.284500px;}
.y237{bottom:497.631000px;}
.y26a{bottom:498.573000px;}
.y16a{bottom:498.825000px;}
.yfb{bottom:500.800500px;}
.y1e5{bottom:503.770500px;}
.y6d{bottom:504.786000px;}
.y19b{bottom:505.278000px;}
.y1ee{bottom:507.238500px;}
.y98{bottom:507.622500px;}
.yc4{bottom:509.634000px;}
.y20a{bottom:509.743500px;}
.y35{bottom:511.554000px;}
.y1c0{bottom:513.760500px;}
.y269{bottom:515.832000px;}
.y236{bottom:516.460500px;}
.y169{bottom:517.653000px;}
.yfa{bottom:519.630000px;}
.y6c{bottom:523.615500px;}
.y129{bottom:523.956000px;}
.y128{bottom:524.007000px;}
.y19a{bottom:524.107500px;}
.y10{bottom:524.329500px;}
.y97{bottom:526.452000px;}
.yc3{bottom:528.463500px;}
.y209{bottom:528.571500px;}
.y1bf{bottom:530.197500px;}
.y12b{bottom:533.059500px;}
.y268{bottom:533.092500px;}
.y235{bottom:535.290000px;}
.y168{bottom:536.482500px;}
.y127{bottom:537.364500px;}
.yf9{bottom:538.459500px;}
.y1e6{bottom:541.570500px;}
.yf{bottom:542.218500px;}
.y6b{bottom:542.445000px;}
.y199{bottom:542.937000px;}
.y96{bottom:545.281500px;}
.y12a{bottom:546.475500px;}
.y1bc{bottom:546.636000px;}
.yc2{bottom:547.293000px;}
.y208{bottom:547.401000px;}
.y267{bottom:550.353000px;}
.y126{bottom:550.771500px;}
.y12f{bottom:552.859500px;}
.y12e{bottom:553.401000px;}
.y234{bottom:554.118000px;}
.y167{bottom:555.312000px;}
.yf8{bottom:557.289000px;}
.ye{bottom:560.106000px;}
.y6a{bottom:561.274500px;}
.y198{bottom:561.766500px;}
.y131{bottom:563.037000px;}
.y1be{bottom:563.074500px;}
.y130{bottom:563.578500px;}
.y95{bottom:564.111000px;}
.yc1{bottom:566.122500px;}
.y207{bottom:566.230500px;}
.y266{bottom:567.613500px;}
.y233{bottom:572.947500px;}
.y166{bottom:574.141500px;}
.yf7{bottom:576.118500px;}
.yd{bottom:577.993500px;}
.y1e7{bottom:579.258000px;}
.y1bd{bottom:579.513000px;}
.y69{bottom:580.104000px;}
.y197{bottom:580.596000px;}
.y94{bottom:582.940500px;}
.y265{bottom:584.874000px;}
.y206{bottom:585.060000px;}
.y34{bottom:586.704000px;}
.y232{bottom:591.777000px;}
.y165{bottom:592.971000px;}
.yf6{bottom:594.948000px;}
.yc{bottom:595.882500px;}
.y68{bottom:598.932000px;}
.y196{bottom:599.425500px;}
.yc0{bottom:599.688000px;}
.y93{bottom:601.770000px;}
.y264{bottom:602.134500px;}
.y1bb{bottom:603.453000px;}
.y205{bottom:603.889500px;}
.y33{bottom:606.160500px;}
.y231{bottom:610.606500px;}
.y164{bottom:611.800500px;}
.yb{bottom:613.770000px;}
.yf5{bottom:613.777500px;}
.y1e8{bottom:617.170500px;}
.y67{bottom:617.761500px;}
.y195{bottom:618.255000px;}
.y263{bottom:619.395000px;}
.y92{bottom:620.599500px;}
.y204{bottom:622.719000px;}
.y12d{bottom:625.534500px;}
.y230{bottom:629.436000px;}
.ya{bottom:631.657500px;}
.yf4{bottom:632.607000px;}
.y1ba{bottom:635.073000px;}
.y66{bottom:636.591000px;}
.y262{bottom:636.655500px;}
.y194{bottom:637.084500px;}
.y12c{bottom:638.941500px;}
.y91{bottom:639.429000px;}
.y32{bottom:643.551000px;}
.y163{bottom:645.366000px;}
.y22f{bottom:648.265500px;}
.y261{bottom:653.914500px;}
.y7{bottom:654.028555px;}
.y1e9{bottom:654.447000px;}
.ybe{bottom:654.474000px;}
.y65{bottom:655.420500px;}
.y193{bottom:655.914000px;}
.yf3{bottom:655.920000px;}
.y203{bottom:656.284500px;}
.y90{bottom:658.258500px;}
.y31{bottom:663.007500px;}
.y22e{bottom:667.095000px;}
.ybd{bottom:669.300000px;}
.y1b9{bottom:670.681500px;}
.y260{bottom:671.175000px;}
.y124{bottom:673.521000px;}
.y64{bottom:674.250000px;}
.y192{bottom:674.743500px;}
.y202{bottom:675.517500px;}
.y8f{bottom:677.088000px;}
.y30{bottom:682.464000px;}
.y160{bottom:682.471500px;}
.ybc{bottom:684.126000px;}
.y155{bottom:684.142500px;}
.y22d{bottom:685.924500px;}
.y25f{bottom:688.435500px;}
.y15c{bottom:688.960500px;}
.y1b8{bottom:689.511000px;}
.yf2{bottom:689.544000px;}
.y1ea{bottom:692.247000px;}
.y123{bottom:692.350500px;}
.y63{bottom:693.079500px;}
.y191{bottom:693.573000px;}
.y8e{bottom:695.917500px;}
.y154{bottom:697.455000px;}
.y15f{bottom:698.008500px;}
.y2f{bottom:701.922000px;}
.y1fd{bottom:703.249500px;}
.y22c{bottom:704.754000px;}
.y25e{bottom:705.696000px;}
.y1b7{bottom:708.340500px;}
.yf1{bottom:708.372000px;}
.y122{bottom:711.180000px;}
.y62{bottom:711.909000px;}
.y190{bottom:712.402500px;}
.y2e{bottom:721.378500px;}
.y22b{bottom:723.583500px;}
.y1f6{bottom:725.814000px;}
.y1b6{bottom:727.170000px;}
.yf0{bottom:727.201500px;}
.y25d{bottom:727.440000px;}
.y8d{bottom:729.483000px;}
.y1eb{bottom:729.934500px;}
.y121{bottom:730.009500px;}
.y61{bottom:730.738500px;}
.y18f{bottom:731.232000px;}
.y1f7{bottom:736.728000px;}
.y153{bottom:740.496000px;}
.y2d{bottom:740.836500px;}
.y22a{bottom:742.413000px;}
.y15b{bottom:747.126000px;}
.y8c{bottom:748.716000px;}
.y60{bottom:749.568000px;}
.y1b5{bottom:750.483000px;}
.y15e{bottom:752.032500px;}
.y120{bottom:753.322500px;}
.y152{bottom:753.808500px;}
.y295{bottom:759.450000px;}
.y2c{bottom:760.293000px;}
.y15a{bottom:760.438500px;}
.yef{bottom:760.768500px;}
.y25c{bottom:761.064000px;}
.y201{bottom:761.158500px;}
.y229{bottom:761.242500px;}
.y18e{bottom:764.797500px;}
.y14f{bottom:766.540500px;}
.y151{bottom:767.121000px;}
.y5f{bottom:768.397500px;}
.y1e0{bottom:772.483500px;}
.y7f{bottom:775.752000px;}
.y294{bottom:776.709000px;}
.y25b{bottom:778.638000px;}
.y2b{bottom:779.749500px;}
.yee{bottom:780.000000px;}
.y228{bottom:780.072000px;}
.y200{bottom:780.189000px;}
.y1b4{bottom:784.107000px;}
.y14e{bottom:785.937000px;}
.y11f{bottom:786.946500px;}
.y5e{bottom:787.227000px;}
.y1df{bottom:791.313000px;}
.y293{bottom:793.969500px;}
.y17d{bottom:794.850000px;}
.y25a{bottom:796.212000px;}
.ybf{bottom:797.710500px;}
.y1ff{bottom:798.765000px;}
.y227{bottom:798.901500px;}
.y2a{bottom:799.207500px;}
.y183{bottom:800.487000px;}
.y1b3{bottom:802.936500px;}
.yec{bottom:804.936000px;}
.y7e{bottom:805.086000px;}
.y14d{bottom:805.326000px;}
.y1f8{bottom:805.567500px;}
.y11e{bottom:805.776000px;}
.y5d{bottom:806.056500px;}
.y1de{bottom:810.142500px;}
.y159{bottom:810.171000px;}
.y17f{bottom:810.370500px;}
.y292{bottom:811.230000px;}
.y15d{bottom:815.050500px;}
.y182{bottom:817.501500px;}
.y226{bottom:817.731000px;}
.y1fe{bottom:817.975500px;}
.y80{bottom:821.290500px;}
.y1b2{bottom:821.766000px;}
.y259{bottom:822.753000px;}
.y158{bottom:823.483500px;}
.y11d{bottom:824.605500px;}
.y5c{bottom:824.886000px;}
.y291{bottom:828.490500px;}
.y1dc{bottom:828.972000px;}
.y1dd{bottom:834.396000px;}
.yed{bottom:836.028000px;}
.y225{bottom:836.560500px;}
.y29{bottom:837.792000px;}
.y18c{bottom:839.334000px;}
.ybb{bottom:840.595500px;}
.y11c{bottom:843.435000px;}
.y5b{bottom:843.715500px;}
.y290{bottom:845.751000px;}
.y1db{bottom:847.801500px;}
.ye6{bottom:848.680500px;}
.y258{bottom:849.292500px;}
.ydf{bottom:849.700500px;}
.y161{bottom:849.721500px;}
.y28{bottom:853.932000px;}
.y224{bottom:855.390000px;}
.ye0{bottom:857.070000px;}
.yba{bottom:859.425000px;}
.y87{bottom:859.857000px;}
.y11b{bottom:862.264500px;}
.y5a{bottom:862.545000px;}
.y28f{bottom:863.011500px;}
.ye5{bottom:864.217500px;}
.y1da{bottom:866.631000px;}
.y186{bottom:868.087500px;}
.y223{bottom:874.219500px;}
.y1f9{bottom:874.294500px;}
.y27{bottom:874.411500px;}
.y257{bottom:875.833500px;}
.y157{bottom:877.965000px;}
.yb9{bottom:878.254500px;}
.ye4{bottom:879.747000px;}
.y28e{bottom:880.272000px;}
.y150{bottom:881.367000px;}
.y59{bottom:881.374500px;}
.y1d9{bottom:885.460500px;}
.y11a{bottom:888.565500px;}
.y26{bottom:890.551500px;}
.y156{bottom:891.277500px;}
.y162{bottom:892.033500px;}
.y222{bottom:893.049000px;}
.y86{bottom:893.647500px;}
.ye3{bottom:895.275000px;}
.yb8{bottom:897.084000px;}
.y28d{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y188{bottom:902.317500px;}
.y256{bottom:902.374500px;}
.y1d8{bottom:904.290000px;}
.y18a{bottom:904.524000px;}
.y25{bottom:906.690000px;}
.y119{bottom:907.395000px;}
.y221{bottom:911.878500px;}
.y85{bottom:913.018500px;}
.y28c{bottom:914.793000px;}
.yb7{bottom:915.913500px;}
.y24{bottom:918.490500px;}
.y57{bottom:919.033500px;}
.y255{bottom:919.948500px;}
.y1d7{bottom:923.119500px;}
.y18d{bottom:924.256500px;}
.y118{bottom:926.224500px;}
.y220{bottom:930.708000px;}
.y28b{bottom:932.052000px;}
.yb6{bottom:934.743000px;}
.y254{bottom:937.522500px;}
.y56{bottom:937.863000px;}
.y23{bottom:938.970000px;}
.y89{bottom:940.452000px;}
.y185{bottom:940.743000px;}
.y1fa{bottom:942.910500px;}
.y1d6{bottom:946.432500px;}
.y28a{bottom:949.312500px;}
.y117{bottom:949.537500px;}
.ye7{bottom:953.167500px;}
.y14c{bottom:953.572500px;}
.y253{bottom:955.096500px;}
.y22{bottom:955.108500px;}
.y55{bottom:956.692500px;}
.yb5{bottom:958.054500px;}
.y88{bottom:959.823000px;}
.ye9{bottom:961.854000px;}
.ye8{bottom:964.695000px;}
.y289{bottom:966.573000px;}
.y116{bottom:968.367000px;}
.y84{bottom:969.055500px;}
.y189{bottom:970.278000px;}
.y7d{bottom:970.701000px;}
.y14b{bottom:972.402000px;}
.y252{bottom:972.670500px;}
.y54{bottom:975.522000px;}
.yde{bottom:976.380000px;}
.y1d5{bottom:976.860000px;}
.ye2{bottom:976.864500px;}
.y288{bottom:983.833500px;}
.y115{bottom:987.196500px;}
.y83{bottom:988.426500px;}
.y251{bottom:990.244500px;}
.y14a{bottom:991.231500px;}
.yb4{bottom:991.678500px;}
.ye1{bottom:992.392500px;}
.y53{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y184{bottom:998.451000px;}
.y287{bottom:1001.094000px;}
.y114{bottom:1006.026000px;}
.y250{bottom:1007.818500px;}
.y1b1{bottom:1010.061000px;}
.yb3{bottom:1010.508000px;}
.y1fb{bottom:1011.750000px;}
.y52{bottom:1013.181000px;}
.y149{bottom:1014.543000px;}
.ydd{bottom:1016.080500px;}
.y286{bottom:1018.354500px;}
.y8b{bottom:1018.806000px;}
.y113{bottom:1024.855500px;}
.y24f{bottom:1025.392500px;}
.y1d4{bottom:1027.516500px;}
.y18b{bottom:1027.696500px;}
.yb2{bottom:1029.337500px;}
.y82{bottom:1030.572000px;}
.ydc{bottom:1031.854500px;}
.y51{bottom:1032.010500px;}
.y1b0{bottom:1033.372500px;}
.y285{bottom:1035.615000px;}
.y8a{bottom:1038.168000px;}
.y5{bottom:1041.199500px;}
.y24e{bottom:1042.966500px;}
.y112{bottom:1043.685000px;}
.y181{bottom:1046.557500px;}
.yb1{bottom:1048.167000px;}
.y81{bottom:1049.941500px;}
.y50{bottom:1050.840000px;}
.y284{bottom:1052.875500px;}
.y17e{bottom:1056.448500px;}
.y111{bottom:1062.513000px;}
.y180{bottom:1063.570500px;}
.y7c{bottom:1066.983000px;}
.yb0{bottom:1066.996500px;}
.y1d3{bottom:1067.766000px;}
.y4{bottom:1069.443000px;}
.y24d{bottom:1069.507500px;}
.y4f{bottom:1069.669500px;}
.y283{bottom:1070.134500px;}
.yeb{bottom:1076.998500px;}
.y1fc{bottom:1079.953500px;}
.y21f{bottom:1081.342500px;}
.yaf{bottom:1085.826000px;}
.y24c{bottom:1087.081500px;}
.y282{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y1d2{bottom:1088.725500px;}
.yea{bottom:1092.526500px;}
.y187{bottom:1097.169000px;}
.y3{bottom:1097.688000px;}
.ydb{bottom:1100.272500px;}
.yae{bottom:1104.655500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h1a{height:29.744413px;}
.ha{height:30.461558px;}
.h9{height:33.112997px;}
.h1d{height:33.893722px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.hb{height:35.440852px;}
.h17{height:37.299974px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h12{height:40.504048px;}
.h10{height:43.038432px;}
.h13{height:43.515609px;}
.h11{height:43.516637px;}
.h1e{height:44.597206px;}
.h1b{height:45.567245px;}
.h1c{height:46.714950px;}
.h19{height:49.426637px;}
.h4{height:50.629933px;}
.h2{height:50.930649px;}
.h16{height:51.359539px;}
.h18{height:52.795933px;}
.h6{height:54.405312px;}
.h20{height:58.782749px;}
.h1f{height:58.788749px;}
.h5{height:77.469696px;}
.h3{height:94.491000px;}
.h15{height:97.144637px;}
.h14{height:162.124637px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.555600px;}
.x97{left:62.967000px;}
.xad{left:79.023000px;}
.xba{left:84.645000px;}
.xaf{left:85.891500px;}
.xa8{left:90.090000px;}
.xa9{left:101.298000px;}
.xab{left:102.381000px;}
.xaa{left:113.589000px;}
.xa7{left:122.605500px;}
.xb0{left:143.118000px;}
.xae{left:183.804000px;}
.x98{left:239.422500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xa4{left:258.844500px;}
.x3c{left:262.537500px;}
.x7f{left:266.046000px;}
.x72{left:270.037500px;}
.x5{left:271.221000px;}
.x18{left:272.334000px;}
.x73{left:274.645500px;}
.x8f{left:276.580500px;}
.x19{left:279.805500px;}
.xb3{left:281.187000px;}
.x9{left:282.786000px;}
.x4f{left:285.490500px;}
.x22{left:286.780500px;}
.x84{left:289.143000px;}
.x8a{left:291.094500px;}
.xb2{left:292.395000px;}
.x40{left:296.434500px;}
.x4a{left:298.984500px;}
.x85{left:304.087500px;}
.x28{left:307.057500px;}
.x4c{left:308.086500px;}
.x7{left:309.480000px;}
.x41{left:311.962500px;}
.xb1{left:313.702500px;}
.x7c{left:316.366500px;}
.x8{left:321.192000px;}
.x34{left:325.827000px;}
.x7d{left:328.779000px;}
.x7e{left:332.248500px;}
.x23{left:336.424500px;}
.x1c{left:339.807000px;}
.x24{left:341.235000px;}
.x95{left:344.775000px;}
.x5c{left:351.100500px;}
.x1d{left:354.751500px;}
.x5b{left:356.145000px;}
.x3d{left:359.787000px;}
.x64{left:368.898000px;}
.xe{left:371.853000px;}
.x50{left:376.450500px;}
.x3e{left:377.874000px;}
.xf{left:379.324500px;}
.x54{left:381.913500px;}
.x92{left:385.777500px;}
.x51{left:387.727500px;}
.xb9{left:390.888000px;}
.x3f{left:391.926000px;}
.x69{left:396.508500px;}
.x1e{left:397.993500px;}
.x4d{left:399.190500px;}
.x68{left:401.739000px;}
.x6e{left:409.726500px;}
.x4e{left:414.135000px;}
.x36{left:418.101000px;}
.xa2{left:419.229000px;}
.x6b{left:421.663500px;}
.x76{left:423.351000px;}
.xa3{left:425.565000px;}
.x6a{left:426.894000px;}
.x75{left:430.096500px;}
.x74{left:435.732000px;}
.x6c{left:439.597500px;}
.xac{left:449.602500px;}
.x37{left:451.177500px;}
.x66{left:452.518500px;}
.x65{left:457.563000px;}
.x86{left:464.035500px;}
.x38{left:466.122000px;}
.x67{left:470.452500px;}
.x5a{left:472.539000px;}
.x8b{left:476.337000px;}
.x59{left:477.768000px;}
.x81{left:483.108000px;}
.x9c{left:485.719500px;}
.x9d{left:492.057000px;}
.x6d{left:495.753000px;}
.x82{left:503.886000px;}
.x53{left:507.895500px;}
.x20{left:511.554000px;}
.x52{left:516.282000px;}
.x8d{left:521.160000px;}
.x7a{left:523.248000px;}
.x55{left:527.934000px;}
.x2d{left:534.063000px;}
.x2f{left:537.855000px;}
.xb4{left:541.807500px;}
.x93{left:544.386000px;}
.x2e{left:549.006000px;}
.x30{left:552.798000px;}
.x94{left:556.602000px;}
.x45{left:562.746000px;}
.x32{left:565.935000px;}
.x44{left:568.119000px;}
.x79{left:570.396000px;}
.x77{left:574.467000px;}
.x43{left:576.744000px;}
.x49{left:578.248500px;}
.x33{left:580.878000px;}
.x87{left:585.684000px;}
.x42{left:589.608000px;}
.x78{left:591.525000px;}
.x80{left:593.908500px;}
.x46{left:597.918000px;}
.x58{left:600.420000px;}
.x57{left:605.650500px;}
.xa{left:616.684500px;}
.xb{left:624.156000px;}
.xc{left:627.895500px;}
.x3a{left:630.162000px;}
.x25{left:631.533000px;}
.xd{left:635.368500px;}
.xa5{left:637.924500px;}
.x10{left:640.210500px;}
.x8e{left:642.562500px;}
.x3b{left:645.106500px;}
.x1f{left:646.621500px;}
.x11{left:647.682000px;}
.x9e{left:652.830000px;}
.x39{left:655.687500px;}
.x56{left:658.569000px;}
.x8c{left:659.887500px;}
.x88{left:664.279500px;}
.x96{left:670.131000px;}
.x61{left:675.396000px;}
.xb6{left:683.961000px;}
.x62{left:690.339000px;}
.xb7{left:696.252000px;}
.x26{left:697.945500px;}
.xa1{left:703.039500px;}
.xb8{left:706.267500px;}
.x35{left:712.294500px;}
.x29{left:714.769500px;}
.x2a{left:722.241000px;}
.x5d{left:723.657000px;}
.x99{left:727.015500px;}
.x5e{left:730.216500px;}
.x83{left:732.598500px;}
.xb5{left:733.734000px;}
.x6f{left:735.061500px;}
.x7b{left:741.085500px;}
.x5f{left:743.250000px;}
.x70{left:745.806000px;}
.x71{left:748.101000px;}
.x1a{left:754.104000px;}
.x14{left:755.643000px;}
.x4b{left:760.059000px;}
.x1b{left:761.575500px;}
.x15{left:763.114500px;}
.x27{left:764.359500px;}
.x16{left:766.798500px;}
.x21{left:770.443500px;}
.xa6{left:773.157000px;}
.x17{left:774.270000px;}
.x89{left:777.720000px;}
.x47{left:781.488000px;}
.x31{left:785.968500px;}
.x9f{left:790.338000px;}
.x9a{left:791.884500px;}
.x48{left:797.016000px;}
.x63{left:800.088000px;}
.xa0{left:803.533500px;}
.x9b{left:817.585500px;}
.x2b{left:818.893500px;}
.x12{left:825.318000px;}
.x90{left:828.579000px;}
.x60{left:830.418000px;}
.x13{left:832.789500px;}
.x2c{left:833.838000px;}
.x91{left:837.075000px;}
@media print{
.v3{vertical-align:-51.269333pt;}
.v2{vertical-align:-15.429333pt;}
.v9{vertical-align:-12.981333pt;}
.v8{vertical-align:-10.010667pt;}
.va{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.925333pt;}
.v7{vertical-align:5.253333pt;}
.vb{vertical-align:9.706667pt;}
.v1{vertical-align:19.285333pt;}
.vc{vertical-align:22.858667pt;}
.v5{vertical-align:47.669333pt;}
.v4{vertical-align:52.714667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.001026pt;}
.ls14{letter-spacing:0.596215pt;}
.ls27{letter-spacing:0.637762pt;}
.ls29{letter-spacing:0.643096pt;}
.ls1f{letter-spacing:0.663756pt;}
.ls19{letter-spacing:0.665067pt;}
.ls11{letter-spacing:0.798933pt;}
.ls15{letter-spacing:1.076267pt;}
.ls6{letter-spacing:1.133683pt;}
.ls17{letter-spacing:1.193600pt;}
.ls0{letter-spacing:1.654338pt;}
.ls10{letter-spacing:1.949372pt;}
.ls12{letter-spacing:3.980179pt;}
.lsb{letter-spacing:8.129482pt;}
.ls16{letter-spacing:8.567467pt;}
.ls1{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.185570pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2b{letter-spacing:11.954133pt;}
.ls2c{letter-spacing:11.959467pt;}
.ls18{letter-spacing:12.493372pt;}
.ls13{letter-spacing:13.029709pt;}
.ls9{letter-spacing:13.070931pt;}
.ls22{letter-spacing:13.124065pt;}
.ls2a{letter-spacing:13.177199pt;}
.ls7{letter-spacing:13.220689pt;}
.lsf{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.336601pt;}
.ls24{letter-spacing:13.442868pt;}
.ls25{letter-spacing:13.549136pt;}
.ls21{letter-spacing:15.400429pt;}
.lse{letter-spacing:15.780758pt;}
.ls23{letter-spacing:16.170819pt;}
.lsd{letter-spacing:16.365231pt;}
.ls20{letter-spacing:20.737067pt;}
.ls1e{letter-spacing:20.813762pt;}
.ls1c{letter-spacing:26.593067pt;}
.ls1d{letter-spacing:29.249067pt;}
.ls1a{letter-spacing:29.254400pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls28{letter-spacing:93.998400pt;}
.ls26{letter-spacing:116.958400pt;}
.lsa{letter-spacing:1277.993600pt;}
.ws72{word-spacing:-21.412948pt;}
.ws3b{word-spacing:-13.283467pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws26{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws5b{word-spacing:-4.463245pt;}
.ws59{word-spacing:-4.410111pt;}
.wsa9{word-spacing:-3.825664pt;}
.ws67{word-spacing:-3.763454pt;}
.ws68{word-spacing:-3.759509pt;}
.ws5c{word-spacing:-3.570605pt;}
.ws5a{word-spacing:-3.528098pt;}
.ws3d{word-spacing:-2.869248pt;}
.wsa4{word-spacing:-2.677965pt;}
.ws3e{word-spacing:-2.630144pt;}
.wsa3{word-spacing:-2.444158pt;}
.ws43{word-spacing:-2.391024pt;}
.ws22{word-spacing:-1.912819pt;}
.wsaa{word-spacing:-1.817190pt;}
.ws9d{word-spacing:-1.806551pt;}
.ws57{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.ws2e{word-spacing:-1.594016pt;}
.wsa5{word-spacing:-1.578086pt;}
.ws89{word-spacing:-1.540882pt;}
.ws84{word-spacing:-1.487748pt;}
.ws9f{word-spacing:-1.381481pt;}
.ws51{word-spacing:-1.222079pt;}
.wsab{word-spacing:-1.195520pt;}
.ws4{word-spacing:-1.175671pt;}
.ws33{word-spacing:-1.168945pt;}
.ws73{word-spacing:-1.115811pt;}
.wsc0{word-spacing:-0.908595pt;}
.ws7d{word-spacing:-0.903276pt;}
.wsbf{word-spacing:-0.860774pt;}
.ws4a{word-spacing:-0.850142pt;}
.wsad{word-spacing:-0.812954pt;}
.ws64{word-spacing:-0.797008pt;}
.wsac{word-spacing:-0.765133pt;}
.ws81{word-spacing:-0.743874pt;}
.ws76{word-spacing:-0.690740pt;}
.wsbd{word-spacing:-0.669491pt;}
.ws86{word-spacing:-0.637606pt;}
.ws30{word-spacing:-0.584473pt;}
.ws71{word-spacing:-0.531339pt;}
.wsa0{word-spacing:-0.371937pt;}
.ws46{word-spacing:-0.318803pt;}
.ws35{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.159402pt;}
.ws9a{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.ws5d{word-spacing:-0.095642pt;}
.ws23{word-spacing:-0.053134pt;}
.ws13{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.002540pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws15{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws14{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.wsb5{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws27{word-spacing:0.265669pt;}
.ws16{word-spacing:0.286925pt;}
.ws50{word-spacing:0.318803pt;}
.ws2c{word-spacing:0.371937pt;}
.ws40{word-spacing:0.425071pt;}
.ws80{word-spacing:0.478205pt;}
.wsaf{word-spacing:0.526029pt;}
.wsae{word-spacing:0.544889pt;}
.ws54{word-spacing:0.584473pt;}
.ws2b{word-spacing:0.637606pt;}
.ws79{word-spacing:0.663213pt;}
.ws2d{word-spacing:0.690740pt;}
.ws42{word-spacing:0.743874pt;}
.ws6e{word-spacing:0.850142pt;}
.ws9c{word-spacing:0.956410pt;}
.ws52{word-spacing:1.062677pt;}
.ws6f{word-spacing:1.115811pt;}
.wsbc{word-spacing:1.147699pt;}
.ws47{word-spacing:1.168945pt;}
.wsc1{word-spacing:1.195520pt;}
.ws55{word-spacing:1.275213pt;}
.ws18{word-spacing:1.291162pt;}
.ws83{word-spacing:1.328347pt;}
.wsa7{word-spacing:1.338982pt;}
.ws5f{word-spacing:1.381481pt;}
.wsbb{word-spacing:1.386803pt;}
.ws66{word-spacing:1.434614pt;}
.ws8d{word-spacing:1.487748pt;}
.ws24{word-spacing:1.540882pt;}
.ws39{word-spacing:1.594016pt;}
.ws4f{word-spacing:1.647150pt;}
.ws85{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.wsba{word-spacing:1.769370pt;}
.ws9{word-spacing:1.785293pt;}
.ws3a{word-spacing:1.859685pt;}
.ws37{word-spacing:1.912819pt;}
.wsbe{word-spacing:1.960653pt;}
.ws1b{word-spacing:1.965953pt;}
.ws69{word-spacing:2.019087pt;}
.ws2a{word-spacing:2.125355pt;}
.ws94{word-spacing:2.134362pt;}
.ws95{word-spacing:2.178489pt;}
.ws41{word-spacing:2.231622pt;}
.ws49{word-spacing:2.284756pt;}
.ws88{word-spacing:2.337890pt;}
.ws45{word-spacing:2.391024pt;}
.ws58{word-spacing:2.444158pt;}
.ws60{word-spacing:2.497292pt;}
.ws6c{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws4b{word-spacing:2.603559pt;}
.ws36{word-spacing:2.709827pt;}
.wsb3{word-spacing:2.862729pt;}
.wsb9{word-spacing:2.867772pt;}
.ws9b{word-spacing:2.869229pt;}
.wsb4{word-spacing:2.869248pt;}
.wsa1{word-spacing:2.975497pt;}
.ws7c{word-spacing:3.081764pt;}
.ws6d{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.ws31{word-spacing:3.241166pt;}
.ws44{word-spacing:3.294300pt;}
.ws53{word-spacing:3.400567pt;}
.wsa8{word-spacing:3.443098pt;}
.ws4e{word-spacing:3.506835pt;}
.ws56{word-spacing:3.559969pt;}
.ws6a{word-spacing:3.613103pt;}
.ws8c{word-spacing:3.666237pt;}
.ws48{word-spacing:3.719371pt;}
.wsb1{word-spacing:3.730022pt;}
.ws87{word-spacing:3.772505pt;}
.wsb2{word-spacing:3.777843pt;}
.ws3f{word-spacing:4.038174pt;}
.ws5e{word-spacing:4.091308pt;}
.wsa2{word-spacing:4.144442pt;}
.wsa6{word-spacing:4.208230pt;}
.ws8e{word-spacing:4.250709pt;}
.ws7f{word-spacing:4.356977pt;}
.wsc2{word-spacing:4.399514pt;}
.ws7a{word-spacing:4.410111pt;}
.wsb6{word-spacing:4.447334pt;}
.ws29{word-spacing:4.463245pt;}
.wsb8{word-spacing:4.495155pt;}
.ws34{word-spacing:4.516379pt;}
.ws7b{word-spacing:4.675780pt;}
.ws28{word-spacing:4.782048pt;}
.ws75{word-spacing:5.260253pt;}
.ws8f{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws61{word-spacing:5.419654pt;}
.ws11{word-spacing:5.467459pt;}
.ws9e{word-spacing:5.525922pt;}
.wsb7{word-spacing:5.595034pt;}
.ws74{word-spacing:5.685324pt;}
.ws77{word-spacing:5.791591pt;}
.ws70{word-spacing:5.844725pt;}
.ws1c{word-spacing:5.950993pt;}
.ws65{word-spacing:6.110395pt;}
.ws38{word-spacing:6.322930pt;}
.ws7e{word-spacing:6.641733pt;}
.ws8b{word-spacing:6.694867pt;}
.ws63{word-spacing:7.332474pt;}
.ws6b{word-spacing:7.545009pt;}
.ws91{word-spacing:7.553028pt;}
.wse{word-spacing:7.699075pt;}
.ws93{word-spacing:7.984297pt;}
.ws92{word-spacing:10.936553pt;}
.ws82{word-spacing:13.250700pt;}
.ws90{word-spacing:13.402963pt;}
.ws6{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.ws2{word-spacing:40.941867pt;}
.ws99{word-spacing:54.148000pt;}
.ws3{word-spacing:54.221867pt;}
.ws98{word-spacing:67.429600pt;}
.ws97{word-spacing:77.108000pt;}
.ws96{word-spacing:90.394933pt;}
.ws4c{word-spacing:362.262227pt;}
.ws4d{word-spacing:670.530145pt;}
.ws3c{word-spacing:807.998883pt;}
.ws78{word-spacing:913.983162pt;}
._2d{margin-left:-1064.109759pt;}
._19{margin-left:-538.925120pt;}
._23{margin-left:-8.196135pt;}
._1e{margin-left:-7.066804pt;}
._c{margin-left:-6.168883pt;}
._8{margin-left:-4.718299pt;}
._1d{margin-left:-3.719371pt;}
._4{margin-left:-2.752326pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._0{width:2.653423pt;}
._24{width:3.985040pt;}
._31{width:7.300622pt;}
._28{width:8.302336pt;}
._30{width:9.557370pt;}
._32{width:10.516715pt;}
._5{width:11.526787pt;}
._13{width:12.486459pt;}
._9{width:13.915853pt;}
._1a{width:14.818944pt;}
._a{width:15.788988pt;}
._e{width:16.697487pt;}
._b{width:17.701820pt;}
._26{width:18.656714pt;}
._12{width:19.613123pt;}
._17{width:20.728934pt;}
._15{width:22.170275pt;}
._6{width:23.063232pt;}
._27{width:23.963374pt;}
._14{width:25.079185pt;}
._16{width:26.779469pt;}
._2a{width:27.895280pt;}
._7{width:29.011008pt;}
._25{width:30.238525pt;}
._11{width:31.455249pt;}
._1c{width:33.207151pt;}
._d{width:34.855817pt;}
._1f{width:39.159660pt;}
._1{width:48.381897pt;}
._33{width:54.993920pt;}
._20{width:83.154501pt;}
._2f{width:93.998400pt;}
._2e{width:116.958400pt;}
._1b{width:209.820211pt;}
._21{width:290.846335pt;}
._22{width:298.793002pt;}
._29{width:339.192934pt;}
._18{width:388.470822pt;}
._2c{width:892.545084pt;}
._f{width:900.822961pt;}
._2b{width:2250.413067pt;}
._10{width:2271.666400pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fsa{font-size:53.132612pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fsb{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y4b{bottom:28.346667pt;}
.y148{bottom:80.629333pt;}
.yda{bottom:84.788000pt;}
.y281{bottom:90.297333pt;}
.y21{bottom:91.398667pt;}
.y110{bottom:93.673333pt;}
.y147{bottom:97.366667pt;}
.y4a{bottom:99.246667pt;}
.yad{bottom:99.737333pt;}
.yd9{bottom:101.525333pt;}
.y280{bottom:105.640000pt;}
.y20{bottom:107.298667pt;}
.y24b{bottom:107.592000pt;}
.y10f{bottom:110.410667pt;}
.y146{bottom:114.104000pt;}
.y1af{bottom:114.390667pt;}
.y49{bottom:115.984000pt;}
.yac{bottom:116.474667pt;}
.yd8{bottom:118.262667pt;}
.y21e{bottom:118.358667pt;}
.y27f{bottom:120.982667pt;}
.y1f{bottom:123.200000pt;}
.y24a{bottom:124.329333pt;}
.y17c{bottom:124.992000pt;}
.y10e{bottom:127.148000pt;}
.y145{bottom:130.841333pt;}
.y1ae{bottom:131.128000pt;}
.y48{bottom:132.721333pt;}
.yab{bottom:133.212000pt;}
.yd7{bottom:135.000000pt;}
.y21d{bottom:135.096000pt;}
.y27e{bottom:136.325333pt;}
.y1e{bottom:139.100000pt;}
.y249{bottom:141.066667pt;}
.y17b{bottom:141.729333pt;}
.y10d{bottom:143.885333pt;}
.y144{bottom:147.578667pt;}
.y1ad{bottom:147.865333pt;}
.y47{bottom:149.458667pt;}
.yaa{bottom:149.949333pt;}
.y27d{bottom:151.668000pt;}
.yd6{bottom:151.737333pt;}
.y21c{bottom:151.833333pt;}
.y1d{bottom:155.000000pt;}
.y248{bottom:157.804000pt;}
.y17a{bottom:158.466667pt;}
.y10c{bottom:160.622667pt;}
.y143{bottom:164.316000pt;}
.y1ac{bottom:164.602667pt;}
.y46{bottom:166.196000pt;}
.ya9{bottom:166.686667pt;}
.y27c{bottom:167.010667pt;}
.yd5{bottom:168.474667pt;}
.y21b{bottom:168.570667pt;}
.y1d1{bottom:168.766667pt;}
.y1c{bottom:170.901333pt;}
.y247{bottom:174.541333pt;}
.y179{bottom:175.204000pt;}
.y10b{bottom:177.360000pt;}
.y141{bottom:181.053333pt;}
.y1ab{bottom:181.340000pt;}
.y142{bottom:181.533333pt;}
.y27b{bottom:182.353333pt;}
.y45{bottom:182.933333pt;}
.ya8{bottom:183.424000pt;}
.yd4{bottom:185.212000pt;}
.y21a{bottom:185.308000pt;}
.y1d0{bottom:185.504000pt;}
.y1b{bottom:186.801333pt;}
.y246{bottom:191.278667pt;}
.y178{bottom:191.941333pt;}
.y10a{bottom:194.097333pt;}
.y27a{bottom:197.694667pt;}
.y13f{bottom:197.790667pt;}
.y1aa{bottom:198.077333pt;}
.y140{bottom:198.270667pt;}
.y44{bottom:199.669333pt;}
.ya7{bottom:200.161333pt;}
.yd3{bottom:201.949333pt;}
.y219{bottom:202.045333pt;}
.y1cf{bottom:202.241333pt;}
.y1a{bottom:202.701333pt;}
.y245{bottom:208.016000pt;}
.y177{bottom:208.678667pt;}
.y109{bottom:210.834667pt;}
.y279{bottom:213.037333pt;}
.y7b{bottom:214.376000pt;}
.y13d{bottom:214.528000pt;}
.y1a9{bottom:214.814667pt;}
.y13e{bottom:215.008000pt;}
.y43{bottom:216.406667pt;}
.ya6{bottom:216.898667pt;}
.yd2{bottom:218.686667pt;}
.y218{bottom:218.782667pt;}
.y1ce{bottom:218.978667pt;}
.y244{bottom:224.753333pt;}
.y176{bottom:225.416000pt;}
.y108{bottom:227.572000pt;}
.y278{bottom:228.380000pt;}
.y7a{bottom:231.113333pt;}
.y13c{bottom:231.265333pt;}
.y1a8{bottom:231.552000pt;}
.y42{bottom:233.144000pt;}
.ya5{bottom:233.634667pt;}
.yd1{bottom:235.424000pt;}
.y217{bottom:235.520000pt;}
.y1cd{bottom:235.716000pt;}
.y243{bottom:241.490667pt;}
.y175{bottom:242.153333pt;}
.y277{bottom:243.722667pt;}
.y107{bottom:244.308000pt;}
.y79{bottom:247.850667pt;}
.y13b{bottom:248.002667pt;}
.y1a7{bottom:248.289333pt;}
.y41{bottom:249.881333pt;}
.ya4{bottom:250.372000pt;}
.yd0{bottom:252.161333pt;}
.y216{bottom:252.257333pt;}
.y1cc{bottom:252.453333pt;}
.y242{bottom:258.228000pt;}
.y174{bottom:258.890667pt;}
.y276{bottom:259.065333pt;}
.y106{bottom:261.045333pt;}
.y78{bottom:264.588000pt;}
.y13a{bottom:264.740000pt;}
.y1a6{bottom:265.026667pt;}
.y40{bottom:266.618667pt;}
.ya3{bottom:267.109333pt;}
.ycf{bottom:268.898667pt;}
.y215{bottom:268.994667pt;}
.y1cb{bottom:269.190667pt;}
.y19{bottom:273.154667pt;}
.y275{bottom:274.408000pt;}
.y241{bottom:274.965333pt;}
.y173{bottom:275.628000pt;}
.y1f5{bottom:275.686667pt;}
.y105{bottom:277.782667pt;}
.y77{bottom:281.325333pt;}
.y139{bottom:281.477333pt;}
.y1a5{bottom:281.764000pt;}
.y3f{bottom:283.356000pt;}
.ya2{bottom:283.846667pt;}
.yce{bottom:285.636000pt;}
.y214{bottom:285.732000pt;}
.y1ca{bottom:285.926667pt;}
.y18{bottom:289.054667pt;}
.y274{bottom:289.750667pt;}
.y240{bottom:291.702667pt;}
.y172{bottom:292.365333pt;}
.y104{bottom:294.520000pt;}
.y76{bottom:298.062667pt;}
.y138{bottom:298.214667pt;}
.y1a4{bottom:298.501333pt;}
.y3e{bottom:300.093333pt;}
.y1ec{bottom:300.337333pt;}
.ya1{bottom:300.584000pt;}
.ycd{bottom:302.373333pt;}
.y213{bottom:302.469333pt;}
.y1c9{bottom:302.664000pt;}
.y17{bottom:304.954667pt;}
.y273{bottom:305.093333pt;}
.y23f{bottom:308.440000pt;}
.y171{bottom:309.102667pt;}
.y103{bottom:311.257333pt;}
.y75{bottom:314.800000pt;}
.y137{bottom:314.952000pt;}
.y1a3{bottom:315.238667pt;}
.y3d{bottom:316.830667pt;}
.ya0{bottom:317.321333pt;}
.ycc{bottom:319.109333pt;}
.y212{bottom:319.206667pt;}
.y1e1{bottom:320.394667pt;}
.y272{bottom:320.434667pt;}
.y16{bottom:320.856000pt;}
.y1c8{bottom:323.386667pt;}
.y23e{bottom:325.177333pt;}
.y102{bottom:327.994667pt;}
.y170{bottom:329.825333pt;}
.y74{bottom:331.537333pt;}
.y136{bottom:331.689333pt;}
.y1a2{bottom:331.976000pt;}
.y3c{bottom:333.568000pt;}
.y9f{bottom:334.058667pt;}
.y271{bottom:335.777333pt;}
.ycb{bottom:335.846667pt;}
.y211{bottom:335.944000pt;}
.y23d{bottom:341.914667pt;}
.y101{bottom:344.732000pt;}
.y1e2{bottom:346.896000pt;}
.y73{bottom:348.274667pt;}
.y135{bottom:348.426667pt;}
.y1a1{bottom:348.713333pt;}
.y3b{bottom:350.305333pt;}
.y9e{bottom:350.796000pt;}
.y270{bottom:351.120000pt;}
.y1f4{bottom:351.812000pt;}
.yca{bottom:352.584000pt;}
.y210{bottom:352.681333pt;}
.y15{bottom:354.688000pt;}
.y23c{bottom:358.652000pt;}
.y16f{bottom:359.713333pt;}
.y100{bottom:361.469333pt;}
.y1c7{bottom:362.336000pt;}
.y72{bottom:365.012000pt;}
.y134{bottom:365.162667pt;}
.y1a0{bottom:365.450667pt;}
.y26f{bottom:366.462667pt;}
.y3a{bottom:367.042667pt;}
.y9d{bottom:367.533333pt;}
.y1f3{bottom:368.322667pt;}
.yc9{bottom:369.321333pt;}
.y20f{bottom:369.418667pt;}
.y14{bottom:370.589333pt;}
.y23b{bottom:375.389333pt;}
.y16e{bottom:376.450667pt;}
.y1c6{bottom:376.948000pt;}
.yff{bottom:378.206667pt;}
.y1e3{bottom:380.496000pt;}
.y71{bottom:381.749333pt;}
.y26e{bottom:381.805333pt;}
.y133{bottom:381.900000pt;}
.y19f{bottom:382.188000pt;}
.y39{bottom:383.780000pt;}
.y9c{bottom:384.270667pt;}
.y1f2{bottom:384.834667pt;}
.yc8{bottom:386.058667pt;}
.y20e{bottom:386.156000pt;}
.y13{bottom:386.489333pt;}
.y1c5{bottom:391.560000pt;}
.y23a{bottom:392.126667pt;}
.y16d{bottom:393.188000pt;}
.yfe{bottom:394.944000pt;}
.y26d{bottom:397.148000pt;}
.y70{bottom:398.486667pt;}
.y1c1{bottom:398.866667pt;}
.y19e{bottom:398.925333pt;}
.y38{bottom:400.517333pt;}
.y9b{bottom:401.008000pt;}
.y1f1{bottom:401.345333pt;}
.y1ed{bottom:402.316000pt;}
.yc7{bottom:402.796000pt;}
.y20d{bottom:402.893333pt;}
.y1c4{bottom:406.172000pt;}
.y239{bottom:408.864000pt;}
.y16c{bottom:409.925333pt;}
.yfd{bottom:411.681333pt;}
.y132{bottom:411.737333pt;}
.y26c{bottom:412.490667pt;}
.y1e4{bottom:414.096000pt;}
.y6f{bottom:415.224000pt;}
.y19d{bottom:415.662667pt;}
.y37{bottom:417.254667pt;}
.y9a{bottom:417.745333pt;}
.y1f0{bottom:417.857333pt;}
.y12{bottom:418.330667pt;}
.yc6{bottom:419.533333pt;}
.y20c{bottom:419.630667pt;}
.y1c3{bottom:420.784000pt;}
.y238{bottom:425.601333pt;}
.y16b{bottom:426.662667pt;}
.y26b{bottom:427.833333pt;}
.yfc{bottom:428.418667pt;}
.y6e{bottom:431.961333pt;}
.y19c{bottom:432.400000pt;}
.y36{bottom:433.992000pt;}
.y11{bottom:434.230667pt;}
.y1ef{bottom:434.368000pt;}
.y99{bottom:434.482667pt;}
.y1c2{bottom:435.396000pt;}
.yc5{bottom:436.270667pt;}
.y20b{bottom:436.368000pt;}
.y125{bottom:436.697333pt;}
.y237{bottom:442.338667pt;}
.y26a{bottom:443.176000pt;}
.y16a{bottom:443.400000pt;}
.yfb{bottom:445.156000pt;}
.y1e5{bottom:447.796000pt;}
.y6d{bottom:448.698667pt;}
.y19b{bottom:449.136000pt;}
.y1ee{bottom:450.878667pt;}
.y98{bottom:451.220000pt;}
.yc4{bottom:453.008000pt;}
.y20a{bottom:453.105333pt;}
.y35{bottom:454.714667pt;}
.y1c0{bottom:456.676000pt;}
.y269{bottom:458.517333pt;}
.y236{bottom:459.076000pt;}
.y169{bottom:460.136000pt;}
.yfa{bottom:461.893333pt;}
.y6c{bottom:465.436000pt;}
.y129{bottom:465.738667pt;}
.y128{bottom:465.784000pt;}
.y19a{bottom:465.873333pt;}
.y10{bottom:466.070667pt;}
.y97{bottom:467.957333pt;}
.yc3{bottom:469.745333pt;}
.y209{bottom:469.841333pt;}
.y1bf{bottom:471.286667pt;}
.y12b{bottom:473.830667pt;}
.y268{bottom:473.860000pt;}
.y235{bottom:475.813333pt;}
.y168{bottom:476.873333pt;}
.y127{bottom:477.657333pt;}
.yf9{bottom:478.630667pt;}
.y1e6{bottom:481.396000pt;}
.yf{bottom:481.972000pt;}
.y6b{bottom:482.173333pt;}
.y199{bottom:482.610667pt;}
.y96{bottom:484.694667pt;}
.y12a{bottom:485.756000pt;}
.y1bc{bottom:485.898667pt;}
.yc2{bottom:486.482667pt;}
.y208{bottom:486.578667pt;}
.y267{bottom:489.202667pt;}
.y126{bottom:489.574667pt;}
.y12f{bottom:491.430667pt;}
.y12e{bottom:491.912000pt;}
.y234{bottom:492.549333pt;}
.y167{bottom:493.610667pt;}
.yf8{bottom:495.368000pt;}
.ye{bottom:497.872000pt;}
.y6a{bottom:498.910667pt;}
.y198{bottom:499.348000pt;}
.y131{bottom:500.477333pt;}
.y1be{bottom:500.510667pt;}
.y130{bottom:500.958667pt;}
.y95{bottom:501.432000pt;}
.yc1{bottom:503.220000pt;}
.y207{bottom:503.316000pt;}
.y266{bottom:504.545333pt;}
.y233{bottom:509.286667pt;}
.y166{bottom:510.348000pt;}
.yf7{bottom:512.105333pt;}
.yd{bottom:513.772000pt;}
.y1e7{bottom:514.896000pt;}
.y1bd{bottom:515.122667pt;}
.y69{bottom:515.648000pt;}
.y197{bottom:516.085333pt;}
.y94{bottom:518.169333pt;}
.y265{bottom:519.888000pt;}
.y206{bottom:520.053333pt;}
.y34{bottom:521.514667pt;}
.y232{bottom:526.024000pt;}
.y165{bottom:527.085333pt;}
.yf6{bottom:528.842667pt;}
.yc{bottom:529.673333pt;}
.y68{bottom:532.384000pt;}
.y196{bottom:532.822667pt;}
.yc0{bottom:533.056000pt;}
.y93{bottom:534.906667pt;}
.y264{bottom:535.230667pt;}
.y1bb{bottom:536.402667pt;}
.y205{bottom:536.790667pt;}
.y33{bottom:538.809333pt;}
.y231{bottom:542.761333pt;}
.y164{bottom:543.822667pt;}
.yb{bottom:545.573333pt;}
.yf5{bottom:545.580000pt;}
.y1e8{bottom:548.596000pt;}
.y67{bottom:549.121333pt;}
.y195{bottom:549.560000pt;}
.y263{bottom:550.573333pt;}
.y92{bottom:551.644000pt;}
.y204{bottom:553.528000pt;}
.y12d{bottom:556.030667pt;}
.y230{bottom:559.498667pt;}
.ya{bottom:561.473333pt;}
.yf4{bottom:562.317333pt;}
.y1ba{bottom:564.509333pt;}
.y66{bottom:565.858667pt;}
.y262{bottom:565.916000pt;}
.y194{bottom:566.297333pt;}
.y12c{bottom:567.948000pt;}
.y91{bottom:568.381333pt;}
.y32{bottom:572.045333pt;}
.y163{bottom:573.658667pt;}
.y22f{bottom:576.236000pt;}
.y261{bottom:581.257333pt;}
.y7{bottom:581.358715pt;}
.y1e9{bottom:581.730667pt;}
.ybe{bottom:581.754667pt;}
.y65{bottom:582.596000pt;}
.y193{bottom:583.034667pt;}
.yf3{bottom:583.040000pt;}
.y203{bottom:583.364000pt;}
.y90{bottom:585.118667pt;}
.y31{bottom:589.340000pt;}
.y22e{bottom:592.973333pt;}
.ybd{bottom:594.933333pt;}
.y1b9{bottom:596.161333pt;}
.y260{bottom:596.600000pt;}
.y124{bottom:598.685333pt;}
.y64{bottom:599.333333pt;}
.y192{bottom:599.772000pt;}
.y202{bottom:600.460000pt;}
.y8f{bottom:601.856000pt;}
.y30{bottom:606.634667pt;}
.y160{bottom:606.641333pt;}
.ybc{bottom:608.112000pt;}
.y155{bottom:608.126667pt;}
.y22d{bottom:609.710667pt;}
.y25f{bottom:611.942667pt;}
.y15c{bottom:612.409333pt;}
.y1b8{bottom:612.898667pt;}
.yf2{bottom:612.928000pt;}
.y1ea{bottom:615.330667pt;}
.y123{bottom:615.422667pt;}
.y63{bottom:616.070667pt;}
.y191{bottom:616.509333pt;}
.y8e{bottom:618.593333pt;}
.y154{bottom:619.960000pt;}
.y15f{bottom:620.452000pt;}
.y2f{bottom:623.930667pt;}
.y1fd{bottom:625.110667pt;}
.y22c{bottom:626.448000pt;}
.y25e{bottom:627.285333pt;}
.y1b7{bottom:629.636000pt;}
.yf1{bottom:629.664000pt;}
.y122{bottom:632.160000pt;}
.y62{bottom:632.808000pt;}
.y190{bottom:633.246667pt;}
.y2e{bottom:641.225333pt;}
.y22b{bottom:643.185333pt;}
.y1f6{bottom:645.168000pt;}
.y1b6{bottom:646.373333pt;}
.yf0{bottom:646.401333pt;}
.y25d{bottom:646.613333pt;}
.y8d{bottom:648.429333pt;}
.y1eb{bottom:648.830667pt;}
.y121{bottom:648.897333pt;}
.y61{bottom:649.545333pt;}
.y18f{bottom:649.984000pt;}
.y1f7{bottom:654.869333pt;}
.y153{bottom:658.218667pt;}
.y2d{bottom:658.521333pt;}
.y22a{bottom:659.922667pt;}
.y15b{bottom:664.112000pt;}
.y8c{bottom:665.525333pt;}
.y60{bottom:666.282667pt;}
.y1b5{bottom:667.096000pt;}
.y15e{bottom:668.473333pt;}
.y120{bottom:669.620000pt;}
.y152{bottom:670.052000pt;}
.y295{bottom:675.066667pt;}
.y2c{bottom:675.816000pt;}
.y15a{bottom:675.945333pt;}
.yef{bottom:676.238667pt;}
.y25c{bottom:676.501333pt;}
.y201{bottom:676.585333pt;}
.y229{bottom:676.660000pt;}
.y18e{bottom:679.820000pt;}
.y14f{bottom:681.369333pt;}
.y151{bottom:681.885333pt;}
.y5f{bottom:683.020000pt;}
.y1e0{bottom:686.652000pt;}
.y7f{bottom:689.557333pt;}
.y294{bottom:690.408000pt;}
.y25b{bottom:692.122667pt;}
.y2b{bottom:693.110667pt;}
.yee{bottom:693.333333pt;}
.y228{bottom:693.397333pt;}
.y200{bottom:693.501333pt;}
.y1b4{bottom:696.984000pt;}
.y14e{bottom:698.610667pt;}
.y11f{bottom:699.508000pt;}
.y5e{bottom:699.757333pt;}
.y1df{bottom:703.389333pt;}
.y293{bottom:705.750667pt;}
.y17d{bottom:706.533333pt;}
.y25a{bottom:707.744000pt;}
.ybf{bottom:709.076000pt;}
.y1ff{bottom:710.013333pt;}
.y227{bottom:710.134667pt;}
.y2a{bottom:710.406667pt;}
.y183{bottom:711.544000pt;}
.y1b3{bottom:713.721333pt;}
.yec{bottom:715.498667pt;}
.y7e{bottom:715.632000pt;}
.y14d{bottom:715.845333pt;}
.y1f8{bottom:716.060000pt;}
.y11e{bottom:716.245333pt;}
.y5d{bottom:716.494667pt;}
.y1de{bottom:720.126667pt;}
.y159{bottom:720.152000pt;}
.y17f{bottom:720.329333pt;}
.y292{bottom:721.093333pt;}
.y15d{bottom:724.489333pt;}
.y182{bottom:726.668000pt;}
.y226{bottom:726.872000pt;}
.y1fe{bottom:727.089333pt;}
.y80{bottom:730.036000pt;}
.y1b2{bottom:730.458667pt;}
.y259{bottom:731.336000pt;}
.y158{bottom:731.985333pt;}
.y11d{bottom:732.982667pt;}
.y5c{bottom:733.232000pt;}
.y291{bottom:736.436000pt;}
.y1dc{bottom:736.864000pt;}
.y1dd{bottom:741.685333pt;}
.yed{bottom:743.136000pt;}
.y225{bottom:743.609333pt;}
.y29{bottom:744.704000pt;}
.y18c{bottom:746.074667pt;}
.ybb{bottom:747.196000pt;}
.y11c{bottom:749.720000pt;}
.y5b{bottom:749.969333pt;}
.y290{bottom:751.778667pt;}
.y1db{bottom:753.601333pt;}
.ye6{bottom:754.382667pt;}
.y258{bottom:754.926667pt;}
.ydf{bottom:755.289333pt;}
.y161{bottom:755.308000pt;}
.y28{bottom:759.050667pt;}
.y224{bottom:760.346667pt;}
.ye0{bottom:761.840000pt;}
.yba{bottom:763.933333pt;}
.y87{bottom:764.317333pt;}
.y11b{bottom:766.457333pt;}
.y5a{bottom:766.706667pt;}
.y28f{bottom:767.121333pt;}
.ye5{bottom:768.193333pt;}
.y1da{bottom:770.338667pt;}
.y186{bottom:771.633333pt;}
.y223{bottom:777.084000pt;}
.y1f9{bottom:777.150667pt;}
.y27{bottom:777.254667pt;}
.y257{bottom:778.518667pt;}
.y157{bottom:780.413333pt;}
.yb9{bottom:780.670667pt;}
.ye4{bottom:781.997333pt;}
.y28e{bottom:782.464000pt;}
.y150{bottom:783.437333pt;}
.y59{bottom:783.444000pt;}
.y1d9{bottom:787.076000pt;}
.y11a{bottom:789.836000pt;}
.y26{bottom:791.601333pt;}
.y156{bottom:792.246667pt;}
.y162{bottom:792.918667pt;}
.y222{bottom:793.821333pt;}
.y86{bottom:794.353333pt;}
.ye3{bottom:795.800000pt;}
.yb8{bottom:797.408000pt;}
.y28d{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y188{bottom:802.060000pt;}
.y256{bottom:802.110667pt;}
.y1d8{bottom:803.813333pt;}
.y18a{bottom:804.021333pt;}
.y25{bottom:805.946667pt;}
.y119{bottom:806.573333pt;}
.y221{bottom:810.558667pt;}
.y85{bottom:811.572000pt;}
.y28c{bottom:813.149333pt;}
.yb7{bottom:814.145333pt;}
.y24{bottom:816.436000pt;}
.y57{bottom:816.918667pt;}
.y255{bottom:817.732000pt;}
.y1d7{bottom:820.550667pt;}
.y18d{bottom:821.561333pt;}
.y118{bottom:823.310667pt;}
.y220{bottom:827.296000pt;}
.y28b{bottom:828.490667pt;}
.yb6{bottom:830.882667pt;}
.y254{bottom:833.353333pt;}
.y56{bottom:833.656000pt;}
.y23{bottom:834.640000pt;}
.y89{bottom:835.957333pt;}
.y185{bottom:836.216000pt;}
.y1fa{bottom:838.142667pt;}
.y1d6{bottom:841.273333pt;}
.y28a{bottom:843.833333pt;}
.y117{bottom:844.033333pt;}
.ye7{bottom:847.260000pt;}
.y14c{bottom:847.620000pt;}
.y253{bottom:848.974667pt;}
.y22{bottom:848.985333pt;}
.y55{bottom:850.393333pt;}
.yb5{bottom:851.604000pt;}
.y88{bottom:853.176000pt;}
.ye9{bottom:854.981333pt;}
.ye8{bottom:857.506667pt;}
.y289{bottom:859.176000pt;}
.y116{bottom:860.770667pt;}
.y84{bottom:861.382667pt;}
.y189{bottom:862.469333pt;}
.y7d{bottom:862.845333pt;}
.y14b{bottom:864.357333pt;}
.y252{bottom:864.596000pt;}
.y54{bottom:867.130667pt;}
.yde{bottom:867.893333pt;}
.y1d5{bottom:868.320000pt;}
.ye2{bottom:868.324000pt;}
.y288{bottom:874.518667pt;}
.y115{bottom:877.508000pt;}
.y83{bottom:878.601333pt;}
.y251{bottom:880.217333pt;}
.y14a{bottom:881.094667pt;}
.yb4{bottom:881.492000pt;}
.ye1{bottom:882.126667pt;}
.y53{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y184{bottom:887.512000pt;}
.y287{bottom:889.861333pt;}
.y114{bottom:894.245333pt;}
.y250{bottom:895.838667pt;}
.y1b1{bottom:897.832000pt;}
.yb3{bottom:898.229333pt;}
.y1fb{bottom:899.333333pt;}
.y52{bottom:900.605333pt;}
.y149{bottom:901.816000pt;}
.ydd{bottom:903.182667pt;}
.y286{bottom:905.204000pt;}
.y8b{bottom:905.605333pt;}
.y113{bottom:910.982667pt;}
.y24f{bottom:911.460000pt;}
.y1d4{bottom:913.348000pt;}
.y18b{bottom:913.508000pt;}
.yb2{bottom:914.966667pt;}
.y82{bottom:916.064000pt;}
.ydc{bottom:917.204000pt;}
.y51{bottom:917.342667pt;}
.y1b0{bottom:918.553333pt;}
.y285{bottom:920.546667pt;}
.y8a{bottom:922.816000pt;}
.y5{bottom:925.510667pt;}
.y24e{bottom:927.081333pt;}
.y112{bottom:927.720000pt;}
.y181{bottom:930.273333pt;}
.yb1{bottom:931.704000pt;}
.y81{bottom:933.281333pt;}
.y50{bottom:934.080000pt;}
.y284{bottom:935.889333pt;}
.y17e{bottom:939.065333pt;}
.y111{bottom:944.456000pt;}
.y180{bottom:945.396000pt;}
.y7c{bottom:948.429333pt;}
.yb0{bottom:948.441333pt;}
.y1d3{bottom:949.125333pt;}
.y4{bottom:950.616000pt;}
.y24d{bottom:950.673333pt;}
.y4f{bottom:950.817333pt;}
.y283{bottom:951.230667pt;}
.yeb{bottom:957.332000pt;}
.y1fc{bottom:959.958667pt;}
.y21f{bottom:961.193333pt;}
.yaf{bottom:965.178667pt;}
.y24c{bottom:966.294667pt;}
.y282{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y1d2{bottom:967.756000pt;}
.yea{bottom:971.134667pt;}
.y187{bottom:975.261333pt;}
.y3{bottom:975.722667pt;}
.ydb{bottom:978.020000pt;}
.yae{bottom:981.916000pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h1a{height:26.439478pt;}
.ha{height:27.076941pt;}
.h9{height:29.433775pt;}
.h1d{height:30.127753pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.hb{height:31.502979pt;}
.h17{height:33.155533pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h12{height:36.003598pt;}
.h10{height:38.256384pt;}
.h13{height:38.680541pt;}
.h11{height:38.681455pt;}
.h1e{height:39.641961pt;}
.h1b{height:40.504218pt;}
.h1c{height:41.524400pt;}
.h19{height:43.934788pt;}
.h4{height:45.004385pt;}
.h2{height:45.271688pt;}
.h16{height:45.652924pt;}
.h18{height:46.929718pt;}
.h6{height:48.360277pt;}
.h20{height:52.251332pt;}
.h1f{height:52.256666pt;}
.h5{height:68.861952pt;}
.h3{height:83.992000pt;}
.h15{height:86.350788pt;}
.h14{height:144.110788pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:52.049422pt;}
.x97{left:55.970667pt;}
.xad{left:70.242667pt;}
.xba{left:75.240000pt;}
.xaf{left:76.348000pt;}
.xa8{left:80.080000pt;}
.xa9{left:90.042667pt;}
.xab{left:91.005333pt;}
.xaa{left:100.968000pt;}
.xa7{left:108.982667pt;}
.xb0{left:127.216000pt;}
.xae{left:163.381333pt;}
.x98{left:212.820000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xa4{left:230.084000pt;}
.x3c{left:233.366667pt;}
.x7f{left:236.485333pt;}
.x72{left:240.033333pt;}
.x5{left:241.085333pt;}
.x18{left:242.074667pt;}
.x73{left:244.129333pt;}
.x8f{left:245.849333pt;}
.x19{left:248.716000pt;}
.xb3{left:249.944000pt;}
.x9{left:251.365333pt;}
.x4f{left:253.769333pt;}
.x22{left:254.916000pt;}
.x84{left:257.016000pt;}
.x8a{left:258.750667pt;}
.xb2{left:259.906667pt;}
.x40{left:263.497333pt;}
.x4a{left:265.764000pt;}
.x85{left:270.300000pt;}
.x28{left:272.940000pt;}
.x4c{left:273.854667pt;}
.x7{left:275.093333pt;}
.x41{left:277.300000pt;}
.xb1{left:278.846667pt;}
.x7c{left:281.214667pt;}
.x8{left:285.504000pt;}
.x34{left:289.624000pt;}
.x7d{left:292.248000pt;}
.x7e{left:295.332000pt;}
.x23{left:299.044000pt;}
.x1c{left:302.050667pt;}
.x24{left:303.320000pt;}
.x95{left:306.466667pt;}
.x5c{left:312.089333pt;}
.x1d{left:315.334667pt;}
.x5b{left:316.573333pt;}
.x3d{left:319.810667pt;}
.x64{left:327.909333pt;}
.xe{left:330.536000pt;}
.x50{left:334.622667pt;}
.x3e{left:335.888000pt;}
.xf{left:337.177333pt;}
.x54{left:339.478667pt;}
.x92{left:342.913333pt;}
.x51{left:344.646667pt;}
.xb9{left:347.456000pt;}
.x3f{left:348.378667pt;}
.x69{left:352.452000pt;}
.x1e{left:353.772000pt;}
.x4d{left:354.836000pt;}
.x68{left:357.101333pt;}
.x6e{left:364.201333pt;}
.x4e{left:368.120000pt;}
.x36{left:371.645333pt;}
.xa2{left:372.648000pt;}
.x6b{left:374.812000pt;}
.x76{left:376.312000pt;}
.xa3{left:378.280000pt;}
.x6a{left:379.461333pt;}
.x75{left:382.308000pt;}
.x74{left:387.317333pt;}
.x6c{left:390.753333pt;}
.xac{left:399.646667pt;}
.x37{left:401.046667pt;}
.x66{left:402.238667pt;}
.x65{left:406.722667pt;}
.x86{left:412.476000pt;}
.x38{left:414.330667pt;}
.x67{left:418.180000pt;}
.x5a{left:420.034667pt;}
.x8b{left:423.410667pt;}
.x59{left:424.682667pt;}
.x81{left:429.429333pt;}
.x9c{left:431.750667pt;}
.x9d{left:437.384000pt;}
.x6d{left:440.669333pt;}
.x82{left:447.898667pt;}
.x53{left:451.462667pt;}
.x20{left:454.714667pt;}
.x52{left:458.917333pt;}
.x8d{left:463.253333pt;}
.x7a{left:465.109333pt;}
.x55{left:469.274667pt;}
.x2d{left:474.722667pt;}
.x2f{left:478.093333pt;}
.xb4{left:481.606667pt;}
.x93{left:483.898667pt;}
.x2e{left:488.005333pt;}
.x30{left:491.376000pt;}
.x94{left:494.757333pt;}
.x45{left:500.218667pt;}
.x32{left:503.053333pt;}
.x44{left:504.994667pt;}
.x79{left:507.018667pt;}
.x77{left:510.637333pt;}
.x43{left:512.661333pt;}
.x49{left:513.998667pt;}
.x33{left:516.336000pt;}
.x87{left:520.608000pt;}
.x42{left:524.096000pt;}
.x78{left:525.800000pt;}
.x80{left:527.918667pt;}
.x46{left:531.482667pt;}
.x58{left:533.706667pt;}
.x57{left:538.356000pt;}
.xa{left:548.164000pt;}
.xb{left:554.805333pt;}
.xc{left:558.129333pt;}
.x3a{left:560.144000pt;}
.x25{left:561.362667pt;}
.xd{left:564.772000pt;}
.xa5{left:567.044000pt;}
.x10{left:569.076000pt;}
.x8e{left:571.166667pt;}
.x3b{left:573.428000pt;}
.x1f{left:574.774667pt;}
.x11{left:575.717333pt;}
.x9e{left:580.293333pt;}
.x39{left:582.833333pt;}
.x56{left:585.394667pt;}
.x8c{left:586.566667pt;}
.x88{left:590.470667pt;}
.x96{left:595.672000pt;}
.x61{left:600.352000pt;}
.xb6{left:607.965333pt;}
.x62{left:613.634667pt;}
.xb7{left:618.890667pt;}
.x26{left:620.396000pt;}
.xa1{left:624.924000pt;}
.xb8{left:627.793333pt;}
.x35{left:633.150667pt;}
.x29{left:635.350667pt;}
.x2a{left:641.992000pt;}
.x5d{left:643.250667pt;}
.x99{left:646.236000pt;}
.x5e{left:649.081333pt;}
.x83{left:651.198667pt;}
.xb5{left:652.208000pt;}
.x6f{left:653.388000pt;}
.x7b{left:658.742667pt;}
.x5f{left:660.666667pt;}
.x70{left:662.938667pt;}
.x71{left:664.978667pt;}
.x1a{left:670.314667pt;}
.x14{left:671.682667pt;}
.x4b{left:675.608000pt;}
.x1b{left:676.956000pt;}
.x15{left:678.324000pt;}
.x27{left:679.430667pt;}
.x16{left:681.598667pt;}
.x21{left:684.838667pt;}
.xa6{left:687.250667pt;}
.x17{left:688.240000pt;}
.x89{left:691.306667pt;}
.x47{left:694.656000pt;}
.x31{left:698.638667pt;}
.x9f{left:702.522667pt;}
.x9a{left:703.897333pt;}
.x48{left:708.458667pt;}
.x63{left:711.189333pt;}
.xa0{left:714.252000pt;}
.x9b{left:726.742667pt;}
.x2b{left:727.905333pt;}
.x12{left:733.616000pt;}
.x90{left:736.514667pt;}
.x60{left:738.149333pt;}
.x13{left:740.257333pt;}
.x2c{left:741.189333pt;}
.x91{left:744.066667pt;}
}


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