
/* 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_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_e63f290de20d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_6a46f0ae73cc.woff")format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_98981a4f3750.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_546b63f7777c.woff")format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_dc95ed900b46.woff")format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_a9bbb438872f.woff")format("woff");}.ff7{font-family:ff7;line-height:1.142000;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_f5082eb08583.woff")format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_33b34adce33f.woff")format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_00faeb844081.woff")format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_00faeb844081.woff")format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_7e26dc7dbdef.woff")format("woff");}.ffc{font-family:ffc;line-height:1.328000;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_0e64c67e41ee.woff")format("woff");}.ffd{font-family:ffd;line-height:1.144000;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_de63dc602888.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_d4a7c0f81c5a.woff")format("woff");}.fff{font-family:fff;line-height:0.893000;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_c3a1ae771076.woff")format("woff");}.ff10{font-family:ff10;line-height:0.684000;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_3fc25b5e79c0.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_2fde7528e1b3.woff")format("woff");}.ff12{font-family:ff12;line-height:0.893000;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_84c4d8a641a5.woff")format("woff");}.ff13{font-family:ff13;line-height:0.851000;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_8cd037747eb4.woff")format("woff");}.ff14{font-family:ff14;line-height:0.851000;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_f43f6bae2362.woff")format("woff");}.ff15{font-family:ff15;line-height:0.588000;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_7964f8970adf.woff")format("woff");}.ff16{font-family:ff16;line-height:0.702000;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_c537649c074c.woff")format("woff");}.ff17{font-family:ff17;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_e32583a4bca3.woff")format("woff");}.ff18{font-family:ff18;line-height:0.647000;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_cea94a70880f.woff")format("woff");}.ff19{font-family:ff19;line-height:0.676000;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_76b25c6ac366.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.647000;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_4a8723b40e73.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.676000;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_e32583a4bca3.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.647000;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_cea94a70880f.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.676000;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_e32583a4bca3.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.647000;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_cea94a70880f.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.676000;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_e32583a4bca3.woff")format("woff");}.ff20{font-family:ff20;line-height:0.647000;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_cea94a70880f.woff")format("woff");}.ff21{font-family:ff21;line-height:0.676000;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_a648af12f39b.woff")format("woff");}.ff22{font-family:ff22;line-height:0.685000;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_4c065ca7df62.woff")format("woff");}.ff23{font-family:ff23;line-height:0.266000;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_4c6a5de8a657.woff")format("woff");}.ff24{font-family:ff24;line-height:0.684000;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_b8b0129a7ade.woff")format("woff");}.ff25{font-family:ff25;line-height:0.588000;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:ff26;src:url("fonts/font_0037_b9bd52a9adca.woff")format("woff");}.ff26{font-family:ff26;line-height:0.685000;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:ff27;src:url("fonts/font_0038_90d99b308f0a.woff")format("woff");}.ff27{font-family:ff27;line-height:0.266000;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:ff28;src:url("fonts/font_0039_5d1f526a32e3.woff")format("woff");}.ff28{font-family:ff28;line-height:1.607000;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:ff29;src:url("fonts/font_0040_4232930812c0.woff")format("woff");}.ff29{font-family:ff29;line-height:0.698000;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:ff2a;src:url("fonts/font_0041_558a39b6f43a.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.693000;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:ff2b;src:url("fonts/font_0042_42ea147f5b40.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.684000;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:ff2c;src:url("fonts/font_0043_558a39b6f43a.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.693000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400000px;}
.v3{vertical-align:-15.000000px;}
.v9{vertical-align:-12.774000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:8.307000px;}
.v4{vertical-align:15.000000px;}
.va{vertical-align:20.400000px;}
.v1{vertical-align:24.000000px;}
.v6{vertical-align:28.859400px;}
.v5{vertical-align:42.010500px;}
.v7{vertical-align:59.976000px;}
.ls7a{letter-spacing:-1.377000px;}
.lsb9{letter-spacing:-1.275000px;}
.ls6a{letter-spacing:-1.200000px;}
.ls69{letter-spacing:-0.960000px;}
.ls6c{letter-spacing:-0.900000px;}
.ls6b{letter-spacing:-0.720000px;}
.lsa9{letter-spacing:-0.714000px;}
.ls57{letter-spacing:-0.660000px;}
.ls68{letter-spacing:-0.600000px;}
.lsb7{letter-spacing:-0.561000px;}
.lsaa{letter-spacing:-0.510000px;}
.ls37{letter-spacing:-0.480000px;}
.lsba{letter-spacing:-0.459000px;}
.ls3a{letter-spacing:-0.420000px;}
.lsb8{letter-spacing:-0.408000px;}
.ls38{letter-spacing:-0.360000px;}
.ls94{letter-spacing:-0.357000px;}
.ls93{letter-spacing:-0.306000px;}
.ls12{letter-spacing:-0.300000px;}
.ls92{letter-spacing:-0.255000px;}
.ls15{letter-spacing:-0.240000px;}
.lsa8{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.180000px;}
.lsab{letter-spacing:-0.153000px;}
.ls39{letter-spacing:-0.120000px;}
.lsac{letter-spacing:-0.102000px;}
.ls13{letter-spacing:-0.060000px;}
.lsad{letter-spacing:-0.051000px;}
.ls6d{letter-spacing:-0.035692px;}
.ls10{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.000480px;}
.ls4e{letter-spacing:0.001635px;}
.ls6f{letter-spacing:0.025200px;}
.ls7d{letter-spacing:0.030000px;}
.ls70{letter-spacing:0.042000px;}
.ls96{letter-spacing:0.051000px;}
.ls1{letter-spacing:0.060000px;}
.ls83{letter-spacing:0.064800px;}
.lsa4{letter-spacing:0.076500px;}
.ls86{letter-spacing:0.084000px;}
.ls82{letter-spacing:0.090000px;}
.ls9a{letter-spacing:0.102000px;}
.ls33{letter-spacing:0.120000px;}
.lsa3{letter-spacing:0.127500px;}
.ls8b{letter-spacing:0.150000px;}
.lsaf{letter-spacing:0.153000px;}
.ls88{letter-spacing:0.156600px;}
.lse{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.180000px;}
.ls66{letter-spacing:0.192000px;}
.ls8f{letter-spacing:0.204000px;}
.ls71{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.255000px;}
.ls98{letter-spacing:0.264000px;}
.ls9b{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls9c{letter-spacing:0.306000px;}
.ls80{letter-spacing:0.330000px;}
.ls35{letter-spacing:0.351600px;}
.ls97{letter-spacing:0.357000px;}
.ls34{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.378000px;}
.ls85{letter-spacing:0.390000px;}
.ls99{letter-spacing:0.408000px;}
.ls2b{letter-spacing:0.420000px;}
.ls36{letter-spacing:0.450000px;}
.lsa2{letter-spacing:0.459000px;}
.ls43{letter-spacing:0.462000px;}
.ls2{letter-spacing:0.480000px;}
.lsae{letter-spacing:0.484500px;}
.ls46{letter-spacing:0.499800px;}
.ls59{letter-spacing:0.504000px;}
.ls7c{letter-spacing:0.510000px;}
.ls7{letter-spacing:0.540000px;}
.lsa7{letter-spacing:0.561000px;}
.ls89{letter-spacing:0.570000px;}
.ls9e{letter-spacing:0.586500px;}
.ls41{letter-spacing:0.588000px;}
.lsa{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.607200px;}
.ls8d{letter-spacing:0.612000px;}
.ls30{letter-spacing:0.630000px;}
.ls87{letter-spacing:0.638400px;}
.ls9{letter-spacing:0.660000px;}
.ls8e{letter-spacing:0.663000px;}
.lsb0{letter-spacing:0.688500px;}
.ls7f{letter-spacing:0.690000px;}
.lsa1{letter-spacing:0.714000px;}
.ls8{letter-spacing:0.720000px;}
.ls7e{letter-spacing:0.750000px;}
.ls8c{letter-spacing:0.765000px;}
.ls11{letter-spacing:0.780000px;}
.ls40{letter-spacing:0.798000px;}
.ls9d{letter-spacing:0.816000px;}
.lsb{letter-spacing:0.840000px;}
.ls9f{letter-spacing:0.867000px;}
.ls1a{letter-spacing:0.870000px;}
.ls3f{letter-spacing:0.872400px;}
.ls5{letter-spacing:0.900000px;}
.ls84{letter-spacing:0.912000px;}
.ls58{letter-spacing:0.924000px;}
.lsc{letter-spacing:0.960000px;}
.ls90{letter-spacing:0.969000px;}
.ls7b{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.020000px;}
.ls91{letter-spacing:1.045500px;}
.ls24{letter-spacing:1.050000px;}
.ls3e{letter-spacing:1.071000px;}
.ls3d{letter-spacing:1.071600px;}
.ls25{letter-spacing:1.080000px;}
.ls4a{letter-spacing:1.080270px;}
.ls55{letter-spacing:1.098000px;}
.ls81{letter-spacing:1.110000px;}
.ls45{letter-spacing:1.116000px;}
.lsb1{letter-spacing:1.122000px;}
.ls2a{letter-spacing:1.140000px;}
.lsa0{letter-spacing:1.173000px;}
.ls17{letter-spacing:1.200000px;}
.lsa6{letter-spacing:1.224000px;}
.ls1d{letter-spacing:1.230000px;}
.ls27{letter-spacing:1.260000px;}
.ls95{letter-spacing:1.275000px;}
.ls26{letter-spacing:1.320000px;}
.ls42{letter-spacing:1.350000px;}
.lsa5{letter-spacing:1.377000px;}
.ls23{letter-spacing:1.380000px;}
.ls53{letter-spacing:1.395600px;}
.ls6{letter-spacing:1.410000px;}
.ls2d{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.470000px;}
.lsb4{letter-spacing:1.479000px;}
.ls52{letter-spacing:1.482000px;}
.ls18{letter-spacing:1.500000px;}
.ls3c{letter-spacing:1.530000px;}
.ls16{letter-spacing:1.560000px;}
.lsb2{letter-spacing:1.581000px;}
.ls8a{letter-spacing:1.590000px;}
.ls54{letter-spacing:1.591800px;}
.ls22{letter-spacing:1.620000px;}
.lsb6{letter-spacing:1.632000px;}
.ls1e{letter-spacing:1.680000px;}
.ls20{letter-spacing:1.740000px;}
.ls19{letter-spacing:1.800000px;}
.lsb3{letter-spacing:1.836000px;}
.ls1c{letter-spacing:1.860000px;}
.ls6e{letter-spacing:1.890000px;}
.ls2f{letter-spacing:1.920000px;}
.ls64{letter-spacing:1.950000px;}
.ls28{letter-spacing:1.980000px;}
.ls32{letter-spacing:2.040000px;}
.ls2c{letter-spacing:2.100000px;}
.ls5e{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.190000px;}
.ls2e{letter-spacing:2.220000px;}
.ls47{letter-spacing:2.238000px;}
.ls29{letter-spacing:2.280000px;}
.ls48{letter-spacing:2.340000px;}
.lsb5{letter-spacing:2.346000px;}
.ls3b{letter-spacing:2.400000px;}
.ls5c{letter-spacing:2.460000px;}
.ls63{letter-spacing:2.640000px;}
.ls21{letter-spacing:2.700000px;}
.ls60{letter-spacing:2.820000px;}
.ls65{letter-spacing:3.000000px;}
.ls50{letter-spacing:3.060765px;}
.ls5d{letter-spacing:3.120000px;}
.ls61{letter-spacing:3.360000px;}
.ls62{letter-spacing:3.396000px;}
.ls5b{letter-spacing:3.900975px;}
.ls4c{letter-spacing:13.323330px;}
.ls5a{letter-spacing:13.383345px;}
.ls49{letter-spacing:14.403600px;}
.ls4d{letter-spacing:16.384095px;}
.ls4b{letter-spacing:16.684170px;}
.ls67{letter-spacing:18.004500px;}
.ls5f{letter-spacing:20.585145px;}
.ls51{letter-spacing:47.051760px;}
.ls56{letter-spacing:47.111775px;}
.ls73{letter-spacing:72.132600px;}
.ls78{letter-spacing:103.801800px;}
.ls72{letter-spacing:117.471600px;}
.ls75{letter-spacing:142.051800px;}
.ls74{letter-spacing:191.215200px;}
.ls77{letter-spacing:270.306000px;}
.ls76{letter-spacing:274.657200px;}
.ls79{letter-spacing:312.907200px;}
.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;}
}
.ws92{word-spacing:-17.700000px;}
.ws7a{word-spacing:-17.280000px;}
.ws95{word-spacing:-17.040000px;}
.ws2b{word-spacing:-16.980000px;}
.ws2e{word-spacing:-16.680000px;}
.ws2c{word-spacing:-16.620000px;}
.ws2d{word-spacing:-16.560000px;}
.ws6b{word-spacing:-16.380000px;}
.wsba{word-spacing:-16.200000px;}
.ws73{word-spacing:-16.140000px;}
.ws7f{word-spacing:-15.960000px;}
.ws28{word-spacing:-15.870000px;}
.ws2a{word-spacing:-15.840000px;}
.wsbc{word-spacing:-15.720000px;}
.ws58{word-spacing:-15.660000px;}
.wsbe{word-spacing:-15.540000px;}
.wsb6{word-spacing:-15.480000px;}
.wsc1{word-spacing:-15.360000px;}
.ws7{word-spacing:-15.300000px;}
.ws59{word-spacing:-15.240000px;}
.ws71{word-spacing:-15.000000px;}
.ws91{word-spacing:-14.880000px;}
.wsdc{word-spacing:-14.832000px;}
.wsbd{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.544000px;}
.wsc0{word-spacing:-14.340000px;}
.ws10b{word-spacing:-13.719000px;}
.ws78{word-spacing:-13.443360px;}
.ws76{word-spacing:-13.383345px;}
.ws116{word-spacing:-13.260000px;}
.wsdb{word-spacing:-13.107000px;}
.ws9{word-spacing:-13.005000px;}
.wsa6{word-spacing:-12.750000px;}
.wse9{word-spacing:-12.495000px;}
.wsa1{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws6a{word-spacing:-11.571000px;}
.ws5{word-spacing:-11.520000px;}
.ws11c{word-spacing:-11.475000px;}
.ws6f{word-spacing:-11.424000px;}
.ws29{word-spacing:-11.130000px;}
.ws6d{word-spacing:-11.088000px;}
.ws72{word-spacing:-11.004000px;}
.ws6e{word-spacing:-10.962000px;}
.ws70{word-spacing:-10.878000px;}
.wsce{word-spacing:-10.761000px;}
.wsbf{word-spacing:-10.584000px;}
.wsa5{word-spacing:-10.542000px;}
.ws6c{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.wscd{word-spacing:-9.537000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws5b{word-spacing:-7.500000px;}
.ws7b{word-spacing:-3.960990px;}
.ws3e{word-spacing:-2.700000px;}
.ws9b{word-spacing:-2.460000px;}
.wse{word-spacing:-2.400000px;}
.ws8f{word-spacing:-2.340000px;}
.ws9d{word-spacing:-2.160000px;}
.ws8d{word-spacing:-1.980000px;}
.ws7e{word-spacing:-1.920000px;}
.wsb{word-spacing:-1.890000px;}
.ws53{word-spacing:-1.860000px;}
.ws35{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.740000px;}
.ws52{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.ws56{word-spacing:-1.440000px;}
.ws1e{word-spacing:-1.380000px;}
.ws88{word-spacing:-1.320000px;}
.wsd1{word-spacing:-1.275000px;}
.ws3b{word-spacing:-1.260000px;}
.wsec{word-spacing:-1.224000px;}
.ws38{word-spacing:-1.200000px;}
.ws113{word-spacing:-1.173000px;}
.ws51{word-spacing:-1.140000px;}
.ws125{word-spacing:-1.122000px;}
.ws42{word-spacing:-1.080000px;}
.wsd4{word-spacing:-1.071000px;}
.wsa0{word-spacing:-1.020000px;}
.wsd3{word-spacing:-0.969000px;}
.ws24{word-spacing:-0.960000px;}
.wsf8{word-spacing:-0.918000px;}
.ws82{word-spacing:-0.900000px;}
.wsd5{word-spacing:-0.867000px;}
.ws5f{word-spacing:-0.840000px;}
.ws84{word-spacing:-0.798000px;}
.ws67{word-spacing:-0.780000px;}
.wse2{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.714000px;}
.ws1a{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.ws18{word-spacing:-0.600000px;}
.ws85{word-spacing:-0.588000px;}
.wsc{word-spacing:-0.576000px;}
.wsfc{word-spacing:-0.561000px;}
.ws1b{word-spacing:-0.540000px;}
.wsde{word-spacing:-0.510000px;}
.ws89{word-spacing:-0.504000px;}
.ws12{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.459000px;}
.ws21{word-spacing:-0.420000px;}
.wsf3{word-spacing:-0.408000px;}
.ws5a{word-spacing:-0.360000px;}
.wsd8{word-spacing:-0.306000px;}
.ws19{word-spacing:-0.300000px;}
.wsdd{word-spacing:-0.264000px;}
.wse5{word-spacing:-0.255000px;}
.ws55{word-spacing:-0.240000px;}
.ws65{word-spacing:-0.180000px;}
.wsea{word-spacing:-0.153000px;}
.ws98{word-spacing:-0.120000px;}
.wse4{word-spacing:-0.102000px;}
.ws75{word-spacing:-0.060015px;}
.ws66{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws74{word-spacing:-0.042010px;}
.ws96{word-spacing:-0.035692px;}
.wsd{word-spacing:0.000000px;}
.wsf9{word-spacing:0.051000px;}
.ws14{word-spacing:0.060000px;}
.wsd7{word-spacing:0.102000px;}
.ws54{word-spacing:0.120000px;}
.ws115{word-spacing:0.153000px;}
.ws80{word-spacing:0.180000px;}
.wseb{word-spacing:0.204000px;}
.wsbb{word-spacing:0.240000px;}
.wsfe{word-spacing:0.255000px;}
.ws2f{word-spacing:0.300000px;}
.ws117{word-spacing:0.306000px;}
.ws106{word-spacing:0.357000px;}
.ws40{word-spacing:0.360000px;}
.ws31{word-spacing:0.420000px;}
.ws11d{word-spacing:0.459000px;}
.ws86{word-spacing:0.480000px;}
.ws108{word-spacing:0.510000px;}
.wsd0{word-spacing:0.540000px;}
.ws10e{word-spacing:0.561000px;}
.wsc9{word-spacing:0.600000px;}
.ws101{word-spacing:0.612000px;}
.ws43{word-spacing:0.660000px;}
.ws110{word-spacing:0.663000px;}
.ws33{word-spacing:0.720000px;}
.wsf4{word-spacing:0.765000px;}
.ws5c{word-spacing:0.780000px;}
.wsfd{word-spacing:0.816000px;}
.ws87{word-spacing:0.840000px;}
.ws103{word-spacing:0.867000px;}
.ws36{word-spacing:0.900000px;}
.ws122{word-spacing:0.918000px;}
.ws61{word-spacing:0.960000px;}
.ws118{word-spacing:0.969000px;}
.ws20{word-spacing:1.020000px;}
.ws1c{word-spacing:1.080000px;}
.wsdf{word-spacing:1.122000px;}
.ws4b{word-spacing:1.140000px;}
.wse1{word-spacing:1.173000px;}
.ws32{word-spacing:1.200000px;}
.wsa3{word-spacing:1.224000px;}
.ws13{word-spacing:1.260000px;}
.wsb5{word-spacing:1.275000px;}
.ws39{word-spacing:1.320000px;}
.wse8{word-spacing:1.326000px;}
.ws10f{word-spacing:1.377000px;}
.ws68{word-spacing:1.380000px;}
.wse0{word-spacing:1.428000px;}
.wsf{word-spacing:1.440000px;}
.wsd6{word-spacing:1.479000px;}
.ws11{word-spacing:1.500000px;}
.ws102{word-spacing:1.530000px;}
.ws57{word-spacing:1.560000px;}
.wsb4{word-spacing:1.620000px;}
.wsef{word-spacing:1.632000px;}
.wsb3{word-spacing:1.680000px;}
.wsff{word-spacing:1.683000px;}
.ws50{word-spacing:1.740000px;}
.ws11f{word-spacing:1.785000px;}
.ws22{word-spacing:1.800000px;}
.wsd2{word-spacing:1.836000px;}
.wsc7{word-spacing:1.860000px;}
.wsfb{word-spacing:1.887000px;}
.ws60{word-spacing:1.920000px;}
.wse7{word-spacing:1.938000px;}
.ws3c{word-spacing:1.980000px;}
.ws100{word-spacing:1.989000px;}
.ws5e{word-spacing:2.040000px;}
.wsf1{word-spacing:2.091000px;}
.ws34{word-spacing:2.100000px;}
.ws121{word-spacing:2.142000px;}
.ws1d{word-spacing:2.160000px;}
.ws1f{word-spacing:2.220000px;}
.wse6{word-spacing:2.244000px;}
.ws16{word-spacing:2.280000px;}
.wsf2{word-spacing:2.295000px;}
.ws46{word-spacing:2.340000px;}
.ws10a{word-spacing:2.346000px;}
.ws109{word-spacing:2.397000px;}
.ws48{word-spacing:2.400000px;}
.wsed{word-spacing:2.448000px;}
.ws5d{word-spacing:2.460000px;}
.ws7c{word-spacing:2.520000px;}
.ws114{word-spacing:2.550000px;}
.ws4f{word-spacing:2.580000px;}
.ws23{word-spacing:2.640000px;}
.ws37{word-spacing:2.700000px;}
.ws10d{word-spacing:2.703000px;}
.ws112{word-spacing:2.754000px;}
.wsc3{word-spacing:2.760000px;}
.wsf0{word-spacing:2.805000px;}
.ws25{word-spacing:2.820000px;}
.ws11a{word-spacing:2.856000px;}
.ws8e{word-spacing:2.880000px;}
.ws124{word-spacing:2.907000px;}
.ws41{word-spacing:2.940000px;}
.ws120{word-spacing:2.958000px;}
.ws44{word-spacing:3.000000px;}
.wsc4{word-spacing:3.060000px;}
.ws47{word-spacing:3.120000px;}
.ws63{word-spacing:3.240000px;}
.ws104{word-spacing:3.264000px;}
.ws81{word-spacing:3.300000px;}
.wsda{word-spacing:3.315000px;}
.wsca{word-spacing:3.360000px;}
.ws83{word-spacing:3.420000px;}
.wsc2{word-spacing:3.480000px;}
.wsfa{word-spacing:3.519000px;}
.ws4c{word-spacing:3.540000px;}
.ws4d{word-spacing:3.600000px;}
.ws107{word-spacing:3.621000px;}
.ws99{word-spacing:3.660000px;}
.ws11b{word-spacing:3.672000px;}
.wsb1{word-spacing:3.720000px;}
.ws111{word-spacing:3.723000px;}
.ws8a{word-spacing:3.780000px;}
.ws90{word-spacing:3.840000px;}
.ws4e{word-spacing:3.900000px;}
.ws62{word-spacing:3.960000px;}
.ws123{word-spacing:3.978000px;}
.ws9a{word-spacing:4.020000px;}
.wsf7{word-spacing:4.029000px;}
.wsee{word-spacing:4.080000px;}
.ws3a{word-spacing:4.140000px;}
.ws119{word-spacing:4.182000px;}
.wsb9{word-spacing:4.200000px;}
.wsd9{word-spacing:4.284000px;}
.wsf6{word-spacing:4.335000px;}
.wsc6{word-spacing:4.380000px;}
.ws105{word-spacing:4.386000px;}
.wsc5{word-spacing:4.440000px;}
.ws9f{word-spacing:4.500000px;}
.ws49{word-spacing:4.560000px;}
.ws45{word-spacing:4.620000px;}
.ws69{word-spacing:4.680000px;}
.ws17{word-spacing:4.740000px;}
.wscf{word-spacing:4.800000px;}
.ws4a{word-spacing:4.920000px;}
.wsf5{word-spacing:4.947000px;}
.ws64{word-spacing:5.040000px;}
.ws8b{word-spacing:5.160000px;}
.wsb7{word-spacing:5.280000px;}
.ws8c{word-spacing:5.400000px;}
.ws11e{word-spacing:5.508000px;}
.ws7d{word-spacing:5.580000px;}
.wscc{word-spacing:5.700000px;}
.ws9e{word-spacing:5.880000px;}
.ws97{word-spacing:6.060000px;}
.ws10c{word-spacing:6.222000px;}
.wscb{word-spacing:6.240000px;}
.wsb2{word-spacing:6.300000px;}
.wsa2{word-spacing:6.732000px;}
.ws3f{word-spacing:6.780000px;}
.wsb0{word-spacing:7.200000px;}
.ws9c{word-spacing:7.500000px;}
.wsc8{word-spacing:7.800000px;}
.wsb8{word-spacing:10.920000px;}
.ws94{word-spacing:16.564140px;}
.ws93{word-spacing:16.624155px;}
.ws79{word-spacing:17.010154px;}
.ws77{word-spacing:17.061754px;}
.wsad{word-spacing:48.570000px;}
.wsaa{word-spacing:64.566000px;}
.ws26{word-spacing:72.267000px;}
.wsab{word-spacing:81.159600px;}
.wsa7{word-spacing:98.583000px;}
.wsa9{word-spacing:121.686000px;}
.wsaf{word-spacing:177.276000px;}
.wsae{word-spacing:197.574000px;}
.wsa8{word-spacing:212.619000px;}
.wsac{word-spacing:298.758000px;}
._10{margin-left:-2965.620000px;}
._18{margin-left:-22.200000px;}
._16{margin-left:-19.452000px;}
._5{margin-left:-16.575000px;}
._a{margin-left:-15.025200px;}
._15{margin-left:-13.119600px;}
._17{margin-left:-11.970000px;}
._f{margin-left:-8.940000px;}
._1a{margin-left:-7.800000px;}
._9{margin-left:-6.754800px;}
._3{margin-left:-4.670400px;}
._b{margin-left:-3.660000px;}
._4{margin-left:-2.640000px;}
._0{margin-left:-1.632000px;}
._1{width:1.804800px;}
._8{width:2.940000px;}
._13{width:4.146000px;}
._11{width:5.280000px;}
._c{width:6.450000px;}
._d{width:9.726000px;}
._3d{width:11.271000px;}
._1c{width:13.320600px;}
._14{width:15.000000px;}
._12{width:17.153400px;}
._6{width:18.360000px;}
._19{width:35.829600px;}
._2{width:40.871400px;}
._1b{width:43.477800px;}
._7{width:54.621000px;}
._24{width:57.477000px;}
._3a{width:69.264600px;}
._39{width:118.637400px;}
._3c{width:121.035600px;}
._21{width:182.682000px;}
._2a{width:190.026000px;}
._25{width:192.882000px;}
._3b{width:201.865200px;}
._35{width:210.324000px;}
._27{width:221.422200px;}
._26{width:242.097000px;}
._31{width:259.060200px;}
._2b{width:262.701000px;}
._20{width:275.793000px;}
._1e{width:278.970000px;}
._1d{width:287.742000px;}
._2c{width:291.465000px;}
._34{width:297.738000px;}
._29{width:300.951000px;}
._28{width:305.286000px;}
._38{width:311.935800px;}
._30{width:328.440000px;}
._22{width:333.030000px;}
._1f{width:337.314000px;}
._33{width:338.589000px;}
._23{width:355.317000px;}
._32{width:368.424000px;}
._37{width:398.494200px;}
._2d{width:399.712200px;}
._36{width:406.674000px;}
._2f{width:452.523000px;}
._2e{width:482.358000px;}
._e{width:2088.360000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:25.494600px;}
.fsb{font-size:30.007200px;}
.fsc{font-size:35.692200px;}
.fs7{font-size:35.700000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:60.015000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y133{bottom:0.045150px;}
.y149{bottom:0.090750px;}
.ydd{bottom:0.118800px;}
.ye4{bottom:0.120300px;}
.y13d{bottom:0.345000px;}
.y12e{bottom:2.204850px;}
.y126{bottom:2.205000px;}
.y121{bottom:2.205150px;}
.y11b{bottom:2.205300px;}
.y103{bottom:2.820300px;}
.y139{bottom:10.548000px;}
.yda{bottom:10.618800px;}
.ye1{bottom:10.620300px;}
.y13f{bottom:10.848000px;}
.y148{bottom:15.447600px;}
.y137{bottom:19.245150px;}
.y132{bottom:19.245300px;}
.ydc{bottom:19.325850px;}
.ye3{bottom:19.327350px;}
.y13c{bottom:19.545150px;}
.y12a{bottom:20.276850px;}
.y125{bottom:20.277000px;}
.y11a{bottom:20.277150px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829000px;}
.y1d8{bottom:112.672800px;}
.y32{bottom:112.938300px;}
.yca{bottom:114.735150px;}
.y9a{bottom:114.735300px;}
.y1f6{bottom:114.877800px;}
.y205{bottom:114.926700px;}
.y23b{bottom:116.531850px;}
.y27d{bottom:116.799600px;}
.yd7{bottom:120.960450px;}
.y192{bottom:122.906250px;}
.y2c{bottom:122.973450px;}
.y12f{bottom:126.375000px;}
.ydf{bottom:127.335300px;}
.y100{bottom:129.660300px;}
.y204{bottom:129.920700px;}
.y1d7{bottom:131.422800px;}
.y23a{bottom:131.525850px;}
.y2ba{bottom:131.608800px;}
.y27c{bottom:131.793600px;}
.y2fb{bottom:131.991300px;}
.y68{bottom:132.165300px;}
.y31{bottom:133.032300px;}
.yc9{bottom:133.485150px;}
.y99{bottom:133.485300px;}
.y1f5{bottom:133.627800px;}
.yd6{bottom:139.710450px;}
.y12d{bottom:139.869000px;}
.ye0{bottom:141.585000px;}
.y191{bottom:141.591750px;}
.y2b{bottom:141.723450px;}
.y239{bottom:146.519850px;}
.y2b9{bottom:146.602800px;}
.y27b{bottom:146.787600px;}
.y2fa{bottom:146.985300px;}
.yff{bottom:148.410300px;}
.ye2{bottom:148.465950px;}
.y12c{bottom:149.265000px;}
.y1d6{bottom:150.172800px;}
.y30{bottom:150.485550px;}
.y67{bottom:150.915300px;}
.yc8{bottom:152.235150px;}
.y98{bottom:152.235300px;}
.y1f4{bottom:152.377800px;}
.yd5{bottom:158.460450px;}
.y190{bottom:160.385250px;}
.y2a{bottom:160.473450px;}
.y238{bottom:161.513850px;}
.y2b8{bottom:161.596800px;}
.y27a{bottom:161.781600px;}
.y2f9{bottom:161.979300px;}
.y129{bottom:162.969000px;}
.y203{bottom:163.631700px;}
.yfe{bottom:167.160300px;}
.y1d5{bottom:168.922800px;}
.y66{bottom:169.665300px;}
.y2f{bottom:170.579550px;}
.yc7{bottom:170.985150px;}
.y97{bottom:170.985300px;}
.y1f3{bottom:171.127800px;}
.y12b{bottom:172.365000px;}
.y128{bottom:172.365150px;}
.y237{bottom:176.507850px;}
.y2b7{bottom:176.590800px;}
.y279{bottom:176.775600px;}
.y2f8{bottom:176.973300px;}
.y202{bottom:178.625700px;}
.y18f{bottom:179.025750px;}
.y29{bottom:179.223450px;}
.yfd{bottom:185.910300px;}
.y124{bottom:186.069000px;}
.y1d4{bottom:187.672800px;}
.y65{bottom:188.415300px;}
.yc6{bottom:189.735150px;}
.y96{bottom:189.735300px;}
.y1f2{bottom:189.877800px;}
.y236{bottom:191.501850px;}
.y2b6{bottom:191.584800px;}
.y278{bottom:191.769600px;}
.y2f7{bottom:191.967300px;}
.y201{bottom:193.619700px;}
.y123{bottom:195.459150px;}
.y127{bottom:195.465150px;}
.y2e{bottom:195.580050px;}
.yd4{bottom:195.960450px;}
.y18e{bottom:197.819250px;}
.y28{bottom:197.973450px;}
.yfc{bottom:204.660300px;}
.y1d3{bottom:206.422800px;}
.y235{bottom:206.495850px;}
.y2b5{bottom:206.578800px;}
.y277{bottom:206.763600px;}
.y2f6{bottom:206.961300px;}
.y64{bottom:207.165300px;}
.yc5{bottom:208.485150px;}
.y95{bottom:208.485300px;}
.y200{bottom:208.613700px;}
.y1f1{bottom:208.627800px;}
.y2d{bottom:210.574050px;}
.yd3{bottom:214.710450px;}
.y18d{bottom:216.536250px;}
.y27{bottom:216.723450px;}
.y234{bottom:221.489850px;}
.y2b4{bottom:221.572800px;}
.y276{bottom:221.757600px;}
.y2f5{bottom:221.955300px;}
.yfb{bottom:223.410300px;}
.y1ff{bottom:223.607700px;}
.y1d2{bottom:225.172800px;}
.y63{bottom:225.915300px;}
.yc4{bottom:227.235150px;}
.y94{bottom:227.235300px;}
.y1f0{bottom:227.377800px;}
.yd2{bottom:233.460450px;}
.y18c{bottom:235.253250px;}
.y26{bottom:235.473450px;}
.y233{bottom:236.483850px;}
.y2b3{bottom:236.566800px;}
.y275{bottom:236.751600px;}
.y2f4{bottom:236.949300px;}
.y1fe{bottom:238.601700px;}
.y1bb{bottom:242.069700px;}
.yfa{bottom:242.160300px;}
.y13b{bottom:242.544000px;}
.y1d1{bottom:243.922800px;}
.y62{bottom:244.665300px;}
.yc3{bottom:245.985150px;}
.y93{bottom:245.985300px;}
.y1ef{bottom:246.127800px;}
.y232{bottom:251.477850px;}
.y2b2{bottom:251.560800px;}
.y13a{bottom:251.694150px;}
.y274{bottom:251.745600px;}
.y2f3{bottom:251.943300px;}
.yd1{bottom:252.210300px;}
.y13e{bottom:253.392000px;}
.y1fd{bottom:253.595700px;}
.y18b{bottom:253.970250px;}
.y24{bottom:254.223450px;}
.y1ba{bottom:257.063700px;}
.yf9{bottom:260.910300px;}
.y1d0{bottom:262.672800px;}
.y61{bottom:263.415300px;}
.yc2{bottom:264.735150px;}
.y92{bottom:264.735300px;}
.y1ee{bottom:264.877800px;}
.y231{bottom:266.471850px;}
.y2b1{bottom:266.554800px;}
.y273{bottom:266.739600px;}
.y2f2{bottom:266.937300px;}
.y1fc{bottom:268.589700px;}
.y1b9{bottom:272.057700px;}
.y18a{bottom:272.682750px;}
.y23{bottom:272.973450px;}
.yf8{bottom:279.660300px;}
.y1cf{bottom:281.422800px;}
.y120{bottom:281.448000px;}
.y230{bottom:281.465850px;}
.y2b0{bottom:281.548800px;}
.y272{bottom:281.733600px;}
.y2f1{bottom:281.931300px;}
.y60{bottom:282.165300px;}
.yc1{bottom:283.485150px;}
.y91{bottom:283.485300px;}
.y1fb{bottom:283.583700px;}
.y1ed{bottom:283.627800px;}
.y1b8{bottom:287.051700px;}
.y11f{bottom:290.838300px;}
.y122{bottom:290.844150px;}
.y189{bottom:291.395250px;}
.y22{bottom:291.723450px;}
.y22f{bottom:296.459850px;}
.y2af{bottom:296.542800px;}
.y271{bottom:296.727600px;}
.y2f0{bottom:296.925300px;}
.yf7{bottom:298.410300px;}
.yd9{bottom:299.086500px;}
.y1ce{bottom:300.172800px;}
.y5f{bottom:300.915300px;}
.y1b7{bottom:302.045700px;}
.yc0{bottom:302.235150px;}
.y90{bottom:302.235300px;}
.y1ec{bottom:302.377800px;}
.ydb{bottom:305.965950px;}
.yd8{bottom:308.160450px;}
.y11e{bottom:309.798300px;}
.y188{bottom:310.107750px;}
.y21{bottom:310.473450px;}
.y22e{bottom:311.453850px;}
.y2ae{bottom:311.536800px;}
.y270{bottom:311.721600px;}
.y2ef{bottom:311.919300px;}
.y1b6{bottom:317.039700px;}
.yf6{bottom:317.160300px;}
.y1fa{bottom:317.294700px;}
.y1cd{bottom:318.922800px;}
.y5e{bottom:319.665300px;}
.ybf{bottom:320.985150px;}
.y8f{bottom:320.985300px;}
.y1eb{bottom:321.127800px;}
.y22d{bottom:326.447850px;}
.y2ad{bottom:326.530800px;}
.y26f{bottom:326.715600px;}
.y2ee{bottom:326.913300px;}
.y11d{bottom:328.548300px;}
.y187{bottom:328.820250px;}
.y20{bottom:329.223450px;}
.y1b5{bottom:332.033700px;}
.y1f9{bottom:332.288700px;}
.yf5{bottom:335.910300px;}
.y1cc{bottom:337.672800px;}
.y5d{bottom:338.415300px;}
.ybe{bottom:339.735150px;}
.y8e{bottom:339.735300px;}
.y1ea{bottom:339.877800px;}
.y22c{bottom:341.441850px;}
.y2ac{bottom:341.524800px;}
.y26e{bottom:341.709600px;}
.y32e{bottom:341.843550px;}
.y2ed{bottom:341.907300px;}
.y1b4{bottom:347.027700px;}
.yd0{bottom:347.235300px;}
.y1f8{bottom:347.282700px;}
.y11c{bottom:347.298300px;}
.y186{bottom:347.532750px;}
.y1f{bottom:347.973450px;}
.yf4{bottom:354.660300px;}
.y1cb{bottom:356.422800px;}
.y22b{bottom:356.435850px;}
.y2ab{bottom:356.518800px;}
.y26d{bottom:356.703600px;}
.y32d{bottom:356.837550px;}
.y2ec{bottom:356.901300px;}
.y5c{bottom:357.165300px;}
.ybd{bottom:358.485150px;}
.y8d{bottom:358.485300px;}
.y1e9{bottom:358.627800px;}
.y1b3{bottom:362.021700px;}
.y1f7{bottom:362.276700px;}
.ycf{bottom:365.985300px;}
.y185{bottom:366.245250px;}
.y1e{bottom:366.723450px;}
.y22a{bottom:371.429850px;}
.y2aa{bottom:371.512800px;}
.y26c{bottom:371.697600px;}
.y32c{bottom:371.831550px;}
.y2eb{bottom:371.895300px;}
.yf3{bottom:373.410300px;}
.y1ca{bottom:375.172800px;}
.y5b{bottom:375.915300px;}
.y1b2{bottom:377.015700px;}
.ybc{bottom:377.235150px;}
.y8c{bottom:377.235300px;}
.y1e8{bottom:377.377800px;}
.y184{bottom:384.957750px;}
.y1d{bottom:385.473450px;}
.y229{bottom:386.423850px;}
.y2a9{bottom:386.506800px;}
.y26b{bottom:386.691600px;}
.y32b{bottom:386.825550px;}
.y2ea{bottom:386.889300px;}
.y1b1{bottom:392.009700px;}
.yf2{bottom:392.160300px;}
.y1c9{bottom:393.922800px;}
.y136{bottom:394.173000px;}
.y5a{bottom:394.665300px;}
.ybb{bottom:395.985150px;}
.y8b{bottom:395.985300px;}
.y1e7{bottom:396.127800px;}
.y228{bottom:401.417850px;}
.y2a8{bottom:401.500800px;}
.y26a{bottom:401.685600px;}
.y32a{bottom:401.819550px;}
.y2e9{bottom:401.883300px;}
.y135{bottom:403.173300px;}
.yce{bottom:403.485300px;}
.y183{bottom:403.680750px;}
.y1c{bottom:404.223450px;}
.y138{bottom:404.721000px;}
.y1b0{bottom:407.003700px;}
.yf1{bottom:410.910300px;}
.y1c8{bottom:412.672800px;}
.y59{bottom:413.415300px;}
.yba{bottom:414.735150px;}
.y8a{bottom:414.735300px;}
.y1e6{bottom:414.877800px;}
.y227{bottom:416.411850px;}
.y2a7{bottom:416.494800px;}
.y269{bottom:416.679600px;}
.y329{bottom:416.813550px;}
.y2e8{bottom:416.877300px;}
.y1af{bottom:421.997700px;}
.y182{bottom:422.397750px;}
.y1b{bottom:422.973450px;}
.yf0{bottom:429.660300px;}
.y226{bottom:431.405850px;}
.y1c7{bottom:431.422800px;}
.y2a6{bottom:431.488800px;}
.y268{bottom:431.673600px;}
.y328{bottom:431.807550px;}
.y2e7{bottom:431.871300px;}
.y58{bottom:432.165300px;}
.y119{bottom:432.777000px;}
.yb9{bottom:433.485150px;}
.y89{bottom:433.485300px;}
.y1e5{bottom:433.627800px;}
.y1ae{bottom:436.991700px;}
.y181{bottom:441.114750px;}
.y1a{bottom:441.723450px;}
.y118{bottom:442.167300px;}
.y225{bottom:446.399850px;}
.y2a5{bottom:446.482800px;}
.y267{bottom:446.667600px;}
.y327{bottom:446.801550px;}
.y2e6{bottom:446.865300px;}
.yef{bottom:448.410300px;}
.y1c6{bottom:450.172800px;}
.y57{bottom:450.915300px;}
.y1ad{bottom:451.985700px;}
.yb8{bottom:452.235150px;}
.y88{bottom:452.235300px;}
.y1e4{bottom:452.377800px;}
.y180{bottom:459.831750px;}
.y19{bottom:460.473450px;}
.y117{bottom:461.127300px;}
.y224{bottom:461.393850px;}
.y2a4{bottom:461.476800px;}
.y266{bottom:461.661600px;}
.y326{bottom:461.795550px;}
.y2e5{bottom:461.859300px;}
.y1ac{bottom:466.979700px;}
.yee{bottom:467.160300px;}
.y1c5{bottom:468.922800px;}
.y56{bottom:469.665300px;}
.yb7{bottom:470.985150px;}
.y87{bottom:470.985300px;}
.y1e3{bottom:471.127800px;}
.y223{bottom:476.387850px;}
.y2a3{bottom:476.470800px;}
.y265{bottom:476.655600px;}
.y325{bottom:476.789550px;}
.y2e4{bottom:476.853300px;}
.y17f{bottom:478.548750px;}
.y18{bottom:479.223450px;}
.y116{bottom:479.877300px;}
.yed{bottom:485.910300px;}
.y1c4{bottom:487.672800px;}
.y55{bottom:488.415300px;}
.yb6{bottom:489.735150px;}
.y86{bottom:489.735300px;}
.y1e2{bottom:489.877800px;}
.y222{bottom:491.381850px;}
.y2a2{bottom:491.464800px;}
.y264{bottom:491.649600px;}
.y324{bottom:491.783550px;}
.y2e3{bottom:491.847300px;}
.y17{bottom:497.973450px;}
.yec{bottom:504.660300px;}
.y221{bottom:506.375850px;}
.y1c3{bottom:506.422800px;}
.y2a1{bottom:506.458800px;}
.y17c{bottom:506.624250px;}
.y263{bottom:506.643600px;}
.y323{bottom:506.777550px;}
.y2e2{bottom:506.841300px;}
.y54{bottom:507.165300px;}
.yb5{bottom:508.485150px;}
.y85{bottom:508.485300px;}
.y1e1{bottom:508.627800px;}
.y16{bottom:516.723450px;}
.y19e{bottom:520.005300px;}
.y220{bottom:521.369850px;}
.y2a0{bottom:521.452800px;}
.y17b{bottom:521.618250px;}
.y17e{bottom:521.631000px;}
.y262{bottom:521.637600px;}
.y322{bottom:521.771550px;}
.y2e1{bottom:521.835300px;}
.yeb{bottom:523.410300px;}
.y1c2{bottom:525.172800px;}
.y53{bottom:525.915300px;}
.y131{bottom:526.752000px;}
.yb4{bottom:527.235150px;}
.y84{bottom:527.235300px;}
.y1e0{bottom:527.377800px;}
.y25{bottom:535.473450px;}
.y130{bottom:535.755000px;}
.y21f{bottom:536.363850px;}
.y29f{bottom:536.446800px;}
.y17a{bottom:536.612250px;}
.y17d{bottom:536.625000px;}
.y261{bottom:536.631600px;}
.y321{bottom:536.765550px;}
.y2e0{bottom:536.829300px;}
.y134{bottom:537.300150px;}
.y19d{bottom:538.755300px;}
.y1c1{bottom:543.922800px;}
.y52{bottom:544.665300px;}
.yb3{bottom:545.985150px;}
.y83{bottom:545.985300px;}
.y1df{bottom:546.127800px;}
.y21e{bottom:551.357850px;}
.y29e{bottom:551.440800px;}
.y260{bottom:551.625600px;}
.y320{bottom:551.759550px;}
.y2df{bottom:551.823300px;}
.y15{bottom:554.223450px;}
.y19c{bottom:557.505300px;}
.yea{bottom:560.910300px;}
.y179{bottom:562.108800px;}
.y1c0{bottom:562.672800px;}
.y51{bottom:563.415300px;}
.yb2{bottom:564.735150px;}
.y82{bottom:564.735300px;}
.y1de{bottom:564.877800px;}
.y21d{bottom:566.351850px;}
.y29d{bottom:566.434800px;}
.y25f{bottom:566.619600px;}
.y31f{bottom:566.753550px;}
.y2de{bottom:566.817300px;}
.y115{bottom:574.752300px;}
.y19b{bottom:576.255300px;}
.y178{bottom:577.102800px;}
.y1bf{bottom:581.422800px;}
.y29c{bottom:581.428800px;}
.y25e{bottom:581.613600px;}
.y31e{bottom:581.747550px;}
.y2dd{bottom:581.811300px;}
.y50{bottom:582.165300px;}
.yb1{bottom:583.485150px;}
.y81{bottom:583.485300px;}
.y1dd{bottom:583.627800px;}
.y114{bottom:593.502300px;}
.y19a{bottom:595.005300px;}
.y29b{bottom:596.422800px;}
.y25d{bottom:596.607600px;}
.y31d{bottom:596.741550px;}
.y2dc{bottom:596.805300px;}
.ye9{bottom:598.410300px;}
.y21c{bottom:600.101850px;}
.y1be{bottom:600.172800px;}
.y4f{bottom:600.915300px;}
.yb0{bottom:602.235150px;}
.y80{bottom:602.235300px;}
.y1dc{bottom:602.377800px;}
.y14{bottom:610.473450px;}
.y29a{bottom:611.416800px;}
.y25c{bottom:611.601600px;}
.y31c{bottom:611.735550px;}
.y2db{bottom:611.799300px;}
.y113{bottom:612.252300px;}
.y199{bottom:613.755300px;}
.ye8{bottom:617.160300px;}
.y1bd{bottom:618.922800px;}
.y4e{bottom:619.665300px;}
.yaf{bottom:620.985150px;}
.y7f{bottom:620.985300px;}
.y1db{bottom:621.127800px;}
.y299{bottom:626.410800px;}
.y25b{bottom:626.595600px;}
.y31b{bottom:626.729550px;}
.y2da{bottom:626.793300px;}
.y112{bottom:631.002300px;}
.y198{bottom:632.505300px;}
.ye7{bottom:635.910300px;}
.y15e{bottom:637.533300px;}
.y4d{bottom:638.415300px;}
.yae{bottom:639.735150px;}
.y7e{bottom:639.735300px;}
.y177{bottom:639.738300px;}
.y1da{bottom:639.877800px;}
.y298{bottom:641.404800px;}
.y25a{bottom:641.589600px;}
.y31a{bottom:641.723550px;}
.y2d9{bottom:641.787300px;}
.y13{bottom:647.973450px;}
.y111{bottom:649.752300px;}
.y197{bottom:651.255300px;}
.ye6{bottom:654.660300px;}
.y15d{bottom:656.283300px;}
.y297{bottom:656.398800px;}
.y1bc{bottom:656.422800px;}
.y259{bottom:656.583600px;}
.y319{bottom:656.717550px;}
.y2d8{bottom:656.781300px;}
.y4c{bottom:657.165300px;}
.yad{bottom:658.485150px;}
.y7d{bottom:658.485300px;}
.y176{bottom:658.488300px;}
.y1d9{bottom:658.627800px;}
.y21b{bottom:663.934200px;}
.y12{bottom:666.723450px;}
.y110{bottom:668.502300px;}
.y196{bottom:670.005300px;}
.y296{bottom:671.392800px;}
.y258{bottom:671.577600px;}
.y318{bottom:671.711550px;}
.y2d7{bottom:671.775300px;}
.ye5{bottom:673.410300px;}
.y4b{bottom:675.915300px;}
.yac{bottom:677.235150px;}
.y7c{bottom:677.235300px;}
.y175{bottom:677.238300px;}
.y21a{bottom:678.928200px;}
.y11{bottom:685.473450px;}
.y295{bottom:686.386800px;}
.y257{bottom:686.571600px;}
.y317{bottom:686.705550px;}
.y2d6{bottom:686.769300px;}
.y10f{bottom:687.252300px;}
.y195{bottom:688.755300px;}
.y15c{bottom:693.783300px;}
.y219{bottom:693.922200px;}
.y4a{bottom:694.665300px;}
.yab{bottom:695.985150px;}
.y7b{bottom:695.985300px;}
.y174{bottom:695.988300px;}
.y294{bottom:701.380800px;}
.y102{bottom:701.535000px;}
.y256{bottom:701.565600px;}
.y316{bottom:701.699550px;}
.y2d5{bottom:701.763300px;}
.y101{bottom:702.510300px;}
.y10{bottom:704.223450px;}
.y10e{bottom:706.002300px;}
.y194{bottom:707.505300px;}
.y218{bottom:708.916200px;}
.y49{bottom:713.415300px;}
.yaa{bottom:714.735150px;}
.y7a{bottom:714.735300px;}
.y173{bottom:714.738300px;}
.y293{bottom:716.374800px;}
.y255{bottom:716.559600px;}
.y315{bottom:716.693550px;}
.y2d4{bottom:716.757300px;}
.yf{bottom:722.973450px;}
.y217{bottom:723.910200px;}
.y10d{bottom:724.752300px;}
.y193{bottom:726.255300px;}
.y15b{bottom:731.283300px;}
.y292{bottom:731.368800px;}
.y254{bottom:731.553600px;}
.y314{bottom:731.687550px;}
.y2d3{bottom:731.751300px;}
.y48{bottom:732.165300px;}
.ya9{bottom:733.485150px;}
.y79{bottom:733.485300px;}
.y172{bottom:733.488300px;}
.y216{bottom:738.904200px;}
.ye{bottom:741.723450px;}
.y10c{bottom:743.502300px;}
.y291{bottom:746.362800px;}
.y253{bottom:746.547600px;}
.y313{bottom:746.681550px;}
.y2d2{bottom:746.745300px;}
.y15a{bottom:750.033300px;}
.y47{bottom:750.915300px;}
.ya8{bottom:752.235150px;}
.y78{bottom:752.235300px;}
.y171{bottom:752.238300px;}
.y215{bottom:753.898200px;}
.yd{bottom:760.473450px;}
.y290{bottom:761.356800px;}
.y252{bottom:761.541600px;}
.y312{bottom:761.675550px;}
.y2d1{bottom:761.739300px;}
.y10b{bottom:762.252300px;}
.y159{bottom:768.783300px;}
.y214{bottom:768.892200px;}
.y46{bottom:769.665300px;}
.ya7{bottom:770.985150px;}
.y77{bottom:770.985300px;}
.y170{bottom:770.988300px;}
.y28f{bottom:776.350800px;}
.y251{bottom:776.535600px;}
.y311{bottom:776.669550px;}
.y2d0{bottom:776.733300px;}
.yc{bottom:779.223450px;}
.y10a{bottom:781.002300px;}
.y213{bottom:783.886200px;}
.y158{bottom:787.533300px;}
.y45{bottom:788.415300px;}
.ya6{bottom:789.735150px;}
.y76{bottom:789.735300px;}
.y16f{bottom:789.738300px;}
.y28e{bottom:791.344800px;}
.y250{bottom:791.529600px;}
.y310{bottom:791.663550px;}
.y2cf{bottom:791.727300px;}
.yb{bottom:797.973450px;}
.y212{bottom:798.880200px;}
.y109{bottom:799.752300px;}
.y157{bottom:806.283300px;}
.y28d{bottom:806.338800px;}
.y24f{bottom:806.523600px;}
.y30f{bottom:806.657550px;}
.y2ce{bottom:806.721300px;}
.y44{bottom:807.165300px;}
.ya5{bottom:808.485150px;}
.y75{bottom:808.485300px;}
.y16e{bottom:808.488300px;}
.y211{bottom:813.874200px;}
.ya{bottom:816.723450px;}
.y108{bottom:818.502300px;}
.y28c{bottom:821.332800px;}
.y24e{bottom:821.517600px;}
.y30e{bottom:821.651550px;}
.y2cd{bottom:821.715300px;}
.y156{bottom:825.033300px;}
.y43{bottom:825.915300px;}
.ya4{bottom:827.235150px;}
.y74{bottom:827.235300px;}
.y16d{bottom:827.238300px;}
.y210{bottom:828.868200px;}
.y9{bottom:835.473450px;}
.y28b{bottom:836.326800px;}
.y24d{bottom:836.511600px;}
.y30d{bottom:836.645550px;}
.y2cc{bottom:836.709300px;}
.y107{bottom:837.252300px;}
.y155{bottom:843.783300px;}
.y42{bottom:844.665300px;}
.ya3{bottom:845.985150px;}
.y73{bottom:845.985300px;}
.y16c{bottom:845.988300px;}
.y28a{bottom:851.320800px;}
.y24c{bottom:851.505600px;}
.y30c{bottom:851.639550px;}
.y2cb{bottom:851.703300px;}
.y106{bottom:856.002300px;}
.y154{bottom:862.533300px;}
.y41{bottom:863.415300px;}
.ya2{bottom:864.735150px;}
.y72{bottom:864.735300px;}
.y16b{bottom:864.738300px;}
.y1ab{bottom:865.192800px;}
.y289{bottom:866.314800px;}
.y24b{bottom:866.499600px;}
.y30b{bottom:866.633550px;}
.y2ca{bottom:866.697300px;}
.y20f{bottom:870.063450px;}
.y105{bottom:874.752300px;}
.y8{bottom:879.656250px;}
.y1aa{bottom:880.186800px;}
.y288{bottom:881.308800px;}
.y24a{bottom:881.493600px;}
.y30a{bottom:881.627550px;}
.y2c9{bottom:881.691300px;}
.y40{bottom:882.165300px;}
.ya1{bottom:883.485150px;}
.y71{bottom:883.485300px;}
.y16a{bottom:883.488300px;}
.y20e{bottom:885.057450px;}
.y104{bottom:893.502300px;}
.y33{bottom:894.075000px;}
.y7{bottom:894.650250px;}
.y1a9{bottom:895.180800px;}
.y287{bottom:896.302800px;}
.y249{bottom:896.487600px;}
.y309{bottom:896.621550px;}
.y2c8{bottom:896.685300px;}
.y153{bottom:900.033300px;}
.y3f{bottom:900.915300px;}
.ya0{bottom:902.235150px;}
.ycd{bottom:902.235300px;}
.y169{bottom:902.238300px;}
.y1a8{bottom:910.174800px;}
.y286{bottom:911.296800px;}
.y248{bottom:911.481600px;}
.y308{bottom:911.615550px;}
.y2c7{bottom:911.679300px;}
.y20d{bottom:915.019950px;}
.y3e{bottom:919.665300px;}
.y9f{bottom:920.985150px;}
.y70{bottom:920.985300px;}
.y168{bottom:920.988300px;}
.y1a7{bottom:925.168800px;}
.y285{bottom:926.290800px;}
.y247{bottom:926.475600px;}
.y307{bottom:926.609550px;}
.y2c6{bottom:926.673300px;}
.y6{bottom:937.250250px;}
.y152{bottom:937.533300px;}
.y3d{bottom:938.415300px;}
.y9e{bottom:939.735150px;}
.ycc{bottom:939.735300px;}
.y167{bottom:939.738300px;}
.y1a6{bottom:940.162800px;}
.y284{bottom:941.284800px;}
.y246{bottom:941.469600px;}
.y306{bottom:941.603550px;}
.y2c5{bottom:941.667300px;}
.y20c{bottom:944.982450px;}
.y14b{bottom:949.937100px;}
.y1a5{bottom:955.156800px;}
.y283{bottom:956.278800px;}
.y151{bottom:956.283300px;}
.y245{bottom:956.463600px;}
.y305{bottom:956.597550px;}
.y2c4{bottom:956.661300px;}
.y3c{bottom:957.165300px;}
.y9d{bottom:958.485150px;}
.ycb{bottom:958.485300px;}
.y166{bottom:958.488300px;}
.y147{bottom:962.574000px;}
.y1a4{bottom:970.150800px;}
.y282{bottom:971.272800px;}
.y244{bottom:971.457600px;}
.y304{bottom:971.591550px;}
.y2c3{bottom:971.655300px;}
.y146{bottom:972.813000px;}
.y14a{bottom:974.889750px;}
.y20b{bottom:974.944950px;}
.y150{bottom:975.033300px;}
.y3b{bottom:975.915300px;}
.y9c{bottom:977.235150px;}
.yde{bottom:977.235300px;}
.y165{bottom:977.238300px;}
.y5{bottom:981.936750px;}
.y1a3{bottom:985.144800px;}
.y281{bottom:986.266800px;}
.y243{bottom:986.451600px;}
.y303{bottom:986.585550px;}
.y2c2{bottom:986.649300px;}
.y145{bottom:991.530000px;}
.y14f{bottom:993.783300px;}
.y3a{bottom:994.665300px;}
.y6f{bottom:995.985300px;}
.y164{bottom:995.988300px;}
.y1a2{bottom:1000.138800px;}
.y280{bottom:1001.260800px;}
.y242{bottom:1001.445600px;}
.y302{bottom:1001.579550px;}
.y2c1{bottom:1001.643300px;}
.y20a{bottom:1008.694950px;}
.y4{bottom:1008.936750px;}
.y14e{bottom:1012.533300px;}
.y39{bottom:1013.415300px;}
.y9b{bottom:1014.735150px;}
.y6e{bottom:1014.735300px;}
.y163{bottom:1014.738300px;}
.y1a1{bottom:1015.132800px;}
.y27f{bottom:1016.254800px;}
.y241{bottom:1016.439600px;}
.y301{bottom:1016.573550px;}
.y2c0{bottom:1016.637300px;}
.y144{bottom:1019.618250px;}
.y1a0{bottom:1030.126800px;}
.y27e{bottom:1031.248800px;}
.y240{bottom:1031.433600px;}
.y300{bottom:1031.567550px;}
.y2bf{bottom:1031.631300px;}
.y38{bottom:1032.165300px;}
.y6d{bottom:1033.485300px;}
.y162{bottom:1033.488300px;}
.y143{bottom:1034.612250px;}
.y19f{bottom:1045.120800px;}
.y209{bottom:1046.242800px;}
.y23f{bottom:1046.427600px;}
.y2ff{bottom:1046.561550px;}
.y2be{bottom:1046.625300px;}
.y14d{bottom:1050.033300px;}
.y37{bottom:1050.915300px;}
.y6c{bottom:1052.235300px;}
.y161{bottom:1052.238300px;}
.y142{bottom:1060.114800px;}
.y208{bottom:1061.236800px;}
.y23e{bottom:1061.421600px;}
.y2fe{bottom:1061.555550px;}
.y2bd{bottom:1061.619300px;}
.y36{bottom:1069.665300px;}
.y6b{bottom:1070.985300px;}
.y160{bottom:1070.988300px;}
.y141{bottom:1075.108800px;}
.y207{bottom:1076.230800px;}
.y23d{bottom:1076.415600px;}
.y2fd{bottom:1076.549550px;}
.y2bc{bottom:1076.613300px;}
.y14c{bottom:1087.533300px;}
.y35{bottom:1088.415300px;}
.y6a{bottom:1089.735300px;}
.y15f{bottom:1089.738300px;}
.y140{bottom:1090.102800px;}
.y206{bottom:1091.224800px;}
.y23c{bottom:1091.409600px;}
.y2fc{bottom:1091.543550px;}
.y2bb{bottom:1091.607300px;}
.y3{bottom:1109.586600px;}
.y34{bottom:1126.005000px;}
.y69{bottom:1126.905000px;}
.h17{height:13.200000px;}
.h28{height:17.234350px;}
.h26{height:17.438306px;}
.h1b{height:18.568508px;}
.h25{height:19.800000px;}
.h1a{height:20.284867px;}
.h22{height:23.165790px;}
.h27{height:24.377773px;}
.h1c{height:25.348500px;}
.h19{height:25.350000px;}
.h1d{height:29.250000px;}
.h11{height:29.398500px;}
.h16{height:29.400000px;}
.h21{height:29.550000px;}
.h20{height:32.828205px;}
.hb{height:32.986800px;}
.h2{height:33.840000px;}
.hc{height:35.955000px;}
.h12{height:39.249810px;}
.h1f{height:39.969990px;}
.h1e{height:40.030005px;}
.h14{height:40.570140px;}
.h18{height:41.290320px;}
.h4{height:44.676000px;}
.ha{height:47.124000px;}
.h2a{height:47.142000px;}
.h29{height:52.173000px;}
.h2c{height:52.479000px;}
.h2b{height:53.404800px;}
.h2e{height:53.410800px;}
.h23{height:53.805000px;}
.h2d{height:53.818800px;}
.h3{height:54.862258px;}
.h8{height:55.440000px;}
.h13{height:55.527540px;}
.hf{height:59.004000px;}
.h7{height:59.340000px;}
.hd{height:61.380000px;}
.h10{height:61.380600px;}
.he{height:62.808000px;}
.h2f{height:63.300000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h15{height:82.580640px;}
.h5{height:85.056000px;}
.h24{height:113.781000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w6{width:29.248500px;}
.w5{width:29.250000px;}
.wa{width:29.310000px;}
.wb{width:29.311500px;}
.w7{width:38.865000px;}
.w8{width:66.945000px;}
.w9{width:84.406500px;}
.w4{width:214.200000px;}
.w2{width:324.030000px;}
.w3{width:340.786500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:2.540550px;}
.x13{left:16.567650px;}
.x22{left:18.392550px;}
.x20{left:54.503850px;}
.x1e{left:57.868350px;}
.x3{left:76.535400px;}
.x9{left:78.746400px;}
.xc{left:83.992050px;}
.x4{left:93.530400px;}
.x7{left:97.796100px;}
.x28{left:107.288400px;}
.x8{left:195.045000px;}
.x27{left:216.288150px;}
.x26{left:278.852400px;}
.xd{left:292.413450px;}
.xe{left:301.350900px;}
.x11{left:309.155100px;}
.x12{left:318.092700px;}
.xb{left:416.203350px;}
.x5{left:459.200400px;}
.x10{left:466.668750px;}
.x6{left:476.195400px;}
.x29{left:490.017900px;}
.x1f{left:499.270350px;}
.x1d{left:502.634700px;}
.x24{left:541.553400px;}
.x1a{left:593.818500px;}
.x21{left:602.978550px;}
.x1b{left:623.144400px;}
.x25{left:666.388650px;}
.x16{left:685.212000px;}
.x14{left:688.330500px;}
.x17{left:714.536100px;}
.x15{left:717.806100px;}
.x23{left:725.465550px;}
.x1{left:728.220600px;}
.x18{left:746.104500px;}
.x2{left:755.489850px;}
.x19{left:775.429950px;}
.xa{left:792.765000px;}
.xf{left:798.849300px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v3{vertical-align:-13.333333pt;}
.v9{vertical-align:-11.354667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:7.384000pt;}
.v4{vertical-align:13.333333pt;}
.va{vertical-align:18.133333pt;}
.v1{vertical-align:21.333333pt;}
.v6{vertical-align:25.652800pt;}
.v5{vertical-align:37.342667pt;}
.v7{vertical-align:53.312000pt;}
.ls7a{letter-spacing:-1.224000pt;}
.lsb9{letter-spacing:-1.133333pt;}
.ls6a{letter-spacing:-1.066667pt;}
.ls69{letter-spacing:-0.853333pt;}
.ls6c{letter-spacing:-0.800000pt;}
.ls6b{letter-spacing:-0.640000pt;}
.lsa9{letter-spacing:-0.634667pt;}
.ls57{letter-spacing:-0.586667pt;}
.ls68{letter-spacing:-0.533333pt;}
.lsb7{letter-spacing:-0.498667pt;}
.lsaa{letter-spacing:-0.453333pt;}
.ls37{letter-spacing:-0.426667pt;}
.lsba{letter-spacing:-0.408000pt;}
.ls3a{letter-spacing:-0.373333pt;}
.lsb8{letter-spacing:-0.362667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls94{letter-spacing:-0.317333pt;}
.ls93{letter-spacing:-0.272000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls92{letter-spacing:-0.226667pt;}
.ls15{letter-spacing:-0.213333pt;}
.lsa8{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.160000pt;}
.lsab{letter-spacing:-0.136000pt;}
.ls39{letter-spacing:-0.106667pt;}
.lsac{letter-spacing:-0.090667pt;}
.ls13{letter-spacing:-0.053333pt;}
.lsad{letter-spacing:-0.045333pt;}
.ls6d{letter-spacing:-0.031726pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.000427pt;}
.ls4e{letter-spacing:0.001453pt;}
.ls6f{letter-spacing:0.022400pt;}
.ls7d{letter-spacing:0.026667pt;}
.ls70{letter-spacing:0.037333pt;}
.ls96{letter-spacing:0.045333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls83{letter-spacing:0.057600pt;}
.lsa4{letter-spacing:0.068000pt;}
.ls86{letter-spacing:0.074667pt;}
.ls82{letter-spacing:0.080000pt;}
.ls9a{letter-spacing:0.090667pt;}
.ls33{letter-spacing:0.106667pt;}
.lsa3{letter-spacing:0.113333pt;}
.ls8b{letter-spacing:0.133333pt;}
.lsaf{letter-spacing:0.136000pt;}
.ls88{letter-spacing:0.139200pt;}
.lse{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls66{letter-spacing:0.170667pt;}
.ls8f{letter-spacing:0.181333pt;}
.ls71{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.226667pt;}
.ls98{letter-spacing:0.234667pt;}
.ls9b{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls9c{letter-spacing:0.272000pt;}
.ls80{letter-spacing:0.293333pt;}
.ls35{letter-spacing:0.312533pt;}
.ls97{letter-spacing:0.317333pt;}
.ls34{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.336000pt;}
.ls85{letter-spacing:0.346667pt;}
.ls99{letter-spacing:0.362667pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls36{letter-spacing:0.400000pt;}
.lsa2{letter-spacing:0.408000pt;}
.ls43{letter-spacing:0.410667pt;}
.ls2{letter-spacing:0.426667pt;}
.lsae{letter-spacing:0.430667pt;}
.ls46{letter-spacing:0.444267pt;}
.ls59{letter-spacing:0.448000pt;}
.ls7c{letter-spacing:0.453333pt;}
.ls7{letter-spacing:0.480000pt;}
.lsa7{letter-spacing:0.498667pt;}
.ls89{letter-spacing:0.506667pt;}
.ls9e{letter-spacing:0.521333pt;}
.ls41{letter-spacing:0.522667pt;}
.lsa{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.539733pt;}
.ls8d{letter-spacing:0.544000pt;}
.ls30{letter-spacing:0.560000pt;}
.ls87{letter-spacing:0.567467pt;}
.ls9{letter-spacing:0.586667pt;}
.ls8e{letter-spacing:0.589333pt;}
.lsb0{letter-spacing:0.612000pt;}
.ls7f{letter-spacing:0.613333pt;}
.lsa1{letter-spacing:0.634667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls7e{letter-spacing:0.666667pt;}
.ls8c{letter-spacing:0.680000pt;}
.ls11{letter-spacing:0.693333pt;}
.ls40{letter-spacing:0.709333pt;}
.ls9d{letter-spacing:0.725333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls9f{letter-spacing:0.770667pt;}
.ls1a{letter-spacing:0.773333pt;}
.ls3f{letter-spacing:0.775467pt;}
.ls5{letter-spacing:0.800000pt;}
.ls84{letter-spacing:0.810667pt;}
.ls58{letter-spacing:0.821333pt;}
.lsc{letter-spacing:0.853333pt;}
.ls90{letter-spacing:0.861333pt;}
.ls7b{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls91{letter-spacing:0.929333pt;}
.ls24{letter-spacing:0.933333pt;}
.ls3e{letter-spacing:0.952000pt;}
.ls3d{letter-spacing:0.952533pt;}
.ls25{letter-spacing:0.960000pt;}
.ls4a{letter-spacing:0.960240pt;}
.ls55{letter-spacing:0.976000pt;}
.ls81{letter-spacing:0.986667pt;}
.ls45{letter-spacing:0.992000pt;}
.lsb1{letter-spacing:0.997333pt;}
.ls2a{letter-spacing:1.013333pt;}
.lsa0{letter-spacing:1.042667pt;}
.ls17{letter-spacing:1.066667pt;}
.lsa6{letter-spacing:1.088000pt;}
.ls1d{letter-spacing:1.093333pt;}
.ls27{letter-spacing:1.120000pt;}
.ls95{letter-spacing:1.133333pt;}
.ls26{letter-spacing:1.173333pt;}
.ls42{letter-spacing:1.200000pt;}
.lsa5{letter-spacing:1.224000pt;}
.ls23{letter-spacing:1.226667pt;}
.ls53{letter-spacing:1.240533pt;}
.ls6{letter-spacing:1.253333pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.306667pt;}
.lsb4{letter-spacing:1.314667pt;}
.ls52{letter-spacing:1.317333pt;}
.ls18{letter-spacing:1.333333pt;}
.ls3c{letter-spacing:1.360000pt;}
.ls16{letter-spacing:1.386667pt;}
.lsb2{letter-spacing:1.405333pt;}
.ls8a{letter-spacing:1.413333pt;}
.ls54{letter-spacing:1.414933pt;}
.ls22{letter-spacing:1.440000pt;}
.lsb6{letter-spacing:1.450667pt;}
.ls1e{letter-spacing:1.493333pt;}
.ls20{letter-spacing:1.546667pt;}
.ls19{letter-spacing:1.600000pt;}
.lsb3{letter-spacing:1.632000pt;}
.ls1c{letter-spacing:1.653333pt;}
.ls6e{letter-spacing:1.680000pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls64{letter-spacing:1.733333pt;}
.ls28{letter-spacing:1.760000pt;}
.ls32{letter-spacing:1.813333pt;}
.ls2c{letter-spacing:1.866667pt;}
.ls5e{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:1.946667pt;}
.ls2e{letter-spacing:1.973333pt;}
.ls47{letter-spacing:1.989333pt;}
.ls29{letter-spacing:2.026667pt;}
.ls48{letter-spacing:2.080000pt;}
.lsb5{letter-spacing:2.085333pt;}
.ls3b{letter-spacing:2.133333pt;}
.ls5c{letter-spacing:2.186667pt;}
.ls63{letter-spacing:2.346667pt;}
.ls21{letter-spacing:2.400000pt;}
.ls60{letter-spacing:2.506667pt;}
.ls65{letter-spacing:2.666667pt;}
.ls50{letter-spacing:2.720680pt;}
.ls5d{letter-spacing:2.773333pt;}
.ls61{letter-spacing:2.986667pt;}
.ls62{letter-spacing:3.018667pt;}
.ls5b{letter-spacing:3.467533pt;}
.ls4c{letter-spacing:11.842960pt;}
.ls5a{letter-spacing:11.896307pt;}
.ls49{letter-spacing:12.803200pt;}
.ls4d{letter-spacing:14.563640pt;}
.ls4b{letter-spacing:14.830373pt;}
.ls67{letter-spacing:16.004000pt;}
.ls5f{letter-spacing:18.297907pt;}
.ls51{letter-spacing:41.823787pt;}
.ls56{letter-spacing:41.877133pt;}
.ls73{letter-spacing:64.117867pt;}
.ls78{letter-spacing:92.268267pt;}
.ls72{letter-spacing:104.419200pt;}
.ls75{letter-spacing:126.268267pt;}
.ls74{letter-spacing:169.969067pt;}
.ls77{letter-spacing:240.272000pt;}
.ls76{letter-spacing:244.139733pt;}
.ls79{letter-spacing:278.139733pt;}
.ws92{word-spacing:-15.733333pt;}
.ws7a{word-spacing:-15.360000pt;}
.ws95{word-spacing:-15.146667pt;}
.ws2b{word-spacing:-15.093333pt;}
.ws2e{word-spacing:-14.826667pt;}
.ws2c{word-spacing:-14.773333pt;}
.ws2d{word-spacing:-14.720000pt;}
.ws6b{word-spacing:-14.560000pt;}
.wsba{word-spacing:-14.400000pt;}
.ws73{word-spacing:-14.346667pt;}
.ws7f{word-spacing:-14.186667pt;}
.ws28{word-spacing:-14.106667pt;}
.ws2a{word-spacing:-14.080000pt;}
.wsbc{word-spacing:-13.973333pt;}
.ws58{word-spacing:-13.920000pt;}
.wsbe{word-spacing:-13.813333pt;}
.wsb6{word-spacing:-13.760000pt;}
.wsc1{word-spacing:-13.653333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws59{word-spacing:-13.546667pt;}
.ws71{word-spacing:-13.333333pt;}
.ws91{word-spacing:-13.226667pt;}
.wsdc{word-spacing:-13.184000pt;}
.wsbd{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.928000pt;}
.wsc0{word-spacing:-12.746667pt;}
.ws10b{word-spacing:-12.194667pt;}
.ws78{word-spacing:-11.949653pt;}
.ws76{word-spacing:-11.896307pt;}
.ws116{word-spacing:-11.786667pt;}
.wsdb{word-spacing:-11.650667pt;}
.ws9{word-spacing:-11.560000pt;}
.wsa6{word-spacing:-11.333333pt;}
.wse9{word-spacing:-11.106667pt;}
.wsa1{word-spacing:-11.093333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws6a{word-spacing:-10.285333pt;}
.ws5{word-spacing:-10.240000pt;}
.ws11c{word-spacing:-10.200000pt;}
.ws6f{word-spacing:-10.154667pt;}
.ws29{word-spacing:-9.893333pt;}
.ws6d{word-spacing:-9.856000pt;}
.ws72{word-spacing:-9.781333pt;}
.ws6e{word-spacing:-9.744000pt;}
.ws70{word-spacing:-9.669333pt;}
.wsce{word-spacing:-9.565333pt;}
.wsbf{word-spacing:-9.408000pt;}
.wsa5{word-spacing:-9.370667pt;}
.ws6c{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.wscd{word-spacing:-8.477333pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws5b{word-spacing:-6.666667pt;}
.ws7b{word-spacing:-3.520880pt;}
.ws3e{word-spacing:-2.400000pt;}
.ws9b{word-spacing:-2.186667pt;}
.wse{word-spacing:-2.133333pt;}
.ws8f{word-spacing:-2.080000pt;}
.ws9d{word-spacing:-1.920000pt;}
.ws8d{word-spacing:-1.760000pt;}
.ws7e{word-spacing:-1.706667pt;}
.wsb{word-spacing:-1.680000pt;}
.ws53{word-spacing:-1.653333pt;}
.ws35{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.546667pt;}
.ws52{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.ws56{word-spacing:-1.280000pt;}
.ws1e{word-spacing:-1.226667pt;}
.ws88{word-spacing:-1.173333pt;}
.wsd1{word-spacing:-1.133333pt;}
.ws3b{word-spacing:-1.120000pt;}
.wsec{word-spacing:-1.088000pt;}
.ws38{word-spacing:-1.066667pt;}
.ws113{word-spacing:-1.042667pt;}
.ws51{word-spacing:-1.013333pt;}
.ws125{word-spacing:-0.997333pt;}
.ws42{word-spacing:-0.960000pt;}
.wsd4{word-spacing:-0.952000pt;}
.wsa0{word-spacing:-0.906667pt;}
.wsd3{word-spacing:-0.861333pt;}
.ws24{word-spacing:-0.853333pt;}
.wsf8{word-spacing:-0.816000pt;}
.ws82{word-spacing:-0.800000pt;}
.wsd5{word-spacing:-0.770667pt;}
.ws5f{word-spacing:-0.746667pt;}
.ws84{word-spacing:-0.709333pt;}
.ws67{word-spacing:-0.693333pt;}
.wse2{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.634667pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.ws18{word-spacing:-0.533333pt;}
.ws85{word-spacing:-0.522667pt;}
.wsc{word-spacing:-0.512000pt;}
.wsfc{word-spacing:-0.498667pt;}
.ws1b{word-spacing:-0.480000pt;}
.wsde{word-spacing:-0.453333pt;}
.ws89{word-spacing:-0.448000pt;}
.ws12{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.408000pt;}
.ws21{word-spacing:-0.373333pt;}
.wsf3{word-spacing:-0.362667pt;}
.ws5a{word-spacing:-0.320000pt;}
.wsd8{word-spacing:-0.272000pt;}
.ws19{word-spacing:-0.266667pt;}
.wsdd{word-spacing:-0.234667pt;}
.wse5{word-spacing:-0.226667pt;}
.ws55{word-spacing:-0.213333pt;}
.ws65{word-spacing:-0.160000pt;}
.wsea{word-spacing:-0.136000pt;}
.ws98{word-spacing:-0.106667pt;}
.wse4{word-spacing:-0.090667pt;}
.ws75{word-spacing:-0.053347pt;}
.ws66{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws74{word-spacing:-0.037342pt;}
.ws96{word-spacing:-0.031726pt;}
.wsd{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.045333pt;}
.ws14{word-spacing:0.053333pt;}
.wsd7{word-spacing:0.090667pt;}
.ws54{word-spacing:0.106667pt;}
.ws115{word-spacing:0.136000pt;}
.ws80{word-spacing:0.160000pt;}
.wseb{word-spacing:0.181333pt;}
.wsbb{word-spacing:0.213333pt;}
.wsfe{word-spacing:0.226667pt;}
.ws2f{word-spacing:0.266667pt;}
.ws117{word-spacing:0.272000pt;}
.ws106{word-spacing:0.317333pt;}
.ws40{word-spacing:0.320000pt;}
.ws31{word-spacing:0.373333pt;}
.ws11d{word-spacing:0.408000pt;}
.ws86{word-spacing:0.426667pt;}
.ws108{word-spacing:0.453333pt;}
.wsd0{word-spacing:0.480000pt;}
.ws10e{word-spacing:0.498667pt;}
.wsc9{word-spacing:0.533333pt;}
.ws101{word-spacing:0.544000pt;}
.ws43{word-spacing:0.586667pt;}
.ws110{word-spacing:0.589333pt;}
.ws33{word-spacing:0.640000pt;}
.wsf4{word-spacing:0.680000pt;}
.ws5c{word-spacing:0.693333pt;}
.wsfd{word-spacing:0.725333pt;}
.ws87{word-spacing:0.746667pt;}
.ws103{word-spacing:0.770667pt;}
.ws36{word-spacing:0.800000pt;}
.ws122{word-spacing:0.816000pt;}
.ws61{word-spacing:0.853333pt;}
.ws118{word-spacing:0.861333pt;}
.ws20{word-spacing:0.906667pt;}
.ws1c{word-spacing:0.960000pt;}
.wsdf{word-spacing:0.997333pt;}
.ws4b{word-spacing:1.013333pt;}
.wse1{word-spacing:1.042667pt;}
.ws32{word-spacing:1.066667pt;}
.wsa3{word-spacing:1.088000pt;}
.ws13{word-spacing:1.120000pt;}
.wsb5{word-spacing:1.133333pt;}
.ws39{word-spacing:1.173333pt;}
.wse8{word-spacing:1.178667pt;}
.ws10f{word-spacing:1.224000pt;}
.ws68{word-spacing:1.226667pt;}
.wse0{word-spacing:1.269333pt;}
.wsf{word-spacing:1.280000pt;}
.wsd6{word-spacing:1.314667pt;}
.ws11{word-spacing:1.333333pt;}
.ws102{word-spacing:1.360000pt;}
.ws57{word-spacing:1.386667pt;}
.wsb4{word-spacing:1.440000pt;}
.wsef{word-spacing:1.450667pt;}
.wsb3{word-spacing:1.493333pt;}
.wsff{word-spacing:1.496000pt;}
.ws50{word-spacing:1.546667pt;}
.ws11f{word-spacing:1.586667pt;}
.ws22{word-spacing:1.600000pt;}
.wsd2{word-spacing:1.632000pt;}
.wsc7{word-spacing:1.653333pt;}
.wsfb{word-spacing:1.677333pt;}
.ws60{word-spacing:1.706667pt;}
.wse7{word-spacing:1.722667pt;}
.ws3c{word-spacing:1.760000pt;}
.ws100{word-spacing:1.768000pt;}
.ws5e{word-spacing:1.813333pt;}
.wsf1{word-spacing:1.858667pt;}
.ws34{word-spacing:1.866667pt;}
.ws121{word-spacing:1.904000pt;}
.ws1d{word-spacing:1.920000pt;}
.ws1f{word-spacing:1.973333pt;}
.wse6{word-spacing:1.994667pt;}
.ws16{word-spacing:2.026667pt;}
.wsf2{word-spacing:2.040000pt;}
.ws46{word-spacing:2.080000pt;}
.ws10a{word-spacing:2.085333pt;}
.ws109{word-spacing:2.130667pt;}
.ws48{word-spacing:2.133333pt;}
.wsed{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.186667pt;}
.ws7c{word-spacing:2.240000pt;}
.ws114{word-spacing:2.266667pt;}
.ws4f{word-spacing:2.293333pt;}
.ws23{word-spacing:2.346667pt;}
.ws37{word-spacing:2.400000pt;}
.ws10d{word-spacing:2.402667pt;}
.ws112{word-spacing:2.448000pt;}
.wsc3{word-spacing:2.453333pt;}
.wsf0{word-spacing:2.493333pt;}
.ws25{word-spacing:2.506667pt;}
.ws11a{word-spacing:2.538667pt;}
.ws8e{word-spacing:2.560000pt;}
.ws124{word-spacing:2.584000pt;}
.ws41{word-spacing:2.613333pt;}
.ws120{word-spacing:2.629333pt;}
.ws44{word-spacing:2.666667pt;}
.wsc4{word-spacing:2.720000pt;}
.ws47{word-spacing:2.773333pt;}
.ws63{word-spacing:2.880000pt;}
.ws104{word-spacing:2.901333pt;}
.ws81{word-spacing:2.933333pt;}
.wsda{word-spacing:2.946667pt;}
.wsca{word-spacing:2.986667pt;}
.ws83{word-spacing:3.040000pt;}
.wsc2{word-spacing:3.093333pt;}
.wsfa{word-spacing:3.128000pt;}
.ws4c{word-spacing:3.146667pt;}
.ws4d{word-spacing:3.200000pt;}
.ws107{word-spacing:3.218667pt;}
.ws99{word-spacing:3.253333pt;}
.ws11b{word-spacing:3.264000pt;}
.wsb1{word-spacing:3.306667pt;}
.ws111{word-spacing:3.309333pt;}
.ws8a{word-spacing:3.360000pt;}
.ws90{word-spacing:3.413333pt;}
.ws4e{word-spacing:3.466667pt;}
.ws62{word-spacing:3.520000pt;}
.ws123{word-spacing:3.536000pt;}
.ws9a{word-spacing:3.573333pt;}
.wsf7{word-spacing:3.581333pt;}
.wsee{word-spacing:3.626667pt;}
.ws3a{word-spacing:3.680000pt;}
.ws119{word-spacing:3.717333pt;}
.wsb9{word-spacing:3.733333pt;}
.wsd9{word-spacing:3.808000pt;}
.wsf6{word-spacing:3.853333pt;}
.wsc6{word-spacing:3.893333pt;}
.ws105{word-spacing:3.898667pt;}
.wsc5{word-spacing:3.946667pt;}
.ws9f{word-spacing:4.000000pt;}
.ws49{word-spacing:4.053333pt;}
.ws45{word-spacing:4.106667pt;}
.ws69{word-spacing:4.160000pt;}
.ws17{word-spacing:4.213333pt;}
.wscf{word-spacing:4.266667pt;}
.ws4a{word-spacing:4.373333pt;}
.wsf5{word-spacing:4.397333pt;}
.ws64{word-spacing:4.480000pt;}
.ws8b{word-spacing:4.586667pt;}
.wsb7{word-spacing:4.693333pt;}
.ws8c{word-spacing:4.800000pt;}
.ws11e{word-spacing:4.896000pt;}
.ws7d{word-spacing:4.960000pt;}
.wscc{word-spacing:5.066667pt;}
.ws9e{word-spacing:5.226667pt;}
.ws97{word-spacing:5.386667pt;}
.ws10c{word-spacing:5.530667pt;}
.wscb{word-spacing:5.546667pt;}
.wsb2{word-spacing:5.600000pt;}
.wsa2{word-spacing:5.984000pt;}
.ws3f{word-spacing:6.026667pt;}
.wsb0{word-spacing:6.400000pt;}
.ws9c{word-spacing:6.666667pt;}
.wsc8{word-spacing:6.933333pt;}
.wsb8{word-spacing:9.706667pt;}
.ws94{word-spacing:14.723680pt;}
.ws93{word-spacing:14.777027pt;}
.ws79{word-spacing:15.120137pt;}
.ws77{word-spacing:15.166004pt;}
.wsad{word-spacing:43.173333pt;}
.wsaa{word-spacing:57.392000pt;}
.ws26{word-spacing:64.237333pt;}
.wsab{word-spacing:72.141867pt;}
.wsa7{word-spacing:87.629333pt;}
.wsa9{word-spacing:108.165333pt;}
.wsaf{word-spacing:157.578667pt;}
.wsae{word-spacing:175.621333pt;}
.wsa8{word-spacing:188.994667pt;}
.wsac{word-spacing:265.562667pt;}
._10{margin-left:-2636.106667pt;}
._18{margin-left:-19.733333pt;}
._16{margin-left:-17.290667pt;}
._5{margin-left:-14.733333pt;}
._a{margin-left:-13.355733pt;}
._15{margin-left:-11.661867pt;}
._17{margin-left:-10.640000pt;}
._f{margin-left:-7.946667pt;}
._1a{margin-left:-6.933333pt;}
._9{margin-left:-6.004267pt;}
._3{margin-left:-4.151467pt;}
._b{margin-left:-3.253333pt;}
._4{margin-left:-2.346667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.604267pt;}
._8{width:2.613333pt;}
._13{width:3.685333pt;}
._11{width:4.693333pt;}
._c{width:5.733333pt;}
._d{width:8.645333pt;}
._3d{width:10.018667pt;}
._1c{width:11.840533pt;}
._14{width:13.333333pt;}
._12{width:15.247467pt;}
._6{width:16.320000pt;}
._19{width:31.848533pt;}
._2{width:36.330133pt;}
._1b{width:38.646933pt;}
._7{width:48.552000pt;}
._24{width:51.090667pt;}
._3a{width:61.568533pt;}
._39{width:105.455467pt;}
._3c{width:107.587200pt;}
._21{width:162.384000pt;}
._2a{width:168.912000pt;}
._25{width:171.450667pt;}
._3b{width:179.435733pt;}
._35{width:186.954667pt;}
._27{width:196.819733pt;}
._26{width:215.197333pt;}
._31{width:230.275733pt;}
._2b{width:233.512000pt;}
._20{width:245.149333pt;}
._1e{width:247.973333pt;}
._1d{width:255.770667pt;}
._2c{width:259.080000pt;}
._34{width:264.656000pt;}
._29{width:267.512000pt;}
._28{width:271.365333pt;}
._38{width:277.276267pt;}
._30{width:291.946667pt;}
._22{width:296.026667pt;}
._1f{width:299.834667pt;}
._33{width:300.968000pt;}
._23{width:315.837333pt;}
._32{width:327.488000pt;}
._37{width:354.217067pt;}
._2d{width:355.299733pt;}
._36{width:361.488000pt;}
._2f{width:402.242667pt;}
._2e{width:428.762667pt;}
._e{width:1856.320000pt;}
.fsd{font-size:22.661867pt;}
.fsb{font-size:26.673067pt;}
.fsc{font-size:31.726400pt;}
.fs7{font-size:31.733333pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:53.346667pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:0.040133pt;}
.y149{bottom:0.080667pt;}
.ydd{bottom:0.105600pt;}
.ye4{bottom:0.106933pt;}
.y13d{bottom:0.306667pt;}
.y12e{bottom:1.959867pt;}
.y126{bottom:1.960000pt;}
.y121{bottom:1.960133pt;}
.y11b{bottom:1.960267pt;}
.y103{bottom:2.506933pt;}
.y139{bottom:9.376000pt;}
.yda{bottom:9.438933pt;}
.ye1{bottom:9.440267pt;}
.y13f{bottom:9.642667pt;}
.y148{bottom:13.731200pt;}
.y137{bottom:17.106800pt;}
.y132{bottom:17.106933pt;}
.ydc{bottom:17.178533pt;}
.ye3{bottom:17.179867pt;}
.y13c{bottom:17.373467pt;}
.y12a{bottom:18.023867pt;}
.y125{bottom:18.024000pt;}
.y11a{bottom:18.024133pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181333pt;}
.y1d8{bottom:100.153600pt;}
.y32{bottom:100.389600pt;}
.yca{bottom:101.986800pt;}
.y9a{bottom:101.986933pt;}
.y1f6{bottom:102.113600pt;}
.y205{bottom:102.157067pt;}
.y23b{bottom:103.583867pt;}
.y27d{bottom:103.821867pt;}
.yd7{bottom:107.520400pt;}
.y192{bottom:109.250000pt;}
.y2c{bottom:109.309733pt;}
.y12f{bottom:112.333333pt;}
.ydf{bottom:113.186933pt;}
.y100{bottom:115.253600pt;}
.y204{bottom:115.485067pt;}
.y1d7{bottom:116.820267pt;}
.y23a{bottom:116.911867pt;}
.y2ba{bottom:116.985600pt;}
.y27c{bottom:117.149867pt;}
.y2fb{bottom:117.325600pt;}
.y68{bottom:117.480267pt;}
.y31{bottom:118.250933pt;}
.yc9{bottom:118.653467pt;}
.y99{bottom:118.653600pt;}
.y1f5{bottom:118.780267pt;}
.yd6{bottom:124.187067pt;}
.y12d{bottom:124.328000pt;}
.ye0{bottom:125.853333pt;}
.y191{bottom:125.859333pt;}
.y2b{bottom:125.976400pt;}
.y239{bottom:130.239867pt;}
.y2b9{bottom:130.313600pt;}
.y27b{bottom:130.477867pt;}
.y2fa{bottom:130.653600pt;}
.yff{bottom:131.920267pt;}
.ye2{bottom:131.969733pt;}
.y12c{bottom:132.680000pt;}
.y1d6{bottom:133.486933pt;}
.y30{bottom:133.764933pt;}
.y67{bottom:134.146933pt;}
.yc8{bottom:135.320133pt;}
.y98{bottom:135.320267pt;}
.y1f4{bottom:135.446933pt;}
.yd5{bottom:140.853733pt;}
.y190{bottom:142.564667pt;}
.y2a{bottom:142.643067pt;}
.y238{bottom:143.567867pt;}
.y2b8{bottom:143.641600pt;}
.y27a{bottom:143.805867pt;}
.y2f9{bottom:143.981600pt;}
.y129{bottom:144.861333pt;}
.y203{bottom:145.450400pt;}
.yfe{bottom:148.586933pt;}
.y1d5{bottom:150.153600pt;}
.y66{bottom:150.813600pt;}
.y2f{bottom:151.626267pt;}
.yc7{bottom:151.986800pt;}
.y97{bottom:151.986933pt;}
.y1f3{bottom:152.113600pt;}
.y12b{bottom:153.213333pt;}
.y128{bottom:153.213467pt;}
.y237{bottom:156.895867pt;}
.y2b7{bottom:156.969600pt;}
.y279{bottom:157.133867pt;}
.y2f8{bottom:157.309600pt;}
.y202{bottom:158.778400pt;}
.y18f{bottom:159.134000pt;}
.y29{bottom:159.309733pt;}
.yfd{bottom:165.253600pt;}
.y124{bottom:165.394667pt;}
.y1d4{bottom:166.820267pt;}
.y65{bottom:167.480267pt;}
.yc6{bottom:168.653467pt;}
.y96{bottom:168.653600pt;}
.y1f2{bottom:168.780267pt;}
.y236{bottom:170.223867pt;}
.y2b6{bottom:170.297600pt;}
.y278{bottom:170.461867pt;}
.y2f7{bottom:170.637600pt;}
.y201{bottom:172.106400pt;}
.y123{bottom:173.741467pt;}
.y127{bottom:173.746800pt;}
.y2e{bottom:173.848933pt;}
.yd4{bottom:174.187067pt;}
.y18e{bottom:175.839333pt;}
.y28{bottom:175.976400pt;}
.yfc{bottom:181.920267pt;}
.y1d3{bottom:183.486933pt;}
.y235{bottom:183.551867pt;}
.y2b5{bottom:183.625600pt;}
.y277{bottom:183.789867pt;}
.y2f6{bottom:183.965600pt;}
.y64{bottom:184.146933pt;}
.yc5{bottom:185.320133pt;}
.y95{bottom:185.320267pt;}
.y200{bottom:185.434400pt;}
.y1f1{bottom:185.446933pt;}
.y2d{bottom:187.176933pt;}
.yd3{bottom:190.853733pt;}
.y18d{bottom:192.476667pt;}
.y27{bottom:192.643067pt;}
.y234{bottom:196.879867pt;}
.y2b4{bottom:196.953600pt;}
.y276{bottom:197.117867pt;}
.y2f5{bottom:197.293600pt;}
.yfb{bottom:198.586933pt;}
.y1ff{bottom:198.762400pt;}
.y1d2{bottom:200.153600pt;}
.y63{bottom:200.813600pt;}
.yc4{bottom:201.986800pt;}
.y94{bottom:201.986933pt;}
.y1f0{bottom:202.113600pt;}
.yd2{bottom:207.520400pt;}
.y18c{bottom:209.114000pt;}
.y26{bottom:209.309733pt;}
.y233{bottom:210.207867pt;}
.y2b3{bottom:210.281600pt;}
.y275{bottom:210.445867pt;}
.y2f4{bottom:210.621600pt;}
.y1fe{bottom:212.090400pt;}
.y1bb{bottom:215.173067pt;}
.yfa{bottom:215.253600pt;}
.y13b{bottom:215.594667pt;}
.y1d1{bottom:216.820267pt;}
.y62{bottom:217.480267pt;}
.yc3{bottom:218.653467pt;}
.y93{bottom:218.653600pt;}
.y1ef{bottom:218.780267pt;}
.y232{bottom:223.535867pt;}
.y2b2{bottom:223.609600pt;}
.y13a{bottom:223.728133pt;}
.y274{bottom:223.773867pt;}
.y2f3{bottom:223.949600pt;}
.yd1{bottom:224.186933pt;}
.y13e{bottom:225.237333pt;}
.y1fd{bottom:225.418400pt;}
.y18b{bottom:225.751333pt;}
.y24{bottom:225.976400pt;}
.y1ba{bottom:228.501067pt;}
.yf9{bottom:231.920267pt;}
.y1d0{bottom:233.486933pt;}
.y61{bottom:234.146933pt;}
.yc2{bottom:235.320133pt;}
.y92{bottom:235.320267pt;}
.y1ee{bottom:235.446933pt;}
.y231{bottom:236.863867pt;}
.y2b1{bottom:236.937600pt;}
.y273{bottom:237.101867pt;}
.y2f2{bottom:237.277600pt;}
.y1fc{bottom:238.746400pt;}
.y1b9{bottom:241.829067pt;}
.y18a{bottom:242.384667pt;}
.y23{bottom:242.643067pt;}
.yf8{bottom:248.586933pt;}
.y1cf{bottom:250.153600pt;}
.y120{bottom:250.176000pt;}
.y230{bottom:250.191867pt;}
.y2b0{bottom:250.265600pt;}
.y272{bottom:250.429867pt;}
.y2f1{bottom:250.605600pt;}
.y60{bottom:250.813600pt;}
.yc1{bottom:251.986800pt;}
.y91{bottom:251.986933pt;}
.y1fb{bottom:252.074400pt;}
.y1ed{bottom:252.113600pt;}
.y1b8{bottom:255.157067pt;}
.y11f{bottom:258.522933pt;}
.y122{bottom:258.528133pt;}
.y189{bottom:259.018000pt;}
.y22{bottom:259.309733pt;}
.y22f{bottom:263.519867pt;}
.y2af{bottom:263.593600pt;}
.y271{bottom:263.757867pt;}
.y2f0{bottom:263.933600pt;}
.yf7{bottom:265.253600pt;}
.yd9{bottom:265.854667pt;}
.y1ce{bottom:266.820267pt;}
.y5f{bottom:267.480267pt;}
.y1b7{bottom:268.485067pt;}
.yc0{bottom:268.653467pt;}
.y90{bottom:268.653600pt;}
.y1ec{bottom:268.780267pt;}
.ydb{bottom:271.969733pt;}
.yd8{bottom:273.920400pt;}
.y11e{bottom:275.376267pt;}
.y188{bottom:275.651333pt;}
.y21{bottom:275.976400pt;}
.y22e{bottom:276.847867pt;}
.y2ae{bottom:276.921600pt;}
.y270{bottom:277.085867pt;}
.y2ef{bottom:277.261600pt;}
.y1b6{bottom:281.813067pt;}
.yf6{bottom:281.920267pt;}
.y1fa{bottom:282.039733pt;}
.y1cd{bottom:283.486933pt;}
.y5e{bottom:284.146933pt;}
.ybf{bottom:285.320133pt;}
.y8f{bottom:285.320267pt;}
.y1eb{bottom:285.446933pt;}
.y22d{bottom:290.175867pt;}
.y2ad{bottom:290.249600pt;}
.y26f{bottom:290.413867pt;}
.y2ee{bottom:290.589600pt;}
.y11d{bottom:292.042933pt;}
.y187{bottom:292.284667pt;}
.y20{bottom:292.643067pt;}
.y1b5{bottom:295.141067pt;}
.y1f9{bottom:295.367733pt;}
.yf5{bottom:298.586933pt;}
.y1cc{bottom:300.153600pt;}
.y5d{bottom:300.813600pt;}
.ybe{bottom:301.986800pt;}
.y8e{bottom:301.986933pt;}
.y1ea{bottom:302.113600pt;}
.y22c{bottom:303.503867pt;}
.y2ac{bottom:303.577600pt;}
.y26e{bottom:303.741867pt;}
.y32e{bottom:303.860933pt;}
.y2ed{bottom:303.917600pt;}
.y1b4{bottom:308.469067pt;}
.yd0{bottom:308.653600pt;}
.y1f8{bottom:308.695733pt;}
.y11c{bottom:308.709600pt;}
.y186{bottom:308.918000pt;}
.y1f{bottom:309.309733pt;}
.yf4{bottom:315.253600pt;}
.y1cb{bottom:316.820267pt;}
.y22b{bottom:316.831867pt;}
.y2ab{bottom:316.905600pt;}
.y26d{bottom:317.069867pt;}
.y32d{bottom:317.188933pt;}
.y2ec{bottom:317.245600pt;}
.y5c{bottom:317.480267pt;}
.ybd{bottom:318.653467pt;}
.y8d{bottom:318.653600pt;}
.y1e9{bottom:318.780267pt;}
.y1b3{bottom:321.797067pt;}
.y1f7{bottom:322.023733pt;}
.ycf{bottom:325.320267pt;}
.y185{bottom:325.551333pt;}
.y1e{bottom:325.976400pt;}
.y22a{bottom:330.159867pt;}
.y2aa{bottom:330.233600pt;}
.y26c{bottom:330.397867pt;}
.y32c{bottom:330.516933pt;}
.y2eb{bottom:330.573600pt;}
.yf3{bottom:331.920267pt;}
.y1ca{bottom:333.486933pt;}
.y5b{bottom:334.146933pt;}
.y1b2{bottom:335.125067pt;}
.ybc{bottom:335.320133pt;}
.y8c{bottom:335.320267pt;}
.y1e8{bottom:335.446933pt;}
.y184{bottom:342.184667pt;}
.y1d{bottom:342.643067pt;}
.y229{bottom:343.487867pt;}
.y2a9{bottom:343.561600pt;}
.y26b{bottom:343.725867pt;}
.y32b{bottom:343.844933pt;}
.y2ea{bottom:343.901600pt;}
.y1b1{bottom:348.453067pt;}
.yf2{bottom:348.586933pt;}
.y1c9{bottom:350.153600pt;}
.y136{bottom:350.376000pt;}
.y5a{bottom:350.813600pt;}
.ybb{bottom:351.986800pt;}
.y8b{bottom:351.986933pt;}
.y1e7{bottom:352.113600pt;}
.y228{bottom:356.815867pt;}
.y2a8{bottom:356.889600pt;}
.y26a{bottom:357.053867pt;}
.y32a{bottom:357.172933pt;}
.y2e9{bottom:357.229600pt;}
.y135{bottom:358.376267pt;}
.yce{bottom:358.653600pt;}
.y183{bottom:358.827333pt;}
.y1c{bottom:359.309733pt;}
.y138{bottom:359.752000pt;}
.y1b0{bottom:361.781067pt;}
.yf1{bottom:365.253600pt;}
.y1c8{bottom:366.820267pt;}
.y59{bottom:367.480267pt;}
.yba{bottom:368.653467pt;}
.y8a{bottom:368.653600pt;}
.y1e6{bottom:368.780267pt;}
.y227{bottom:370.143867pt;}
.y2a7{bottom:370.217600pt;}
.y269{bottom:370.381867pt;}
.y329{bottom:370.500933pt;}
.y2e8{bottom:370.557600pt;}
.y1af{bottom:375.109067pt;}
.y182{bottom:375.464667pt;}
.y1b{bottom:375.976400pt;}
.yf0{bottom:381.920267pt;}
.y226{bottom:383.471867pt;}
.y1c7{bottom:383.486933pt;}
.y2a6{bottom:383.545600pt;}
.y268{bottom:383.709867pt;}
.y328{bottom:383.828933pt;}
.y2e7{bottom:383.885600pt;}
.y58{bottom:384.146933pt;}
.y119{bottom:384.690667pt;}
.yb9{bottom:385.320133pt;}
.y89{bottom:385.320267pt;}
.y1e5{bottom:385.446933pt;}
.y1ae{bottom:388.437067pt;}
.y181{bottom:392.102000pt;}
.y1a{bottom:392.643067pt;}
.y118{bottom:393.037600pt;}
.y225{bottom:396.799867pt;}
.y2a5{bottom:396.873600pt;}
.y267{bottom:397.037867pt;}
.y327{bottom:397.156933pt;}
.y2e6{bottom:397.213600pt;}
.yef{bottom:398.586933pt;}
.y1c6{bottom:400.153600pt;}
.y57{bottom:400.813600pt;}
.y1ad{bottom:401.765067pt;}
.yb8{bottom:401.986800pt;}
.y88{bottom:401.986933pt;}
.y1e4{bottom:402.113600pt;}
.y180{bottom:408.739333pt;}
.y19{bottom:409.309733pt;}
.y117{bottom:409.890933pt;}
.y224{bottom:410.127867pt;}
.y2a4{bottom:410.201600pt;}
.y266{bottom:410.365867pt;}
.y326{bottom:410.484933pt;}
.y2e5{bottom:410.541600pt;}
.y1ac{bottom:415.093067pt;}
.yee{bottom:415.253600pt;}
.y1c5{bottom:416.820267pt;}
.y56{bottom:417.480267pt;}
.yb7{bottom:418.653467pt;}
.y87{bottom:418.653600pt;}
.y1e3{bottom:418.780267pt;}
.y223{bottom:423.455867pt;}
.y2a3{bottom:423.529600pt;}
.y265{bottom:423.693867pt;}
.y325{bottom:423.812933pt;}
.y2e4{bottom:423.869600pt;}
.y17f{bottom:425.376667pt;}
.y18{bottom:425.976400pt;}
.y116{bottom:426.557600pt;}
.yed{bottom:431.920267pt;}
.y1c4{bottom:433.486933pt;}
.y55{bottom:434.146933pt;}
.yb6{bottom:435.320133pt;}
.y86{bottom:435.320267pt;}
.y1e2{bottom:435.446933pt;}
.y222{bottom:436.783867pt;}
.y2a2{bottom:436.857600pt;}
.y264{bottom:437.021867pt;}
.y324{bottom:437.140933pt;}
.y2e3{bottom:437.197600pt;}
.y17{bottom:442.643067pt;}
.yec{bottom:448.586933pt;}
.y221{bottom:450.111867pt;}
.y1c3{bottom:450.153600pt;}
.y2a1{bottom:450.185600pt;}
.y17c{bottom:450.332667pt;}
.y263{bottom:450.349867pt;}
.y323{bottom:450.468933pt;}
.y2e2{bottom:450.525600pt;}
.y54{bottom:450.813600pt;}
.yb5{bottom:451.986800pt;}
.y85{bottom:451.986933pt;}
.y1e1{bottom:452.113600pt;}
.y16{bottom:459.309733pt;}
.y19e{bottom:462.226933pt;}
.y220{bottom:463.439867pt;}
.y2a0{bottom:463.513600pt;}
.y17b{bottom:463.660667pt;}
.y17e{bottom:463.672000pt;}
.y262{bottom:463.677867pt;}
.y322{bottom:463.796933pt;}
.y2e1{bottom:463.853600pt;}
.yeb{bottom:465.253600pt;}
.y1c2{bottom:466.820267pt;}
.y53{bottom:467.480267pt;}
.y131{bottom:468.224000pt;}
.yb4{bottom:468.653467pt;}
.y84{bottom:468.653600pt;}
.y1e0{bottom:468.780267pt;}
.y25{bottom:475.976400pt;}
.y130{bottom:476.226667pt;}
.y21f{bottom:476.767867pt;}
.y29f{bottom:476.841600pt;}
.y17a{bottom:476.988667pt;}
.y17d{bottom:477.000000pt;}
.y261{bottom:477.005867pt;}
.y321{bottom:477.124933pt;}
.y2e0{bottom:477.181600pt;}
.y134{bottom:477.600133pt;}
.y19d{bottom:478.893600pt;}
.y1c1{bottom:483.486933pt;}
.y52{bottom:484.146933pt;}
.yb3{bottom:485.320133pt;}
.y83{bottom:485.320267pt;}
.y1df{bottom:485.446933pt;}
.y21e{bottom:490.095867pt;}
.y29e{bottom:490.169600pt;}
.y260{bottom:490.333867pt;}
.y320{bottom:490.452933pt;}
.y2df{bottom:490.509600pt;}
.y15{bottom:492.643067pt;}
.y19c{bottom:495.560267pt;}
.yea{bottom:498.586933pt;}
.y179{bottom:499.652267pt;}
.y1c0{bottom:500.153600pt;}
.y51{bottom:500.813600pt;}
.yb2{bottom:501.986800pt;}
.y82{bottom:501.986933pt;}
.y1de{bottom:502.113600pt;}
.y21d{bottom:503.423867pt;}
.y29d{bottom:503.497600pt;}
.y25f{bottom:503.661867pt;}
.y31f{bottom:503.780933pt;}
.y2de{bottom:503.837600pt;}
.y115{bottom:510.890933pt;}
.y19b{bottom:512.226933pt;}
.y178{bottom:512.980267pt;}
.y1bf{bottom:516.820267pt;}
.y29c{bottom:516.825600pt;}
.y25e{bottom:516.989867pt;}
.y31e{bottom:517.108933pt;}
.y2dd{bottom:517.165600pt;}
.y50{bottom:517.480267pt;}
.yb1{bottom:518.653467pt;}
.y81{bottom:518.653600pt;}
.y1dd{bottom:518.780267pt;}
.y114{bottom:527.557600pt;}
.y19a{bottom:528.893600pt;}
.y29b{bottom:530.153600pt;}
.y25d{bottom:530.317867pt;}
.y31d{bottom:530.436933pt;}
.y2dc{bottom:530.493600pt;}
.ye9{bottom:531.920267pt;}
.y21c{bottom:533.423867pt;}
.y1be{bottom:533.486933pt;}
.y4f{bottom:534.146933pt;}
.yb0{bottom:535.320133pt;}
.y80{bottom:535.320267pt;}
.y1dc{bottom:535.446933pt;}
.y14{bottom:542.643067pt;}
.y29a{bottom:543.481600pt;}
.y25c{bottom:543.645867pt;}
.y31c{bottom:543.764933pt;}
.y2db{bottom:543.821600pt;}
.y113{bottom:544.224267pt;}
.y199{bottom:545.560267pt;}
.ye8{bottom:548.586933pt;}
.y1bd{bottom:550.153600pt;}
.y4e{bottom:550.813600pt;}
.yaf{bottom:551.986800pt;}
.y7f{bottom:551.986933pt;}
.y1db{bottom:552.113600pt;}
.y299{bottom:556.809600pt;}
.y25b{bottom:556.973867pt;}
.y31b{bottom:557.092933pt;}
.y2da{bottom:557.149600pt;}
.y112{bottom:560.890933pt;}
.y198{bottom:562.226933pt;}
.ye7{bottom:565.253600pt;}
.y15e{bottom:566.696267pt;}
.y4d{bottom:567.480267pt;}
.yae{bottom:568.653467pt;}
.y7e{bottom:568.653600pt;}
.y177{bottom:568.656267pt;}
.y1da{bottom:568.780267pt;}
.y298{bottom:570.137600pt;}
.y25a{bottom:570.301867pt;}
.y31a{bottom:570.420933pt;}
.y2d9{bottom:570.477600pt;}
.y13{bottom:575.976400pt;}
.y111{bottom:577.557600pt;}
.y197{bottom:578.893600pt;}
.ye6{bottom:581.920267pt;}
.y15d{bottom:583.362933pt;}
.y297{bottom:583.465600pt;}
.y1bc{bottom:583.486933pt;}
.y259{bottom:583.629867pt;}
.y319{bottom:583.748933pt;}
.y2d8{bottom:583.805600pt;}
.y4c{bottom:584.146933pt;}
.yad{bottom:585.320133pt;}
.y7d{bottom:585.320267pt;}
.y176{bottom:585.322933pt;}
.y1d9{bottom:585.446933pt;}
.y21b{bottom:590.163733pt;}
.y12{bottom:592.643067pt;}
.y110{bottom:594.224267pt;}
.y196{bottom:595.560267pt;}
.y296{bottom:596.793600pt;}
.y258{bottom:596.957867pt;}
.y318{bottom:597.076933pt;}
.y2d7{bottom:597.133600pt;}
.ye5{bottom:598.586933pt;}
.y4b{bottom:600.813600pt;}
.yac{bottom:601.986800pt;}
.y7c{bottom:601.986933pt;}
.y175{bottom:601.989600pt;}
.y21a{bottom:603.491733pt;}
.y11{bottom:609.309733pt;}
.y295{bottom:610.121600pt;}
.y257{bottom:610.285867pt;}
.y317{bottom:610.404933pt;}
.y2d6{bottom:610.461600pt;}
.y10f{bottom:610.890933pt;}
.y195{bottom:612.226933pt;}
.y15c{bottom:616.696267pt;}
.y219{bottom:616.819733pt;}
.y4a{bottom:617.480267pt;}
.yab{bottom:618.653467pt;}
.y7b{bottom:618.653600pt;}
.y174{bottom:618.656267pt;}
.y294{bottom:623.449600pt;}
.y102{bottom:623.586667pt;}
.y256{bottom:623.613867pt;}
.y316{bottom:623.732933pt;}
.y2d5{bottom:623.789600pt;}
.y101{bottom:624.453600pt;}
.y10{bottom:625.976400pt;}
.y10e{bottom:627.557600pt;}
.y194{bottom:628.893600pt;}
.y218{bottom:630.147733pt;}
.y49{bottom:634.146933pt;}
.yaa{bottom:635.320133pt;}
.y7a{bottom:635.320267pt;}
.y173{bottom:635.322933pt;}
.y293{bottom:636.777600pt;}
.y255{bottom:636.941867pt;}
.y315{bottom:637.060933pt;}
.y2d4{bottom:637.117600pt;}
.yf{bottom:642.643067pt;}
.y217{bottom:643.475733pt;}
.y10d{bottom:644.224267pt;}
.y193{bottom:645.560267pt;}
.y15b{bottom:650.029600pt;}
.y292{bottom:650.105600pt;}
.y254{bottom:650.269867pt;}
.y314{bottom:650.388933pt;}
.y2d3{bottom:650.445600pt;}
.y48{bottom:650.813600pt;}
.ya9{bottom:651.986800pt;}
.y79{bottom:651.986933pt;}
.y172{bottom:651.989600pt;}
.y216{bottom:656.803733pt;}
.ye{bottom:659.309733pt;}
.y10c{bottom:660.890933pt;}
.y291{bottom:663.433600pt;}
.y253{bottom:663.597867pt;}
.y313{bottom:663.716933pt;}
.y2d2{bottom:663.773600pt;}
.y15a{bottom:666.696267pt;}
.y47{bottom:667.480267pt;}
.ya8{bottom:668.653467pt;}
.y78{bottom:668.653600pt;}
.y171{bottom:668.656267pt;}
.y215{bottom:670.131733pt;}
.yd{bottom:675.976400pt;}
.y290{bottom:676.761600pt;}
.y252{bottom:676.925867pt;}
.y312{bottom:677.044933pt;}
.y2d1{bottom:677.101600pt;}
.y10b{bottom:677.557600pt;}
.y159{bottom:683.362933pt;}
.y214{bottom:683.459733pt;}
.y46{bottom:684.146933pt;}
.ya7{bottom:685.320133pt;}
.y77{bottom:685.320267pt;}
.y170{bottom:685.322933pt;}
.y28f{bottom:690.089600pt;}
.y251{bottom:690.253867pt;}
.y311{bottom:690.372933pt;}
.y2d0{bottom:690.429600pt;}
.yc{bottom:692.643067pt;}
.y10a{bottom:694.224267pt;}
.y213{bottom:696.787733pt;}
.y158{bottom:700.029600pt;}
.y45{bottom:700.813600pt;}
.ya6{bottom:701.986800pt;}
.y76{bottom:701.986933pt;}
.y16f{bottom:701.989600pt;}
.y28e{bottom:703.417600pt;}
.y250{bottom:703.581867pt;}
.y310{bottom:703.700933pt;}
.y2cf{bottom:703.757600pt;}
.yb{bottom:709.309733pt;}
.y212{bottom:710.115733pt;}
.y109{bottom:710.890933pt;}
.y157{bottom:716.696267pt;}
.y28d{bottom:716.745600pt;}
.y24f{bottom:716.909867pt;}
.y30f{bottom:717.028933pt;}
.y2ce{bottom:717.085600pt;}
.y44{bottom:717.480267pt;}
.ya5{bottom:718.653467pt;}
.y75{bottom:718.653600pt;}
.y16e{bottom:718.656267pt;}
.y211{bottom:723.443733pt;}
.ya{bottom:725.976400pt;}
.y108{bottom:727.557600pt;}
.y28c{bottom:730.073600pt;}
.y24e{bottom:730.237867pt;}
.y30e{bottom:730.356933pt;}
.y2cd{bottom:730.413600pt;}
.y156{bottom:733.362933pt;}
.y43{bottom:734.146933pt;}
.ya4{bottom:735.320133pt;}
.y74{bottom:735.320267pt;}
.y16d{bottom:735.322933pt;}
.y210{bottom:736.771733pt;}
.y9{bottom:742.643067pt;}
.y28b{bottom:743.401600pt;}
.y24d{bottom:743.565867pt;}
.y30d{bottom:743.684933pt;}
.y2cc{bottom:743.741600pt;}
.y107{bottom:744.224267pt;}
.y155{bottom:750.029600pt;}
.y42{bottom:750.813600pt;}
.ya3{bottom:751.986800pt;}
.y73{bottom:751.986933pt;}
.y16c{bottom:751.989600pt;}
.y28a{bottom:756.729600pt;}
.y24c{bottom:756.893867pt;}
.y30c{bottom:757.012933pt;}
.y2cb{bottom:757.069600pt;}
.y106{bottom:760.890933pt;}
.y154{bottom:766.696267pt;}
.y41{bottom:767.480267pt;}
.ya2{bottom:768.653467pt;}
.y72{bottom:768.653600pt;}
.y16b{bottom:768.656267pt;}
.y1ab{bottom:769.060267pt;}
.y289{bottom:770.057600pt;}
.y24b{bottom:770.221867pt;}
.y30b{bottom:770.340933pt;}
.y2ca{bottom:770.397600pt;}
.y20f{bottom:773.389733pt;}
.y105{bottom:777.557600pt;}
.y8{bottom:781.916667pt;}
.y1aa{bottom:782.388267pt;}
.y288{bottom:783.385600pt;}
.y24a{bottom:783.549867pt;}
.y30a{bottom:783.668933pt;}
.y2c9{bottom:783.725600pt;}
.y40{bottom:784.146933pt;}
.ya1{bottom:785.320133pt;}
.y71{bottom:785.320267pt;}
.y16a{bottom:785.322933pt;}
.y20e{bottom:786.717733pt;}
.y104{bottom:794.224267pt;}
.y33{bottom:794.733333pt;}
.y7{bottom:795.244667pt;}
.y1a9{bottom:795.716267pt;}
.y287{bottom:796.713600pt;}
.y249{bottom:796.877867pt;}
.y309{bottom:796.996933pt;}
.y2c8{bottom:797.053600pt;}
.y153{bottom:800.029600pt;}
.y3f{bottom:800.813600pt;}
.ya0{bottom:801.986800pt;}
.ycd{bottom:801.986933pt;}
.y169{bottom:801.989600pt;}
.y1a8{bottom:809.044267pt;}
.y286{bottom:810.041600pt;}
.y248{bottom:810.205867pt;}
.y308{bottom:810.324933pt;}
.y2c7{bottom:810.381600pt;}
.y20d{bottom:813.351067pt;}
.y3e{bottom:817.480267pt;}
.y9f{bottom:818.653467pt;}
.y70{bottom:818.653600pt;}
.y168{bottom:818.656267pt;}
.y1a7{bottom:822.372267pt;}
.y285{bottom:823.369600pt;}
.y247{bottom:823.533867pt;}
.y307{bottom:823.652933pt;}
.y2c6{bottom:823.709600pt;}
.y6{bottom:833.111333pt;}
.y152{bottom:833.362933pt;}
.y3d{bottom:834.146933pt;}
.y9e{bottom:835.320133pt;}
.ycc{bottom:835.320267pt;}
.y167{bottom:835.322933pt;}
.y1a6{bottom:835.700267pt;}
.y284{bottom:836.697600pt;}
.y246{bottom:836.861867pt;}
.y306{bottom:836.980933pt;}
.y2c5{bottom:837.037600pt;}
.y20c{bottom:839.984400pt;}
.y14b{bottom:844.388533pt;}
.y1a5{bottom:849.028267pt;}
.y283{bottom:850.025600pt;}
.y151{bottom:850.029600pt;}
.y245{bottom:850.189867pt;}
.y305{bottom:850.308933pt;}
.y2c4{bottom:850.365600pt;}
.y3c{bottom:850.813600pt;}
.y9d{bottom:851.986800pt;}
.ycb{bottom:851.986933pt;}
.y166{bottom:851.989600pt;}
.y147{bottom:855.621333pt;}
.y1a4{bottom:862.356267pt;}
.y282{bottom:863.353600pt;}
.y244{bottom:863.517867pt;}
.y304{bottom:863.636933pt;}
.y2c3{bottom:863.693600pt;}
.y146{bottom:864.722667pt;}
.y14a{bottom:866.568667pt;}
.y20b{bottom:866.617733pt;}
.y150{bottom:866.696267pt;}
.y3b{bottom:867.480267pt;}
.y9c{bottom:868.653467pt;}
.yde{bottom:868.653600pt;}
.y165{bottom:868.656267pt;}
.y5{bottom:872.832667pt;}
.y1a3{bottom:875.684267pt;}
.y281{bottom:876.681600pt;}
.y243{bottom:876.845867pt;}
.y303{bottom:876.964933pt;}
.y2c2{bottom:877.021600pt;}
.y145{bottom:881.360000pt;}
.y14f{bottom:883.362933pt;}
.y3a{bottom:884.146933pt;}
.y6f{bottom:885.320267pt;}
.y164{bottom:885.322933pt;}
.y1a2{bottom:889.012267pt;}
.y280{bottom:890.009600pt;}
.y242{bottom:890.173867pt;}
.y302{bottom:890.292933pt;}
.y2c1{bottom:890.349600pt;}
.y20a{bottom:896.617733pt;}
.y4{bottom:896.832667pt;}
.y14e{bottom:900.029600pt;}
.y39{bottom:900.813600pt;}
.y9b{bottom:901.986800pt;}
.y6e{bottom:901.986933pt;}
.y163{bottom:901.989600pt;}
.y1a1{bottom:902.340267pt;}
.y27f{bottom:903.337600pt;}
.y241{bottom:903.501867pt;}
.y301{bottom:903.620933pt;}
.y2c0{bottom:903.677600pt;}
.y144{bottom:906.327333pt;}
.y1a0{bottom:915.668267pt;}
.y27e{bottom:916.665600pt;}
.y240{bottom:916.829867pt;}
.y300{bottom:916.948933pt;}
.y2bf{bottom:917.005600pt;}
.y38{bottom:917.480267pt;}
.y6d{bottom:918.653600pt;}
.y162{bottom:918.656267pt;}
.y143{bottom:919.655333pt;}
.y19f{bottom:928.996267pt;}
.y209{bottom:929.993600pt;}
.y23f{bottom:930.157867pt;}
.y2ff{bottom:930.276933pt;}
.y2be{bottom:930.333600pt;}
.y14d{bottom:933.362933pt;}
.y37{bottom:934.146933pt;}
.y6c{bottom:935.320267pt;}
.y161{bottom:935.322933pt;}
.y142{bottom:942.324267pt;}
.y208{bottom:943.321600pt;}
.y23e{bottom:943.485867pt;}
.y2fe{bottom:943.604933pt;}
.y2bd{bottom:943.661600pt;}
.y36{bottom:950.813600pt;}
.y6b{bottom:951.986933pt;}
.y160{bottom:951.989600pt;}
.y141{bottom:955.652267pt;}
.y207{bottom:956.649600pt;}
.y23d{bottom:956.813867pt;}
.y2fd{bottom:956.932933pt;}
.y2bc{bottom:956.989600pt;}
.y14c{bottom:966.696267pt;}
.y35{bottom:967.480267pt;}
.y6a{bottom:968.653600pt;}
.y15f{bottom:968.656267pt;}
.y140{bottom:968.980267pt;}
.y206{bottom:969.977600pt;}
.y23c{bottom:970.141867pt;}
.y2fc{bottom:970.260933pt;}
.y2bb{bottom:970.317600pt;}
.y3{bottom:986.299200pt;}
.y34{bottom:1000.893333pt;}
.y69{bottom:1001.693333pt;}
.h17{height:11.733333pt;}
.h28{height:15.319422pt;}
.h26{height:15.500717pt;}
.h1b{height:16.505341pt;}
.h25{height:17.600000pt;}
.h1a{height:18.030993pt;}
.h22{height:20.591813pt;}
.h27{height:21.669131pt;}
.h1c{height:22.532000pt;}
.h19{height:22.533333pt;}
.h1d{height:26.000000pt;}
.h11{height:26.132000pt;}
.h16{height:26.133333pt;}
.h21{height:26.266667pt;}
.h20{height:29.180627pt;}
.hb{height:29.321600pt;}
.h2{height:30.080000pt;}
.hc{height:31.960000pt;}
.h12{height:34.888720pt;}
.h1f{height:35.528880pt;}
.h1e{height:35.582227pt;}
.h14{height:36.062347pt;}
.h18{height:36.702507pt;}
.h4{height:39.712000pt;}
.ha{height:41.888000pt;}
.h2a{height:41.904000pt;}
.h29{height:46.376000pt;}
.h2c{height:46.648000pt;}
.h2b{height:47.470933pt;}
.h2e{height:47.476267pt;}
.h23{height:47.826667pt;}
.h2d{height:47.838933pt;}
.h3{height:48.766452pt;}
.h8{height:49.280000pt;}
.h13{height:49.357813pt;}
.hf{height:52.448000pt;}
.h7{height:52.746667pt;}
.hd{height:54.560000pt;}
.h10{height:54.560533pt;}
.he{height:55.829333pt;}
.h2f{height:56.266667pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h15{height:73.405013pt;}
.h5{height:75.605333pt;}
.h24{height:101.138667pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w6{width:25.998667pt;}
.w5{width:26.000000pt;}
.wa{width:26.053333pt;}
.wb{width:26.054667pt;}
.w7{width:34.546667pt;}
.w8{width:59.506667pt;}
.w9{width:75.028000pt;}
.w4{width:190.400000pt;}
.w2{width:288.026667pt;}
.w3{width:302.921333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.258267pt;}
.x13{left:14.726800pt;}
.x22{left:16.348933pt;}
.x20{left:48.447867pt;}
.x1e{left:51.438533pt;}
.x3{left:68.031467pt;}
.x9{left:69.996800pt;}
.xc{left:74.659600pt;}
.x4{left:83.138133pt;}
.x7{left:86.929867pt;}
.x28{left:95.367467pt;}
.x8{left:173.373333pt;}
.x27{left:192.256133pt;}
.x26{left:247.868800pt;}
.xd{left:259.923067pt;}
.xe{left:267.867467pt;}
.x11{left:274.804533pt;}
.x12{left:282.749067pt;}
.xb{left:369.958533pt;}
.x5{left:408.178133pt;}
.x10{left:414.816667pt;}
.x6{left:423.284800pt;}
.x29{left:435.571467pt;}
.x1f{left:443.795867pt;}
.x1d{left:446.786400pt;}
.x24{left:481.380800pt;}
.x1a{left:527.838667pt;}
.x21{left:535.980933pt;}
.x1b{left:553.906133pt;}
.x25{left:592.345467pt;}
.x16{left:609.077333pt;}
.x14{left:611.849333pt;}
.x17{left:635.143200pt;}
.x15{left:638.049867pt;}
.x23{left:644.858267pt;}
.x1{left:647.307200pt;}
.x18{left:663.204000pt;}
.x2{left:671.546533pt;}
.x19{left:689.271067pt;}
.xa{left:704.680000pt;}
.xf{left:710.088267pt;}
}


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