
/* 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_57ee31095d19.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_cd63621bcf44.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_393127077b3d.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_3db40ca6ef11.woff")format("woff");}.ff7{font-family:ff7;line-height:1.014000;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_304e187d3a5d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.504000;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_16f1ec370cec.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_18985324d1df.woff")format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_a695510a4dea.woff")format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_ee5564f7e097.woff")format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_7b4f466ab62f.woff")format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_a695510a4dea.woff")format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_f23339dac902.woff")format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_ffb9159ec3bd.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_628e65351f8c.woff")format("woff");}.ff11{font-family:ff11;line-height:0.580000;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;}
.m26{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);}
.m6{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);}
.m9{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);}
.m3{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);}
.m25{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);}
.md{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);}
.m1b{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);}
.m15{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);}
.m5{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);}
.m8{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);}
.m18{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);}
.m1a{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);}
.m12{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);}
.m29{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);}
.m10{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);}
.mc{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);}
.m27{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);}
.m21{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);}
.m13{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);}
.m17{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);}
.m22{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);}
.m14{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);}
.m1e{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);}
.m16{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);}
.m1f{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);}
.mb{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);}
.ma{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);}
.me{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);}
.m1c{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);}
.m1{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);}
.m4{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);}
.m20{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);}
.m1d{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);}
.m23{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);}
.m28{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);}
.m7{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);}
.m11{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);}
.m2{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);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-11.958000px;}
.v8{vertical-align:-10.482000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.912000px;}
.v6{vertical-align:17.904000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:24.684000px;}
.v7{vertical-align:38.928000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls21{letter-spacing:0.542815px;}
.ls27{letter-spacing:0.565200px;}
.ls4a{letter-spacing:0.720783px;}
.ls2f{letter-spacing:0.723483px;}
.ls2d{letter-spacing:0.748200px;}
.ls1b{letter-spacing:0.750583px;}
.ls26{letter-spacing:0.888571px;}
.ls25{letter-spacing:0.993292px;}
.ls7{letter-spacing:1.275394px;}
.ls22{letter-spacing:1.312200px;}
.ls1c{letter-spacing:1.318200px;}
.ls20{letter-spacing:1.363258px;}
.ls1e{letter-spacing:1.420741px;}
.ls1f{letter-spacing:1.490725px;}
.ls24{letter-spacing:1.496725px;}
.ls0{letter-spacing:1.861130px;}
.ls46{letter-spacing:2.220017px;}
.ls3d{letter-spacing:2.226017px;}
.ls28{letter-spacing:2.270731px;}
.lsf{letter-spacing:2.540045px;}
.ls12{letter-spacing:2.810383px;}
.ls36{letter-spacing:2.868571px;}
.ls42{letter-spacing:2.874571px;}
.ls44{letter-spacing:3.716383px;}
.ls3a{letter-spacing:3.722383px;}
.ls2e{letter-spacing:3.733200px;}
.ls1d{letter-spacing:4.303771px;}
.ls23{letter-spacing:4.531258px;}
.ls37{letter-spacing:5.108563px;}
.ls43{letter-spacing:5.114563px;}
.ls3e{letter-spacing:6.469771px;}
.ls47{letter-spacing:6.475771px;}
.lsb{letter-spacing:6.637555px;}
.ls33{letter-spacing:6.810571px;}
.ls40{letter-spacing:6.816571px;}
.ls48{letter-spacing:7.015615px;}
.ls35{letter-spacing:7.016815px;}
.ls32{letter-spacing:7.021615px;}
.ls13{letter-spacing:7.218017px;}
.ls10{letter-spacing:7.224017px;}
.lsc{letter-spacing:7.982045px;}
.lse{letter-spacing:8.342170px;}
.ls29{letter-spacing:8.659771px;}
.ls11{letter-spacing:8.714383px;}
.ls14{letter-spacing:8.720383px;}
.ls41{letter-spacing:8.845363px;}
.ls34{letter-spacing:8.851363px;}
.ls39{letter-spacing:9.234783px;}
.ls49{letter-spacing:9.240783px;}
.ls30{letter-spacing:9.684571px;}
.ls1{letter-spacing:9.783300px;}
.lsd{letter-spacing:9.829702px;}
.ls2a{letter-spacing:10.165200px;}
.ls5{letter-spacing:11.954850px;}
.ls4f{letter-spacing:13.238155px;}
.ls4b{letter-spacing:13.448400px;}
.ls4c{letter-spacing:13.454400px;}
.lsa{letter-spacing:14.943900px;}
.ls18{letter-spacing:15.063451px;}
.ls17{letter-spacing:15.242778px;}
.ls3b{letter-spacing:15.660783px;}
.ls9{letter-spacing:15.720983px;}
.ls8{letter-spacing:16.976270px;}
.ls1a{letter-spacing:17.319483px;}
.ls31{letter-spacing:17.325483px;}
.ls19{letter-spacing:17.349810px;}
.ls4e{letter-spacing:18.191576px;}
.ls3c{letter-spacing:18.678583px;}
.ls45{letter-spacing:18.684583px;}
.ls4d{letter-spacing:19.285694px;}
.ls2b{letter-spacing:21.114583px;}
.ls2c{letter-spacing:22.818583px;}
.ls3f{letter-spacing:27.042571px;}
.ls16{letter-spacing:28.821483px;}
.ls15{letter-spacing:30.024571px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls38{letter-spacing:90.259615px;}
.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;}
}
.ws42{word-spacing:-14.943900px;}
.ws6d{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws99{word-spacing:-8.966400px;}
.ws7c{word-spacing:-4.961375px;}
.ws57{word-spacing:-3.227882px;}
.ws78{word-spacing:-2.749678px;}
.ws88{word-spacing:-2.570351px;}
.ws60{word-spacing:-2.450800px;}
.ws79{word-spacing:-2.032370px;}
.ws62{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws96{word-spacing:-1.793268px;}
.wsd1{word-spacing:-1.667750px;}
.ws95{word-spacing:-1.613941px;}
.ws1a{word-spacing:-1.560154px;}
.ws7b{word-spacing:-1.434614px;}
.ws1c{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws25{word-spacing:-1.315063px;}
.ws37{word-spacing:-1.255288px;}
.wsa6{word-spacing:-1.195512px;}
.wsa2{word-spacing:-1.135736px;}
.wsd3{word-spacing:-1.129766px;}
.ws43{word-spacing:-1.016185px;}
.ws35{word-spacing:-0.956410px;}
.ws32{word-spacing:-0.896634px;}
.wsba{word-spacing:-0.860774px;}
.ws8{word-spacing:-0.854740px;}
.ws7{word-spacing:-0.836856px;}
.wscf{word-spacing:-0.537984px;}
.ws72{word-spacing:-0.537980px;}
.ws7d{word-spacing:-0.478205px;}
.ws7f{word-spacing:-0.418429px;}
.ws1b{word-spacing:-0.376589px;}
.ws67{word-spacing:-0.358654px;}
.wscd{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.ws1d{word-spacing:-0.268992px;}
.ws6{word-spacing:-0.251057px;}
.ws27{word-spacing:-0.239102px;}
.wsce{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.053798px;}
.wsbb{word-spacing:-0.009984px;}
.wsc0{word-spacing:-0.006845px;}
.wsd2{word-spacing:-0.004435px;}
.ws1{word-spacing:-0.004133px;}
.wsc1{word-spacing:-0.004013px;}
.wsc7{word-spacing:-0.003984px;}
.wsc3{word-spacing:-0.001075px;}
.ws2e{word-spacing:-0.000424px;}
.ws0{word-spacing:0.000000px;}
.ws65{word-spacing:0.053798px;}
.ws55{word-spacing:0.059776px;}
.ws18{word-spacing:0.107597px;}
.ws31{word-spacing:0.119551px;}
.ws19{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.wsb{word-spacing:0.209214px;}
.wscb{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws66{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws5d{word-spacing:0.298878px;}
.wsd5{word-spacing:0.322790px;}
.ws22{word-spacing:0.358654px;}
.ws41{word-spacing:0.418429px;}
.ws92{word-spacing:0.478205px;}
.ws5b{word-spacing:0.537980px;}
.ws17{word-spacing:0.591782px;}
.ws50{word-spacing:0.597756px;}
.ws36{word-spacing:0.657532px;}
.ws6c{word-spacing:0.699379px;}
.ws68{word-spacing:0.717307px;}
.ws9a{word-spacing:0.748800px;}
.ws6b{word-spacing:0.753178px;}
.ws3c{word-spacing:0.777083px;}
.ws4d{word-spacing:0.896634px;}
.ws2c{word-spacing:1.075961px;}
.ws74{word-spacing:1.075968px;}
.wsd0{word-spacing:1.129766px;}
.ws71{word-spacing:1.135736px;}
.wsc6{word-spacing:1.237363px;}
.ws76{word-spacing:1.315063px;}
.ws73{word-spacing:1.344960px;}
.ws7a{word-spacing:1.374839px;}
.wsb4{word-spacing:1.434614px;}
.ws2a{word-spacing:1.494390px;}
.ws4c{word-spacing:1.554166px;}
.ws64{word-spacing:1.613941px;}
.wsa0{word-spacing:1.673717px;}
.ws5c{word-spacing:1.733492px;}
.wsbd{word-spacing:1.775347px;}
.wsbe{word-spacing:1.829146px;}
.ws38{word-spacing:1.853044px;}
.wsc5{word-spacing:1.882944px;}
.ws97{word-spacing:1.912819px;}
.ws5f{word-spacing:1.972595px;}
.wsc{word-spacing:2.008454px;}
.ws61{word-spacing:2.032370px;}
.ws45{word-spacing:2.092146px;}
.ws69{word-spacing:2.151922px;}
.wscc{word-spacing:2.151936px;}
.ws3d{word-spacing:2.211697px;}
.wsbc{word-spacing:2.313331px;}
.ws70{word-spacing:2.331248px;}
.wsbf{word-spacing:2.367130px;}
.ws6f{word-spacing:2.450800px;}
.wsc9{word-spacing:2.474726px;}
.ws89{word-spacing:2.510575px;}
.wsa5{word-spacing:2.570351px;}
.ws9f{word-spacing:2.630126px;}
.ws52{word-spacing:2.689902px;}
.ws51{word-spacing:2.749678px;}
.ws90{word-spacing:2.809453px;}
.ws6e{word-spacing:2.869229px;}
.ws33{word-spacing:2.929004px;}
.ws83{word-spacing:3.108331px;}
.wsb9{word-spacing:3.120307px;}
.wsc8{word-spacing:3.174106px;}
.ws1f{word-spacing:3.219667px;}
.wsb7{word-spacing:3.224822px;}
.wsd8{word-spacing:3.226282px;}
.wsca{word-spacing:3.227578px;}
.ws4e{word-spacing:3.227882px;}
.wsc4{word-spacing:3.227904px;}
.wsc2{word-spacing:3.228384px;}
.ws40{word-spacing:3.407209px;}
.wsb8{word-spacing:3.443098px;}
.ws46{word-spacing:3.466985px;}
.ws20{word-spacing:3.586536px;}
.ws63{word-spacing:3.706087px;}
.wsd7{word-spacing:3.712090px;}
.ws9b{word-spacing:3.732600px;}
.ws9d{word-spacing:3.738600px;}
.wsd6{word-spacing:3.765888px;}
.wsaf{word-spacing:3.825638px;}
.ws4b{word-spacing:3.885414px;}
.wsa8{word-spacing:3.945190px;}
.ws8b{word-spacing:4.004965px;}
.ws34{word-spacing:4.124516px;}
.wsb6{word-spacing:4.142477px;}
.ws4a{word-spacing:4.184292px;}
.ws49{word-spacing:4.244068px;}
.ws4f{word-spacing:4.303843px;}
.wsa3{word-spacing:4.363619px;}
.ws56{word-spacing:4.423394px;}
.ws86{word-spacing:4.465267px;}
.ws44{word-spacing:4.542946px;}
.wsd4{word-spacing:4.626662px;}
.wsb5{word-spacing:4.734259px;}
.ws85{word-spacing:4.788058px;}
.ws16{word-spacing:4.841856px;}
.ws75{word-spacing:4.961375px;}
.wsa1{word-spacing:5.021150px;}
.ws3e{word-spacing:5.080926px;}
.ws5a{word-spacing:5.140702px;}
.ws8a{word-spacing:5.200477px;}
.ws3f{word-spacing:5.320028px;}
.ws58{word-spacing:5.439580px;}
.ws30{word-spacing:5.618906px;}
.ws3b{word-spacing:5.738458px;}
.ws81{word-spacing:6.037336px;}
.ws13{word-spacing:6.067206px;}
.ws5e{word-spacing:6.097111px;}
.ws14{word-spacing:6.150892px;}
.ws2d{word-spacing:6.156887px;}
.ws7e{word-spacing:6.216662px;}
.wsa4{word-spacing:6.276438px;}
.ws93{word-spacing:6.336214px;}
.ws59{word-spacing:6.395989px;}
.wsb1{word-spacing:6.933970px;}
.ws80{word-spacing:6.993745px;}
.ws3a{word-spacing:6.993792px;}
.ws54{word-spacing:7.113296px;}
.wsac{word-spacing:7.232848px;}
.wsb3{word-spacing:7.412174px;}
.ws39{word-spacing:7.424179px;}
.ws53{word-spacing:7.531726px;}
.ws47{word-spacing:7.711052px;}
.ws77{word-spacing:7.950155px;}
.wsa7{word-spacing:8.069706px;}
.ws21{word-spacing:8.129482px;}
.ws11{word-spacing:8.661460px;}
.wsae{word-spacing:8.727238px;}
.wsad{word-spacing:8.966340px;}
.ws94{word-spacing:8.981364px;}
.ws91{word-spacing:8.987364px;}
.wsa{word-spacing:9.079888px;}
.wsa9{word-spacing:9.324994px;}
.ws48{word-spacing:9.623872px;}
.wsaa{word-spacing:9.683647px;}
.wsab{word-spacing:9.862974px;}
.wsb0{word-spacing:10.221628px;}
.ws8f{word-spacing:11.058486px;}
.ws5{word-spacing:15.129541px;}
.ws82{word-spacing:15.481880px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws10{word-spacing:17.699504px;}
.ws8c{word-spacing:17.938541px;}
.ws8e{word-spacing:21.052871px;}
.wsb2{word-spacing:24.866650px;}
.ws12{word-spacing:27.448877px;}
.ws98{word-spacing:44.799942px;}
.ws9c{word-spacing:44.800525px;}
.ws9e{word-spacing:44.801759px;}
.ws84{word-spacing:100.061060px;}
.ws87{word-spacing:386.682994px;}
.ws8d{word-spacing:773.914693px;}
._19{margin-left:-20.749070px;}
._30{margin-left:-18.621212px;}
._1e{margin-left:-7.595886px;}
._11{margin-left:-6.575316px;}
._b{margin-left:-5.388077px;}
._5{margin-left:-3.984368px;}
._3{margin-left:-2.250209px;}
._1{margin-left:-1.073768px;}
._4{width:1.091170px;}
._0{width:2.989133px;}
._1b{width:4.786063px;}
._23{width:8.504132px;}
._6{width:12.673480px;}
._7{width:14.415858px;}
._a{width:15.978125px;}
._9{width:17.269286px;}
._f{width:18.410885px;}
._e{width:19.913548px;}
._17{width:21.527582px;}
._10{width:23.491811px;}
._d{width:25.165528px;}
._1a{width:26.237473px;}
._14{width:27.855430px;}
._16{width:29.349820px;}
._20{width:30.406363px;}
._26{width:31.501741px;}
._8{width:32.637384px;}
._1d{width:34.249226px;}
._15{width:36.281597px;}
._24{width:37.874941px;}
._1c{width:41.603818px;}
._c{width:43.465134px;}
._27{width:45.305520px;}
._2f{width:46.833985px;}
._18{width:47.940031px;}
._25{width:49.592484px;}
._2e{width:61.868160px;}
._2{width:69.368678px;}
._2c{width:71.713267px;}
._2d{width:88.767360px;}
._1f{width:93.548814px;}
._28{width:143.318938px;}
._2b{width:149.236762px;}
._2a{width:154.831795px;}
._29{width:161.933184px;}
._21{width:408.167771px;}
._12{width:1045.813165px;}
._22{width:2606.073300px;}
._13{width:2629.983300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(55,106,127);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsd{font-size:44.150400px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs12{font-size:47.337600px;}
.fs10{font-size:47.358864px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:49.055562px;}
.fse{font-size:52.620490px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:53.962038px;}
.fsf{font-size:57.883526px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.272562px;}
.y9{bottom:3.425340px;}
.y110{bottom:3.626500px;}
.y8{bottom:14.151273px;}
.y2{bottom:15.334850px;}
.yfb{bottom:19.325253px;}
.y10f{bottom:20.845760px;}
.yfd{bottom:29.881062px;}
.y4b{bottom:31.890000px;}
.y111{bottom:32.168673px;}
.y123{bottom:68.110668px;}
.y112{bottom:79.445324px;}
.y122{bottom:82.205568px;}
.yfe{bottom:82.769562px;}
.ya7{bottom:88.993500px;}
.y164{bottom:89.956500px;}
.y1b0{bottom:94.171500px;}
.y146{bottom:95.619000px;}
.y121{bottom:96.652840px;}
.y6d{bottom:99.622500px;}
.y1f2{bottom:100.434000px;}
.y1bc{bottom:101.398500px;}
.y21{bottom:102.823500px;}
.y4a{bottom:103.621500px;}
.ya2{bottom:106.246500px;}
.y17a{bottom:106.941000px;}
.y103{bottom:107.735562px;}
.ya6{bottom:107.823000px;}
.y163{bottom:108.786000px;}
.y120{bottom:110.747740px;}
.y1af{bottom:113.001000px;}
.y145{bottom:114.448500px;}
.y118{bottom:115.680955px;}
.y1f1{bottom:117.694500px;}
.yde{bottom:118.329000px;}
.y6c{bottom:118.452000px;}
.y1bb{bottom:118.972500px;}
.y20{bottom:120.711000px;}
.y49{bottom:122.449500px;}
.ya1{bottom:125.076000px;}
.y11f{bottom:125.195013px;}
.y179{bottom:125.769000px;}
.y113{bottom:126.721953px;}
.y162{bottom:127.615500px;}
.y10d{bottom:128.428500px;}
.yc0{bottom:130.917000px;}
.yad{bottom:131.136000px;}
.y1ae{bottom:131.830500px;}
.y144{bottom:133.278000px;}
.y1f0{bottom:134.955000px;}
.yff{bottom:135.658062px;}
.ydd{bottom:137.158500px;}
.y6b{bottom:137.281500px;}
.y1f{bottom:138.600000px;}
.y11e{bottom:139.289913px;}
.ya5{bottom:141.208500px;}
.y48{bottom:141.279000px;}
.ya0{bottom:143.905500px;}
.y178{bottom:144.598500px;}
.y1ba{bottom:145.513500px;}
.y161{bottom:146.445000px;}
.y10c{bottom:147.661500px;}
.ybf{bottom:149.746500px;}
.y1ad{bottom:150.658500px;}
.y143{bottom:152.107500px;}
.y1ef{bottom:152.215500px;}
.y11d{bottom:153.737185px;}
.y225{bottom:155.338500px;}
.ydc{bottom:155.988000px;}
.y6a{bottom:156.111000px;}
.y1e{bottom:156.487500px;}
.y47{bottom:160.108500px;}
.ya4{bottom:160.441500px;}
.yac{bottom:161.065500px;}
.y1b9{bottom:163.087500px;}
.y177{bottom:163.428000px;}
.y160{bottom:165.274500px;}
.y10b{bottom:166.894500px;}
.y9f{bottom:167.218500px;}
.y11c{bottom:167.832085px;}
.ybe{bottom:168.576000px;}
.y1ee{bottom:169.476000px;}
.y1ac{bottom:169.488000px;}
.y142{bottom:170.937000px;}
.y224{bottom:172.599000px;}
.y114{bottom:173.998604px;}
.y1d{bottom:174.375000px;}
.ydb{bottom:174.817500px;}
.y69{bottom:174.940500px;}
.y46{bottom:178.938000px;}
.ya3{bottom:179.674500px;}
.yab{bottom:180.298500px;}
.y176{bottom:182.257500px;}
.y11b{bottom:182.279358px;}
.y15f{bottom:184.104000px;}
.y1ed{bottom:186.736500px;}
.ybd{bottom:187.405500px;}
.y1ab{bottom:188.317500px;}
.y100{bottom:188.546562px;}
.yfa{bottom:189.324000px;}
.y1b8{bottom:189.627000px;}
.y141{bottom:189.766500px;}
.y223{bottom:189.858000px;}
.y1c{bottom:192.264000px;}
.yda{bottom:193.647000px;}
.y68{bottom:193.770000px;}
.y11a{bottom:196.550444px;}
.y45{bottom:197.767500px;}
.yaa{bottom:199.531500px;}
.y9e{bottom:200.842500px;}
.y175{bottom:201.087000px;}
.y15e{bottom:202.933500px;}
.y1ec{bottom:203.995500px;}
.ybc{bottom:206.235000px;}
.y222{bottom:207.118500px;}
.y1aa{bottom:207.147000px;}
.y140{bottom:208.596000px;}
.y1b{bottom:210.151500px;}
.y119{bottom:210.821530px;}
.yd9{bottom:212.476500px;}
.y67{bottom:212.599500px;}
.y1b7{bottom:216.168000px;}
.y44{bottom:216.597000px;}
.ya9{bottom:218.764500px;}
.y9d{bottom:219.672000px;}
.y174{bottom:219.916500px;}
.y1eb{bottom:221.256000px;}
.y115{bottom:221.275244px;}
.y15d{bottom:221.763000px;}
.y109{bottom:222.710562px;}
.y221{bottom:224.379000px;}
.ybb{bottom:225.064500px;}
.y1a9{bottom:225.976500px;}
.y13f{bottom:227.424000px;}
.y1a{bottom:228.039000px;}
.yd8{bottom:231.306000px;}
.y66{bottom:231.429000px;}
.y1b6{bottom:233.742000px;}
.y43{bottom:235.426500px;}
.y108{bottom:235.850562px;}
.ya8{bottom:237.997500px;}
.y9c{bottom:238.501500px;}
.y1ea{bottom:238.516500px;}
.y173{bottom:238.746000px;}
.y101{bottom:241.435062px;}
.y220{bottom:241.639500px;}
.yba{bottom:243.894000px;}
.y1a8{bottom:244.806000px;}
.y15c{bottom:245.076000px;}
.y13e{bottom:246.253500px;}
.y107{bottom:249.319062px;}
.yd7{bottom:250.135500px;}
.y65{bottom:250.258500px;}
.y1b5{bottom:251.316000px;}
.y42{bottom:254.256000px;}
.y1e9{bottom:255.777000px;}
.y9b{bottom:257.331000px;}
.y172{bottom:257.575500px;}
.y21f{bottom:258.900000px;}
.y106{bottom:262.459062px;}
.yb9{bottom:262.723500px;}
.y1a7{bottom:263.635500px;}
.y13d{bottom:265.083000px;}
.y116{bottom:268.551890px;}
.y1b4{bottom:268.890000px;}
.y1e8{bottom:273.037500px;}
.y41{bottom:273.085500px;}
.y105{bottom:275.927562px;}
.y9a{bottom:276.160500px;}
.y171{bottom:276.405000px;}
.y15b{bottom:278.700000px;}
.yb8{bottom:281.553000px;}
.y1a6{bottom:282.465000px;}
.yd6{bottom:283.701000px;}
.y64{bottom:283.824000px;}
.y13c{bottom:283.912500px;}
.y1b3{bottom:286.464000px;}
.y1b2{bottom:286.465500px;}
.y104{bottom:289.067562px;}
.y1e7{bottom:290.298000px;}
.y40{bottom:291.915000px;}
.y21e{bottom:293.421000px;}
.y102{bottom:294.323562px;}
.y99{bottom:294.990000px;}
.y170{bottom:295.234500px;}
.y15a{bottom:297.529500px;}
.yb7{bottom:300.382500px;}
.y13b{bottom:302.742000px;}
.yd5{bottom:302.934000px;}
.y63{bottom:303.057000px;}
.y10a{bottom:303.534000px;}
.y1a5{bottom:305.778000px;}
.y19{bottom:307.299000px;}
.y1e6{bottom:307.558500px;}
.y21d{bottom:310.681500px;}
.y3f{bottom:310.744500px;}
.y98{bottom:313.819500px;}
.y16f{bottom:314.064000px;}
.y117{bottom:315.828535px;}
.y158{bottom:316.359000px;}
.y159{bottom:316.575000px;}
.y1b1{bottom:318.775500px;}
.yb6{bottom:319.212000px;}
.y13a{bottom:321.571500px;}
.y62{bottom:322.290000px;}
.y1e5{bottom:324.819000px;}
.y18{bottom:325.186500px;}
.y21c{bottom:327.940500px;}
.y3e{bottom:329.574000px;}
.y97{bottom:332.649000px;}
.y16e{bottom:332.893500px;}
.y157{bottom:335.187000px;}
.y156{bottom:335.404500px;}
.yb5{bottom:338.041500px;}
.y1a4{bottom:339.402000px;}
.y139{bottom:340.401000px;}
.y61{bottom:341.523000px;}
.y1e4{bottom:342.078000px;}
.y17{bottom:343.074000px;}
.y21b{bottom:345.201000px;}
.y3d{bottom:348.403500px;}
.y96{bottom:351.478500px;}
.y16d{bottom:351.723000px;}
.y155{bottom:354.016500px;}
.yb4{bottom:356.871000px;}
.y1a3{bottom:358.231500px;}
.y138{bottom:359.230500px;}
.y1e3{bottom:359.338500px;}
.y60{bottom:360.756000px;}
.y16{bottom:360.963000px;}
.y21a{bottom:362.461500px;}
.y3c{bottom:367.233000px;}
.y95{bottom:370.308000px;}
.y16c{bottom:370.552500px;}
.y154{bottom:372.846000px;}
.yb3{bottom:375.700500px;}
.y1e2{bottom:376.599000px;}
.y1a2{bottom:377.061000px;}
.y137{bottom:378.060000px;}
.y219{bottom:379.722000px;}
.y3b{bottom:386.062500px;}
.y94{bottom:389.137500px;}
.y16b{bottom:389.382000px;}
.y153{bottom:391.675500px;}
.y1e1{bottom:393.859500px;}
.yb2{bottom:394.530000px;}
.y1a1{bottom:395.890500px;}
.y136{bottom:396.889500px;}
.y218{bottom:396.982500px;}
.y15{bottom:399.024000px;}
.y3a{bottom:404.892000px;}
.y93{bottom:407.967000px;}
.y16a{bottom:408.211500px;}
.y1e0{bottom:411.120000px;}
.yb1{bottom:413.359500px;}
.y217{bottom:414.243000px;}
.y1a0{bottom:414.720000px;}
.y151{bottom:415.066500px;}
.y135{bottom:415.719000px;}
.y14{bottom:416.913000px;}
.y39{bottom:423.721500px;}
.y92{bottom:426.796500px;}
.y169{bottom:427.041000px;}
.y1df{bottom:428.380500px;}
.y150{bottom:428.401500px;}
.y216{bottom:431.503500px;}
.y14e{bottom:431.509500px;}
.y14d{bottom:431.725500px;}
.y19f{bottom:433.549500px;}
.y152{bottom:433.581000px;}
.y134{bottom:434.548500px;}
.y13{bottom:434.800500px;}
.y38{bottom:442.551000px;}
.y91{bottom:445.626000px;}
.y1de{bottom:445.641000px;}
.y168{bottom:445.870500px;}
.yb0{bottom:446.925000px;}
.y14f{bottom:447.648000px;}
.y215{bottom:448.764000px;}
.y19e{bottom:452.379000px;}
.y133{bottom:453.378000px;}
.y37{bottom:461.380500px;}
.y1dd{bottom:462.901500px;}
.y90{bottom:464.454000px;}
.y214{bottom:466.024500px;}
.yaf{bottom:466.158000px;}
.y167{bottom:469.183500px;}
.y12{bottom:470.622000px;}
.y19d{bottom:471.208500px;}
.y132{bottom:472.207500px;}
.y14c{bottom:477.394500px;}
.y1dc{bottom:480.162000px;}
.y8f{bottom:483.283500px;}
.y36{bottom:484.693500px;}
.yae{bottom:485.391000px;}
.y11{bottom:488.509500px;}
.y19c{bottom:490.038000px;}
.y131{bottom:491.037000px;}
.y14b{bottom:496.224000px;}
.y1db{bottom:497.421000px;}
.y166{bottom:499.611000px;}
.y213{bottom:500.544000px;}
.y8e{bottom:502.113000px;}
.y19b{bottom:508.867500px;}
.y130{bottom:509.866500px;}
.y1da{bottom:514.681500px;}
.y14a{bottom:515.053500px;}
.y212{bottom:517.804500px;}
.y165{bottom:518.842500px;}
.y8d{bottom:520.942500px;}
.y10{bottom:524.329500px;}
.yf9{bottom:524.829000px;}
.y19a{bottom:527.697000px;}
.y12f{bottom:528.696000px;}
.y1d9{bottom:531.942000px;}
.y211{bottom:535.065000px;}
.y149{bottom:538.365000px;}
.y8c{bottom:539.772000px;}
.yf{bottom:542.218500px;}
.yf8{bottom:543.658500px;}
.y199{bottom:546.526500px;}
.y12e{bottom:547.525500px;}
.y1d8{bottom:549.202500px;}
.y210{bottom:552.325500px;}
.y8b{bottom:558.601500px;}
.y35{bottom:559.843500px;}
.ye{bottom:560.106000px;}
.yf7{bottom:562.488000px;}
.y198{bottom:565.356000px;}
.y1d7{bottom:566.463000px;}
.y148{bottom:568.792500px;}
.y20f{bottom:569.586000px;}
.y12d{bottom:570.838500px;}
.y8a{bottom:577.431000px;}
.yd{bottom:577.993500px;}
.yf6{bottom:581.317500px;}
.y1d6{bottom:583.723500px;}
.y197{bottom:584.184000px;}
.y20e{bottom:586.846500px;}
.y147{bottom:588.025500px;}
.yc{bottom:595.882500px;}
.y89{bottom:596.260500px;}
.y34{bottom:597.232500px;}
.yf5{bottom:600.147000px;}
.y1d5{bottom:600.984000px;}
.y196{bottom:603.013500px;}
.y20d{bottom:604.107000px;}
.y12c{bottom:604.462500px;}
.yb{bottom:613.770000px;}
.y88{bottom:615.090000px;}
.y33{bottom:616.690500px;}
.y1d4{bottom:618.244500px;}
.yf4{bottom:618.975000px;}
.y20c{bottom:621.366000px;}
.y195{bottom:621.843000px;}
.y12b{bottom:623.292000px;}
.ya{bottom:631.657500px;}
.y87{bottom:633.919500px;}
.y1d3{bottom:635.503500px;}
.y32{bottom:636.147000px;}
.yf3{bottom:637.804500px;}
.y20b{bottom:638.626500px;}
.y194{bottom:640.672500px;}
.y12a{bottom:642.121500px;}
.y86{bottom:652.749000px;}
.y1d2{bottom:652.764000px;}
.y7{bottom:654.028555px;}
.y31{bottom:655.603500px;}
.y20a{bottom:655.887000px;}
.yf2{bottom:656.634000px;}
.y193{bottom:659.502000px;}
.y129{bottom:660.949500px;}
.y1d1{bottom:670.024500px;}
.y85{bottom:671.578500px;}
.y209{bottom:673.147500px;}
.y30{bottom:675.061500px;}
.yf1{bottom:675.463500px;}
.y192{bottom:678.331500px;}
.y128{bottom:679.779000px;}
.y1d0{bottom:687.285000px;}
.y84{bottom:690.408000px;}
.yf0{bottom:694.293000px;}
.y2f{bottom:694.518000px;}
.y191{bottom:697.161000px;}
.y127{bottom:698.608500px;}
.yd4{bottom:704.305500px;}
.y1cf{bottom:704.545500px;}
.y208{bottom:707.668500px;}
.y83{bottom:709.237500px;}
.yef{bottom:713.122500px;}
.y2e{bottom:713.974500px;}
.y190{bottom:715.990500px;}
.y1ce{bottom:721.806000px;}
.y126{bottom:721.921500px;}
.yd3{bottom:723.135000px;}
.y207{bottom:724.929000px;}
.y82{bottom:728.067000px;}
.yee{bottom:731.952000px;}
.y2d{bottom:733.432500px;}
.y18f{bottom:734.820000px;}
.y1cd{bottom:739.066500px;}
.yd2{bottom:741.964500px;}
.y206{bottom:742.189500px;}
.y81{bottom:746.896500px;}
.y125{bottom:752.349000px;}
.y2c{bottom:752.889000px;}
.y18e{bottom:753.649500px;}
.y1cc{bottom:756.327000px;}
.yed{bottom:758.254500px;}
.y205{bottom:759.450000px;}
.yd1{bottom:760.794000px;}
.y80{bottom:765.726000px;}
.y5f{bottom:768.397500px;}
.y124{bottom:771.582000px;}
.y2b{bottom:772.347000px;}
.y18d{bottom:772.479000px;}
.y1cb{bottom:773.587500px;}
.y204{bottom:776.709000px;}
.yec{bottom:777.084000px;}
.yd0{bottom:779.623500px;}
.y7f{bottom:784.555500px;}
.y5e{bottom:787.227000px;}
.y1ca{bottom:790.846500px;}
.y18c{bottom:791.308500px;}
.y2a{bottom:791.803500px;}
.y203{bottom:793.969500px;}
.y10e{bottom:794.011500px;}
.yeb{bottom:795.912000px;}
.ycf{bottom:798.453000px;}
.y7e{bottom:803.385000px;}
.y5d{bottom:806.056500px;}
.y1c9{bottom:808.107000px;}
.y18b{bottom:810.138000px;}
.y202{bottom:811.230000px;}
.y29{bottom:811.260000px;}
.yea{bottom:814.741500px;}
.yce{bottom:817.282500px;}
.y7d{bottom:822.214500px;}
.y5c{bottom:824.886000px;}
.y1c8{bottom:825.367500px;}
.y201{bottom:828.490500px;}
.y18a{bottom:828.967500px;}
.y28{bottom:830.718000px;}
.ye9{bottom:833.571000px;}
.ycd{bottom:836.112000px;}
.y7c{bottom:841.044000px;}
.y1c7{bottom:842.628000px;}
.y5b{bottom:843.715500px;}
.y200{bottom:845.751000px;}
.y189{bottom:847.797000px;}
.y27{bottom:850.174500px;}
.ye8{bottom:852.400500px;}
.ycc{bottom:854.941500px;}
.y7b{bottom:859.873500px;}
.y5a{bottom:862.545000px;}
.y1ff{bottom:863.011500px;}
.y1c6{bottom:864.372000px;}
.y188{bottom:866.626500px;}
.ye7{bottom:871.230000px;}
.ycb{bottom:873.771000px;}
.y7a{bottom:878.703000px;}
.y1fe{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y187{bottom:885.456000px;}
.y26{bottom:887.485500px;}
.ye6{bottom:890.059500px;}
.yca{bottom:892.600500px;}
.y79{bottom:897.532500px;}
.y1c5{bottom:900.055500px;}
.y58{bottom:900.204000px;}
.y25{bottom:903.625500px;}
.y186{bottom:904.285500px;}
.ye5{bottom:908.889000px;}
.yc9{bottom:911.430000px;}
.y1fd{bottom:914.793000px;}
.y78{bottom:916.362000px;}
.y1c4{bottom:917.629500px;}
.y57{bottom:919.033500px;}
.y185{bottom:923.115000px;}
.y24{bottom:924.105000px;}
.ye4{bottom:927.718500px;}
.yc8{bottom:930.259500px;}
.y1fc{bottom:932.052000px;}
.y77{bottom:935.191500px;}
.y1c3{bottom:935.203500px;}
.y23{bottom:935.904000px;}
.y56{bottom:937.863000px;}
.y184{bottom:941.944500px;}
.ye3{bottom:946.548000px;}
.yc7{bottom:949.089000px;}
.y1fb{bottom:949.312500px;}
.y1c2{bottom:952.777500px;}
.y76{bottom:954.021000px;}
.y22{bottom:956.383500px;}
.y55{bottom:956.692500px;}
.y183{bottom:960.774000px;}
.ye2{bottom:965.377500px;}
.y1fa{bottom:966.573000px;}
.yc6{bottom:967.918500px;}
.y1c1{bottom:970.351500px;}
.y75{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.y182{bottom:979.603500px;}
.y1f9{bottom:983.833500px;}
.ye1{bottom:984.207000px;}
.yc5{bottom:991.231500px;}
.y74{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y181{bottom:998.433000px;}
.y1f8{bottom:1001.094000px;}
.y1c0{bottom:1001.721000px;}
.ye0{bottom:1003.036500px;}
.y73{bottom:1010.508000px;}
.y52{bottom:1013.181000px;}
.y1f7{bottom:1018.354500px;}
.y180{bottom:1018.429500px;}
.ydf{bottom:1021.866000px;}
.y1bf{bottom:1023.778500px;}
.y17f{bottom:1024.471500px;}
.yc4{bottom:1024.855500px;}
.y72{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y1f6{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.yc3{bottom:1043.685000px;}
.y71{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.y1f5{bottom:1052.875500px;}
.y17e{bottom:1056.687000px;}
.y1be{bottom:1060.540500px;}
.yc2{bottom:1062.513000px;}
.y17d{bottom:1062.729000px;}
.y70{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y1f4{bottom:1070.134500px;}
.yc1{bottom:1081.342500px;}
.y6f{bottom:1085.826000px;}
.y1bd{bottom:1087.081500px;}
.y1f3{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y17c{bottom:1094.944500px;}
.y3{bottom:1097.688000px;}
.y17b{bottom:1100.986500px;}
.y6e{bottom:1104.655500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.217754px;}
.h13{height:29.469371px;}
.ha{height:30.587087px;}
.hb{height:30.712615px;}
.h9{height:33.112997px;}
.h1e{height:33.209038px;}
.h8{height:34.199443px;}
.hd{height:34.956859px;}
.h12{height:35.100320px;}
.h22{height:35.409964px;}
.h20{height:35.503200px;}
.he{height:38.734848px;}
.hf{height:39.326630px;}
.h14{height:39.488026px;}
.h10{height:43.038432px;}
.h11{height:43.695964px;}
.h4{height:43.875290px;}
.h19{height:46.047488px;}
.h15{height:46.714950px;}
.h1d{height:49.393815px;}
.h2{height:50.930649px;}
.h17{height:51.163418px;}
.h25{height:52.238630px;}
.h6{height:54.405312px;}
.h1b{height:54.881527px;}
.h18{height:56.280719px;}
.h1c{height:60.370709px;}
.h1f{height:65.024177px;}
.h21{height:68.913350px;}
.h24{height:70.882950px;}
.h23{height:74.431200px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h16{height:311.856000px;}
.h1a{height:325.592190px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:150.573298px;}
.w5{width:570.373620px;}
.w4{width:582.102000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x94{left:10.313535px;}
.x93{left:14.868715px;}
.x99{left:15.949286px;}
.x4{left:29.274117px;}
.x91{left:46.579933px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:62.356690px;}
.x2b{left:85.890000px;}
.xc2{left:87.753000px;}
.x97{left:94.253579px;}
.xb2{left:143.107500px;}
.x2c{left:150.519000px;}
.xc3{left:153.153000px;}
.x98{left:222.838904px;}
.x92{left:231.722535px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xa8{left:251.905500px;}
.x76{left:253.026000px;}
.x61{left:255.021000px;}
.x62{left:263.239500px;}
.x77{left:268.672500px;}
.x6{left:270.622500px;}
.x5b{left:276.261000px;}
.xb3{left:278.163000px;}
.xb5{left:279.955500px;}
.x9{left:282.786000px;}
.x34{left:284.731500px;}
.x5c{left:287.865000px;}
.xa9{left:291.976500px;}
.x31{left:296.280000px;}
.x16{left:299.719500px;}
.x8e{left:301.815000px;}
.x75{left:303.982500px;}
.xae{left:305.571000px;}
.x17{left:307.191000px;}
.x8{left:309.439500px;}
.x18{left:311.002500px;}
.x96{left:312.930000px;}
.x32{left:315.034500px;}
.x19{left:318.474000px;}
.x8f{left:320.313000px;}
.x70{left:321.852000px;}
.x90{left:327.109500px;}
.x33{left:329.977500px;}
.x71{left:337.504500px;}
.x39{left:344.062500px;}
.x3a{left:347.872500px;}
.xac{left:349.156500px;}
.x22{left:353.812500px;}
.x69{left:358.011000px;}
.x3b{left:362.817000px;}
.xb4{left:366.256500px;}
.x23{left:368.755500px;}
.x1a{left:371.431500px;}
.xc1{left:374.190000px;}
.x24{left:376.078500px;}
.x82{left:377.886000px;}
.xb6{left:379.677000px;}
.xad{left:383.193000px;}
.x1b{left:386.376000px;}
.xa7{left:389.997000px;}
.x25{left:391.023000px;}
.x4f{left:392.868000px;}
.x1c{left:393.990000px;}
.x6a{left:400.509000px;}
.x44{left:401.920500px;}
.xbc{left:406.402500px;}
.x50{left:407.811000px;}
.x1d{left:408.934500px;}
.x59{left:410.059500px;}
.x79{left:416.185500px;}
.x9c{left:418.641000px;}
.x6b{left:420.424500px;}
.xaf{left:422.544000px;}
.x5a{left:425.004000px;}
.x49{left:428.244000px;}
.x7a{left:431.922000px;}
.x9d{left:433.585500px;}
.xb7{left:436.663500px;}
.xb0{left:442.168500px;}
.x4a{left:443.188500px;}
.x4b{left:446.995500px;}
.x78{left:449.748000px;}
.x3c{left:454.966500px;}
.x65{left:457.842000px;}
.x4c{left:461.940000px;}
.xe{left:466.800000px;}
.x9e{left:468.501000px;}
.x3d{left:469.909500px;}
.x66{left:472.785000px;}
.xf{left:474.271500px;}
.x67{left:476.596500px;}
.xb8{left:477.712500px;}
.x10{left:481.833000px;}
.x72{left:488.065500px;}
.x11{left:489.306000px;}
.x68{left:491.539500px;}
.x63{left:494.109000px;}
.x26{left:496.153500px;}
.x5d{left:498.151500px;}
.x64{left:500.080500px;}
.x51{left:502.386000px;}
.x57{left:504.196500px;}
.xb1{left:508.267500px;}
.x5e{left:511.735500px;}
.x95{left:512.918535px;}
.x52{left:517.330500px;}
.x58{left:519.141000px;}
.xb9{left:521.584500px;}
.xa1{left:523.164000px;}
.xa0{left:525.270000px;}
.x9f{left:530.455500px;}
.x7b{left:540.483000px;}
.x84{left:544.942500px;}
.xa2{left:547.066500px;}
.x8c{left:553.435500px;}
.xa4{left:557.704500px;}
.x85{left:559.848000px;}
.x7c{left:562.479000px;}
.xa5{left:564.601500px;}
.xba{left:566.950500px;}
.x12{left:568.237500px;}
.x53{left:574.399500px;}
.x13{left:575.710500px;}
.xbb{left:577.029000px;}
.x14{left:579.423000px;}
.x8d{left:583.321500px;}
.x15{left:586.896000px;}
.x54{left:589.342500px;}
.x27{left:590.710500px;}
.xa{left:596.451000px;}
.x28{left:598.182000px;}
.x29{left:601.989000px;}
.xb{left:603.924000px;}
.xc{left:607.704000px;}
.x8b{left:609.370500px;}
.xa3{left:613.515000px;}
.xd{left:615.175500px;}
.x2a{left:616.932000px;}
.x45{left:619.599000px;}
.x86{left:629.328000px;}
.x37{left:631.320000px;}
.x1e{left:633.396000px;}
.x46{left:634.543500px;}
.x9a{left:636.928500px;}
.x47{left:638.355000px;}
.x3e{left:644.632500px;}
.x38{left:646.263000px;}
.x1f{left:648.340500px;}
.x48{left:653.298000px;}
.x89{left:654.469500px;}
.x20{left:655.663500px;}
.x5f{left:656.802000px;}
.xa6{left:658.435500px;}
.x3f{left:659.577000px;}
.x60{left:663.526500px;}
.x21{left:670.606500px;}
.x8a{left:673.164000px;}
.x6e{left:678.255000px;}
.x9b{left:687.961500px;}
.x73{left:690.853500px;}
.x7d{left:698.809500px;}
.x6f{left:700.170000px;}
.x74{left:706.513500px;}
.x7e{left:713.754000px;}
.x7f{left:717.565500px;}
.x2d{left:726.598500px;}
.x80{left:732.508500px;}
.x2e{left:741.543000px;}
.x2f{left:745.354500px;}
.x87{left:747.186000px;}
.xbf{left:753.250500px;}
.x83{left:756.201000px;}
.x55{left:757.239000px;}
.xc5{left:759.022500px;}
.x30{left:760.297500px;}
.xaa{left:766.854000px;}
.x88{left:768.352500px;}
.x56{left:772.182000px;}
.xbe{left:776.268000px;}
.xc4{left:782.292000px;}
.xbd{left:784.936500px;}
.xc0{left:790.759500px;}
.x40{left:794.385000px;}
.x4d{left:800.139000px;}
.xab{left:801.807000px;}
.x6c{left:805.510500px;}
.x41{left:809.329500px;}
.x4e{left:815.082000px;}
.x42{left:816.951000px;}
.x35{left:818.620500px;}
.x81{left:820.738500px;}
.x43{left:831.894000px;}
.x36{left:833.115000px;}
.x6d{left:837.915000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.629333pt;}
.v8{vertical-align:-9.317333pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:11.477333pt;}
.v6{vertical-align:15.914667pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.941333pt;}
.v7{vertical-align:34.602667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls21{letter-spacing:0.482502pt;}
.ls27{letter-spacing:0.502400pt;}
.ls4a{letter-spacing:0.640696pt;}
.ls2f{letter-spacing:0.643096pt;}
.ls2d{letter-spacing:0.665067pt;}
.ls1b{letter-spacing:0.667185pt;}
.ls26{letter-spacing:0.789841pt;}
.ls25{letter-spacing:0.882926pt;}
.ls7{letter-spacing:1.133683pt;}
.ls22{letter-spacing:1.166400pt;}
.ls1c{letter-spacing:1.171733pt;}
.ls20{letter-spacing:1.211785pt;}
.ls1e{letter-spacing:1.262881pt;}
.ls1f{letter-spacing:1.325089pt;}
.ls24{letter-spacing:1.330422pt;}
.ls0{letter-spacing:1.654338pt;}
.ls46{letter-spacing:1.973348pt;}
.ls3d{letter-spacing:1.978682pt;}
.ls28{letter-spacing:2.018428pt;}
.lsf{letter-spacing:2.257818pt;}
.ls12{letter-spacing:2.498118pt;}
.ls36{letter-spacing:2.549841pt;}
.ls42{letter-spacing:2.555174pt;}
.ls44{letter-spacing:3.303452pt;}
.ls3a{letter-spacing:3.308785pt;}
.ls2e{letter-spacing:3.318400pt;}
.ls1d{letter-spacing:3.825574pt;}
.ls23{letter-spacing:4.027785pt;}
.ls37{letter-spacing:4.540945pt;}
.ls43{letter-spacing:4.546278pt;}
.ls3e{letter-spacing:5.750908pt;}
.ls47{letter-spacing:5.756241pt;}
.lsb{letter-spacing:5.900049pt;}
.ls33{letter-spacing:6.053841pt;}
.ls40{letter-spacing:6.059174pt;}
.ls48{letter-spacing:6.236102pt;}
.ls35{letter-spacing:6.237169pt;}
.ls32{letter-spacing:6.241435pt;}
.ls13{letter-spacing:6.416015pt;}
.ls10{letter-spacing:6.421348pt;}
.lsc{letter-spacing:7.095151pt;}
.lse{letter-spacing:7.415262pt;}
.ls29{letter-spacing:7.697574pt;}
.ls11{letter-spacing:7.746118pt;}
.ls14{letter-spacing:7.751452pt;}
.ls41{letter-spacing:7.862545pt;}
.ls34{letter-spacing:7.867878pt;}
.ls39{letter-spacing:8.208696pt;}
.ls49{letter-spacing:8.214029pt;}
.ls30{letter-spacing:8.608508pt;}
.ls1{letter-spacing:8.696267pt;}
.lsd{letter-spacing:8.737513pt;}
.ls2a{letter-spacing:9.035733pt;}
.ls5{letter-spacing:10.626533pt;}
.ls4f{letter-spacing:11.767249pt;}
.ls4b{letter-spacing:11.954133pt;}
.ls4c{letter-spacing:11.959467pt;}
.lsa{letter-spacing:13.283467pt;}
.ls18{letter-spacing:13.389734pt;}
.ls17{letter-spacing:13.549136pt;}
.ls3b{letter-spacing:13.920696pt;}
.ls9{letter-spacing:13.974207pt;}
.ls8{letter-spacing:15.090018pt;}
.ls1a{letter-spacing:15.395096pt;}
.ls31{letter-spacing:15.400429pt;}
.ls19{letter-spacing:15.422053pt;}
.ls4e{letter-spacing:16.170290pt;}
.ls3c{letter-spacing:16.603185pt;}
.ls45{letter-spacing:16.608518pt;}
.ls4d{letter-spacing:17.142839pt;}
.ls2b{letter-spacing:18.768518pt;}
.ls2c{letter-spacing:20.283185pt;}
.ls3f{letter-spacing:24.037841pt;}
.ls16{letter-spacing:25.619096pt;}
.ls15{letter-spacing:26.688508pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls38{letter-spacing:80.230769pt;}
.ws42{word-spacing:-13.283467pt;}
.ws6d{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws99{word-spacing:-7.970133pt;}
.ws7c{word-spacing:-4.410111pt;}
.ws57{word-spacing:-2.869229pt;}
.ws78{word-spacing:-2.444158pt;}
.ws88{word-spacing:-2.284756pt;}
.ws60{word-spacing:-2.178489pt;}
.ws79{word-spacing:-1.806551pt;}
.ws62{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws96{word-spacing:-1.594016pt;}
.wsd1{word-spacing:-1.482445pt;}
.ws95{word-spacing:-1.434614pt;}
.ws1a{word-spacing:-1.386803pt;}
.ws7b{word-spacing:-1.275213pt;}
.ws1c{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws25{word-spacing:-1.168945pt;}
.ws37{word-spacing:-1.115811pt;}
.wsa6{word-spacing:-1.062677pt;}
.wsa2{word-spacing:-1.009543pt;}
.wsd3{word-spacing:-1.004237pt;}
.ws43{word-spacing:-0.903276pt;}
.ws35{word-spacing:-0.850142pt;}
.ws32{word-spacing:-0.797008pt;}
.wsba{word-spacing:-0.765133pt;}
.ws8{word-spacing:-0.759769pt;}
.ws7{word-spacing:-0.743872pt;}
.wscf{word-spacing:-0.478208pt;}
.ws72{word-spacing:-0.478205pt;}
.ws7d{word-spacing:-0.425071pt;}
.ws7f{word-spacing:-0.371937pt;}
.ws1b{word-spacing:-0.334746pt;}
.ws67{word-spacing:-0.318803pt;}
.wscd{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.ws1d{word-spacing:-0.239104pt;}
.ws6{word-spacing:-0.223162pt;}
.ws27{word-spacing:-0.212535pt;}
.wsce{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.047821pt;}
.wsbb{word-spacing:-0.008875pt;}
.wsc0{word-spacing:-0.006084pt;}
.wsd2{word-spacing:-0.003942pt;}
.ws1{word-spacing:-0.003674pt;}
.wsc1{word-spacing:-0.003567pt;}
.wsc7{word-spacing:-0.003541pt;}
.wsc3{word-spacing:-0.000956pt;}
.ws2e{word-spacing:-0.000377pt;}
.ws0{word-spacing:0.000000pt;}
.ws65{word-spacing:0.047821pt;}
.ws55{word-spacing:0.053134pt;}
.ws18{word-spacing:0.095642pt;}
.ws31{word-spacing:0.106268pt;}
.ws19{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.wsb{word-spacing:0.185968pt;}
.wscb{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws66{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws5d{word-spacing:0.265669pt;}
.wsd5{word-spacing:0.286925pt;}
.ws22{word-spacing:0.318803pt;}
.ws41{word-spacing:0.371937pt;}
.ws92{word-spacing:0.425071pt;}
.ws5b{word-spacing:0.478205pt;}
.ws17{word-spacing:0.526029pt;}
.ws50{word-spacing:0.531339pt;}
.ws36{word-spacing:0.584473pt;}
.ws6c{word-spacing:0.621670pt;}
.ws68{word-spacing:0.637606pt;}
.ws9a{word-spacing:0.665600pt;}
.ws6b{word-spacing:0.669491pt;}
.ws3c{word-spacing:0.690740pt;}
.ws4d{word-spacing:0.797008pt;}
.ws2c{word-spacing:0.956410pt;}
.ws74{word-spacing:0.956416pt;}
.wsd0{word-spacing:1.004237pt;}
.ws71{word-spacing:1.009543pt;}
.wsc6{word-spacing:1.099878pt;}
.ws76{word-spacing:1.168945pt;}
.ws73{word-spacing:1.195520pt;}
.ws7a{word-spacing:1.222079pt;}
.wsb4{word-spacing:1.275213pt;}
.ws2a{word-spacing:1.328347pt;}
.ws4c{word-spacing:1.381481pt;}
.ws64{word-spacing:1.434614pt;}
.wsa0{word-spacing:1.487748pt;}
.ws5c{word-spacing:1.540882pt;}
.wsbd{word-spacing:1.578086pt;}
.wsbe{word-spacing:1.625907pt;}
.ws38{word-spacing:1.647150pt;}
.wsc5{word-spacing:1.673728pt;}
.ws97{word-spacing:1.700284pt;}
.ws5f{word-spacing:1.753418pt;}
.wsc{word-spacing:1.785293pt;}
.ws61{word-spacing:1.806551pt;}
.ws45{word-spacing:1.859685pt;}
.ws69{word-spacing:1.912819pt;}
.wscc{word-spacing:1.912832pt;}
.ws3d{word-spacing:1.965953pt;}
.wsbc{word-spacing:2.056294pt;}
.ws70{word-spacing:2.072221pt;}
.wsbf{word-spacing:2.104115pt;}
.ws6f{word-spacing:2.178489pt;}
.wsc9{word-spacing:2.199757pt;}
.ws89{word-spacing:2.231622pt;}
.wsa5{word-spacing:2.284756pt;}
.ws9f{word-spacing:2.337890pt;}
.ws52{word-spacing:2.391024pt;}
.ws51{word-spacing:2.444158pt;}
.ws90{word-spacing:2.497292pt;}
.ws6e{word-spacing:2.550426pt;}
.ws33{word-spacing:2.603559pt;}
.ws83{word-spacing:2.762961pt;}
.wsb9{word-spacing:2.773606pt;}
.wsc8{word-spacing:2.821427pt;}
.ws1f{word-spacing:2.861926pt;}
.wsb7{word-spacing:2.866509pt;}
.wsd8{word-spacing:2.867806pt;}
.wsca{word-spacing:2.868958pt;}
.ws4e{word-spacing:2.869229pt;}
.wsc4{word-spacing:2.869248pt;}
.wsc2{word-spacing:2.869675pt;}
.ws40{word-spacing:3.028630pt;}
.wsb8{word-spacing:3.060531pt;}
.ws46{word-spacing:3.081764pt;}
.ws20{word-spacing:3.188032pt;}
.ws63{word-spacing:3.294300pt;}
.wsd7{word-spacing:3.299635pt;}
.ws9b{word-spacing:3.317867pt;}
.ws9d{word-spacing:3.323200pt;}
.wsd6{word-spacing:3.347456pt;}
.wsaf{word-spacing:3.400567pt;}
.ws4b{word-spacing:3.453701pt;}
.wsa8{word-spacing:3.506835pt;}
.ws8b{word-spacing:3.559969pt;}
.ws34{word-spacing:3.666237pt;}
.wsb6{word-spacing:3.682202pt;}
.ws4a{word-spacing:3.719371pt;}
.ws49{word-spacing:3.772505pt;}
.ws4f{word-spacing:3.825638pt;}
.wsa3{word-spacing:3.878772pt;}
.ws56{word-spacing:3.931906pt;}
.ws86{word-spacing:3.969126pt;}
.ws44{word-spacing:4.038174pt;}
.wsd4{word-spacing:4.112589pt;}
.wsb5{word-spacing:4.208230pt;}
.ws85{word-spacing:4.256051pt;}
.ws16{word-spacing:4.303872pt;}
.ws75{word-spacing:4.410111pt;}
.wsa1{word-spacing:4.463245pt;}
.ws3e{word-spacing:4.516379pt;}
.ws5a{word-spacing:4.569513pt;}
.ws8a{word-spacing:4.622646pt;}
.ws3f{word-spacing:4.728914pt;}
.ws58{word-spacing:4.835182pt;}
.ws30{word-spacing:4.994583pt;}
.ws3b{word-spacing:5.100851pt;}
.ws81{word-spacing:5.366521pt;}
.ws13{word-spacing:5.393072pt;}
.ws5e{word-spacing:5.419654pt;}
.ws14{word-spacing:5.467459pt;}
.ws2d{word-spacing:5.472788pt;}
.ws7e{word-spacing:5.525922pt;}
.wsa4{word-spacing:5.579056pt;}
.ws93{word-spacing:5.632190pt;}
.ws59{word-spacing:5.685324pt;}
.wsb1{word-spacing:6.163529pt;}
.ws80{word-spacing:6.216662pt;}
.ws3a{word-spacing:6.216704pt;}
.ws54{word-spacing:6.322930pt;}
.wsac{word-spacing:6.429198pt;}
.wsb3{word-spacing:6.588599pt;}
.ws39{word-spacing:6.599270pt;}
.ws53{word-spacing:6.694867pt;}
.ws47{word-spacing:6.854269pt;}
.ws77{word-spacing:7.066804pt;}
.wsa7{word-spacing:7.173072pt;}
.ws21{word-spacing:7.226206pt;}
.ws11{word-spacing:7.699075pt;}
.wsae{word-spacing:7.757545pt;}
.wsad{word-spacing:7.970080pt;}
.ws94{word-spacing:7.983435pt;}
.ws91{word-spacing:7.988768pt;}
.wsa{word-spacing:8.071011pt;}
.wsa9{word-spacing:8.288883pt;}
.ws48{word-spacing:8.554553pt;}
.wsaa{word-spacing:8.607686pt;}
.wsab{word-spacing:8.767088pt;}
.wsb0{word-spacing:9.085891pt;}
.ws8f{word-spacing:9.829765pt;}
.ws5{word-spacing:13.448481pt;}
.ws82{word-spacing:13.761671pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws10{word-spacing:15.732893pt;}
.ws8c{word-spacing:15.945370pt;}
.ws8e{word-spacing:18.713663pt;}
.wsb2{word-spacing:22.103689pt;}
.ws12{word-spacing:24.399002pt;}
.ws98{word-spacing:39.822171pt;}
.ws9c{word-spacing:39.822689pt;}
.ws9e{word-spacing:39.823786pt;}
.ws84{word-spacing:88.943165pt;}
.ws87{word-spacing:343.718217pt;}
.ws8d{word-spacing:687.924172pt;}
._19{margin-left:-18.443617pt;}
._30{margin-left:-16.552188pt;}
._1e{margin-left:-6.751899pt;}
._11{margin-left:-5.844725pt;}
._b{margin-left:-4.789402pt;}
._5{margin-left:-3.541660pt;}
._3{margin-left:-2.000186pt;}
._1{margin-left:-0.954461pt;}
._4{width:0.969929pt;}
._0{width:2.657007pt;}
._1b{width:4.254278pt;}
._23{width:7.559229pt;}
._6{width:11.265315pt;}
._7{width:12.814096pt;}
._a{width:14.202778pt;}
._9{width:15.350477pt;}
._f{width:16.365231pt;}
._e{width:17.700931pt;}
._17{width:19.135629pt;}
._10{width:20.881610pt;}
._d{width:22.369358pt;}
._1a{width:23.322199pt;}
._14{width:24.760382pt;}
._16{width:26.088729pt;}
._20{width:27.027879pt;}
._26{width:28.001548pt;}
._8{width:29.011008pt;}
._1d{width:30.443757pt;}
._15{width:32.250308pt;}
._24{width:33.666614pt;}
._1c{width:36.981171pt;}
._c{width:38.635675pt;}
._27{width:40.271573pt;}
._2f{width:41.630209pt;}
._18{width:42.613361pt;}
._25{width:44.082208pt;}
._2e{width:54.993920pt;}
._2{width:61.661047pt;}
._2c{width:63.745126pt;}
._2d{width:78.904320pt;}
._1f{width:83.154501pt;}
._28{width:127.394611pt;}
._2b{width:132.654899pt;}
._2a{width:137.628262pt;}
._29{width:143.940608pt;}
._21{width:362.815796pt;}
._12{width:929.611702pt;}
._22{width:2316.509600pt;}
._13{width:2337.762933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsd{font-size:39.244800pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs12{font-size:42.077867pt;}
.fs10{font-size:42.096768pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:43.604944pt;}
.fse{font-size:46.773769pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:47.966256pt;}
.fsf{font-size:51.452023pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:2.908944pt;}
.y9{bottom:3.044747pt;}
.y110{bottom:3.223556pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:13.630978pt;}
.yfb{bottom:17.178003pt;}
.y10f{bottom:18.529564pt;}
.yfd{bottom:26.560944pt;}
.y4b{bottom:28.346667pt;}
.y111{bottom:28.594376pt;}
.y123{bottom:60.542816pt;}
.y112{bottom:70.618066pt;}
.y122{bottom:73.071616pt;}
.yfe{bottom:73.572944pt;}
.ya7{bottom:79.105333pt;}
.y164{bottom:79.961333pt;}
.y1b0{bottom:83.708000pt;}
.y146{bottom:84.994667pt;}
.y121{bottom:85.913636pt;}
.y6d{bottom:88.553333pt;}
.y1f2{bottom:89.274667pt;}
.y1bc{bottom:90.132000pt;}
.y21{bottom:91.398667pt;}
.y4a{bottom:92.108000pt;}
.ya2{bottom:94.441333pt;}
.y17a{bottom:95.058667pt;}
.y103{bottom:95.764944pt;}
.ya6{bottom:95.842667pt;}
.y163{bottom:96.698667pt;}
.y120{bottom:98.442436pt;}
.y1af{bottom:100.445333pt;}
.y145{bottom:101.732000pt;}
.y118{bottom:102.827516pt;}
.y1f1{bottom:104.617333pt;}
.yde{bottom:105.181333pt;}
.y6c{bottom:105.290667pt;}
.y1bb{bottom:105.753333pt;}
.y20{bottom:107.298667pt;}
.y49{bottom:108.844000pt;}
.ya1{bottom:111.178667pt;}
.y11f{bottom:111.284456pt;}
.y179{bottom:111.794667pt;}
.y113{bottom:112.641736pt;}
.y162{bottom:113.436000pt;}
.y10d{bottom:114.158667pt;}
.yc0{bottom:116.370667pt;}
.yad{bottom:116.565333pt;}
.y1ae{bottom:117.182667pt;}
.y144{bottom:118.469333pt;}
.y1f0{bottom:119.960000pt;}
.yff{bottom:120.584944pt;}
.ydd{bottom:121.918667pt;}
.y6b{bottom:122.028000pt;}
.y1f{bottom:123.200000pt;}
.y11e{bottom:123.813256pt;}
.ya5{bottom:125.518667pt;}
.y48{bottom:125.581333pt;}
.ya0{bottom:127.916000pt;}
.y178{bottom:128.532000pt;}
.y1ba{bottom:129.345333pt;}
.y161{bottom:130.173333pt;}
.y10c{bottom:131.254667pt;}
.ybf{bottom:133.108000pt;}
.y1ad{bottom:133.918667pt;}
.y143{bottom:135.206667pt;}
.y1ef{bottom:135.302667pt;}
.y11d{bottom:136.655276pt;}
.y225{bottom:138.078667pt;}
.ydc{bottom:138.656000pt;}
.y6a{bottom:138.765333pt;}
.y1e{bottom:139.100000pt;}
.y47{bottom:142.318667pt;}
.ya4{bottom:142.614667pt;}
.yac{bottom:143.169333pt;}
.y1b9{bottom:144.966667pt;}
.y177{bottom:145.269333pt;}
.y160{bottom:146.910667pt;}
.y10b{bottom:148.350667pt;}
.y9f{bottom:148.638667pt;}
.y11c{bottom:149.184076pt;}
.ybe{bottom:149.845333pt;}
.y1ee{bottom:150.645333pt;}
.y1ac{bottom:150.656000pt;}
.y142{bottom:151.944000pt;}
.y224{bottom:153.421333pt;}
.y114{bottom:154.665426pt;}
.y1d{bottom:155.000000pt;}
.ydb{bottom:155.393333pt;}
.y69{bottom:155.502667pt;}
.y46{bottom:159.056000pt;}
.ya3{bottom:159.710667pt;}
.yab{bottom:160.265333pt;}
.y176{bottom:162.006667pt;}
.y11b{bottom:162.026096pt;}
.y15f{bottom:163.648000pt;}
.y1ed{bottom:165.988000pt;}
.ybd{bottom:166.582667pt;}
.y1ab{bottom:167.393333pt;}
.y100{bottom:167.596944pt;}
.yfa{bottom:168.288000pt;}
.y1b8{bottom:168.557333pt;}
.y141{bottom:168.681333pt;}
.y223{bottom:168.762667pt;}
.y1c{bottom:170.901333pt;}
.yda{bottom:172.130667pt;}
.y68{bottom:172.240000pt;}
.y11a{bottom:174.711506pt;}
.y45{bottom:175.793333pt;}
.yaa{bottom:177.361333pt;}
.y9e{bottom:178.526667pt;}
.y175{bottom:178.744000pt;}
.y15e{bottom:180.385333pt;}
.y1ec{bottom:181.329333pt;}
.ybc{bottom:183.320000pt;}
.y222{bottom:184.105333pt;}
.y1aa{bottom:184.130667pt;}
.y140{bottom:185.418667pt;}
.y1b{bottom:186.801333pt;}
.y119{bottom:187.396916pt;}
.yd9{bottom:188.868000pt;}
.y67{bottom:188.977333pt;}
.y1b7{bottom:192.149333pt;}
.y44{bottom:192.530667pt;}
.ya9{bottom:194.457333pt;}
.y9d{bottom:195.264000pt;}
.y174{bottom:195.481333pt;}
.y1eb{bottom:196.672000pt;}
.y115{bottom:196.689106pt;}
.y15d{bottom:197.122667pt;}
.y109{bottom:197.964944pt;}
.y221{bottom:199.448000pt;}
.ybb{bottom:200.057333pt;}
.y1a9{bottom:200.868000pt;}
.y13f{bottom:202.154667pt;}
.y1a{bottom:202.701333pt;}
.yd8{bottom:205.605333pt;}
.y66{bottom:205.714667pt;}
.y1b6{bottom:207.770667pt;}
.y43{bottom:209.268000pt;}
.y108{bottom:209.644944pt;}
.ya8{bottom:211.553333pt;}
.y9c{bottom:212.001333pt;}
.y1ea{bottom:212.014667pt;}
.y173{bottom:212.218667pt;}
.y101{bottom:214.608944pt;}
.y220{bottom:214.790667pt;}
.yba{bottom:216.794667pt;}
.y1a8{bottom:217.605333pt;}
.y15c{bottom:217.845333pt;}
.y13e{bottom:218.892000pt;}
.y107{bottom:221.616944pt;}
.yd7{bottom:222.342667pt;}
.y65{bottom:222.452000pt;}
.y1b5{bottom:223.392000pt;}
.y42{bottom:226.005333pt;}
.y1e9{bottom:227.357333pt;}
.y9b{bottom:228.738667pt;}
.y172{bottom:228.956000pt;}
.y21f{bottom:230.133333pt;}
.y106{bottom:233.296944pt;}
.yb9{bottom:233.532000pt;}
.y1a7{bottom:234.342667pt;}
.y13d{bottom:235.629333pt;}
.y116{bottom:238.712791pt;}
.y1b4{bottom:239.013333pt;}
.y1e8{bottom:242.700000pt;}
.y41{bottom:242.742667pt;}
.y105{bottom:245.268944pt;}
.y9a{bottom:245.476000pt;}
.y171{bottom:245.693333pt;}
.y15b{bottom:247.733333pt;}
.yb8{bottom:250.269333pt;}
.y1a6{bottom:251.080000pt;}
.yd6{bottom:252.178667pt;}
.y64{bottom:252.288000pt;}
.y13c{bottom:252.366667pt;}
.y1b3{bottom:254.634667pt;}
.y1b2{bottom:254.636000pt;}
.y104{bottom:256.948944pt;}
.y1e7{bottom:258.042667pt;}
.y40{bottom:259.480000pt;}
.y21e{bottom:260.818667pt;}
.y102{bottom:261.620944pt;}
.y99{bottom:262.213333pt;}
.y170{bottom:262.430667pt;}
.y15a{bottom:264.470667pt;}
.yb7{bottom:267.006667pt;}
.y13b{bottom:269.104000pt;}
.yd5{bottom:269.274667pt;}
.y63{bottom:269.384000pt;}
.y10a{bottom:269.808000pt;}
.y1a5{bottom:271.802667pt;}
.y19{bottom:273.154667pt;}
.y1e6{bottom:273.385333pt;}
.y21d{bottom:276.161333pt;}
.y3f{bottom:276.217333pt;}
.y98{bottom:278.950667pt;}
.y16f{bottom:279.168000pt;}
.y117{bottom:280.736476pt;}
.y158{bottom:281.208000pt;}
.y159{bottom:281.400000pt;}
.y1b1{bottom:283.356000pt;}
.yb6{bottom:283.744000pt;}
.y13a{bottom:285.841333pt;}
.y62{bottom:286.480000pt;}
.y1e5{bottom:288.728000pt;}
.y18{bottom:289.054667pt;}
.y21c{bottom:291.502667pt;}
.y3e{bottom:292.954667pt;}
.y97{bottom:295.688000pt;}
.y16e{bottom:295.905333pt;}
.y157{bottom:297.944000pt;}
.y156{bottom:298.137333pt;}
.yb5{bottom:300.481333pt;}
.y1a4{bottom:301.690667pt;}
.y139{bottom:302.578667pt;}
.y61{bottom:303.576000pt;}
.y1e4{bottom:304.069333pt;}
.y17{bottom:304.954667pt;}
.y21b{bottom:306.845333pt;}
.y3d{bottom:309.692000pt;}
.y96{bottom:312.425333pt;}
.y16d{bottom:312.642667pt;}
.y155{bottom:314.681333pt;}
.yb4{bottom:317.218667pt;}
.y1a3{bottom:318.428000pt;}
.y138{bottom:319.316000pt;}
.y1e3{bottom:319.412000pt;}
.y60{bottom:320.672000pt;}
.y16{bottom:320.856000pt;}
.y21a{bottom:322.188000pt;}
.y3c{bottom:326.429333pt;}
.y95{bottom:329.162667pt;}
.y16c{bottom:329.380000pt;}
.y154{bottom:331.418667pt;}
.yb3{bottom:333.956000pt;}
.y1e2{bottom:334.754667pt;}
.y1a2{bottom:335.165333pt;}
.y137{bottom:336.053333pt;}
.y219{bottom:337.530667pt;}
.y3b{bottom:343.166667pt;}
.y94{bottom:345.900000pt;}
.y16b{bottom:346.117333pt;}
.y153{bottom:348.156000pt;}
.y1e1{bottom:350.097333pt;}
.yb2{bottom:350.693333pt;}
.y1a1{bottom:351.902667pt;}
.y136{bottom:352.790667pt;}
.y218{bottom:352.873333pt;}
.y15{bottom:354.688000pt;}
.y3a{bottom:359.904000pt;}
.y93{bottom:362.637333pt;}
.y16a{bottom:362.854667pt;}
.y1e0{bottom:365.440000pt;}
.yb1{bottom:367.430667pt;}
.y217{bottom:368.216000pt;}
.y1a0{bottom:368.640000pt;}
.y151{bottom:368.948000pt;}
.y135{bottom:369.528000pt;}
.y14{bottom:370.589333pt;}
.y39{bottom:376.641333pt;}
.y92{bottom:379.374667pt;}
.y169{bottom:379.592000pt;}
.y1df{bottom:380.782667pt;}
.y150{bottom:380.801333pt;}
.y216{bottom:383.558667pt;}
.y14e{bottom:383.564000pt;}
.y14d{bottom:383.756000pt;}
.y19f{bottom:385.377333pt;}
.y152{bottom:385.405333pt;}
.y134{bottom:386.265333pt;}
.y13{bottom:386.489333pt;}
.y38{bottom:393.378667pt;}
.y91{bottom:396.112000pt;}
.y1de{bottom:396.125333pt;}
.y168{bottom:396.329333pt;}
.yb0{bottom:397.266667pt;}
.y14f{bottom:397.909333pt;}
.y215{bottom:398.901333pt;}
.y19e{bottom:402.114667pt;}
.y133{bottom:403.002667pt;}
.y37{bottom:410.116000pt;}
.y1dd{bottom:411.468000pt;}
.y90{bottom:412.848000pt;}
.y214{bottom:414.244000pt;}
.yaf{bottom:414.362667pt;}
.y167{bottom:417.052000pt;}
.y12{bottom:418.330667pt;}
.y19d{bottom:418.852000pt;}
.y132{bottom:419.740000pt;}
.y14c{bottom:424.350667pt;}
.y1dc{bottom:426.810667pt;}
.y8f{bottom:429.585333pt;}
.y36{bottom:430.838667pt;}
.yae{bottom:431.458667pt;}
.y11{bottom:434.230667pt;}
.y19c{bottom:435.589333pt;}
.y131{bottom:436.477333pt;}
.y14b{bottom:441.088000pt;}
.y1db{bottom:442.152000pt;}
.y166{bottom:444.098667pt;}
.y213{bottom:444.928000pt;}
.y8e{bottom:446.322667pt;}
.y19b{bottom:452.326667pt;}
.y130{bottom:453.214667pt;}
.y1da{bottom:457.494667pt;}
.y14a{bottom:457.825333pt;}
.y212{bottom:460.270667pt;}
.y165{bottom:461.193333pt;}
.y8d{bottom:463.060000pt;}
.y10{bottom:466.070667pt;}
.yf9{bottom:466.514667pt;}
.y19a{bottom:469.064000pt;}
.y12f{bottom:469.952000pt;}
.y1d9{bottom:472.837333pt;}
.y211{bottom:475.613333pt;}
.y149{bottom:478.546667pt;}
.y8c{bottom:479.797333pt;}
.yf{bottom:481.972000pt;}
.yf8{bottom:483.252000pt;}
.y199{bottom:485.801333pt;}
.y12e{bottom:486.689333pt;}
.y1d8{bottom:488.180000pt;}
.y210{bottom:490.956000pt;}
.y8b{bottom:496.534667pt;}
.y35{bottom:497.638667pt;}
.ye{bottom:497.872000pt;}
.yf7{bottom:499.989333pt;}
.y198{bottom:502.538667pt;}
.y1d7{bottom:503.522667pt;}
.y148{bottom:505.593333pt;}
.y20f{bottom:506.298667pt;}
.y12d{bottom:507.412000pt;}
.y8a{bottom:513.272000pt;}
.yd{bottom:513.772000pt;}
.yf6{bottom:516.726667pt;}
.y1d6{bottom:518.865333pt;}
.y197{bottom:519.274667pt;}
.y20e{bottom:521.641333pt;}
.y147{bottom:522.689333pt;}
.yc{bottom:529.673333pt;}
.y89{bottom:530.009333pt;}
.y34{bottom:530.873333pt;}
.yf5{bottom:533.464000pt;}
.y1d5{bottom:534.208000pt;}
.y196{bottom:536.012000pt;}
.y20d{bottom:536.984000pt;}
.y12c{bottom:537.300000pt;}
.yb{bottom:545.573333pt;}
.y88{bottom:546.746667pt;}
.y33{bottom:548.169333pt;}
.y1d4{bottom:549.550667pt;}
.yf4{bottom:550.200000pt;}
.y20c{bottom:552.325333pt;}
.y195{bottom:552.749333pt;}
.y12b{bottom:554.037333pt;}
.ya{bottom:561.473333pt;}
.y87{bottom:563.484000pt;}
.y1d3{bottom:564.892000pt;}
.y32{bottom:565.464000pt;}
.yf3{bottom:566.937333pt;}
.y20b{bottom:567.668000pt;}
.y194{bottom:569.486667pt;}
.y12a{bottom:570.774667pt;}
.y86{bottom:580.221333pt;}
.y1d2{bottom:580.234667pt;}
.y7{bottom:581.358715pt;}
.y31{bottom:582.758667pt;}
.y20a{bottom:583.010667pt;}
.yf2{bottom:583.674667pt;}
.y193{bottom:586.224000pt;}
.y129{bottom:587.510667pt;}
.y1d1{bottom:595.577333pt;}
.y85{bottom:596.958667pt;}
.y209{bottom:598.353333pt;}
.y30{bottom:600.054667pt;}
.yf1{bottom:600.412000pt;}
.y192{bottom:602.961333pt;}
.y128{bottom:604.248000pt;}
.y1d0{bottom:610.920000pt;}
.y84{bottom:613.696000pt;}
.yf0{bottom:617.149333pt;}
.y2f{bottom:617.349333pt;}
.y191{bottom:619.698667pt;}
.y127{bottom:620.985333pt;}
.yd4{bottom:626.049333pt;}
.y1cf{bottom:626.262667pt;}
.y208{bottom:629.038667pt;}
.y83{bottom:630.433333pt;}
.yef{bottom:633.886667pt;}
.y2e{bottom:634.644000pt;}
.y190{bottom:636.436000pt;}
.y1ce{bottom:641.605333pt;}
.y126{bottom:641.708000pt;}
.yd3{bottom:642.786667pt;}
.y207{bottom:644.381333pt;}
.y82{bottom:647.170667pt;}
.yee{bottom:650.624000pt;}
.y2d{bottom:651.940000pt;}
.y18f{bottom:653.173333pt;}
.y1cd{bottom:656.948000pt;}
.yd2{bottom:659.524000pt;}
.y206{bottom:659.724000pt;}
.y81{bottom:663.908000pt;}
.y125{bottom:668.754667pt;}
.y2c{bottom:669.234667pt;}
.y18e{bottom:669.910667pt;}
.y1cc{bottom:672.290667pt;}
.yed{bottom:674.004000pt;}
.y205{bottom:675.066667pt;}
.yd1{bottom:676.261333pt;}
.y80{bottom:680.645333pt;}
.y5f{bottom:683.020000pt;}
.y124{bottom:685.850667pt;}
.y2b{bottom:686.530667pt;}
.y18d{bottom:686.648000pt;}
.y1cb{bottom:687.633333pt;}
.y204{bottom:690.408000pt;}
.yec{bottom:690.741333pt;}
.yd0{bottom:692.998667pt;}
.y7f{bottom:697.382667pt;}
.y5e{bottom:699.757333pt;}
.y1ca{bottom:702.974667pt;}
.y18c{bottom:703.385333pt;}
.y2a{bottom:703.825333pt;}
.y203{bottom:705.750667pt;}
.y10e{bottom:705.788000pt;}
.yeb{bottom:707.477333pt;}
.ycf{bottom:709.736000pt;}
.y7e{bottom:714.120000pt;}
.y5d{bottom:716.494667pt;}
.y1c9{bottom:718.317333pt;}
.y18b{bottom:720.122667pt;}
.y202{bottom:721.093333pt;}
.y29{bottom:721.120000pt;}
.yea{bottom:724.214667pt;}
.yce{bottom:726.473333pt;}
.y7d{bottom:730.857333pt;}
.y5c{bottom:733.232000pt;}
.y1c8{bottom:733.660000pt;}
.y201{bottom:736.436000pt;}
.y18a{bottom:736.860000pt;}
.y28{bottom:738.416000pt;}
.ye9{bottom:740.952000pt;}
.ycd{bottom:743.210667pt;}
.y7c{bottom:747.594667pt;}
.y1c7{bottom:749.002667pt;}
.y5b{bottom:749.969333pt;}
.y200{bottom:751.778667pt;}
.y189{bottom:753.597333pt;}
.y27{bottom:755.710667pt;}
.ye8{bottom:757.689333pt;}
.ycc{bottom:759.948000pt;}
.y7b{bottom:764.332000pt;}
.y5a{bottom:766.706667pt;}
.y1ff{bottom:767.121333pt;}
.y1c6{bottom:768.330667pt;}
.y188{bottom:770.334667pt;}
.ye7{bottom:774.426667pt;}
.ycb{bottom:776.685333pt;}
.y7a{bottom:781.069333pt;}
.y1fe{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y187{bottom:787.072000pt;}
.y26{bottom:788.876000pt;}
.ye6{bottom:791.164000pt;}
.yca{bottom:793.422667pt;}
.y79{bottom:797.806667pt;}
.y1c5{bottom:800.049333pt;}
.y58{bottom:800.181333pt;}
.y25{bottom:803.222667pt;}
.y186{bottom:803.809333pt;}
.ye5{bottom:807.901333pt;}
.yc9{bottom:810.160000pt;}
.y1fd{bottom:813.149333pt;}
.y78{bottom:814.544000pt;}
.y1c4{bottom:815.670667pt;}
.y57{bottom:816.918667pt;}
.y185{bottom:820.546667pt;}
.y24{bottom:821.426667pt;}
.ye4{bottom:824.638667pt;}
.yc8{bottom:826.897333pt;}
.y1fc{bottom:828.490667pt;}
.y77{bottom:831.281333pt;}
.y1c3{bottom:831.292000pt;}
.y23{bottom:831.914667pt;}
.y56{bottom:833.656000pt;}
.y184{bottom:837.284000pt;}
.ye3{bottom:841.376000pt;}
.yc7{bottom:843.634667pt;}
.y1fb{bottom:843.833333pt;}
.y1c2{bottom:846.913333pt;}
.y76{bottom:848.018667pt;}
.y22{bottom:850.118667pt;}
.y55{bottom:850.393333pt;}
.y183{bottom:854.021333pt;}
.ye2{bottom:858.113333pt;}
.y1fa{bottom:859.176000pt;}
.yc6{bottom:860.372000pt;}
.y1c1{bottom:862.534667pt;}
.y75{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.y182{bottom:870.758667pt;}
.y1f9{bottom:874.518667pt;}
.ye1{bottom:874.850667pt;}
.yc5{bottom:881.094667pt;}
.y74{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y181{bottom:887.496000pt;}
.y1f8{bottom:889.861333pt;}
.y1c0{bottom:890.418667pt;}
.ye0{bottom:891.588000pt;}
.y73{bottom:898.229333pt;}
.y52{bottom:900.605333pt;}
.y1f7{bottom:905.204000pt;}
.y180{bottom:905.270667pt;}
.ydf{bottom:908.325333pt;}
.y1bf{bottom:910.025333pt;}
.y17f{bottom:910.641333pt;}
.yc4{bottom:910.982667pt;}
.y72{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y1f6{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.yc3{bottom:927.720000pt;}
.y71{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.y1f5{bottom:935.889333pt;}
.y17e{bottom:939.277333pt;}
.y1be{bottom:942.702667pt;}
.yc2{bottom:944.456000pt;}
.y17d{bottom:944.648000pt;}
.y70{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y1f4{bottom:951.230667pt;}
.yc1{bottom:961.193333pt;}
.y6f{bottom:965.178667pt;}
.y1bd{bottom:966.294667pt;}
.y1f3{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y17c{bottom:973.284000pt;}
.y3{bottom:975.722667pt;}
.y17b{bottom:978.654667pt;}
.y6e{bottom:981.916000pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.304670pt;}
.h13{height:26.194996pt;}
.ha{height:27.188522pt;}
.hb{height:27.300102pt;}
.h9{height:29.433775pt;}
.h1e{height:29.519145pt;}
.h8{height:30.399505pt;}
.hd{height:31.072763pt;}
.h12{height:31.200285pt;}
.h22{height:31.475523pt;}
.h20{height:31.558400pt;}
.he{height:34.430976pt;}
.hf{height:34.957005pt;}
.h14{height:35.100467pt;}
.h10{height:38.256384pt;}
.h11{height:38.840857pt;}
.h4{height:39.000258pt;}
.h19{height:40.931100pt;}
.h15{height:41.524400pt;}
.h1d{height:43.905614pt;}
.h2{height:45.271688pt;}
.h17{height:45.478594pt;}
.h25{height:46.434338pt;}
.h6{height:48.360277pt;}
.h1b{height:48.783579pt;}
.h18{height:50.027306pt;}
.h1c{height:53.662852pt;}
.h1f{height:57.799269pt;}
.h21{height:61.256311pt;}
.h24{height:63.007067pt;}
.h23{height:66.161067pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h16{height:277.205333pt;}
.h1a{height:289.415280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:133.842932pt;}
.w5{width:506.998773pt;}
.w4{width:517.424000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x94{left:9.167586pt;}
.x93{left:13.216636pt;}
.x99{left:14.177143pt;}
.x4{left:26.021437pt;}
.x91{left:41.404385pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:55.428169pt;}
.x2b{left:76.346667pt;}
.xc2{left:78.002667pt;}
.x97{left:83.780959pt;}
.xb2{left:127.206667pt;}
.x2c{left:133.794667pt;}
.xc3{left:136.136000pt;}
.x98{left:198.079026pt;}
.x92{left:205.975586pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xa8{left:223.916000pt;}
.x76{left:224.912000pt;}
.x61{left:226.685333pt;}
.x62{left:233.990667pt;}
.x77{left:238.820000pt;}
.x6{left:240.553333pt;}
.x5b{left:245.565333pt;}
.xb3{left:247.256000pt;}
.xb5{left:248.849333pt;}
.x9{left:251.365333pt;}
.x34{left:253.094667pt;}
.x5c{left:255.880000pt;}
.xa9{left:259.534667pt;}
.x31{left:263.360000pt;}
.x16{left:266.417333pt;}
.x8e{left:268.280000pt;}
.x75{left:270.206667pt;}
.xae{left:271.618667pt;}
.x17{left:273.058667pt;}
.x8{left:275.057333pt;}
.x18{left:276.446667pt;}
.x96{left:278.160000pt;}
.x32{left:280.030667pt;}
.x19{left:283.088000pt;}
.x8f{left:284.722667pt;}
.x70{left:286.090667pt;}
.x90{left:290.764000pt;}
.x33{left:293.313333pt;}
.x71{left:300.004000pt;}
.x39{left:305.833333pt;}
.x3a{left:309.220000pt;}
.xac{left:310.361333pt;}
.x22{left:314.500000pt;}
.x69{left:318.232000pt;}
.x3b{left:322.504000pt;}
.xb4{left:325.561333pt;}
.x23{left:327.782667pt;}
.x1a{left:330.161333pt;}
.xc1{left:332.613333pt;}
.x24{left:334.292000pt;}
.x82{left:335.898667pt;}
.xb6{left:337.490667pt;}
.xad{left:340.616000pt;}
.x1b{left:343.445333pt;}
.xa7{left:346.664000pt;}
.x25{left:347.576000pt;}
.x4f{left:349.216000pt;}
.x1c{left:350.213333pt;}
.x6a{left:356.008000pt;}
.x44{left:357.262667pt;}
.xbc{left:361.246667pt;}
.x50{left:362.498667pt;}
.x1d{left:363.497333pt;}
.x59{left:364.497333pt;}
.x79{left:369.942667pt;}
.x9c{left:372.125333pt;}
.x6b{left:373.710667pt;}
.xaf{left:375.594667pt;}
.x5a{left:377.781333pt;}
.x49{left:380.661333pt;}
.x7a{left:383.930667pt;}
.x9d{left:385.409333pt;}
.xb7{left:388.145333pt;}
.xb0{left:393.038667pt;}
.x4a{left:393.945333pt;}
.x4b{left:397.329333pt;}
.x78{left:399.776000pt;}
.x3c{left:404.414667pt;}
.x65{left:406.970667pt;}
.x4c{left:410.613333pt;}
.xe{left:414.933333pt;}
.x9e{left:416.445333pt;}
.x3d{left:417.697333pt;}
.x66{left:420.253333pt;}
.xf{left:421.574667pt;}
.x67{left:423.641333pt;}
.xb8{left:424.633333pt;}
.x10{left:428.296000pt;}
.x72{left:433.836000pt;}
.x11{left:434.938667pt;}
.x68{left:436.924000pt;}
.x63{left:439.208000pt;}
.x26{left:441.025333pt;}
.x5d{left:442.801333pt;}
.x64{left:444.516000pt;}
.x51{left:446.565333pt;}
.x57{left:448.174667pt;}
.xb1{left:451.793333pt;}
.x5e{left:454.876000pt;}
.x95{left:455.927586pt;}
.x52{left:459.849333pt;}
.x58{left:461.458667pt;}
.xb9{left:463.630667pt;}
.xa1{left:465.034667pt;}
.xa0{left:466.906667pt;}
.x9f{left:471.516000pt;}
.x7b{left:480.429333pt;}
.x84{left:484.393333pt;}
.xa2{left:486.281333pt;}
.x8c{left:491.942667pt;}
.xa4{left:495.737333pt;}
.x85{left:497.642667pt;}
.x7c{left:499.981333pt;}
.xa5{left:501.868000pt;}
.xba{left:503.956000pt;}
.x12{left:505.100000pt;}
.x53{left:510.577333pt;}
.x13{left:511.742667pt;}
.xbb{left:512.914667pt;}
.x14{left:515.042667pt;}
.x8d{left:518.508000pt;}
.x15{left:521.685333pt;}
.x54{left:523.860000pt;}
.x27{left:525.076000pt;}
.xa{left:530.178667pt;}
.x28{left:531.717333pt;}
.x29{left:535.101333pt;}
.xb{left:536.821333pt;}
.xc{left:540.181333pt;}
.x8b{left:541.662667pt;}
.xa3{left:545.346667pt;}
.xd{left:546.822667pt;}
.x2a{left:548.384000pt;}
.x45{left:550.754667pt;}
.x86{left:559.402667pt;}
.x37{left:561.173333pt;}
.x1e{left:563.018667pt;}
.x46{left:564.038667pt;}
.x9a{left:566.158667pt;}
.x47{left:567.426667pt;}
.x3e{left:573.006667pt;}
.x38{left:574.456000pt;}
.x1f{left:576.302667pt;}
.x48{left:580.709333pt;}
.x89{left:581.750667pt;}
.x20{left:582.812000pt;}
.x5f{left:583.824000pt;}
.xa6{left:585.276000pt;}
.x3f{left:586.290667pt;}
.x60{left:589.801333pt;}
.x21{left:596.094667pt;}
.x8a{left:598.368000pt;}
.x6e{left:602.893333pt;}
.x9b{left:611.521333pt;}
.x73{left:614.092000pt;}
.x7d{left:621.164000pt;}
.x6f{left:622.373333pt;}
.x74{left:628.012000pt;}
.x7e{left:634.448000pt;}
.x7f{left:637.836000pt;}
.x2d{left:645.865333pt;}
.x80{left:651.118667pt;}
.x2e{left:659.149333pt;}
.x2f{left:662.537333pt;}
.x87{left:664.165333pt;}
.xbf{left:669.556000pt;}
.x83{left:672.178667pt;}
.x55{left:673.101333pt;}
.xc5{left:674.686667pt;}
.x30{left:675.820000pt;}
.xaa{left:681.648000pt;}
.x88{left:682.980000pt;}
.x56{left:686.384000pt;}
.xbe{left:690.016000pt;}
.xc4{left:695.370667pt;}
.xbd{left:697.721333pt;}
.xc0{left:702.897333pt;}
.x40{left:706.120000pt;}
.x4d{left:711.234667pt;}
.xab{left:712.717333pt;}
.x6c{left:716.009333pt;}
.x41{left:719.404000pt;}
.x4e{left:724.517333pt;}
.x42{left:726.178667pt;}
.x35{left:727.662667pt;}
.x81{left:729.545333pt;}
.x43{left:739.461333pt;}
.x36{left:740.546667pt;}
.x6d{left:744.813333pt;}
}


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