
/* 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_b6949575eef9.woff")format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_1c3f6cd6b3dc.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_4ca5f35d5e2d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_fbafc3e18b97.woff")format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_59c0557e3408.woff")format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_ffa80bc3509c.woff")format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_ccd5f3cc6818.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_120e0624d618.woff")format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_4c6677be8afa.woff")format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_69ac2b17a8d9.woff")format("woff");}.ffa{font-family:ffa;line-height:0.049000;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_840667283fd9.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_3fb70b7dfec2.woff")format("woff");}.ffc{font-family:ffc;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_44f28ea19087.woff")format("woff");}.ffd{font-family:ffd;line-height:0.725000;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_8a38df9a9045.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_2f68995ec85c.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_a247de2fa004.woff")format("woff");}.ff10{font-family:ff10;line-height:0.690000;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_d7612cb1f8c3.woff")format("woff");}.ff11{font-family:ff11;line-height:0.160000;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_68c5e2d7f25d.woff")format("woff");}.ff12{font-family:ff12;line-height:0.893555;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_4f9439436c3b.woff")format("woff");}.ff13{font-family:ff13;line-height:0.910156;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;}
.m6{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.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);}
.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);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-8.970000px;}
.v4{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.080000px;}
.v9{vertical-align:13.909339px;}
.v8{vertical-align:16.227535px;}
.v1{vertical-align:21.690000px;}
.v7{vertical-align:26.076000px;}
.v5{vertical-align:27.246000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000289px;}
.ls38{letter-spacing:0.004923px;}
.ls19{letter-spacing:0.006289px;}
.ls2c{letter-spacing:0.010923px;}
.ls2e{letter-spacing:0.011261px;}
.ls2d{letter-spacing:0.012996px;}
.ls3a{letter-spacing:0.014346px;}
.ls39{letter-spacing:0.017261px;}
.ls20{letter-spacing:0.018557px;}
.ls33{letter-spacing:0.020769px;}
.ls3c{letter-spacing:0.023910px;}
.ls3b{letter-spacing:0.025793px;}
.ls13{letter-spacing:0.032222px;}
.ls15{letter-spacing:0.038250px;}
.ls10{letter-spacing:0.050159px;}
.ls31{letter-spacing:0.237527px;}
.ls35{letter-spacing:0.305520px;}
.ls18{letter-spacing:0.482320px;}
.ls43{letter-spacing:0.834017px;}
.ls3f{letter-spacing:1.071185px;}
.ls24{letter-spacing:1.199740px;}
.ls25{letter-spacing:1.214769px;}
.ls1d{letter-spacing:1.721537px;}
.ls3e{letter-spacing:2.333653px;}
.ls28{letter-spacing:2.368552px;}
.ls23{letter-spacing:2.371909px;}
.ls2a{letter-spacing:2.387660px;}
.ls2b{letter-spacing:2.389613px;}
.ls40{letter-spacing:2.391030px;}
.ls32{letter-spacing:2.391487px;}
.ls29{letter-spacing:2.391527px;}
.ls22{letter-spacing:2.391746px;}
.ls1e{letter-spacing:2.393660px;}
.ls1f{letter-spacing:2.393740px;}
.ls2{letter-spacing:2.655487px;}
.lsf{letter-spacing:2.917057px;}
.ls1{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.987108px;}
.ls5{letter-spacing:2.987675px;}
.ls7{letter-spacing:2.988017px;}
.lsd{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.988780px;}
.lse{letter-spacing:2.989200px;}
.ls37{letter-spacing:2.992118px;}
.ls1a{letter-spacing:3.005447px;}
.ls16{letter-spacing:3.011447px;}
.ls41{letter-spacing:3.720443px;}
.ls1c{letter-spacing:4.859756px;}
.ls9{letter-spacing:8.850359px;}
.lsa{letter-spacing:8.856359px;}
.ls17{letter-spacing:10.004159px;}
.ls8{letter-spacing:10.010159px;}
.ls11{letter-spacing:13.942200px;}
.ls26{letter-spacing:14.345740px;}
.ls27{letter-spacing:14.347873px;}
.lsb{letter-spacing:14.760359px;}
.ls21{letter-spacing:16.144118px;}
.ls4{letter-spacing:16.238100px;}
.ls12{letter-spacing:20.920200px;}
.ls30{letter-spacing:21.941447px;}
.ls14{letter-spacing:25.367447px;}
.lsc{letter-spacing:26.528100px;}
.ls3d{letter-spacing:29.879447px;}
.ls2f{letter-spacing:32.177447px;}
.ls42{letter-spacing:36.476100px;}
.ls34{letter-spacing:153.803740px;}
.ls36{letter-spacing:154.895740px;}
.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;}
}
.ws166{word-spacing:-10.818360px;}
.ws10f{word-spacing:-4.919532px;}
.ws29{word-spacing:-3.012698px;}
.ws7e{word-spacing:-2.964877px;}
.ws137{word-spacing:-2.438851px;}
.ws117{word-spacing:-2.410166px;}
.ws111{word-spacing:-2.371909px;}
.ws110{word-spacing:-1.781313px;}
.ws11e{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.065753px;}
.ws11c{word-spacing:-0.062167px;}
.ws75{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.056787px;}
.wsd{word-spacing:-0.053798px;}
.ws3b{word-spacing:-0.047821px;}
.ws13c{word-spacing:-0.038257px;}
.ws67{word-spacing:0.000000px;}
.ws94{word-spacing:8.744624px;}
.ws92{word-spacing:8.748824px;}
.ws13e{word-spacing:9.487637px;}
.ws113{word-spacing:9.509523px;}
.ws13d{word-spacing:9.516299px;}
.ws139{word-spacing:9.522302px;}
.ws138{word-spacing:9.524471px;}
.ws115{word-spacing:9.525893px;}
.ws13b{word-spacing:9.531989px;}
.ws136{word-spacing:9.532862px;}
.ws116{word-spacing:9.555514px;}
.ws114{word-spacing:9.564150px;}
.ws118{word-spacing:9.602407px;}
.ws13a{word-spacing:9.614060px;}
.ws112{word-spacing:10.929583px;}
.ws194{word-spacing:11.333482px;}
.ws7d{word-spacing:11.907329px;}
.ws183{word-spacing:12.289894px;}
.ws186{word-spacing:12.576818px;}
.ws18c{word-spacing:12.768100px;}
.ws34{word-spacing:12.863741px;}
.ws15{word-spacing:13.288205px;}
.ws178{word-spacing:13.389768px;}
.ws1a{word-spacing:13.395802px;}
.wsef{word-spacing:13.867939px;}
.wsf0{word-spacing:13.880624px;}
.ws45{word-spacing:13.927715px;}
.ws99{word-spacing:14.047266px;}
.ws39{word-spacing:14.059256px;}
.ws40{word-spacing:14.107042px;}
.ws19a{word-spacing:14.202718px;}
.ws151{word-spacing:14.226593px;}
.ws185{word-spacing:14.250539px;}
.ws119{word-spacing:14.269712px;}
.ws16a{word-spacing:14.346180px;}
.ws105{word-spacing:14.405920px;}
.ws104{word-spacing:14.465695px;}
.wsbc{word-spacing:14.525471px;}
.ws109{word-spacing:14.582624px;}
.ws66{word-spacing:14.585246px;}
.ws96{word-spacing:14.654624px;}
.ws9a{word-spacing:14.764573px;}
.ws4b{word-spacing:14.943900px;}
.wsf{word-spacing:15.009754px;}
.wsf3{word-spacing:15.123227px;}
.ws187{word-spacing:15.254771px;}
.ws2d{word-spacing:15.302554px;}
.ws58{word-spacing:15.481880px;}
.wsea{word-spacing:15.559591px;}
.ws177{word-spacing:15.589516px;}
.ws4e{word-spacing:15.601432px;}
.wsb7{word-spacing:15.661207px;}
.ws2{word-spacing:15.729999px;}
.ws195{word-spacing:15.732977px;}
.ws5{word-spacing:15.786786px;}
.ws21{word-spacing:15.816730px;}
.ws150{word-spacing:15.840534px;}
.ws6{word-spacing:15.900360px;}
.ws4{word-spacing:16.013934px;}
.wsf2{word-spacing:16.019861px;}
.ws18e{word-spacing:16.019901px;}
.wsa4{word-spacing:16.079636px;}
.ws73{word-spacing:16.139412px;}
.ws72{word-spacing:16.163279px;}
.ws74{word-spacing:16.199188px;}
.wsec{word-spacing:16.258963px;}
.wse2{word-spacing:16.378514px;}
.wsc1{word-spacing:16.617617px;}
.ws18d{word-spacing:16.687753px;}
.ws35{word-spacing:16.689389px;}
.ws19c{word-spacing:16.690579px;}
.wseb{word-spacing:16.737168px;}
.ws82{word-spacing:16.796944px;}
.ws19b{word-spacing:16.880672px;}
.ws41{word-spacing:16.916495px;}
.ws18a{word-spacing:17.071954px;}
.ws49{word-spacing:17.095822px;}
.wsc3{word-spacing:17.155597px;}
.ws152{word-spacing:17.204459px;}
.ws43{word-spacing:17.215373px;}
.ws23{word-spacing:17.269286px;}
.wsb2{word-spacing:17.334924px;}
.wscf{word-spacing:17.454475px;}
.wsdc{word-spacing:17.505431px;}
.wsdd{word-spacing:17.514251px;}
.wsde{word-spacing:17.532258px;}
.ws65{word-spacing:17.633802px;}
.ws179{word-spacing:17.693622px;}
.ws25{word-spacing:17.861069px;}
.wsc7{word-spacing:17.872904px;}
.ws11b{word-spacing:17.884904px;}
.wsc4{word-spacing:17.932680px;}
.ws7c{word-spacing:17.992456px;}
.ws3a{word-spacing:18.028366px;}
.ws100{word-spacing:18.039875px;}
.ws101{word-spacing:18.044624px;}
.wsc8{word-spacing:18.052231px;}
.ws190{word-spacing:18.076187px;}
.ws10b{word-spacing:18.084824px;}
.wsfa{word-spacing:18.112007px;}
.wsfb{word-spacing:18.120824px;}
.ws18f{word-spacing:18.124007px;}
.ws199{word-spacing:18.171828px;}
.ws52{word-spacing:18.231558px;}
.ws16d{word-spacing:18.291334px;}
.ws91{word-spacing:18.410885px;}
.ws93{word-spacing:18.444824px;}
.ws5b{word-spacing:18.470660px;}
.ws198{word-spacing:18.554393px;}
.ws18b{word-spacing:18.602213px;}
.ws9b{word-spacing:18.649987px;}
.ws193{word-spacing:18.697855px;}
.wsfd{word-spacing:18.709763px;}
.wsfe{word-spacing:18.720824px;}
.ws80{word-spacing:18.769538px;}
.ws81{word-spacing:18.782624px;}
.ws3f{word-spacing:18.829314px;}
.ws130{word-spacing:18.868441px;}
.ws132{word-spacing:18.870258px;}
.wsc5{word-spacing:18.889090px;}
.ws133{word-spacing:18.891550px;}
.ws131{word-spacing:18.897550px;}
.ws54{word-spacing:19.008641px;}
.wsd2{word-spacing:19.121280px;}
.wsd4{word-spacing:19.128192px;}
.ws38{word-spacing:19.128240px;}
.wsd3{word-spacing:19.140258px;}
.wsd1{word-spacing:19.141150px;}
.wsaa{word-spacing:19.187968px;}
.ws159{word-spacing:19.247743px;}
.ws8a{word-spacing:19.307519px;}
.ws64{word-spacing:19.367294px;}
.wsfc{word-spacing:19.427070px;}
.wsf1{word-spacing:19.486846px;}
.ws197{word-spacing:19.558625px;}
.wsa0{word-spacing:19.722824px;}
.ws9f{word-spacing:19.725948px;}
.ws172{word-spacing:19.749908px;}
.ws125{word-spacing:19.785724px;}
.wse8{word-spacing:19.806316px;}
.wse9{word-spacing:19.845499px;}
.ws11{word-spacing:19.851610px;}
.ws17a{word-spacing:20.036831px;}
.wsbf{word-spacing:20.084602px;}
.ws26{word-spacing:20.120602px;}
.wsc9{word-spacing:20.204153px;}
.ws10c{word-spacing:20.238824px;}
.wsb3{word-spacing:20.263928px;}
.ws174{word-spacing:20.270365px;}
.ws175{word-spacing:20.275934px;}
.ws8c{word-spacing:20.323704px;}
.ws5a{word-spacing:20.383480px;}
.ws196{word-spacing:20.658499px;}
.wsa9{word-spacing:20.682358px;}
.ws4f{word-spacing:20.742133px;}
.ws1b{word-spacing:20.766182px;}
.wsf5{word-spacing:20.801909px;}
.ws50{word-spacing:20.861684px;}
.ws10d{word-spacing:20.862824px;}
.ws36{word-spacing:20.897602px;}
.ws170{word-spacing:20.921460px;}
.ws37{word-spacing:20.945423px;}
.ws6d{word-spacing:20.981236px;}
.ws7f{word-spacing:21.041011px;}
.ws12a{word-spacing:21.081221px;}
.ws13{word-spacing:21.088973px;}
.ws12c{word-spacing:21.096258px;}
.ws7b{word-spacing:21.100787px;}
.ws12b{word-spacing:21.111550px;}
.ws5f{word-spacing:21.160562px;}
.ws176{word-spacing:21.184526px;}
.wsdf{word-spacing:21.339889px;}
.ws129{word-spacing:21.399665px;}
.ws3c{word-spacing:21.638767px;}
.ws15e{word-spacing:21.698543px;}
.ws86{word-spacing:21.758318px;}
.ws17f{word-spacing:21.854014px;}
.wsb0{word-spacing:21.877870px;}
.ws17c{word-spacing:21.901835px;}
.wsad{word-spacing:21.937645px;}
.ws24{word-spacing:22.003546px;}
.wsee{word-spacing:22.057196px;}
.ws53{word-spacing:22.116972px;}
.wsce{word-spacing:22.176748px;}
.ws10{word-spacing:22.218739px;}
.wsa7{word-spacing:22.236523px;}
.ws85{word-spacing:22.290824px;}
.ws2a{word-spacing:22.296299px;}
.wsbe{word-spacing:22.311550px;}
.ws46{word-spacing:22.415850px;}
.wsc0{word-spacing:22.475626px;}
.wsf4{word-spacing:22.535401px;}
.wsd6{word-spacing:22.595177px;}
.ws15f{word-spacing:22.714728px;}
.ws95{word-spacing:22.774504px;}
.ws97{word-spacing:22.790624px;}
.ws10a{word-spacing:22.794824px;}
.wsa{word-spacing:22.940236px;}
.wsc{word-spacing:22.941560px;}
.ws8{word-spacing:22.946628px;}
.ws9{word-spacing:22.947937px;}
.ws8d{word-spacing:22.953830px;}
.ws44{word-spacing:23.073382px;}
.wsbb{word-spacing:23.133157px;}
.ws4c{word-spacing:23.252708px;}
.ws8b{word-spacing:23.342459px;}
.ws14d{word-spacing:23.353823px;}
.ws14e{word-spacing:23.362189px;}
.ws14f{word-spacing:23.364258px;}
.ws10e{word-spacing:23.372260px;}
.ws62{word-spacing:23.432035px;}
.ws182{word-spacing:23.527735px;}
.ws7a{word-spacing:23.551586px;}
.ws3d{word-spacing:23.671138px;}
.ws30{word-spacing:23.850464px;}
.ws158{word-spacing:23.870459px;}
.ws15b{word-spacing:23.910240px;}
.wsb1{word-spacing:23.970016px;}
.ws8f{word-spacing:24.000824px;}
.ws8e{word-spacing:24.001391px;}
.ws90{word-spacing:24.029791px;}
.wsda{word-spacing:24.089567px;}
.ws70{word-spacing:24.149342px;}
.ws17d{word-spacing:24.234212px;}
.ws17e{word-spacing:24.245044px;}
.wsc2{word-spacing:24.268894px;}
.ws48{word-spacing:24.328669px;}
.wsed{word-spacing:24.507996px;}
.ws161{word-spacing:24.567772px;}
.ws59{word-spacing:24.806874px;}
.ws180{word-spacing:24.866712px;}
.ws5c{word-spacing:24.926425px;}
.ws155{word-spacing:24.946248px;}
.ws156{word-spacing:24.972258px;}
.ws154{word-spacing:24.986201px;}
.ws1c{word-spacing:25.016256px;}
.ws51{word-spacing:25.045976px;}
.ws189{word-spacing:25.057994px;}
.ws4d{word-spacing:25.105752px;}
.wscd{word-spacing:25.165528px;}
.ws0{word-spacing:25.167998px;}
.ws60{word-spacing:25.225303px;}
.ws1f{word-spacing:25.231450px;}
.ws71{word-spacing:25.344854px;}
.wsa2{word-spacing:25.404630px;}
.wsd8{word-spacing:25.524181px;}
.ws4a{word-spacing:25.583957px;}
.ws127{word-spacing:25.643732px;}
.wsae{word-spacing:25.763284px;}
.wsa3{word-spacing:25.823059px;}
.ws173{word-spacing:25.823124px;}
.ws98{word-spacing:26.062162px;}
.wsa5{word-spacing:26.121937px;}
.ws77{word-spacing:26.181713px;}
.ws181{word-spacing:26.205689px;}
.ws63{word-spacing:26.241488px;}
.wsd0{word-spacing:26.301264px;}
.wsff{word-spacing:26.361040px;}
.wse{word-spacing:26.415014px;}
.ws9d{word-spacing:26.453992px;}
.ws9e{word-spacing:26.480591px;}
.ws17b{word-spacing:26.492612px;}
.ws47{word-spacing:26.540366px;}
.ws6a{word-spacing:26.600142px;}
.ws57{word-spacing:26.659918px;}
.ws163{word-spacing:26.719693px;}
.wsb8{word-spacing:26.779469px;}
.ws160{word-spacing:26.825350px;}
.ws28{word-spacing:26.839244px;}
.ws18{word-spacing:26.845402px;}
.ws128{word-spacing:27.018571px;}
.ws12d{word-spacing:27.048258px;}
.ws5e{word-spacing:27.078347px;}
.ws16{word-spacing:27.275789px;}
.ws171{word-spacing:27.317449px;}
.ws56{word-spacing:27.437000px;}
.wsab{word-spacing:27.496776px;}
.ws184{word-spacing:27.592486px;}
.ws32{word-spacing:27.735878px;}
.ws89{word-spacing:27.915205px;}
.ws16f{word-spacing:27.974981px;}
.wse0{word-spacing:28.021943px;}
.wse1{word-spacing:28.034756px;}
.ws122{word-spacing:28.154308px;}
.wsb4{word-spacing:28.214083px;}
.wse7{word-spacing:28.273859px;}
.ws76{word-spacing:28.393410px;}
.ws6f{word-spacing:28.453186px;}
.ws42{word-spacing:28.752064px;}
.wsb6{word-spacing:28.811839px;}
.ws3e{word-spacing:28.871615px;}
.ws16b{word-spacing:28.931390px;}
.ws12e{word-spacing:28.991166px;}
.wsa1{word-spacing:29.050942px;}
.ws9c{word-spacing:29.110717px;}
.wscb{word-spacing:29.170493px;}
.ws6b{word-spacing:29.290044px;}
.ws188{word-spacing:29.361848px;}
.ws15a{word-spacing:29.469371px;}
.ws88{word-spacing:29.529146px;}
.ws19{word-spacing:29.589120px;}
.wsf6{word-spacing:29.708473px;}
.ws15d{word-spacing:29.887800px;}
.wsf9{word-spacing:29.947576px;}
.ws16c{word-spacing:30.067127px;}
.ws15c{word-spacing:30.126902px;}
.ws84{word-spacing:30.186678px;}
.ws5d{word-spacing:30.246454px;}
.wse3{word-spacing:30.274470px;}
.wse4{word-spacing:30.288258px;}
.wse5{word-spacing:30.306229px;}
.wscc{word-spacing:30.485556px;}
.ws12{word-spacing:30.665088px;}
.ws108{word-spacing:30.724658px;}
.ws2e{word-spacing:30.784434px;}
.wsa8{word-spacing:30.844210px;}
.ws22{word-spacing:30.880282px;}
.ws61{word-spacing:30.903985px;}
.ws192{word-spacing:30.939928px;}
.wsd9{word-spacing:30.963761px;}
.ws55{word-spacing:31.083312px;}
.ws14{word-spacing:31.149274px;}
.ws6e{word-spacing:31.202863px;}
.ws191{word-spacing:31.226852px;}
.wsf8{word-spacing:31.262639px;}
.ws14c{word-spacing:31.441966px;}
.ws1{word-spacing:31.459998px;}
.wsa6{word-spacing:31.501741px;}
.ws6c{word-spacing:31.561517px;}
.ws1d{word-spacing:31.687258px;}
.ws1e{word-spacing:31.794854px;}
.ws162{word-spacing:31.920170px;}
.ws16e{word-spacing:32.099497px;}
.wsca{word-spacing:32.278824px;}
.ws2f{word-spacing:32.458151px;}
.ws79{word-spacing:32.517926px;}
.ws102{word-spacing:32.757029px;}
.ws103{word-spacing:32.768624px;}
.ws157{word-spacing:32.876580px;}
.ws164{word-spacing:32.936356px;}
.ws2b{word-spacing:32.996131px;}
.wsf7{word-spacing:33.115682px;}
.ws165{word-spacing:33.175458px;}
.wsbd{word-spacing:33.235234px;}
.wsaf{word-spacing:33.295009px;}
.wsc6{word-spacing:33.474336px;}
.wsba{word-spacing:33.593887px;}
.wsdb{word-spacing:33.653663px;}
.ws31{word-spacing:33.713438px;}
.ws107{word-spacing:33.952541px;}
.ws33{word-spacing:34.012316px;}
.wsb9{word-spacing:34.311194px;}
.wsb5{word-spacing:34.430746px;}
.ws153{word-spacing:34.490521px;}
.ws17{word-spacing:34.538573px;}
.wsd7{word-spacing:34.550297px;}
.ws12f{word-spacing:34.610072px;}
.ws83{word-spacing:35.028502px;}
.ws106{word-spacing:35.506706px;}
.wse6{word-spacing:35.566482px;}
.ws124{word-spacing:35.686033px;}
.ws134{word-spacing:35.694258px;}
.wsd5{word-spacing:36.104462px;}
.ws68{word-spacing:36.224014px;}
.ws27{word-spacing:36.260122px;}
.ws69{word-spacing:36.403340px;}
.ws2c{word-spacing:36.761994px;}
.ws126{word-spacing:36.941321px;}
.ws87{word-spacing:37.060872px;}
.ws20{word-spacing:37.389888px;}
.wsac{word-spacing:37.479301px;}
.ws135{word-spacing:37.778179px;}
.ws78{word-spacing:37.837955px;}
.ws123{word-spacing:45.628187px;}
.ws7{word-spacing:50.068168px;}
.ws148{word-spacing:143.390069px;}
.ws14a{word-spacing:143.411433px;}
.ws149{word-spacing:152.261433px;}
.ws144{word-spacing:161.093255px;}
.ws147{word-spacing:168.352422px;}
.ws140{word-spacing:171.111671px;}
.ws145{word-spacing:176.171733px;}
.ws143{word-spacing:184.094964px;}
.ws14b{word-spacing:191.999917px;}
.ws146{word-spacing:193.944579px;}
.ws142{word-spacing:200.832174px;}
.ws141{word-spacing:214.093469px;}
.ws13f{word-spacing:266.166593px;}
.ws11d{word-spacing:299.865664px;}
.ws11f{word-spacing:312.567664px;}
.ws169{word-spacing:383.331928px;}
.ws11a{word-spacing:533.958853px;}
.ws120{word-spacing:617.827429px;}
.ws121{word-spacing:621.461794px;}
.ws168{word-spacing:622.715921px;}
.ws167{word-spacing:646.751599px;}
._2d{margin-left:-23.252708px;}
._10{margin-left:-18.602213px;}
._3{margin-left:-10.903104px;}
._d{margin-left:-9.322119px;}
._4{margin-left:-7.268736px;}
._b{margin-left:-5.780747px;}
._e{margin-left:-4.638581px;}
._2{margin-left:-3.634368px;}
._0{margin-left:-1.817184px;}
._5{width:1.249314px;}
._1{width:2.271480px;}
._16{width:3.300132px;}
._c{width:4.306985px;}
._11{width:5.327314px;}
._2e{width:6.658307px;}
._2f{width:7.986040px;}
._8{width:9.483429px;}
._f{width:11.907329px;}
._15{width:17.095822px;}
._9{width:18.682923px;}
._a{width:19.989024px;}
._2a{width:21.100787px;}
._2b{width:22.415850px;}
._12{width:26.480591px;}
._28{width:28.214083px;}
._13{width:30.545332px;}
._14{width:33.354785px;}
._7{width:37.252272px;}
._29{width:42.908330px;}
._6{width:44.350647px;}
._31{width:46.910441px;}
._30{width:52.010602px;}
._2c{width:121.616867px;}
._18{width:184.429331px;}
._1b{width:215.369261px;}
._22{width:219.720935px;}
._21{width:296.167795px;}
._20{width:306.706606px;}
._23{width:341.998208px;}
._1d{width:395.126896px;}
._1c{width:411.367619px;}
._1e{width:438.404537px;}
._25{width:459.044757px;}
._1a{width:464.400664px;}
._24{width:480.324924px;}
._27{width:496.889131px;}
._26{width:512.813391px;}
._1f{width:526.059697px;}
._17{width:528.785471px;}
._19{width:547.339864px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.848959px;}
.fse{font-size:30.909597px;}
.fs9{font-size:35.865600px;}
.fsd{font-size:37.091520px;}
.fsa{font-size:38.256600px;}
.fs3{font-size:41.842800px;}
.fsb{font-size:43.273438px;}
.fs8{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:56.787000px;}
.fs7{font-size:59.775600px;}
.fs5{font-size:65.753400px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.fs4{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y190{bottom:6.523234px;}
.y191{bottom:10.000564px;}
.y18f{bottom:13.477883px;}
.y180{bottom:19.999311px;}
.y18e{bottom:20.432547px;}
.y181{bottom:26.363091px;}
.y188{bottom:49.264303px;}
.y187{bottom:56.218965px;}
.y186{bottom:68.852705px;}
.y11c{bottom:69.174000px;}
.y51{bottom:69.175500px;}
.ycd{bottom:73.393500px;}
.yab{bottom:73.395000px;}
.y185{bottom:80.443801px;}
.y50{bottom:82.624500px;}
.y77{bottom:87.108000px;}
.y4f{bottom:96.075000px;}
.ycc{bottom:98.215500px;}
.yaa{bottom:99.031500px;}
.yec{bottom:104.136000px;}
.y76{bottom:105.040500px;}
.y4e{bottom:109.524000px;}
.y1e4{bottom:110.625000px;}
.y1b{bottom:111.475500px;}
.y18d{bottom:115.838584px;}
.ycb{bottom:116.148000px;}
.ya9{bottom:116.964000px;}
.y18a{bottom:119.315914px;}
.y183{bottom:121.400213px;}
.yeb{bottom:122.068500px;}
.y18c{bottom:122.793233px;}
.y4d{bottom:122.973000px;}
.y1b5{bottom:123.075000px;}
.y1e3{bottom:124.074000px;}
.y153{bottom:124.570500px;}
.y189{bottom:126.270567px;}
.y1a{bottom:129.409500px;}
.y18b{bottom:129.747897px;}
.y182{bottom:131.309241px;}
.yca{bottom:134.080500px;}
.ya8{bottom:134.896500px;}
.y4c{bottom:136.423500px;}
.y1b4{bottom:136.525500px;}
.y1e2{bottom:137.523000px;}
.yea{bottom:140.001000px;}
.y75{bottom:140.905500px;}
.y152{bottom:142.503000px;}
.y19{bottom:147.342000px;}
.y4b{bottom:149.872500px;}
.y1b3{bottom:149.974500px;}
.y1e1{bottom:150.973500px;}
.yc9{bottom:152.013000px;}
.ya7{bottom:152.829000px;}
.ye9{bottom:157.933500px;}
.y11b{bottom:158.838000px;}
.y74{bottom:158.839500px;}
.y151{bottom:160.435500px;}
.y1b2{bottom:163.423500px;}
.y1e0{bottom:164.422500px;}
.y18{bottom:165.274500px;}
.yc8{bottom:169.947000px;}
.ya6{bottom:170.761500px;}
.ye8{bottom:175.866000px;}
.y73{bottom:176.772000px;}
.y1df{bottom:177.871500px;}
.y150{bottom:178.369500px;}
.y11a{bottom:178.989000px;}
.y4a{bottom:180.094500px;}
.y1b1{bottom:186.712500px;}
.yc7{bottom:187.879500px;}
.ya5{bottom:188.695500px;}
.y1de{bottom:191.322000px;}
.y184{bottom:192.798442px;}
.ye7{bottom:193.800000px;}
.y72{bottom:194.704500px;}
.y14f{bottom:196.302000px;}
.y119{bottom:196.921500px;}
.y49{bottom:198.028500px;}
.y1dd{bottom:204.771000px;}
.yc6{bottom:205.812000px;}
.ya4{bottom:206.628000px;}
.ye6{bottom:211.732500px;}
.y71{bottom:212.637000px;}
.y14e{bottom:214.234500px;}
.y118{bottom:214.854000px;}
.y48{bottom:215.961000px;}
.y1dc{bottom:218.220000px;}
.y17{bottom:219.072000px;}
.yc5{bottom:223.744500px;}
.ya3{bottom:224.560500px;}
.y1b0{bottom:226.372500px;}
.y17f{bottom:227.326746px;}
.ye5{bottom:229.665000px;}
.y70{bottom:230.569500px;}
.y1db{bottom:231.670500px;}
.y14d{bottom:232.167000px;}
.y117{bottom:232.788000px;}
.y47{bottom:233.893500px;}
.y16{bottom:237.006000px;}
.yc4{bottom:241.677000px;}
.ya2{bottom:242.493000px;}
.y1af{bottom:244.305000px;}
.y1da{bottom:245.119500px;}
.ye4{bottom:247.597500px;}
.y6f{bottom:248.502000px;}
.y14c{bottom:250.099500px;}
.y116{bottom:250.720500px;}
.y46{bottom:251.826000px;}
.y17d{bottom:253.939500px;}
.y15{bottom:254.938500px;}
.y1d9{bottom:258.570000px;}
.yc3{bottom:259.609500px;}
.ya1{bottom:260.425500px;}
.y1ae{bottom:262.237500px;}
.ye3{bottom:265.530000px;}
.y6e{bottom:266.436000px;}
.y14b{bottom:268.033500px;}
.y115{bottom:268.653000px;}
.y45{bottom:269.758500px;}
.y1d8{bottom:272.019000px;}
.y14{bottom:272.871000px;}
.yc2{bottom:277.543500px;}
.ya0{bottom:278.358000px;}
.y1ad{bottom:280.170000px;}
.ye2{bottom:283.464000px;}
.y6d{bottom:284.368500px;}
.y1d7{bottom:285.468000px;}
.y14a{bottom:285.966000px;}
.y114{bottom:286.585500px;}
.y44{bottom:287.691000px;}
.y17c{bottom:293.080500px;}
.yc1{bottom:295.476000px;}
.y9f{bottom:296.292000px;}
.y1ac{bottom:298.102500px;}
.y1d6{bottom:298.918500px;}
.ye1{bottom:301.396500px;}
.y6c{bottom:302.301000px;}
.y149{bottom:303.898500px;}
.y113{bottom:304.518000px;}
.y43{bottom:305.625000px;}
.y13{bottom:308.736000px;}
.y17b{bottom:311.013000px;}
.y1d5{bottom:312.367500px;}
.yc0{bottom:313.408500px;}
.y9e{bottom:314.224500px;}
.y1ab{bottom:316.036500px;}
.ye0{bottom:319.329000px;}
.y6b{bottom:320.233500px;}
.y148{bottom:321.831000px;}
.y112{bottom:322.452000px;}
.y42{bottom:323.557500px;}
.y1d4{bottom:325.816500px;}
.y12{bottom:326.668500px;}
.y17a{bottom:328.945500px;}
.ybf{bottom:331.341000px;}
.y9d{bottom:332.157000px;}
.y1aa{bottom:333.969000px;}
.ydf{bottom:337.261500px;}
.y6a{bottom:338.166000px;}
.y1d3{bottom:339.267000px;}
.y147{bottom:339.763500px;}
.y111{bottom:340.384500px;}
.y41{bottom:341.490000px;}
.y11{bottom:344.602500px;}
.y179{bottom:346.878000px;}
.ybe{bottom:349.273500px;}
.y9c{bottom:350.089500px;}
.y1a9{bottom:351.901500px;}
.y1d2{bottom:352.716000px;}
.yde{bottom:355.194000px;}
.y69{bottom:356.098500px;}
.y146{bottom:357.696000px;}
.y110{bottom:358.317000px;}
.y40{bottom:359.422500px;}
.y10{bottom:362.535000px;}
.y178{bottom:364.810500px;}
.y1d1{bottom:366.166500px;}
.ybd{bottom:367.206000px;}
.y9b{bottom:368.022000px;}
.ydd{bottom:373.126500px;}
.y68{bottom:374.032500px;}
.y145{bottom:375.630000px;}
.y1a8{bottom:375.637500px;}
.y10f{bottom:376.249500px;}
.y1d0{bottom:379.615500px;}
.yf{bottom:380.467500px;}
.y177{bottom:382.744500px;}
.y3f{bottom:383.674500px;}
.ybc{bottom:385.140000px;}
.y9a{bottom:385.956000px;}
.ydc{bottom:391.060500px;}
.y67{bottom:391.965000px;}
.y1cf{bottom:393.064500px;}
.y144{bottom:393.562500px;}
.y10e{bottom:394.182000px;}
.ye{bottom:398.400000px;}
.y176{bottom:400.677000px;}
.ybb{bottom:403.072500px;}
.y99{bottom:403.888500px;}
.y1ce{bottom:406.515000px;}
.ydb{bottom:408.993000px;}
.y66{bottom:409.897500px;}
.y143{bottom:411.495000px;}
.y10d{bottom:412.114500px;}
.y1a7{bottom:415.297500px;}
.y175{bottom:418.609500px;}
.y1cd{bottom:419.964000px;}
.yba{bottom:421.005000px;}
.y98{bottom:421.821000px;}
.yda{bottom:426.925500px;}
.y65{bottom:427.830000px;}
.y3e{bottom:428.220000px;}
.y142{bottom:429.427500px;}
.y10c{bottom:430.048500px;}
.y1a6{bottom:433.230000px;}
.y1cc{bottom:433.413000px;}
.y174{bottom:436.542000px;}
.yb9{bottom:438.937500px;}
.y97{bottom:439.753500px;}
.y3d{bottom:443.164500px;}
.yd9{bottom:444.858000px;}
.y64{bottom:445.762500px;}
.y1cb{bottom:446.863500px;}
.y141{bottom:447.360000px;}
.y10b{bottom:447.981000px;}
.y1a5{bottom:451.164000px;}
.yd{bottom:452.199000px;}
.y173{bottom:454.474500px;}
.yb8{bottom:456.870000px;}
.y96{bottom:457.686000px;}
.y1ca{bottom:460.312500px;}
.yd8{bottom:462.790500px;}
.y63{bottom:463.696500px;}
.y140{bottom:465.292500px;}
.y10a{bottom:465.913500px;}
.y3c{bottom:466.684500px;}
.y1a4{bottom:469.096500px;}
.yc{bottom:470.131500px;}
.y172{bottom:472.408500px;}
.y1c9{bottom:473.763000px;}
.yb7{bottom:474.804000px;}
.y95{bottom:475.618500px;}
.yd7{bottom:480.723000px;}
.y3b{bottom:481.629000px;}
.y13f{bottom:483.226500px;}
.y109{bottom:483.846000px;}
.y1a3{bottom:487.029000px;}
.y1c8{bottom:487.212000px;}
.y171{bottom:490.341000px;}
.yb6{bottom:492.736500px;}
.y94{bottom:493.552500px;}
.y3a{bottom:496.572000px;}
.yd6{bottom:498.657000px;}
.y62{bottom:499.561500px;}
.y1c7{bottom:500.661000px;}
.y13e{bottom:501.159000px;}
.y108{bottom:501.778500px;}
.y1a2{bottom:504.961500px;}
.yb{bottom:505.996500px;}
.y170{bottom:508.273500px;}
.y93{bottom:511.485000px;}
.y39{bottom:511.516500px;}
.y1c6{bottom:514.111500px;}
.yb5{bottom:515.170500px;}
.yd5{bottom:516.589500px;}
.y61{bottom:517.494000px;}
.y13d{bottom:519.091500px;}
.y107{bottom:519.711000px;}
.y1a1{bottom:522.894000px;}
.ya{bottom:523.929000px;}
.y16f{bottom:526.206000px;}
.y38{bottom:526.461000px;}
.y1c5{bottom:527.560500px;}
.y92{bottom:529.417500px;}
.yd4{bottom:534.522000px;}
.y60{bottom:535.426500px;}
.y106{bottom:537.645000px;}
.y1a0{bottom:540.826500px;}
.y1c4{bottom:541.009500px;}
.y37{bottom:541.404000px;}
.y9{bottom:541.861500px;}
.y16e{bottom:544.138500px;}
.y13c{bottom:547.321500px;}
.y91{bottom:547.350000px;}
.yd3{bottom:552.454500px;}
.y5f{bottom:553.359000px;}
.y1c3{bottom:554.460000px;}
.y105{bottom:555.577500px;}
.y36{bottom:556.348500px;}
.y19f{bottom:558.760500px;}
.y8{bottom:559.795500px;}
.y16d{bottom:562.254000px;}
.y90{bottom:565.282500px;}
.y1c2{bottom:567.909000px;}
.yd2{bottom:570.387000px;}
.yb4{bottom:571.291500px;}
.y35{bottom:571.293000px;}
.y104{bottom:573.510000px;}
.y19e{bottom:576.693000px;}
.y16c{bottom:580.186500px;}
.y1c1{bottom:581.358000px;}
.y8f{bottom:583.215000px;}
.y34{bottom:586.236000px;}
.yd1{bottom:588.319500px;}
.yb3{bottom:589.224000px;}
.y5e{bottom:589.225500px;}
.y103{bottom:591.442500px;}
.y19d{bottom:594.625500px;}
.y1c0{bottom:594.808500px;}
.y16b{bottom:598.119000px;}
.y8e{bottom:601.149000px;}
.y33{bottom:601.180500px;}
.y7{bottom:604.627500px;}
.yd0{bottom:606.253500px;}
.y5d{bottom:607.158000px;}
.y13b{bottom:607.399500px;}
.y1bf{bottom:608.257500px;}
.y102{bottom:609.375000px;}
.y19c{bottom:612.558000px;}
.y16a{bottom:616.053000px;}
.y32{bottom:616.125000px;}
.y1be{bottom:621.708000px;}
.y8d{bottom:623.736000px;}
.ycf{bottom:624.186000px;}
.y5c{bottom:625.090500px;}
.y101{bottom:627.307500px;}
.y13a{bottom:627.357000px;}
.y19b{bottom:630.490500px;}
.y31{bottom:631.068000px;}
.y169{bottom:633.985500px;}
.y1bd{bottom:635.157000px;}
.yce{bottom:642.118500px;}
.y5b{bottom:643.023000px;}
.y139{bottom:643.722000px;}
.y100{bottom:645.241500px;}
.y30{bottom:646.012500px;}
.y19a{bottom:648.424500px;}
.y1bc{bottom:648.606000px;}
.y168{bottom:651.918000px;}
.y138{bottom:660.087000px;}
.y5a{bottom:660.955500px;}
.y2f{bottom:660.957000px;}
.y8c{bottom:661.008000px;}
.y1bb{bottom:662.056500px;}
.yff{bottom:663.174000px;}
.y199{bottom:666.540000px;}
.y167{bottom:669.850500px;}
.y1ba{bottom:675.505500px;}
.y2e{bottom:675.900000px;}
.y137{bottom:676.452000px;}
.yb2{bottom:678.888000px;}
.y59{bottom:678.889500px;}
.y8b{bottom:678.940500px;}
.yfe{bottom:681.106500px;}
.y198{bottom:684.472500px;}
.y166{bottom:687.783000px;}
.y1b9{bottom:688.954500px;}
.y2d{bottom:690.844500px;}
.y136{bottom:694.098000px;}
.y58{bottom:696.822000px;}
.y8a{bottom:696.874500px;}
.yfd{bottom:699.039000px;}
.y197{bottom:702.405000px;}
.y165{bottom:705.715500px;}
.y2c{bottom:705.789000px;}
.y135{bottom:710.227500px;}
.y57{bottom:714.754500px;}
.y89{bottom:714.807000px;}
.y1b8{bottom:715.854000px;}
.yfc{bottom:716.971500px;}
.y196{bottom:720.337500px;}
.y2b{bottom:720.732000px;}
.y164{bottom:723.649500px;}
.y1b7{bottom:729.304500px;}
.y134{bottom:729.331500px;}
.y56{bottom:732.687000px;}
.y88{bottom:732.739500px;}
.yfb{bottom:734.905500px;}
.y2a{bottom:735.676500px;}
.y195{bottom:738.270000px;}
.y163{bottom:741.582000px;}
.y1b6{bottom:742.753500px;}
.y133{bottom:742.782000px;}
.y29{bottom:750.619500px;}
.y87{bottom:750.672000px;}
.yfa{bottom:752.838000px;}
.y194{bottom:756.202500px;}
.y162{bottom:759.636000px;}
.y132{bottom:761.331000px;}
.y28{bottom:765.564000px;}
.y6{bottom:768.187500px;}
.y55{bottom:768.552000px;}
.y86{bottom:768.604500px;}
.yf9{bottom:770.770500px;}
.y131{bottom:774.780000px;}
.y161{bottom:777.568500px;}
.y27{bottom:780.508500px;}
.yb1{bottom:786.484500px;}
.y54{bottom:786.486000px;}
.yf8{bottom:788.703000px;}
.y130{bottom:791.145000px;}
.y26{bottom:795.451500px;}
.y160{bottom:795.501000px;}
.y5{bottom:804.054000px;}
.y53{bottom:804.418500px;}
.y193{bottom:804.520500px;}
.yf7{bottom:806.635500px;}
.y12f{bottom:807.510000px;}
.y25{bottom:810.396000px;}
.y15f{bottom:813.433500px;}
.y192{bottom:817.969500px;}
.y52{bottom:822.351000px;}
.y12e{bottom:823.875000px;}
.yf6{bottom:824.568000px;}
.y24{bottom:825.340500px;}
.y15e{bottom:831.367500px;}
.y4{bottom:839.919000px;}
.y23{bottom:840.283500px;}
.y12d{bottom:842.425500px;}
.yf5{bottom:842.502000px;}
.y15d{bottom:849.300000px;}
.y85{bottom:858.216000px;}
.yf4{bottom:860.434500px;}
.y12b{bottom:860.974500px;}
.y17e{bottom:862.801500px;}
.y15c{bottom:867.232500px;}
.y12c{bottom:874.218000px;}
.y12a{bottom:874.423500px;}
.yb0{bottom:876.148500px;}
.y84{bottom:876.150000px;}
.yf3{bottom:878.367000px;}
.y15b{bottom:885.165000px;}
.y129{bottom:887.874000px;}
.yaf{bottom:894.081000px;}
.y83{bottom:894.082500px;}
.yf2{bottom:896.299500px;}
.y3{bottom:902.683500px;}
.y15a{bottom:903.097500px;}
.y128{bottom:906.423000px;}
.y82{bottom:912.015000px;}
.y22{bottom:914.155500px;}
.yf1{bottom:914.232000px;}
.y127{bottom:922.788000px;}
.y81{bottom:929.947500px;}
.yf0{bottom:932.164500px;}
.y2{bottom:932.571000px;}
.y21{bottom:934.180500px;}
.y126{bottom:941.170500px;}
.y80{bottom:947.880000px;}
.yef{bottom:950.098500px;}
.y20{bottom:954.205500px;}
.y125{bottom:957.369000px;}
.y159{bottom:960.807000px;}
.y1{bottom:962.460000px;}
.y7f{bottom:965.812500px;}
.y124{bottom:973.467000px;}
.y158{bottom:974.257500px;}
.yee{bottom:980.500500px;}
.yae{bottom:983.745000px;}
.y7e{bottom:983.746500px;}
.y157{bottom:987.706500px;}
.y1f{bottom:989.173500px;}
.y123{bottom:990.402000px;}
.y156{bottom:1001.155500px;}
.yad{bottom:1001.677500px;}
.y7d{bottom:1001.679000px;}
.y121{bottom:1007.899500px;}
.y120{bottom:1014.538500px;}
.y155{bottom:1014.606000px;}
.yed{bottom:1016.449500px;}
.y7c{bottom:1019.611500px;}
.y122{bottom:1021.350000px;}
.y1e{bottom:1031.017500px;}
.y154{bottom:1033.621500px;}
.y7b{bottom:1037.544000px;}
.y11f{bottom:1050.994500px;}
.y7a{bottom:1055.476500px;}
.y11e{bottom:1064.443500px;}
.y1d{bottom:1072.860000px;}
.y79{bottom:1073.409000px;}
.y11d{bottom:1077.892500px;}
.yac{bottom:1091.341500px;}
.y78{bottom:1091.343000px;}
.y1c{bottom:1141.168500px;}
.h22{height:21.461644px;}
.h12{height:24.675533px;}
.h21{height:25.138198px;}
.h7{height:28.787846px;}
.hf{height:32.900573px;}
.he{height:33.140573px;}
.h19{height:33.187496px;}
.h1b{height:35.043450px;}
.h20{height:35.779467px;}
.h17{height:35.865450px;}
.h1e{height:36.849450px;}
.hc{height:37.336090px;}
.hb{height:37.605082px;}
.h1d{height:39.879450px;}
.h1a{height:39.945450px;}
.h13{height:40.826735px;}
.hd{height:41.125613px;}
.h24{height:41.425613px;}
.h5{height:42.135954px;}
.h16{height:42.141798px;}
.h4{height:42.192741px;}
.h10{height:44.831700px;}
.h9{height:45.238339px;}
.ha{height:45.568339px;}
.h15{height:49.473619px;}
.h11{height:50.477846px;}
.h14{height:50.483846px;}
.h18{height:60.433496px;}
.h1c{height:61.941450px;}
.h23{height:63.189576px;}
.h2{height:67.417526px;}
.h3{height:84.385482px;}
.h8{height:98.701718px;}
.h1f{height:241.094850px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:771.194550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:29.750006px;}
.x2f{left:32.087560px;}
.x2d{left:49.586304px;}
.x2c{left:62.681365px;}
.xd{left:73.446000px;}
.x1c{left:74.520000px;}
.x1d{left:79.084500px;}
.x15{left:84.073500px;}
.xf{left:85.401000px;}
.xc{left:88.389000px;}
.x8{left:95.452500px;}
.x2{left:100.996500px;}
.x1{left:102.046500px;}
.x4{left:114.460500px;}
.x13{left:126.046500px;}
.x18{left:129.487500px;}
.x5{left:130.815000px;}
.x6{left:143.907000px;}
.x7{left:157.128000px;}
.x3d{left:194.281500px;}
.x3a{left:196.570500px;}
.xe{left:203.428500px;}
.x2a{left:208.827204px;}
.x28{left:211.387254px;}
.x14{left:215.791500px;}
.x2b{left:220.418309px;}
.x29{left:222.978359px;}
.x36{left:236.448728px;}
.x1b{left:238.953000px;}
.x37{left:244.073326px;}
.x1e{left:245.670000px;}
.x30{left:249.655455px;}
.x11{left:252.879000px;}
.x21{left:272.508000px;}
.xa{left:283.776000px;}
.x38{left:305.129121px;}
.xb{left:310.012500px;}
.x27{left:313.541688px;}
.x10{left:345.735000px;}
.x20{left:347.287500px;}
.x1f{left:353.205000px;}
.x12{left:367.185000px;}
.x3b{left:389.421000px;}
.x3c{left:412.563000px;}
.x32{left:420.837539px;}
.x31{left:424.352505px;}
.x33{left:457.134767px;}
.x16{left:467.967000px;}
.x23{left:473.122500px;}
.x19{left:479.922000px;}
.x17{left:482.910000px;}
.x25{left:486.576000px;}
.x3e{left:495.355500px;}
.x24{left:519.094500px;}
.x26{left:542.014500px;}
.x39{left:591.138457px;}
.x1a{left:595.917000px;}
.x34{left:597.257273px;}
.x35{left:614.183188px;}
.x22{left:631.483500px;}
.x3f{left:660.003000px;}
.x9{left:733.255500px;}
.x3{left:839.323500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.973333pt;}
.v4{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.626667pt;}
.v9{vertical-align:12.363856pt;}
.v8{vertical-align:14.424476pt;}
.v1{vertical-align:19.280000pt;}
.v7{vertical-align:23.178667pt;}
.v5{vertical-align:24.218667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000257pt;}
.ls38{letter-spacing:0.004376pt;}
.ls19{letter-spacing:0.005590pt;}
.ls2c{letter-spacing:0.009709pt;}
.ls2e{letter-spacing:0.010010pt;}
.ls2d{letter-spacing:0.011552pt;}
.ls3a{letter-spacing:0.012752pt;}
.ls39{letter-spacing:0.015343pt;}
.ls20{letter-spacing:0.016495pt;}
.ls33{letter-spacing:0.018461pt;}
.ls3c{letter-spacing:0.021254pt;}
.ls3b{letter-spacing:0.022927pt;}
.ls13{letter-spacing:0.028642pt;}
.ls15{letter-spacing:0.034000pt;}
.ls10{letter-spacing:0.044586pt;}
.ls31{letter-spacing:0.211135pt;}
.ls35{letter-spacing:0.271573pt;}
.ls18{letter-spacing:0.428729pt;}
.ls43{letter-spacing:0.741348pt;}
.ls3f{letter-spacing:0.952164pt;}
.ls24{letter-spacing:1.066436pt;}
.ls25{letter-spacing:1.079795pt;}
.ls1d{letter-spacing:1.530255pt;}
.ls3e{letter-spacing:2.074358pt;}
.ls28{letter-spacing:2.105380pt;}
.ls23{letter-spacing:2.108364pt;}
.ls2a{letter-spacing:2.122364pt;}
.ls2b{letter-spacing:2.124101pt;}
.ls40{letter-spacing:2.125360pt;}
.ls32{letter-spacing:2.125766pt;}
.ls29{letter-spacing:2.125802pt;}
.ls22{letter-spacing:2.125997pt;}
.ls1e{letter-spacing:2.127698pt;}
.ls1f{letter-spacing:2.127769pt;}
.ls2{letter-spacing:2.360433pt;}
.lsf{letter-spacing:2.592939pt;}
.ls1{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.655207pt;}
.ls5{letter-spacing:2.655711pt;}
.ls7{letter-spacing:2.656015pt;}
.lsd{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.656693pt;}
.lse{letter-spacing:2.657067pt;}
.ls37{letter-spacing:2.659661pt;}
.ls1a{letter-spacing:2.671508pt;}
.ls16{letter-spacing:2.676842pt;}
.ls41{letter-spacing:3.307060pt;}
.ls1c{letter-spacing:4.319783pt;}
.ls9{letter-spacing:7.866986pt;}
.lsa{letter-spacing:7.872319pt;}
.ls17{letter-spacing:8.892586pt;}
.ls8{letter-spacing:8.897919pt;}
.ls11{letter-spacing:12.393067pt;}
.ls26{letter-spacing:12.751769pt;}
.ls27{letter-spacing:12.753665pt;}
.lsb{letter-spacing:13.120319pt;}
.ls21{letter-spacing:14.350327pt;}
.ls4{letter-spacing:14.433867pt;}
.ls12{letter-spacing:18.595733pt;}
.ls30{letter-spacing:19.503508pt;}
.ls14{letter-spacing:22.548842pt;}
.lsc{letter-spacing:23.580533pt;}
.ls3d{letter-spacing:26.559508pt;}
.ls2f{letter-spacing:28.602175pt;}
.ls42{letter-spacing:32.423200pt;}
.ls34{letter-spacing:136.714436pt;}
.ls36{letter-spacing:137.685102pt;}
.ws166{word-spacing:-9.616320pt;}
.ws10f{word-spacing:-4.372917pt;}
.ws29{word-spacing:-2.677954pt;}
.ws7e{word-spacing:-2.635446pt;}
.ws137{word-spacing:-2.167867pt;}
.ws117{word-spacing:-2.142370pt;}
.ws111{word-spacing:-2.108364pt;}
.ws110{word-spacing:-1.583389pt;}
.ws11e{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.058447pt;}
.ws11c{word-spacing:-0.055259pt;}
.ws75{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.050477pt;}
.wsd{word-spacing:-0.047821pt;}
.ws3b{word-spacing:-0.042507pt;}
.ws13c{word-spacing:-0.034006pt;}
.ws67{word-spacing:0.000000pt;}
.ws94{word-spacing:7.772999pt;}
.ws92{word-spacing:7.776733pt;}
.ws13e{word-spacing:8.433455pt;}
.ws113{word-spacing:8.452909pt;}
.ws13d{word-spacing:8.458933pt;}
.ws139{word-spacing:8.464269pt;}
.ws138{word-spacing:8.466197pt;}
.ws115{word-spacing:8.467461pt;}
.ws13b{word-spacing:8.472879pt;}
.ws136{word-spacing:8.473655pt;}
.ws116{word-spacing:8.493790pt;}
.ws114{word-spacing:8.501467pt;}
.ws118{word-spacing:8.535473pt;}
.ws13a{word-spacing:8.545831pt;}
.ws112{word-spacing:9.715185pt;}
.ws194{word-spacing:10.074206pt;}
.ws7d{word-spacing:10.584293pt;}
.ws183{word-spacing:10.924350pt;}
.ws186{word-spacing:11.179394pt;}
.ws18c{word-spacing:11.349422pt;}
.ws34{word-spacing:11.434437pt;}
.ws15{word-spacing:11.811738pt;}
.ws178{word-spacing:11.902016pt;}
.ws1a{word-spacing:11.907379pt;}
.wsef{word-spacing:12.327057pt;}
.wsf0{word-spacing:12.338333pt;}
.ws45{word-spacing:12.380191pt;}
.ws99{word-spacing:12.486459pt;}
.ws39{word-spacing:12.497117pt;}
.ws40{word-spacing:12.539593pt;}
.ws19a{word-spacing:12.624638pt;}
.ws151{word-spacing:12.645860pt;}
.ws185{word-spacing:12.667146pt;}
.ws119{word-spacing:12.684188pt;}
.ws16a{word-spacing:12.752160pt;}
.ws105{word-spacing:12.805262pt;}
.ws104{word-spacing:12.858396pt;}
.wsbc{word-spacing:12.911530pt;}
.ws109{word-spacing:12.962333pt;}
.ws66{word-spacing:12.964663pt;}
.ws96{word-spacing:13.026333pt;}
.ws9a{word-spacing:13.124065pt;}
.ws4b{word-spacing:13.283467pt;}
.wsf{word-spacing:13.342003pt;}
.wsf3{word-spacing:13.442868pt;}
.ws187{word-spacing:13.559797pt;}
.ws2d{word-spacing:13.602270pt;}
.ws58{word-spacing:13.761671pt;}
.wsea{word-spacing:13.830748pt;}
.ws177{word-spacing:13.857347pt;}
.ws4e{word-spacing:13.867939pt;}
.wsb7{word-spacing:13.921073pt;}
.ws2{word-spacing:13.982221pt;}
.ws195{word-spacing:13.984869pt;}
.ws5{word-spacing:14.032699pt;}
.ws21{word-spacing:14.059315pt;}
.ws150{word-spacing:14.080475pt;}
.ws6{word-spacing:14.133653pt;}
.ws4{word-spacing:14.234608pt;}
.wsf2{word-spacing:14.239876pt;}
.ws18e{word-spacing:14.239912pt;}
.wsa4{word-spacing:14.293010pt;}
.ws73{word-spacing:14.346144pt;}
.ws72{word-spacing:14.367359pt;}
.ws74{word-spacing:14.399278pt;}
.wsec{word-spacing:14.452412pt;}
.wse2{word-spacing:14.558679pt;}
.wsc1{word-spacing:14.771215pt;}
.ws18d{word-spacing:14.833558pt;}
.ws35{word-spacing:14.835013pt;}
.ws19c{word-spacing:14.836070pt;}
.wseb{word-spacing:14.877483pt;}
.ws82{word-spacing:14.930617pt;}
.ws19b{word-spacing:15.005042pt;}
.ws41{word-spacing:15.036884pt;}
.ws18a{word-spacing:15.175070pt;}
.ws49{word-spacing:15.196286pt;}
.wsc3{word-spacing:15.249420pt;}
.ws152{word-spacing:15.292852pt;}
.ws43{word-spacing:15.302554pt;}
.ws23{word-spacing:15.350477pt;}
.wsb2{word-spacing:15.408821pt;}
.wscf{word-spacing:15.515089pt;}
.wsdc{word-spacing:15.560383pt;}
.wsdd{word-spacing:15.568223pt;}
.wsde{word-spacing:15.584229pt;}
.ws65{word-spacing:15.674491pt;}
.ws179{word-spacing:15.727664pt;}
.ws25{word-spacing:15.876506pt;}
.wsc7{word-spacing:15.887026pt;}
.ws11b{word-spacing:15.897693pt;}
.wsc4{word-spacing:15.940160pt;}
.ws7c{word-spacing:15.993294pt;}
.ws3a{word-spacing:16.025214pt;}
.ws100{word-spacing:16.035444pt;}
.ws101{word-spacing:16.039666pt;}
.wsc8{word-spacing:16.046428pt;}
.ws190{word-spacing:16.067722pt;}
.ws10b{word-spacing:16.075399pt;}
.wsfa{word-spacing:16.099562pt;}
.wsfb{word-spacing:16.107399pt;}
.ws18f{word-spacing:16.110229pt;}
.ws199{word-spacing:16.152736pt;}
.ws52{word-spacing:16.205829pt;}
.ws16d{word-spacing:16.258963pt;}
.ws91{word-spacing:16.365231pt;}
.ws93{word-spacing:16.395399pt;}
.ws5b{word-spacing:16.418365pt;}
.ws198{word-spacing:16.492794pt;}
.ws18b{word-spacing:16.535301pt;}
.ws9b{word-spacing:16.577766pt;}
.ws193{word-spacing:16.620315pt;}
.wsfd{word-spacing:16.630900pt;}
.wsfe{word-spacing:16.640733pt;}
.ws80{word-spacing:16.684034pt;}
.ws81{word-spacing:16.695666pt;}
.ws3f{word-spacing:16.737168pt;}
.ws130{word-spacing:16.771948pt;}
.ws132{word-spacing:16.773563pt;}
.wsc5{word-spacing:16.790302pt;}
.ws133{word-spacing:16.792489pt;}
.ws131{word-spacing:16.797822pt;}
.ws54{word-spacing:16.896570pt;}
.wsd2{word-spacing:16.996693pt;}
.wsd4{word-spacing:17.002837pt;}
.ws38{word-spacing:17.002880pt;}
.wsd3{word-spacing:17.013563pt;}
.wsd1{word-spacing:17.014355pt;}
.wsaa{word-spacing:17.055971pt;}
.ws159{word-spacing:17.109105pt;}
.ws8a{word-spacing:17.162239pt;}
.ws64{word-spacing:17.215373pt;}
.wsfc{word-spacing:17.268507pt;}
.wsf1{word-spacing:17.321641pt;}
.ws197{word-spacing:17.385445pt;}
.wsa0{word-spacing:17.531399pt;}
.ws9f{word-spacing:17.534176pt;}
.ws172{word-spacing:17.555474pt;}
.ws125{word-spacing:17.587310pt;}
.wse8{word-spacing:17.605614pt;}
.wse9{word-spacing:17.640444pt;}
.ws11{word-spacing:17.645875pt;}
.ws17a{word-spacing:17.810517pt;}
.wsbf{word-spacing:17.852979pt;}
.ws26{word-spacing:17.884979pt;}
.wsc9{word-spacing:17.959247pt;}
.ws10c{word-spacing:17.990066pt;}
.wsb3{word-spacing:18.012381pt;}
.ws174{word-spacing:18.018102pt;}
.ws175{word-spacing:18.023053pt;}
.ws8c{word-spacing:18.065515pt;}
.ws5a{word-spacing:18.118649pt;}
.ws196{word-spacing:18.363110pt;}
.wsa9{word-spacing:18.384318pt;}
.ws4f{word-spacing:18.437452pt;}
.ws1b{word-spacing:18.458829pt;}
.wsf5{word-spacing:18.490586pt;}
.ws50{word-spacing:18.543719pt;}
.ws10d{word-spacing:18.544733pt;}
.ws36{word-spacing:18.575646pt;}
.ws170{word-spacing:18.596853pt;}
.ws37{word-spacing:18.618154pt;}
.ws6d{word-spacing:18.649987pt;}
.ws7f{word-spacing:18.703121pt;}
.ws12a{word-spacing:18.738863pt;}
.ws13{word-spacing:18.745754pt;}
.ws12c{word-spacing:18.752229pt;}
.ws7b{word-spacing:18.756255pt;}
.ws12b{word-spacing:18.765822pt;}
.ws5f{word-spacing:18.809389pt;}
.ws176{word-spacing:18.830690pt;}
.wsdf{word-spacing:18.968790pt;}
.ws129{word-spacing:19.021924pt;}
.ws3c{word-spacing:19.234460pt;}
.ws15e{word-spacing:19.287594pt;}
.ws86{word-spacing:19.340727pt;}
.ws17f{word-spacing:19.425790pt;}
.wsb0{word-spacing:19.446995pt;}
.ws17c{word-spacing:19.468298pt;}
.wsad{word-spacing:19.500129pt;}
.ws24{word-spacing:19.558707pt;}
.wsee{word-spacing:19.606397pt;}
.ws53{word-spacing:19.659531pt;}
.wsce{word-spacing:19.712665pt;}
.ws10{word-spacing:19.749990pt;}
.wsa7{word-spacing:19.765798pt;}
.ws85{word-spacing:19.814066pt;}
.ws2a{word-spacing:19.818932pt;}
.wsbe{word-spacing:19.832489pt;}
.ws46{word-spacing:19.925200pt;}
.wsc0{word-spacing:19.978334pt;}
.wsf4{word-spacing:20.031468pt;}
.wsd6{word-spacing:20.084602pt;}
.ws15f{word-spacing:20.190869pt;}
.ws95{word-spacing:20.244003pt;}
.ws97{word-spacing:20.258333pt;}
.ws10a{word-spacing:20.262066pt;}
.wsa{word-spacing:20.391321pt;}
.wsc{word-spacing:20.392498pt;}
.ws8{word-spacing:20.397003pt;}
.ws9{word-spacing:20.398166pt;}
.ws8d{word-spacing:20.403405pt;}
.ws44{word-spacing:20.509673pt;}
.wsbb{word-spacing:20.562806pt;}
.ws4c{word-spacing:20.669074pt;}
.ws8b{word-spacing:20.748852pt;}
.ws14d{word-spacing:20.758954pt;}
.ws14e{word-spacing:20.766390pt;}
.ws14f{word-spacing:20.768229pt;}
.ws10e{word-spacing:20.775342pt;}
.ws62{word-spacing:20.828476pt;}
.ws182{word-spacing:20.913542pt;}
.ws7a{word-spacing:20.934743pt;}
.ws3d{word-spacing:21.041011pt;}
.ws30{word-spacing:21.200413pt;}
.ws158{word-spacing:21.218186pt;}
.ws15b{word-spacing:21.253547pt;}
.wsb1{word-spacing:21.306681pt;}
.ws8f{word-spacing:21.334066pt;}
.ws8e{word-spacing:21.334570pt;}
.ws90{word-spacing:21.359814pt;}
.wsda{word-spacing:21.412948pt;}
.ws70{word-spacing:21.466082pt;}
.ws17d{word-spacing:21.541522pt;}
.ws17e{word-spacing:21.551150pt;}
.wsc2{word-spacing:21.572350pt;}
.ws48{word-spacing:21.625484pt;}
.wsed{word-spacing:21.784885pt;}
.ws161{word-spacing:21.838019pt;}
.ws59{word-spacing:22.050555pt;}
.ws180{word-spacing:22.103744pt;}
.ws5c{word-spacing:22.156822pt;}
.ws155{word-spacing:22.174443pt;}
.ws156{word-spacing:22.197563pt;}
.ws154{word-spacing:22.209956pt;}
.ws1c{word-spacing:22.236672pt;}
.ws51{word-spacing:22.263090pt;}
.ws189{word-spacing:22.273773pt;}
.ws4d{word-spacing:22.316224pt;}
.wscd{word-spacing:22.369358pt;}
.ws0{word-spacing:22.371554pt;}
.ws60{word-spacing:22.422492pt;}
.ws1f{word-spacing:22.427955pt;}
.ws71{word-spacing:22.528759pt;}
.wsa2{word-spacing:22.581893pt;}
.wsd8{word-spacing:22.688161pt;}
.ws4a{word-spacing:22.741295pt;}
.ws127{word-spacing:22.794429pt;}
.wsae{word-spacing:22.900697pt;}
.wsa3{word-spacing:22.953830pt;}
.ws173{word-spacing:22.953888pt;}
.ws98{word-spacing:23.166366pt;}
.wsa5{word-spacing:23.219500pt;}
.ws77{word-spacing:23.272634pt;}
.ws181{word-spacing:23.293946pt;}
.ws63{word-spacing:23.325767pt;}
.wsd0{word-spacing:23.378901pt;}
.wsff{word-spacing:23.432035pt;}
.wse{word-spacing:23.480013pt;}
.ws9d{word-spacing:23.514659pt;}
.ws9e{word-spacing:23.538303pt;}
.ws17b{word-spacing:23.548989pt;}
.ws47{word-spacing:23.591437pt;}
.ws6a{word-spacing:23.644571pt;}
.ws57{word-spacing:23.697705pt;}
.ws163{word-spacing:23.750838pt;}
.wsb8{word-spacing:23.803972pt;}
.ws160{word-spacing:23.844755pt;}
.ws28{word-spacing:23.857106pt;}
.ws18{word-spacing:23.862579pt;}
.ws128{word-spacing:24.016508pt;}
.ws12d{word-spacing:24.042896pt;}
.ws5e{word-spacing:24.069642pt;}
.ws16{word-spacing:24.245146pt;}
.ws171{word-spacing:24.282177pt;}
.ws56{word-spacing:24.388445pt;}
.wsab{word-spacing:24.441579pt;}
.ws184{word-spacing:24.526654pt;}
.ws32{word-spacing:24.654114pt;}
.ws89{word-spacing:24.813516pt;}
.ws16f{word-spacing:24.866650pt;}
.wse0{word-spacing:24.908394pt;}
.wse1{word-spacing:24.919783pt;}
.ws122{word-spacing:25.026051pt;}
.wsb4{word-spacing:25.079185pt;}
.wse7{word-spacing:25.132319pt;}
.ws76{word-spacing:25.238587pt;}
.ws6f{word-spacing:25.291721pt;}
.ws42{word-spacing:25.557390pt;}
.wsb6{word-spacing:25.610524pt;}
.ws3e{word-spacing:25.663658pt;}
.ws16b{word-spacing:25.716791pt;}
.ws12e{word-spacing:25.769925pt;}
.wsa1{word-spacing:25.823059pt;}
.ws9c{word-spacing:25.876193pt;}
.wscb{word-spacing:25.929327pt;}
.ws6b{word-spacing:26.035595pt;}
.ws188{word-spacing:26.099421pt;}
.ws15a{word-spacing:26.194996pt;}
.ws88{word-spacing:26.248130pt;}
.ws19{word-spacing:26.301440pt;}
.wsf6{word-spacing:26.407532pt;}
.ws15d{word-spacing:26.566933pt;}
.wsf9{word-spacing:26.620067pt;}
.ws16c{word-spacing:26.726335pt;}
.ws15c{word-spacing:26.779469pt;}
.ws84{word-spacing:26.832603pt;}
.ws5d{word-spacing:26.885737pt;}
.wse3{word-spacing:26.910640pt;}
.wse4{word-spacing:26.922896pt;}
.wse5{word-spacing:26.938870pt;}
.wscc{word-spacing:27.098272pt;}
.ws12{word-spacing:27.257856pt;}
.ws108{word-spacing:27.310807pt;}
.ws2e{word-spacing:27.363941pt;}
.wsa8{word-spacing:27.417075pt;}
.ws22{word-spacing:27.449139pt;}
.ws61{word-spacing:27.470209pt;}
.ws192{word-spacing:27.502158pt;}
.wsd9{word-spacing:27.523343pt;}
.ws55{word-spacing:27.629611pt;}
.ws14{word-spacing:27.688243pt;}
.ws6e{word-spacing:27.735878pt;}
.ws191{word-spacing:27.757202pt;}
.wsf8{word-spacing:27.789012pt;}
.ws14c{word-spacing:27.948414pt;}
.ws1{word-spacing:27.964443pt;}
.wsa6{word-spacing:28.001548pt;}
.ws6c{word-spacing:28.054682pt;}
.ws1d{word-spacing:28.166451pt;}
.ws1e{word-spacing:28.262093pt;}
.ws162{word-spacing:28.373485pt;}
.ws16e{word-spacing:28.532886pt;}
.wsca{word-spacing:28.692288pt;}
.ws2f{word-spacing:28.851690pt;}
.ws79{word-spacing:28.904823pt;}
.ws102{word-spacing:29.117359pt;}
.ws103{word-spacing:29.127666pt;}
.ws157{word-spacing:29.223627pt;}
.ws164{word-spacing:29.276761pt;}
.ws2b{word-spacing:29.329894pt;}
.wsf7{word-spacing:29.436162pt;}
.ws165{word-spacing:29.489296pt;}
.wsbd{word-spacing:29.542430pt;}
.wsaf{word-spacing:29.595564pt;}
.wsc6{word-spacing:29.754965pt;}
.wsba{word-spacing:29.861233pt;}
.wsdb{word-spacing:29.914367pt;}
.ws31{word-spacing:29.967501pt;}
.ws107{word-spacing:30.180036pt;}
.ws33{word-spacing:30.233170pt;}
.wsb9{word-spacing:30.498839pt;}
.wsb5{word-spacing:30.605107pt;}
.ws153{word-spacing:30.658241pt;}
.ws17{word-spacing:30.700954pt;}
.wsd7{word-spacing:30.711375pt;}
.ws12f{word-spacing:30.764509pt;}
.ws83{word-spacing:31.136446pt;}
.ws106{word-spacing:31.561517pt;}
.wse6{word-spacing:31.614651pt;}
.ws124{word-spacing:31.720918pt;}
.ws134{word-spacing:31.728229pt;}
.wsd5{word-spacing:32.092855pt;}
.ws68{word-spacing:32.199123pt;}
.ws27{word-spacing:32.231219pt;}
.ws69{word-spacing:32.358525pt;}
.ws2c{word-spacing:32.677328pt;}
.ws126{word-spacing:32.836730pt;}
.ws87{word-spacing:32.942997pt;}
.ws20{word-spacing:33.235456pt;}
.wsac{word-spacing:33.314934pt;}
.ws135{word-spacing:33.580604pt;}
.ws78{word-spacing:33.633738pt;}
.ws123{word-spacing:40.558388pt;}
.ws7{word-spacing:44.505038pt;}
.ws148{word-spacing:127.457839pt;}
.ws14a{word-spacing:127.476829pt;}
.ws149{word-spacing:135.343496pt;}
.ws144{word-spacing:143.194005pt;}
.ws147{word-spacing:149.646598pt;}
.ws140{word-spacing:152.099263pt;}
.ws145{word-spacing:156.597096pt;}
.ws143{word-spacing:163.639968pt;}
.ws14b{word-spacing:170.666593pt;}
.ws146{word-spacing:172.395181pt;}
.ws142{word-spacing:178.517488pt;}
.ws141{word-spacing:190.305306pt;}
.ws13f{word-spacing:236.592527pt;}
.ws11d{word-spacing:266.547257pt;}
.ws11f{word-spacing:277.837923pt;}
.ws169{word-spacing:340.739491pt;}
.ws11a{word-spacing:474.630091pt;}
.ws120{word-spacing:549.179937pt;}
.ws121{word-spacing:552.410484pt;}
.ws168{word-spacing:553.525263pt;}
.ws167{word-spacing:574.890310pt;}
._2d{margin-left:-20.669074pt;}
._10{margin-left:-16.535301pt;}
._3{margin-left:-9.691648pt;}
._d{margin-left:-8.286328pt;}
._4{margin-left:-6.461099pt;}
._b{margin-left:-5.138442pt;}
._e{margin-left:-4.123183pt;}
._2{margin-left:-3.230549pt;}
._0{margin-left:-1.615275pt;}
._5{width:1.110501pt;}
._1{width:2.019093pt;}
._16{width:2.933451pt;}
._c{width:3.828431pt;}
._11{width:4.735390pt;}
._2e{width:5.918495pt;}
._2f{width:7.098702pt;}
._8{width:8.429715pt;}
._f{width:10.584293pt;}
._15{width:15.196286pt;}
._9{width:16.607043pt;}
._a{width:17.768021pt;}
._2a{width:18.756255pt;}
._2b{width:19.925200pt;}
._12{width:23.538303pt;}
._28{width:25.079185pt;}
._13{width:27.151406pt;}
._14{width:29.648698pt;}
._7{width:33.113131pt;}
._29{width:38.140738pt;}
._6{width:39.422797pt;}
._31{width:41.698170pt;}
._30{width:46.231646pt;}
._2c{width:108.103882pt;}
._18{width:163.937183pt;}
._1b{width:191.439343pt;}
._22{width:195.307498pt;}
._21{width:263.260262pt;}
._20{width:272.628094pt;}
._23{width:303.998407pt;}
._1d{width:351.223907pt;}
._1c{width:365.660106pt;}
._1e{width:389.692922pt;}
._25{width:408.039784pt;}
._1a{width:412.800590pt;}
._24{width:426.955488pt;}
._27{width:441.679228pt;}
._26{width:455.834125pt;}
._1f{width:467.608620pt;}
._17{width:470.031530pt;}
._19{width:486.524324pt;}
.fsc{font-size:25.643519pt;}
.fse{font-size:27.475197pt;}
.fs9{font-size:31.880533pt;}
.fsd{font-size:32.970240pt;}
.fsa{font-size:34.005867pt;}
.fs3{font-size:37.193600pt;}
.fsb{font-size:38.465279pt;}
.fs8{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:50.477333pt;}
.fs7{font-size:53.133867pt;}
.fs5{font-size:58.447467pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.fs4{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:5.798430pt;}
.y191{bottom:8.889390pt;}
.y18f{bottom:11.980340pt;}
.y180{bottom:17.777165pt;}
.y18e{bottom:18.162264pt;}
.y181{bottom:23.433859pt;}
.y188{bottom:43.790491pt;}
.y187{bottom:49.972413pt;}
.y186{bottom:61.202405pt;}
.y11c{bottom:61.488000pt;}
.y51{bottom:61.489333pt;}
.ycd{bottom:65.238667pt;}
.yab{bottom:65.240000pt;}
.y185{bottom:71.505601pt;}
.y50{bottom:73.444000pt;}
.y77{bottom:77.429333pt;}
.y4f{bottom:85.400000pt;}
.ycc{bottom:87.302667pt;}
.yaa{bottom:88.028000pt;}
.yec{bottom:92.565333pt;}
.y76{bottom:93.369333pt;}
.y4e{bottom:97.354667pt;}
.y1e4{bottom:98.333333pt;}
.y1b{bottom:99.089333pt;}
.y18d{bottom:102.967630pt;}
.ycb{bottom:103.242667pt;}
.ya9{bottom:103.968000pt;}
.y18a{bottom:106.058590pt;}
.y183{bottom:107.911301pt;}
.yeb{bottom:108.505333pt;}
.y18c{bottom:109.149540pt;}
.y4d{bottom:109.309333pt;}
.y1b5{bottom:109.400000pt;}
.y1e3{bottom:110.288000pt;}
.y153{bottom:110.729333pt;}
.y189{bottom:112.240504pt;}
.y1a{bottom:115.030667pt;}
.y18b{bottom:115.331464pt;}
.y182{bottom:116.719325pt;}
.yca{bottom:119.182667pt;}
.ya8{bottom:119.908000pt;}
.y4c{bottom:121.265333pt;}
.y1b4{bottom:121.356000pt;}
.y1e2{bottom:122.242667pt;}
.yea{bottom:124.445333pt;}
.y75{bottom:125.249333pt;}
.y152{bottom:126.669333pt;}
.y19{bottom:130.970667pt;}
.y4b{bottom:133.220000pt;}
.y1b3{bottom:133.310667pt;}
.y1e1{bottom:134.198667pt;}
.yc9{bottom:135.122667pt;}
.ya7{bottom:135.848000pt;}
.ye9{bottom:140.385333pt;}
.y11b{bottom:141.189333pt;}
.y74{bottom:141.190667pt;}
.y151{bottom:142.609333pt;}
.y1b2{bottom:145.265333pt;}
.y1e0{bottom:146.153333pt;}
.y18{bottom:146.910667pt;}
.yc8{bottom:151.064000pt;}
.ya6{bottom:151.788000pt;}
.ye8{bottom:156.325333pt;}
.y73{bottom:157.130667pt;}
.y1df{bottom:158.108000pt;}
.y150{bottom:158.550667pt;}
.y11a{bottom:159.101333pt;}
.y4a{bottom:160.084000pt;}
.y1b1{bottom:165.966667pt;}
.yc7{bottom:167.004000pt;}
.ya5{bottom:167.729333pt;}
.y1de{bottom:170.064000pt;}
.y184{bottom:171.376393pt;}
.ye7{bottom:172.266667pt;}
.y72{bottom:173.070667pt;}
.y14f{bottom:174.490667pt;}
.y119{bottom:175.041333pt;}
.y49{bottom:176.025333pt;}
.y1dd{bottom:182.018667pt;}
.yc6{bottom:182.944000pt;}
.ya4{bottom:183.669333pt;}
.ye6{bottom:188.206667pt;}
.y71{bottom:189.010667pt;}
.y14e{bottom:190.430667pt;}
.y118{bottom:190.981333pt;}
.y48{bottom:191.965333pt;}
.y1dc{bottom:193.973333pt;}
.y17{bottom:194.730667pt;}
.yc5{bottom:198.884000pt;}
.ya3{bottom:199.609333pt;}
.y1b0{bottom:201.220000pt;}
.y17f{bottom:202.068219pt;}
.ye5{bottom:204.146667pt;}
.y70{bottom:204.950667pt;}
.y1db{bottom:205.929333pt;}
.y14d{bottom:206.370667pt;}
.y117{bottom:206.922667pt;}
.y47{bottom:207.905333pt;}
.y16{bottom:210.672000pt;}
.yc4{bottom:214.824000pt;}
.ya2{bottom:215.549333pt;}
.y1af{bottom:217.160000pt;}
.y1da{bottom:217.884000pt;}
.ye4{bottom:220.086667pt;}
.y6f{bottom:220.890667pt;}
.y14c{bottom:222.310667pt;}
.y116{bottom:222.862667pt;}
.y46{bottom:223.845333pt;}
.y17d{bottom:225.724000pt;}
.y15{bottom:226.612000pt;}
.y1d9{bottom:229.840000pt;}
.yc3{bottom:230.764000pt;}
.ya1{bottom:231.489333pt;}
.y1ae{bottom:233.100000pt;}
.ye3{bottom:236.026667pt;}
.y6e{bottom:236.832000pt;}
.y14b{bottom:238.252000pt;}
.y115{bottom:238.802667pt;}
.y45{bottom:239.785333pt;}
.y1d8{bottom:241.794667pt;}
.y14{bottom:242.552000pt;}
.yc2{bottom:246.705333pt;}
.ya0{bottom:247.429333pt;}
.y1ad{bottom:249.040000pt;}
.ye2{bottom:251.968000pt;}
.y6d{bottom:252.772000pt;}
.y1d7{bottom:253.749333pt;}
.y14a{bottom:254.192000pt;}
.y114{bottom:254.742667pt;}
.y44{bottom:255.725333pt;}
.y17c{bottom:260.516000pt;}
.yc1{bottom:262.645333pt;}
.y9f{bottom:263.370667pt;}
.y1ac{bottom:264.980000pt;}
.y1d6{bottom:265.705333pt;}
.ye1{bottom:267.908000pt;}
.y6c{bottom:268.712000pt;}
.y149{bottom:270.132000pt;}
.y113{bottom:270.682667pt;}
.y43{bottom:271.666667pt;}
.y13{bottom:274.432000pt;}
.y17b{bottom:276.456000pt;}
.y1d5{bottom:277.660000pt;}
.yc0{bottom:278.585333pt;}
.y9e{bottom:279.310667pt;}
.y1ab{bottom:280.921333pt;}
.ye0{bottom:283.848000pt;}
.y6b{bottom:284.652000pt;}
.y148{bottom:286.072000pt;}
.y112{bottom:286.624000pt;}
.y42{bottom:287.606667pt;}
.y1d4{bottom:289.614667pt;}
.y12{bottom:290.372000pt;}
.y17a{bottom:292.396000pt;}
.ybf{bottom:294.525333pt;}
.y9d{bottom:295.250667pt;}
.y1aa{bottom:296.861333pt;}
.ydf{bottom:299.788000pt;}
.y6a{bottom:300.592000pt;}
.y1d3{bottom:301.570667pt;}
.y147{bottom:302.012000pt;}
.y111{bottom:302.564000pt;}
.y41{bottom:303.546667pt;}
.y11{bottom:306.313333pt;}
.y179{bottom:308.336000pt;}
.ybe{bottom:310.465333pt;}
.y9c{bottom:311.190667pt;}
.y1a9{bottom:312.801333pt;}
.y1d2{bottom:313.525333pt;}
.yde{bottom:315.728000pt;}
.y69{bottom:316.532000pt;}
.y146{bottom:317.952000pt;}
.y110{bottom:318.504000pt;}
.y40{bottom:319.486667pt;}
.y10{bottom:322.253333pt;}
.y178{bottom:324.276000pt;}
.y1d1{bottom:325.481333pt;}
.ybd{bottom:326.405333pt;}
.y9b{bottom:327.130667pt;}
.ydd{bottom:331.668000pt;}
.y68{bottom:332.473333pt;}
.y145{bottom:333.893333pt;}
.y1a8{bottom:333.900000pt;}
.y10f{bottom:334.444000pt;}
.y1d0{bottom:337.436000pt;}
.yf{bottom:338.193333pt;}
.y177{bottom:340.217333pt;}
.y3f{bottom:341.044000pt;}
.ybc{bottom:342.346667pt;}
.y9a{bottom:343.072000pt;}
.ydc{bottom:347.609333pt;}
.y67{bottom:348.413333pt;}
.y1cf{bottom:349.390667pt;}
.y144{bottom:349.833333pt;}
.y10e{bottom:350.384000pt;}
.ye{bottom:354.133333pt;}
.y176{bottom:356.157333pt;}
.ybb{bottom:358.286667pt;}
.y99{bottom:359.012000pt;}
.y1ce{bottom:361.346667pt;}
.ydb{bottom:363.549333pt;}
.y66{bottom:364.353333pt;}
.y143{bottom:365.773333pt;}
.y10d{bottom:366.324000pt;}
.y1a7{bottom:369.153333pt;}
.y175{bottom:372.097333pt;}
.y1cd{bottom:373.301333pt;}
.yba{bottom:374.226667pt;}
.y98{bottom:374.952000pt;}
.yda{bottom:379.489333pt;}
.y65{bottom:380.293333pt;}
.y3e{bottom:380.640000pt;}
.y142{bottom:381.713333pt;}
.y10c{bottom:382.265333pt;}
.y1a6{bottom:385.093333pt;}
.y1cc{bottom:385.256000pt;}
.y174{bottom:388.037333pt;}
.yb9{bottom:390.166667pt;}
.y97{bottom:390.892000pt;}
.y3d{bottom:393.924000pt;}
.yd9{bottom:395.429333pt;}
.y64{bottom:396.233333pt;}
.y1cb{bottom:397.212000pt;}
.y141{bottom:397.653333pt;}
.y10b{bottom:398.205333pt;}
.y1a5{bottom:401.034667pt;}
.yd{bottom:401.954667pt;}
.y173{bottom:403.977333pt;}
.yb8{bottom:406.106667pt;}
.y96{bottom:406.832000pt;}
.y1ca{bottom:409.166667pt;}
.yd8{bottom:411.369333pt;}
.y63{bottom:412.174667pt;}
.y140{bottom:413.593333pt;}
.y10a{bottom:414.145333pt;}
.y3c{bottom:414.830667pt;}
.y1a4{bottom:416.974667pt;}
.yc{bottom:417.894667pt;}
.y172{bottom:419.918667pt;}
.y1c9{bottom:421.122667pt;}
.yb7{bottom:422.048000pt;}
.y95{bottom:422.772000pt;}
.yd7{bottom:427.309333pt;}
.y3b{bottom:428.114667pt;}
.y13f{bottom:429.534667pt;}
.y109{bottom:430.085333pt;}
.y1a3{bottom:432.914667pt;}
.y1c8{bottom:433.077333pt;}
.y171{bottom:435.858667pt;}
.yb6{bottom:437.988000pt;}
.y94{bottom:438.713333pt;}
.y3a{bottom:441.397333pt;}
.yd6{bottom:443.250667pt;}
.y62{bottom:444.054667pt;}
.y1c7{bottom:445.032000pt;}
.y13e{bottom:445.474667pt;}
.y108{bottom:446.025333pt;}
.y1a2{bottom:448.854667pt;}
.yb{bottom:449.774667pt;}
.y170{bottom:451.798667pt;}
.y93{bottom:454.653333pt;}
.y39{bottom:454.681333pt;}
.y1c6{bottom:456.988000pt;}
.yb5{bottom:457.929333pt;}
.yd5{bottom:459.190667pt;}
.y61{bottom:459.994667pt;}
.y13d{bottom:461.414667pt;}
.y107{bottom:461.965333pt;}
.y1a1{bottom:464.794667pt;}
.ya{bottom:465.714667pt;}
.y16f{bottom:467.738667pt;}
.y38{bottom:467.965333pt;}
.y1c5{bottom:468.942667pt;}
.y92{bottom:470.593333pt;}
.yd4{bottom:475.130667pt;}
.y60{bottom:475.934667pt;}
.y106{bottom:477.906667pt;}
.y1a0{bottom:480.734667pt;}
.y1c4{bottom:480.897333pt;}
.y37{bottom:481.248000pt;}
.y9{bottom:481.654667pt;}
.y16e{bottom:483.678667pt;}
.y13c{bottom:486.508000pt;}
.y91{bottom:486.533333pt;}
.yd3{bottom:491.070667pt;}
.y5f{bottom:491.874667pt;}
.y1c3{bottom:492.853333pt;}
.y105{bottom:493.846667pt;}
.y36{bottom:494.532000pt;}
.y19f{bottom:496.676000pt;}
.y8{bottom:497.596000pt;}
.y16d{bottom:499.781333pt;}
.y90{bottom:502.473333pt;}
.y1c2{bottom:504.808000pt;}
.yd2{bottom:507.010667pt;}
.yb4{bottom:507.814667pt;}
.y35{bottom:507.816000pt;}
.y104{bottom:509.786667pt;}
.y19e{bottom:512.616000pt;}
.y16c{bottom:515.721333pt;}
.y1c1{bottom:516.762667pt;}
.y8f{bottom:518.413333pt;}
.y34{bottom:521.098667pt;}
.yd1{bottom:522.950667pt;}
.yb3{bottom:523.754667pt;}
.y5e{bottom:523.756000pt;}
.y103{bottom:525.726667pt;}
.y19d{bottom:528.556000pt;}
.y1c0{bottom:528.718667pt;}
.y16b{bottom:531.661333pt;}
.y8e{bottom:534.354667pt;}
.y33{bottom:534.382667pt;}
.y7{bottom:537.446667pt;}
.yd0{bottom:538.892000pt;}
.y5d{bottom:539.696000pt;}
.y13b{bottom:539.910667pt;}
.y1bf{bottom:540.673333pt;}
.y102{bottom:541.666667pt;}
.y19c{bottom:544.496000pt;}
.y16a{bottom:547.602667pt;}
.y32{bottom:547.666667pt;}
.y1be{bottom:552.629333pt;}
.y8d{bottom:554.432000pt;}
.ycf{bottom:554.832000pt;}
.y5c{bottom:555.636000pt;}
.y101{bottom:557.606667pt;}
.y13a{bottom:557.650667pt;}
.y19b{bottom:560.436000pt;}
.y31{bottom:560.949333pt;}
.y169{bottom:563.542667pt;}
.y1bd{bottom:564.584000pt;}
.yce{bottom:570.772000pt;}
.y5b{bottom:571.576000pt;}
.y139{bottom:572.197333pt;}
.y100{bottom:573.548000pt;}
.y30{bottom:574.233333pt;}
.y19a{bottom:576.377333pt;}
.y1bc{bottom:576.538667pt;}
.y168{bottom:579.482667pt;}
.y138{bottom:586.744000pt;}
.y5a{bottom:587.516000pt;}
.y2f{bottom:587.517333pt;}
.y8c{bottom:587.562667pt;}
.y1bb{bottom:588.494667pt;}
.yff{bottom:589.488000pt;}
.y199{bottom:592.480000pt;}
.y167{bottom:595.422667pt;}
.y1ba{bottom:600.449333pt;}
.y2e{bottom:600.800000pt;}
.y137{bottom:601.290667pt;}
.yb2{bottom:603.456000pt;}
.y59{bottom:603.457333pt;}
.y8b{bottom:603.502667pt;}
.yfe{bottom:605.428000pt;}
.y198{bottom:608.420000pt;}
.y166{bottom:611.362667pt;}
.y1b9{bottom:612.404000pt;}
.y2d{bottom:614.084000pt;}
.y136{bottom:616.976000pt;}
.y58{bottom:619.397333pt;}
.y8a{bottom:619.444000pt;}
.yfd{bottom:621.368000pt;}
.y197{bottom:624.360000pt;}
.y165{bottom:627.302667pt;}
.y2c{bottom:627.368000pt;}
.y135{bottom:631.313333pt;}
.y57{bottom:635.337333pt;}
.y89{bottom:635.384000pt;}
.y1b8{bottom:636.314667pt;}
.yfc{bottom:637.308000pt;}
.y196{bottom:640.300000pt;}
.y2b{bottom:640.650667pt;}
.y164{bottom:643.244000pt;}
.y1b7{bottom:648.270667pt;}
.y134{bottom:648.294667pt;}
.y56{bottom:651.277333pt;}
.y88{bottom:651.324000pt;}
.yfb{bottom:653.249333pt;}
.y2a{bottom:653.934667pt;}
.y195{bottom:656.240000pt;}
.y163{bottom:659.184000pt;}
.y1b6{bottom:660.225333pt;}
.y133{bottom:660.250667pt;}
.y29{bottom:667.217333pt;}
.y87{bottom:667.264000pt;}
.yfa{bottom:669.189333pt;}
.y194{bottom:672.180000pt;}
.y162{bottom:675.232000pt;}
.y132{bottom:676.738667pt;}
.y28{bottom:680.501333pt;}
.y6{bottom:682.833333pt;}
.y55{bottom:683.157333pt;}
.y86{bottom:683.204000pt;}
.yf9{bottom:685.129333pt;}
.y131{bottom:688.693333pt;}
.y161{bottom:691.172000pt;}
.y27{bottom:693.785333pt;}
.yb1{bottom:699.097333pt;}
.y54{bottom:699.098667pt;}
.yf8{bottom:701.069333pt;}
.y130{bottom:703.240000pt;}
.y26{bottom:707.068000pt;}
.y160{bottom:707.112000pt;}
.y5{bottom:714.714667pt;}
.y53{bottom:715.038667pt;}
.y193{bottom:715.129333pt;}
.yf7{bottom:717.009333pt;}
.y12f{bottom:717.786667pt;}
.y25{bottom:720.352000pt;}
.y15f{bottom:723.052000pt;}
.y192{bottom:727.084000pt;}
.y52{bottom:730.978667pt;}
.y12e{bottom:732.333333pt;}
.yf6{bottom:732.949333pt;}
.y24{bottom:733.636000pt;}
.y15e{bottom:738.993333pt;}
.y4{bottom:746.594667pt;}
.y23{bottom:746.918667pt;}
.y12d{bottom:748.822667pt;}
.yf5{bottom:748.890667pt;}
.y15d{bottom:754.933333pt;}
.y85{bottom:762.858667pt;}
.yf4{bottom:764.830667pt;}
.y12b{bottom:765.310667pt;}
.y17e{bottom:766.934667pt;}
.y15c{bottom:770.873333pt;}
.y12c{bottom:777.082667pt;}
.y12a{bottom:777.265333pt;}
.yb0{bottom:778.798667pt;}
.y84{bottom:778.800000pt;}
.yf3{bottom:780.770667pt;}
.y15b{bottom:786.813333pt;}
.y129{bottom:789.221333pt;}
.yaf{bottom:794.738667pt;}
.y83{bottom:794.740000pt;}
.yf2{bottom:796.710667pt;}
.y3{bottom:802.385333pt;}
.y15a{bottom:802.753333pt;}
.y128{bottom:805.709333pt;}
.y82{bottom:810.680000pt;}
.y22{bottom:812.582667pt;}
.yf1{bottom:812.650667pt;}
.y127{bottom:820.256000pt;}
.y81{bottom:826.620000pt;}
.yf0{bottom:828.590667pt;}
.y2{bottom:828.952000pt;}
.y21{bottom:830.382667pt;}
.y126{bottom:836.596000pt;}
.y80{bottom:842.560000pt;}
.yef{bottom:844.532000pt;}
.y20{bottom:848.182667pt;}
.y125{bottom:850.994667pt;}
.y159{bottom:854.050667pt;}
.y1{bottom:855.520000pt;}
.y7f{bottom:858.500000pt;}
.y124{bottom:865.304000pt;}
.y158{bottom:866.006667pt;}
.yee{bottom:871.556000pt;}
.yae{bottom:874.440000pt;}
.y7e{bottom:874.441333pt;}
.y157{bottom:877.961333pt;}
.y1f{bottom:879.265333pt;}
.y123{bottom:880.357333pt;}
.y156{bottom:889.916000pt;}
.yad{bottom:890.380000pt;}
.y7d{bottom:890.381333pt;}
.y121{bottom:895.910667pt;}
.y120{bottom:901.812000pt;}
.y155{bottom:901.872000pt;}
.yed{bottom:903.510667pt;}
.y7c{bottom:906.321333pt;}
.y122{bottom:907.866667pt;}
.y1e{bottom:916.460000pt;}
.y154{bottom:918.774667pt;}
.y7b{bottom:922.261333pt;}
.y11f{bottom:934.217333pt;}
.y7a{bottom:938.201333pt;}
.y11e{bottom:946.172000pt;}
.y1d{bottom:953.653333pt;}
.y79{bottom:954.141333pt;}
.y11d{bottom:958.126667pt;}
.yac{bottom:970.081333pt;}
.y78{bottom:970.082667pt;}
.y1c{bottom:1014.372000pt;}
.h22{height:19.077017pt;}
.h12{height:21.933807pt;}
.h21{height:22.345065pt;}
.h7{height:25.589197pt;}
.hf{height:29.244954pt;}
.he{height:29.458287pt;}
.h19{height:29.499997pt;}
.h1b{height:31.149733pt;}
.h20{height:31.803970pt;}
.h17{height:31.880400pt;}
.h1e{height:32.755067pt;}
.hc{height:33.187635pt;}
.hb{height:33.426739pt;}
.h1d{height:35.448400pt;}
.h1a{height:35.507067pt;}
.h13{height:36.290431pt;}
.hd{height:36.556100pt;}
.h24{height:36.822767pt;}
.h5{height:37.454181pt;}
.h16{height:37.459376pt;}
.h4{height:37.504659pt;}
.h10{height:39.850400pt;}
.h9{height:40.211857pt;}
.ha{height:40.505190pt;}
.h15{height:43.976550pt;}
.h11{height:44.869197pt;}
.h14{height:44.874530pt;}
.h18{height:53.718663pt;}
.h1c{height:55.059067pt;}
.h23{height:56.168512pt;}
.h2{height:59.926690pt;}
.h3{height:75.009317pt;}
.h8{height:87.734861pt;}
.h1f{height:214.306533pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:685.506267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:26.444449pt;}
.x2f{left:28.522275pt;}
.x2d{left:44.076715pt;}
.x2c{left:55.716769pt;}
.xd{left:65.285333pt;}
.x1c{left:66.240000pt;}
.x1d{left:70.297333pt;}
.x15{left:74.732000pt;}
.xf{left:75.912000pt;}
.xc{left:78.568000pt;}
.x8{left:84.846667pt;}
.x2{left:89.774667pt;}
.x1{left:90.708000pt;}
.x4{left:101.742667pt;}
.x13{left:112.041333pt;}
.x18{left:115.100000pt;}
.x5{left:116.280000pt;}
.x6{left:127.917333pt;}
.x7{left:139.669333pt;}
.x3d{left:172.694667pt;}
.x3a{left:174.729333pt;}
.xe{left:180.825333pt;}
.x2a{left:185.624181pt;}
.x28{left:187.899781pt;}
.x14{left:191.814667pt;}
.x2b{left:195.927386pt;}
.x29{left:198.202986pt;}
.x36{left:210.176647pt;}
.x1b{left:212.402667pt;}
.x37{left:216.954067pt;}
.x1e{left:218.373333pt;}
.x30{left:221.915960pt;}
.x11{left:224.781333pt;}
.x21{left:242.229333pt;}
.xa{left:252.245333pt;}
.x38{left:271.225885pt;}
.xb{left:275.566667pt;}
.x27{left:278.703723pt;}
.x10{left:307.320000pt;}
.x20{left:308.700000pt;}
.x1f{left:313.960000pt;}
.x12{left:326.386667pt;}
.x3b{left:346.152000pt;}
.x3c{left:366.722667pt;}
.x32{left:374.077813pt;}
.x31{left:377.202227pt;}
.x33{left:406.342016pt;}
.x16{left:415.970667pt;}
.x23{left:420.553333pt;}
.x19{left:426.597333pt;}
.x17{left:429.253333pt;}
.x25{left:432.512000pt;}
.x3e{left:440.316000pt;}
.x24{left:461.417333pt;}
.x26{left:481.790667pt;}
.x39{left:525.456407pt;}
.x1a{left:529.704000pt;}
.x34{left:530.895354pt;}
.x35{left:545.940612pt;}
.x22{left:561.318667pt;}
.x3f{left:586.669333pt;}
.x9{left:651.782667pt;}
.x3{left:746.065333pt;}
}


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