
/* 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_fec0f503cc34.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_0472bbaf97f9.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_0bcb290211b1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_7d808af45b18.woff")format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_58a7bddf3be4.woff")format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_b15ca6c17666.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_5ec6803ed43d.woff")format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_3430e5e5a568.woff")format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_5a92a20979af.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_2141bcfc8efb.woff")format("woff");}.ffa{font-family:ffa;line-height:0.716000;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_025e5dac8b98.woff")format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_684e738e3860.woff")format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_9a6e44c983e4.woff")format("woff");}.ffd{font-family:ffd;line-height:0.907000;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_36c4d3ce6778.woff")format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_d300a63d0cc7.woff")format("woff");}.fff{font-family:fff;line-height:0.040000;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_8568e822e08f.woff")format("woff");}.ff10{font-family:ff10;line-height:0.587000;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_0e0d0c82e674.woff")format("woff");}.ff11{font-family:ff11;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_46e3525ef10b.woff")format("woff");}.ff12{font-family:ff12;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_2c729ba34bda.woff")format("woff");}.ff13{font-family:ff13;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_072e39da0173.woff")format("woff");}.ff14{font-family:ff14;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_564f01bcbe9a.woff")format("woff");}.ff15{font-family:ff15;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_c8e9f2fcafe9.woff")format("woff");}.ff16{font-family:ff16;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:ff17;src:url("fonts/font_0022_88a035edf1c5.woff")format("woff");}.ff17{font-family:ff17;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_51816e3c6798.woff")format("woff");}.ff18{font-family:ff18;line-height:0.876000;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:ff19;src:url("fonts/font_0024_83b52c980cf2.woff")format("woff");}.ff19{font-family:ff19;line-height:0.907000;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:ff1a;src:url("fonts/font_0025_3a2e6a85b310.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.399000;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:ff1b;src:url("fonts/font_0026_c31e1edd0f4e.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.887000;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:ff1c;src:url("fonts/font_0027_04ceecf98935.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.868000;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:ff1d;src:url("fonts/font_0028_a4ff54cb3867.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.899000;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:ff1e;src:url("fonts/font_0029_d830b3850ad1.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.686000;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:ff1f;src:url("fonts/font_0030_f7ce71e312fe.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.256000;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:ff20;src:url("fonts/font_0031_7325ca6821f1.woff")format("woff");}.ff20{font-family:ff20;line-height:0.908000;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:ff21;src:url("fonts/font_0032_29432c19df8e.woff")format("woff");}.ff21{font-family:ff21;line-height:0.703235;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:ff22;src:url("fonts/font_0033_5ed491514b15.woff")format("woff");}.ff22{font-family:ff22;line-height:0.704000;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:ff23;src:url("fonts/font_0034_490a90400d20.woff")format("woff");}.ff23{font-family:ff23;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m1{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);}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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);}
.v12{vertical-align:-35.201946px;}
.vc{vertical-align:-27.949472px;}
.v3{vertical-align:-26.027964px;}
.v14{vertical-align:-11.580020px;}
.v5{vertical-align:-8.970026px;}
.vf{vertical-align:-6.727494px;}
.v1{vertical-align:-3.587999px;}
.v4{vertical-align:-2.411996px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:7.404039px;}
.ve{vertical-align:11.190006px;}
.v9{vertical-align:12.503971px;}
.v11{vertical-align:14.843977px;}
.v8{vertical-align:17.267988px;}
.vb{vertical-align:21.689967px;}
.v2{vertical-align:26.033955px;}
.va{vertical-align:31.469999px;}
.v13{vertical-align:35.201946px;}
.v7{vertical-align:40.433981px;}
.v6{vertical-align:84.281923px;}
.vd{vertical-align:140.471904px;}
.ls0{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.002271px;}
.lsb{letter-spacing:0.003168px;}
.ls39{letter-spacing:0.008350px;}
.ls7{letter-spacing:0.009146px;}
.ls2b{letter-spacing:0.009754px;}
.ls3f{letter-spacing:0.010931px;}
.ls31{letter-spacing:0.010938px;}
.ls1f{letter-spacing:0.017992px;}
.ls8{letter-spacing:0.018930px;}
.ls1a{letter-spacing:0.018936px;}
.ls1b{letter-spacing:0.023014px;}
.lsd{letter-spacing:0.023016px;}
.lsf{letter-spacing:0.023050px;}
.ls5{letter-spacing:0.023105px;}
.lse{letter-spacing:0.025450px;}
.ls2e{letter-spacing:0.029802px;}
.ls37{letter-spacing:0.030850px;}
.ls34{letter-spacing:0.032021px;}
.ls22{letter-spacing:0.032763px;}
.ls2a{letter-spacing:0.034157px;}
.ls30{letter-spacing:0.038331px;}
.ls2d{letter-spacing:0.039192px;}
.ls2f{letter-spacing:0.040742px;}
.ls41{letter-spacing:0.042610px;}
.ls11{letter-spacing:0.043576px;}
.ls48{letter-spacing:0.044473px;}
.ls20{letter-spacing:0.069280px;}
.ls26{letter-spacing:0.095318px;}
.ls4{letter-spacing:0.179327px;}
.ls46{letter-spacing:0.476331px;}
.ls44{letter-spacing:0.482563px;}
.ls18{letter-spacing:1.037889px;}
.ls28{letter-spacing:1.694458px;}
.ls3d{letter-spacing:1.730634px;}
.ls24{letter-spacing:2.151920px;}
.ls23{letter-spacing:2.271471px;}
.ls1{letter-spacing:2.999259px;}
.ls3e{letter-spacing:3.001167px;}
.ls27{letter-spacing:3.005446px;}
.ls15{letter-spacing:3.011446px;}
.ls3b{letter-spacing:5.068980px;}
.ls1e{letter-spacing:6.980337px;}
.ls3c{letter-spacing:8.512061px;}
.ls21{letter-spacing:9.982518px;}
.ls13{letter-spacing:10.042294px;}
.ls36{letter-spacing:11.285655px;}
.ls19{letter-spacing:12.967950px;}
.ls9{letter-spacing:13.329949px;}
.ls33{letter-spacing:14.107068px;}
.ls3a{letter-spacing:14.154889px;}
.ls35{letter-spacing:14.284109px;}
.ls29{letter-spacing:15.440130px;}
.ls10{letter-spacing:16.617605px;}
.ls6{letter-spacing:16.650362px;}
.ls12{letter-spacing:16.677381px;}
.ls42{letter-spacing:16.880661px;}
.ls40{letter-spacing:17.104109px;}
.ls2c{letter-spacing:18.739628px;}
.ls14{letter-spacing:18.769525px;}
.ls38{letter-spacing:19.206782px;}
.ls32{letter-spacing:19.206788px;}
.ls45{letter-spacing:19.623231px;}
.ls1d{letter-spacing:19.770766px;}
.ls1c{letter-spacing:21.205380px;}
.ls47{letter-spacing:21.641401px;}
.ls25{letter-spacing:23.154696px;}
.ls4a{letter-spacing:23.252692px;}
.ls43{letter-spacing:26.241470px;}
.ls3{letter-spacing:26.411241px;}
.ls2{letter-spacing:26.411380px;}
.ls16{letter-spacing:28.154288px;}
.lsa{letter-spacing:29.895131px;}
.ls17{letter-spacing:30.269428px;}
.lsc{letter-spacing:35.768140px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-0.113574px;}
.wse{word-spacing:-0.071731px;}
.ws17{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.056787px;}
.wsd{word-spacing:-0.053798px;}
.ws103{word-spacing:-0.048418px;}
.wsce{word-spacing:-0.044832px;}
.ws85{word-spacing:-0.041843px;}
.wsa0{word-spacing:-0.040349px;}
.wse6{word-spacing:-0.039751px;}
.ws70{word-spacing:-0.037061px;}
.wscf{word-spacing:-0.031382px;}
.ws6e{word-spacing:0.000000px;}
.ws4f{word-spacing:8.159340px;}
.ws4e{word-spacing:8.201183px;}
.ws2b{word-spacing:9.922743px;}
.ws30{word-spacing:9.982518px;}
.wsc6{word-spacing:10.042294px;}
.ws9f{word-spacing:11.459051px;}
.ws9e{word-spacing:11.781841px;}
.ws6f{word-spacing:12.341262px;}
.ws8e{word-spacing:13.329949px;}
.ws101{word-spacing:13.628827px;}
.ws86{word-spacing:13.748378px;}
.ws90{word-spacing:13.927705px;}
.wsf1{word-spacing:14.059248px;}
.wsf4{word-spacing:14.107068px;}
.wsbe{word-spacing:14.286358px;}
.ws51{word-spacing:14.585236px;}
.ws55{word-spacing:14.645012px;}
.ws50{word-spacing:14.704787px;}
.ws8c{word-spacing:14.824338px;}
.wsf6{word-spacing:14.884114px;}
.ws9c{word-spacing:14.928946px;}
.ws135{word-spacing:14.943890px;}
.ws9d{word-spacing:14.973778px;}
.ws21{word-spacing:15.242767px;}
.ws59{word-spacing:15.302543px;}
.wse3{word-spacing:15.332534px;}
.ws63{word-spacing:15.362318px;}
.ws87{word-spacing:15.422094px;}
.ws111{word-spacing:15.481870px;}
.ws7a{word-spacing:15.601421px;}
.ws2d{word-spacing:15.661196px;}
.ws2c{word-spacing:15.720972px;}
.ws3{word-spacing:15.729999px;}
.ws113{word-spacing:15.780747px;}
.ws7d{word-spacing:15.840523px;}
.ws2f{word-spacing:15.900298px;}
.ws6{word-spacing:15.900360px;}
.ws7c{word-spacing:15.960074px;}
.ws5{word-spacing:16.013934px;}
.ws93{word-spacing:16.019850px;}
.ws39{word-spacing:16.079625px;}
.ws104{word-spacing:16.123261px;}
.ws117{word-spacing:16.139401px;}
.ws118{word-spacing:16.199176px;}
.ws4a{word-spacing:16.318727px;}
.ws29{word-spacing:16.498054px;}
.wsc2{word-spacing:16.557830px;}
.wsc1{word-spacing:16.576240px;}
.ws5a{word-spacing:16.617605px;}
.ws38{word-spacing:16.737156px;}
.ws36{word-spacing:16.796932px;}
.ws37{word-spacing:16.856707px;}
.wsf0{word-spacing:16.880661px;}
.wsa7{word-spacing:16.916483px;}
.wsf2{word-spacing:16.928482px;}
.ws4d{word-spacing:16.976258px;}
.wsf5{word-spacing:16.976302px;}
.ws74{word-spacing:17.036034px;}
.ws20{word-spacing:17.155585px;}
.ws1e{word-spacing:17.275136px;}
.ws1f{word-spacing:17.334912px;}
.wsfb{word-spacing:17.394687px;}
.wsc0{word-spacing:17.454463px;}
.wsfc{word-spacing:17.633790px;}
.ws108{word-spacing:17.693565px;}
.ws46{word-spacing:17.753341px;}
.ws53{word-spacing:17.813116px;}
.ws52{word-spacing:17.872892px;}
.ws6b{word-spacing:17.932667px;}
.ws10e{word-spacing:17.992443px;}
.ws10d{word-spacing:18.111994px;}
.ws35{word-spacing:18.171770px;}
.ws42{word-spacing:18.231545px;}
.wsa5{word-spacing:18.351096px;}
.ws72{word-spacing:18.399040px;}
.wsc9{word-spacing:18.410872px;}
.ws71{word-spacing:18.452839px;}
.ws56{word-spacing:18.470647px;}
.wsd7{word-spacing:18.506637px;}
.ws89{word-spacing:18.530423px;}
.wsea{word-spacing:18.590199px;}
.ws97{word-spacing:18.649974px;}
.wsec{word-spacing:18.683855px;}
.ws57{word-spacing:18.829301px;}
.wse7{word-spacing:18.853210px;}
.wsf8{word-spacing:18.889076px;}
.wse4{word-spacing:18.909997px;}
.ws77{word-spacing:18.948852px;}
.wsb9{word-spacing:19.068403px;}
.wsba{word-spacing:19.128179px;}
.wsef{word-spacing:19.184608px;}
.ws110{word-spacing:19.187954px;}
.ws64{word-spacing:19.307505px;}
.ws32{word-spacing:19.427056px;}
.ws31{word-spacing:19.486832px;}
.ws131{word-spacing:19.645835px;}
.ws3d{word-spacing:19.646181px;}
.wsbd{word-spacing:19.666159px;}
.ws130{word-spacing:19.725934px;}
.wsb{word-spacing:19.744000px;}
.ws23{word-spacing:19.785710px;}
.wsc{word-spacing:19.797798px;}
.ws1a{word-spacing:19.845485px;}
.ws3a{word-spacing:19.905261px;}
.ws24{word-spacing:19.965036px;}
.ws1b{word-spacing:20.024812px;}
.ws47{word-spacing:20.084587px;}
.ws60{word-spacing:20.204139px;}
.wsc7{word-spacing:20.263914px;}
.ws69{word-spacing:20.383465px;}
.ws68{word-spacing:20.443241px;}
.ws100{word-spacing:20.503016px;}
.wsfd{word-spacing:20.562792px;}
.ws10b{word-spacing:20.622568px;}
.wsc8{word-spacing:20.682343px;}
.ws25{word-spacing:20.742119px;}
.ws11{word-spacing:20.861670px;}
.wsb6{word-spacing:20.921445px;}
.ws73{word-spacing:20.981221px;}
.ws10{word-spacing:21.100772px;}
.ws28{word-spacing:21.160548px;}
.ws78{word-spacing:21.220323px;}
.ws40{word-spacing:21.280099px;}
.ws88{word-spacing:21.399650px;}
.wsd2{word-spacing:21.411749px;}
.ws91{word-spacing:21.459425px;}
.ws58{word-spacing:21.519201px;}
.ws8f{word-spacing:21.578976px;}
.ws26{word-spacing:21.638752px;}
.wsf3{word-spacing:21.662718px;}
.ws27{word-spacing:21.698528px;}
.wsaa{word-spacing:21.758303px;}
.wsa9{word-spacing:21.818079px;}
.ws13{word-spacing:21.937630px;}
.wscc{word-spacing:21.997405px;}
.wseb{word-spacing:22.007855px;}
.ws2a{word-spacing:22.116956px;}
.ws12{word-spacing:22.176732px;}
.ws65{word-spacing:22.236508px;}
.ws3b{word-spacing:22.296283px;}
.wsbb{word-spacing:22.595161px;}
.wsbc{word-spacing:22.654936px;}
.wsbf{word-spacing:22.714712px;}
.ws2e{word-spacing:22.774488px;}
.ws7b{word-spacing:22.894039px;}
.ws5b{word-spacing:22.953814px;}
.wse9{word-spacing:23.013590px;}
.wsa2{word-spacing:23.025700px;}
.ws22{word-spacing:23.073365px;}
.wsd4{word-spacing:23.098571px;}
.ws134{word-spacing:23.133141px;}
.wsd3{word-spacing:23.133297px;}
.wsd5{word-spacing:23.187095px;}
.wsa{word-spacing:23.384356px;}
.ws9{word-spacing:23.456087px;}
.ws48{word-spacing:23.551570px;}
.wsa1{word-spacing:23.563683px;}
.ws49{word-spacing:23.611345px;}
.ws62{word-spacing:23.671121px;}
.ws14{word-spacing:23.730897px;}
.ws80{word-spacing:23.910223px;}
.ws81{word-spacing:23.969999px;}
.ws7f{word-spacing:24.029774px;}
.wsa6{word-spacing:24.209101px;}
.ws109{word-spacing:24.328652px;}
.ws10a{word-spacing:24.388428px;}
.ws3f{word-spacing:24.507979px;}
.wscb{word-spacing:24.687305px;}
.ws92{word-spacing:24.747081px;}
.ws128{word-spacing:24.806857px;}
.wsca{word-spacing:24.866632px;}
.ws16{word-spacing:24.926408px;}
.ws15{word-spacing:24.986183px;}
.wsad{word-spacing:25.045959px;}
.ws18{word-spacing:25.165510px;}
.ws0{word-spacing:25.167998px;}
.ws45{word-spacing:25.215363px;}
.ws19{word-spacing:25.225285px;}
.wsb0{word-spacing:25.344837px;}
.wsc4{word-spacing:25.390299px;}
.wsaf{word-spacing:25.404612px;}
.ws11f{word-spacing:25.464388px;}
.wsd8{word-spacing:25.583939px;}
.wsf9{word-spacing:25.643714px;}
.ws84{word-spacing:25.703490px;}
.wsfa{word-spacing:25.763265px;}
.ws98{word-spacing:25.882817px;}
.ws12d{word-spacing:26.002368px;}
.ws54{word-spacing:26.062143px;}
.ws129{word-spacing:26.121919px;}
.ws41{word-spacing:26.181694px;}
.ws33{word-spacing:26.241470px;}
.ws34{word-spacing:26.361021px;}
.ws11e{word-spacing:26.480572px;}
.wsb5{word-spacing:26.600123px;}
.ws10c{word-spacing:26.719674px;}
.ws5e{word-spacing:26.779450px;}
.ws7{word-spacing:26.827451px;}
.ws76{word-spacing:26.899001px;}
.ws8{word-spacing:26.899182px;}
.ws120{word-spacing:26.958777px;}
.wsd1{word-spacing:27.060577px;}
.wsd0{word-spacing:27.114375px;}
.ws114{word-spacing:27.138103px;}
.ws5f{word-spacing:27.257654px;}
.wsdc{word-spacing:27.436981px;}
.wsa8{word-spacing:27.496757px;}
.wsda{word-spacing:27.616308px;}
.wsac{word-spacing:27.735859px;}
.ws4b{word-spacing:27.855410px;}
.ws4c{word-spacing:27.974961px;}
.ws44{word-spacing:28.034737px;}
.wsdb{word-spacing:28.094512px;}
.ws43{word-spacing:28.154288px;}
.ws7e{word-spacing:28.273839px;}
.ws83{word-spacing:28.333614px;}
.wse8{word-spacing:28.453166px;}
.ws82{word-spacing:28.512941px;}
.wsff{word-spacing:28.632492px;}
.wsb2{word-spacing:28.811819px;}
.ws66{word-spacing:29.110697px;}
.ws67{word-spacing:29.170472px;}
.ws75{word-spacing:29.349799px;}
.wsa4{word-spacing:29.373907px;}
.ws1c{word-spacing:29.409575px;}
.wsa3{word-spacing:29.427705px;}
.ws6d{word-spacing:29.529126px;}
.ws1d{word-spacing:29.648677px;}
.ws10f{word-spacing:29.708452px;}
.wsd9{word-spacing:29.828003px;}
.ws99{word-spacing:29.887779px;}
.ws12c{word-spacing:29.947555px;}
.ws8d{word-spacing:30.007330px;}
.ws6c{word-spacing:30.067106px;}
.ws8a{word-spacing:30.365983px;}
.ws8b{word-spacing:30.425759px;}
.ws94{word-spacing:30.545310px;}
.ws124{word-spacing:30.605086px;}
.ws95{word-spacing:30.664861px;}
.wsc3{word-spacing:30.718866px;}
.wsb3{word-spacing:30.724637px;}
.wsdd{word-spacing:30.784412px;}
.wsb4{word-spacing:30.844188px;}
.wsf7{word-spacing:31.143066px;}
.wsb8{word-spacing:31.262617px;}
.ws1{word-spacing:31.459998px;}
.ws61{word-spacing:32.398352px;}
.wsae{word-spacing:32.458128px;}
.ws11b{word-spacing:32.757006px;}
.wsfe{word-spacing:32.816781px;}
.ws96{word-spacing:33.175435px;}
.wsde{word-spacing:33.294986px;}
.ws5d{word-spacing:33.354761px;}
.wsd6{word-spacing:33.354986px;}
.ws12b{word-spacing:33.892741px;}
.wsb1{word-spacing:33.952517px;}
.wsc5{word-spacing:34.072068px;}
.ws3c{word-spacing:34.131844px;}
.ws115{word-spacing:34.191619px;}
.ws123{word-spacing:35.148028px;}
.ws122{word-spacing:35.207804px;}
.wsf{word-spacing:35.387130px;}
.ws6a{word-spacing:35.446906px;}
.wsab{word-spacing:36.164213px;}
.wse1{word-spacing:37.013274px;}
.ws11d{word-spacing:37.539050px;}
.wse0{word-spacing:38.412032px;}
.wsdf{word-spacing:38.519629px;}
.ws12a{word-spacing:39.631195px;}
.ws5c{word-spacing:40.288726px;}
.ws11a{word-spacing:40.766931px;}
.ws119{word-spacing:40.826706px;}
.wse2{word-spacing:42.393111px;}
.ws132{word-spacing:43.576382px;}
.ws133{word-spacing:43.616491px;}
.ws121{word-spacing:44.054586px;}
.ws126{word-spacing:44.233913px;}
.ws127{word-spacing:44.473015px;}
.ws116{word-spacing:45.190322px;}
.ws11c{word-spacing:45.309873px;}
.ws79{word-spacing:45.489200px;}
.ws125{word-spacing:48.179100px;}
.wsb7{word-spacing:52.781818px;}
.ws106{word-spacing:56.488282px;}
.ws107{word-spacing:56.542081px;}
.ws112{word-spacing:56.547678px;}
.ws105{word-spacing:56.595879px;}
.ws12f{word-spacing:66.171543px;}
.ws12e{word-spacing:70.236281px;}
.ws102{word-spacing:109.425132px;}
.wse5{word-spacing:120.759262px;}
.wscd{word-spacing:133.433382px;}
.ws9b{word-spacing:142.794297px;}
.ws9a{word-spacing:267.930157px;}
.ws3e{word-spacing:268.870460px;}
.wsee{word-spacing:322.891893px;}
.wsed{word-spacing:360.203621px;}
._17{margin-left:-513.599493px;}
._d{margin-left:-34.091549px;}
._b{margin-left:-7.950180px;}
._1{margin-left:-6.132996px;}
._8{margin-left:-4.542960px;}
._3{margin-left:-2.839350px;}
._0{margin-left:-1.817184px;}
._2{width:1.817184px;}
._9{width:2.952924px;}
._2b{width:4.602736px;}
._6{width:9.483429px;}
._e{width:10.687884px;}
._27{width:12.636560px;}
._1c{width:14.071488px;}
._14{width:15.422094px;}
._11{width:16.545919px;}
._26{width:17.568083px;}
._7{width:18.682923px;}
._a{width:20.386533px;}
._f{width:21.907771px;}
._10{width:22.917899px;}
._1a{width:24.202965px;}
._1d{width:26.767256px;}
._c{width:27.939262px;}
._12{width:29.600523px;}
._13{width:31.585412px;}
._15{width:32.861082px;}
._1b{width:35.259868px;}
._5{width:37.252272px;}
._4{width:44.293860px;}
._2a{width:45.656904px;}
._29{width:65.257416px;}
._22{width:69.775139px;}
._1f{width:71.359454px;}
._20{width:92.147336px;}
._28{width:99.596237px;}
._23{width:118.721575px;}
._24{width:120.939365px;}
._1e{width:132.424663px;}
._21{width:142.143141px;}
._19{width:157.816144px;}
._16{width:163.654611px;}
._25{width:168.467379px;}
._18{width:610.315495px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.899182px;}
.fsc{font-size:31.382076px;}
.fs10{font-size:35.865576px;}
.fs9{font-size:37.060848px;}
.fsf{font-size:39.750630px;}
.fsa{font-size:40.348770px;}
.fs7{font-size:41.842770px;}
.fsb{font-size:44.831670px;}
.fs4{font-size:47.820570px;}
.fs11{font-size:48.418200px;}
.fs5{font-size:53.798364px;}
.fse{font-size:56.786778px;}
.fs2{font-size:56.787000px;}
.fs6{font-size:59.775558px;}
.fs8{font-size:59.999958px;}
.fs3{font-size:71.731152px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:1.334646px;}
.yf5{bottom:30.540604px;}
.y7c{bottom:31.875250px;}
.yf2{bottom:88.845549px;}
.y158{bottom:89.862547px;}
.y11b{bottom:89.862553px;}
.yb4{bottom:89.862558px;}
.y19d{bottom:89.862561px;}
.y7a{bottom:91.197199px;}
.y4a{bottom:91.197204px;}
.yef{bottom:96.735571px;}
.yee{bottom:101.219066px;}
.y157{bottom:107.795035px;}
.y11a{bottom:107.795041px;}
.yb3{bottom:107.795047px;}
.y19c{bottom:107.795050px;}
.y79{bottom:109.129687px;}
.y49{bottom:109.129692px;}
.yf1{bottom:110.364562px;}
.y1d2{bottom:110.840061px;}
.yf3{bottom:110.933036px;}
.yeb{bottom:110.933058px;}
.y13{bottom:111.475500px;}
.y156{bottom:125.727523px;}
.y119{bottom:125.727529px;}
.yb2{bottom:125.727535px;}
.y19b{bottom:125.727538px;}
.y78{bottom:127.062175px;}
.y48{bottom:127.062180px;}
.yed{bottom:128.118546px;}
.y1d1{bottom:128.772549px;}
.y12{bottom:129.409500px;}
.yf0{bottom:131.885048px;}
.yec{bottom:132.602041px;}
.y155{bottom:143.660011px;}
.y118{bottom:143.660017px;}
.yb1{bottom:143.660023px;}
.y19a{bottom:143.660026px;}
.y77{bottom:144.994663px;}
.y47{bottom:144.994668px;}
.y1d0{bottom:146.705037px;}
.y11{bottom:147.342000px;}
.y154{bottom:161.592500px;}
.yb0{bottom:161.592511px;}
.y117{bottom:161.593999px;}
.y199{bottom:161.594008px;}
.y76{bottom:162.927151px;}
.y46{bottom:162.928651px;}
.y1cf{bottom:164.637526px;}
.y10{bottom:165.274500px;}
.yea{bottom:177.933508px;}
.y153{bottom:178.030988px;}
.yaf{bottom:179.524999px;}
.y116{bottom:179.526486px;}
.y75{bottom:180.861134px;}
.y45{bottom:180.861139px;}
.y198{bottom:191.427481px;}
.y1ce{bottom:191.537005px;}
.ye9{bottom:195.865996px;}
.y115{bottom:197.458974px;}
.yae{bottom:197.458981px;}
.y74{bottom:198.793622px;}
.y44{bottom:198.793627px;}
.y152{bottom:207.919966px;}
.y197{bottom:209.361464px;}
.y1cd{bottom:209.469493px;}
.ye8{bottom:213.798484px;}
.y114{bottom:215.391462px;}
.yad{bottom:215.391469px;}
.y73{bottom:216.726110px;}
.y151{bottom:221.619460px;}
.y150{bottom:225.852454px;}
.y196{bottom:227.293952px;}
.y1cc{bottom:227.401981px;}
.y42{bottom:227.430100px;}
.ye7{bottom:231.732467px;}
.yac{bottom:233.323957px;}
.y72{bottom:234.658598px;}
.yf{bottom:237.006000px;}
.y43{bottom:237.681094px;}
.y41{bottom:237.681103px;}
.y14f{bottom:243.784942px;}
.y195{bottom:245.226440px;}
.y112{bottom:249.316936px;}
.ye6{bottom:249.664955px;}
.y113{bottom:249.919935px;}
.yab{bottom:251.256445px;}
.y71{bottom:252.591086px;}
.y1cb{bottom:254.301460px;}
.ye{bottom:254.938500px;}
.y14d{bottom:258.022936px;}
.y14e{bottom:261.717431px;}
.y14c{bottom:261.717434px;}
.y194{bottom:263.158928px;}
.y111{bottom:266.356922px;}
.ye5{bottom:267.597443px;}
.yaa{bottom:269.188934px;}
.y70{bottom:270.523574px;}
.y1ca{bottom:272.233948px;}
.yd{bottom:272.871000px;}
.y40{bottom:277.398075px;}
.y14b{bottom:279.649922px;}
.y110{bottom:282.795406px;}
.ye4{bottom:285.529931px;}
.ya9{bottom:287.121422px;}
.y6f{bottom:288.457557px;}
.y1c9{bottom:290.166436px;}
.yc{bottom:290.803500px;}
.y193{bottom:292.993910px;}
.y3f{bottom:295.330564px;}
.y14a{bottom:297.583905px;}
.y10f{bottom:299.233899px;}
.ye3{bottom:303.462419px;}
.ya8{bottom:305.055404px;}
.y6e{bottom:306.390045px;}
.y1c8{bottom:308.100419px;}
.y192{bottom:310.926398px;}
.y3e{bottom:313.263052px;}
.y149{bottom:315.516393px;}
.y10e{bottom:315.672393px;}
.ye2{bottom:321.396402px;}
.ya7{bottom:322.987892px;}
.y6d{bottom:324.322533px;}
.y191{bottom:328.858886px;}
.y3d{bottom:331.195540px;}
.y148{bottom:333.448881px;}
.y1c7{bottom:334.998404px;}
.ye1{bottom:339.328890px;}
.ya6{bottom:340.920380px;}
.y6c{bottom:342.255021px;}
.yb{bottom:344.602500px;}
.y10c{bottom:345.971997px;}
.y190{bottom:346.792869px;}
.y3c{bottom:349.128028px;}
.y147{bottom:351.381369px;}
.y1c6{bottom:352.932386px;}
.ye0{bottom:357.261378px;}
.ya5{bottom:358.852868px;}
.y6b{bottom:360.187509px;}
.y10b{bottom:360.340488px;}
.ya{bottom:362.535000px;}
.y3b{bottom:367.062010px;}
.y146{bottom:369.313857px;}
.y1c5{bottom:370.864874px;}
.ydf{bottom:375.193866px;}
.ya4{bottom:375.291356px;}
.y18f{bottom:376.627851px;}
.y6a{bottom:378.120002px;}
.y3a{bottom:384.994498px;}
.y1c4{bottom:388.797362px;}
.yde{bottom:393.126354px;}
.y18e{bottom:394.560339px;}
.y69{bottom:396.053985px;}
.ya3{bottom:397.707340px;}
.y9{bottom:398.400000px;}
.y39{bottom:402.926986px;}
.y107{bottom:403.027458px;}
.ydd{bottom:411.058842px;}
.y18d{bottom:412.492827px;}
.y68{bottom:413.986473px;}
.ya2{bottom:415.639828px;}
.y1c3{bottom:415.696842px;}
.y8{bottom:416.332500px;}
.y145{bottom:419.037316px;}
.y38{bottom:420.859474px;}
.y18c{bottom:428.931315px;}
.ydc{bottom:428.992824px;}
.y67{bottom:431.918959px;}
.y144{bottom:433.233306px;}
.ya1{bottom:433.572316px;}
.y1c2{bottom:433.629330px;}
.y7{bottom:434.265000px;}
.y37{bottom:438.791962px;}
.y10d{bottom:443.591556px;}
.ydb{bottom:446.925313px;}
.y143{bottom:447.430802px;}
.y108{bottom:448.866677px;}
.y66{bottom:449.851453px;}
.ya0{bottom:451.506298px;}
.y1c1{bottom:451.561818px;}
.y6{bottom:452.199000px;}
.y36{bottom:456.725945px;}
.y18b{bottom:458.818803px;}
.y142{bottom:461.626787px;}
.yda{bottom:464.857801px;}
.y65{bottom:467.783941px;}
.y9f{bottom:469.438786px;}
.y140{bottom:472.113289px;}
.y35{bottom:474.658433px;}
.y13f{bottom:475.824280px;}
.y141{bottom:475.824283px;}
.y18a{bottom:476.751292px;}
.y1c0{bottom:478.461297px;}
.yd9{bottom:482.790289px;}
.y64{bottom:484.222428px;}
.y9e{bottom:487.371274px;}
.y13e{bottom:490.080267px;}
.y34{bottom:492.590921px;}
.y189{bottom:494.683780px;}
.y109{bottom:495.058019px;}
.y1bf{bottom:496.393785px;}
.y5{bottom:497.031000px;}
.yd8{bottom:500.722777px;}
.y13d{bottom:504.277764px;}
.y9d{bottom:505.303762px;}
.y63{bottom:506.638412px;}
.y33{bottom:510.523409px;}
.y188{bottom:512.617762px;}
.y1be{bottom:514.326273px;}
.yd7{bottom:518.655265px;}
.y9c{bottom:523.236258px;}
.y62{bottom:524.570900px;}
.y32{bottom:528.455897px;}
.y187{bottom:530.550250px;}
.y13c{bottom:531.175747px;}
.y1bd{bottom:532.258761px;}
.yd6{bottom:536.589247px;}
.y10a{bottom:540.898358px;}
.y9b{bottom:541.170241px;}
.y61{bottom:542.504883px;}
.y31{bottom:546.388385px;}
.y186{bottom:548.482738px;}
.yd5{bottom:554.521735px;}
.y9a{bottom:559.102729px;}
.y1bc{bottom:559.158241px;}
.y60{bottom:560.437371px;}
.y30{bottom:564.322368px;}
.y185{bottom:566.415226px;}
.y13b{bottom:570.969217px;}
.yd4{bottom:572.454223px;}
.y99{bottom:577.035217px;}
.y1bb{bottom:577.090729px;}
.y5f{bottom:578.369859px;}
.y2f{bottom:582.254856px;}
.y184{bottom:584.347714px;}
.y13a{bottom:588.901705px;}
.yd3{bottom:590.386711px;}
.y98{bottom:594.967705px;}
.y1ba{bottom:595.023217px;}
.y106{bottom:595.174699px;}
.y5e{bottom:596.302347px;}
.y2e{bottom:600.187344px;}
.y183{bottom:602.280202px;}
.y139{bottom:606.834193px;}
.yd2{bottom:608.319200px;}
.y97{bottom:612.900193px;}
.y1b9{bottom:612.955705px;}
.y105{bottom:613.107187px;}
.y5d{bottom:614.234835px;}
.y2d{bottom:618.119832px;}
.y182{bottom:620.214185px;}
.y138{bottom:624.766682px;}
.yd1{bottom:626.251688px;}
.y96{bottom:630.832681px;}
.y1b8{bottom:630.889687px;}
.y104{bottom:631.039675px;}
.y5c{bottom:632.167323px;}
.y2c{bottom:634.558321px;}
.y181{bottom:638.146673px;}
.yd0{bottom:644.185670px;}
.y5b{bottom:648.605811px;}
.y95{bottom:648.766663px;}
.y103{bottom:648.972163px;}
.y180{bottom:656.079161px;}
.y1b7{bottom:657.787672px;}
.ycf{bottom:662.118158px;}
.y2b{bottom:664.445812px;}
.y102{bottom:665.410653px;}
.y94{bottom:666.699152px;}
.y93{bottom:666.699159px;}
.y137{bottom:666.765376px;}
.y17f{bottom:674.011649px;}
.y1b6{bottom:675.721655px;}
.y5a{bottom:678.494800px;}
.yce{bottom:680.050646px;}
.y2a{bottom:682.378300px;}
.y136{bottom:683.801241px;}
.y92{bottom:684.631647px;}
.y17e{bottom:691.944137px;}
.y1b5{bottom:693.654143px;}
.y101{bottom:695.299634px;}
.y59{bottom:696.427289px;}
.ycd{bottom:697.983134px;}
.y29{bottom:700.312282px;}
.y135{bottom:700.837104px;}
.y91{bottom:702.564135px;}
.y17d{bottom:709.876625px;}
.y100{bottom:713.232122px;}
.y58{bottom:714.359777px;}
.ycc{bottom:715.915622px;}
.y134{bottom:717.872967px;}
.y28{bottom:718.244770px;}
.y90{bottom:720.496623px;}
.y1b4{bottom:720.552128px;}
.y17c{bottom:727.810608px;}
.yff{bottom:731.164610px;}
.y57{bottom:732.292265px;}
.ycb{bottom:733.848110px;}
.y133{bottom:734.908830px;}
.y27{bottom:736.177258px;}
.y8f{bottom:738.429111px;}
.y1b3{bottom:738.486110px;}
.y17b{bottom:745.743096px;}
.yfe{bottom:749.097098px;}
.y56{bottom:750.224753px;}
.yca{bottom:751.782093px;}
.y132{bottom:751.944698px;}
.y26{bottom:754.109746px;}
.y8e{bottom:756.363094px;}
.y1b2{bottom:756.418598px;}
.y17a{bottom:763.675584px;}
.yfd{bottom:767.029586px;}
.y55{bottom:768.157241px;}
.y131{bottom:768.981982px;}
.yc9{bottom:769.714581px;}
.y25{bottom:772.042235px;}
.y8d{bottom:774.295582px;}
.y1b1{bottom:774.351086px;}
.y179{bottom:781.608072px;}
.yfc{bottom:784.962074px;}
.y130{bottom:786.017845px;}
.y54{bottom:786.091223px;}
.y24{bottom:789.974723px;}
.y8c{bottom:792.228070px;}
.y178{bottom:799.540560px;}
.y1b0{bottom:801.250566px;}
.yfb{bottom:802.896057px;}
.y12f{bottom:803.053708px;}
.y23{bottom:807.908705px;}
.y8b{bottom:810.160558px;}
.y52{bottom:812.306699px;}
.y1af{bottom:819.183054px;}
.y12e{bottom:820.089571px;}
.yfa{bottom:820.828545px;}
.y51{bottom:822.557687px;}
.y53{bottom:822.557691px;}
.y22{bottom:825.841193px;}
.y4{bottom:827.964000px;}
.y8a{bottom:828.093046px;}
.yc8{bottom:829.549525px;}
.y1ae{bottom:837.115542px;}
.y12d{bottom:837.125434px;}
.yf9{bottom:838.761033px;}
.y21{bottom:843.773681px;}
.yc7{bottom:845.988019px;}
.y89{bottom:846.025534px;}
.y177{bottom:847.308017px;}
.y12c{bottom:854.161304px;}
.y1ad{bottom:855.048030px;}
.yf8{bottom:856.693521px;}
.y50{bottom:860.212164px;}
.y20{bottom:861.706169px;}
.yc6{bottom:862.426512px;}
.y176{bottom:863.746511px;}
.y3{bottom:863.829000px;}
.y88{bottom:863.959516px;}
.y12b{bottom:871.198587px;}
.y4f{bottom:878.144652px;}
.yc5{bottom:878.865006px;}
.y1f{bottom:879.638657px;}
.y175{bottom:880.185004px;}
.y87{bottom:881.892004px;}
.y1ac{bottom:881.947509px;}
.y12a{bottom:888.234450px;}
.y4e{bottom:896.077140px;}
.y1e{bottom:897.571145px;}
.y2{bottom:899.695500px;}
.y1ab{bottom:899.879997px;}
.yf7{bottom:902.045987px;}
.y129{bottom:905.270313px;}
.y15d{bottom:908.129988px;}
.ybc{bottom:910.605734px;}
.y4d{bottom:914.009628px;}
.y1d{bottom:915.505128px;}
.y1aa{bottom:917.812485px;}
.yf6{bottom:920.267977px;}
.y15c{bottom:921.775641px;}
.y128{bottom:922.874751px;}
.yba{bottom:931.033489px;}
.y4c{bottom:931.942116px;}
.y86{bottom:932.321970px;}
.y1c{bottom:933.437616px;}
.y174{bottom:938.227983px;}
.y127{bottom:939.655450px;}
.y1a9{bottom:944.711965px;}
.y173{bottom:949.358589px;}
.y4b{bottom:949.876099px;}
.y1b{bottom:949.876104px;}
.y126{bottom:956.093944px;}
.y172{bottom:960.485551px;}
.y1{bottom:962.460000px;}
.y1a8{bottom:962.644453px;}
.y171{bottom:971.617367px;}
.y15e{bottom:971.710892px;}
.y125{bottom:972.532437px;}
.yb9{bottom:976.116703px;}
.y1a7{bottom:980.578435px;}
.y170{bottom:982.744330px;}
.y159{bottom:986.134147px;}
.y124{bottom:988.970931px;}
.y16f{bottom:993.874936px;}
.y1a6{bottom:998.510923px;}
.y82{bottom:1000.042811px;}
.y16e{bottom:1005.001898px;}
.y83{bottom:1010.250480px;}
.y1a{bottom:1014.964059px;}
.y85{bottom:1016.034150px;}
.y16d{bottom:1016.133714px;}
.y1a5{bottom:1016.443411px;}
.yb8{bottom:1021.199917px;}
.y16c{bottom:1027.264320px;}
.y19{bottom:1029.377550px;}
.y15f{bottom:1033.041620px;}
.y123{bottom:1034.375891px;}
.y18{bottom:1035.884546px;}
.ybb{bottom:1036.292898px;}
.y16b{bottom:1038.391282px;}
.y1a4{bottom:1043.342891px;}
.y15a{bottom:1049.523085px;}
.y16a{bottom:1049.523099px;}
.y122{bottom:1052.308379px;}
.yc3{bottom:1053.436770px;}
.y17{bottom:1056.806526px;}
.y169{bottom:1060.650061px;}
.y1a3{bottom:1061.275379px;}
.yb7{bottom:1066.284261px;}
.yc2{bottom:1068.122512px;}
.y121{bottom:1070.240867px;}
.y16{bottom:1071.220027px;}
.y168{bottom:1071.780667px;}
.y81{bottom:1077.389004px;}
.y1a2{bottom:1079.207867px;}
.yc1{bottom:1082.326752px;}
.y167{bottom:1082.912483px;}
.y7e{bottom:1083.948285px;}
.y120{bottom:1088.173355px;}
.y166{bottom:1094.039445px;}
.yc0{bottom:1096.537740px;}
.y84{bottom:1100.823125px;}
.y165{bottom:1105.654838px;}
.y11f{bottom:1106.107337px;}
.y1a1{bottom:1106.107346px;}
.ybf{bottom:1110.743100px;}
.yb6{bottom:1111.367475px;}
.y15b{bottom:1112.912023px;}
.y15{bottom:1114.557998px;}
.y164{bottom:1116.781801px;}
.y80{bottom:1118.684693px;}
.y11e{bottom:1124.039825px;}
.y1a0{bottom:1124.039834px;}
.ybe{bottom:1124.952968px;}
.y163{bottom:1127.913617px;}
.y162{bottom:1139.040579px;}
.ybd{bottom:1139.158328px;}
.y7f{bottom:1139.745456px;}
.y11d{bottom:1141.972313px;}
.y19f{bottom:1141.972322px;}
.y14{bottom:1147.434968px;}
.y161{bottom:1150.171185px;}
.yb5{bottom:1157.550939px;}
.y11c{bottom:1159.904802px;}
.y19e{bottom:1159.904810px;}
.y160{bottom:1162.267716px;}
.yc4{bottom:1164.588935px;}
.yf4{bottom:1214.624775px;}
.y7b{bottom:1215.959421px;}
.h1e{height:2.391022px;}
.h18{height:27.795636px;}
.h1b{height:30.261577px;}
.h1c{height:33.623753px;}
.h9{height:35.865428px;}
.h26{height:35.865431px;}
.h23{height:35.865451px;}
.h2a{height:36.313650px;}
.ha{height:38.519629px;}
.h19{height:40.348773px;}
.h20{height:40.348812px;}
.h16{height:40.546847px;}
.h15{height:40.634737px;}
.h24{height:40.722611px;}
.h2b{height:41.484237px;}
.h11{height:41.663564px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h21{height:42.590083px;}
.h22{height:44.831660px;}
.hb{height:44.831669px;}
.hd{height:47.101883px;}
.h7{height:50.211806px;}
.h25{height:50.709404px;}
.h12{height:51.523862px;}
.h13{height:51.523883px;}
.h14{height:51.529861px;}
.h27{height:51.529868px;}
.h1f{height:51.538779px;}
.hf{height:57.335639px;}
.h1a{height:57.341677px;}
.h28{height:59.609647px;}
.h29{height:61.763645px;}
.h8{height:61.899383px;}
.h2{height:67.326667px;}
.h3{height:84.385482px;}
.h10{height:85.271661px;}
.hc{height:86.672913px;}
.he{height:86.672945px;}
.h1d{height:142.862926px;}
.h17{height:1261.500000px;}
.h6{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:892.500000px;}
.w2{width:892.913387px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x64{left:31.874978px;}
.x9{left:61.228458px;}
.x70{left:65.794463px;}
.x39{left:68.207953px;}
.x1d{left:72.227955px;}
.x40{left:74.677462px;}
.x88{left:76.586942px;}
.x43{left:79.907957px;}
.x71{left:82.439954px;}
.x8f{left:84.473947px;}
.x86{left:86.951944px;}
.x11{left:90.286433px;}
.x1e{left:93.616442px;}
.x2{left:96.197934px;}
.x6c{left:99.071558px;}
.x92{left:100.331930px;}
.x1{left:102.046500px;}
.x44{left:108.634432px;}
.xf{left:111.616429px;}
.x83{left:115.179265px;}
.x81{left:123.333124px;}
.x8{left:124.552415px;}
.x6{left:131.356410px;}
.x14{left:134.404411px;}
.x6d{left:135.866907px;}
.x3c{left:139.033402px;}
.x3a{left:143.461394px;}
.x6a{left:144.706397px;}
.x1b{left:147.554884px;}
.x3d{left:148.649905px;}
.xc{left:163.345390px;}
.x19{left:165.863884px;}
.xa{left:168.658376px;}
.x38{left:170.406177px;}
.x65{left:173.500385px;}
.x12{left:177.002880px;}
.x87{left:181.465370px;}
.x45{left:184.046878px;}
.x6f{left:186.889372px;}
.x7{left:197.615871px;}
.x91{left:202.864362px;}
.x89{left:203.996846px;}
.x6b{left:206.486860px;}
.x8c{left:215.068325px;}
.x67{left:219.287850px;}
.x3e{left:221.438845px;}
.x36{left:225.283579px;}
.xe{left:229.420335px;}
.x6e{left:233.972465px;}
.x82{left:235.759420px;}
.x13{left:238.336338px;}
.x46{left:240.014838px;}
.xb{left:252.544331px;}
.x1a{left:255.625327px;}
.x1f{left:262.006326px;}
.x41{left:263.396833px;}
.x8e{left:270.098813px;}
.x5{left:275.009810px;}
.x1c{left:276.520309px;}
.x35{left:277.987579px;}
.x90{left:281.215303px;}
.x8d{left:292.504273px;}
.xd{left:299.375790px;}
.x10{left:303.706290px;}
.x3b{left:308.110286px;}
.x37{left:313.580512px;}
.x8a{left:317.110254px;}
.x17{left:320.042771px;}
.x85{left:323.597780px;}
.x4{left:324.808284px;}
.x34{left:348.203460px;}
.x20{left:350.684771px;}
.x16{left:358.993242px;}
.x3{left:363.079257px;}
.x68{left:364.240242px;}
.x84{left:378.126956px;}
.x8b{left:381.002719px;}
.x42{left:384.682248px;}
.x69{left:385.969225px;}
.x66{left:387.220236px;}
.x15{left:395.101221px;}
.x18{left:397.841721px;}
.x3f{left:402.905723px;}
.x33{left:431.456707px;}
.x21{left:458.488196px;}
.x59{left:469.282159px;}
.x28{left:472.187682px;}
.x93{left:481.735168px;}
.x99{left:486.301154px;}
.x48{left:489.068664px;}
.x7d{left:490.162168px;}
.x77{left:492.029656px;}
.x47{left:494.186284px;}
.x97{left:495.848641px;}
.x7f{left:497.423658px;}
.x58{left:498.754140px;}
.x76{left:506.140977px;}
.x54{left:507.581645px;}
.x4b{left:512.231648px;}
.x22{left:516.604161px;}
.x9c{left:517.891132px;}
.x2e{left:522.514143px;}
.x95{left:524.657635px;}
.x75{left:528.515632px;}
.x61{left:529.591101px;}
.x5c{left:531.446603px;}
.x5d{left:538.364607px;}
.x5a{left:548.812105px;}
.x2c{left:550.312123px;}
.x27{left:551.618624px;}
.x31{left:553.103612px;}
.x79{left:560.686115px;}
.x23{left:563.071124px;}
.x4a{left:565.852111px;}
.x78{left:567.628106px;}
.x7a{left:575.156608px;}
.x7b{left:576.658102px;}
.x53{left:585.698585px;}
.x72{left:587.132596px;}
.x80{left:592.030087px;}
.x5b{left:595.387068px;}
.x29{left:596.677081px;}
.x5e{left:606.263559px;}
.x24{left:608.336581px;}
.x9d{left:610.516064px;}
.x62{left:611.533050px;}
.x50{left:620.285569px;}
.x63{left:624.817046px;}
.x55{left:630.577058px;}
.x2b{left:636.532068px;}
.x9e{left:643.387017px;}
.x60{left:645.101523px;}
.x2f{left:662.476041px;}
.x9b{left:669.434530px;}
.x5f{left:674.333514px;}
.x4e{left:675.425535px;}
.x4d{left:677.759544px;}
.x96{left:679.120024px;}
.x9a{left:688.625518px;}
.x4f{left:697.841510px;}
.x51{left:704.993503px;}
.x26{left:712.211504px;}
.x56{left:721.815989px;}
.x32{left:728.498499px;}
.x30{left:730.832485px;}
.x2d{left:740.223988px;}
.x7c{left:742.262490px;}
.x73{left:745.848987px;}
.x52{left:748.662971px;}
.x49{left:754.639356px;}
.x74{left:771.191462px;}
.x2a{left:774.419471px;}
.x94{left:778.463459px;}
.x4c{left:783.590461px;}
.x7e{left:788.585454px;}
.x98{left:791.117437px;}
.x57{left:796.470939px;}
.x25{left:806.891445px;}
@media print{
.v12{vertical-align:-31.290618pt;}
.vc{vertical-align:-24.843975pt;}
.v3{vertical-align:-23.135968pt;}
.v14{vertical-align:-10.293351pt;}
.v5{vertical-align:-7.973357pt;}
.vf{vertical-align:-5.979995pt;}
.v1{vertical-align:-3.189333pt;}
.v4{vertical-align:-2.143996pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:6.581368pt;}
.ve{vertical-align:9.946672pt;}
.v9{vertical-align:11.114641pt;}
.v11{vertical-align:13.194646pt;}
.v8{vertical-align:15.349323pt;}
.vb{vertical-align:19.279971pt;}
.v2{vertical-align:23.141293pt;}
.va{vertical-align:27.973332pt;}
.v13{vertical-align:31.290618pt;}
.v7{vertical-align:35.941316pt;}
.v6{vertical-align:74.917265pt;}
.vd{vertical-align:124.863914pt;}
.ls0{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.002019pt;}
.lsb{letter-spacing:0.002816pt;}
.ls39{letter-spacing:0.007422pt;}
.ls7{letter-spacing:0.008129pt;}
.ls2b{letter-spacing:0.008671pt;}
.ls3f{letter-spacing:0.009716pt;}
.ls31{letter-spacing:0.009723pt;}
.ls1f{letter-spacing:0.015993pt;}
.ls8{letter-spacing:0.016827pt;}
.ls1a{letter-spacing:0.016832pt;}
.ls1b{letter-spacing:0.020457pt;}
.lsd{letter-spacing:0.020459pt;}
.lsf{letter-spacing:0.020489pt;}
.ls5{letter-spacing:0.020538pt;}
.lse{letter-spacing:0.022622pt;}
.ls2e{letter-spacing:0.026491pt;}
.ls37{letter-spacing:0.027422pt;}
.ls34{letter-spacing:0.028463pt;}
.ls22{letter-spacing:0.029123pt;}
.ls2a{letter-spacing:0.030362pt;}
.ls30{letter-spacing:0.034072pt;}
.ls2d{letter-spacing:0.034837pt;}
.ls2f{letter-spacing:0.036215pt;}
.ls41{letter-spacing:0.037876pt;}
.ls11{letter-spacing:0.038735pt;}
.ls48{letter-spacing:0.039532pt;}
.ls20{letter-spacing:0.061582pt;}
.ls26{letter-spacing:0.084727pt;}
.ls4{letter-spacing:0.159401pt;}
.ls46{letter-spacing:0.423406pt;}
.ls44{letter-spacing:0.428945pt;}
.ls18{letter-spacing:0.922568pt;}
.ls28{letter-spacing:1.506185pt;}
.ls3d{letter-spacing:1.538341pt;}
.ls24{letter-spacing:1.912818pt;}
.ls23{letter-spacing:2.019086pt;}
.ls1{letter-spacing:2.666008pt;}
.ls3e{letter-spacing:2.667704pt;}
.ls27{letter-spacing:2.671507pt;}
.ls15{letter-spacing:2.676841pt;}
.ls3b{letter-spacing:4.505760pt;}
.ls1e{letter-spacing:6.204744pt;}
.ls3c{letter-spacing:7.566277pt;}
.ls21{letter-spacing:8.873349pt;}
.ls13{letter-spacing:8.926483pt;}
.ls36{letter-spacing:10.031693pt;}
.ls19{letter-spacing:11.527066pt;}
.ls9{letter-spacing:11.848844pt;}
.ls33{letter-spacing:12.539616pt;}
.ls3a{letter-spacing:12.582123pt;}
.ls35{letter-spacing:12.696986pt;}
.ls29{letter-spacing:13.724560pt;}
.ls10{letter-spacing:14.771205pt;}
.ls6{letter-spacing:14.800322pt;}
.ls12{letter-spacing:14.824338pt;}
.ls42{letter-spacing:15.005032pt;}
.ls40{letter-spacing:15.203653pt;}
.ls2c{letter-spacing:16.657447pt;}
.ls14{letter-spacing:16.684022pt;}
.ls38{letter-spacing:17.072695pt;}
.ls32{letter-spacing:17.072700pt;}
.ls45{letter-spacing:17.442872pt;}
.ls1d{letter-spacing:17.574015pt;}
.ls1c{letter-spacing:18.849227pt;}
.ls47{letter-spacing:19.236801pt;}
.ls25{letter-spacing:20.581952pt;}
.ls4a{letter-spacing:20.669060pt;}
.ls43{letter-spacing:23.325751pt;}
.ls3{letter-spacing:23.476659pt;}
.ls2{letter-spacing:23.476782pt;}
.ls16{letter-spacing:25.026034pt;}
.lsa{letter-spacing:26.573450pt;}
.ls17{letter-spacing:26.906158pt;}
.lsc{letter-spacing:31.793902pt;}
.ws2{word-spacing:-0.100955pt;}
.wse{word-spacing:-0.063761pt;}
.ws17{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.050477pt;}
.wsd{word-spacing:-0.047821pt;}
.ws103{word-spacing:-0.043038pt;}
.wsce{word-spacing:-0.039850pt;}
.ws85{word-spacing:-0.037194pt;}
.wsa0{word-spacing:-0.035866pt;}
.wse6{word-spacing:-0.035334pt;}
.ws70{word-spacing:-0.032943pt;}
.wscf{word-spacing:-0.027895pt;}
.ws6e{word-spacing:0.000000pt;}
.ws4f{word-spacing:7.252747pt;}
.ws4e{word-spacing:7.289940pt;}
.ws2b{word-spacing:8.820216pt;}
.ws30{word-spacing:8.873349pt;}
.wsc6{word-spacing:8.926483pt;}
.ws9f{word-spacing:10.185823pt;}
.ws9e{word-spacing:10.472747pt;}
.ws6f{word-spacing:10.970011pt;}
.ws8e{word-spacing:11.848844pt;}
.ws101{word-spacing:12.114513pt;}
.ws86{word-spacing:12.220781pt;}
.ws90{word-spacing:12.380182pt;}
.wsf1{word-spacing:12.497109pt;}
.wsf4{word-spacing:12.539616pt;}
.wsbe{word-spacing:12.698985pt;}
.ws51{word-spacing:12.964654pt;}
.ws55{word-spacing:13.017788pt;}
.ws50{word-spacing:13.070922pt;}
.ws8c{word-spacing:13.177190pt;}
.wsf6{word-spacing:13.230324pt;}
.ws9c{word-spacing:13.270174pt;}
.ws135{word-spacing:13.283457pt;}
.ws9d{word-spacing:13.310025pt;}
.ws21{word-spacing:13.549126pt;}
.ws59{word-spacing:13.602260pt;}
.wse3{word-spacing:13.628919pt;}
.ws63{word-spacing:13.655394pt;}
.ws87{word-spacing:13.708528pt;}
.ws111{word-spacing:13.761662pt;}
.ws7a{word-spacing:13.867929pt;}
.ws2d{word-spacing:13.921063pt;}
.ws2c{word-spacing:13.974197pt;}
.ws3{word-spacing:13.982221pt;}
.ws113{word-spacing:14.027331pt;}
.ws7d{word-spacing:14.080465pt;}
.ws2f{word-spacing:14.133599pt;}
.ws6{word-spacing:14.133653pt;}
.ws7c{word-spacing:14.186732pt;}
.ws5{word-spacing:14.234608pt;}
.ws93{word-spacing:14.239866pt;}
.ws39{word-spacing:14.293000pt;}
.ws104{word-spacing:14.331787pt;}
.ws117{word-spacing:14.346134pt;}
.ws118{word-spacing:14.399268pt;}
.ws4a{word-spacing:14.505535pt;}
.ws29{word-spacing:14.664937pt;}
.wsc2{word-spacing:14.718071pt;}
.wsc1{word-spacing:14.734436pt;}
.ws5a{word-spacing:14.771205pt;}
.ws38{word-spacing:14.877472pt;}
.ws36{word-spacing:14.930606pt;}
.ws37{word-spacing:14.983740pt;}
.wsf0{word-spacing:15.005032pt;}
.wsa7{word-spacing:15.036874pt;}
.wsf2{word-spacing:15.047539pt;}
.ws4d{word-spacing:15.090008pt;}
.wsf5{word-spacing:15.090047pt;}
.ws74{word-spacing:15.143141pt;}
.ws20{word-spacing:15.249409pt;}
.ws1e{word-spacing:15.355677pt;}
.ws1f{word-spacing:15.408811pt;}
.wsfb{word-spacing:15.461944pt;}
.wsc0{word-spacing:15.515078pt;}
.wsfc{word-spacing:15.674480pt;}
.ws108{word-spacing:15.727613pt;}
.ws46{word-spacing:15.780747pt;}
.ws53{word-spacing:15.833881pt;}
.ws52{word-spacing:15.887015pt;}
.ws6b{word-spacing:15.940149pt;}
.ws10e{word-spacing:15.993283pt;}
.ws10d{word-spacing:16.099550pt;}
.ws35{word-spacing:16.152684pt;}
.ws42{word-spacing:16.205818pt;}
.wsa5{word-spacing:16.312086pt;}
.ws72{word-spacing:16.354703pt;}
.wsc9{word-spacing:16.365219pt;}
.ws71{word-spacing:16.402523pt;}
.ws56{word-spacing:16.418353pt;}
.wsd7{word-spacing:16.450344pt;}
.ws89{word-spacing:16.471487pt;}
.wsea{word-spacing:16.524621pt;}
.ws97{word-spacing:16.577755pt;}
.wsec{word-spacing:16.607871pt;}
.ws57{word-spacing:16.737156pt;}
.wse7{word-spacing:16.758409pt;}
.wsf8{word-spacing:16.790290pt;}
.wse4{word-spacing:16.808886pt;}
.ws77{word-spacing:16.843424pt;}
.wsb9{word-spacing:16.949692pt;}
.wsba{word-spacing:17.002825pt;}
.wsef{word-spacing:17.052985pt;}
.ws110{word-spacing:17.055959pt;}
.ws64{word-spacing:17.162227pt;}
.ws32{word-spacing:17.268495pt;}
.ws31{word-spacing:17.321628pt;}
.ws131{word-spacing:17.462964pt;}
.ws3d{word-spacing:17.463272pt;}
.wsbd{word-spacing:17.481030pt;}
.ws130{word-spacing:17.534164pt;}
.wsb{word-spacing:17.550222pt;}
.ws23{word-spacing:17.587298pt;}
.wsc{word-spacing:17.598043pt;}
.ws1a{word-spacing:17.640431pt;}
.ws3a{word-spacing:17.693565pt;}
.ws24{word-spacing:17.746699pt;}
.ws1b{word-spacing:17.799833pt;}
.ws47{word-spacing:17.852967pt;}
.ws60{word-spacing:17.959234pt;}
.wsc7{word-spacing:18.012368pt;}
.ws69{word-spacing:18.118636pt;}
.ws68{word-spacing:18.171770pt;}
.ws100{word-spacing:18.224903pt;}
.wsfd{word-spacing:18.278037pt;}
.ws10b{word-spacing:18.331171pt;}
.wsc8{word-spacing:18.384305pt;}
.ws25{word-spacing:18.437439pt;}
.ws11{word-spacing:18.543706pt;}
.wsb6{word-spacing:18.596840pt;}
.ws73{word-spacing:18.649974pt;}
.ws10{word-spacing:18.756242pt;}
.ws28{word-spacing:18.809376pt;}
.ws78{word-spacing:18.862509pt;}
.ws40{word-spacing:18.915643pt;}
.ws88{word-spacing:19.021911pt;}
.wsd2{word-spacing:19.032666pt;}
.ws91{word-spacing:19.075045pt;}
.ws58{word-spacing:19.128179pt;}
.ws8f{word-spacing:19.181312pt;}
.ws26{word-spacing:19.234446pt;}
.wsf3{word-spacing:19.255750pt;}
.ws27{word-spacing:19.287580pt;}
.wsaa{word-spacing:19.340714pt;}
.wsa9{word-spacing:19.393848pt;}
.ws13{word-spacing:19.500115pt;}
.wscc{word-spacing:19.553249pt;}
.wseb{word-spacing:19.562538pt;}
.ws2a{word-spacing:19.659517pt;}
.ws12{word-spacing:19.712651pt;}
.ws65{word-spacing:19.765785pt;}
.ws3b{word-spacing:19.818918pt;}
.wsbb{word-spacing:20.084587pt;}
.wsbc{word-spacing:20.137721pt;}
.wsbf{word-spacing:20.190855pt;}
.ws2e{word-spacing:20.243989pt;}
.ws7b{word-spacing:20.350257pt;}
.ws5b{word-spacing:20.403390pt;}
.wse9{word-spacing:20.456524pt;}
.wsa2{word-spacing:20.467289pt;}
.ws22{word-spacing:20.509658pt;}
.wsd4{word-spacing:20.532063pt;}
.ws134{word-spacing:20.562792pt;}
.wsd3{word-spacing:20.562930pt;}
.wsd5{word-spacing:20.610751pt;}
.wsa{word-spacing:20.786094pt;}
.ws9{word-spacing:20.849855pt;}
.ws48{word-spacing:20.934729pt;}
.wsa1{word-spacing:20.945496pt;}
.ws49{word-spacing:20.987863pt;}
.ws62{word-spacing:21.040996pt;}
.ws14{word-spacing:21.094130pt;}
.ws80{word-spacing:21.253532pt;}
.ws81{word-spacing:21.306666pt;}
.ws7f{word-spacing:21.359799pt;}
.wsa6{word-spacing:21.519201pt;}
.ws109{word-spacing:21.625469pt;}
.ws10a{word-spacing:21.678602pt;}
.ws3f{word-spacing:21.784870pt;}
.wscb{word-spacing:21.944272pt;}
.ws92{word-spacing:21.997405pt;}
.ws128{word-spacing:22.050539pt;}
.wsca{word-spacing:22.103673pt;}
.ws16{word-spacing:22.156807pt;}
.ws15{word-spacing:22.209941pt;}
.wsad{word-spacing:22.263074pt;}
.ws18{word-spacing:22.369342pt;}
.ws0{word-spacing:22.371554pt;}
.ws45{word-spacing:22.413656pt;}
.ws19{word-spacing:22.422476pt;}
.wsb0{word-spacing:22.528744pt;}
.wsc4{word-spacing:22.569155pt;}
.wsaf{word-spacing:22.581877pt;}
.ws11f{word-spacing:22.635011pt;}
.wsd8{word-spacing:22.741279pt;}
.wsf9{word-spacing:22.794413pt;}
.ws84{word-spacing:22.847547pt;}
.wsfa{word-spacing:22.900680pt;}
.ws98{word-spacing:23.006948pt;}
.ws12d{word-spacing:23.113216pt;}
.ws54{word-spacing:23.166350pt;}
.ws129{word-spacing:23.219483pt;}
.ws41{word-spacing:23.272617pt;}
.ws33{word-spacing:23.325751pt;}
.ws34{word-spacing:23.432019pt;}
.ws11e{word-spacing:23.538286pt;}
.wsb5{word-spacing:23.644554pt;}
.ws10c{word-spacing:23.750822pt;}
.ws5e{word-spacing:23.803956pt;}
.ws7{word-spacing:23.846623pt;}
.ws76{word-spacing:23.910223pt;}
.ws8{word-spacing:23.910384pt;}
.ws120{word-spacing:23.963357pt;}
.wsd1{word-spacing:24.053846pt;}
.wsd0{word-spacing:24.101667pt;}
.ws114{word-spacing:24.122759pt;}
.ws5f{word-spacing:24.229026pt;}
.wsdc{word-spacing:24.388428pt;}
.wsa8{word-spacing:24.441561pt;}
.wsda{word-spacing:24.547829pt;}
.wsac{word-spacing:24.654097pt;}
.ws4b{word-spacing:24.760364pt;}
.ws4c{word-spacing:24.866632pt;}
.ws44{word-spacing:24.919766pt;}
.wsdb{word-spacing:24.972900pt;}
.ws43{word-spacing:25.026034pt;}
.ws7e{word-spacing:25.132301pt;}
.ws83{word-spacing:25.185435pt;}
.wse8{word-spacing:25.291703pt;}
.ws82{word-spacing:25.344837pt;}
.wsff{word-spacing:25.451104pt;}
.wsb2{word-spacing:25.610506pt;}
.ws66{word-spacing:25.876175pt;}
.ws67{word-spacing:25.929309pt;}
.ws75{word-spacing:26.088710pt;}
.wsa4{word-spacing:26.110139pt;}
.ws1c{word-spacing:26.141844pt;}
.wsa3{word-spacing:26.157960pt;}
.ws6d{word-spacing:26.248112pt;}
.ws1d{word-spacing:26.354379pt;}
.ws10f{word-spacing:26.407513pt;}
.wsd9{word-spacing:26.513781pt;}
.ws99{word-spacing:26.566915pt;}
.ws12c{word-spacing:26.620048pt;}
.ws8d{word-spacing:26.673182pt;}
.ws6c{word-spacing:26.726316pt;}
.ws8a{word-spacing:26.991985pt;}
.ws8b{word-spacing:27.045119pt;}
.ws94{word-spacing:27.151387pt;}
.ws124{word-spacing:27.204521pt;}
.ws95{word-spacing:27.257654pt;}
.wsc3{word-spacing:27.305659pt;}
.wsb3{word-spacing:27.310788pt;}
.wsdd{word-spacing:27.363922pt;}
.wsb4{word-spacing:27.417056pt;}
.wsf7{word-spacing:27.682725pt;}
.wsb8{word-spacing:27.788993pt;}
.ws1{word-spacing:27.964443pt;}
.ws61{word-spacing:28.798535pt;}
.wsae{word-spacing:28.851669pt;}
.ws11b{word-spacing:29.117338pt;}
.wsfe{word-spacing:29.170472pt;}
.ws96{word-spacing:29.489275pt;}
.wsde{word-spacing:29.595543pt;}
.ws5d{word-spacing:29.648677pt;}
.wsd6{word-spacing:29.648876pt;}
.ws12b{word-spacing:30.126881pt;}
.wsb1{word-spacing:30.180015pt;}
.wsc5{word-spacing:30.286283pt;}
.ws3c{word-spacing:30.339417pt;}
.ws115{word-spacing:30.392550pt;}
.ws123{word-spacing:31.242692pt;}
.ws122{word-spacing:31.295825pt;}
.wsf{word-spacing:31.455227pt;}
.ws6a{word-spacing:31.508361pt;}
.wsab{word-spacing:32.145967pt;}
.wse1{word-spacing:32.900688pt;}
.ws11d{word-spacing:33.368045pt;}
.wse0{word-spacing:34.144028pt;}
.wsdf{word-spacing:34.239670pt;}
.ws12a{word-spacing:35.227729pt;}
.ws5c{word-spacing:35.812201pt;}
.ws11a{word-spacing:36.237272pt;}
.ws119{word-spacing:36.290405pt;}
.wse2{word-spacing:37.682765pt;}
.ws132{word-spacing:38.734562pt;}
.ws133{word-spacing:38.770214pt;}
.ws121{word-spacing:39.159632pt;}
.ws126{word-spacing:39.319034pt;}
.ws127{word-spacing:39.531569pt;}
.ws116{word-spacing:40.169175pt;}
.ws11c{word-spacing:40.275443pt;}
.ws79{word-spacing:40.434844pt;}
.ws125{word-spacing:42.825866pt;}
.wsb7{word-spacing:46.917171pt;}
.ws106{word-spacing:50.211806pt;}
.ws107{word-spacing:50.259627pt;}
.ws112{word-spacing:50.264603pt;}
.ws105{word-spacing:50.307448pt;}
.ws12f{word-spacing:58.819149pt;}
.ws12e{word-spacing:62.432249pt;}
.ws102{word-spacing:97.266784pt;}
.wse5{word-spacing:107.341566pt;}
.wscd{word-spacing:118.607451pt;}
.ws9b{word-spacing:126.928264pt;}
.ws9a{word-spacing:238.160139pt;}
.ws3e{word-spacing:238.995964pt;}
.wsee{word-spacing:287.015016pt;}
.wsed{word-spacing:320.180996pt;}
._17{margin-left:-456.532883pt;}
._d{margin-left:-30.303599pt;}
._b{margin-left:-7.066827pt;}
._1{margin-left:-5.451552pt;}
._8{margin-left:-4.038187pt;}
._3{margin-left:-2.523867pt;}
._0{margin-left:-1.615275pt;}
._2{width:1.615275pt;}
._9{width:2.624821pt;}
._2b{width:4.091320pt;}
._6{width:8.429715pt;}
._e{width:9.500341pt;}
._27{width:11.232498pt;}
._1c{width:12.507989pt;}
._14{width:13.708528pt;}
._11{width:14.707484pt;}
._26{width:15.616074pt;}
._7{width:16.607043pt;}
._a{width:18.121363pt;}
._f{width:19.473574pt;}
._10{width:20.371466pt;}
._1a{width:21.513747pt;}
._1d{width:23.793116pt;}
._c{width:24.834900pt;}
._12{width:26.311576pt;}
._13{width:28.075922pt;}
._15{width:29.209851pt;}
._1b{width:31.342105pt;}
._5{width:33.113131pt;}
._4{width:39.372320pt;}
._2a{width:40.583915pt;}
._29{width:58.006592pt;}
._22{width:62.022345pt;}
._1f{width:63.430626pt;}
._20{width:81.908743pt;}
._28{width:88.529989pt;}
._23{width:105.530289pt;}
._24{width:107.501658pt;}
._1e{width:117.710812pt;}
._21{width:126.349459pt;}
._19{width:140.281017pt;}
._16{width:145.470765pt;}
._25{width:149.748781pt;}
._18{width:542.502662pt;}
.fsd{font-size:23.910384pt;}
.fsc{font-size:27.895179pt;}
.fs10{font-size:31.880512pt;}
.fs9{font-size:32.942976pt;}
.fsf{font-size:35.333893pt;}
.fsa{font-size:35.865573pt;}
.fs7{font-size:37.193573pt;}
.fsb{font-size:39.850373pt;}
.fs4{font-size:42.507173pt;}
.fs11{font-size:43.038400pt;}
.fs5{font-size:47.820768pt;}
.fse{font-size:50.477136pt;}
.fs2{font-size:50.477333pt;}
.fs6{font-size:53.133829pt;}
.fs8{font-size:53.333296pt;}
.fs3{font-size:63.761024pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:1.186352pt;}
.yf5{bottom:27.147203pt;}
.y7c{bottom:28.333555pt;}
.yf2{bottom:78.973821pt;}
.y158{bottom:79.877820pt;}
.y11b{bottom:79.877825pt;}
.yb4{bottom:79.877830pt;}
.y19d{bottom:79.877832pt;}
.y7a{bottom:81.064177pt;}
.y4a{bottom:81.064182pt;}
.yef{bottom:85.987174pt;}
.yee{bottom:89.972504pt;}
.y157{bottom:95.817809pt;}
.y11a{bottom:95.817814pt;}
.yb3{bottom:95.817819pt;}
.y19c{bottom:95.817822pt;}
.y79{bottom:97.004166pt;}
.y49{bottom:97.004171pt;}
.yf1{bottom:98.101833pt;}
.y1d2{bottom:98.524499pt;}
.yf3{bottom:98.607143pt;}
.yeb{bottom:98.607163pt;}
.y13{bottom:99.089333pt;}
.y156{bottom:111.757799pt;}
.y119{bottom:111.757803pt;}
.yb2{bottom:111.757809pt;}
.y19b{bottom:111.757811pt;}
.y78{bottom:112.944156pt;}
.y48{bottom:112.944160pt;}
.yed{bottom:113.883152pt;}
.y1d1{bottom:114.464488pt;}
.y12{bottom:115.030667pt;}
.yf0{bottom:117.231154pt;}
.yec{bottom:117.868481pt;}
.y155{bottom:127.697788pt;}
.y118{bottom:127.697793pt;}
.yb1{bottom:127.697798pt;}
.y19a{bottom:127.697801pt;}
.y77{bottom:128.884145pt;}
.y47{bottom:128.884150pt;}
.y1d0{bottom:130.404478pt;}
.y11{bottom:130.970667pt;}
.y154{bottom:143.637777pt;}
.yb0{bottom:143.637787pt;}
.y117{bottom:143.639111pt;}
.y199{bottom:143.639118pt;}
.y76{bottom:144.824135pt;}
.y46{bottom:144.825467pt;}
.y1cf{bottom:146.344467pt;}
.y10{bottom:146.910667pt;}
.yea{bottom:158.163118pt;}
.y153{bottom:158.249767pt;}
.yaf{bottom:159.577777pt;}
.y116{bottom:159.579099pt;}
.y75{bottom:160.765452pt;}
.y45{bottom:160.765457pt;}
.y198{bottom:170.157761pt;}
.y1ce{bottom:170.255115pt;}
.ye9{bottom:174.103108pt;}
.y115{bottom:175.519088pt;}
.yae{bottom:175.519094pt;}
.y74{bottom:176.705442pt;}
.y44{bottom:176.705446pt;}
.y152{bottom:184.817748pt;}
.y197{bottom:186.099079pt;}
.y1cd{bottom:186.195105pt;}
.ye8{bottom:190.043097pt;}
.y114{bottom:191.459077pt;}
.yad{bottom:191.459084pt;}
.y73{bottom:192.645431pt;}
.y151{bottom:196.995076pt;}
.y150{bottom:200.757737pt;}
.y196{bottom:202.039068pt;}
.y1cc{bottom:202.135094pt;}
.y42{bottom:202.160089pt;}
.ye7{bottom:205.984415pt;}
.yac{bottom:207.399073pt;}
.y72{bottom:208.585420pt;}
.yf{bottom:210.672000pt;}
.y43{bottom:211.272084pt;}
.y41{bottom:211.272091pt;}
.y14f{bottom:216.697727pt;}
.y195{bottom:217.979058pt;}
.y112{bottom:221.615054pt;}
.ye6{bottom:221.924404pt;}
.y113{bottom:222.151053pt;}
.yab{bottom:223.339063pt;}
.y71{bottom:224.525410pt;}
.y1cb{bottom:226.045742pt;}
.ye{bottom:226.612000pt;}
.y14d{bottom:229.353721pt;}
.y14e{bottom:232.637716pt;}
.y14c{bottom:232.637719pt;}
.y194{bottom:233.919047pt;}
.y111{bottom:236.761708pt;}
.ye5{bottom:237.864394pt;}
.yaa{bottom:239.279052pt;}
.y70{bottom:240.465399pt;}
.y1ca{bottom:241.985732pt;}
.yd{bottom:242.552000pt;}
.y40{bottom:246.576067pt;}
.y14b{bottom:248.577709pt;}
.y110{bottom:251.373694pt;}
.ye4{bottom:253.804383pt;}
.ya9{bottom:255.219041pt;}
.y6f{bottom:256.406717pt;}
.y1c9{bottom:257.925721pt;}
.yc{bottom:258.492000pt;}
.y193{bottom:260.439031pt;}
.y3f{bottom:262.516056pt;}
.y14a{bottom:264.519026pt;}
.y10f{bottom:265.985688pt;}
.ye3{bottom:269.744373pt;}
.ya8{bottom:271.160359pt;}
.y6e{bottom:272.346706pt;}
.y1c8{bottom:273.867039pt;}
.y192{bottom:276.379021pt;}
.y3e{bottom:278.456046pt;}
.y149{bottom:280.459016pt;}
.y10e{bottom:280.597683pt;}
.ye2{bottom:285.685690pt;}
.ya7{bottom:287.100349pt;}
.y6d{bottom:288.286696pt;}
.y191{bottom:292.319010pt;}
.y3d{bottom:294.396035pt;}
.y148{bottom:296.399005pt;}
.y1c7{bottom:297.776359pt;}
.ye1{bottom:301.625680pt;}
.ya6{bottom:303.040338pt;}
.y6c{bottom:304.226685pt;}
.yb{bottom:306.313333pt;}
.y10c{bottom:307.530664pt;}
.y190{bottom:308.260328pt;}
.y3c{bottom:310.336025pt;}
.y147{bottom:312.338995pt;}
.y1c6{bottom:313.717677pt;}
.ye0{bottom:317.565669pt;}
.ya5{bottom:318.980327pt;}
.y6b{bottom:320.166675pt;}
.y10b{bottom:320.302656pt;}
.ya{bottom:322.253333pt;}
.y3b{bottom:326.277342pt;}
.y146{bottom:328.278984pt;}
.y1c5{bottom:329.657666pt;}
.ydf{bottom:333.505659pt;}
.ya4{bottom:333.592316pt;}
.y18f{bottom:334.780312pt;}
.y6a{bottom:336.106669pt;}
.y3a{bottom:342.217332pt;}
.y1c4{bottom:345.597655pt;}
.yde{bottom:349.445648pt;}
.y18e{bottom:350.720301pt;}
.y69{bottom:352.047987pt;}
.ya3{bottom:353.517635pt;}
.y9{bottom:354.133333pt;}
.y39{bottom:358.157321pt;}
.y107{bottom:358.246629pt;}
.ydd{bottom:365.385637pt;}
.y18d{bottom:366.660291pt;}
.y68{bottom:367.987976pt;}
.ya2{bottom:369.457625pt;}
.y1c3{bottom:369.508304pt;}
.y8{bottom:370.073333pt;}
.y145{bottom:372.477614pt;}
.y38{bottom:374.097311pt;}
.y18c{bottom:381.272280pt;}
.ydc{bottom:381.326955pt;}
.y67{bottom:383.927964pt;}
.y144{bottom:385.096272pt;}
.ya1{bottom:385.397614pt;}
.y1c2{bottom:385.448293pt;}
.y7{bottom:386.013333pt;}
.y37{bottom:390.037300pt;}
.y10d{bottom:394.303605pt;}
.ydb{bottom:397.266944pt;}
.y143{bottom:397.716268pt;}
.y108{bottom:398.992602pt;}
.y66{bottom:399.867958pt;}
.ya0{bottom:401.338932pt;}
.y1c1{bottom:401.388283pt;}
.y6{bottom:401.954667pt;}
.y36{bottom:405.978618pt;}
.y18b{bottom:407.838936pt;}
.y142{bottom:410.334921pt;}
.yda{bottom:413.206934pt;}
.y65{bottom:415.807947pt;}
.y9f{bottom:417.278921pt;}
.y140{bottom:419.656257pt;}
.y35{bottom:421.918607pt;}
.y13f{bottom:422.954915pt;}
.y141{bottom:422.954919pt;}
.y18a{bottom:423.778926pt;}
.y1c0{bottom:425.298931pt;}
.yd9{bottom:429.146923pt;}
.y64{bottom:430.419936pt;}
.y9e{bottom:433.218911pt;}
.y13e{bottom:435.626904pt;}
.y34{bottom:437.858597pt;}
.y189{bottom:439.718915pt;}
.y109{bottom:440.051573pt;}
.y1bf{bottom:441.238920pt;}
.y5{bottom:441.805333pt;}
.yd8{bottom:445.086913pt;}
.y13d{bottom:448.246901pt;}
.y9d{bottom:449.158900pt;}
.y63{bottom:450.345255pt;}
.y33{bottom:453.798586pt;}
.y188{bottom:455.660233pt;}
.y1be{bottom:457.178910pt;}
.yd7{bottom:461.026902pt;}
.y9c{bottom:465.098896pt;}
.y62{bottom:466.285245pt;}
.y32{bottom:469.738575pt;}
.y187{bottom:471.600222pt;}
.y13c{bottom:472.156219pt;}
.y1bd{bottom:473.118899pt;}
.yd6{bottom:476.968220pt;}
.y10a{bottom:480.798540pt;}
.y9b{bottom:481.040214pt;}
.y61{bottom:482.226562pt;}
.y31{bottom:485.678565pt;}
.y186{bottom:487.540212pt;}
.yd5{bottom:492.908209pt;}
.y9a{bottom:496.980203pt;}
.y1bc{bottom:497.029547pt;}
.y60{bottom:498.166552pt;}
.y30{bottom:501.619882pt;}
.y185{bottom:503.480201pt;}
.y13b{bottom:507.528193pt;}
.yd4{bottom:508.848199pt;}
.y99{bottom:512.920193pt;}
.y1bb{bottom:512.969537pt;}
.y5f{bottom:514.106541pt;}
.y2f{bottom:517.559872pt;}
.y184{bottom:519.420191pt;}
.y13a{bottom:523.468183pt;}
.yd3{bottom:524.788188pt;}
.y98{bottom:528.860182pt;}
.y1ba{bottom:528.909526pt;}
.y106{bottom:529.044177pt;}
.y5e{bottom:530.046531pt;}
.y2e{bottom:533.499861pt;}
.y183{bottom:535.360180pt;}
.y139{bottom:539.408172pt;}
.yd2{bottom:540.728177pt;}
.y97{bottom:544.800171pt;}
.y1b9{bottom:544.849515pt;}
.y105{bottom:544.984167pt;}
.y5d{bottom:545.986520pt;}
.y2d{bottom:549.439851pt;}
.y182{bottom:551.301498pt;}
.y138{bottom:555.348161pt;}
.yd1{bottom:556.668167pt;}
.y96{bottom:560.740161pt;}
.y1b8{bottom:560.790833pt;}
.y104{bottom:560.924156pt;}
.y5c{bottom:561.926509pt;}
.y2c{bottom:564.051841pt;}
.y181{bottom:567.241487pt;}
.yd0{bottom:572.609485pt;}
.y5b{bottom:576.538499pt;}
.y95{bottom:576.681479pt;}
.y103{bottom:576.864145pt;}
.y180{bottom:583.181476pt;}
.y1b7{bottom:584.700153pt;}
.ycf{bottom:588.549474pt;}
.y2b{bottom:590.618499pt;}
.y102{bottom:591.476136pt;}
.y94{bottom:592.621468pt;}
.y93{bottom:592.621475pt;}
.y137{bottom:592.680335pt;}
.y17f{bottom:599.121466pt;}
.y1b6{bottom:600.641471pt;}
.y5a{bottom:603.106489pt;}
.yce{bottom:604.489463pt;}
.y2a{bottom:606.558489pt;}
.y136{bottom:607.823325pt;}
.y92{bottom:608.561464pt;}
.y17e{bottom:615.061455pt;}
.y1b5{bottom:616.581460pt;}
.y101{bottom:618.044119pt;}
.y59{bottom:619.046479pt;}
.ycd{bottom:620.429453pt;}
.y29{bottom:622.499806pt;}
.y135{bottom:622.966315pt;}
.y91{bottom:624.501453pt;}
.y17d{bottom:631.001445pt;}
.y100{bottom:633.984108pt;}
.y58{bottom:634.986468pt;}
.ycc{bottom:636.369442pt;}
.y134{bottom:638.109304pt;}
.y28{bottom:638.439796pt;}
.y90{bottom:640.441443pt;}
.y1b4{bottom:640.490780pt;}
.y17c{bottom:646.942762pt;}
.yff{bottom:649.924098pt;}
.y57{bottom:650.926458pt;}
.ycb{bottom:652.309432pt;}
.y133{bottom:653.252293pt;}
.y27{bottom:654.379785pt;}
.y8f{bottom:656.381432pt;}
.y1b3{bottom:656.432098pt;}
.y17b{bottom:662.882752pt;}
.yfe{bottom:665.864087pt;}
.y56{bottom:666.866447pt;}
.yca{bottom:668.250749pt;}
.y132{bottom:668.395287pt;}
.y26{bottom:670.319775pt;}
.y8e{bottom:672.322750pt;}
.y1b2{bottom:672.372087pt;}
.y17a{bottom:678.822741pt;}
.yfd{bottom:681.804077pt;}
.y55{bottom:682.806436pt;}
.y131{bottom:683.539540pt;}
.yc9{bottom:684.190739pt;}
.y25{bottom:686.259764pt;}
.y8d{bottom:688.262739pt;}
.y1b1{bottom:688.312077pt;}
.y179{bottom:694.762731pt;}
.yfc{bottom:697.744066pt;}
.y130{bottom:698.682529pt;}
.y54{bottom:698.747754pt;}
.y24{bottom:702.199753pt;}
.y8c{bottom:704.202729pt;}
.y178{bottom:710.702720pt;}
.y1b0{bottom:712.222725pt;}
.yfb{bottom:713.685384pt;}
.y12f{bottom:713.825519pt;}
.y23{bottom:718.141071pt;}
.y8b{bottom:720.142718pt;}
.y52{bottom:722.050399pt;}
.y1af{bottom:728.162714pt;}
.y12e{bottom:728.968508pt;}
.yfa{bottom:729.625373pt;}
.y51{bottom:731.162388pt;}
.y53{bottom:731.162392pt;}
.y22{bottom:734.081061pt;}
.y4{bottom:735.968000pt;}
.y8a{bottom:736.082707pt;}
.yc8{bottom:737.377356pt;}
.y1ae{bottom:744.102704pt;}
.y12d{bottom:744.111497pt;}
.yf9{bottom:745.565363pt;}
.y21{bottom:750.021050pt;}
.yc7{bottom:751.989350pt;}
.y89{bottom:752.022697pt;}
.y177{bottom:753.162682pt;}
.y12c{bottom:759.254493pt;}
.y1ad{bottom:760.042693pt;}
.yf8{bottom:761.505352pt;}
.y50{bottom:764.633035pt;}
.y20{bottom:765.961039pt;}
.yc6{bottom:766.601344pt;}
.y176{bottom:767.774676pt;}
.y3{bottom:767.848000pt;}
.y88{bottom:767.964015pt;}
.y12b{bottom:774.398744pt;}
.y4f{bottom:780.573024pt;}
.yc5{bottom:781.213339pt;}
.y1f{bottom:781.901029pt;}
.y175{bottom:782.386671pt;}
.y87{bottom:783.904004pt;}
.y1ac{bottom:783.953342pt;}
.y12a{bottom:789.541733pt;}
.y4e{bottom:796.513013pt;}
.y1e{bottom:797.841018pt;}
.y2{bottom:799.729333pt;}
.y1ab{bottom:799.893331pt;}
.yf7{bottom:801.818655pt;}
.y129{bottom:804.684723pt;}
.y15d{bottom:807.226656pt;}
.ybc{bottom:809.427319pt;}
.y4d{bottom:812.453003pt;}
.y1d{bottom:813.782336pt;}
.y1aa{bottom:815.833320pt;}
.yf6{bottom:818.015980pt;}
.y15c{bottom:819.356125pt;}
.y128{bottom:820.333112pt;}
.yba{bottom:827.585323pt;}
.y4c{bottom:828.392992pt;}
.y86{bottom:828.730640pt;}
.y1c{bottom:829.722325pt;}
.y174{bottom:833.980429pt;}
.y127{bottom:835.249289pt;}
.y1a9{bottom:839.743969pt;}
.y173{bottom:843.874301pt;}
.y4b{bottom:844.334310pt;}
.y1b{bottom:844.334315pt;}
.y126{bottom:849.861283pt;}
.y172{bottom:853.764934pt;}
.y1{bottom:855.520000pt;}
.y1a8{bottom:855.683958pt;}
.y171{bottom:863.659882pt;}
.y15e{bottom:863.743015pt;}
.y125{bottom:864.473278pt;}
.yb9{bottom:867.659291pt;}
.y1a7{bottom:871.625276pt;}
.y170{bottom:873.550515pt;}
.y159{bottom:876.563687pt;}
.y124{bottom:879.085272pt;}
.y16f{bottom:883.444387pt;}
.y1a6{bottom:887.565265pt;}
.y82{bottom:888.926943pt;}
.y16e{bottom:893.335020pt;}
.y83{bottom:898.000427pt;}
.y1a{bottom:902.190275pt;}
.y85{bottom:903.141466pt;}
.y16d{bottom:903.229968pt;}
.y1a5{bottom:903.505255pt;}
.yb8{bottom:907.733259pt;}
.y16c{bottom:913.123840pt;}
.y19{bottom:915.002267pt;}
.y15f{bottom:918.259218pt;}
.y123{bottom:919.445236pt;}
.y18{bottom:920.786263pt;}
.ybb{bottom:921.149243pt;}
.y16b{bottom:923.014473pt;}
.y1a4{bottom:927.415903pt;}
.y15a{bottom:932.909409pt;}
.y16a{bottom:932.909421pt;}
.y122{bottom:935.385226pt;}
.yc3{bottom:936.388240pt;}
.y17{bottom:939.383579pt;}
.y169{bottom:942.800054pt;}
.y1a3{bottom:943.355892pt;}
.yb7{bottom:947.808232pt;}
.yc2{bottom:949.442233pt;}
.y121{bottom:951.325215pt;}
.y16{bottom:952.195579pt;}
.y168{bottom:952.693926pt;}
.y81{bottom:957.679115pt;}
.y1a2{bottom:959.295882pt;}
.yc1{bottom:962.068224pt;}
.y167{bottom:962.588874pt;}
.y7e{bottom:963.509587pt;}
.y120{bottom:967.265204pt;}
.y166{bottom:972.479507pt;}
.yc0{bottom:974.700213pt;}
.y84{bottom:978.509444pt;}
.y165{bottom:982.804301pt;}
.y11f{bottom:983.206522pt;}
.y1a1{bottom:983.206530pt;}
.ybf{bottom:987.327200pt;}
.yb6{bottom:987.882200pt;}
.y15b{bottom:989.255132pt;}
.y15{bottom:990.718221pt;}
.y164{bottom:992.694934pt;}
.y80{bottom:994.386394pt;}
.y11e{bottom:999.146511pt;}
.y1a0{bottom:999.146519pt;}
.ybe{bottom:999.958194pt;}
.y163{bottom:1002.589882pt;}
.y162{bottom:1012.480515pt;}
.ybd{bottom:1012.585180pt;}
.y7f{bottom:1013.107072pt;}
.y11d{bottom:1015.086501pt;}
.y19f{bottom:1015.086509pt;}
.y14{bottom:1019.942193pt;}
.y161{bottom:1022.374387pt;}
.yb5{bottom:1028.934168pt;}
.y11c{bottom:1031.026490pt;}
.y19e{bottom:1031.026498pt;}
.y160{bottom:1033.126859pt;}
.yc4{bottom:1035.190164pt;}
.yf4{bottom:1079.666467pt;}
.y7b{bottom:1080.852819pt;}
.h1e{height:2.125353pt;}
.h18{height:24.707232pt;}
.h1b{height:26.899180pt;}
.h1c{height:29.887780pt;}
.h9{height:31.880380pt;}
.h26{height:31.880384pt;}
.h23{height:31.880401pt;}
.h2a{height:32.278800pt;}
.ha{height:34.239670pt;}
.h19{height:35.865576pt;}
.h20{height:35.865611pt;}
.h16{height:36.041641pt;}
.h15{height:36.119766pt;}
.h24{height:36.197877pt;}
.h2b{height:36.874878pt;}
.h11{height:37.034279pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h21{height:37.857852pt;}
.h22{height:39.850364pt;}
.hb{height:39.850372pt;}
.hd{height:41.868340pt;}
.h7{height:44.632717pt;}
.h25{height:45.075026pt;}
.h12{height:45.798989pt;}
.h13{height:45.799007pt;}
.h14{height:45.804321pt;}
.h27{height:45.804327pt;}
.h1f{height:45.812248pt;}
.hf{height:50.965013pt;}
.h1a{height:50.970379pt;}
.h28{height:52.986352pt;}
.h29{height:54.901018pt;}
.h8{height:55.021673pt;}
.h2{height:59.845926pt;}
.h3{height:75.009317pt;}
.h10{height:75.797032pt;}
.hc{height:77.042589pt;}
.he{height:77.042618pt;}
.h1d{height:126.989268pt;}
.h17{height:1121.333333pt;}
.h6{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.700788pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x64{left:28.333313pt;}
.x9{left:54.425296pt;}
.x70{left:58.483967pt;}
.x39{left:60.629292pt;}
.x1d{left:64.202627pt;}
.x40{left:66.379966pt;}
.x88{left:68.077282pt;}
.x43{left:71.029295pt;}
.x71{left:73.279959pt;}
.x8f{left:75.087953pt;}
.x86{left:77.290617pt;}
.x11{left:80.254607pt;}
.x1e{left:83.214615pt;}
.x2{left:85.509275pt;}
.x6c{left:88.063607pt;}
.x92{left:89.183938pt;}
.x1{left:90.708000pt;}
.x44{left:96.563939pt;}
.xf{left:99.214604pt;}
.x83{left:102.381569pt;}
.x81{left:109.629444pt;}
.x8{left:110.713257pt;}
.x6{left:116.761253pt;}
.x14{left:119.470587pt;}
.x6d{left:120.770584pt;}
.x3c{left:123.585246pt;}
.x3a{left:127.521239pt;}
.x6a{left:128.627908pt;}
.x1b{left:131.159897pt;}
.x3d{left:132.133249pt;}
.xc{left:145.195902pt;}
.x19{left:147.434563pt;}
.xa{left:149.918556pt;}
.x38{left:151.472157pt;}
.x65{left:154.222564pt;}
.x12{left:157.335893pt;}
.x87{left:161.302551pt;}
.x45{left:163.597225pt;}
.x6f{left:166.123886pt;}
.x7{left:175.658552pt;}
.x91{left:180.323878pt;}
.x89{left:181.330530pt;}
.x6b{left:183.543875pt;}
.x8c{left:191.171845pt;}
.x67{left:194.922533pt;}
.x3e{left:196.834529pt;}
.x36{left:200.252070pt;}
.xe{left:203.929187pt;}
.x6e{left:207.975524pt;}
.x82{left:209.563929pt;}
.x13{left:211.854523pt;}
.x46{left:213.346523pt;}
.xb{left:224.483849pt;}
.x1a{left:227.222513pt;}
.x1f{left:232.894512pt;}
.x41{left:234.130519pt;}
.x8e{left:240.087834pt;}
.x5{left:244.453165pt;}
.x1c{left:245.795831pt;}
.x35{left:247.100071pt;}
.x90{left:249.969159pt;}
.x8d{left:260.003798pt;}
.xd{left:266.111814pt;}
.x10{left:269.961147pt;}
.x3b{left:273.875810pt;}
.x37{left:278.738233pt;}
.x8a{left:281.875781pt;}
.x17{left:284.482463pt;}
.x85{left:287.642471pt;}
.x4{left:288.718475pt;}
.x34{left:309.514187pt;}
.x20{left:311.719796pt;}
.x16{left:319.105104pt;}
.x3{left:322.737117pt;}
.x68{left:323.769104pt;}
.x84{left:336.112849pt;}
.x8b{left:338.669084pt;}
.x42{left:341.939776pt;}
.x69{left:343.083756pt;}
.x66{left:344.195766pt;}
.x15{left:351.201085pt;}
.x18{left:353.637085pt;}
.x3f{left:358.138420pt;}
.x33{left:383.517073pt;}
.x21{left:407.545063pt;}
.x59{left:417.139697pt;}
.x28{left:419.722384pt;}
.x93{left:428.209039pt;}
.x99{left:432.267693pt;}
.x48{left:434.727701pt;}
.x7d{left:435.699705pt;}
.x77{left:437.359695pt;}
.x47{left:439.276697pt;}
.x97{left:440.754347pt;}
.x7f{left:442.154363pt;}
.x58{left:443.337013pt;}
.x76{left:449.903091pt;}
.x54{left:451.183684pt;}
.x4b{left:455.317020pt;}
.x22{left:459.203698pt;}
.x9c{left:460.347673pt;}
.x2e{left:464.457016pt;}
.x95{left:466.362343pt;}
.x75{left:469.791673pt;}
.x61{left:470.747645pt;}
.x5c{left:472.396980pt;}
.x5d{left:478.546318pt;}
.x5a{left:487.832982pt;}
.x2c{left:489.166332pt;}
.x27{left:490.327666pt;}
.x31{left:491.647655pt;}
.x79{left:498.387658pt;}
.x23{left:500.507666pt;}
.x4a{left:502.979655pt;}
.x78{left:504.558317pt;}
.x7a{left:511.250318pt;}
.x7b{left:512.584979pt;}
.x53{left:520.620965pt;}
.x72{left:521.895641pt;}
.x80{left:526.248967pt;}
.x5b{left:529.232949pt;}
.x29{left:530.379627pt;}
.x5e{left:538.900941pt;}
.x24{left:540.743628pt;}
.x9d{left:542.680946pt;}
.x62{left:543.584933pt;}
.x50{left:551.364950pt;}
.x63{left:555.392930pt;}
.x55{left:560.512941pt;}
.x2b{left:565.806283pt;}
.x9e{left:571.899571pt;}
.x60{left:573.423576pt;}
.x2f{left:588.867592pt;}
.x9b{left:595.052916pt;}
.x5f{left:599.407568pt;}
.x4e{left:600.378254pt;}
.x4d{left:602.452928pt;}
.x96{left:603.662243pt;}
.x9a{left:612.111571pt;}
.x4f{left:620.303565pt;}
.x51{left:626.660892pt;}
.x26{left:633.076893pt;}
.x56{left:641.614213pt;}
.x32{left:647.554221pt;}
.x30{left:649.628876pt;}
.x2d{left:657.976878pt;}
.x7c{left:659.788880pt;}
.x73{left:662.976877pt;}
.x52{left:665.478196pt;}
.x49{left:670.790539pt;}
.x74{left:685.503522pt;}
.x2a{left:688.372863pt;}
.x94{left:691.967519pt;}
.x4c{left:696.524854pt;}
.x7e{left:700.964848pt;}
.x98{left:703.215499pt;}
.x57{left:707.974168pt;}
.x25{left:717.236840pt;}
}


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