
/* 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_a3a98b7c7fb0.woff")format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_da908a8c175d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_3e23a4829b9b.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_832fed788c28.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_745f76f10b20.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_531495c3b454.woff")format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_52804d6941c6.woff")format("woff");}.ffa{font-family:ffa;line-height:0.665000;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_bfbc4876a5f9.woff")format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_297ee308bd75.woff")format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_01dc6c2f8b41.woff")format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_c783e79c64c4.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_8aa53fcf5db1.woff")format("woff");}.fff{font-family:fff;line-height:1.011230;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_9e825c3de8a7.woff")format("woff");}.ff10{font-family:ff10;line-height:1.014160;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_e2f5c3661136.woff")format("woff");}.ff11{font-family:ff11;line-height:1.011230;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_05d60b7b44a4.woff")format("woff");}.ff12{font-family:ff12;line-height:1.000488;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_4669e551bad2.woff")format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_9e825c3de8a7.woff")format("woff");}.ff14{font-family:ff14;line-height:1.014160;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_e2f5c3661136.woff")format("woff");}.ff15{font-family:ff15;line-height:1.011230;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_05d60b7b44a4.woff")format("woff");}.ff16{font-family:ff16;line-height:1.000488;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_4669e551bad2.woff")format("woff");}.ff17{font-family:ff17;line-height:1.011230;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_9e825c3de8a7.woff")format("woff");}.ff18{font-family:ff18;line-height:1.014160;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_e9100919c3f4.woff")format("woff");}.ff19{font-family:ff19;line-height:1.011230;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_3300a5f8f180.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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_1234c841aae5.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;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_9e825c3de8a7.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;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_e9100919c3f4.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;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_3300a5f8f180.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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_1234c841aae5.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.011230;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_9e825c3de8a7.woff")format("woff");}.ff20{font-family:ff20;line-height:1.014160;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_5c49d69eff06.woff")format("woff");}.ff21{font-family:ff21;line-height:1.011230;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_22c828e50b22.woff")format("woff");}.ff22{font-family:ff22;line-height:1.000488;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_9e825c3de8a7.woff")format("woff");}.ff23{font-family:ff23;line-height:1.014160;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:ff24;src:url("fonts/font_0035_11d825054b4b.woff")format("woff");}.ff24{font-family:ff24;line-height:1.011230;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:ff25;src:url("fonts/font_0036_29308c14fb54.woff")format("woff");}.ff25{font-family:ff25;line-height:1.000488;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;}
.mb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1d{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);}
.m1{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);}
.mf{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);}
.m19{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);}
.m1f{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);}
.m12{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);}
.m18{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);}
.m17{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);}
.m25{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);}
.m26{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);}
.m27{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);}
.m4{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);}
.m7{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);}
.m3{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);}
.md{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);}
.m1c{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);}
.m1a{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);}
.m6{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);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.me{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);}
.m21{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);}
.m20{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);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m9{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);}
.m10{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);}
.m15{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);}
.mc{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);}
.m8{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);}
.m11{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);}
.m14{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);}
.m24{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);}
.m13{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);}
.v4{vertical-align:-21.702000px;}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.688000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:21.696000px;}
.ls1c{letter-spacing:-1.986000px;}
.ls18{letter-spacing:-0.333600px;}
.ls2a{letter-spacing:-0.324000px;}
.ls2b{letter-spacing:-0.307800px;}
.ls19{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.214800px;}
.ls1d{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.166200px;}
.ls1a{letter-spacing:-0.065400px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000612px;}
.ls23{letter-spacing:0.001133px;}
.ls30{letter-spacing:0.004800px;}
.ls22{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.062100px;}
.ls17{letter-spacing:0.069000px;}
.ls27{letter-spacing:0.113400px;}
.ls20{letter-spacing:0.126000px;}
.ls28{letter-spacing:0.129600px;}
.ls21{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.153600px;}
.ls26{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.542815px;}
.ls10{letter-spacing:0.548815px;}
.ls16{letter-spacing:0.717483px;}
.ls12{letter-spacing:0.744476px;}
.ls9{letter-spacing:1.275394px;}
.lse{letter-spacing:1.530000px;}
.ls3{letter-spacing:1.861130px;}
.lsd{letter-spacing:2.970000px;}
.ls0{letter-spacing:2.989200px;}
.ls1e{letter-spacing:3.559200px;}
.lsc{letter-spacing:4.050000px;}
.ls4{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls2d{letter-spacing:13.448400px;}
.ls2e{letter-spacing:13.454400px;}
.ls32{letter-spacing:13.562497px;}
.ls31{letter-spacing:13.574691px;}
.ls34{letter-spacing:13.764249px;}
.ls2f{letter-spacing:14.003341px;}
.lsf{letter-spacing:15.663483px;}
.ls1f{letter-spacing:15.690476px;}
.ls33{letter-spacing:16.444518px;}
.ls2{letter-spacing:17.935200px;}
.ls11{letter-spacing:18.679200px;}
.ls15{letter-spacing:18.943200px;}
.ls29{letter-spacing:22.116972px;}
.ls13{letter-spacing:25.009200px;}
.ls1{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws0{word-spacing:-99.147741px;}
.ws50{word-spacing:-15.210000px;}
.ws51{word-spacing:-15.099000px;}
.ws53{word-spacing:-15.030000px;}
.ws54{word-spacing:-14.964600px;}
.ws5a{word-spacing:-14.943900px;}
.ws55{word-spacing:-14.863800px;}
.ws57{word-spacing:-14.850000px;}
.ws52{word-spacing:-14.696400px;}
.ws82{word-spacing:-13.689000px;}
.ws89{word-spacing:-13.589100px;}
.ws6f{word-spacing:-13.518000px;}
.ws6e{word-spacing:-13.500000px;}
.ws71{word-spacing:-13.449600px;}
.ws4f{word-spacing:-12.150000px;}
.ws4e{word-spacing:-11.970000px;}
.ws2c{word-spacing:-11.955150px;}
.ws88{word-spacing:-11.842200px;}
.ws3{word-spacing:-11.357400px;}
.ws81{word-spacing:-10.935000px;}
.ws80{word-spacing:-10.773000px;}
.wsa{word-spacing:-10.460700px;}
.ws56{word-spacing:-9.000000px;}
.ws6b{word-spacing:-2.809453px;}
.ws92{word-spacing:-2.331248px;}
.ws79{word-spacing:-2.211697px;}
.ws97{word-spacing:-1.990541px;}
.ws5{word-spacing:-1.908367px;}
.ws63{word-spacing:-1.853044px;}
.ws98{word-spacing:-1.667750px;}
.ws49{word-spacing:-1.494390px;}
.ws87{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws7{word-spacing:-1.297127px;}
.ws43{word-spacing:-1.195512px;}
.ws33{word-spacing:-1.135736px;}
.ws36{word-spacing:-1.075961px;}
.ws25{word-spacing:-0.896634px;}
.ws48{word-spacing:-0.657532px;}
.ws8f{word-spacing:-0.478205px;}
.ws35{word-spacing:-0.358654px;}
.wsb0{word-spacing:-0.322790px;}
.ws1e{word-spacing:-0.298878px;}
.ws38{word-spacing:-0.239102px;}
.ws70{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws72{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.ws83{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.wsb{word-spacing:-0.041843px;}
.ws62{word-spacing:-0.001500px;}
.ws2{word-spacing:-0.001200px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.ws96{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws2a{word-spacing:0.179327px;}
.wsc{word-spacing:0.209214px;}
.ws9b{word-spacing:0.215194px;}
.ws16{word-spacing:0.239103px;}
.wsa1{word-spacing:0.268992px;}
.wse{word-spacing:0.292900px;}
.ws4d{word-spacing:0.298878px;}
.wsa4{word-spacing:0.322790px;}
.ws7d{word-spacing:0.358654px;}
.ws9f{word-spacing:0.376589px;}
.ws31{word-spacing:0.478205px;}
.wsa0{word-spacing:0.537984px;}
.ws4a{word-spacing:0.657532px;}
.ws4c{word-spacing:0.717307px;}
.ws59{word-spacing:0.744600px;}
.ws5f{word-spacing:0.750595px;}
.ws7a{word-spacing:0.777083px;}
.ws47{word-spacing:0.836858px;}
.ws76{word-spacing:1.016185px;}
.ws73{word-spacing:1.195512px;}
.ws18{word-spacing:1.237363px;}
.ws67{word-spacing:1.255288px;}
.ws58{word-spacing:1.434614px;}
.ws64{word-spacing:1.554166px;}
.ws3c{word-spacing:1.613941px;}
.ws95{word-spacing:1.613952px;}
.ws21{word-spacing:1.673717px;}
.ws29{word-spacing:1.793268px;}
.ws3f{word-spacing:1.853044px;}
.ws94{word-spacing:1.936742px;}
.wsd{word-spacing:2.008454px;}
.wsab{word-spacing:2.044339px;}
.ws91{word-spacing:2.092146px;}
.wsa7{word-spacing:2.098138px;}
.ws68{word-spacing:2.151922px;}
.ws41{word-spacing:2.211697px;}
.ws60{word-spacing:2.271473px;}
.wsb3{word-spacing:2.313331px;}
.ws42{word-spacing:2.391024px;}
.ws7e{word-spacing:2.450800px;}
.ws8{word-spacing:2.509518px;}
.ws6c{word-spacing:2.510575px;}
.ws2e{word-spacing:2.749678px;}
.wsb1{word-spacing:2.797517px;}
.ws6a{word-spacing:2.809453px;}
.ws37{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws61{word-spacing:2.929004px;}
.wsb5{word-spacing:3.012710px;}
.ws78{word-spacing:3.048556px;}
.wsac{word-spacing:3.226397px;}
.ws9a{word-spacing:3.227904px;}
.ws6d{word-spacing:3.287658px;}
.ws7f{word-spacing:3.407209px;}
.ws3a{word-spacing:3.466985px;}
.ws1d{word-spacing:3.586536px;}
.ws19{word-spacing:3.604493px;}
.ws3e{word-spacing:3.706087px;}
.wsb7{word-spacing:3.712090px;}
.ws93{word-spacing:3.765863px;}
.wsa3{word-spacing:3.765888px;}
.ws28{word-spacing:3.885414px;}
.ws5c{word-spacing:4.004965px;}
.ws32{word-spacing:4.064741px;}
.ws8d{word-spacing:4.124516px;}
.ws8b{word-spacing:4.184292px;}
.wsaf{word-spacing:4.250074px;}
.ws4b{word-spacing:4.483170px;}
.ws90{word-spacing:4.542946px;}
.ws7c{word-spacing:4.602721px;}
.ws27{word-spacing:4.841824px;}
.ws9e{word-spacing:4.841856px;}
.ws30{word-spacing:4.901599px;}
.ws46{word-spacing:5.080926px;}
.ws8c{word-spacing:5.140702px;}
.ws39{word-spacing:5.200477px;}
.ws75{word-spacing:5.320028px;}
.ws34{word-spacing:5.379804px;}
.wsb2{word-spacing:5.379840px;}
.ws65{word-spacing:5.439580px;}
.ws40{word-spacing:5.618906px;}
.ws8a{word-spacing:5.678682px;}
.ws5d{word-spacing:5.858009px;}
.ws5b{word-spacing:5.917784px;}
.ws8e{word-spacing:6.037336px;}
.ws14{word-spacing:6.067206px;}
.ws15{word-spacing:6.150892px;}
.ws45{word-spacing:6.276438px;}
.ws2f{word-spacing:6.336214px;}
.ws3b{word-spacing:6.635092px;}
.ws5e{word-spacing:6.993745px;}
.ws85{word-spacing:7.173072px;}
.ws84{word-spacing:7.232848px;}
.ws77{word-spacing:7.352399px;}
.ws66{word-spacing:7.412174px;}
.ws23{word-spacing:7.711052px;}
.ws7b{word-spacing:7.890379px;}
.ws86{word-spacing:7.950155px;}
.ws44{word-spacing:8.488135px;}
.ws12{word-spacing:8.661460px;}
.ws74{word-spacing:9.444545px;}
.ws9{word-spacing:10.415741px;}
.ws2b{word-spacing:11.906842px;}
.ws6{word-spacing:12.189541px;}
.wsb6{word-spacing:13.126810px;}
.wsa9{word-spacing:13.388342px;}
.wsa5{word-spacing:13.390022px;}
.ws99{word-spacing:13.395802px;}
.wsad{word-spacing:13.503398px;}
.wsa2{word-spacing:13.664794px;}
.wsb8{word-spacing:13.718592px;}
.ws3d{word-spacing:14.884124px;}
.wsa8{word-spacing:15.009754px;}
.wsb4{word-spacing:15.762931px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.wsae{word-spacing:16.612253px;}
.ws9c{word-spacing:16.618445px;}
.wsaa{word-spacing:16.621373px;}
.ws9d{word-spacing:16.623706px;}
.wsa6{word-spacing:16.625482px;}
.ws11{word-spacing:17.699504px;}
.ws13{word-spacing:27.448877px;}
.ws69{word-spacing:92.652180px;}
._1c{margin-left:-24.926425px;}
._29{margin-left:-23.596033px;}
._2a{margin-left:-20.537832px;}
._c{margin-left:-18.171828px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._18{margin-left:-6.874194px;}
._8{margin-left:-5.866881px;}
._4{margin-left:-4.428251px;}
._3{margin-left:-3.307765px;}
._6{margin-left:-2.231777px;}
._5{margin-left:-1.082984px;}
._7{width:1.091170px;}
._2{width:2.999554px;}
._22{width:4.001456px;}
._1b{width:5.016544px;}
._20{width:6.398039px;}
._23{width:7.802280px;}
._21{width:9.739440px;}
._24{width:10.762560px;}
._9{width:12.971268px;}
._d{width:15.044424px;}
._e{width:16.838899px;}
._b{width:18.027016px;}
._14{width:20.144377px;}
._12{width:21.167586px;}
._1e{width:22.841303px;}
._f{width:24.036815px;}
._1d{width:25.643732px;}
._16{width:27.630374px;}
._19{width:30.140950px;}
._13{width:31.262639px;}
._a{width:32.637384px;}
._15{width:35.148053px;}
._1a{width:36.164238px;}
._17{width:38.077057px;}
._25{width:39.930101px;}
._28{width:42.820400px;}
._2c{width:61.868160px;}
._2b{width:88.767360px;}
._26{width:107.596080px;}
._10{width:677.556396px;}
._27{width:2227.670748px;}
._2d{width:2466.389929px;}
._1f{width:2475.189720px;}
._11{width:2490.299929px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(80,109,50);}
.fs7{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs11{font-size:43.092000px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs13{font-size:48.600000px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:54.108000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:127.439256px;}
.y113{bottom:-764.157000px;}
.y15b{bottom:-701.961000px;}
.y129{bottom:-671.457000px;}
.y128{bottom:-652.197000px;}
.y127{bottom:-632.937000px;}
.y126{bottom:-613.767000px;}
.y1cf{bottom:-609.965100px;}
.y174{bottom:-605.751000px;}
.y125{bottom:-594.507000px;}
.y173{bottom:-583.341000px;}
.y124{bottom:-575.307000px;}
.y123{bottom:-556.047000px;}
.y1ee{bottom:-549.944100px;}
.y122{bottom:-536.787000px;}
.y1ed{bottom:-532.610100px;}
.y121{bottom:-517.617000px;}
.y1ec{bottom:-515.357100px;}
.y1eb{bottom:-498.023100px;}
.y120{bottom:-480.807000px;}
.y1ea{bottom:-480.689100px;}
.y11f{bottom:-463.437000px;}
.y1e9{bottom:-463.436100px;}
.y1e8{bottom:-446.075100px;}
.y11e{bottom:-441.027000px;}
.y1e7{bottom:-428.822100px;}
.ya3{bottom:-424.375500px;}
.y1ae{bottom:-419.647500px;}
.y1e6{bottom:-411.488100px;}
.y1e5{bottom:-394.154100px;}
.y1e4{bottom:-376.901100px;}
.y1e3{bottom:-359.567100px;}
.ycf{bottom:-357.325500px;}
.y1e2{bottom:-342.233100px;}
.yce{bottom:-338.065500px;}
.y130{bottom:-332.065500px;}
.y172{bottom:-328.881000px;}
.y1e1{bottom:-324.980100px;}
.ycd{bottom:-314.395500px;}
.y171{bottom:-309.621000px;}
.y1e0{bottom:-307.646100px;}
.y170{bottom:-290.451000px;}
.y1df{bottom:-290.393100px;}
.ycc{bottom:-277.135500px;}
.y1de{bottom:-273.059100px;}
.y16f{bottom:-271.191000px;}
.ycb{bottom:-257.875500px;}
.y1dd{bottom:-255.725100px;}
.y16e{bottom:-251.931000px;}
.y146{bottom:-239.365500px;}
.yca{bottom:-238.675500px;}
.y1dc{bottom:-238.472100px;}
.y16d{bottom:-232.761000px;}
.y1db{bottom:-221.138100px;}
.y145{bottom:-220.105500px;}
.yc9{bottom:-219.415500px;}
.y16c{bottom:-213.501000px;}
.y1da{bottom:-203.885100px;}
.y144{bottom:-200.845500px;}
.yc8{bottom:-200.155500px;}
.y16b{bottom:-194.331000px;}
.y11d{bottom:-188.937000px;}
.y1d9{bottom:-186.551100px;}
.y143{bottom:-181.675500px;}
.yc7{bottom:-180.985500px;}
.y16a{bottom:-175.071000px;}
.y11c{bottom:-169.767000px;}
.y1d8{bottom:-169.217100px;}
.y142{bottom:-162.415500px;}
.yc6{bottom:-161.725500px;}
.y169{bottom:-155.811000px;}
.y1d7{bottom:-151.964100px;}
.y11b{bottom:-150.477000px;}
.y141{bottom:-143.215500px;}
.yc5{bottom:-142.555500px;}
.y168{bottom:-136.641000px;}
.y1d6{bottom:-134.630100px;}
.y1c4{bottom:-133.690500px;}
.y11a{bottom:-131.307000px;}
.y140{bottom:-123.955500px;}
.yc4{bottom:-123.295500px;}
.y167{bottom:-117.381000px;}
.y1d5{bottom:-117.377100px;}
.y187{bottom:-116.674650px;}
.y1c3{bottom:-116.356500px;}
.y119{bottom:-112.047000px;}
.y13f{bottom:-104.695500px;}
.yc3{bottom:-104.035500px;}
.y1d4{bottom:-100.043100px;}
.y1c2{bottom:-99.103500px;}
.y166{bottom:-98.181000px;}
.y118{bottom:-92.787000px;}
.y13e{bottom:-85.525500px;}
.yc2{bottom:-84.865500px;}
.y1c1{bottom:-81.769500px;}
.y165{bottom:-78.921000px;}
.y1d3{bottom:-78.578100px;}
.y1c0{bottom:-64.435500px;}
.yc1{bottom:-61.105500px;}
.y164{bottom:-59.661000px;}
.y117{bottom:-55.977000px;}
.y13d{bottom:-48.715500px;}
.y1d2{bottom:-45.503100px;}
.y116{bottom:-38.697000px;}
.y1bf{bottom:-31.387500px;}
.y13c{bottom:-31.345500px;}
.y1d1{bottom:-29.951100px;}
.yc0{bottom:-24.295500px;}
.y163{bottom:-22.851000px;}
.y115{bottom:-21.417000px;}
.y1a0{bottom:-20.464650px;}
.y1be{bottom:-15.754500px;}
.y13b{bottom:-8.935500px;}
.y162{bottom:-0.351000px;}
.y0{bottom:0.000000px;}
.y114{bottom:0.993000px;}
.y1d0{bottom:1.800900px;}
.y19f{bottom:1.945350px;}
.ya{bottom:3.425340px;}
.y1bd{bottom:4.495500px;}
.ybf{bottom:7.204500px;}
.y9{bottom:14.151273px;}
.y2{bottom:16.623424px;}
.y4f{bottom:31.890000px;}
.ye6{bottom:88.993500px;}
.y1aa{bottom:93.610500px;}
.y1f0{bottom:98.115000px;}
.y23{bottom:102.823500px;}
.y4e{bottom:103.621500px;}
.y86{bottom:107.125500px;}
.ye5{bottom:107.823000px;}
.y1a9{bottom:112.440000px;}
.y1ef{bottom:117.348000px;}
.y224{bottom:120.594000px;}
.y22{bottom:120.711000px;}
.y4d{bottom:122.449500px;}
.y257{bottom:124.672500px;}
.y85{bottom:125.955000px;}
.ye4{bottom:126.652500px;}
.y1a8{bottom:131.269500px;}
.y21{bottom:138.600000px;}
.y223{bottom:139.422000px;}
.y1cc{bottom:139.777500px;}
.y4c{bottom:141.279000px;}
.y256{bottom:141.933000px;}
.ye3{bottom:145.482000px;}
.y84{bottom:149.268000px;}
.y1a7{bottom:150.099000px;}
.ybe{bottom:152.284500px;}
.y20{bottom:156.487500px;}
.y221{bottom:158.251500px;}
.y255{bottom:159.193500px;}
.y4b{bottom:160.108500px;}
.y157{bottom:161.799000px;}
.y222{bottom:163.677000px;}
.ye2{bottom:164.311500px;}
.y1a6{bottom:168.928500px;}
.ybd{bottom:171.454500px;}
.y1f{bottom:174.375000px;}
.y254{bottom:176.454000px;}
.y220{bottom:177.081000px;}
.y4a{bottom:178.938000px;}
.y156{bottom:180.628500px;}
.y83{bottom:182.892000px;}
.ye1{bottom:183.141000px;}
.y1a5{bottom:187.756500px;}
.ybc{bottom:190.744500px;}
.y1e{bottom:192.264000px;}
.y253{bottom:193.714500px;}
.y21f{bottom:195.910500px;}
.y49{bottom:197.767500px;}
.y155{bottom:199.458000px;}
.y82{bottom:201.721500px;}
.ye0{bottom:206.454000px;}
.y1a4{bottom:206.586000px;}
.ybb{bottom:209.914500px;}
.y1d{bottom:210.151500px;}
.y252{bottom:210.975000px;}
.y21e{bottom:214.740000px;}
.y48{bottom:216.597000px;}
.y154{bottom:218.287500px;}
.y81{bottom:220.551000px;}
.y1a3{bottom:225.415500px;}
.y1c{bottom:228.039000px;}
.y251{bottom:228.235500px;}
.yba{bottom:229.174500px;}
.y21d{bottom:233.569500px;}
.y47{bottom:235.426500px;}
.y152{bottom:237.117000px;}
.y7f{bottom:239.380500px;}
.ydf{bottom:240.078000px;}
.y153{bottom:242.541000px;}
.y13a{bottom:243.154500px;}
.y1a2{bottom:244.245000px;}
.y80{bottom:244.804500px;}
.y250{bottom:245.496000px;}
.y10f{bottom:247.020000px;}
.yb9{bottom:248.434500px;}
.y46{bottom:254.256000px;}
.y151{bottom:255.946500px;}
.y19e{bottom:256.405350px;}
.y21c{bottom:256.882500px;}
.y7e{bottom:258.210000px;}
.yde{bottom:258.907500px;}
.y139{bottom:262.324500px;}
.y24e{bottom:262.755000px;}
.y24f{bottom:262.756500px;}
.y10e{bottom:265.849500px;}
.yb8{bottom:267.604500px;}
.y45{bottom:273.085500px;}
.y150{bottom:274.776000px;}
.y19d{bottom:275.665350px;}
.y7d{bottom:277.039500px;}
.ydd{bottom:277.737000px;}
.y1a1{bottom:277.812000px;}
.y24d{bottom:280.015500px;}
.y138{bottom:281.614500px;}
.y161{bottom:282.879000px;}
.y10d{bottom:284.679000px;}
.yb7{bottom:286.864500px;}
.y21b{bottom:290.506500px;}
.y44{bottom:291.915000px;}
.y14f{bottom:293.605500px;}
.y19c{bottom:294.835350px;}
.y7c{bottom:295.869000px;}
.ydc{bottom:296.566500px;}
.y24c{bottom:297.276000px;}
.y184{bottom:300.240150px;}
.y137{bottom:300.784500px;}
.y160{bottom:302.139000px;}
.y10c{bottom:303.508500px;}
.yb6{bottom:306.034500px;}
.y1b{bottom:307.299000px;}
.y21a{bottom:309.336000px;}
.y43{bottom:310.744500px;}
.y14e{bottom:312.435000px;}
.y19b{bottom:314.095350px;}
.y24b{bottom:314.536500px;}
.y7b{bottom:314.698500px;}
.ydb{bottom:315.396000px;}
.y136{bottom:320.044500px;}
.y15f{bottom:321.429000px;}
.y10b{bottom:322.338000px;}
.y1a{bottom:325.186500px;}
.yb5{bottom:325.294500px;}
.y219{bottom:328.165500px;}
.y1bc{bottom:328.360500px;}
.y42{bottom:329.574000px;}
.y14d{bottom:331.264500px;}
.y24a{bottom:331.797000px;}
.y19a{bottom:333.355350px;}
.y7a{bottom:333.528000px;}
.yda{bottom:334.224000px;}
.y135{bottom:339.304500px;}
.y15e{bottom:340.599000px;}
.y10a{bottom:341.167500px;}
.y19{bottom:343.074000px;}
.yb4{bottom:344.554500px;}
.y1bb{bottom:345.613500px;}
.y218{bottom:346.995000px;}
.y41{bottom:348.403500px;}
.y249{bottom:349.057500px;}
.y14c{bottom:350.094000px;}
.y79{bottom:352.356000px;}
.y199{bottom:352.525350px;}
.yd9{bottom:353.053500px;}
.y15d{bottom:359.859000px;}
.y109{bottom:359.997000px;}
.y18{bottom:360.963000px;}
.y1ba{bottom:362.947500px;}
.yb3{bottom:363.724500px;}
.y217{bottom:365.824500px;}
.y248{bottom:366.318000px;}
.y40{bottom:367.233000px;}
.y14b{bottom:368.923500px;}
.y112{bottom:370.023000px;}
.y78{bottom:371.185500px;}
.y198{bottom:371.785350px;}
.yd7{bottom:371.883000px;}
.y134{bottom:376.114500px;}
.yd8{bottom:377.308500px;}
.y108{bottom:378.826500px;}
.y15c{bottom:379.029000px;}
.y111{bottom:379.743000px;}
.y1b9{bottom:380.200500px;}
.yb2{bottom:382.984500px;}
.y247{bottom:383.578500px;}
.y216{bottom:384.654000px;}
.y3f{bottom:386.062500px;}
.y14a{bottom:387.753000px;}
.y77{bottom:390.015000px;}
.yd5{bottom:390.712500px;}
.y197{bottom:390.955350px;}
.y133{bottom:393.394500px;}
.yd6{bottom:396.138000px;}
.y1b8{bottom:397.534500px;}
.y107{bottom:397.654500px;}
.y17{bottom:399.024000px;}
.y246{bottom:400.839000px;}
.yb1{bottom:402.244500px;}
.y215{bottom:403.483500px;}
.y3e{bottom:404.892000px;}
.y149{bottom:406.582500px;}
.y76{bottom:408.844500px;}
.yd3{bottom:409.542000px;}
.y196{bottom:410.215350px;}
.y132{bottom:410.674500px;}
.y1ce{bottom:410.796900px;}
.y1b7{bottom:414.868500px;}
.yd4{bottom:414.967500px;}
.y16{bottom:416.913000px;}
.y245{bottom:418.098000px;}
.y1cd{bottom:419.544900px;}
.y106{bottom:420.967500px;}
.yb0{bottom:421.414500px;}
.y214{bottom:422.313000px;}
.y3d{bottom:423.721500px;}
.y75{bottom:427.674000px;}
.yd2{bottom:428.371500px;}
.y195{bottom:429.475350px;}
.y1b6{bottom:432.121500px;}
.y15a{bottom:432.219000px;}
.y131{bottom:433.084500px;}
.y15{bottom:434.800500px;}
.y244{bottom:435.358500px;}
.y148{bottom:440.148000px;}
.yaf{bottom:440.674500px;}
.y213{bottom:441.142500px;}
.y159{bottom:441.939000px;}
.y3c{bottom:442.551000px;}
.y74{bottom:446.503500px;}
.y194{bottom:448.645350px;}
.y1b5{bottom:449.455500px;}
.yd1{bottom:451.684500px;}
.y243{bottom:452.619000px;}
.y105{bottom:454.591500px;}
.y147{bottom:459.381000px;}
.yae{bottom:459.844500px;}
.y212{bottom:459.972000px;}
.y3b{bottom:461.380500px;}
.y1b4{bottom:466.708500px;}
.y193{bottom:467.905350px;}
.y73{bottom:469.816500px;}
.y242{bottom:469.879500px;}
.y14{bottom:470.622000px;}
.y104{bottom:473.421000px;}
.y211{bottom:478.801500px;}
.yad{bottom:479.104500px;}
.y3a{bottom:480.210000px;}
.yd0{bottom:481.467000px;}
.y12d{bottom:481.809000px;}
.y1b3{bottom:484.042500px;}
.y192{bottom:487.105350px;}
.y241{bottom:487.140000px;}
.y72{bottom:489.991500px;}
.y103{bottom:492.250500px;}
.y210{bottom:497.631000px;}
.yac{bottom:498.364500px;}
.y39{bottom:499.039500px;}
.y1b2{bottom:501.403500px;}
.ya0{bottom:503.896500px;}
.y240{bottom:504.400500px;}
.y191{bottom:506.365350px;}
.y13{bottom:506.442000px;}
.y101{bottom:511.080000px;}
.y20f{bottom:516.460500px;}
.y102{bottom:516.505500px;}
.yab{bottom:517.534500px;}
.y1b1{bottom:518.656500px;}
.y23f{bottom:521.661000px;}
.y38{bottom:522.351000px;}
.y71{bottom:523.615500px;}
.y12{bottom:524.329500px;}
.y190{bottom:525.625350px;}
.y100{bottom:534.393000px;}
.y20e{bottom:535.290000px;}
.y1b0{bottom:535.990500px;}
.yaa{bottom:536.794500px;}
.y23e{bottom:538.921500px;}
.y1cb{bottom:541.690500px;}
.y11{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y70{bottom:547.869000px;}
.yff{bottom:553.222500px;}
.y1af{bottom:553.243500px;}
.y20d{bottom:554.118000px;}
.ya9{bottom:555.964500px;}
.y23c{bottom:556.180500px;}
.y23d{bottom:556.182000px;}
.y183{bottom:559.567500px;}
.y10{bottom:560.106000px;}
.y1ca{bottom:560.520000px;}
.y6e{bottom:561.274500px;}
.y18f{bottom:562.435350px;}
.yfe{bottom:572.052000px;}
.y20c{bottom:572.947500px;}
.y23b{bottom:573.441000px;}
.ya8{bottom:575.224500px;}
.yf{bottom:577.993500px;}
.y182{bottom:578.397000px;}
.y1c9{bottom:579.349500px;}
.y6d{bottom:580.104000px;}
.y18e{bottom:584.935350px;}
.y23a{bottom:590.701500px;}
.yfd{bottom:590.881500px;}
.y20b{bottom:591.777000px;}
.ya7{bottom:594.484500px;}
.ye{bottom:595.882500px;}
.y181{bottom:597.226500px;}
.y37{bottom:597.502500px;}
.y1c8{bottom:598.179000px;}
.y6c{bottom:598.932000px;}
.y1ad{bottom:601.114500px;}
.y239{bottom:607.962000px;}
.yfc{bottom:609.711000px;}
.y1ac{bottom:609.862500px;}
.y20a{bottom:610.606500px;}
.ya6{bottom:613.684500px;}
.yd{bottom:613.770000px;}
.y180{bottom:616.056000px;}
.y1c7{bottom:617.008500px;}
.y6b{bottom:617.761500px;}
.y238{bottom:625.222500px;}
.y209{bottom:629.436000px;}
.yc{bottom:631.657500px;}
.ya5{bottom:632.944500px;}
.yfb{bottom:633.022500px;}
.y17f{bottom:634.885500px;}
.y36{bottom:634.891500px;}
.y6a{bottom:636.591000px;}
.y237{bottom:642.483000px;}
.y208{bottom:648.265500px;}
.yb{bottom:649.546500px;}
.y1c6{bottom:650.574000px;}
.yfa{bottom:651.852000px;}
.y17e{bottom:653.715000px;}
.y34{bottom:654.348000px;}
.y69{bottom:655.420500px;}
.ya4{bottom:656.614500px;}
.y35{bottom:659.230500px;}
.y236{bottom:659.743500px;}
.y207{bottom:667.095000px;}
.y1c5{bottom:669.807000px;}
.yf9{bottom:670.681500px;}
.y9f{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y17d{bottom:672.544500px;}
.y33{bottom:673.806000px;}
.y68{bottom:674.250000px;}
.y235{bottom:677.004000px;}
.y206{bottom:685.924500px;}
.yf8{bottom:689.511000px;}
.y9d{bottom:690.408000px;}
.y17c{bottom:691.372500px;}
.y1ab{bottom:692.236500px;}
.y67{bottom:693.079500px;}
.y32{bottom:693.262500px;}
.y234{bottom:694.264500px;}
.y9e{bottom:695.832000px;}
.y205{bottom:704.754000px;}
.yf7{bottom:708.340500px;}
.y9c{bottom:709.237500px;}
.ya2{bottom:709.804500px;}
.y17b{bottom:710.202000px;}
.y233{bottom:711.523500px;}
.y66{bottom:711.909000px;}
.y31{bottom:712.720500px;}
.ya1{bottom:719.524500px;}
.y12c{bottom:720.889500px;}
.y204{bottom:723.583500px;}
.yf6{bottom:727.170000px;}
.y9b{bottom:728.067000px;}
.y232{bottom:728.784000px;}
.y17a{bottom:729.031500px;}
.y65{bottom:730.738500px;}
.y30{bottom:732.177000px;}
.y12b{bottom:740.122500px;}
.y203{bottom:742.413000px;}
.yf5{bottom:745.999500px;}
.y231{bottom:746.044500px;}
.y9a{bottom:746.896500px;}
.y179{bottom:747.861000px;}
.y64{bottom:749.568000px;}
.y2f{bottom:751.633500px;}
.y12a{bottom:759.355500px;}
.y202{bottom:761.242500px;}
.y230{bottom:763.305000px;}
.yf4{bottom:764.829000px;}
.y99{bottom:765.726000px;}
.y178{bottom:766.690500px;}
.y63{bottom:768.397500px;}
.y2e{bottom:771.091500px;}
.y269{bottom:776.709000px;}
.y201{bottom:780.072000px;}
.y22f{bottom:780.565500px;}
.y110{bottom:781.783500px;}
.yf3{bottom:783.658500px;}
.y98{bottom:784.555500px;}
.y177{bottom:785.520000px;}
.y62{bottom:787.227000px;}
.y268{bottom:793.969500px;}
.y22e{bottom:797.826000px;}
.y200{bottom:798.901500px;}
.y12f{bottom:802.114500px;}
.y97{bottom:803.385000px;}
.y176{bottom:804.349500px;}
.y61{bottom:806.056500px;}
.yf2{bottom:806.971500px;}
.y2d{bottom:807.828000px;}
.y267{bottom:811.230000px;}
.y12e{bottom:811.834500px;}
.y22d{bottom:815.086500px;}
.y1ff{bottom:817.731000px;}
.y96{bottom:822.214500px;}
.y2c{bottom:823.968000px;}
.y60{bottom:824.886000px;}
.y266{bottom:828.490500px;}
.y1fe{bottom:836.560500px;}
.y22c{bottom:836.829000px;}
.y175{bottom:837.915000px;}
.y2b{bottom:840.108000px;}
.yf1{bottom:840.595500px;}
.y95{bottom:841.044000px;}
.y5f{bottom:843.715500px;}
.y265{bottom:845.751000px;}
.y1fd{bottom:855.390000px;}
.yf0{bottom:859.425000px;}
.y94{bottom:859.873500px;}
.y158{bottom:860.344500px;}
.y2a{bottom:860.587500px;}
.y5e{bottom:862.545000px;}
.y264{bottom:863.011500px;}
.y18d{bottom:868.165350px;}
.y22b{bottom:870.453000px;}
.y29{bottom:872.386500px;}
.y1fc{bottom:874.219500px;}
.yef{bottom:878.254500px;}
.y93{bottom:878.703000px;}
.y263{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.y18c{bottom:887.425350px;}
.y28{bottom:888.526500px;}
.y1fb{bottom:893.049000px;}
.y22a{bottom:896.994000px;}
.yee{bottom:897.084000px;}
.y92{bottom:897.532500px;}
.y5c{bottom:900.204000px;}
.y18b{bottom:906.715350px;}
.y27{bottom:909.006000px;}
.y1fa{bottom:911.878500px;}
.y262{bottom:914.793000px;}
.yed{bottom:915.913500px;}
.y91{bottom:916.362000px;}
.y5b{bottom:919.033500px;}
.y26{bottom:920.805000px;}
.y229{bottom:923.535000px;}
.y18a{bottom:925.885350px;}
.y1f9{bottom:930.708000px;}
.y261{bottom:932.052000px;}
.yec{bottom:934.743000px;}
.y90{bottom:935.191500px;}
.y25{bottom:936.945000px;}
.y5a{bottom:937.863000px;}
.y228{bottom:941.109000px;}
.y24{bottom:941.284500px;}
.y189{bottom:945.145350px;}
.y260{bottom:949.312500px;}
.y1f8{bottom:949.537500px;}
.yeb{bottom:953.572500px;}
.y8f{bottom:954.021000px;}
.y59{bottom:956.692500px;}
.y227{bottom:958.683000px;}
.y188{bottom:964.315350px;}
.y25f{bottom:966.573000px;}
.y1f7{bottom:968.367000px;}
.yea{bottom:972.402000px;}
.y8e{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.y226{bottom:976.257000px;}
.y7{bottom:979.630500px;}
.y25e{bottom:983.833500px;}
.y1f6{bottom:987.196500px;}
.ye9{bottom:991.231500px;}
.y8d{bottom:991.678500px;}
.y225{bottom:993.831000px;}
.y57{bottom:994.351500px;}
.y6{bottom:998.460000px;}
.y25d{bottom:1001.094000px;}
.y1f5{bottom:1006.026000px;}
.y8c{bottom:1010.508000px;}
.y56{bottom:1013.181000px;}
.ye8{bottom:1014.543000px;}
.y186{bottom:1017.505350px;}
.y25c{bottom:1018.354500px;}
.y1f4{bottom:1024.855500px;}
.y185{bottom:1027.225350px;}
.y8b{bottom:1029.337500px;}
.y55{bottom:1032.010500px;}
.y25b{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y1f3{bottom:1043.685000px;}
.y8a{bottom:1048.167000px;}
.y54{bottom:1050.840000px;}
.y25a{bottom:1052.875500px;}
.y1f2{bottom:1062.513000px;}
.y89{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y259{bottom:1070.134500px;}
.ye7{bottom:1072.422000px;}
.y1f1{bottom:1081.342500px;}
.y88{bottom:1085.826000px;}
.y258{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y87{bottom:1104.655500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.217754px;}
.h16{height:27.855430px;}
.h10{height:29.037733px;}
.ha{height:30.587087px;}
.hb{height:30.670772px;}
.h27{height:31.456318px;}
.h15{height:31.526842px;}
.h26{height:31.582564px;}
.h9{height:33.112997px;}
.h1f{height:33.209038px;}
.h8{height:34.199443px;}
.h1a{height:34.951465px;}
.hd{height:34.956859px;}
.h13{height:35.052500px;}
.h19{height:35.091738px;}
.h29{height:35.477051px;}
.he{height:38.734848px;}
.hf{height:39.326630px;}
.h1d{height:39.418945px;}
.h2b{height:39.434227px;}
.h28{height:39.497783px;}
.h14{height:41.482876px;}
.h2c{height:42.014630px;}
.h17{height:42.380900px;}
.h11{height:43.038432px;}
.h12{height:43.695964px;}
.h4{height:43.815515px;}
.h1b{height:43.886426px;}
.h1c{height:44.062559px;}
.h2{height:50.930649px;}
.h20{height:53.228842px;}
.h6{height:54.405312px;}
.h1e{height:54.911038px;}
.h5{height:77.469696px;}
.h3{height:86.403815px;}
.h18{height:144.685500px;}
.h22{height:204.916500px;}
.h24{height:235.685850px;}
.h23{height:259.255500px;}
.h25{height:313.463250px;}
.h21{height:337.816500px;}
.h2a{height:378.275400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:199.400578px;}
.w8{width:286.096500px;}
.w7{width:350.254500px;}
.wa{width:511.438050px;}
.w9{width:513.206550px;}
.w6{width:514.582500px;}
.w4{width:557.790000px;}
.w5{width:576.777000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6c{left:-212.455500px;}
.x72{left:-194.125500px;}
.x43{left:-191.506500px;}
.x80{left:-173.534400px;}
.x77{left:-169.998750px;}
.x6e{left:-16.855500px;}
.x0{left:0.000000px;}
.x73{left:1.474500px;}
.x82{left:2.505600px;}
.x44{left:4.093500px;}
.x79{left:6.041250px;}
.x6f{left:15.004500px;}
.x4{left:29.274117px;}
.x83{left:31.179600px;}
.x75{left:33.334500px;}
.x78{left:34.715250px;}
.x45{left:35.953500px;}
.x3{left:52.654500px;}
.x1{left:54.000000px;}
.x2{left:57.836618px;}
.x88{left:86.272500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x5f{left:251.898000px;}
.x6{left:271.071000px;}
.xc{left:282.786000px;}
.x5c{left:285.807000px;}
.x33{left:293.026500px;}
.x57{left:295.209000px;}
.x5d{left:302.145000px;}
.x9{left:307.735500px;}
.x8{left:310.207500px;}
.x7f{left:312.346500px;}
.xa{left:314.062500px;}
.xb{left:321.196500px;}
.x2c{left:322.206000px;}
.x76{left:327.754500px;}
.x41{left:331.671000px;}
.x2d{left:337.150500px;}
.x42{left:338.476500px;}
.x14{left:348.369000px;}
.x1e{left:351.219000px;}
.x55{left:352.284000px;}
.x15{left:355.840500px;}
.x48{left:358.410000px;}
.x1f{left:366.162000px;}
.x56{left:368.298000px;}
.x1a{left:377.788500px;}
.x49{left:382.968000px;}
.x74{left:391.504500px;}
.x1b{left:392.733000px;}
.x3d{left:394.828500px;}
.x3e{left:399.333000px;}
.x4a{left:400.578000px;}
.x4b{left:415.962000px;}
.x3a{left:446.610000px;}
.x4c{left:449.839500px;}
.x32{left:456.636000px;}
.x1c{left:462.619500px;}
.x2a{left:464.737500px;}
.x5e{left:468.423000px;}
.x6a{left:471.526500px;}
.x1d{left:477.562500px;}
.x2b{left:479.680500px;}
.x4f{left:504.084000px;}
.x81{left:509.619600px;}
.x50{left:510.889500px;}
.x7a{left:512.345250px;}
.x62{left:517.494000px;}
.x63{left:529.785000px;}
.x5a{left:538.990500px;}
.x6d{left:548.674500px;}
.x46{left:553.153500px;}
.x5b{left:555.798000px;}
.x58{left:561.079500px;}
.x59{left:567.886500px;}
.x69{left:570.279000px;}
.x4d{left:579.562500px;}
.x24{left:597.225000px;}
.x3b{left:604.380000px;}
.x25{left:612.168000px;}
.x3c{left:619.324500px;}
.x7b{left:626.758500px;}
.x7c{left:630.154500px;}
.x89{left:637.272000px;}
.x7d{left:638.371500px;}
.x4e{left:646.434000px;}
.x8b{left:649.978500px;}
.x2e{left:657.757500px;}
.xe{left:664.014000px;}
.x10{left:668.583000px;}
.xf{left:671.485500px;}
.x2f{left:672.702000px;}
.x87{left:674.005500px;}
.x11{left:676.054500px;}
.x70{left:678.487500px;}
.x16{left:680.446500px;}
.x17{left:687.918000px;}
.x26{left:689.566500px;}
.x3f{left:699.990000px;}
.x27{left:704.511000px;}
.x28{left:711.886500px;}
.x40{left:716.337000px;}
.x8c{left:717.585000px;}
.x51{left:721.299000px;}
.x6b{left:724.044000px;}
.x29{left:726.829500px;}
.x22{left:731.634000px;}
.x47{left:733.881000px;}
.x60{left:734.974500px;}
.x52{left:737.392500px;}
.x61{left:741.781500px;}
.x12{left:743.482500px;}
.x8d{left:744.483000px;}
.x23{left:746.578500px;}
.x66{left:747.982500px;}
.x13{left:750.954000px;}
.x53{left:752.778000px;}
.x71{left:757.464000px;}
.xd{left:761.563500px;}
.x8f{left:765.171000px;}
.x64{left:766.497000px;}
.x30{left:771.478500px;}
.x8e{left:774.576000px;}
.x34{left:780.487500px;}
.x38{left:783.018000px;}
.x54{left:785.139000px;}
.x84{left:786.415500px;}
.x31{left:787.426500px;}
.x35{left:789.718500px;}
.x7e{left:792.084000px;}
.x67{left:795.450000px;}
.x85{left:796.743000px;}
.x65{left:804.685500px;}
.x68{left:808.054500px;}
.x8a{left:810.397500px;}
.x20{left:817.698000px;}
.x18{left:819.093000px;}
.x36{left:821.628000px;}
.x37{left:828.435000px;}
.x21{left:832.642500px;}
.x19{left:834.036000px;}
.x39{left:835.332000px;}
.x86{left:837.849000px;}
@media print{
.v4{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.389333pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:19.285333pt;}
.ls1c{letter-spacing:-1.765333pt;}
.ls18{letter-spacing:-0.296533pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls2b{letter-spacing:-0.273600pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.190933pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.147733pt;}
.ls1a{letter-spacing:-0.058133pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000544pt;}
.ls23{letter-spacing:0.001007pt;}
.ls30{letter-spacing:0.004267pt;}
.ls22{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.055200pt;}
.ls17{letter-spacing:0.061333pt;}
.ls27{letter-spacing:0.100800pt;}
.ls20{letter-spacing:0.112000pt;}
.ls28{letter-spacing:0.115200pt;}
.ls21{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.136533pt;}
.ls26{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.482502pt;}
.ls10{letter-spacing:0.487835pt;}
.ls16{letter-spacing:0.637762pt;}
.ls12{letter-spacing:0.661757pt;}
.ls9{letter-spacing:1.133683pt;}
.lse{letter-spacing:1.360000pt;}
.ls3{letter-spacing:1.654338pt;}
.lsd{letter-spacing:2.640000pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1e{letter-spacing:3.163733pt;}
.lsc{letter-spacing:3.600000pt;}
.ls4{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls2d{letter-spacing:11.954133pt;}
.ls2e{letter-spacing:11.959467pt;}
.ls32{letter-spacing:12.055553pt;}
.ls31{letter-spacing:12.066392pt;}
.ls34{letter-spacing:12.234888pt;}
.ls2f{letter-spacing:12.447414pt;}
.lsf{letter-spacing:13.923096pt;}
.ls1f{letter-spacing:13.947090pt;}
.ls33{letter-spacing:14.617349pt;}
.ls2{letter-spacing:15.942400pt;}
.ls11{letter-spacing:16.603733pt;}
.ls15{letter-spacing:16.838400pt;}
.ls29{letter-spacing:19.659531pt;}
.ls13{letter-spacing:22.230400pt;}
.ls1{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws0{word-spacing:-88.131325pt;}
.ws50{word-spacing:-13.520000pt;}
.ws51{word-spacing:-13.421333pt;}
.ws53{word-spacing:-13.360000pt;}
.ws54{word-spacing:-13.301867pt;}
.ws5a{word-spacing:-13.283467pt;}
.ws55{word-spacing:-13.212267pt;}
.ws57{word-spacing:-13.200000pt;}
.ws52{word-spacing:-13.063467pt;}
.ws82{word-spacing:-12.168000pt;}
.ws89{word-spacing:-12.079200pt;}
.ws6f{word-spacing:-12.016000pt;}
.ws6e{word-spacing:-12.000000pt;}
.ws71{word-spacing:-11.955200pt;}
.ws4f{word-spacing:-10.800000pt;}
.ws4e{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws88{word-spacing:-10.526400pt;}
.ws3{word-spacing:-10.095467pt;}
.ws81{word-spacing:-9.720000pt;}
.ws80{word-spacing:-9.576000pt;}
.wsa{word-spacing:-9.298400pt;}
.ws56{word-spacing:-8.000000pt;}
.ws6b{word-spacing:-2.497292pt;}
.ws92{word-spacing:-2.072221pt;}
.ws79{word-spacing:-1.965953pt;}
.ws97{word-spacing:-1.769370pt;}
.ws5{word-spacing:-1.696326pt;}
.ws63{word-spacing:-1.647150pt;}
.ws98{word-spacing:-1.482445pt;}
.ws49{word-spacing:-1.328347pt;}
.ws87{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws7{word-spacing:-1.153002pt;}
.ws43{word-spacing:-1.062677pt;}
.ws33{word-spacing:-1.009543pt;}
.ws36{word-spacing:-0.956410pt;}
.ws25{word-spacing:-0.797008pt;}
.ws48{word-spacing:-0.584473pt;}
.ws8f{word-spacing:-0.425071pt;}
.ws35{word-spacing:-0.318803pt;}
.wsb0{word-spacing:-0.286925pt;}
.ws1e{word-spacing:-0.265669pt;}
.ws38{word-spacing:-0.212535pt;}
.ws70{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws72{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.ws83{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.wsb{word-spacing:-0.037194pt;}
.ws62{word-spacing:-0.001333pt;}
.ws2{word-spacing:-0.001067pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.ws96{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws2a{word-spacing:0.159402pt;}
.wsc{word-spacing:0.185968pt;}
.ws9b{word-spacing:0.191283pt;}
.ws16{word-spacing:0.212536pt;}
.wsa1{word-spacing:0.239104pt;}
.wse{word-spacing:0.260355pt;}
.ws4d{word-spacing:0.265669pt;}
.wsa4{word-spacing:0.286925pt;}
.ws7d{word-spacing:0.318803pt;}
.ws9f{word-spacing:0.334746pt;}
.ws31{word-spacing:0.425071pt;}
.wsa0{word-spacing:0.478208pt;}
.ws4a{word-spacing:0.584473pt;}
.ws4c{word-spacing:0.637606pt;}
.ws59{word-spacing:0.661867pt;}
.ws5f{word-spacing:0.667196pt;}
.ws7a{word-spacing:0.690740pt;}
.ws47{word-spacing:0.743874pt;}
.ws76{word-spacing:0.903276pt;}
.ws73{word-spacing:1.062677pt;}
.ws18{word-spacing:1.099878pt;}
.ws67{word-spacing:1.115811pt;}
.ws58{word-spacing:1.275213pt;}
.ws64{word-spacing:1.381481pt;}
.ws3c{word-spacing:1.434614pt;}
.ws95{word-spacing:1.434624pt;}
.ws21{word-spacing:1.487748pt;}
.ws29{word-spacing:1.594016pt;}
.ws3f{word-spacing:1.647150pt;}
.ws94{word-spacing:1.721549pt;}
.wsd{word-spacing:1.785293pt;}
.wsab{word-spacing:1.817190pt;}
.ws91{word-spacing:1.859685pt;}
.wsa7{word-spacing:1.865011pt;}
.ws68{word-spacing:1.912819pt;}
.ws41{word-spacing:1.965953pt;}
.ws60{word-spacing:2.019087pt;}
.wsb3{word-spacing:2.056294pt;}
.ws42{word-spacing:2.125355pt;}
.ws7e{word-spacing:2.178489pt;}
.ws8{word-spacing:2.230683pt;}
.ws6c{word-spacing:2.231622pt;}
.ws2e{word-spacing:2.444158pt;}
.wsb1{word-spacing:2.486682pt;}
.ws6a{word-spacing:2.497292pt;}
.ws37{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws61{word-spacing:2.603559pt;}
.wsb5{word-spacing:2.677965pt;}
.ws78{word-spacing:2.709827pt;}
.wsac{word-spacing:2.867908pt;}
.ws9a{word-spacing:2.869248pt;}
.ws6d{word-spacing:2.922363pt;}
.ws7f{word-spacing:3.028630pt;}
.ws3a{word-spacing:3.081764pt;}
.ws1d{word-spacing:3.188032pt;}
.ws19{word-spacing:3.203994pt;}
.ws3e{word-spacing:3.294300pt;}
.wsb7{word-spacing:3.299635pt;}
.ws93{word-spacing:3.347434pt;}
.wsa3{word-spacing:3.347456pt;}
.ws28{word-spacing:3.453701pt;}
.ws5c{word-spacing:3.559969pt;}
.ws32{word-spacing:3.613103pt;}
.ws8d{word-spacing:3.666237pt;}
.ws8b{word-spacing:3.719371pt;}
.wsaf{word-spacing:3.777843pt;}
.ws4b{word-spacing:3.985040pt;}
.ws90{word-spacing:4.038174pt;}
.ws7c{word-spacing:4.091308pt;}
.ws27{word-spacing:4.303843pt;}
.ws9e{word-spacing:4.303872pt;}
.ws30{word-spacing:4.356977pt;}
.ws46{word-spacing:4.516379pt;}
.ws8c{word-spacing:4.569513pt;}
.ws39{word-spacing:4.622646pt;}
.ws75{word-spacing:4.728914pt;}
.ws34{word-spacing:4.782048pt;}
.wsb2{word-spacing:4.782080pt;}
.ws65{word-spacing:4.835182pt;}
.ws40{word-spacing:4.994583pt;}
.ws8a{word-spacing:5.047717pt;}
.ws5d{word-spacing:5.207119pt;}
.ws5b{word-spacing:5.260253pt;}
.ws8e{word-spacing:5.366521pt;}
.ws14{word-spacing:5.393072pt;}
.ws15{word-spacing:5.467459pt;}
.ws45{word-spacing:5.579056pt;}
.ws2f{word-spacing:5.632190pt;}
.ws3b{word-spacing:5.897859pt;}
.ws5e{word-spacing:6.216662pt;}
.ws85{word-spacing:6.376064pt;}
.ws84{word-spacing:6.429198pt;}
.ws77{word-spacing:6.535466pt;}
.ws66{word-spacing:6.588599pt;}
.ws23{word-spacing:6.854269pt;}
.ws7b{word-spacing:7.013670pt;}
.ws86{word-spacing:7.066804pt;}
.ws44{word-spacing:7.545009pt;}
.ws12{word-spacing:7.699075pt;}
.ws74{word-spacing:8.395151pt;}
.ws9{word-spacing:9.258436pt;}
.ws2b{word-spacing:10.583859pt;}
.ws6{word-spacing:10.835148pt;}
.wsb6{word-spacing:11.668275pt;}
.wsa9{word-spacing:11.900749pt;}
.wsa5{word-spacing:11.902242pt;}
.ws99{word-spacing:11.907379pt;}
.wsad{word-spacing:12.003021pt;}
.wsa2{word-spacing:12.146483pt;}
.wsb8{word-spacing:12.194304pt;}
.ws3d{word-spacing:13.230333pt;}
.wsa8{word-spacing:13.342003pt;}
.wsb4{word-spacing:14.011494pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.wsae{word-spacing:14.766447pt;}
.ws9c{word-spacing:14.771951pt;}
.wsaa{word-spacing:14.774554pt;}
.ws9d{word-spacing:14.776627pt;}
.wsa6{word-spacing:14.778206pt;}
.ws11{word-spacing:15.732893pt;}
.ws13{word-spacing:24.399002pt;}
.ws69{word-spacing:82.357493pt;}
._1c{margin-left:-22.156822pt;}
._29{margin-left:-20.974252pt;}
._2a{margin-left:-18.255851pt;}
._c{margin-left:-16.152736pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._18{margin-left:-6.110395pt;}
._8{margin-left:-5.215005pt;}
._4{margin-left:-3.936223pt;}
._3{margin-left:-2.940236pt;}
._6{margin-left:-1.983802pt;}
._5{margin-left:-0.962653pt;}
._7{width:0.969929pt;}
._2{width:2.666270pt;}
._22{width:3.556850pt;}
._1b{width:4.459150pt;}
._20{width:5.687145pt;}
._23{width:6.935360pt;}
._21{width:8.657280pt;}
._24{width:9.566720pt;}
._9{width:11.530016pt;}
._d{width:13.372821pt;}
._e{width:14.967910pt;}
._b{width:16.024015pt;}
._14{width:17.906113pt;}
._12{width:18.815632pt;}
._1e{width:20.303380pt;}
._f{width:21.366058pt;}
._1d{width:22.794429pt;}
._16{width:24.560333pt;}
._19{width:26.791955pt;}
._13{width:27.789012pt;}
._a{width:29.011008pt;}
._15{width:31.242714pt;}
._1a{width:32.145989pt;}
._17{width:33.846273pt;}
._25{width:35.493423pt;}
._28{width:38.062578pt;}
._2c{width:54.993920pt;}
._2b{width:78.904320pt;}
._26{width:95.640960pt;}
._10{width:602.272352pt;}
._27{width:1980.151776pt;}
._2d{width:2192.346604pt;}
._1f{width:2200.168640pt;}
._11{width:2213.599937pt;}
.fs7{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs11{font-size:38.304000pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs13{font-size:43.200000pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:48.096000pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:113.279338pt;}
.y113{bottom:-679.250667pt;}
.y15b{bottom:-623.965333pt;}
.y129{bottom:-596.850667pt;}
.y128{bottom:-579.730667pt;}
.y127{bottom:-562.610667pt;}
.y126{bottom:-545.570667pt;}
.y1cf{bottom:-542.191200pt;}
.y174{bottom:-538.445333pt;}
.y125{bottom:-528.450667pt;}
.y173{bottom:-518.525333pt;}
.y124{bottom:-511.384000pt;}
.y123{bottom:-494.264000pt;}
.y1ee{bottom:-488.839200pt;}
.y122{bottom:-477.144000pt;}
.y1ed{bottom:-473.431200pt;}
.y121{bottom:-460.104000pt;}
.y1ec{bottom:-458.095200pt;}
.y1eb{bottom:-442.687200pt;}
.y120{bottom:-427.384000pt;}
.y1ea{bottom:-427.279200pt;}
.y11f{bottom:-411.944000pt;}
.y1e9{bottom:-411.943200pt;}
.y1e8{bottom:-396.511200pt;}
.y11e{bottom:-392.024000pt;}
.y1e7{bottom:-381.175200pt;}
.ya3{bottom:-377.222667pt;}
.y1ae{bottom:-373.020000pt;}
.y1e6{bottom:-365.767200pt;}
.y1e5{bottom:-350.359200pt;}
.y1e4{bottom:-335.023200pt;}
.y1e3{bottom:-319.615200pt;}
.ycf{bottom:-317.622667pt;}
.y1e2{bottom:-304.207200pt;}
.yce{bottom:-300.502667pt;}
.y130{bottom:-295.169333pt;}
.y172{bottom:-292.338667pt;}
.y1e1{bottom:-288.871200pt;}
.ycd{bottom:-279.462667pt;}
.y171{bottom:-275.218667pt;}
.y1e0{bottom:-273.463200pt;}
.y170{bottom:-258.178667pt;}
.y1df{bottom:-258.127200pt;}
.ycc{bottom:-246.342667pt;}
.y1de{bottom:-242.719200pt;}
.y16f{bottom:-241.058667pt;}
.ycb{bottom:-229.222667pt;}
.y1dd{bottom:-227.311200pt;}
.y16e{bottom:-223.938667pt;}
.y146{bottom:-212.769333pt;}
.yca{bottom:-212.156000pt;}
.y1dc{bottom:-211.975200pt;}
.y16d{bottom:-206.898667pt;}
.y1db{bottom:-196.567200pt;}
.y145{bottom:-195.649333pt;}
.yc9{bottom:-195.036000pt;}
.y16c{bottom:-189.778667pt;}
.y1da{bottom:-181.231200pt;}
.y144{bottom:-178.529333pt;}
.yc8{bottom:-177.916000pt;}
.y16b{bottom:-172.738667pt;}
.y11d{bottom:-167.944000pt;}
.y1d9{bottom:-165.823200pt;}
.y143{bottom:-161.489333pt;}
.yc7{bottom:-160.876000pt;}
.y16a{bottom:-155.618667pt;}
.y11c{bottom:-150.904000pt;}
.y1d8{bottom:-150.415200pt;}
.y142{bottom:-144.369333pt;}
.yc6{bottom:-143.756000pt;}
.y169{bottom:-138.498667pt;}
.y1d7{bottom:-135.079200pt;}
.y11b{bottom:-133.757333pt;}
.y141{bottom:-127.302667pt;}
.yc5{bottom:-126.716000pt;}
.y168{bottom:-121.458667pt;}
.y1d6{bottom:-119.671200pt;}
.y1c4{bottom:-118.836000pt;}
.y11a{bottom:-116.717333pt;}
.y140{bottom:-110.182667pt;}
.yc4{bottom:-109.596000pt;}
.y167{bottom:-104.338667pt;}
.y1d5{bottom:-104.335200pt;}
.y187{bottom:-103.710800pt;}
.y1c3{bottom:-103.428000pt;}
.y119{bottom:-99.597333pt;}
.y13f{bottom:-93.062667pt;}
.yc3{bottom:-92.476000pt;}
.y1d4{bottom:-88.927200pt;}
.y1c2{bottom:-88.092000pt;}
.y166{bottom:-87.272000pt;}
.y118{bottom:-82.477333pt;}
.y13e{bottom:-76.022667pt;}
.yc2{bottom:-75.436000pt;}
.y1c1{bottom:-72.684000pt;}
.y165{bottom:-70.152000pt;}
.y1d3{bottom:-69.847200pt;}
.y1c0{bottom:-57.276000pt;}
.yc1{bottom:-54.316000pt;}
.y164{bottom:-53.032000pt;}
.y117{bottom:-49.757333pt;}
.y13d{bottom:-43.302667pt;}
.y1d2{bottom:-40.447200pt;}
.y116{bottom:-34.397333pt;}
.y1bf{bottom:-27.900000pt;}
.y13c{bottom:-27.862667pt;}
.y1d1{bottom:-26.623200pt;}
.yc0{bottom:-21.596000pt;}
.y163{bottom:-20.312000pt;}
.y115{bottom:-19.037333pt;}
.y1a0{bottom:-18.190800pt;}
.y1be{bottom:-14.004000pt;}
.y13b{bottom:-7.942667pt;}
.y162{bottom:-0.312000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:0.882667pt;}
.y1d0{bottom:1.600800pt;}
.y19f{bottom:1.729200pt;}
.ya{bottom:3.044747pt;}
.y1bd{bottom:3.996000pt;}
.ybf{bottom:6.404000pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.776377pt;}
.y4f{bottom:28.346667pt;}
.ye6{bottom:79.105333pt;}
.y1aa{bottom:83.209333pt;}
.y1f0{bottom:87.213333pt;}
.y23{bottom:91.398667pt;}
.y4e{bottom:92.108000pt;}
.y86{bottom:95.222667pt;}
.ye5{bottom:95.842667pt;}
.y1a9{bottom:99.946667pt;}
.y1ef{bottom:104.309333pt;}
.y224{bottom:107.194667pt;}
.y22{bottom:107.298667pt;}
.y4d{bottom:108.844000pt;}
.y257{bottom:110.820000pt;}
.y85{bottom:111.960000pt;}
.ye4{bottom:112.580000pt;}
.y1a8{bottom:116.684000pt;}
.y21{bottom:123.200000pt;}
.y223{bottom:123.930667pt;}
.y1cc{bottom:124.246667pt;}
.y4c{bottom:125.581333pt;}
.y256{bottom:126.162667pt;}
.ye3{bottom:129.317333pt;}
.y84{bottom:132.682667pt;}
.y1a7{bottom:133.421333pt;}
.ybe{bottom:135.364000pt;}
.y20{bottom:139.100000pt;}
.y221{bottom:140.668000pt;}
.y255{bottom:141.505333pt;}
.y4b{bottom:142.318667pt;}
.y157{bottom:143.821333pt;}
.y222{bottom:145.490667pt;}
.ye2{bottom:146.054667pt;}
.y1a6{bottom:150.158667pt;}
.ybd{bottom:152.404000pt;}
.y1f{bottom:155.000000pt;}
.y254{bottom:156.848000pt;}
.y220{bottom:157.405333pt;}
.y4a{bottom:159.056000pt;}
.y156{bottom:160.558667pt;}
.y83{bottom:162.570667pt;}
.ye1{bottom:162.792000pt;}
.y1a5{bottom:166.894667pt;}
.ybc{bottom:169.550667pt;}
.y1e{bottom:170.901333pt;}
.y253{bottom:172.190667pt;}
.y21f{bottom:174.142667pt;}
.y49{bottom:175.793333pt;}
.y155{bottom:177.296000pt;}
.y82{bottom:179.308000pt;}
.ye0{bottom:183.514667pt;}
.y1a4{bottom:183.632000pt;}
.ybb{bottom:186.590667pt;}
.y1d{bottom:186.801333pt;}
.y252{bottom:187.533333pt;}
.y21e{bottom:190.880000pt;}
.y48{bottom:192.530667pt;}
.y154{bottom:194.033333pt;}
.y81{bottom:196.045333pt;}
.y1a3{bottom:200.369333pt;}
.y1c{bottom:202.701333pt;}
.y251{bottom:202.876000pt;}
.yba{bottom:203.710667pt;}
.y21d{bottom:207.617333pt;}
.y47{bottom:209.268000pt;}
.y152{bottom:210.770667pt;}
.y7f{bottom:212.782667pt;}
.ydf{bottom:213.402667pt;}
.y153{bottom:215.592000pt;}
.y13a{bottom:216.137333pt;}
.y1a2{bottom:217.106667pt;}
.y80{bottom:217.604000pt;}
.y250{bottom:218.218667pt;}
.y10f{bottom:219.573333pt;}
.yb9{bottom:220.830667pt;}
.y46{bottom:226.005333pt;}
.y151{bottom:227.508000pt;}
.y19e{bottom:227.915867pt;}
.y21c{bottom:228.340000pt;}
.y7e{bottom:229.520000pt;}
.yde{bottom:230.140000pt;}
.y139{bottom:233.177333pt;}
.y24e{bottom:233.560000pt;}
.y24f{bottom:233.561333pt;}
.y10e{bottom:236.310667pt;}
.yb8{bottom:237.870667pt;}
.y45{bottom:242.742667pt;}
.y150{bottom:244.245333pt;}
.y19d{bottom:245.035867pt;}
.y7d{bottom:246.257333pt;}
.ydd{bottom:246.877333pt;}
.y1a1{bottom:246.944000pt;}
.y24d{bottom:248.902667pt;}
.y138{bottom:250.324000pt;}
.y161{bottom:251.448000pt;}
.y10d{bottom:253.048000pt;}
.yb7{bottom:254.990667pt;}
.y21b{bottom:258.228000pt;}
.y44{bottom:259.480000pt;}
.y14f{bottom:260.982667pt;}
.y19c{bottom:262.075867pt;}
.y7c{bottom:262.994667pt;}
.ydc{bottom:263.614667pt;}
.y24c{bottom:264.245333pt;}
.y184{bottom:266.880133pt;}
.y137{bottom:267.364000pt;}
.y160{bottom:268.568000pt;}
.y10c{bottom:269.785333pt;}
.yb6{bottom:272.030667pt;}
.y1b{bottom:273.154667pt;}
.y21a{bottom:274.965333pt;}
.y43{bottom:276.217333pt;}
.y14e{bottom:277.720000pt;}
.y19b{bottom:279.195867pt;}
.y24b{bottom:279.588000pt;}
.y7b{bottom:279.732000pt;}
.ydb{bottom:280.352000pt;}
.y136{bottom:284.484000pt;}
.y15f{bottom:285.714667pt;}
.y10b{bottom:286.522667pt;}
.y1a{bottom:289.054667pt;}
.yb5{bottom:289.150667pt;}
.y219{bottom:291.702667pt;}
.y1bc{bottom:291.876000pt;}
.y42{bottom:292.954667pt;}
.y14d{bottom:294.457333pt;}
.y24a{bottom:294.930667pt;}
.y19a{bottom:296.315867pt;}
.y7a{bottom:296.469333pt;}
.yda{bottom:297.088000pt;}
.y135{bottom:301.604000pt;}
.y15e{bottom:302.754667pt;}
.y10a{bottom:303.260000pt;}
.y19{bottom:304.954667pt;}
.yb4{bottom:306.270667pt;}
.y1bb{bottom:307.212000pt;}
.y218{bottom:308.440000pt;}
.y41{bottom:309.692000pt;}
.y249{bottom:310.273333pt;}
.y14c{bottom:311.194667pt;}
.y79{bottom:313.205333pt;}
.y199{bottom:313.355867pt;}
.yd9{bottom:313.825333pt;}
.y15d{bottom:319.874667pt;}
.y109{bottom:319.997333pt;}
.y18{bottom:320.856000pt;}
.y1ba{bottom:322.620000pt;}
.yb3{bottom:323.310667pt;}
.y217{bottom:325.177333pt;}
.y248{bottom:325.616000pt;}
.y40{bottom:326.429333pt;}
.y14b{bottom:327.932000pt;}
.y112{bottom:328.909333pt;}
.y78{bottom:329.942667pt;}
.y198{bottom:330.475867pt;}
.yd7{bottom:330.562667pt;}
.y134{bottom:334.324000pt;}
.yd8{bottom:335.385333pt;}
.y108{bottom:336.734667pt;}
.y15c{bottom:336.914667pt;}
.y111{bottom:337.549333pt;}
.y1b9{bottom:337.956000pt;}
.yb2{bottom:340.430667pt;}
.y247{bottom:340.958667pt;}
.y216{bottom:341.914667pt;}
.y3f{bottom:343.166667pt;}
.y14a{bottom:344.669333pt;}
.y77{bottom:346.680000pt;}
.yd5{bottom:347.300000pt;}
.y197{bottom:347.515867pt;}
.y133{bottom:349.684000pt;}
.yd6{bottom:352.122667pt;}
.y1b8{bottom:353.364000pt;}
.y107{bottom:353.470667pt;}
.y17{bottom:354.688000pt;}
.y246{bottom:356.301333pt;}
.yb1{bottom:357.550667pt;}
.y215{bottom:358.652000pt;}
.y3e{bottom:359.904000pt;}
.y149{bottom:361.406667pt;}
.y76{bottom:363.417333pt;}
.yd3{bottom:364.037333pt;}
.y196{bottom:364.635867pt;}
.y132{bottom:365.044000pt;}
.y1ce{bottom:365.152800pt;}
.y1b7{bottom:368.772000pt;}
.yd4{bottom:368.860000pt;}
.y16{bottom:370.589333pt;}
.y245{bottom:371.642667pt;}
.y1cd{bottom:372.928800pt;}
.y106{bottom:374.193333pt;}
.yb0{bottom:374.590667pt;}
.y214{bottom:375.389333pt;}
.y3d{bottom:376.641333pt;}
.y75{bottom:380.154667pt;}
.yd2{bottom:380.774667pt;}
.y195{bottom:381.755867pt;}
.y1b6{bottom:384.108000pt;}
.y15a{bottom:384.194667pt;}
.y131{bottom:384.964000pt;}
.y15{bottom:386.489333pt;}
.y244{bottom:386.985333pt;}
.y148{bottom:391.242667pt;}
.yaf{bottom:391.710667pt;}
.y213{bottom:392.126667pt;}
.y159{bottom:392.834667pt;}
.y3c{bottom:393.378667pt;}
.y74{bottom:396.892000pt;}
.y194{bottom:398.795867pt;}
.y1b5{bottom:399.516000pt;}
.yd1{bottom:401.497333pt;}
.y243{bottom:402.328000pt;}
.y105{bottom:404.081333pt;}
.y147{bottom:408.338667pt;}
.yae{bottom:408.750667pt;}
.y212{bottom:408.864000pt;}
.y3b{bottom:410.116000pt;}
.y1b4{bottom:414.852000pt;}
.y193{bottom:415.915867pt;}
.y73{bottom:417.614667pt;}
.y242{bottom:417.670667pt;}
.y14{bottom:418.330667pt;}
.y104{bottom:420.818667pt;}
.y211{bottom:425.601333pt;}
.yad{bottom:425.870667pt;}
.y3a{bottom:426.853333pt;}
.yd0{bottom:427.970667pt;}
.y12d{bottom:428.274667pt;}
.y1b3{bottom:430.260000pt;}
.y192{bottom:432.982533pt;}
.y241{bottom:433.013333pt;}
.y72{bottom:435.548000pt;}
.y103{bottom:437.556000pt;}
.y210{bottom:442.338667pt;}
.yac{bottom:442.990667pt;}
.y39{bottom:443.590667pt;}
.y1b2{bottom:445.692000pt;}
.ya0{bottom:447.908000pt;}
.y240{bottom:448.356000pt;}
.y191{bottom:450.102533pt;}
.y13{bottom:450.170667pt;}
.y101{bottom:454.293333pt;}
.y20f{bottom:459.076000pt;}
.y102{bottom:459.116000pt;}
.yab{bottom:460.030667pt;}
.y1b1{bottom:461.028000pt;}
.y23f{bottom:463.698667pt;}
.y38{bottom:464.312000pt;}
.y71{bottom:465.436000pt;}
.y12{bottom:466.070667pt;}
.y190{bottom:467.222533pt;}
.y100{bottom:475.016000pt;}
.y20e{bottom:475.813333pt;}
.y1b0{bottom:476.436000pt;}
.yaa{bottom:477.150667pt;}
.y23e{bottom:479.041333pt;}
.y1cb{bottom:481.502667pt;}
.y11{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y70{bottom:486.994667pt;}
.yff{bottom:491.753333pt;}
.y1af{bottom:491.772000pt;}
.y20d{bottom:492.549333pt;}
.ya9{bottom:494.190667pt;}
.y23c{bottom:494.382667pt;}
.y23d{bottom:494.384000pt;}
.y183{bottom:497.393333pt;}
.y10{bottom:497.872000pt;}
.y1ca{bottom:498.240000pt;}
.y6e{bottom:498.910667pt;}
.y18f{bottom:499.942533pt;}
.yfe{bottom:508.490667pt;}
.y20c{bottom:509.286667pt;}
.y23b{bottom:509.725333pt;}
.ya8{bottom:511.310667pt;}
.yf{bottom:513.772000pt;}
.y182{bottom:514.130667pt;}
.y1c9{bottom:514.977333pt;}
.y6d{bottom:515.648000pt;}
.y18e{bottom:519.942533pt;}
.y23a{bottom:525.068000pt;}
.yfd{bottom:525.228000pt;}
.y20b{bottom:526.024000pt;}
.ya7{bottom:528.430667pt;}
.ye{bottom:529.673333pt;}
.y181{bottom:530.868000pt;}
.y37{bottom:531.113333pt;}
.y1c8{bottom:531.714667pt;}
.y6c{bottom:532.384000pt;}
.y1ad{bottom:534.324000pt;}
.y239{bottom:540.410667pt;}
.yfc{bottom:541.965333pt;}
.y1ac{bottom:542.100000pt;}
.y20a{bottom:542.761333pt;}
.ya6{bottom:545.497333pt;}
.yd{bottom:545.573333pt;}
.y180{bottom:547.605333pt;}
.y1c7{bottom:548.452000pt;}
.y6b{bottom:549.121333pt;}
.y238{bottom:555.753333pt;}
.y209{bottom:559.498667pt;}
.yc{bottom:561.473333pt;}
.ya5{bottom:562.617333pt;}
.yfb{bottom:562.686667pt;}
.y17f{bottom:564.342667pt;}
.y36{bottom:564.348000pt;}
.y6a{bottom:565.858667pt;}
.y237{bottom:571.096000pt;}
.y208{bottom:576.236000pt;}
.yb{bottom:577.374667pt;}
.y1c6{bottom:578.288000pt;}
.yfa{bottom:579.424000pt;}
.y17e{bottom:581.080000pt;}
.y34{bottom:581.642667pt;}
.y69{bottom:582.596000pt;}
.ya4{bottom:583.657333pt;}
.y35{bottom:585.982667pt;}
.y236{bottom:586.438667pt;}
.y207{bottom:592.973333pt;}
.y1c5{bottom:595.384000pt;}
.yf9{bottom:596.161333pt;}
.y9f{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y17d{bottom:597.817333pt;}
.y33{bottom:598.938667pt;}
.y68{bottom:599.333333pt;}
.y235{bottom:601.781333pt;}
.y206{bottom:609.710667pt;}
.yf8{bottom:612.898667pt;}
.y9d{bottom:613.696000pt;}
.y17c{bottom:614.553333pt;}
.y1ab{bottom:615.321333pt;}
.y67{bottom:616.070667pt;}
.y32{bottom:616.233333pt;}
.y234{bottom:617.124000pt;}
.y9e{bottom:618.517333pt;}
.y205{bottom:626.448000pt;}
.yf7{bottom:629.636000pt;}
.y9c{bottom:630.433333pt;}
.ya2{bottom:630.937333pt;}
.y17b{bottom:631.290667pt;}
.y233{bottom:632.465333pt;}
.y66{bottom:632.808000pt;}
.y31{bottom:633.529333pt;}
.ya1{bottom:639.577333pt;}
.y12c{bottom:640.790667pt;}
.y204{bottom:643.185333pt;}
.yf6{bottom:646.373333pt;}
.y9b{bottom:647.170667pt;}
.y232{bottom:647.808000pt;}
.y17a{bottom:648.028000pt;}
.y65{bottom:649.545333pt;}
.y30{bottom:650.824000pt;}
.y12b{bottom:657.886667pt;}
.y203{bottom:659.922667pt;}
.yf5{bottom:663.110667pt;}
.y231{bottom:663.150667pt;}
.y9a{bottom:663.908000pt;}
.y179{bottom:664.765333pt;}
.y64{bottom:666.282667pt;}
.y2f{bottom:668.118667pt;}
.y12a{bottom:674.982667pt;}
.y202{bottom:676.660000pt;}
.y230{bottom:678.493333pt;}
.yf4{bottom:679.848000pt;}
.y99{bottom:680.645333pt;}
.y178{bottom:681.502667pt;}
.y63{bottom:683.020000pt;}
.y2e{bottom:685.414667pt;}
.y269{bottom:690.408000pt;}
.y201{bottom:693.397333pt;}
.y22f{bottom:693.836000pt;}
.y110{bottom:694.918667pt;}
.yf3{bottom:696.585333pt;}
.y98{bottom:697.382667pt;}
.y177{bottom:698.240000pt;}
.y62{bottom:699.757333pt;}
.y268{bottom:705.750667pt;}
.y22e{bottom:709.178667pt;}
.y200{bottom:710.134667pt;}
.y12f{bottom:712.990667pt;}
.y97{bottom:714.120000pt;}
.y176{bottom:714.977333pt;}
.y61{bottom:716.494667pt;}
.yf2{bottom:717.308000pt;}
.y2d{bottom:718.069333pt;}
.y267{bottom:721.093333pt;}
.y12e{bottom:721.630667pt;}
.y22d{bottom:724.521333pt;}
.y1ff{bottom:726.872000pt;}
.y96{bottom:730.857333pt;}
.y2c{bottom:732.416000pt;}
.y60{bottom:733.232000pt;}
.y266{bottom:736.436000pt;}
.y1fe{bottom:743.609333pt;}
.y22c{bottom:743.848000pt;}
.y175{bottom:744.813333pt;}
.y2b{bottom:746.762667pt;}
.yf1{bottom:747.196000pt;}
.y95{bottom:747.594667pt;}
.y5f{bottom:749.969333pt;}
.y265{bottom:751.778667pt;}
.y1fd{bottom:760.346667pt;}
.yf0{bottom:763.933333pt;}
.y94{bottom:764.332000pt;}
.y158{bottom:764.750667pt;}
.y2a{bottom:764.966667pt;}
.y5e{bottom:766.706667pt;}
.y264{bottom:767.121333pt;}
.y18d{bottom:771.702533pt;}
.y22b{bottom:773.736000pt;}
.y29{bottom:775.454667pt;}
.y1fc{bottom:777.084000pt;}
.yef{bottom:780.670667pt;}
.y93{bottom:781.069333pt;}
.y263{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.y18c{bottom:788.822533pt;}
.y28{bottom:789.801333pt;}
.y1fb{bottom:793.821333pt;}
.y22a{bottom:797.328000pt;}
.yee{bottom:797.408000pt;}
.y92{bottom:797.806667pt;}
.y5c{bottom:800.181333pt;}
.y18b{bottom:805.969200pt;}
.y27{bottom:808.005333pt;}
.y1fa{bottom:810.558667pt;}
.y262{bottom:813.149333pt;}
.yed{bottom:814.145333pt;}
.y91{bottom:814.544000pt;}
.y5b{bottom:816.918667pt;}
.y26{bottom:818.493333pt;}
.y229{bottom:820.920000pt;}
.y18a{bottom:823.009200pt;}
.y1f9{bottom:827.296000pt;}
.y261{bottom:828.490667pt;}
.yec{bottom:830.882667pt;}
.y90{bottom:831.281333pt;}
.y25{bottom:832.840000pt;}
.y5a{bottom:833.656000pt;}
.y228{bottom:836.541333pt;}
.y24{bottom:836.697333pt;}
.y189{bottom:840.129200pt;}
.y260{bottom:843.833333pt;}
.y1f8{bottom:844.033333pt;}
.yeb{bottom:847.620000pt;}
.y8f{bottom:848.018667pt;}
.y59{bottom:850.393333pt;}
.y227{bottom:852.162667pt;}
.y188{bottom:857.169200pt;}
.y25f{bottom:859.176000pt;}
.y1f7{bottom:860.770667pt;}
.yea{bottom:864.357333pt;}
.y8e{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.y226{bottom:867.784000pt;}
.y7{bottom:870.782667pt;}
.y25e{bottom:874.518667pt;}
.y1f6{bottom:877.508000pt;}
.ye9{bottom:881.094667pt;}
.y8d{bottom:881.492000pt;}
.y225{bottom:883.405333pt;}
.y57{bottom:883.868000pt;}
.y6{bottom:887.520000pt;}
.y25d{bottom:889.861333pt;}
.y1f5{bottom:894.245333pt;}
.y8c{bottom:898.229333pt;}
.y56{bottom:900.605333pt;}
.ye8{bottom:901.816000pt;}
.y186{bottom:904.449200pt;}
.y25c{bottom:905.204000pt;}
.y1f4{bottom:910.982667pt;}
.y185{bottom:913.089200pt;}
.y8b{bottom:914.966667pt;}
.y55{bottom:917.342667pt;}
.y25b{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y1f3{bottom:927.720000pt;}
.y8a{bottom:931.704000pt;}
.y54{bottom:934.080000pt;}
.y25a{bottom:935.889333pt;}
.y1f2{bottom:944.456000pt;}
.y89{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y259{bottom:951.230667pt;}
.ye7{bottom:953.264000pt;}
.y1f1{bottom:961.193333pt;}
.y88{bottom:965.178667pt;}
.y258{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y87{bottom:981.916000pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.304670pt;}
.h16{height:24.760382pt;}
.h10{height:25.811318pt;}
.ha{height:27.188522pt;}
.hb{height:27.262909pt;}
.h27{height:27.961172pt;}
.h15{height:28.023859pt;}
.h26{height:28.073391pt;}
.h9{height:29.433775pt;}
.h1f{height:29.519145pt;}
.h8{height:30.399505pt;}
.h1a{height:31.067969pt;}
.hd{height:31.072763pt;}
.h13{height:31.157778pt;}
.h19{height:31.192656pt;}
.h29{height:31.535156pt;}
.he{height:34.430976pt;}
.hf{height:34.957005pt;}
.h1d{height:35.039062pt;}
.h2b{height:35.052646pt;}
.h28{height:35.109141pt;}
.h14{height:36.873667pt;}
.h2c{height:37.346338pt;}
.h17{height:37.671911pt;}
.h11{height:38.256384pt;}
.h12{height:38.840857pt;}
.h4{height:38.947124pt;}
.h1b{height:39.010156pt;}
.h1c{height:39.166719pt;}
.h2{height:45.271688pt;}
.h20{height:47.314526pt;}
.h6{height:48.360277pt;}
.h1e{height:48.809811pt;}
.h5{height:68.861952pt;}
.h3{height:76.803391pt;}
.h18{height:128.609333pt;}
.h22{height:182.148000pt;}
.h24{height:209.498533pt;}
.h23{height:230.449333pt;}
.h25{height:278.634000pt;}
.h21{height:300.281333pt;}
.h2a{height:336.244800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:177.244958pt;}
.w8{width:254.308000pt;}
.w7{width:311.337333pt;}
.wa{width:454.611600pt;}
.w9{width:456.183600pt;}
.w6{width:457.406667pt;}
.w4{width:495.813333pt;}
.w5{width:512.690667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6c{left:-188.849333pt;}
.x72{left:-172.556000pt;}
.x43{left:-170.228000pt;}
.x80{left:-154.252800pt;}
.x77{left:-151.110000pt;}
.x6e{left:-14.982667pt;}
.x0{left:0.000000pt;}
.x73{left:1.310667pt;}
.x82{left:2.227200pt;}
.x44{left:3.638667pt;}
.x79{left:5.370000pt;}
.x6f{left:13.337333pt;}
.x4{left:26.021437pt;}
.x83{left:27.715200pt;}
.x75{left:29.630667pt;}
.x78{left:30.858000pt;}
.x45{left:31.958667pt;}
.x3{left:46.804000pt;}
.x1{left:48.000000pt;}
.x2{left:51.410327pt;}
.x88{left:76.686667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x5f{left:223.909333pt;}
.x6{left:240.952000pt;}
.xc{left:251.365333pt;}
.x5c{left:254.050667pt;}
.x33{left:260.468000pt;}
.x57{left:262.408000pt;}
.x5d{left:268.573333pt;}
.x9{left:273.542667pt;}
.x8{left:275.740000pt;}
.x7f{left:277.641333pt;}
.xa{left:279.166667pt;}
.xb{left:285.508000pt;}
.x2c{left:286.405333pt;}
.x76{left:291.337333pt;}
.x41{left:294.818667pt;}
.x2d{left:299.689333pt;}
.x42{left:300.868000pt;}
.x14{left:309.661333pt;}
.x1e{left:312.194667pt;}
.x55{left:313.141333pt;}
.x15{left:316.302667pt;}
.x48{left:318.586667pt;}
.x1f{left:325.477333pt;}
.x56{left:327.376000pt;}
.x1a{left:335.812000pt;}
.x49{left:340.416000pt;}
.x74{left:348.004000pt;}
.x1b{left:349.096000pt;}
.x3d{left:350.958667pt;}
.x3e{left:354.962667pt;}
.x4a{left:356.069333pt;}
.x4b{left:369.744000pt;}
.x3a{left:396.986667pt;}
.x4c{left:399.857333pt;}
.x32{left:405.898667pt;}
.x1c{left:411.217333pt;}
.x2a{left:413.100000pt;}
.x5e{left:416.376000pt;}
.x6a{left:419.134667pt;}
.x1d{left:424.500000pt;}
.x2b{left:426.382667pt;}
.x4f{left:448.074667pt;}
.x81{left:452.995200pt;}
.x50{left:454.124000pt;}
.x7a{left:455.418000pt;}
.x62{left:459.994667pt;}
.x63{left:470.920000pt;}
.x5a{left:479.102667pt;}
.x6d{left:487.710667pt;}
.x46{left:491.692000pt;}
.x5b{left:494.042667pt;}
.x58{left:498.737333pt;}
.x59{left:504.788000pt;}
.x69{left:506.914667pt;}
.x4d{left:515.166667pt;}
.x24{left:530.866667pt;}
.x3b{left:537.226667pt;}
.x25{left:544.149333pt;}
.x3c{left:550.510667pt;}
.x7b{left:557.118667pt;}
.x7c{left:560.137333pt;}
.x89{left:566.464000pt;}
.x7d{left:567.441333pt;}
.x4e{left:574.608000pt;}
.x8b{left:577.758667pt;}
.x2e{left:584.673333pt;}
.xe{left:590.234667pt;}
.x10{left:594.296000pt;}
.xf{left:596.876000pt;}
.x2f{left:597.957333pt;}
.x87{left:599.116000pt;}
.x11{left:600.937333pt;}
.x70{left:603.100000pt;}
.x16{left:604.841333pt;}
.x17{left:611.482667pt;}
.x26{left:612.948000pt;}
.x3f{left:622.213333pt;}
.x27{left:626.232000pt;}
.x28{left:632.788000pt;}
.x40{left:636.744000pt;}
.x8c{left:637.853333pt;}
.x51{left:641.154667pt;}
.x6b{left:643.594667pt;}
.x29{left:646.070667pt;}
.x22{left:650.341333pt;}
.x47{left:652.338667pt;}
.x60{left:653.310667pt;}
.x52{left:655.460000pt;}
.x61{left:659.361333pt;}
.x12{left:660.873333pt;}
.x8d{left:661.762667pt;}
.x23{left:663.625333pt;}
.x66{left:664.873333pt;}
.x13{left:667.514667pt;}
.x53{left:669.136000pt;}
.x71{left:673.301333pt;}
.xd{left:676.945333pt;}
.x8f{left:680.152000pt;}
.x64{left:681.330667pt;}
.x30{left:685.758667pt;}
.x8e{left:688.512000pt;}
.x34{left:693.766667pt;}
.x38{left:696.016000pt;}
.x54{left:697.901333pt;}
.x84{left:699.036000pt;}
.x31{left:699.934667pt;}
.x35{left:701.972000pt;}
.x7e{left:704.074667pt;}
.x67{left:707.066667pt;}
.x85{left:708.216000pt;}
.x65{left:715.276000pt;}
.x68{left:718.270667pt;}
.x8a{left:720.353333pt;}
.x20{left:726.842667pt;}
.x18{left:728.082667pt;}
.x36{left:730.336000pt;}
.x37{left:736.386667pt;}
.x21{left:740.126667pt;}
.x19{left:741.365333pt;}
.x39{left:742.517333pt;}
.x86{left:744.754667pt;}
}


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