
/* 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_ced6121aba4f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_433678120dda.woff")format("woff");}.ff2{font-family:ff2;line-height:0.806000;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_f1648b80b57b.woff")format("woff");}.ff3{font-family:ff3;line-height:0.730000;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_f1648b80b57b.woff")format("woff");}.ff4{font-family:ff4;line-height:0.730000;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_0a834a973c27.woff")format("woff");}.ff5{font-family:ff5;line-height:0.812000;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_ddc30951409f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.812000;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_3e60652b6fed.woff")format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_5b1478e463a5.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_86835aef7ee7.woff")format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_76c648727c02.woff")format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_3715bac93d91.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_9db3cdd0d929.woff")format("woff");}.ffc{font-family:ffc;line-height:0.972000;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_0619d1ce5227.woff")format("woff");}.ffd{font-family:ffd;line-height:0.355000;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_26c2ccdc4749.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_a956624d4800.woff")format("woff");}.fff{font-family:fff;line-height:0.954000;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_bd6bd82d9774.woff")format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_266d4171228b.woff")format("woff");}.ff11{font-family:ff11;line-height:1.174000;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_f1648b80b57b.woff")format("woff");}.ff12{font-family:ff12;line-height:0.730000;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_ced6121aba4f.woff")format("woff");}.ff13{font-family:ff13;line-height:0.995000;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_433678120dda.woff")format("woff");}.ff14{font-family:ff14;line-height:0.806000;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_b1aaa2a4ef8a.woff")format("woff");}.ff15{font-family:ff15;line-height:0.265000;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_ced6121aba4f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.995000;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_433678120dda.woff")format("woff");}.ff17{font-family:ff17;line-height:0.806000;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_f1648b80b57b.woff")format("woff");}.ff18{font-family:ff18;line-height:0.730000;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_509dfa080592.woff")format("woff");}.ff19{font-family:ff19;line-height:0.470000;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_f1648b80b57b.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.730000;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_ced6121aba4f.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.995000;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_433678120dda.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.806000;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_89256a573869.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-1.359891px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-2.264016px;}
.ls47{letter-spacing:-1.396379px;}
.ls48{letter-spacing:-1.329429px;}
.ls46{letter-spacing:-1.310301px;}
.ls40{letter-spacing:-1.275008px;}
.ls1d{letter-spacing:-1.248109px;}
.ls23{letter-spacing:-1.205071px;}
.ls25{letter-spacing:-1.178172px;}
.ls3a{letter-spacing:-1.172792px;}
.lsf{letter-spacing:-1.167412px;}
.ls2b{letter-spacing:-1.162032px;}
.ls16{letter-spacing:-1.151273px;}
.ls49{letter-spacing:-1.138145px;}
.ls2d{letter-spacing:-1.135134px;}
.ls3f{letter-spacing:-1.124374px;}
.ls30{letter-spacing:-1.108235px;}
.ls36{letter-spacing:-1.102855px;}
.ls1b{letter-spacing:-1.081336px;}
.ls29{letter-spacing:-1.075956px;}
.ls18{letter-spacing:-1.070576px;}
.ls1a{letter-spacing:-1.065196px;}
.ls21{letter-spacing:-1.059817px;}
.lse{letter-spacing:-1.054437px;}
.ls19{letter-spacing:-1.049057px;}
.ls3d{letter-spacing:-1.043677px;}
.ls34{letter-spacing:-1.032918px;}
.ls1f{letter-spacing:-1.027538px;}
.ls31{letter-spacing:-1.022158px;}
.ls26{letter-spacing:-1.016778px;}
.ls35{letter-spacing:-1.006019px;}
.ls27{letter-spacing:-1.000639px;}
.ls39{letter-spacing:-0.995259px;}
.ls24{letter-spacing:-0.989880px;}
.ls2e{letter-spacing:-0.984500px;}
.ls37{letter-spacing:-0.979120px;}
.ls2a{letter-spacing:-0.968360px;}
.ls38{letter-spacing:-0.957601px;}
.ls28{letter-spacing:-0.946841px;}
.ls2f{letter-spacing:-0.941462px;}
.ls32{letter-spacing:-0.930702px;}
.ls22{letter-spacing:-0.909183px;}
.ls33{letter-spacing:-0.893043px;}
.ls1c{letter-spacing:-0.864245px;}
.ls17{letter-spacing:-0.831971px;}
.ls1e{letter-spacing:-0.810454px;}
.ls10{letter-spacing:-0.075318px;}
.ls9{letter-spacing:-0.022416px;}
.lsb{letter-spacing:-0.014346px;}
.lsa{letter-spacing:-0.008966px;}
.ls8{letter-spacing:-0.004483px;}
.lsc{letter-spacing:-0.004352px;}
.lsd{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003586px;}
.ls4{letter-spacing:0.004184px;}
.ls1{letter-spacing:0.004352px;}
.ls15{letter-spacing:0.004483px;}
.ls2{letter-spacing:0.013055px;}
.ls13{letter-spacing:0.037658px;}
.ls3b{letter-spacing:0.080697px;}
.ls12{letter-spacing:0.200820px;}
.ls14{letter-spacing:0.312027px;}
.ls5{letter-spacing:0.849409px;}
.ls43{letter-spacing:0.999463px;}
.ls0{letter-spacing:6.711350px;}
.ls20{letter-spacing:11.319057px;}
.ls41{letter-spacing:11.345956px;}
.ls45{letter-spacing:12.600886px;}
.ls3e{letter-spacing:13.368753px;}
.ls44{letter-spacing:13.586003px;}
.ls42{letter-spacing:14.046606px;}
.ls6{letter-spacing:17.176469px;}
.ls11{letter-spacing:26.298451px;}
.ls3c{letter-spacing:29.696386px;}
.ls2c{letter-spacing:32.418554px;}
.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;}
}
.wsb4{word-spacing:-32.472352px;}
.wse2{word-spacing:-29.750183px;}
.ws106{word-spacing:-14.100403px;}
.ws104{word-spacing:-13.422551px;}
.ws168{word-spacing:-12.648707px;}
.ws105{word-spacing:-11.399754px;}
.ws80{word-spacing:-11.372855px;}
.ws164{word-spacing:-1.511150px;}
.wsb{word-spacing:-0.095642px;}
.ws8{word-spacing:-0.056572px;}
.ws25{word-spacing:-0.053798px;}
.ws149{word-spacing:-0.047821px;}
.ws6e{word-spacing:-0.043338px;}
.ws63{word-spacing:-0.041843px;}
.ws1b{word-spacing:-0.039447px;}
.wsba{word-spacing:-0.035861px;}
.ws4{word-spacing:-0.022416px;}
.ws6f{word-spacing:0.000000px;}
.ws76{word-spacing:0.796110px;}
.ws7c{word-spacing:0.828384px;}
.wsb0{word-spacing:0.893043px;}
.ws167{word-spacing:1.348558px;}
.ws7{word-spacing:8.233379px;}
.ws6{word-spacing:8.986219px;}
.ws139{word-spacing:9.804496px;}
.ws163{word-spacing:10.568485px;}
.ws15d{word-spacing:11.061044px;}
.ws12c{word-spacing:11.093106px;}
.ws15c{word-spacing:11.300150px;}
.ws12d{word-spacing:11.432033px;}
.ws3{word-spacing:11.494925px;}
.ws137{word-spacing:11.503583px;}
.ws72{word-spacing:11.548723px;}
.ws15f{word-spacing:11.740105px;}
.ws123{word-spacing:11.776338px;}
.ws5d{word-spacing:11.840896px;}
.ws160{word-spacing:11.874004px;}
.ws15e{word-spacing:11.888350px;}
.ws74{word-spacing:11.997043px;}
.ws0{word-spacing:12.010493px;}
.wsaa{word-spacing:12.093745px;}
.ws182{word-spacing:12.103546px;}
.ws142{word-spacing:12.158303px;}
.ws2a{word-spacing:12.206721px;}
.ws15b{word-spacing:12.213534px;}
.ws10e{word-spacing:12.421912px;}
.wsb8{word-spacing:12.454191px;}
.wsb7{word-spacing:12.475710px;}
.ws175{word-spacing:12.543501px;}
.ws103{word-spacing:12.594065px;}
.wsb6{word-spacing:12.615584px;}
.ws136{word-spacing:12.669184px;}
.ws2{word-spacing:12.687456px;}
.ws71{word-spacing:12.696422px;}
.ws178{word-spacing:12.763478px;}
.ws9f{word-spacing:12.793117px;}
.wsf0{word-spacing:12.846915px;}
.ws9e{word-spacing:12.943751px;}
.ws177{word-spacing:12.964327px;}
.ws134{word-spacing:12.976029px;}
.wsaf{word-spacing:12.992169px;}
.ws179{word-spacing:13.093445px;}
.ws108{word-spacing:13.110524px;}
.ws68{word-spacing:13.121902px;}
.ws5e{word-spacing:13.142803px;}
.ws67{word-spacing:13.151192px;}
.ws174{word-spacing:13.169958px;}
.ws132{word-spacing:13.218119px;}
.ws65{word-spacing:13.226509px;}
.ws17a{word-spacing:13.232126px;}
.wsf3{word-spacing:13.239639px;}
.ws16b{word-spacing:13.251255px;}
.ws16c{word-spacing:13.275165px;}
.ws8f{word-spacing:13.288057px;}
.ws176{word-spacing:13.303858px;}
.ws69{word-spacing:13.339485px;}
.ws7f{word-spacing:13.352614px;}
.ws64{word-spacing:13.356222px;}
.ws109{word-spacing:13.406412px;}
.ws16d{word-spacing:13.432975px;}
.wsa3{word-spacing:13.487108px;}
.ws17d{word-spacing:13.495143px;}
.ws66{word-spacing:13.527777px;}
.ws4d{word-spacing:13.567805px;}
.ws16e{word-spacing:13.571657px;}
.wsce{word-spacing:13.619597px;}
.ws6a{word-spacing:13.690964px;}
.ws62{word-spacing:13.716070px;}
.ws6c{word-spacing:13.811821px;}
.wsf2{word-spacing:13.863693px;}
.ws35{word-spacing:13.906731px;}
.ws84{word-spacing:14.003567px;}
.ws14e{word-spacing:14.040304px;}
.ws183{word-spacing:14.045086px;}
.ws14d{word-spacing:14.112036px;}
.ws6d{word-spacing:14.115187px;}
.ws129{word-spacing:14.121923px;}
.ws145{word-spacing:14.202619px;}
.wsd8{word-spacing:14.220330px;}
.wsd4{word-spacing:14.224813px;}
.ws14f{word-spacing:14.250718px;}
.ws11d{word-spacing:14.294075px;}
.ws9c{word-spacing:14.407051px;}
.wsd0{word-spacing:14.408619px;}
.ws77{word-spacing:14.417810px;}
.ws75{word-spacing:14.423190px;}
.ws9b{word-spacing:14.482368px;}
.ws18{word-spacing:14.493127px;}
.wsec{word-spacing:14.514646px;}
.wsc5{word-spacing:14.568444px;}
.ws17b{word-spacing:14.571120px;}
.wsc4{word-spacing:14.573824px;}
.ws13{word-spacing:14.685891px;}
.ws8a{word-spacing:14.697559px;}
.ws181{word-spacing:14.752840px;}
.ws159{word-spacing:14.757622px;}
.wsab{word-spacing:14.778256px;}
.ws162{word-spacing:14.819790px;}
.ws153{word-spacing:14.934561px;}
.ws15a{word-spacing:14.972818px;}
.ws144{word-spacing:14.993447px;}
.ws16a{word-spacing:15.015857px;}
.ws118{word-spacing:15.052624px;}
.ws17e{word-spacing:15.058896px;}
.ws184{word-spacing:15.068460px;}
.ws17c{word-spacing:15.101935px;}
.ws148{word-spacing:15.106717px;}
.wsac{word-spacing:15.111802px;}
.ws147{word-spacing:15.130628px;}
.ws8b{word-spacing:15.133321px;}
.ws165{word-spacing:15.140192px;}
.ws2b{word-spacing:15.154840px;}
.ws152{word-spacing:15.159320px;}
.ws125{word-spacing:15.176359px;}
.ws14b{word-spacing:15.197577px;}
.ws14c{word-spacing:15.207142px;}
.ws29{word-spacing:15.267816px;}
.ws14a{word-spacing:15.274091px;}
.ws166{word-spacing:15.345823px;}
.ws11{word-spacing:15.379298px;}
.ws1d{word-spacing:15.472247px;}
.ws3e{word-spacing:15.493766px;}
.ws57{word-spacing:15.499146px;}
.ws54{word-spacing:15.536805px;}
.ws124{word-spacing:15.569083px;}
.ws56{word-spacing:15.595982px;}
.ws5b{word-spacing:15.606742px;}
.wsc7{word-spacing:15.692818px;}
.ws100{word-spacing:15.768135px;}
.ws9d{word-spacing:15.784275px;}
.ws9{word-spacing:15.822708px;}
.ws59{word-spacing:15.832693px;}
.ws3c{word-spacing:15.854212px;}
.ws73{word-spacing:15.897427px;}
.ws5{word-spacing:15.951226px;}
.ws60{word-spacing:15.961807px;}
.ws13e{word-spacing:16.047884px;}
.wsc8{word-spacing:16.096302px;}
.ws107{word-spacing:16.123201px;}
.wsdf{word-spacing:16.133960px;}
.ws61{word-spacing:16.187758px;}
.wse0{word-spacing:16.246936px;}
.ws133{word-spacing:16.392190px;}
.ws11f{word-spacing:16.591242px;}
.wsdc{word-spacing:16.602001px;}
.ws55{word-spacing:16.623520px;}
.wsa2{word-spacing:16.628900px;}
.wsb1{word-spacing:16.698837px;}
.ws12a{word-spacing:16.870990px;}
.ws11c{word-spacing:16.887129px;}
.wsef{word-spacing:16.940927px;}
.wsb2{word-spacing:16.951687px;}
.ws4a{word-spacing:17.016244px;}
.ws11b{word-spacing:17.027004px;}
.ws91{word-spacing:17.080801px;}
.ws1e{word-spacing:17.107700px;}
.wsfb{word-spacing:17.193777px;}
.wsed{word-spacing:17.215296px;}
.ws83{word-spacing:17.231435px;}
.wsf4{word-spacing:17.258334px;}
.wsa7{word-spacing:17.355170px;}
.wsa1{word-spacing:17.365930px;}
.ws2d{word-spacing:17.457386px;}
.ws27{word-spacing:17.516564px;}
.ws101{word-spacing:17.538083px;}
.ws86{word-spacing:17.554222px;}
.ws13d{word-spacing:17.597260px;}
.ws113{word-spacing:17.608020px;}
.ws138{word-spacing:17.676784px;}
.ws119{word-spacing:17.710236px;}
.ws143{word-spacing:17.715616px;}
.ws102{word-spacing:17.817831px;}
.ws10c{word-spacing:17.866249px;}
.ws161{word-spacing:17.918604px;}
.ws28{word-spacing:17.946946px;}
.wsf7{word-spacing:17.989984px;}
.ws85{word-spacing:17.995364px;}
.ws12f{word-spacing:18.016883px;}
.wscb{word-spacing:18.081441px;}
.ws2e{word-spacing:18.092200px;}
.ws1{word-spacing:18.094195px;}
.ws1a{word-spacing:18.108339px;}
.ws90{word-spacing:18.145998px;}
.ws114{word-spacing:18.328910px;}
.ws10{word-spacing:18.372905px;}
.ws16f{word-spacing:18.382469px;}
.ws169{word-spacing:18.392034px;}
.ws23{word-spacing:18.458025px;}
.ws95{word-spacing:18.549481px;}
.ws170{word-spacing:18.564190px;}
.ws51{word-spacing:18.667837px;}
.wsf8{word-spacing:18.737774px;}
.ws127{word-spacing:18.764673px;}
.ws11a{word-spacing:18.829230px;}
.ws45{word-spacing:18.893787px;}
.wsd{word-spacing:19.020596px;}
.ws3a{word-spacing:19.114358px;}
.wsf{word-spacing:19.152102px;}
.ws1f{word-spacing:19.157397px;}
.wsc{word-spacing:19.176012px;}
.ws9a{word-spacing:19.184295px;}
.ws21{word-spacing:19.216574px;}
.ws58{word-spacing:19.281132px;}
.wse{word-spacing:19.283609px;}
.ws20{word-spacing:19.351069px;}
.wsda{word-spacing:19.377968px;}
.ws3b{word-spacing:19.399487px;}
.wsd2{word-spacing:19.420703px;}
.ws120{word-spacing:19.496323px;}
.wsea{word-spacing:19.593159px;}
.wse4{word-spacing:19.598539px;}
.ws126{word-spacing:19.722273px;}
.ws185{word-spacing:19.745373px;}
.ws151{word-spacing:19.807541px;}
.ws34{word-spacing:19.889047px;}
.ws150{word-spacing:19.907966px;}
.ws49{word-spacing:19.948224px;}
.ws99{word-spacing:19.991262px;}
.ws116{word-spacing:20.028921px;}
.ws52{word-spacing:20.190314px;}
.wsd6{word-spacing:20.214208px;}
.ws53{word-spacing:20.287150px;}
.ws115{word-spacing:20.292530px;}
.ws48{word-spacing:20.319429px;}
.wsfd{word-spacing:20.330189px;}
.wsf1{word-spacing:20.346328px;}
.wsd7{word-spacing:20.348700px;}
.wsde{word-spacing:20.373227px;}
.ws39{word-spacing:20.416265px;}
.wscf{word-spacing:20.501125px;}
.wsfa{word-spacing:20.615317px;}
.ws3f{word-spacing:20.620697px;}
.ws141{word-spacing:20.631456px;}
.ws4f{word-spacing:20.712153px;}
.wsfe{word-spacing:20.722913px;}
.ws5c{word-spacing:21.002661px;}
.ws93{word-spacing:21.137156px;}
.wse6{word-spacing:21.147915px;}
.wsbb{word-spacing:21.201713px;}
.wsc6{word-spacing:21.207093px;}
.ws92{word-spacing:21.228612px;}
.ws5f{word-spacing:21.277030px;}
.ws36{word-spacing:21.562158px;}
.ws117{word-spacing:21.637475px;}
.wsb9{word-spacing:21.664374px;}
.wsfc{word-spacing:21.680513px;}
.wsa6{word-spacing:21.793489px;}
.ws17f{word-spacing:21.801685px;}
.ws22{word-spacing:21.911844px;}
.ws2f{word-spacing:21.917224px;}
.ws96{word-spacing:22.116276px;}
.ws140{word-spacing:22.191592px;}
.ws97{word-spacing:22.240011px;}
.wsa9{word-spacing:22.245390px;}
.wsb5{word-spacing:22.369125px;}
.ws122{word-spacing:22.396024px;}
.ws81{word-spacing:22.509000px;}
.ws47{word-spacing:22.713431px;}
.ws82{word-spacing:22.777989px;}
.ws46{word-spacing:22.799508px;}
.ws4e{word-spacing:22.939382px;}
.ws157{word-spacing:22.992433px;}
.ws10d{word-spacing:23.052357px;}
.ws158{word-spacing:23.059383px;}
.wsc9{word-spacing:23.111535px;}
.ws1c{word-spacing:23.170712px;}
.wsca{word-spacing:23.202991px;}
.wsa5{word-spacing:23.251409px;}
.ws19{word-spacing:23.359005px;}
.ws4c{word-spacing:23.434322px;}
.ws112{word-spacing:23.466600px;}
.ws12e{word-spacing:23.498879px;}
.wsd3{word-spacing:23.594450px;}
.ws4b{word-spacing:23.601095px;}
.ws7e{word-spacing:23.703311px;}
.wsa0{word-spacing:23.724830px;}
.ws154{word-spacing:23.728879px;}
.wsff{word-spacing:23.773248px;}
.ws7d{word-spacing:23.907742px;}
.ws79{word-spacing:23.977679px;}
.ws30{word-spacing:23.993819px;}
.wse5{word-spacing:24.020718px;}
.ws11e{word-spacing:24.112174px;}
.wse7{word-spacing:24.273567px;}
.ws110{word-spacing:24.370403px;}
.ws131{word-spacing:24.521037px;}
.wsd5{word-spacing:24.594177px;}
.ws41{word-spacing:24.623253px;}
.ws8e{word-spacing:24.655532px;}
.ws89{word-spacing:24.677051px;}
.wse9{word-spacing:24.741608px;}
.wse8{word-spacing:24.854584px;}
.ws14{word-spacing:25.085914px;}
.ws40{word-spacing:25.161231px;}
.ws135{word-spacing:25.882122px;}
.ws31{word-spacing:26.059654px;}
.ws94{word-spacing:26.151111px;}
.ws26{word-spacing:26.156490px;}
.ws32{word-spacing:26.188769px;}
.ws33{word-spacing:26.231807px;}
.ws5a{word-spacing:26.452378px;}
.ws88{word-spacing:26.613772px;}
.ws146{word-spacing:26.645495px;}
.ws24{word-spacing:26.646050px;}
.wscd{word-spacing:26.834343px;}
.wsa4{word-spacing:27.006496px;}
.ws172{word-spacing:27.109838px;}
.wsbd{word-spacing:27.135610px;}
.wsbc{word-spacing:27.140990px;}
.wsdd{word-spacing:27.173269px;}
.wsbe{word-spacing:27.205547px;}
.ws173{word-spacing:27.377637px;}
.ws12b{word-spacing:27.388460px;}
.ws171{word-spacing:27.444587px;}
.ws15{word-spacing:27.474536px;}
.wsf5{word-spacing:27.501435px;}
.ws111{word-spacing:27.512195px;}
.wsc3{word-spacing:27.662829px;}
.ws17{word-spacing:27.738146px;}
.ws16{word-spacing:27.743525px;}
.ws2c{word-spacing:27.770424px;}
.wsc2{word-spacing:27.921058px;}
.ws10a{word-spacing:27.980236px;}
.ws78{word-spacing:28.055553px;}
.ws10b{word-spacing:28.114730px;}
.wsc1{word-spacing:28.233085px;}
.ws44{word-spacing:28.453656px;}
.wsc0{word-spacing:28.582771px;}
.ws12{word-spacing:28.730977px;}
.ws155{word-spacing:28.745323px;}
.ws8c{word-spacing:28.781823px;}
.ws156{word-spacing:28.879223px;}
.ws43{word-spacing:28.953976px;}
.ws8d{word-spacing:28.964736px;}
.wsae{word-spacing:29.023913px;}
.wse3{word-spacing:29.422017px;}
.ws38{word-spacing:29.556511px;}
.ws6b{word-spacing:29.729309px;}
.ws130{word-spacing:29.803981px;}
.ws13b{word-spacing:29.840108px;}
.wse1{word-spacing:29.852399px;}
.ws70{word-spacing:29.939008px;}
.wsee{word-spacing:30.110629px;}
.wsa{word-spacing:30.222809px;}
.ws87{word-spacing:30.395757px;}
.wsd1{word-spacing:31.233618px;}
.ws121{word-spacing:31.304940px;}
.ws180{word-spacing:31.815444px;}
.wsa8{word-spacing:32.278680px;}
.wsad{word-spacing:32.413175px;}
.ws3d{word-spacing:32.784379px;}
.ws13f{word-spacing:33.026469px;}
.wsf6{word-spacing:33.758120px;}
.wsdb{word-spacing:33.887234px;}
.ws10f{word-spacing:34.247679px;}
.wsb3{word-spacing:34.360655px;}
.ws50{word-spacing:35.339775px;}
.wscc{word-spacing:35.409712px;}
.wsf9{word-spacing:36.356553px;}
.wseb{word-spacing:36.948329px;}
.ws13c{word-spacing:37.448649px;}
.ws42{word-spacing:38.018905px;}
.ws37{word-spacing:38.314793px;}
.ws98{word-spacing:38.578402px;}
.ws128{word-spacing:38.798973px;}
.wsbf{word-spacing:39.514484px;}
.ws7a{word-spacing:40.106260px;}
.ws7b{word-spacing:40.197716px;}
.ws13a{word-spacing:2419.044966px;}
.wsd9{word-spacing:2419.064095px;}
._16{margin-left:-33.521409px;}
._1d{margin-left:-29.777082px;}
._1f{margin-left:-15.838072px;}
._1e{margin-left:-14.417810px;}
._13{margin-left:-13.180461px;}
._12{margin-left:-12.174442px;}
._3{margin-left:-4.595280px;}
._10{margin-left:-1.531446px;}
._1{width:1.950192px;}
._1c{width:7.957279px;}
._6{width:10.317833px;}
._14{width:12.260519px;}
._5{width:14.086388px;}
._0{width:15.767414px;}
._8{width:16.799588px;}
._a{width:18.366569px;}
._7{width:19.487139px;}
._d{width:21.298549px;}
._b{width:22.977040px;}
._9{width:24.660912px;}
._f{width:26.334023px;}
._c{width:27.431498px;}
._1b{width:28.636569px;}
._4{width:30.010541px;}
._20{width:31.927225px;}
._15{width:33.403054px;}
._1a{width:35.108444px;}
._17{width:36.507187px;}
._e{width:39.460686px;}
._18{width:44.862182px;}
._11{width:1068.274829px;}
._19{width:1070.794387px;}
._2{width:1074.143338px;}
.fc2{color:rgb(44,56,57);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.891000px;}
.fs8{font-size:35.860800px;}
.fsf{font-size:36.000000px;}
.fs5{font-size:39.846000px;}
.fsa{font-size:41.842800px;}
.fsb{font-size:43.338000px;}
.fs2{font-size:43.516800px;}
.fs10{font-size:44.830800px;}
.fs0{font-size:44.832000px;}
.fs1{font-size:47.820600px;}
.fs6{font-size:47.821200px;}
.fsd{font-size:48.000000px;}
.fs7{font-size:53.797800px;}
.fse{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs11{font-size:83.685600px;}
.fs3{font-size:95.641800px;}
.fsc{font-size:125.530200px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.000000px;}
.y4{bottom:3.986743px;}
.y3{bottom:18.931500px;}
.y1{bottom:38.304000px;}
.y6c{bottom:97.794950px;}
.yc5{bottom:97.796366px;}
.y5e{bottom:97.797214px;}
.ya8{bottom:97.799697px;}
.y125{bottom:97.802099px;}
.y6b{bottom:112.762119px;}
.yc4{bottom:115.739278px;}
.y5d{bottom:115.740125px;}
.ya7{bottom:115.742608px;}
.y124{bottom:115.745011px;}
.y6a{bottom:127.729289px;}
.yc3{bottom:133.682189px;}
.y5c{bottom:133.683037px;}
.ya6{bottom:133.685519px;}
.y123{bottom:133.687922px;}
.y68{bottom:142.610680px;}
.y69{bottom:142.950653px;}
.yc2{bottom:151.625100px;}
.yc1{bottom:151.625489px;}
.y5b{bottom:151.625948px;}
.ya5{bottom:151.628430px;}
.y122{bottom:151.630833px;}
.y66{bottom:157.577850px;}
.y67{bottom:157.917823px;}
.y65{bottom:162.255000px;}
.yc0{bottom:169.568400px;}
.y5a{bottom:169.568859px;}
.ya4{bottom:169.571342px;}
.y121{bottom:169.573744px;}
.y64{bottom:172.545089px;}
.ybf{bottom:175.521150px;}
.y59{bottom:187.511770px;}
.y62{bottom:187.512258px;}
.ya3{bottom:187.514253px;}
.y120{bottom:187.516656px;}
.y63{bottom:187.767499px;}
.y60{bottom:202.393650px;}
.y61{bottom:202.733623px;}
.y58{bottom:205.369950px;}
.ybe{bottom:205.370339px;}
.y56{bottom:205.371116px;}
.ya2{bottom:205.372433px;}
.yff{bottom:205.372892px;}
.y11f{bottom:205.374835px;}
.y5f{bottom:207.070800px;}
.y57{bottom:211.407750px;}
.ybd{bottom:223.313250px;}
.ybb{bottom:223.313639px;}
.y55{bottom:223.314028px;}
.ya1{bottom:223.315344px;}
.yfe{bottom:223.315803px;}
.y11e{bottom:223.317747px;}
.ybc{bottom:229.351050px;}
.yba{bottom:241.256550px;}
.y2e{bottom:241.256939px;}
.yb8{bottom:241.257328px;}
.ya0{bottom:241.258255px;}
.yfd{bottom:241.258714px;}
.y11d{bottom:241.260658px;}
.yb9{bottom:247.294350px;}
.y2d{bottom:259.199850px;}
.yb7{bottom:259.200239px;}
.y54{bottom:259.201166px;}
.y2b{bottom:259.201555px;}
.yfc{bottom:259.201625px;}
.y11c{bottom:259.203569px;}
.y2c{bottom:265.152600px;}
.yb6{bottom:277.143150px;}
.yb4{bottom:277.143539px;}
.y53{bottom:277.144078px;}
.y2a{bottom:277.144466px;}
.yfb{bottom:277.144537px;}
.y11b{bottom:277.146480px;}
.yb5{bottom:283.095900px;}
.yb3{bottom:295.086450px;}
.y52{bottom:295.086989px;}
.y29{bottom:295.087378px;}
.yfa{bottom:295.087448px;}
.y11a{bottom:295.089392px;}
.yb2{bottom:301.039350px;}
.y51{bottom:313.029900px;}
.y28{bottom:313.030289px;}
.yf9{bottom:313.030359px;}
.y4f{bottom:313.031914px;}
.y119{bottom:313.032303px;}
.y9f{bottom:313.033151px;}
.y50{bottom:318.982650px;}
.y27{bottom:330.973200px;}
.yf8{bottom:330.973270px;}
.y4e{bottom:330.974825px;}
.y118{bottom:330.975214px;}
.y9e{bottom:330.976062px;}
.yb1{bottom:348.831450px;}
.yb0{bottom:348.831839px;}
.y4d{bottom:348.833005px;}
.y25{bottom:348.833394px;}
.y9d{bottom:348.834242px;}
.yf7{bottom:348.836185px;}
.y26{bottom:354.869250px;}
.yaf{bottom:366.774750px;}
.y4c{bottom:366.775916px;}
.y24{bottom:366.776305px;}
.y9c{bottom:366.777153px;}
.yf6{bottom:366.779097px;}
.yad{bottom:366.781972px;}
.yae{bottom:372.812400px;}
.y4b{bottom:384.718828px;}
.y23{bottom:384.719216px;}
.y9b{bottom:384.720064px;}
.yf5{bottom:384.722008px;}
.yac{bottom:384.724883px;}
.y4a{bottom:402.661739px;}
.y22{bottom:402.662128px;}
.y9a{bottom:402.662975px;}
.yf4{bottom:402.664919px;}
.yab{bottom:402.667794px;}
.y49{bottom:420.604650px;}
.y21{bottom:420.605039px;}
.y47{bottom:420.605428px;}
.y99{bottom:420.605887px;}
.yf3{bottom:420.607830px;}
.yaa{bottom:420.610706px;}
.y48{bottom:426.557400px;}
.y20{bottom:438.547950px;}
.y46{bottom:438.548339px;}
.y98{bottom:438.548798px;}
.y1e{bottom:438.550353px;}
.yf2{bottom:438.550742px;}
.y117{bottom:438.553533px;}
.ya9{bottom:438.553617px;}
.y1f{bottom:444.500700px;}
.y45{bottom:456.491250px;}
.y43{bottom:456.491489px;}
.y97{bottom:456.491709px;}
.y1d{bottom:456.493264px;}
.yf1{bottom:456.493653px;}
.y116{bottom:456.496444px;}
.y73{bottom:460.815000px;}
.y44{bottom:462.444000px;}
.y42{bottom:474.434400px;}
.y96{bottom:474.434620px;}
.y1c{bottom:474.436175px;}
.y40{bottom:474.436564px;}
.y115{bottom:474.439356px;}
.y41{bottom:480.387300px;}
.ycf{bottom:488.551741px;}
.y94{bottom:492.292800px;}
.y1b{bottom:492.294355px;}
.y3f{bottom:492.294744px;}
.y114{bottom:492.297535px;}
.y95{bottom:498.330600px;}
.yce{bottom:503.518503px;}
.y92{bottom:510.236489px;}
.y1a{bottom:510.237266px;}
.y3e{bottom:510.237655px;}
.y113{bottom:510.240447px;}
.y93{bottom:516.273900px;}
.ycd{bottom:518.485266px;}
.y91{bottom:528.179400px;}
.y19{bottom:528.180178px;}
.y3d{bottom:528.180566px;}
.y112{bottom:528.183358px;}
.ycc{bottom:533.366850px;}
.y18{bottom:546.123089px;}
.y3c{bottom:546.123478px;}
.y111{bottom:546.126269px;}
.y90{bottom:552.075450px;}
.y17{bottom:564.066000px;}
.y3b{bottom:564.066389px;}
.y15{bottom:564.067237px;}
.y110{bottom:564.069180px;}
.y16{bottom:570.018750px;}
.y3a{bottom:582.009300px;}
.y14{bottom:582.010148px;}
.y38{bottom:582.010925px;}
.y10f{bottom:582.012092px;}
.y8f{bottom:582.013328px;}
.yf0{bottom:582.014106px;}
.y39{bottom:587.962050px;}
.y13{bottom:599.953059px;}
.y37{bottom:599.953837px;}
.y10e{bottom:599.955003px;}
.y8e{bottom:599.956239px;}
.yef{bottom:599.957017px;}
.y12{bottom:617.895970px;}
.y36{bottom:617.896748px;}
.y10d{bottom:617.897914px;}
.y8d{bottom:617.899151px;}
.yee{bottom:617.899928px;}
.y11{bottom:635.754150px;}
.yf{bottom:635.754928px;}
.y10c{bottom:635.756094px;}
.y8c{bottom:635.757330px;}
.yed{bottom:635.758108px;}
.y10{bottom:641.791950px;}
.ye{bottom:653.697839px;}
.y10b{bottom:653.699005px;}
.y8b{bottom:653.700242px;}
.yec{bottom:653.701019px;}
.y15d{bottom:667.894377px;}
.y13b{bottom:667.894833px;}
.yd{bottom:671.640750px;}
.y10a{bottom:671.641916px;}
.y8a{bottom:671.643153px;}
.yeb{bottom:671.643930px;}
.y34{bottom:671.644719px;}
.y35{bottom:677.593500px;}
.y15c{bottom:681.330939px;}
.y13a{bottom:681.331395px;}
.y109{bottom:689.584828px;}
.y89{bottom:689.586064px;}
.yea{bottom:689.586842px;}
.y33{bottom:689.587630px;}
.y15b{bottom:694.852383px;}
.y139{bottom:694.852839px;}
.yc{bottom:707.526121px;}
.y108{bottom:707.527739px;}
.y88{bottom:707.528975px;}
.ye9{bottom:707.529753px;}
.y32{bottom:707.530541px;}
.y15a{bottom:708.288945px;}
.y138{bottom:708.289401px;}
.y159{bottom:721.725506px;}
.y137{bottom:721.725962px;}
.yb{bottom:725.469830px;}
.y107{bottom:725.470650px;}
.y105{bottom:725.471428px;}
.y87{bottom:725.471887px;}
.ye8{bottom:725.472664px;}
.y31{bottom:725.473452px;}
.y106{bottom:731.423400px;}
.y158{bottom:735.162068px;}
.y136{bottom:735.162524px;}
.ya{bottom:743.413540px;}
.y104{bottom:743.414339px;}
.y86{bottom:743.414798px;}
.ye7{bottom:743.415575px;}
.y30{bottom:743.416364px;}
.ycb{bottom:747.156391px;}
.y157{bottom:748.598630px;}
.y135{bottom:748.599086px;}
.y9{bottom:761.357250px;}
.y102{bottom:761.357470px;}
.y85{bottom:761.357709px;}
.ye6{bottom:761.358487px;}
.y2f{bottom:761.359275px;}
.y156{bottom:762.035191px;}
.y134{bottom:762.035647px;}
.yca{bottom:762.123153px;}
.y103{bottom:767.310000px;}
.y155{bottom:775.556636px;}
.y133{bottom:775.557092px;}
.yc9{bottom:777.004737px;}
.y101{bottom:779.215650px;}
.y84{bottom:779.215889px;}
.ye5{bottom:779.216666px;}
.y154{bottom:788.993197px;}
.y132{bottom:788.993653px;}
.yc8{bottom:791.971500px;}
.y83{bottom:797.158800px;}
.y81{bottom:797.159189px;}
.ye4{bottom:797.159578px;}
.y100{bottom:797.163234px;}
.y70{bottom:800.730607px;}
.y153{bottom:802.429759px;}
.y131{bottom:802.430215px;}
.y82{bottom:803.196600px;}
.y80{bottom:815.102100px;}
.y7e{bottom:815.102489px;}
.y152{bottom:815.866321px;}
.y130{bottom:815.866777px;}
.y7f{bottom:821.139900px;}
.y6f{bottom:827.263214px;}
.y151{bottom:829.302882px;}
.y12f{bottom:829.303338px;}
.ye3{bottom:830.834400px;}
.y7d{bottom:833.045400px;}
.ye2{bottom:833.046178px;}
.y7b{bottom:833.046566px;}
.y7c{bottom:838.998300px;}
.y150{bottom:842.739444px;}
.y12e{bottom:842.739900px;}
.y129{bottom:845.206741px;}
.ye1{bottom:850.989089px;}
.y7a{bottom:850.989478px;}
.y6e{bottom:854.560737px;}
.y14e{bottom:856.176006px;}
.y14f{bottom:856.601614px;}
.y128{bottom:860.173503px;}
.y6d{bottom:867.996600px;}
.y12d{bottom:868.166700px;}
.ye0{bottom:868.932000px;}
.y79{bottom:868.932389px;}
.y14d{bottom:869.689537px;}
.y127{bottom:875.140266px;}
.y14c{bottom:883.126099px;}
.y7{bottom:884.154000px;}
.y2{bottom:886.500000px;}
.y77{bottom:886.875300px;}
.ydf{bottom:886.876148px;}
.y126{bottom:890.021850px;}
.y8{bottom:890.787150px;}
.y78{bottom:892.828200px;}
.y14b{bottom:896.562661px;}
.yde{bottom:904.819059px;}
.y12c{bottom:904.822001px;}
.y14a{bottom:909.999222px;}
.y6{bottom:920.040145px;}
.ydd{bottom:922.677239px;}
.y12a{bottom:922.680180px;}
.y12b{bottom:923.105183px;}
.y148{bottom:923.435784px;}
.y149{bottom:923.605549px;}
.y147{bottom:936.872346px;}
.yc7{bottom:937.814187px;}
.ydb{bottom:938.409150px;}
.ydc{bottom:940.620150px;}
.yda{bottom:940.623092px;}
.y5{bottom:946.913100px;}
.y146{bottom:950.393790px;}
.yc6{bottom:952.780950px;}
.yd9{bottom:958.566003px;}
.y145{bottom:963.830352px;}
.yd8{bottom:976.508914px;}
.y144{bottom:977.266913px;}
.y143{bottom:990.703475px;}
.yd7{bottom:994.451825px;}
.y76{bottom:999.795000px;}
.y142{bottom:1004.140037px;}
.y72{bottom:1008.056400px;}
.yd6{bottom:1012.394737px;}
.y74{bottom:1014.795000px;}
.y141{bottom:1017.576598px;}
.yd5{bottom:1030.337648px;}
.y140{bottom:1031.098043px;}
.y13f{bottom:1044.534604px;}
.yd4{bottom:1048.280559px;}
.y13e{bottom:1057.971166px;}
.y71{bottom:1065.117900px;}
.yd3{bottom:1066.138739px;}
.y13d{bottom:1071.407728px;}
.yd2{bottom:1084.081650px;}
.y13c{bottom:1084.844289px;}
.y15e{bottom:1119.540505px;}
.yd0{bottom:1119.543000px;}
.yd1{bottom:1142.295000px;}
.h16{height:12.000000px;}
.hb{height:15.348422px;}
.h14{height:16.500000px;}
.hc{height:20.193084px;}
.ha{height:26.823878px;}
.h7{height:27.892200px;}
.hd{height:30.294187px;}
.h4{height:31.245062px;}
.he{height:31.298414px;}
.hf{height:32.156796px;}
.h10{height:32.243472px;}
.h19{height:33.264454px;}
.h18{height:33.354115px;}
.h17{height:33.876000px;}
.h3{height:35.193120px;}
.h8{height:35.435509px;}
.h1b{height:35.770258px;}
.h1c{height:35.801909px;}
.h9{height:40.240754px;}
.h6{height:44.353495px;}
.h13{height:47.109375px;}
.h15{height:50.814000px;}
.h2{height:51.024000px;}
.h1a{height:62.262086px;}
.h5{height:70.870574px;}
.h11{height:93.017878px;}
.h12{height:495.315000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w3{width:15.000000px;}
.w6{width:52.620000px;}
.w5{width:55.605000px;}
.w7{width:82.860000px;}
.w4{width:124.290000px;}
.w2{width:729.414000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:4.500000px;}
.x2c{left:12.000000px;}
.x29{left:62.589000px;}
.x1{left:63.774000px;}
.x24{left:69.732300px;}
.x2a{left:74.834700px;}
.x11{left:81.722850px;}
.x58{left:102.557400px;}
.x28{left:108.425383px;}
.xc{left:110.806200px;}
.xd{left:130.025100px;}
.x36{left:145.162200px;}
.xa{left:149.584200px;}
.xb{left:161.744850px;}
.x37{left:162.935400px;}
.x10{left:174.500700px;}
.x27{left:175.776600px;}
.x25{left:183.344917px;}
.x39{left:194.314950px;}
.x5a{left:199.332300px;}
.x26{left:211.663078px;}
.x2{left:258.094500px;}
.x3c{left:260.050350px;}
.x2f{left:268.214100px;}
.x3d{left:273.826650px;}
.x35{left:282.160500px;}
.x59{left:283.266000px;}
.x56{left:286.582650px;}
.x33{left:287.943300px;}
.x30{left:291.089700px;}
.x57{left:296.787300px;}
.x34{left:303.675450px;}
.x53{left:333.864450px;}
.x12{left:339.307050px;}
.x13{left:351.127500px;}
.xe{left:352.913250px;}
.x3{left:358.270800px;}
.x60{left:360.653295px;}
.xf{left:362.607750px;}
.x54{left:366.434550px;}
.x4{left:368.815650px;}
.x55{left:371.707050px;}
.x31{left:386.758950px;}
.x3a{left:393.392100px;}
.x3b{left:406.488150px;}
.x38{left:414.141600px;}
.x32{left:426.472350px;}
.x5{left:443.480250px;}
.x6{left:453.940050px;}
.x14{left:454.961289px;}
.x3e{left:472.904064px;}
.x5c{left:495.013950px;}
.x4b{left:506.239200px;}
.x5d{left:509.980950px;}
.x46{left:520.525800px;}
.x4c{left:525.713250px;}
.x47{left:533.281650px;}
.x7{left:538.299000px;}
.x8{left:549.524250px;}
.x61{left:550.627069px;}
.x44{left:558.538350px;}
.x45{left:566.277000px;}
.x22{left:568.232850px;}
.x23{left:580.138350px;}
.x5e{left:584.050200px;}
.x17{left:589.407750px;}
.x5f{left:599.612400px;}
.x18{left:600.973050px;}
.x1b{left:614.664450px;}
.x19{left:618.661200px;}
.x15{left:625.719600px;}
.x1a{left:629.631300px;}
.x16{left:635.754150px;}
.x20{left:638.135250px;}
.x21{left:647.319450px;}
.x50{left:649.445550px;}
.x1c{left:657.354150px;}
.x51{left:659.990400px;}
.x4a{left:663.562050px;}
.x1d{left:665.092650px;}
.x1e{left:673.001400px;}
.x2d{left:678.615000px;}
.x9{left:683.121150px;}
.x1f{left:684.141600px;}
.x4e{left:689.924250px;}
.x4f{left:697.662750px;}
.x4d{left:722.834400px;}
.x41{left:724.195050px;}
.x3f{left:726.066000px;}
.x42{left:731.933700px;}
.x2e{left:736.050000px;}
.x40{left:738.821850px;}
.x52{left:745.545000px;}
.x48{left:760.846950px;}
.x49{left:780.150900px;}
.x62{left:799.200062px;}
.x5b{left:803.281650px;}
.x43{left:818.843850px;}
@media print{
.v1{vertical-align:-1.208792pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.012459pt;}
.ls47{letter-spacing:-1.241226pt;}
.ls48{letter-spacing:-1.181715pt;}
.ls46{letter-spacing:-1.164712pt;}
.ls40{letter-spacing:-1.133340pt;}
.ls1d{letter-spacing:-1.109430pt;}
.ls23{letter-spacing:-1.071174pt;}
.ls25{letter-spacing:-1.047264pt;}
.ls3a{letter-spacing:-1.042482pt;}
.lsf{letter-spacing:-1.037700pt;}
.ls2b{letter-spacing:-1.032918pt;}
.ls16{letter-spacing:-1.023354pt;}
.ls49{letter-spacing:-1.011684pt;}
.ls2d{letter-spacing:-1.009008pt;}
.ls3f{letter-spacing:-0.999444pt;}
.ls30{letter-spacing:-0.985097pt;}
.ls36{letter-spacing:-0.980315pt;}
.ls1b{letter-spacing:-0.961187pt;}
.ls29{letter-spacing:-0.956405pt;}
.ls18{letter-spacing:-0.951623pt;}
.ls1a{letter-spacing:-0.946841pt;}
.ls21{letter-spacing:-0.942059pt;}
.lse{letter-spacing:-0.937277pt;}
.ls19{letter-spacing:-0.932495pt;}
.ls3d{letter-spacing:-0.927713pt;}
.ls34{letter-spacing:-0.918149pt;}
.ls1f{letter-spacing:-0.913367pt;}
.ls31{letter-spacing:-0.908585pt;}
.ls26{letter-spacing:-0.903803pt;}
.ls35{letter-spacing:-0.894239pt;}
.ls27{letter-spacing:-0.889457pt;}
.ls39{letter-spacing:-0.884675pt;}
.ls24{letter-spacing:-0.879893pt;}
.ls2e{letter-spacing:-0.875111pt;}
.ls37{letter-spacing:-0.870329pt;}
.ls2a{letter-spacing:-0.860765pt;}
.ls38{letter-spacing:-0.851201pt;}
.ls28{letter-spacing:-0.841637pt;}
.ls2f{letter-spacing:-0.836855pt;}
.ls32{letter-spacing:-0.827291pt;}
.ls22{letter-spacing:-0.808163pt;}
.ls33{letter-spacing:-0.793816pt;}
.ls1c{letter-spacing:-0.768218pt;}
.ls17{letter-spacing:-0.739529pt;}
.ls1e{letter-spacing:-0.720404pt;}
.ls10{letter-spacing:-0.066949pt;}
.ls9{letter-spacing:-0.019925pt;}
.lsb{letter-spacing:-0.012752pt;}
.lsa{letter-spacing:-0.007970pt;}
.ls8{letter-spacing:-0.003985pt;}
.lsc{letter-spacing:-0.003868pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003188pt;}
.ls4{letter-spacing:0.003719pt;}
.ls1{letter-spacing:0.003868pt;}
.ls15{letter-spacing:0.003985pt;}
.ls2{letter-spacing:0.011604pt;}
.ls13{letter-spacing:0.033474pt;}
.ls3b{letter-spacing:0.071730pt;}
.ls12{letter-spacing:0.178507pt;}
.ls14{letter-spacing:0.277358pt;}
.ls5{letter-spacing:0.755030pt;}
.ls43{letter-spacing:0.888412pt;}
.ls0{letter-spacing:5.965645pt;}
.ls20{letter-spacing:10.061384pt;}
.ls41{letter-spacing:10.085294pt;}
.ls45{letter-spacing:11.200788pt;}
.ls3e{letter-spacing:11.883336pt;}
.ls44{letter-spacing:12.076447pt;}
.ls42{letter-spacing:12.485872pt;}
.ls6{letter-spacing:15.267973pt;}
.ls11{letter-spacing:23.376401pt;}
.ls3c{letter-spacing:26.396787pt;}
.ls2c{letter-spacing:28.816493pt;}
.wsb4{word-spacing:-28.864313pt;}
.wse2{word-spacing:-26.444607pt;}
.ws106{word-spacing:-12.533692pt;}
.ws104{word-spacing:-11.931157pt;}
.ws168{word-spacing:-11.243295pt;}
.ws105{word-spacing:-10.133115pt;}
.ws80{word-spacing:-10.109204pt;}
.ws164{word-spacing:-1.343244pt;}
.wsb{word-spacing:-0.085015pt;}
.ws8{word-spacing:-0.050286pt;}
.ws25{word-spacing:-0.047820pt;}
.ws149{word-spacing:-0.042508pt;}
.ws6e{word-spacing:-0.038523pt;}
.ws63{word-spacing:-0.037194pt;}
.ws1b{word-spacing:-0.035064pt;}
.wsba{word-spacing:-0.031876pt;}
.ws4{word-spacing:-0.019925pt;}
.ws6f{word-spacing:0.000000pt;}
.ws76{word-spacing:0.707653pt;}
.ws7c{word-spacing:0.736342pt;}
.wsb0{word-spacing:0.793816pt;}
.ws167{word-spacing:1.198718pt;}
.ws7{word-spacing:7.318559pt;}
.ws6{word-spacing:7.987750pt;}
.ws139{word-spacing:8.715108pt;}
.ws163{word-spacing:9.394209pt;}
.ws15d{word-spacing:9.832039pt;}
.ws12c{word-spacing:9.860539pt;}
.ws15c{word-spacing:10.044577pt;}
.ws12d{word-spacing:10.161807pt;}
.ws3{word-spacing:10.217711pt;}
.ws137{word-spacing:10.225407pt;}
.ws72{word-spacing:10.265532pt;}
.ws15f{word-spacing:10.435649pt;}
.ws123{word-spacing:10.467856pt;}
.ws5d{word-spacing:10.525241pt;}
.ws160{word-spacing:10.554670pt;}
.ws15e{word-spacing:10.567423pt;}
.ws74{word-spacing:10.664038pt;}
.ws0{word-spacing:10.675994pt;}
.wsaa{word-spacing:10.749996pt;}
.ws182{word-spacing:10.758707pt;}
.ws142{word-spacing:10.807380pt;}
.ws2a{word-spacing:10.850419pt;}
.ws15b{word-spacing:10.856475pt;}
.ws10e{word-spacing:11.041700pt;}
.wsb8{word-spacing:11.070392pt;}
.wsb7{word-spacing:11.089520pt;}
.ws175{word-spacing:11.149778pt;}
.ws103{word-spacing:11.194724pt;}
.wsb6{word-spacing:11.213853pt;}
.ws136{word-spacing:11.261497pt;}
.ws2{word-spacing:11.277739pt;}
.ws71{word-spacing:11.285709pt;}
.ws178{word-spacing:11.345314pt;}
.ws9f{word-spacing:11.371659pt;}
.wsf0{word-spacing:11.419480pt;}
.ws9e{word-spacing:11.505556pt;}
.ws177{word-spacing:11.523847pt;}
.ws134{word-spacing:11.534248pt;}
.wsaf{word-spacing:11.548594pt;}
.ws179{word-spacing:11.638617pt;}
.ws108{word-spacing:11.653799pt;}
.ws68{word-spacing:11.663913pt;}
.ws5e{word-spacing:11.682491pt;}
.ws67{word-spacing:11.689948pt;}
.ws174{word-spacing:11.706630pt;}
.ws132{word-spacing:11.749440pt;}
.ws65{word-spacing:11.756897pt;}
.ws17a{word-spacing:11.761890pt;}
.wsf3{word-spacing:11.768568pt;}
.ws16b{word-spacing:11.778893pt;}
.ws16c{word-spacing:11.800147pt;}
.ws8f{word-spacing:11.811606pt;}
.ws176{word-spacing:11.825651pt;}
.ws69{word-spacing:11.857320pt;}
.ws7f{word-spacing:11.868990pt;}
.ws64{word-spacing:11.872197pt;}
.ws109{word-spacing:11.916810pt;}
.ws16d{word-spacing:11.940422pt;}
.wsa3{word-spacing:11.988541pt;}
.ws17d{word-spacing:11.995682pt;}
.ws66{word-spacing:12.024691pt;}
.ws4d{word-spacing:12.060271pt;}
.ws16e{word-spacing:12.063695pt;}
.wsce{word-spacing:12.106308pt;}
.ws6a{word-spacing:12.169746pt;}
.ws62{word-spacing:12.192062pt;}
.ws6c{word-spacing:12.277174pt;}
.wsf2{word-spacing:12.323283pt;}
.ws35{word-spacing:12.361539pt;}
.ws84{word-spacing:12.447615pt;}
.ws14e{word-spacing:12.480271pt;}
.ws183{word-spacing:12.484521pt;}
.ws14d{word-spacing:12.544032pt;}
.ws6d{word-spacing:12.546833pt;}
.ws129{word-spacing:12.552820pt;}
.ws145{word-spacing:12.624550pt;}
.wsd8{word-spacing:12.640293pt;}
.wsd4{word-spacing:12.644278pt;}
.ws14f{word-spacing:12.667305pt;}
.ws11d{word-spacing:12.705845pt;}
.ws9c{word-spacing:12.806267pt;}
.wsd0{word-spacing:12.807661pt;}
.ws77{word-spacing:12.815831pt;}
.ws75{word-spacing:12.820613pt;}
.ws9b{word-spacing:12.873216pt;}
.ws18{word-spacing:12.882780pt;}
.wsec{word-spacing:12.901908pt;}
.wsc5{word-spacing:12.949728pt;}
.ws17b{word-spacing:12.952106pt;}
.wsc4{word-spacing:12.954510pt;}
.ws13{word-spacing:13.054125pt;}
.ws8a{word-spacing:13.064497pt;}
.ws181{word-spacing:13.113636pt;}
.ws159{word-spacing:13.117887pt;}
.wsab{word-spacing:13.136227pt;}
.ws162{word-spacing:13.173147pt;}
.ws153{word-spacing:13.275165pt;}
.ws15a{word-spacing:13.309171pt;}
.ws144{word-spacing:13.327508pt;}
.ws16a{word-spacing:13.347428pt;}
.ws118{word-spacing:13.380111pt;}
.ws17e{word-spacing:13.385685pt;}
.ws184{word-spacing:13.394187pt;}
.ws17c{word-spacing:13.423942pt;}
.ws148{word-spacing:13.428193pt;}
.wsac{word-spacing:13.432713pt;}
.ws147{word-spacing:13.449447pt;}
.ws8b{word-spacing:13.451841pt;}
.ws165{word-spacing:13.457948pt;}
.ws2b{word-spacing:13.470969pt;}
.ws152{word-spacing:13.474951pt;}
.ws125{word-spacing:13.490097pt;}
.ws14b{word-spacing:13.508958pt;}
.ws14c{word-spacing:13.517459pt;}
.ws29{word-spacing:13.571392pt;}
.ws14a{word-spacing:13.576970pt;}
.ws166{word-spacing:13.640732pt;}
.ws11{word-spacing:13.670487pt;}
.ws1d{word-spacing:13.753109pt;}
.ws3e{word-spacing:13.772237pt;}
.ws57{word-spacing:13.777019pt;}
.ws54{word-spacing:13.810493pt;}
.ws124{word-spacing:13.839185pt;}
.ws56{word-spacing:13.863095pt;}
.ws5b{word-spacing:13.872659pt;}
.wsc7{word-spacing:13.949172pt;}
.ws100{word-spacing:14.016120pt;}
.ws9d{word-spacing:14.030466pt;}
.ws9{word-spacing:14.064630pt;}
.ws59{word-spacing:14.073504pt;}
.ws3c{word-spacing:14.092633pt;}
.ws73{word-spacing:14.131046pt;}
.ws5{word-spacing:14.178867pt;}
.ws60{word-spacing:14.188273pt;}
.ws13e{word-spacing:14.264786pt;}
.wsc8{word-spacing:14.307824pt;}
.ws107{word-spacing:14.331734pt;}
.wsdf{word-spacing:14.341298pt;}
.ws61{word-spacing:14.389118pt;}
.wse0{word-spacing:14.441721pt;}
.ws133{word-spacing:14.570835pt;}
.ws11f{word-spacing:14.747770pt;}
.wsdc{word-spacing:14.757334pt;}
.ws55{word-spacing:14.776462pt;}
.wsa2{word-spacing:14.781244pt;}
.wsb1{word-spacing:14.843411pt;}
.ws12a{word-spacing:14.996436pt;}
.ws11c{word-spacing:15.010782pt;}
.wsef{word-spacing:15.058602pt;}
.wsb2{word-spacing:15.068166pt;}
.ws4a{word-spacing:15.125550pt;}
.ws11b{word-spacing:15.135114pt;}
.ws91{word-spacing:15.182935pt;}
.ws1e{word-spacing:15.206845pt;}
.wsfb{word-spacing:15.283357pt;}
.wsed{word-spacing:15.302485pt;}
.ws83{word-spacing:15.316831pt;}
.wsf4{word-spacing:15.340742pt;}
.wsa7{word-spacing:15.426818pt;}
.wsa1{word-spacing:15.436382pt;}
.ws2d{word-spacing:15.517677pt;}
.ws27{word-spacing:15.570279pt;}
.ws101{word-spacing:15.589407pt;}
.ws86{word-spacing:15.603753pt;}
.ws13d{word-spacing:15.642009pt;}
.ws113{word-spacing:15.651573pt;}
.ws138{word-spacing:15.712697pt;}
.ws119{word-spacing:15.742432pt;}
.ws143{word-spacing:15.747214pt;}
.ws102{word-spacing:15.838072pt;}
.ws10c{word-spacing:15.881111pt;}
.ws161{word-spacing:15.927648pt;}
.ws28{word-spacing:15.952841pt;}
.wsf7{word-spacing:15.991097pt;}
.ws85{word-spacing:15.995879pt;}
.ws12f{word-spacing:16.015007pt;}
.wscb{word-spacing:16.072392pt;}
.ws2e{word-spacing:16.081956pt;}
.ws1{word-spacing:16.083729pt;}
.ws1a{word-spacing:16.096302pt;}
.ws90{word-spacing:16.129776pt;}
.ws114{word-spacing:16.292365pt;}
.ws10{word-spacing:16.331471pt;}
.ws16f{word-spacing:16.339973pt;}
.ws169{word-spacing:16.348474pt;}
.ws23{word-spacing:16.407133pt;}
.ws95{word-spacing:16.488428pt;}
.ws170{word-spacing:16.501502pt;}
.ws51{word-spacing:16.593633pt;}
.wsf8{word-spacing:16.655799pt;}
.ws127{word-spacing:16.679709pt;}
.ws11a{word-spacing:16.737093pt;}
.ws45{word-spacing:16.794478pt;}
.wsd{word-spacing:16.907196pt;}
.ws3a{word-spacing:16.990541pt;}
.wsf{word-spacing:17.024091pt;}
.ws1f{word-spacing:17.028797pt;}
.wsc{word-spacing:17.045344pt;}
.ws9a{word-spacing:17.052707pt;}
.ws21{word-spacing:17.081399pt;}
.ws58{word-spacing:17.138784pt;}
.wse{word-spacing:17.140985pt;}
.ws20{word-spacing:17.200950pt;}
.wsda{word-spacing:17.224860pt;}
.ws3b{word-spacing:17.243988pt;}
.wsd2{word-spacing:17.262847pt;}
.ws120{word-spacing:17.330065pt;}
.wsea{word-spacing:17.416141pt;}
.wse4{word-spacing:17.420923pt;}
.ws126{word-spacing:17.530910pt;}
.ws185{word-spacing:17.551443pt;}
.ws151{word-spacing:17.606703pt;}
.ws34{word-spacing:17.679153pt;}
.ws150{word-spacing:17.695969pt;}
.ws49{word-spacing:17.731755pt;}
.ws99{word-spacing:17.770011pt;}
.ws116{word-spacing:17.803485pt;}
.ws52{word-spacing:17.946946pt;}
.wsd6{word-spacing:17.968185pt;}
.ws53{word-spacing:18.033023pt;}
.ws115{word-spacing:18.037805pt;}
.ws48{word-spacing:18.061715pt;}
.wsfd{word-spacing:18.071279pt;}
.wsf1{word-spacing:18.085625pt;}
.wsd7{word-spacing:18.087733pt;}
.wsde{word-spacing:18.109535pt;}
.ws39{word-spacing:18.147791pt;}
.wscf{word-spacing:18.223222pt;}
.wsfa{word-spacing:18.324726pt;}
.ws3f{word-spacing:18.329508pt;}
.ws141{word-spacing:18.339072pt;}
.ws4f{word-spacing:18.410803pt;}
.wsfe{word-spacing:18.420367pt;}
.ws5c{word-spacing:18.669032pt;}
.ws93{word-spacing:18.788583pt;}
.wse6{word-spacing:18.798147pt;}
.wsbb{word-spacing:18.845967pt;}
.wsc6{word-spacing:18.850749pt;}
.ws92{word-spacing:18.869877pt;}
.ws5f{word-spacing:18.912915pt;}
.ws36{word-spacing:19.166363pt;}
.ws117{word-spacing:19.233311pt;}
.wsb9{word-spacing:19.257221pt;}
.wsfc{word-spacing:19.271567pt;}
.wsa6{word-spacing:19.371990pt;}
.ws17f{word-spacing:19.379276pt;}
.ws22{word-spacing:19.477195pt;}
.ws2f{word-spacing:19.481977pt;}
.ws96{word-spacing:19.658912pt;}
.ws140{word-spacing:19.725860pt;}
.ws97{word-spacing:19.768898pt;}
.wsa9{word-spacing:19.773680pt;}
.wsb5{word-spacing:19.883667pt;}
.ws122{word-spacing:19.907577pt;}
.ws81{word-spacing:20.008000pt;}
.ws47{word-spacing:20.189717pt;}
.ws82{word-spacing:20.247101pt;}
.ws46{word-spacing:20.266229pt;}
.ws4e{word-spacing:20.390562pt;}
.ws157{word-spacing:20.437718pt;}
.ws10d{word-spacing:20.490984pt;}
.ws158{word-spacing:20.497229pt;}
.wsc9{word-spacing:20.543587pt;}
.ws1c{word-spacing:20.596189pt;}
.wsca{word-spacing:20.624881pt;}
.wsa5{word-spacing:20.667919pt;}
.ws19{word-spacing:20.763560pt;}
.ws4c{word-spacing:20.830508pt;}
.ws112{word-spacing:20.859200pt;}
.ws12e{word-spacing:20.887892pt;}
.wsd3{word-spacing:20.972844pt;}
.ws4b{word-spacing:20.978751pt;}
.ws7e{word-spacing:21.069609pt;}
.wsa0{word-spacing:21.088738pt;}
.ws154{word-spacing:21.092337pt;}
.wsff{word-spacing:21.131776pt;}
.ws7d{word-spacing:21.251327pt;}
.ws79{word-spacing:21.313493pt;}
.ws30{word-spacing:21.327839pt;}
.wse5{word-spacing:21.351749pt;}
.ws11e{word-spacing:21.433044pt;}
.wse7{word-spacing:21.576504pt;}
.ws110{word-spacing:21.662581pt;}
.ws131{word-spacing:21.796478pt;}
.wsd5{word-spacing:21.861491pt;}
.ws41{word-spacing:21.887336pt;}
.ws8e{word-spacing:21.916028pt;}
.ws89{word-spacing:21.935156pt;}
.wse9{word-spacing:21.992541pt;}
.wse8{word-spacing:22.092963pt;}
.ws14{word-spacing:22.298590pt;}
.ws40{word-spacing:22.365539pt;}
.ws135{word-spacing:23.006330pt;}
.ws31{word-spacing:23.164137pt;}
.ws94{word-spacing:23.245432pt;}
.ws26{word-spacing:23.250214pt;}
.ws32{word-spacing:23.278906pt;}
.ws33{word-spacing:23.317162pt;}
.ws5a{word-spacing:23.513225pt;}
.ws88{word-spacing:23.656686pt;}
.ws146{word-spacing:23.684884pt;}
.ws24{word-spacing:23.685378pt;}
.wscd{word-spacing:23.852749pt;}
.wsa4{word-spacing:24.005774pt;}
.ws172{word-spacing:24.097634pt;}
.wsbd{word-spacing:24.120543pt;}
.wsbc{word-spacing:24.125325pt;}
.wsdd{word-spacing:24.154017pt;}
.wsbe{word-spacing:24.182709pt;}
.ws173{word-spacing:24.335677pt;}
.ws12b{word-spacing:24.345298pt;}
.ws171{word-spacing:24.395188pt;}
.ws15{word-spacing:24.421810pt;}
.wsf5{word-spacing:24.445720pt;}
.ws111{word-spacing:24.455284pt;}
.wsc3{word-spacing:24.589181pt;}
.ws17{word-spacing:24.656129pt;}
.ws16{word-spacing:24.660912pt;}
.ws2c{word-spacing:24.684822pt;}
.wsc2{word-spacing:24.818718pt;}
.ws10a{word-spacing:24.871321pt;}
.ws78{word-spacing:24.938269pt;}
.ws10b{word-spacing:24.990871pt;}
.wsc1{word-spacing:25.096076pt;}
.ws44{word-spacing:25.292139pt;}
.wsc0{word-spacing:25.406908pt;}
.ws12{word-spacing:25.538646pt;}
.ws155{word-spacing:25.551399pt;}
.ws8c{word-spacing:25.583843pt;}
.ws156{word-spacing:25.670420pt;}
.ws43{word-spacing:25.736868pt;}
.ws8d{word-spacing:25.746432pt;}
.wsae{word-spacing:25.799034pt;}
.wse3{word-spacing:26.152904pt;}
.ws38{word-spacing:26.272455pt;}
.ws6b{word-spacing:26.426053pt;}
.ws130{word-spacing:26.492428pt;}
.ws13b{word-spacing:26.524541pt;}
.wse1{word-spacing:26.535466pt;}
.ws70{word-spacing:26.612452pt;}
.wsee{word-spacing:26.765003pt;}
.wsa{word-spacing:26.864719pt;}
.ws87{word-spacing:27.018451pt;}
.wsd1{word-spacing:27.763216pt;}
.ws121{word-spacing:27.826613pt;}
.ws180{word-spacing:28.280395pt;}
.wsa8{word-spacing:28.692160pt;}
.wsad{word-spacing:28.811711pt;}
.ws3d{word-spacing:29.141671pt;}
.ws13f{word-spacing:29.356862pt;}
.wsf6{word-spacing:30.007217pt;}
.wsdb{word-spacing:30.121986pt;}
.ws10f{word-spacing:30.442382pt;}
.wsb3{word-spacing:30.542804pt;}
.ws50{word-spacing:31.413133pt;}
.wscc{word-spacing:31.475300pt;}
.wsf9{word-spacing:32.316936pt;}
.wseb{word-spacing:32.842959pt;}
.ws13c{word-spacing:33.287688pt;}
.ws42{word-spacing:33.794582pt;}
.ws37{word-spacing:34.057594pt;}
.ws98{word-spacing:34.291913pt;}
.ws128{word-spacing:34.487976pt;}
.wsbf{word-spacing:35.123986pt;}
.ws7a{word-spacing:35.650009pt;}
.ws7b{word-spacing:35.731303pt;}
.ws13a{word-spacing:2150.262192pt;}
.wsd9{word-spacing:2150.279195pt;}
._16{margin-left:-29.796808pt;}
._1d{margin-left:-26.468518pt;}
._1f{margin-left:-14.078287pt;}
._1e{margin-left:-12.815831pt;}
._13{margin-left:-11.715965pt;}
._12{margin-left:-10.821726pt;}
._3{margin-left:-4.084693pt;}
._10{margin-left:-1.361286pt;}
._1{width:1.733504pt;}
._1c{width:7.073137pt;}
._6{width:9.171407pt;}
._14{width:10.898239pt;}
._5{width:12.521234pt;}
._0{width:14.015479pt;}
._8{width:14.932967pt;}
._a{width:16.325839pt;}
._7{width:17.321901pt;}
._d{width:18.932044pt;}
._b{width:20.424036pt;}
._9{width:21.920810pt;}
._f{width:23.408021pt;}
._c{width:24.383554pt;}
._1b{width:25.454728pt;}
._4{width:26.676036pt;}
._20{width:28.379756pt;}
._15{width:29.691604pt;}
._1a{width:31.207506pt;}
._17{width:32.450833pt;}
._e{width:35.076166pt;}
._18{width:39.877495pt;}
._11{width:949.577626pt;}
._19{width:951.817233pt;}
._2{width:954.794078pt;}
.fs9{font-size:24.792000pt;}
.fs8{font-size:31.876267pt;}
.fsf{font-size:32.000000pt;}
.fs5{font-size:35.418667pt;}
.fsa{font-size:37.193600pt;}
.fsb{font-size:38.522667pt;}
.fs2{font-size:38.681600pt;}
.fs10{font-size:39.849600pt;}
.fs0{font-size:39.850667pt;}
.fs1{font-size:42.507200pt;}
.fs6{font-size:42.507733pt;}
.fsd{font-size:42.666667pt;}
.fs7{font-size:47.820267pt;}
.fse{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs11{font-size:74.387200pt;}
.fs3{font-size:85.014933pt;}
.fsc{font-size:111.582400pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.666667pt;}
.y4{bottom:3.543772pt;}
.y3{bottom:16.828000pt;}
.y1{bottom:34.048000pt;}
.y6c{bottom:86.928844pt;}
.yc5{bottom:86.930103pt;}
.y5e{bottom:86.930857pt;}
.ya8{bottom:86.933064pt;}
.y125{bottom:86.935199pt;}
.y6b{bottom:100.232995pt;}
.yc4{bottom:102.879358pt;}
.y5d{bottom:102.880111pt;}
.ya7{bottom:102.882318pt;}
.y124{bottom:102.884454pt;}
.y6a{bottom:113.537145pt;}
.yc3{bottom:118.828612pt;}
.y5c{bottom:118.829366pt;}
.ya6{bottom:118.831573pt;}
.y123{bottom:118.833708pt;}
.y68{bottom:126.765049pt;}
.y69{bottom:127.067247pt;}
.yc2{bottom:134.777867pt;}
.yc1{bottom:134.778212pt;}
.y5b{bottom:134.778620pt;}
.ya5{bottom:134.780827pt;}
.y122{bottom:134.782963pt;}
.y66{bottom:140.069200pt;}
.y67{bottom:140.371398pt;}
.y65{bottom:144.226667pt;}
.yc0{bottom:150.727467pt;}
.y5a{bottom:150.727875pt;}
.ya4{bottom:150.730081pt;}
.y121{bottom:150.732217pt;}
.y64{bottom:153.373412pt;}
.ybf{bottom:156.018800pt;}
.y59{bottom:166.677129pt;}
.y62{bottom:166.677563pt;}
.ya3{bottom:166.679336pt;}
.y120{bottom:166.681472pt;}
.y63{bottom:166.904444pt;}
.y60{bottom:179.905467pt;}
.y61{bottom:180.207665pt;}
.y58{bottom:182.551067pt;}
.ybe{bottom:182.551412pt;}
.y56{bottom:182.552103pt;}
.ya2{bottom:182.553273pt;}
.yff{bottom:182.553681pt;}
.y11f{bottom:182.555409pt;}
.y5f{bottom:184.062933pt;}
.y57{bottom:187.918000pt;}
.ybd{bottom:198.500667pt;}
.ybb{bottom:198.501012pt;}
.y55{bottom:198.501358pt;}
.ya1{bottom:198.502528pt;}
.yfe{bottom:198.502936pt;}
.y11e{bottom:198.504664pt;}
.ybc{bottom:203.867600pt;}
.yba{bottom:214.450267pt;}
.y2e{bottom:214.450612pt;}
.yb8{bottom:214.450958pt;}
.ya0{bottom:214.451782pt;}
.yfd{bottom:214.452190pt;}
.y11d{bottom:214.453918pt;}
.yb9{bottom:219.817200pt;}
.y2d{bottom:230.399867pt;}
.yb7{bottom:230.400212pt;}
.y54{bottom:230.401037pt;}
.y2b{bottom:230.401382pt;}
.yfc{bottom:230.401445pt;}
.y11c{bottom:230.403173pt;}
.y2c{bottom:235.691200pt;}
.yb6{bottom:246.349467pt;}
.yb4{bottom:246.349812pt;}
.y53{bottom:246.350291pt;}
.y2a{bottom:246.350637pt;}
.yfb{bottom:246.350699pt;}
.y11b{bottom:246.352427pt;}
.yb5{bottom:251.640800pt;}
.yb3{bottom:262.299067pt;}
.y52{bottom:262.299546pt;}
.y29{bottom:262.299891pt;}
.yfa{bottom:262.299954pt;}
.y11a{bottom:262.301681pt;}
.yb2{bottom:267.590533pt;}
.y51{bottom:278.248800pt;}
.y28{bottom:278.249146pt;}
.yf9{bottom:278.249208pt;}
.y4f{bottom:278.250590pt;}
.y119{bottom:278.250936pt;}
.y9f{bottom:278.251689pt;}
.y50{bottom:283.540133pt;}
.y27{bottom:294.198400pt;}
.yf8{bottom:294.198462pt;}
.y4e{bottom:294.199845pt;}
.y118{bottom:294.200190pt;}
.y9e{bottom:294.200944pt;}
.yb1{bottom:310.072400pt;}
.yb0{bottom:310.072746pt;}
.y4d{bottom:310.073782pt;}
.y25{bottom:310.074128pt;}
.y9d{bottom:310.074881pt;}
.yf7{bottom:310.076609pt;}
.y26{bottom:315.439333pt;}
.yaf{bottom:326.022000pt;}
.y4c{bottom:326.023037pt;}
.y24{bottom:326.023382pt;}
.y9c{bottom:326.024136pt;}
.yf6{bottom:326.025864pt;}
.yad{bottom:326.028419pt;}
.yae{bottom:331.388800pt;}
.y4b{bottom:341.972291pt;}
.y23{bottom:341.972637pt;}
.y9b{bottom:341.973390pt;}
.yf5{bottom:341.975118pt;}
.yac{bottom:341.977674pt;}
.y4a{bottom:357.921546pt;}
.y22{bottom:357.921891pt;}
.y9a{bottom:357.922645pt;}
.yf4{bottom:357.924373pt;}
.yab{bottom:357.926928pt;}
.y49{bottom:373.870800pt;}
.y21{bottom:373.871146pt;}
.y47{bottom:373.871491pt;}
.y99{bottom:373.871899pt;}
.yf3{bottom:373.873627pt;}
.yaa{bottom:373.876183pt;}
.y48{bottom:379.162133pt;}
.y20{bottom:389.820400pt;}
.y46{bottom:389.820746pt;}
.y98{bottom:389.821154pt;}
.y1e{bottom:389.822536pt;}
.yf2{bottom:389.822881pt;}
.y117{bottom:389.825363pt;}
.ya9{bottom:389.825437pt;}
.y1f{bottom:395.111733pt;}
.y45{bottom:405.770000pt;}
.y43{bottom:405.770212pt;}
.y97{bottom:405.770408pt;}
.y1d{bottom:405.771790pt;}
.yf1{bottom:405.772136pt;}
.y116{bottom:405.774617pt;}
.y73{bottom:409.613333pt;}
.y44{bottom:411.061333pt;}
.y42{bottom:421.719467pt;}
.y96{bottom:421.719662pt;}
.y1c{bottom:421.721045pt;}
.y40{bottom:421.721390pt;}
.y115{bottom:421.723872pt;}
.y41{bottom:427.010933pt;}
.ycf{bottom:434.268214pt;}
.y94{bottom:437.593600pt;}
.y1b{bottom:437.594982pt;}
.y3f{bottom:437.595328pt;}
.y114{bottom:437.597809pt;}
.y95{bottom:442.960533pt;}
.yce{bottom:447.572003pt;}
.y92{bottom:453.543546pt;}
.y1a{bottom:453.544237pt;}
.y3e{bottom:453.544582pt;}
.y113{bottom:453.547064pt;}
.y93{bottom:458.910133pt;}
.ycd{bottom:460.875792pt;}
.y91{bottom:469.492800pt;}
.y19{bottom:469.493491pt;}
.y3d{bottom:469.493837pt;}
.y112{bottom:469.496318pt;}
.ycc{bottom:474.103867pt;}
.y18{bottom:485.442746pt;}
.y3c{bottom:485.443091pt;}
.y111{bottom:485.445573pt;}
.y90{bottom:490.733733pt;}
.y17{bottom:501.392000pt;}
.y3b{bottom:501.392346pt;}
.y15{bottom:501.393099pt;}
.y110{bottom:501.394827pt;}
.y16{bottom:506.683333pt;}
.y3a{bottom:517.341600pt;}
.y14{bottom:517.342354pt;}
.y38{bottom:517.343045pt;}
.y10f{bottom:517.344081pt;}
.y8f{bottom:517.345181pt;}
.yf0{bottom:517.345872pt;}
.y39{bottom:522.632933pt;}
.y13{bottom:533.291608pt;}
.y37{bottom:533.292299pt;}
.y10e{bottom:533.293336pt;}
.y8e{bottom:533.294435pt;}
.yef{bottom:533.295126pt;}
.y12{bottom:549.240862pt;}
.y36{bottom:549.241554pt;}
.y10d{bottom:549.242590pt;}
.y8d{bottom:549.243689pt;}
.yee{bottom:549.244381pt;}
.y11{bottom:565.114800pt;}
.yf{bottom:565.115491pt;}
.y10c{bottom:565.116528pt;}
.y8c{bottom:565.117627pt;}
.yed{bottom:565.118318pt;}
.y10{bottom:570.481733pt;}
.ye{bottom:581.064746pt;}
.y10b{bottom:581.065782pt;}
.y8b{bottom:581.066881pt;}
.yec{bottom:581.067573pt;}
.y15d{bottom:593.683891pt;}
.y13b{bottom:593.684296pt;}
.yd{bottom:597.014000pt;}
.y10a{bottom:597.015037pt;}
.y8a{bottom:597.016136pt;}
.yeb{bottom:597.016827pt;}
.y34{bottom:597.017528pt;}
.y35{bottom:602.305333pt;}
.y15c{bottom:605.627501pt;}
.y13a{bottom:605.627906pt;}
.y109{bottom:612.964291pt;}
.y89{bottom:612.965390pt;}
.yea{bottom:612.966081pt;}
.y33{bottom:612.966782pt;}
.y15b{bottom:617.646563pt;}
.y139{bottom:617.646968pt;}
.yc{bottom:628.912107pt;}
.y108{bottom:628.913546pt;}
.y88{bottom:628.914645pt;}
.ye9{bottom:628.915336pt;}
.y32{bottom:628.916036pt;}
.y15a{bottom:629.590173pt;}
.y138{bottom:629.590578pt;}
.y159{bottom:641.533783pt;}
.y137{bottom:641.534189pt;}
.yb{bottom:644.862072pt;}
.y107{bottom:644.862800pt;}
.y105{bottom:644.863491pt;}
.y87{bottom:644.863899pt;}
.ye8{bottom:644.864590pt;}
.y31{bottom:644.865291pt;}
.y106{bottom:650.154133pt;}
.y158{bottom:653.477394pt;}
.y136{bottom:653.477799pt;}
.ya{bottom:660.812036pt;}
.y104{bottom:660.812746pt;}
.y86{bottom:660.813154pt;}
.ye7{bottom:660.813845pt;}
.y30{bottom:660.814545pt;}
.ycb{bottom:664.139014pt;}
.y157{bottom:665.421004pt;}
.y135{bottom:665.421409pt;}
.y9{bottom:676.762000pt;}
.y102{bottom:676.762196pt;}
.y85{bottom:676.762408pt;}
.ye6{bottom:676.763099pt;}
.y2f{bottom:676.763800pt;}
.y156{bottom:677.364615pt;}
.y134{bottom:677.365020pt;}
.yca{bottom:677.442803pt;}
.y103{bottom:682.053333pt;}
.y155{bottom:689.383676pt;}
.y133{bottom:689.384081pt;}
.yc9{bottom:690.670878pt;}
.y101{bottom:692.636133pt;}
.y84{bottom:692.636346pt;}
.ye5{bottom:692.637037pt;}
.y154{bottom:701.327287pt;}
.y132{bottom:701.327692pt;}
.yc8{bottom:703.974667pt;}
.y83{bottom:708.585600pt;}
.y81{bottom:708.585946pt;}
.ye4{bottom:708.586291pt;}
.y100{bottom:708.589542pt;}
.y70{bottom:711.760539pt;}
.y153{bottom:713.270897pt;}
.y131{bottom:713.271302pt;}
.y82{bottom:713.952533pt;}
.y80{bottom:724.535200pt;}
.y7e{bottom:724.535546pt;}
.y152{bottom:725.214507pt;}
.y130{bottom:725.214913pt;}
.y7f{bottom:729.902133pt;}
.y6f{bottom:735.345079pt;}
.y151{bottom:737.158118pt;}
.y12f{bottom:737.158523pt;}
.ye3{bottom:738.519467pt;}
.y7d{bottom:740.484800pt;}
.ye2{bottom:740.485491pt;}
.y7b{bottom:740.485837pt;}
.y7c{bottom:745.776267pt;}
.y150{bottom:749.101728pt;}
.y12e{bottom:749.102133pt;}
.y129{bottom:751.294881pt;}
.ye1{bottom:756.434746pt;}
.y7a{bottom:756.435091pt;}
.y6e{bottom:759.609544pt;}
.y14e{bottom:761.045338pt;}
.y14f{bottom:761.423657pt;}
.y128{bottom:764.598670pt;}
.y6d{bottom:771.552533pt;}
.y12d{bottom:771.703733pt;}
.ye0{bottom:772.384000pt;}
.y79{bottom:772.384346pt;}
.y14d{bottom:773.057366pt;}
.y127{bottom:777.902459pt;}
.y14c{bottom:785.000977pt;}
.y7{bottom:785.914667pt;}
.y2{bottom:788.000000pt;}
.y77{bottom:788.333600pt;}
.ydf{bottom:788.334354pt;}
.y126{bottom:791.130533pt;}
.y8{bottom:791.810800pt;}
.y78{bottom:793.625067pt;}
.y14b{bottom:796.944587pt;}
.yde{bottom:804.283608pt;}
.y12c{bottom:804.286223pt;}
.y14a{bottom:808.888198pt;}
.y6{bottom:817.813462pt;}
.ydd{bottom:820.157546pt;}
.y12a{bottom:820.160160pt;}
.y12b{bottom:820.537940pt;}
.y148{bottom:820.831808pt;}
.y149{bottom:820.982710pt;}
.y147{bottom:832.775418pt;}
.yc7{bottom:833.612611pt;}
.ydb{bottom:834.141467pt;}
.ydc{bottom:836.106800pt;}
.yda{bottom:836.109415pt;}
.y5{bottom:841.700533pt;}
.y146{bottom:844.794480pt;}
.yc6{bottom:846.916400pt;}
.yd9{bottom:852.058669pt;}
.y145{bottom:856.738090pt;}
.yd8{bottom:868.007924pt;}
.y144{bottom:868.681701pt;}
.y143{bottom:880.625311pt;}
.yd7{bottom:883.957178pt;}
.y76{bottom:888.706667pt;}
.y142{bottom:892.568921pt;}
.y72{bottom:896.050133pt;}
.yd6{bottom:899.906432pt;}
.y74{bottom:902.040000pt;}
.y141{bottom:904.512532pt;}
.yd5{bottom:915.855687pt;}
.y140{bottom:916.531593pt;}
.y13f{bottom:928.475204pt;}
.yd4{bottom:931.804941pt;}
.y13e{bottom:940.418814pt;}
.y71{bottom:946.771467pt;}
.yd3{bottom:947.678879pt;}
.y13d{bottom:952.362425pt;}
.yd2{bottom:963.628133pt;}
.y13c{bottom:964.306035pt;}
.y15e{bottom:995.147115pt;}
.yd0{bottom:995.149333pt;}
.yd1{bottom:1015.373333pt;}
.h16{height:10.666667pt;}
.hb{height:13.643042pt;}
.h14{height:14.666667pt;}
.hc{height:17.949408pt;}
.ha{height:23.843447pt;}
.h7{height:24.793067pt;}
.hd{height:26.928166pt;}
.h4{height:27.773389pt;}
.he{height:27.820813pt;}
.hf{height:28.583819pt;}
.h10{height:28.660864pt;}
.h19{height:29.568403pt;}
.h18{height:29.648102pt;}
.h17{height:30.112000pt;}
.h3{height:31.282773pt;}
.h8{height:31.498230pt;}
.h1b{height:31.795785pt;}
.h1c{height:31.823919pt;}
.h9{height:35.769559pt;}
.h6{height:39.425329pt;}
.h13{height:41.875000pt;}
.h15{height:45.168000pt;}
.h2{height:45.354667pt;}
.h1a{height:55.344077pt;}
.h5{height:62.996066pt;}
.h11{height:82.682558pt;}
.h12{height:440.280000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w3{width:13.333333pt;}
.w6{width:46.773333pt;}
.w5{width:49.426667pt;}
.w7{width:73.653333pt;}
.w4{width:110.480000pt;}
.w2{width:648.368000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.000000pt;}
.x2c{left:10.666667pt;}
.x29{left:55.634667pt;}
.x1{left:56.688000pt;}
.x24{left:61.984267pt;}
.x2a{left:66.519733pt;}
.x11{left:72.642533pt;}
.x58{left:91.162133pt;}
.x28{left:96.378118pt;}
.xc{left:98.494400pt;}
.xd{left:115.577867pt;}
.x36{left:129.033067pt;}
.xa{left:132.963733pt;}
.xb{left:143.773200pt;}
.x37{left:144.831467pt;}
.x10{left:155.111733pt;}
.x27{left:156.245867pt;}
.x25{left:162.973259pt;}
.x39{left:172.724400pt;}
.x5a{left:177.184267pt;}
.x26{left:188.144958pt;}
.x2{left:229.417333pt;}
.x3c{left:231.155867pt;}
.x2f{left:238.412533pt;}
.x3d{left:243.401467pt;}
.x35{left:250.809333pt;}
.x59{left:251.792000pt;}
.x56{left:254.740133pt;}
.x33{left:255.949600pt;}
.x30{left:258.746400pt;}
.x57{left:263.810933pt;}
.x34{left:269.933733pt;}
.x53{left:296.768400pt;}
.x12{left:301.606267pt;}
.x13{left:312.113333pt;}
.xe{left:313.700667pt;}
.x3{left:318.462933pt;}
.x60{left:320.580706pt;}
.xf{left:322.318000pt;}
.x54{left:325.719600pt;}
.x4{left:327.836133pt;}
.x55{left:330.406267pt;}
.x31{left:343.785733pt;}
.x3a{left:349.681867pt;}
.x3b{left:361.322800pt;}
.x38{left:368.125867pt;}
.x32{left:379.086533pt;}
.x5{left:394.204667pt;}
.x6{left:403.502267pt;}
.x14{left:404.410035pt;}
.x3e{left:420.359168pt;}
.x5c{left:440.012400pt;}
.x4b{left:449.990400pt;}
.x5d{left:453.316400pt;}
.x46{left:462.689600pt;}
.x4c{left:467.300667pt;}
.x47{left:474.028133pt;}
.x7{left:478.488000pt;}
.x8{left:488.466000pt;}
.x61{left:489.446284pt;}
.x44{left:496.478533pt;}
.x45{left:503.357333pt;}
.x22{left:505.095867pt;}
.x23{left:515.678533pt;}
.x5e{left:519.155733pt;}
.x17{left:523.918000pt;}
.x5f{left:532.988800pt;}
.x18{left:534.198267pt;}
.x1b{left:546.368400pt;}
.x19{left:549.921067pt;}
.x15{left:556.195200pt;}
.x1a{left:559.672267pt;}
.x16{left:565.114800pt;}
.x20{left:567.231333pt;}
.x21{left:575.395067pt;}
.x50{left:577.284933pt;}
.x1c{left:584.314800pt;}
.x51{left:586.658133pt;}
.x4a{left:589.832933pt;}
.x1d{left:591.193467pt;}
.x1e{left:598.223467pt;}
.x2d{left:603.213333pt;}
.x9{left:607.218800pt;}
.x1f{left:608.125867pt;}
.x4e{left:613.266000pt;}
.x4f{left:620.144667pt;}
.x4d{left:642.519467pt;}
.x41{left:643.728933pt;}
.x3f{left:645.392000pt;}
.x42{left:650.607733pt;}
.x2e{left:654.266667pt;}
.x40{left:656.730533pt;}
.x52{left:662.706667pt;}
.x48{left:676.308400pt;}
.x49{left:693.467467pt;}
.x62{left:710.400055pt;}
.x5b{left:714.028133pt;}
.x43{left:727.861200pt;}
}


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