
/* 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_155287b62752.woff")format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_67ddccb2d5e6.woff")format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_a670364d2d76.woff")format("woff");}.ff3{font-family:ff3;line-height:1.004000;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_302cd53480e8.woff")format("woff");}.ff4{font-family:ff4;line-height:1.028000;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_b0f6f31cb49a.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_3927a4e288de.woff")format("woff");}.ff6{font-family:ff6;line-height:1.022000;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_1ab008ec0a6b.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_ae92028817d7.woff")format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_66cb2e90e5cf.woff")format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_36a929170a1e.woff")format("woff");}.ffa{font-family:ffa;line-height:0.939000;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_14e4b23d8e86.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_ed6d9b1f5e42.woff")format("woff");}.ffc{font-family:ffc;line-height:0.689000;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_164804c47576.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_e5fda7300eaa.woff")format("woff");}.ffe{font-family:ffe;line-height:0.957000;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_6c5604a2e6ba.woff")format("woff");}.fff{font-family:fff;line-height:0.955000;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_19b3aeb2ede4.woff")format("woff");}.ff10{font-family:ff10;line-height:0.028000;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_ee482de11897.woff")format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_3d6df2edf5fb.woff")format("woff");}.ff12{font-family:ff12;line-height:0.714046;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_23241f8a8d62.woff")format("woff");}.ff13{font-family:ff13;line-height:0.486000;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_6ee5e8ead953.woff")format("woff");}.ff14{font-family:ff14;line-height:0.737000;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.249903,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249903,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249927,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249927,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249927,0.250000,0.000000,0,0);}
.m0{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);}
.m5{transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250126,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250126,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250126,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.265347,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.265347,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.265347,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.225182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225182,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.225548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225548,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.226803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226803,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.227886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227886,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228770,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.229287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229287,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.230502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230502,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231890,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232845,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.md{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251246,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261282,0.000000,0.000000,0.250000,0,0);}
.m2{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:-15.048000px;}
.v5{vertical-align:-9.072000px;}
.v7{vertical-align:-7.254000px;}
.v8{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.048000px;}
.v6{vertical-align:18.042000px;}
.v1{vertical-align:22.854000px;}
.v4{vertical-align:60.822000px;}
.ls10{letter-spacing:-3.740475px;}
.lsa{letter-spacing:-2.252546px;}
.ls11{letter-spacing:-1.225328px;}
.lsc{letter-spacing:-0.006171px;}
.ls12{letter-spacing:-0.003402px;}
.lsf{letter-spacing:-0.003394px;}
.lsd{letter-spacing:-0.003086px;}
.ls8{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000793px;}
.ls26{letter-spacing:0.001272px;}
.ls23{letter-spacing:0.002052px;}
.ls1a{letter-spacing:0.002400px;}
.ls24{letter-spacing:0.002506px;}
.ls9{letter-spacing:0.003394px;}
.lsb{letter-spacing:0.006171px;}
.lse{letter-spacing:0.006789px;}
.ls19{letter-spacing:0.008400px;}
.ls1d{letter-spacing:0.011400px;}
.ls2f{letter-spacing:2.143457px;}
.ls22{letter-spacing:2.149457px;}
.ls0{letter-spacing:2.987592px;}
.ls1{letter-spacing:2.988102px;}
.ls2{letter-spacing:2.988408px;}
.ls1c{letter-spacing:2.992104px;}
.ls6{letter-spacing:4.640040px;}
.ls5{letter-spacing:5.976912px;}
.ls21{letter-spacing:8.158812px;}
.ls31{letter-spacing:8.159492px;}
.ls27{letter-spacing:8.164812px;}
.ls1f{letter-spacing:8.165492px;}
.ls30{letter-spacing:10.309457px;}
.ls1e{letter-spacing:11.150915px;}
.ls15{letter-spacing:11.627492px;}
.ls2b{letter-spacing:11.633316px;}
.ls17{letter-spacing:11.633492px;}
.ls25{letter-spacing:11.689692px;}
.ls2a{letter-spacing:12.171264px;}
.ls29{letter-spacing:12.385368px;}
.ls13{letter-spacing:12.461492px;}
.ls2c{letter-spacing:12.761316px;}
.ls14{letter-spacing:12.927658px;}
.ls18{letter-spacing:12.963555px;}
.ls16{letter-spacing:12.965284px;}
.ls20{letter-spacing:13.484915px;}
.ls2d{letter-spacing:13.809948px;}
.ls4{letter-spacing:14.938331px;}
.ls3{letter-spacing:14.944331px;}
.ls1b{letter-spacing:19.635935px;}
.ls2e{letter-spacing:23.467692px;}
.ls7{letter-spacing:32.874362px;}
.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;}
}
.ws18e{word-spacing:-31.634064px;}
.ws66{word-spacing:-25.460344px;}
.ws63{word-spacing:-23.139514px;}
.ws64{word-spacing:-21.716475px;}
.ws9c{word-spacing:-11.632632px;}
.ws5d{word-spacing:-9.971304px;}
.ws9e{word-spacing:-9.457894px;}
.ws13c{word-spacing:-5.164570px;}
.ws5e{word-spacing:-4.017106px;}
.ws18a{word-spacing:-3.472999px;}
.ws1a5{word-spacing:-3.466632px;}
.ws13e{word-spacing:-3.173859px;}
.wscf{word-spacing:-3.066463px;}
.wsbd{word-spacing:-3.012586px;}
.wse5{word-spacing:-2.905071px;}
.ws73{word-spacing:-2.851073px;}
.ws15{word-spacing:-2.743678px;}
.ws51{word-spacing:-2.725683px;}
.ws13{word-spacing:-2.689680px;}
.wscc{word-spacing:-2.528407px;}
.ws116{word-spacing:-2.474890px;}
.ws1b0{word-spacing:-2.427169px;}
.ws80{word-spacing:-2.420892px;}
.ws1cb{word-spacing:-2.403178px;}
.ws46{word-spacing:-2.259499px;}
.wsc4{word-spacing:-2.259440px;}
.ws11d{word-spacing:-2.205502px;}
.ws11c{word-spacing:-2.195832px;}
.ws168{word-spacing:-2.134360px;}
.wsfe{word-spacing:-2.098106px;}
.ws45{word-spacing:-2.056321px;}
.ws1a1{word-spacing:-2.050358px;}
.ws74{word-spacing:-2.044109px;}
.wsae{word-spacing:-2.008537px;}
.ws205{word-spacing:-1.972769px;}
.wsba{word-spacing:-1.882716px;}
.ws15f{word-spacing:-1.840952px;}
.ws4a{word-spacing:-1.829318px;}
.ws10c{word-spacing:-1.799551px;}
.ws171{word-spacing:-1.757550px;}
.ws180{word-spacing:-1.674147px;}
.wsb3{word-spacing:-1.631906px;}
.ws203{word-spacing:-1.614065px;}
.ws7d{word-spacing:-1.613928px;}
.ws1b5{word-spacing:-1.590145px;}
.ws91{word-spacing:-1.559931px;}
.ws17c{word-spacing:-1.548144px;}
.wse4{word-spacing:-1.452536px;}
.ws1e6{word-spacing:-1.434713px;}
.ws2d{word-spacing:-1.398538px;}
.ws10b{word-spacing:-1.380739px;}
.ws144{word-spacing:-1.363128px;}
.ws34{word-spacing:-1.345140px;}
.ws14c{word-spacing:-1.297156px;}
.ws1cf{word-spacing:-1.291243px;}
.ws44{word-spacing:-1.291143px;}
.ws1d5{word-spacing:-1.219719px;}
.ws1ff{word-spacing:-1.180735px;}
.ws179{word-spacing:-1.171933px;}
.ws201{word-spacing:-1.147714px;}
.ws173{word-spacing:-1.129932px;}
.ws82{word-spacing:-1.129750px;}
.ws1a8{word-spacing:-1.087931px;}
.ws38{word-spacing:-1.075752px;}
.ws43{word-spacing:-1.022355px;}
.ws14{word-spacing:-0.968357px;}
.ws1c5{word-spacing:-0.968302px;}
.ws1a2{word-spacing:-0.962527px;}
.ws55{word-spacing:-0.956303px;}
.ws17f{word-spacing:-0.920526px;}
.ws165{word-spacing:-0.878524px;}
.ws6b{word-spacing:-0.837124px;}
.wscd{word-spacing:-0.806964px;}
.ws1b9{word-spacing:-0.795122px;}
.ws1b8{word-spacing:-0.791160px;}
.ws189{word-spacing:-0.711720px;}
.ws39{word-spacing:-0.645571px;}
.ws1f8{word-spacing:-0.645480px;}
.ws1a6{word-spacing:-0.627717px;}
.ws136{word-spacing:-0.538176px;}
.ws1f5{word-spacing:-0.538073px;}
.ws1eb{word-spacing:-0.502130px;}
.ws75{word-spacing:-0.484179px;}
.ws49{word-spacing:-0.376783px;}
.ws199{word-spacing:-0.334909px;}
.ws2c{word-spacing:-0.322786px;}
.ws9b{word-spacing:-0.296802px;}
.ws15c{word-spacing:-0.292908px;}
.ws16{word-spacing:-0.268788px;}
.ws155{word-spacing:-0.251507px;}
.ws154{word-spacing:-0.251087px;}
.ws99{word-spacing:-0.250907px;}
.ws81{word-spacing:-0.215391px;}
.ws1d6{word-spacing:-0.215251px;}
.wsdc{word-spacing:-0.161393px;}
.ws1fe{word-spacing:-0.143246px;}
.wsa3{word-spacing:-0.125503px;}
.ws95{word-spacing:-0.053796px;}
.ws1b3{word-spacing:-0.042101px;}
.wsab{word-spacing:-0.041844px;}
.ws1de{word-spacing:-0.019675px;}
.ws1f0{word-spacing:-0.018547px;}
.ws1d0{word-spacing:-0.012432px;}
.ws1da{word-spacing:-0.011868px;}
.ws206{word-spacing:-0.010181px;}
.ws192{word-spacing:-0.008392px;}
.ws1b7{word-spacing:-0.007664px;}
.ws14f{word-spacing:-0.006549px;}
.ws191{word-spacing:-0.001212px;}
.ws1d2{word-spacing:-0.000437px;}
.ws3{word-spacing:-0.000356px;}
.ws62{word-spacing:-0.000256px;}
.ws4{word-spacing:-0.000100px;}
.ws104{word-spacing:-0.000096px;}
.ws146{word-spacing:-0.000024px;}
.ws1bd{word-spacing:-0.000017px;}
.ws100{word-spacing:-0.000016px;}
.ws1c{word-spacing:0.000000px;}
.wsb6{word-spacing:0.000021px;}
.ws102{word-spacing:0.000024px;}
.ws11{word-spacing:0.000085px;}
.ws59{word-spacing:0.000163px;}
.ws1{word-spacing:0.000245px;}
.ws101{word-spacing:0.003402px;}
.ws1e{word-spacing:0.053997px;}
.ws1fb{word-spacing:0.071568px;}
.wsaa{word-spacing:0.083663px;}
.ws1f1{word-spacing:0.107570px;}
.wsac{word-spacing:0.125304px;}
.ws147{word-spacing:0.125535px;}
.ws119{word-spacing:0.161393px;}
.ws184{word-spacing:0.167305px;}
.ws148{word-spacing:0.167365px;}
.ws141{word-spacing:0.238044px;}
.ws143{word-spacing:0.250980px;}
.wsdf{word-spacing:0.268968px;}
.ws16e{word-spacing:0.292709px;}
.ws17d{word-spacing:0.334710px;}
.ws153{word-spacing:0.376591px;}
.ws8d{word-spacing:0.376783px;}
.ws14b{word-spacing:0.418412px;}
.ws13b{word-spacing:0.430181px;}
.ws85{word-spacing:0.478050px;}
.ws6f{word-spacing:0.484178px;}
.ws98{word-spacing:0.502115px;}
.ws86{word-spacing:0.538176px;}
.ws1ad{word-spacing:0.544116px;}
.ws1ab{word-spacing:0.585517px;}
.ws6e{word-spacing:0.627519px;}
.ws11a{word-spacing:0.645571px;}
.ws1b4{word-spacing:0.669519px;}
.ws3d{word-spacing:0.699569px;}
.wseb{word-spacing:0.752966px;}
.ws1ce{word-spacing:0.789096px;}
.wscb{word-spacing:0.806964px;}
.wsd6{word-spacing:0.860721px;}
.wsce{word-spacing:0.914539px;}
.ws72{word-spacing:0.968357px;}
.ws1bf{word-spacing:1.004030px;}
.ws6a{word-spacing:1.046331px;}
.wsfd{word-spacing:1.075752px;}
.ws1ef{word-spacing:1.112037px;}
.ws1c7{word-spacing:1.129337px;}
.wsd9{word-spacing:1.129689px;}
.ws93{word-spacing:1.129749px;}
.ws1ca{word-spacing:1.147440px;}
.ws1c9{word-spacing:1.148040px;}
.wsa4{word-spacing:1.171734px;}
.ws65{word-spacing:1.191385px;}
.ws1f7{word-spacing:1.219445px;}
.wsea{word-spacing:1.237144px;}
.ws174{word-spacing:1.255136px;}
.ws151{word-spacing:1.255307px;}
.wsb5{word-spacing:1.255316px;}
.ws48{word-spacing:1.291142px;}
.ws58{word-spacing:1.291450px;}
.ws178{word-spacing:1.297138px;}
.wsa5{word-spacing:1.339019px;}
.ws1b1{word-spacing:1.381140px;}
.ws159{word-spacing:1.391615px;}
.ws156{word-spacing:1.422541px;}
.wsd0{word-spacing:1.452475px;}
.ws7e{word-spacing:1.505932px;}
.wsad{word-spacing:1.548245px;}
.ws196{word-spacing:1.548545px;}
.ws84{word-spacing:1.559930px;}
.ws1d9{word-spacing:1.578208px;}
.ws1d8{word-spacing:1.578269px;}
.ws97{word-spacing:1.589946px;}
.wsb7{word-spacing:1.613868px;}
.ws11e{word-spacing:1.613928px;}
.ws6d{word-spacing:1.631947px;}
.ws134{word-spacing:1.667925px;}
.ws16d{word-spacing:1.673948px;}
.ws1ac{word-spacing:1.715350px;}
.ws10f{word-spacing:1.757351px;}
.ws10d{word-spacing:1.757471px;}
.wsb8{word-spacing:1.775260px;}
.wsb9{word-spacing:1.829078px;}
.ws1a0{word-spacing:1.841353px;}
.wsee{word-spacing:1.882716px;}
.wsa7{word-spacing:1.924755px;}
.wsa9{word-spacing:1.924816px;}
.wsda{word-spacing:1.936653px;}
.ws12c{word-spacing:1.936714px;}
.ws1ea{word-spacing:1.937093px;}
.wsa6{word-spacing:1.952736px;}
.ws5c{word-spacing:1.972495px;}
.ws1f2{word-spacing:1.972735px;}
.ws5b{word-spacing:1.973095px;}
.ws42{word-spacing:1.990111px;}
.ws5a{word-spacing:2.008498px;}
.ws19e{word-spacing:2.008758px;}
.wsd5{word-spacing:2.044109px;}
.ws195{word-spacing:2.092160px;}
.wsa1{word-spacing:2.134041px;}
.wsaf{word-spacing:2.217564px;}
.wsde{word-spacing:2.259439px;}
.ws3f{word-spacing:2.259499px;}
.ws163{word-spacing:2.259565px;}
.wsc6{word-spacing:2.313496px;}
.ws1d{word-spacing:2.366894px;}
.wse8{word-spacing:2.420892px;}
.ws157{word-spacing:2.426970px;}
.wse0{word-spacing:2.474589px;}
.ws6{word-spacing:2.486456px;}
.ws209{word-spacing:2.510731px;}
.ws183{word-spacing:2.510972px;}
.ws12a{word-spacing:2.528287px;}
.wsc3{word-spacing:2.528407px;}
.ws1cc{word-spacing:2.582496px;}
.ws60{word-spacing:2.603268px;}
.ws96{word-spacing:2.635682px;}
.ws94{word-spacing:2.636282px;}
.ws1d3{word-spacing:2.690083px;}
.ws1b{word-spacing:2.743677px;}
.ws12e{word-spacing:2.797075px;}
.wsc8{word-spacing:2.797675px;}
.ws17e{word-spacing:2.803181px;}
.ws16c{word-spacing:2.887183px;}
.wse1{word-spacing:2.905010px;}
.wse3{word-spacing:2.905070px;}
.ws198{word-spacing:2.929184px;}
.ws1ae{word-spacing:2.971186px;}
.ws3b{word-spacing:3.012465px;}
.ws185{word-spacing:3.054588px;}
.ws19a{word-spacing:3.096589px;}
.wsc5{word-spacing:3.120160px;}
.ws145{word-spacing:3.120372px;}
.ws4f{word-spacing:3.156049px;}
.ws13a{word-spacing:3.173858px;}
.ws15b{word-spacing:3.179991px;}
.ws186{word-spacing:3.221993px;}
.wsdd{word-spacing:3.227856px;}
.ws12f{word-spacing:3.281853px;}
.ws16b{word-spacing:3.305995px;}
.ws129{word-spacing:3.335251px;}
.wsf1{word-spacing:3.347216px;}
.ws16f{word-spacing:3.347396px;}
.ws7f{word-spacing:3.389249px;}
.ws188{word-spacing:3.389397px;}
.wsf3{word-spacing:3.550641px;}
.ws177{word-spacing:3.556802px;}
.ws83{word-spacing:3.604039px;}
.ws1ee{word-spacing:3.622665px;}
.ws56{word-spacing:3.634243px;}
.ws113{word-spacing:3.658037px;}
.ws71{word-spacing:3.766031px;}
.ws172{word-spacing:3.766208px;}
.ws170{word-spacing:3.807609px;}
.ws14e{word-spacing:3.807789px;}
.wsca{word-spacing:3.819429px;}
.ws87{word-spacing:3.873427px;}
.ws1af{word-spacing:3.891612px;}
.ws52{word-spacing:3.921040px;}
.ws132{word-spacing:3.927424px;}
.ws19f{word-spacing:3.975014px;}
.ws14d{word-spacing:4.100718px;}
.ws1b2{word-spacing:4.101018px;}
.ws114{word-spacing:4.142215px;}
.ws166{word-spacing:4.142419px;}
.wsbe{word-spacing:4.196092px;}
.ws1f{word-spacing:4.196212px;}
.ws20{word-spacing:4.249610px;}
.ws1a7{word-spacing:4.267822px;}
.wse9{word-spacing:4.303608px;}
.wsa2{word-spacing:4.351765px;}
.ws158{word-spacing:4.351825px;}
.wsf6{word-spacing:4.357605px;}
.ws28{word-spacing:4.411003px;}
.ws1d1{word-spacing:4.411658px;}
.ws124{word-spacing:4.465001px;}
.ws115{word-spacing:4.518998px;}
.wsb0{word-spacing:4.519170px;}
.wsb2{word-spacing:4.519230px;}
.wsc{word-spacing:4.542632px;}
.ws11f{word-spacing:4.572396px;}
.ws139{word-spacing:4.572996px;}
.ws1be{word-spacing:4.591130px;}
.ws13d{word-spacing:4.626393px;}
.ws1ec{word-spacing:4.626953px;}
.wsf{word-spacing:4.638631px;}
.ws162{word-spacing:4.686634px;}
.ws69{word-spacing:4.728636px;}
.ws40{word-spacing:4.787786px;}
.ws8f{word-spacing:4.895182px;}
.wsc1{word-spacing:4.949239px;}
.ws1aa{word-spacing:4.979443px;}
.ws164{word-spacing:5.104846px;}
.ws79{word-spacing:5.110572px;}
.ws160{word-spacing:5.146848px;}
.ws2e{word-spacing:5.217967px;}
.wsed{word-spacing:5.271964px;}
.ws110{word-spacing:5.325962px;}
.ws123{word-spacing:5.379360px;}
.ws1f4{word-spacing:5.380123px;}
.ws121{word-spacing:5.433357px;}
.ws8e{word-spacing:5.487355px;}
.ws10a{word-spacing:5.523418px;}
.ws1a3{word-spacing:5.565060px;}
.ws12{word-spacing:5.594750px;}
.wsc9{word-spacing:5.594810px;}
.ws17a{word-spacing:5.649232px;}
.ws89{word-spacing:5.702145px;}
.ws70{word-spacing:5.756143px;}
.ws182{word-spacing:5.774466px;}
.ws1c2{word-spacing:5.810952px;}
.ws152{word-spacing:5.816467px;}
.ws1c4{word-spacing:5.846354px;}
.ws2b{word-spacing:5.917536px;}
.ws21{word-spacing:5.971534px;}
.ws9{word-spacing:5.977816px;}
.ws17b{word-spacing:6.067274px;}
.ws18{word-spacing:6.078929px;}
.ws181{word-spacing:6.109275px;}
.wsd1{word-spacing:6.132746px;}
.ws1f9{word-spacing:6.133773px;}
.ws149{word-spacing:6.151276px;}
.wsd4{word-spacing:6.186324px;}
.wsd2{word-spacing:6.186564px;}
.ws90{word-spacing:6.240321px;}
.wsf5{word-spacing:6.294319px;}
.ws47{word-spacing:6.401714px;}
.ws1a9{word-spacing:6.402254px;}
.wsfa{word-spacing:6.455712px;}
.wse7{word-spacing:6.670502px;}
.wsa0{word-spacing:6.694892px;}
.ws7b{word-spacing:6.724499px;}
.ws9f{word-spacing:6.736893px;}
.wsfc{word-spacing:6.778497px;}
.ws77{word-spacing:6.831895px;}
.ws16a{word-spacing:6.862297px;}
.ws208{word-spacing:6.922526px;}
.wsfb{word-spacing:6.939890px;}
.ws11b{word-spacing:6.993287px;}
.wsbf{word-spacing:7.047285px;}
.ws137{word-spacing:7.101283px;}
.ws133{word-spacing:7.208678px;}
.wsc7{word-spacing:7.262436px;}
.wsf9{word-spacing:7.262676px;}
.ws112{word-spacing:7.316073px;}
.wsa{word-spacing:7.316400px;}
.ws15d{word-spacing:7.322680px;}
.wse6{word-spacing:7.370071px;}
.ws12b{word-spacing:7.424069px;}
.wsdb{word-spacing:7.531464px;}
.ws19b{word-spacing:7.573317px;}
.ws19d{word-spacing:7.573917px;}
.ws8a{word-spacing:7.585461px;}
.ws5{word-spacing:7.603197px;}
.ws29{word-spacing:7.638859px;}
.wsb4{word-spacing:7.699321px;}
.wsf2{word-spacing:7.746854px;}
.wsd8{word-spacing:7.800432px;}
.ws15e{word-spacing:7.824724px;}
.ws41{word-spacing:7.854249px;}
.ws23{word-spacing:7.907647px;}
.wsc2{word-spacing:7.908007px;}
.ws14a{word-spacing:7.908726px;}
.ws135{word-spacing:7.961644px;}
.ws92{word-spacing:8.015642px;}
.ws1e1{word-spacing:8.070283px;}
.ws8{word-spacing:8.081391px;}
.wsec{word-spacing:8.177035px;}
.ws131{word-spacing:8.231032px;}
.ws193{word-spacing:8.326938px;}
.ws3a{word-spacing:8.338428px;}
.ws88{word-spacing:8.392425px;}
.ws138{word-spacing:8.445823px;}
.ws1e7{word-spacing:8.500723px;}
.ws111{word-spacing:8.661213px;}
.ws4d{word-spacing:8.702984px;}
.ws2a{word-spacing:8.715211px;}
.ws68{word-spacing:8.745150px;}
.ws202{word-spacing:8.781480px;}
.ws200{word-spacing:8.787662px;}
.ws120{word-spacing:8.822606px;}
.ws67{word-spacing:8.829153px;}
.ws1b6{word-spacing:8.954727px;}
.ws1a{word-spacing:8.983999px;}
.ws13f{word-spacing:9.037996px;}
.ws17{word-spacing:9.198789px;}
.wsf8{word-spacing:9.199389px;}
.ws12d{word-spacing:9.252787px;}
.ws167{word-spacing:9.289366px;}
.wse{word-spacing:9.372576px;}
.ws7a{word-spacing:9.414179px;}
.ws187{word-spacing:9.582174px;}
.ws8b{word-spacing:9.629570px;}
.ws1e5{word-spacing:9.648808px;}
.ws8c{word-spacing:9.683568px;}
.ws1e4{word-spacing:9.684331px;}
.wsb{word-spacing:9.850771px;}
.ws161{word-spacing:9.874983px;}
.ws35{word-spacing:9.898358px;}
.ws1cd{word-spacing:9.917004px;}
.ws1fa{word-spacing:9.917717px;}
.ws1c6{word-spacing:9.922841px;}
.ws1df{word-spacing:9.923021px;}
.ws207{word-spacing:9.924281px;}
.ws1c0{word-spacing:9.935419px;}
.ws1f6{word-spacing:9.935599px;}
.ws4c{word-spacing:9.946769px;}
.ws7c{word-spacing:10.059751px;}
.ws5f{word-spacing:10.116096px;}
.ws50{word-spacing:10.138167px;}
.wsf0{word-spacing:10.167146px;}
.ws142{word-spacing:10.186536px;}
.ws169{word-spacing:10.251793px;}
.ws1ed{word-spacing:10.252740px;}
.ws27{word-spacing:10.328539px;}
.ws19{word-spacing:10.382537px;}
.ws36{word-spacing:10.436534px;}
.wsef{word-spacing:10.543929px;}
.ws127{word-spacing:10.651324px;}
.ws130{word-spacing:10.705322px;}
.ws6c{word-spacing:10.753664px;}
.ws1db{word-spacing:10.939735px;}
.ws140{word-spacing:10.974710px;}
.ws31{word-spacing:11.028107px;}
.ws1c8{word-spacing:11.083236px;}
.ws53{word-spacing:11.093956px;}
.ws7{word-spacing:11.094556px;}
.wsf7{word-spacing:11.135503px;}
.ws2f{word-spacing:11.189500px;}
.ws1c1{word-spacing:11.262556px;}
.ws22{word-spacing:11.350893px;}
.ws37{word-spacing:11.404291px;}
.ws10{word-spacing:11.428752px;}
.ws9d{word-spacing:11.590688px;}
.ws126{word-spacing:11.727676px;}
.ws9a{word-spacing:11.800095px;}
.ws122{word-spacing:11.889069px;}
.ws1f3{word-spacing:11.908171px;}
.ws18f{word-spacing:11.929422px;}
.ws18b{word-spacing:11.933460px;}
.ws18c{word-spacing:11.934384px;}
.wsc0{word-spacing:11.942467px;}
.ws150{word-spacing:12.051082px;}
.ws4e{word-spacing:12.098344px;}
.ws3c{word-spacing:12.373247px;}
.ws25{word-spacing:12.588038px;}
.ws1d4{word-spacing:12.625519px;}
.ws128{word-spacing:12.642036px;}
.ws18d{word-spacing:12.679692px;}
.ws1dd{word-spacing:12.697012px;}
.ws32{word-spacing:12.803429px;}
.ws15a{word-spacing:13.013329px;}
.ws78{word-spacing:13.018819px;}
.ws175{word-spacing:13.036901px;}
.ws1a4{word-spacing:13.097075px;}
.wsbb{word-spacing:13.233609px;}
.ws10e{word-spacing:13.306738px;}
.ws24{word-spacing:13.448999px;}
.ws76{word-spacing:13.502397px;}
.wsbc{word-spacing:13.502817px;}
.wsa8{word-spacing:13.515604px;}
.ws3e{word-spacing:13.610392px;}
.ws118{word-spacing:13.664390px;}
.ws1fc{word-spacing:13.665477px;}
.ws1e0{word-spacing:13.952656px;}
.ws1e9{word-spacing:13.988539px;}
.ws1d7{word-spacing:14.096306px;}
.wsd{word-spacing:14.250519px;}
.wsd7{word-spacing:14.309721px;}
.ws26{word-spacing:14.578749px;}
.ws54{word-spacing:14.585316px;}
.ws1fd{word-spacing:14.741769px;}
.ws1bc{word-spacing:15.495000px;}
.ws57{word-spacing:15.685103px;}
.ws1bb{word-spacing:15.710414px;}
.ws1c3{word-spacing:15.733894px;}
.wsf4{word-spacing:15.923889px;}
.ws4b{word-spacing:15.971899px;}
.ws204{word-spacing:16.032996px;}
.wsb1{word-spacing:16.110018px;}
.wse2{word-spacing:16.300214px;}
.ws33{word-spacing:16.838248px;}
.ws117{word-spacing:17.483819px;}
.ws30{word-spacing:17.645212px;}
.ws197{word-spacing:18.343422px;}
.wsd3{word-spacing:19.581768px;}
.ws176{word-spacing:20.084875px;}
.ws20c{word-spacing:20.121969px;}
.ws20b{word-spacing:20.157792px;}
.ws125{word-spacing:20.711277px;}
.ws1ba{word-spacing:20.803555px;}
.ws194{word-spacing:21.265692px;}
.ws61{word-spacing:22.040136px;}
.wsff{word-spacing:22.074096px;}
.ws1dc{word-spacing:22.632688px;}
.ws19c{word-spacing:22.992384px;}
.ws20a{word-spacing:23.421830px;}
.ws1e3{word-spacing:25.394522px;}
.ws1e2{word-spacing:26.470574px;}
.ws1e8{word-spacing:27.151980px;}
.ws20d{word-spacing:29.985669px;}
.ws0{word-spacing:34.060402px;}
.ws2{word-spacing:55.969524px;}
.ws190{word-spacing:147.779460px;}
.ws107{word-spacing:184.531037px;}
.ws108{word-spacing:186.455901px;}
.ws109{word-spacing:191.387901px;}
.ws106{word-spacing:197.016221px;}
.ws105{word-spacing:235.330349px;}
.ws103{word-spacing:273.699379px;}
._9{margin-left:-362.548902px;}
._3{margin-left:-5.260139px;}
._28{margin-left:-4.166993px;}
._0{margin-left:-3.137758px;}
._1{margin-left:-1.213567px;}
._b{width:1.228722px;}
._a{width:3.747263px;}
._2c{width:5.215898px;}
._26{width:8.142489px;}
._27{width:10.222318px;}
._2b{width:12.099991px;}
._29{width:13.134328px;}
._4{width:14.932888px;}
._6{width:16.212411px;}
._7{width:20.659947px;}
._2{width:21.663348px;}
._2a{width:22.704439px;}
._5{width:23.862302px;}
._25{width:29.625847px;}
._d{width:32.874703px;}
._c{width:41.818371px;}
._12{width:139.113598px;}
._1b{width:160.592166px;}
._15{width:180.269397px;}
._19{width:185.156157px;}
._1a{width:188.877237px;}
._13{width:200.220597px;}
._17{width:208.872758px;}
._21{width:213.803996px;}
._14{width:220.080596px;}
._16{width:230.032867px;}
._18{width:233.753860px;}
._1e{width:241.196230px;}
._23{width:246.127949px;}
._1d{width:248.727878px;}
._22{width:253.659199px;}
._1c{width:260.183616px;}
._1f{width:266.122764px;}
._24{width:271.054284px;}
._e{width:296.115355px;}
._10{width:328.439240px;}
._f{width:335.971015px;}
._11{width:353.365836px;}
._20{width:526.462176px;}
._8{width:1312.117001px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,98,165);}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(26,26,26);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:23.910000px;}
.fsa{font-size:24.000000px;}
.fs4{font-size:27.918000px;}
.fs10{font-size:29.766000px;}
.fs11{font-size:29.886000px;}
.fsb{font-size:30.856800px;}
.fsc{font-size:33.942600px;}
.fse{font-size:34.021200px;}
.fs3{font-size:35.868000px;}
.fs0{font-size:38.856000px;}
.fs9{font-size:39.055948px;}
.fs5{font-size:41.844000px;}
.fsd{font-size:42.427800px;}
.fsf{font-size:44.832000px;}
.fs6{font-size:47.820000px;}
.fs2{font-size:53.796000px;}
.fs1{font-size:131.508000px;}
.fs7{font-size:146.448000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.755500px;}
.ye9{bottom:4.866481px;}
.y6f{bottom:7.500000px;}
.ye8{bottom:15.981207px;}
.y76{bottom:16.090500px;}
.y8b{bottom:17.769000px;}
.ye7{bottom:26.398498px;}
.yd4{bottom:36.517500px;}
.ye6{bottom:36.662694px;}
.y75{bottom:36.891000px;}
.y8a{bottom:37.497000px;}
.ye5{bottom:46.997484px;}
.y6e{bottom:48.472500px;}
.y89{bottom:57.217500px;}
.ye4{bottom:57.344182px;}
.ye3{bottom:66.855659px;}
.y7e{bottom:76.945500px;}
.yd9{bottom:77.187897px;}
.y6d{bottom:85.833000px;}
.y3d{bottom:85.863000px;}
.y230{bottom:86.017500px;}
.y18e{bottom:86.217000px;}
.y14f{bottom:86.580000px;}
.yd3{bottom:87.297000px;}
.ye2{bottom:87.594132px;}
.y7f{bottom:88.981500px;}
.y1b0{bottom:97.788000px;}
.y22f{bottom:97.972500px;}
.ye1{bottom:98.777751px;}
.yd2{bottom:100.746000px;}
.y11f{bottom:100.776000px;}
.y3c{bottom:100.807500px;}
.y80{bottom:101.016000px;}
.y18d{bottom:101.161500px;}
.y14e{bottom:101.523000px;}
.y6c{bottom:102.271500px;}
.ye0{bottom:109.040246px;}
.y1af{bottom:109.743000px;}
.y22e{bottom:109.927500px;}
.y81{bottom:113.047800px;}
.yd1{bottom:114.196500px;}
.y6b{bottom:114.226500px;}
.y11e{bottom:115.720500px;}
.y3b{bottom:115.752000px;}
.y18c{bottom:116.104500px;}
.y14d{bottom:116.467500px;}
.yd8{bottom:119.386943px;}
.y234{bottom:121.882500px;}
.y22d{bottom:121.884000px;}
.y1ae{bottom:123.966000px;}
.y82{bottom:125.083500px;}
.y8c{bottom:126.859500px;}
.yd0{bottom:127.645500px;}
.ydf{bottom:129.766811px;}
.y11d{bottom:130.665000px;}
.y3a{bottom:130.695000px;}
.y18b{bottom:131.049000px;}
.y14c{bottom:131.410500px;}
.y233{bottom:133.837500px;}
.y22c{bottom:133.839000px;}
.y6a{bottom:134.407500px;}
.y74{bottom:135.016500px;}
.y83{bottom:137.118000px;}
.yde{bottom:140.113509px;}
.ycf{bottom:141.096000px;}
.y11c{bottom:145.309500px;}
.y39{bottom:145.639500px;}
.y232{bottom:145.792500px;}
.y22b{bottom:145.794000px;}
.y18a{bottom:145.993500px;}
.y14b{bottom:146.355000px;}
.y69{bottom:147.313500px;}
.y84{bottom:149.151000px;}
.ydd{bottom:149.568000px;}
.y231{bottom:157.747500px;}
.y22a{bottom:157.749000px;}
.y8d{bottom:159.054600px;}
.y68{bottom:159.268500px;}
.y11b{bottom:160.254000px;}
.y38{bottom:160.584000px;}
.ydc{bottom:160.823064px;}
.y189{bottom:160.936500px;}
.y85{bottom:161.185950px;}
.y14a{bottom:161.299500px;}
.yd7{bottom:170.263947px;}
.y86{bottom:173.220300px;}
.y11a{bottom:174.898500px;}
.y1ad{bottom:175.455000px;}
.y67{bottom:175.482000px;}
.y37{bottom:175.527000px;}
.y188{bottom:175.881000px;}
.y149{bottom:176.242500px;}
.ydb{bottom:180.583427px;}
.y87{bottom:185.254050px;}
.y8e{bottom:188.262210px;}
.y119{bottom:189.543000px;}
.y1ac{bottom:190.398000px;}
.y36{bottom:190.471500px;}
.y187{bottom:190.825500px;}
.yda{bottom:190.987960px;}
.y148{bottom:191.187000px;}
.y66{bottom:191.697000px;}
.y1ee{bottom:193.257000px;}
.y229{bottom:193.281000px;}
.y88{bottom:197.288400px;}
.y8f{bottom:198.705750px;}
.yd6{bottom:201.321900px;}
.y118{bottom:204.487500px;}
.y228{bottom:205.236000px;}
.y1ab{bottom:205.342500px;}
.y35{bottom:205.416000px;}
.y186{bottom:205.768500px;}
.y147{bottom:206.131500px;}
.y1ed{bottom:206.707500px;}
.y65{bottom:207.910500px;}
.y73{bottom:216.621450px;}
.y7d{bottom:217.017750px;}
.yf0{bottom:217.028700px;}
.y117{bottom:219.132000px;}
.y64{bottom:219.865500px;}
.yea{bottom:219.905700px;}
.y1ec{bottom:220.156500px;}
.y1aa{bottom:220.287000px;}
.y34{bottom:220.359000px;}
.y185{bottom:220.713000px;}
.y146{bottom:221.074500px;}
.y227{bottom:231.088500px;}
.yeb{bottom:233.443586px;}
.y1eb{bottom:233.607000px;}
.y116{bottom:234.076500px;}
.y1a9{bottom:235.230000px;}
.y33{bottom:235.303500px;}
.y184{bottom:235.656000px;}
.y145{bottom:236.019000px;}
.y79{bottom:236.746950px;}
.y226{bottom:244.537500px;}
.yec{bottom:246.967013px;}
.y1ea{bottom:247.056000px;}
.y63{bottom:248.182500px;}
.y7a{bottom:248.780700px;}
.y115{bottom:249.021000px;}
.y1a8{bottom:250.174500px;}
.y32{bottom:250.246500px;}
.y183{bottom:250.600500px;}
.y144{bottom:250.963500px;}
.y72{bottom:252.475050px;}
.yed{bottom:260.490440px;}
.y1e9{bottom:260.505000px;}
.y7b{bottom:260.814300px;}
.y62{bottom:263.125500px;}
.y114{bottom:263.665500px;}
.y1a7{bottom:265.119000px;}
.y31{bottom:265.191000px;}
.y182{bottom:265.545000px;}
.y143{bottom:265.906500px;}
.y7c{bottom:272.848800px;}
.y1e8{bottom:273.955500px;}
.yee{bottom:274.013867px;}
.y225{bottom:275.472000px;}
.y61{bottom:278.070000px;}
.y113{bottom:278.610000px;}
.y1a6{bottom:280.062000px;}
.y30{bottom:280.135500px;}
.y181{bottom:280.488000px;}
.y142{bottom:280.851000px;}
.yef{bottom:287.550902px;}
.y224{bottom:288.922500px;}
.y71{bottom:290.678100px;}
.y78{bottom:292.568550px;}
.y60{bottom:293.013000px;}
.y112{bottom:293.254500px;}
.y1a5{bottom:295.006500px;}
.y2f{bottom:295.078500px;}
.y180{bottom:295.432500px;}
.y141{bottom:295.795500px;}
.y1e7{bottom:300.853500px;}
.y223{bottom:302.371500px;}
.y5f{bottom:307.957500px;}
.y111{bottom:308.199000px;}
.y1a4{bottom:309.951000px;}
.y2e{bottom:310.023000px;}
.y17f{bottom:310.377000px;}
.y140{bottom:310.738500px;}
.y1e6{bottom:314.304000px;}
.y222{bottom:315.820500px;}
.y110{bottom:322.843500px;}
.y5e{bottom:322.902000px;}
.y1a3{bottom:324.894000px;}
.y2d{bottom:324.967500px;}
.y17e{bottom:325.320000px;}
.y13f{bottom:325.683000px;}
.y1e5{bottom:327.753000px;}
.y221{bottom:329.271000px;}
.y10f{bottom:337.788000px;}
.y5d{bottom:337.845000px;}
.y1a2{bottom:339.838500px;}
.y2c{bottom:339.910500px;}
.y17d{bottom:340.264500px;}
.y13e{bottom:340.626000px;}
.y1e4{bottom:341.203500px;}
.y220{bottom:342.720000px;}
.y10e{bottom:352.432500px;}
.y5c{bottom:352.789500px;}
.y1e3{bottom:354.652500px;}
.y1a1{bottom:354.781500px;}
.y2b{bottom:354.855000px;}
.y17c{bottom:355.209000px;}
.y13d{bottom:355.570500px;}
.y21f{bottom:356.169000px;}
.y10d{bottom:367.377000px;}
.y5b{bottom:367.734000px;}
.y1e2{bottom:368.101500px;}
.y21e{bottom:369.619500px;}
.y1a0{bottom:369.726000px;}
.y2a{bottom:369.799500px;}
.y17b{bottom:370.152000px;}
.y13c{bottom:370.515000px;}
.y1e1{bottom:381.552000px;}
.y10c{bottom:382.021500px;}
.y5a{bottom:382.677000px;}
.y21d{bottom:383.068500px;}
.y19f{bottom:384.670500px;}
.y29{bottom:384.742500px;}
.y17a{bottom:385.096500px;}
.y13b{bottom:385.458000px;}
.y1e0{bottom:395.001000px;}
.y21c{bottom:396.517500px;}
.y10b{bottom:396.667500px;}
.y59{bottom:397.621500px;}
.y19e{bottom:399.613500px;}
.y28{bottom:399.687000px;}
.y179{bottom:400.041000px;}
.y13a{bottom:400.402500px;}
.y21b{bottom:409.968000px;}
.y10a{bottom:411.610500px;}
.y58{bottom:412.566000px;}
.y19d{bottom:414.558000px;}
.y27{bottom:414.631500px;}
.y178{bottom:414.984000px;}
.y139{bottom:415.347000px;}
.y1df{bottom:421.900500px;}
.y21a{bottom:423.417000px;}
.y109{bottom:426.256500px;}
.y57{bottom:427.509000px;}
.y19c{bottom:429.502500px;}
.y26{bottom:429.574500px;}
.y177{bottom:429.928500px;}
.y138{bottom:430.290000px;}
.y1de{bottom:435.349500px;}
.y219{bottom:436.867500px;}
.y108{bottom:441.199500px;}
.y56{bottom:442.453500px;}
.y19b{bottom:444.445500px;}
.y25{bottom:444.519000px;}
.y176{bottom:444.871500px;}
.y137{bottom:445.234500px;}
.y1dd{bottom:448.798500px;}
.y218{bottom:450.316500px;}
.y107{bottom:456.144000px;}
.ya4{bottom:458.053500px;}
.yce{bottom:458.683500px;}
.y19a{bottom:459.390000px;}
.y24{bottom:459.463500px;}
.y175{bottom:459.816000px;}
.y1dc{bottom:462.249000px;}
.y217{bottom:463.765500px;}
.y106{bottom:471.088500px;}
.y136{bottom:472.881000px;}
.ya3{bottom:472.996500px;}
.ycd{bottom:473.628000px;}
.y199{bottom:474.334500px;}
.y23{bottom:474.406500px;}
.y174{bottom:474.760500px;}
.y55{bottom:475.330500px;}
.y1db{bottom:475.698000px;}
.y216{bottom:477.216000px;}
.y105{bottom:486.031500px;}
.y135{bottom:487.825500px;}
.ya2{bottom:487.941000px;}
.ycc{bottom:488.572500px;}
.y1da{bottom:489.148500px;}
.y198{bottom:489.277500px;}
.y22{bottom:489.351000px;}
.y173{bottom:489.703500px;}
.y215{bottom:490.665000px;}
.y104{bottom:500.976000px;}
.y1d9{bottom:502.597500px;}
.y134{bottom:502.768500px;}
.ya1{bottom:502.884000px;}
.ycb{bottom:503.515500px;}
.y197{bottom:504.222000px;}
.y21{bottom:504.294000px;}
.y172{bottom:504.648000px;}
.y54{bottom:505.617000px;}
.y103{bottom:515.920500px;}
.y1d8{bottom:516.046500px;}
.y133{bottom:517.713000px;}
.ya0{bottom:517.828500px;}
.yca{bottom:518.460000px;}
.y196{bottom:519.166500px;}
.y20{bottom:519.238500px;}
.y171{bottom:519.592500px;}
.y53{bottom:520.561500px;}
.y214{bottom:520.702500px;}
.y1d7{bottom:529.497000px;}
.y132{bottom:532.656000px;}
.y9f{bottom:532.773000px;}
.yc9{bottom:533.404500px;}
.y195{bottom:534.109500px;}
.y213{bottom:534.151500px;}
.y1f{bottom:534.183000px;}
.y170{bottom:534.535500px;}
.y52{bottom:535.504500px;}
.y1d6{bottom:542.946000px;}
.y131{bottom:547.600500px;}
.y212{bottom:547.602000px;}
.y9e{bottom:547.716000px;}
.yc8{bottom:548.347500px;}
.y102{bottom:548.421000px;}
.y194{bottom:549.054000px;}
.y1e{bottom:549.126000px;}
.y16f{bottom:549.480000px;}
.y51{bottom:550.449000px;}
.y1d5{bottom:556.395000px;}
.y211{bottom:561.051000px;}
.y101{bottom:561.870000px;}
.y130{bottom:562.545000px;}
.y9d{bottom:562.660500px;}
.yc7{bottom:563.292000px;}
.y193{bottom:563.998500px;}
.y1d{bottom:564.070500px;}
.y16e{bottom:564.424500px;}
.y50{bottom:565.393500px;}
.y1d4{bottom:569.845500px;}
.y210{bottom:574.500000px;}
.y100{bottom:575.319000px;}
.y12f{bottom:577.488000px;}
.y9c{bottom:577.605000px;}
.yc6{bottom:578.236500px;}
.y192{bottom:578.941500px;}
.y1c{bottom:579.015000px;}
.y16d{bottom:579.367500px;}
.y1d3{bottom:583.294500px;}
.y20f{bottom:587.950500px;}
.yff{bottom:588.769500px;}
.y4f{bottom:592.291500px;}
.y12e{bottom:592.432500px;}
.y9b{bottom:592.548000px;}
.yc5{bottom:593.179500px;}
.y191{bottom:593.886000px;}
.y1b{bottom:593.958000px;}
.y1d2{bottom:596.745000px;}
.y16c{bottom:597.472500px;}
.y20e{bottom:601.399500px;}
.yfe{bottom:602.218500px;}
.y4e{bottom:607.236000px;}
.y12d{bottom:607.377000px;}
.y9a{bottom:607.492500px;}
.yc4{bottom:608.124000px;}
.y190{bottom:608.829000px;}
.y1a{bottom:608.902500px;}
.y1d1{bottom:610.194000px;}
.y20d{bottom:614.850000px;}
.yfd{bottom:615.669000px;}
.y254{bottom:619.332000px;}
.y4d{bottom:622.180500px;}
.y12c{bottom:622.320000px;}
.y99{bottom:622.437000px;}
.yc3{bottom:623.067000px;}
.y1d0{bottom:623.643000px;}
.y16b{bottom:623.773500px;}
.y19{bottom:623.847000px;}
.y20c{bottom:628.299000px;}
.yfc{bottom:629.118000px;}
.y253{bottom:631.287000px;}
.y1cf{bottom:637.093500px;}
.y4c{bottom:637.123500px;}
.y12b{bottom:637.264500px;}
.y98{bottom:637.380000px;}
.yc2{bottom:638.011500px;}
.y17{bottom:638.529000px;}
.y16a{bottom:638.718000px;}
.y18{bottom:638.790000px;}
.y20b{bottom:641.748000px;}
.yfb{bottom:642.567000px;}
.y252{bottom:643.242000px;}
.y1ce{bottom:650.542500px;}
.y4b{bottom:652.068000px;}
.y12a{bottom:652.209000px;}
.y97{bottom:652.324500px;}
.yc1{bottom:652.956000px;}
.y18f{bottom:653.661000px;}
.y169{bottom:653.662500px;}
.y251{bottom:655.197000px;}
.y20a{bottom:655.198500px;}
.yfa{bottom:656.017500px;}
.y1cd{bottom:663.991500px;}
.y4a{bottom:667.011000px;}
.y129{bottom:667.152000px;}
.yc0{bottom:667.899000px;}
.y168{bottom:668.605500px;}
.y209{bottom:668.647500px;}
.yf9{bottom:669.466500px;}
.y1{bottom:672.382500px;}
.y1cc{bottom:677.442000px;}
.y250{bottom:679.108500px;}
.y49{bottom:681.955500px;}
.y128{bottom:682.096500px;}
.ybf{bottom:682.843500px;}
.yf8{bottom:682.915500px;}
.y167{bottom:683.550000px;}
.y1cb{bottom:690.891000px;}
.y24f{bottom:691.063500px;}
.y96{bottom:691.149000px;}
.y16{bottom:692.589000px;}
.y208{bottom:695.547000px;}
.yf7{bottom:696.366000px;}
.y48{bottom:696.900000px;}
.y127{bottom:697.041000px;}
.ybe{bottom:697.788000px;}
.y166{bottom:698.493000px;}
.y24e{bottom:703.018500px;}
.y1ca{bottom:704.341500px;}
.y95{bottom:704.598000px;}
.y207{bottom:708.996000px;}
.yf6{bottom:709.815000px;}
.y47{bottom:711.843000px;}
.y126{bottom:711.984000px;}
.ybd{bottom:712.731000px;}
.y165{bottom:713.437500px;}
.y24d{bottom:714.973500px;}
.y1c9{bottom:717.790500px;}
.y94{bottom:718.048500px;}
.y206{bottom:722.446500px;}
.yf5{bottom:723.265500px;}
.y46{bottom:726.787500px;}
.y125{bottom:726.928500px;}
.y15{bottom:726.960000px;}
.ybc{bottom:727.675500px;}
.y164{bottom:728.382000px;}
.y1c8{bottom:731.239500px;}
.y93{bottom:731.497500px;}
.y205{bottom:735.895500px;}
.yf4{bottom:736.714500px;}
.y24c{bottom:738.883500px;}
.y45{bottom:741.732000px;}
.y124{bottom:741.871500px;}
.y14{bottom:741.903000px;}
.ybb{bottom:742.620000px;}
.y163{bottom:743.325000px;}
.y1c7{bottom:744.690000px;}
.y92{bottom:744.946500px;}
.y204{bottom:749.344500px;}
.yf3{bottom:750.163500px;}
.y24b{bottom:750.838500px;}
.y44{bottom:756.675000px;}
.y123{bottom:756.816000px;}
.y13{bottom:756.847500px;}
.yba{bottom:757.563000px;}
.y1c6{bottom:758.139000px;}
.y162{bottom:758.269500px;}
.y91{bottom:758.397000px;}
.y24a{bottom:762.793500px;}
.y203{bottom:762.795000px;}
.yf2{bottom:763.614000px;}
.y1c5{bottom:771.588000px;}
.y43{bottom:771.619500px;}
.y122{bottom:771.760500px;}
.y12{bottom:771.792000px;}
.y90{bottom:771.846000px;}
.yb9{bottom:772.507500px;}
.y161{bottom:773.214000px;}
.y249{bottom:774.748500px;}
.y202{bottom:776.244000px;}
.yf1{bottom:777.063000px;}
.y1c4{bottom:785.038500px;}
.y42{bottom:786.564000px;}
.y121{bottom:786.703500px;}
.y11{bottom:786.735000px;}
.y160{bottom:788.157000px;}
.y201{bottom:789.693000px;}
.y70{bottom:792.768000px;}
.yd5{bottom:797.985000px;}
.y1c3{bottom:798.487500px;}
.y248{bottom:798.660000px;}
.y41{bottom:801.507000px;}
.yb8{bottom:801.648000px;}
.y10{bottom:801.679500px;}
.y15f{bottom:803.101500px;}
.y200{bottom:803.143500px;}
.y247{bottom:810.615000px;}
.yb7{bottom:816.592500px;}
.yf{bottom:816.624000px;}
.y40{bottom:819.612000px;}
.y246{bottom:822.570000px;}
.y1c2{bottom:826.134000px;}
.y1ff{bottom:830.043000px;}
.yb6{bottom:831.535500px;}
.ye{bottom:831.567000px;}
.y245{bottom:834.525000px;}
.y1c1{bottom:839.583000px;}
.y1fe{bottom:843.492000px;}
.yb5{bottom:846.480000px;}
.yd{bottom:846.511500px;}
.y15e{bottom:848.761500px;}
.y1c0{bottom:853.033500px;}
.y1fd{bottom:856.941000px;}
.y244{bottom:858.435000px;}
.yb4{bottom:861.424500px;}
.y3f{bottom:861.454500px;}
.yc{bottom:861.456000px;}
.y15d{bottom:862.210500px;}
.y1bf{bottom:866.482500px;}
.y243{bottom:870.390000px;}
.y15c{bottom:875.661000px;}
.yb3{bottom:876.367500px;}
.yb{bottom:876.399000px;}
.y1be{bottom:879.931500px;}
.y242{bottom:882.345000px;}
.y1fc{bottom:883.840500px;}
.y15b{bottom:889.110000px;}
.yb2{bottom:891.312000px;}
.ya{bottom:891.343500px;}
.y1bd{bottom:893.382000px;}
.y255{bottom:894.300000px;}
.y241{bottom:894.301500px;}
.y15a{bottom:902.559000px;}
.yb1{bottom:906.256500px;}
.y3e{bottom:906.286500px;}
.y9{bottom:906.288000px;}
.y1bc{bottom:906.831000px;}
.y1fb{bottom:910.740000px;}
.y159{bottom:916.009500px;}
.y240{bottom:918.211500px;}
.y1bb{bottom:920.281500px;}
.yb0{bottom:921.199500px;}
.y8{bottom:921.231000px;}
.y1fa{bottom:924.189000px;}
.y158{bottom:929.458500px;}
.y23f{bottom:930.166500px;}
.y1ba{bottom:933.730500px;}
.yaf{bottom:936.144000px;}
.y1f9{bottom:937.639500px;}
.y23e{bottom:942.121500px;}
.y7{bottom:945.073500px;}
.y1b9{bottom:947.179500px;}
.yae{bottom:951.087000px;}
.y120{bottom:951.088500px;}
.y157{bottom:952.251000px;}
.y23d{bottom:954.076500px;}
.y1f8{bottom:964.537500px;}
.yad{bottom:966.031500px;}
.y6{bottom:968.983500px;}
.y156{bottom:974.667000px;}
.y1b8{bottom:974.826000px;}
.y23c{bottom:977.986500px;}
.y1f7{bottom:977.988000px;}
.yac{bottom:980.976000px;}
.y5{bottom:984.700500px;}
.y1b7{bottom:988.276500px;}
.y155{bottom:989.610000px;}
.y23b{bottom:989.941500px;}
.y1f6{bottom:991.437000px;}
.yab{bottom:995.919000px;}
.y1b6{bottom:1001.725500px;}
.y23a{bottom:1001.898000px;}
.y1f5{bottom:1004.886000px;}
.y4{bottom:1005.595500px;}
.yaa{bottom:1010.863500px;}
.y154{bottom:1011.877500px;}
.y239{bottom:1013.853000px;}
.y1b5{bottom:1015.174500px;}
.y1f4{bottom:1018.336500px;}
.ya9{bottom:1025.808000px;}
.y153{bottom:1026.820500px;}
.y1b4{bottom:1028.625000px;}
.y1f3{bottom:1031.785500px;}
.y3{bottom:1037.218500px;}
.y238{bottom:1037.763000px;}
.ya8{bottom:1040.751000px;}
.y152{bottom:1041.765000px;}
.y1b3{bottom:1042.074000px;}
.y1f2{bottom:1045.234500px;}
.y237{bottom:1049.718000px;}
.y1b2{bottom:1055.523000px;}
.ya7{bottom:1055.695500px;}
.y1f1{bottom:1058.685000px;}
.y236{bottom:1061.673000px;}
.y151{bottom:1064.404500px;}
.y1b1{bottom:1068.973500px;}
.ya6{bottom:1070.640000px;}
.y1f0{bottom:1072.134000px;}
.y2{bottom:1073.085000px;}
.y235{bottom:1073.628000px;}
.y150{bottom:1085.440500px;}
.ya5{bottom:1085.583000px;}
.y1ef{bottom:1085.584500px;}
.hd{height:19.271460px;}
.h11{height:22.463750px;}
.h4{height:22.501908px;}
.h1a{height:23.991396px;}
.h12{height:24.710213px;}
.h13{height:24.744155px;}
.hf{height:25.031250px;}
.h17{height:25.073624px;}
.hc{height:28.909608px;}
.h1c{height:29.335608px;}
.h1b{height:29.341608px;}
.h1{height:29.608272px;}
.h15{height:30.385392px;}
.h14{height:30.887438px;}
.he{height:31.317936px;}
.h6{height:33.726264px;}
.h18{height:36.134592px;}
.h7{height:37.395240px;}
.h5{height:37.549908px;}
.ha{height:40.992552px;}
.h9{height:41.207736px;}
.hb{height:42.068472px;}
.h19{height:49.755000px;}
.h3{height:50.902776px;}
.h2{height:100.209096px;}
.h8{height:114.522336px;}
.h16{height:297.612000px;}
.h10{height:302.829000px;}
.h0{height:1174.500000px;}
.w1{width:366.001500px;}
.w2{width:366.564000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x17{left:2.362800px;}
.x16{left:6.596250px;}
.x10{left:9.430650px;}
.x18{left:10.839150px;}
.x14{left:12.256725px;}
.x15{left:14.619150px;}
.x13{left:16.499250px;}
.x12{left:19.816350px;}
.x9{left:21.000000px;}
.xf{left:22.178400px;}
.x11{left:24.522150px;}
.x22{left:26.635950px;}
.x3{left:56.892000px;}
.x2b{left:58.470000px;}
.x2d{left:60.508500px;}
.xa{left:64.725000px;}
.x5{left:70.341000px;}
.x21{left:72.296109px;}
.x1b{left:77.365500px;}
.x4{left:78.742500px;}
.xb{left:103.110300px;}
.x1e{left:109.975500px;}
.x2e{left:118.977000px;}
.xc{left:163.695000px;}
.x2f{left:167.838000px;}
.x32{left:190.338000px;}
.x27{left:192.115500px;}
.x28{left:202.078500px;}
.x26{left:213.915000px;}
.xd{left:228.937500px;}
.xe{left:292.369500px;}
.x1a{left:334.612500px;}
.x19{left:356.560500px;}
.x30{left:361.860000px;}
.x31{left:394.246500px;}
.x25{left:433.135500px;}
.x6{left:444.687000px;}
.x2c{left:446.265000px;}
.x33{left:448.303500px;}
.x1c{left:451.711500px;}
.x8{left:454.401000px;}
.x29{left:456.595500px;}
.x7{left:458.137500px;}
.x1d{left:465.160500px;}
.x38{left:475.465500px;}
.x20{left:479.280000px;}
.x2a{left:493.474500px;}
.x35{left:549.066000px;}
.x34{left:584.796000px;}
.x36{left:616.605000px;}
.x24{left:629.820000px;}
.x37{left:656.077500px;}
.x23{left:741.420000px;}
.x1f{left:748.093500px;}
.x1{left:849.073500px;}
.x2{left:861.028500px;}
@media print{
.v2{vertical-align:-13.376000pt;}
.v5{vertical-align:-8.064000pt;}
.v7{vertical-align:-6.448000pt;}
.v8{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.376000pt;}
.v6{vertical-align:16.037333pt;}
.v1{vertical-align:20.314667pt;}
.v4{vertical-align:54.064000pt;}
.ls10{letter-spacing:-3.324866pt;}
.lsa{letter-spacing:-2.002263pt;}
.ls11{letter-spacing:-1.089180pt;}
.lsc{letter-spacing:-0.005486pt;}
.ls12{letter-spacing:-0.003024pt;}
.lsf{letter-spacing:-0.003017pt;}
.lsd{letter-spacing:-0.002743pt;}
.ls8{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000705pt;}
.ls26{letter-spacing:0.001131pt;}
.ls23{letter-spacing:0.001824pt;}
.ls1a{letter-spacing:0.002133pt;}
.ls24{letter-spacing:0.002227pt;}
.ls9{letter-spacing:0.003017pt;}
.lsb{letter-spacing:0.005486pt;}
.lse{letter-spacing:0.006034pt;}
.ls19{letter-spacing:0.007466pt;}
.ls1d{letter-spacing:0.010134pt;}
.ls2f{letter-spacing:1.905295pt;}
.ls22{letter-spacing:1.910628pt;}
.ls0{letter-spacing:2.655637pt;}
.ls1{letter-spacing:2.656091pt;}
.ls2{letter-spacing:2.656363pt;}
.ls1c{letter-spacing:2.659648pt;}
.ls6{letter-spacing:4.124480pt;}
.ls5{letter-spacing:5.312811pt;}
.ls21{letter-spacing:7.252277pt;}
.ls31{letter-spacing:7.252882pt;}
.ls27{letter-spacing:7.257611pt;}
.ls1f{letter-spacing:7.258215pt;}
.ls30{letter-spacing:9.163962pt;}
.ls1e{letter-spacing:9.911925pt;}
.ls15{letter-spacing:10.335549pt;}
.ls2b{letter-spacing:10.340725pt;}
.ls17{letter-spacing:10.340882pt;}
.ls25{letter-spacing:10.390837pt;}
.ls2a{letter-spacing:10.818901pt;}
.ls29{letter-spacing:11.009216pt;}
.ls13{letter-spacing:11.076882pt;}
.ls2c{letter-spacing:11.343392pt;}
.ls14{letter-spacing:11.491252pt;}
.ls18{letter-spacing:11.523160pt;}
.ls16{letter-spacing:11.524696pt;}
.ls20{letter-spacing:11.986591pt;}
.ls2d{letter-spacing:12.275509pt;}
.ls4{letter-spacing:13.278516pt;}
.ls3{letter-spacing:13.283850pt;}
.ls1b{letter-spacing:17.454164pt;}
.ls2e{letter-spacing:20.860171pt;}
.ls7{letter-spacing:29.221655pt;}
.ws18e{word-spacing:-28.119168pt;}
.ws66{word-spacing:-22.631417pt;}
.ws63{word-spacing:-20.568457pt;}
.ws64{word-spacing:-19.303534pt;}
.ws9c{word-spacing:-10.340117pt;}
.ws5d{word-spacing:-8.863381pt;}
.ws9e{word-spacing:-8.407017pt;}
.ws13c{word-spacing:-4.590729pt;}
.ws5e{word-spacing:-3.570760pt;}
.ws18a{word-spacing:-3.087110pt;}
.ws1a5{word-spacing:-3.081451pt;}
.ws13e{word-spacing:-2.821208pt;}
.wscf{word-spacing:-2.725745pt;}
.wsbd{word-spacing:-2.677854pt;}
.wse5{word-spacing:-2.582285pt;}
.ws73{word-spacing:-2.534287pt;}
.ws15{word-spacing:-2.438825pt;}
.ws51{word-spacing:-2.422829pt;}
.ws13{word-spacing:-2.390827pt;}
.wscc{word-spacing:-2.247473pt;}
.ws116{word-spacing:-2.199902pt;}
.ws1b0{word-spacing:-2.157483pt;}
.ws80{word-spacing:-2.151904pt;}
.ws1cb{word-spacing:-2.136158pt;}
.ws46{word-spacing:-2.008444pt;}
.wsc4{word-spacing:-2.008391pt;}
.ws11d{word-spacing:-1.960446pt;}
.ws11c{word-spacing:-1.951851pt;}
.ws168{word-spacing:-1.897209pt;}
.wsfe{word-spacing:-1.864983pt;}
.ws45{word-spacing:-1.827841pt;}
.ws1a1{word-spacing:-1.822541pt;}
.ws74{word-spacing:-1.816986pt;}
.wsae{word-spacing:-1.785366pt;}
.ws205{word-spacing:-1.753572pt;}
.wsba{word-spacing:-1.673526pt;}
.ws15f{word-spacing:-1.636402pt;}
.ws4a{word-spacing:-1.626061pt;}
.ws10c{word-spacing:-1.599601pt;}
.ws171{word-spacing:-1.562266pt;}
.ws180{word-spacing:-1.488131pt;}
.wsb3{word-spacing:-1.450583pt;}
.ws203{word-spacing:-1.434724pt;}
.ws7d{word-spacing:-1.434603pt;}
.ws1b5{word-spacing:-1.413462pt;}
.ws91{word-spacing:-1.386605pt;}
.ws17c{word-spacing:-1.376128pt;}
.wse4{word-spacing:-1.291143pt;}
.ws1e6{word-spacing:-1.275300pt;}
.ws2d{word-spacing:-1.243145pt;}
.ws10b{word-spacing:-1.227324pt;}
.ws144{word-spacing:-1.211670pt;}
.ws34{word-spacing:-1.195680pt;}
.ws14c{word-spacing:-1.153028pt;}
.ws1cf{word-spacing:-1.147772pt;}
.ws44{word-spacing:-1.147682pt;}
.ws1d5{word-spacing:-1.084194pt;}
.ws1ff{word-spacing:-1.049542pt;}
.ws179{word-spacing:-1.041718pt;}
.ws201{word-spacing:-1.020190pt;}
.ws173{word-spacing:-1.004384pt;}
.ws82{word-spacing:-1.004222pt;}
.ws1a8{word-spacing:-0.967049pt;}
.ws38{word-spacing:-0.956224pt;}
.ws43{word-spacing:-0.908760pt;}
.ws14{word-spacing:-0.860762pt;}
.ws1c5{word-spacing:-0.860713pt;}
.ws1a2{word-spacing:-0.855580pt;}
.ws55{word-spacing:-0.850047pt;}
.ws17f{word-spacing:-0.818245pt;}
.ws165{word-spacing:-0.780911pt;}
.ws6b{word-spacing:-0.744110pt;}
.wscd{word-spacing:-0.717302pt;}
.ws1b9{word-spacing:-0.706775pt;}
.ws1b8{word-spacing:-0.703253pt;}
.ws189{word-spacing:-0.632640pt;}
.ws39{word-spacing:-0.573841pt;}
.ws1f8{word-spacing:-0.573760pt;}
.ws1a6{word-spacing:-0.557971pt;}
.ws136{word-spacing:-0.478379pt;}
.ws1f5{word-spacing:-0.478287pt;}
.ws1eb{word-spacing:-0.446338pt;}
.ws75{word-spacing:-0.430381pt;}
.ws49{word-spacing:-0.334919pt;}
.ws199{word-spacing:-0.297697pt;}
.ws2c{word-spacing:-0.286921pt;}
.ws9b{word-spacing:-0.263824pt;}
.ws15c{word-spacing:-0.260363pt;}
.ws16{word-spacing:-0.238923pt;}
.ws155{word-spacing:-0.223562pt;}
.ws154{word-spacing:-0.223188pt;}
.ws99{word-spacing:-0.223028pt;}
.ws81{word-spacing:-0.191458pt;}
.ws1d6{word-spacing:-0.191335pt;}
.wsdc{word-spacing:-0.143460pt;}
.ws1fe{word-spacing:-0.127330pt;}
.wsa3{word-spacing:-0.111558pt;}
.ws95{word-spacing:-0.047819pt;}
.ws1b3{word-spacing:-0.037423pt;}
.wsab{word-spacing:-0.037195pt;}
.ws1de{word-spacing:-0.017489pt;}
.ws1f0{word-spacing:-0.016486pt;}
.ws1d0{word-spacing:-0.011051pt;}
.ws1da{word-spacing:-0.010549pt;}
.ws206{word-spacing:-0.009049pt;}
.ws192{word-spacing:-0.007459pt;}
.ws1b7{word-spacing:-0.006813pt;}
.ws14f{word-spacing:-0.005821pt;}
.ws191{word-spacing:-0.001077pt;}
.ws1d2{word-spacing:-0.000388pt;}
.ws3{word-spacing:-0.000316pt;}
.ws62{word-spacing:-0.000227pt;}
.ws4{word-spacing:-0.000089pt;}
.ws104{word-spacing:-0.000086pt;}
.ws146{word-spacing:-0.000022pt;}
.ws1bd{word-spacing:-0.000015pt;}
.ws100{word-spacing:-0.000014pt;}
.ws1c{word-spacing:0.000000pt;}
.wsb6{word-spacing:0.000018pt;}
.ws102{word-spacing:0.000021pt;}
.ws11{word-spacing:0.000076pt;}
.ws59{word-spacing:0.000145pt;}
.ws1{word-spacing:0.000218pt;}
.ws101{word-spacing:0.003024pt;}
.ws1e{word-spacing:0.047998pt;}
.ws1fb{word-spacing:0.063616pt;}
.wsaa{word-spacing:0.074367pt;}
.ws1f1{word-spacing:0.095618pt;}
.wsac{word-spacing:0.111381pt;}
.ws147{word-spacing:0.111586pt;}
.ws119{word-spacing:0.143460pt;}
.ws184{word-spacing:0.148716pt;}
.ws148{word-spacing:0.148769pt;}
.ws141{word-spacing:0.211595pt;}
.ws143{word-spacing:0.223093pt;}
.wsdf{word-spacing:0.239082pt;}
.ws16e{word-spacing:0.260186pt;}
.ws17d{word-spacing:0.297520pt;}
.ws153{word-spacing:0.334748pt;}
.ws8d{word-spacing:0.334918pt;}
.ws14b{word-spacing:0.371922pt;}
.ws13b{word-spacing:0.382383pt;}
.ws85{word-spacing:0.424933pt;}
.ws6f{word-spacing:0.430380pt;}
.ws98{word-spacing:0.446324pt;}
.ws86{word-spacing:0.478378pt;}
.ws1ad{word-spacing:0.483659pt;}
.ws1ab{word-spacing:0.520460pt;}
.ws6e{word-spacing:0.557794pt;}
.ws11a{word-spacing:0.573841pt;}
.ws1b4{word-spacing:0.595128pt;}
.ws3d{word-spacing:0.621839pt;}
.wseb{word-spacing:0.669303pt;}
.ws1ce{word-spacing:0.701419pt;}
.wscb{word-spacing:0.717301pt;}
.wsd6{word-spacing:0.765086pt;}
.wsce{word-spacing:0.812924pt;}
.ws72{word-spacing:0.860761pt;}
.ws1bf{word-spacing:0.892471pt;}
.ws6a{word-spacing:0.930072pt;}
.wsfd{word-spacing:0.956224pt;}
.ws1ef{word-spacing:0.988478pt;}
.ws1c7{word-spacing:1.003855pt;}
.wsd9{word-spacing:1.004168pt;}
.ws93{word-spacing:1.004222pt;}
.ws1ca{word-spacing:1.019947pt;}
.ws1c9{word-spacing:1.020480pt;}
.wsa4{word-spacing:1.041541pt;}
.ws65{word-spacing:1.059009pt;}
.ws1f7{word-spacing:1.083951pt;}
.wsea{word-spacing:1.099684pt;}
.ws174{word-spacing:1.115677pt;}
.ws151{word-spacing:1.115828pt;}
.wsb5{word-spacing:1.115837pt;}
.ws48{word-spacing:1.147682pt;}
.ws58{word-spacing:1.147955pt;}
.ws178{word-spacing:1.153011pt;}
.wsa5{word-spacing:1.190239pt;}
.ws1b1{word-spacing:1.227680pt;}
.ws159{word-spacing:1.236991pt;}
.ws156{word-spacing:1.264481pt;}
.wsd0{word-spacing:1.291089pt;}
.ws7e{word-spacing:1.338607pt;}
.wsad{word-spacing:1.376218pt;}
.ws196{word-spacing:1.376484pt;}
.ws84{word-spacing:1.386605pt;}
.ws1d9{word-spacing:1.402852pt;}
.ws1d8{word-spacing:1.402906pt;}
.ws97{word-spacing:1.413285pt;}
.wsb7{word-spacing:1.434549pt;}
.ws11e{word-spacing:1.434603pt;}
.ws6d{word-spacing:1.450620pt;}
.ws134{word-spacing:1.482600pt;}
.ws16d{word-spacing:1.487954pt;}
.ws1ac{word-spacing:1.524755pt;}
.ws10f{word-spacing:1.562090pt;}
.ws10d{word-spacing:1.562196pt;}
.wsb8{word-spacing:1.578009pt;}
.wsb9{word-spacing:1.625847pt;}
.ws1a0{word-spacing:1.636758pt;}
.wsee{word-spacing:1.673525pt;}
.wsa7{word-spacing:1.710894pt;}
.wsa9{word-spacing:1.710947pt;}
.wsda{word-spacing:1.721470pt;}
.ws12c{word-spacing:1.721523pt;}
.ws1ea{word-spacing:1.721860pt;}
.wsa6{word-spacing:1.735765pt;}
.ws5c{word-spacing:1.753329pt;}
.ws1f2{word-spacing:1.753542pt;}
.ws5b{word-spacing:1.753862pt;}
.ws42{word-spacing:1.768987pt;}
.ws5a{word-spacing:1.785331pt;}
.ws19e{word-spacing:1.785563pt;}
.wsd5{word-spacing:1.816985pt;}
.ws195{word-spacing:1.859698pt;}
.wsa1{word-spacing:1.896926pt;}
.wsaf{word-spacing:1.971168pt;}
.wsde{word-spacing:2.008390pt;}
.ws3f{word-spacing:2.008443pt;}
.ws163{word-spacing:2.008502pt;}
.wsc6{word-spacing:2.056441pt;}
.ws1d{word-spacing:2.103906pt;}
.wse8{word-spacing:2.151904pt;}
.ws157{word-spacing:2.157307pt;}
.wse0{word-spacing:2.199635pt;}
.ws6{word-spacing:2.210183pt;}
.ws209{word-spacing:2.231761pt;}
.ws183{word-spacing:2.231975pt;}
.ws12a{word-spacing:2.247366pt;}
.wsc3{word-spacing:2.247473pt;}
.ws1cc{word-spacing:2.295552pt;}
.ws60{word-spacing:2.314016pt;}
.ws96{word-spacing:2.342829pt;}
.ws94{word-spacing:2.343362pt;}
.ws1d3{word-spacing:2.391185pt;}
.ws1b{word-spacing:2.438824pt;}
.ws12e{word-spacing:2.486289pt;}
.wsc8{word-spacing:2.486822pt;}
.ws17e{word-spacing:2.491716pt;}
.ws16c{word-spacing:2.566385pt;}
.wse1{word-spacing:2.582231pt;}
.wse3{word-spacing:2.582285pt;}
.ws198{word-spacing:2.603719pt;}
.ws1ae{word-spacing:2.641054pt;}
.ws3b{word-spacing:2.677747pt;}
.ws185{word-spacing:2.715189pt;}
.ws19a{word-spacing:2.752524pt;}
.wsc5{word-spacing:2.773476pt;}
.ws145{word-spacing:2.773664pt;}
.ws4f{word-spacing:2.805377pt;}
.ws13a{word-spacing:2.821207pt;}
.ws15b{word-spacing:2.826659pt;}
.ws186{word-spacing:2.863993pt;}
.wsdd{word-spacing:2.869205pt;}
.ws12f{word-spacing:2.917203pt;}
.ws16b{word-spacing:2.938662pt;}
.ws129{word-spacing:2.964667pt;}
.wsf1{word-spacing:2.975303pt;}
.ws16f{word-spacing:2.975463pt;}
.ws7f{word-spacing:3.012665pt;}
.ws188{word-spacing:3.012798pt;}
.wsf3{word-spacing:3.156126pt;}
.ws177{word-spacing:3.161602pt;}
.ws83{word-spacing:3.203590pt;}
.ws1ee{word-spacing:3.220147pt;}
.ws56{word-spacing:3.230438pt;}
.ws113{word-spacing:3.251588pt;}
.ws71{word-spacing:3.347584pt;}
.ws172{word-spacing:3.347741pt;}
.ws170{word-spacing:3.384542pt;}
.ws14e{word-spacing:3.384702pt;}
.wsca{word-spacing:3.395048pt;}
.ws87{word-spacing:3.443046pt;}
.ws1af{word-spacing:3.459210pt;}
.ws52{word-spacing:3.485369pt;}
.ws132{word-spacing:3.491044pt;}
.ws19f{word-spacing:3.533346pt;}
.ws14d{word-spacing:3.645083pt;}
.ws1b2{word-spacing:3.645349pt;}
.ws114{word-spacing:3.681969pt;}
.ws166{word-spacing:3.682150pt;}
.wsbe{word-spacing:3.729860pt;}
.ws1f{word-spacing:3.729966pt;}
.ws20{word-spacing:3.777431pt;}
.ws1a7{word-spacing:3.793620pt;}
.wse9{word-spacing:3.825429pt;}
.wsa2{word-spacing:3.868235pt;}
.ws158{word-spacing:3.868289pt;}
.wsf6{word-spacing:3.873427pt;}
.ws28{word-spacing:3.920892pt;}
.ws1d1{word-spacing:3.921474pt;}
.ws124{word-spacing:3.968890pt;}
.ws115{word-spacing:4.016887pt;}
.wsb0{word-spacing:4.017040pt;}
.wsb2{word-spacing:4.017093pt;}
.wsc{word-spacing:4.037895pt;}
.ws11f{word-spacing:4.064352pt;}
.ws139{word-spacing:4.064885pt;}
.ws1be{word-spacing:4.081005pt;}
.ws13d{word-spacing:4.112349pt;}
.ws1ec{word-spacing:4.112847pt;}
.wsf{word-spacing:4.123228pt;}
.ws162{word-spacing:4.165897pt;}
.ws69{word-spacing:4.203232pt;}
.ws40{word-spacing:4.255810pt;}
.ws8f{word-spacing:4.351272pt;}
.wsc1{word-spacing:4.399324pt;}
.ws1aa{word-spacing:4.426171pt;}
.ws164{word-spacing:4.537641pt;}
.ws79{word-spacing:4.542730pt;}
.ws160{word-spacing:4.574976pt;}
.ws2e{word-spacing:4.638193pt;}
.wsed{word-spacing:4.686191pt;}
.ws110{word-spacing:4.734189pt;}
.ws123{word-spacing:4.781653pt;}
.ws1f4{word-spacing:4.782331pt;}
.ws121{word-spacing:4.829651pt;}
.ws8e{word-spacing:4.877649pt;}
.ws10a{word-spacing:4.909705pt;}
.ws1a3{word-spacing:4.946720pt;}
.ws12{word-spacing:4.973111pt;}
.wsc9{word-spacing:4.973164pt;}
.ws17a{word-spacing:5.021540pt;}
.ws89{word-spacing:5.068574pt;}
.ws70{word-spacing:5.116572pt;}
.ws182{word-spacing:5.132858pt;}
.ws1c2{word-spacing:5.165290pt;}
.ws152{word-spacing:5.170193pt;}
.ws1c4{word-spacing:5.196759pt;}
.ws2b{word-spacing:5.260032pt;}
.ws21{word-spacing:5.308030pt;}
.ws9{word-spacing:5.313614pt;}
.ws17b{word-spacing:5.393132pt;}
.ws18{word-spacing:5.403492pt;}
.ws181{word-spacing:5.430467pt;}
.wsd1{word-spacing:5.451330pt;}
.ws1f9{word-spacing:5.452243pt;}
.ws149{word-spacing:5.467801pt;}
.wsd4{word-spacing:5.498954pt;}
.wsd2{word-spacing:5.499168pt;}
.ws90{word-spacing:5.546952pt;}
.wsf5{word-spacing:5.594950pt;}
.ws47{word-spacing:5.690413pt;}
.ws1a9{word-spacing:5.690892pt;}
.wsfa{word-spacing:5.738410pt;}
.wse7{word-spacing:5.929335pt;}
.wsa0{word-spacing:5.951015pt;}
.ws7b{word-spacing:5.977333pt;}
.ws9f{word-spacing:5.988350pt;}
.wsfc{word-spacing:6.025331pt;}
.ws77{word-spacing:6.072796pt;}
.ws16a{word-spacing:6.099819pt;}
.ws208{word-spacing:6.153357pt;}
.wsfb{word-spacing:6.168791pt;}
.ws11b{word-spacing:6.216255pt;}
.wsbf{word-spacing:6.264253pt;}
.ws137{word-spacing:6.312251pt;}
.ws133{word-spacing:6.407714pt;}
.wsc7{word-spacing:6.455498pt;}
.wsf9{word-spacing:6.455712pt;}
.ws112{word-spacing:6.503176pt;}
.wsa{word-spacing:6.503467pt;}
.ws15d{word-spacing:6.509049pt;}
.wse6{word-spacing:6.551174pt;}
.ws12b{word-spacing:6.599172pt;}
.wsdb{word-spacing:6.694634pt;}
.ws19b{word-spacing:6.731837pt;}
.ws19d{word-spacing:6.732371pt;}
.ws8a{word-spacing:6.742632pt;}
.ws5{word-spacing:6.758397pt;}
.ws29{word-spacing:6.790097pt;}
.wsb4{word-spacing:6.843841pt;}
.wsf2{word-spacing:6.886093pt;}
.wsd8{word-spacing:6.933717pt;}
.ws15e{word-spacing:6.955310pt;}
.ws41{word-spacing:6.981555pt;}
.ws23{word-spacing:7.029019pt;}
.wsc2{word-spacing:7.029339pt;}
.ws14a{word-spacing:7.029979pt;}
.ws135{word-spacing:7.077017pt;}
.ws92{word-spacing:7.125015pt;}
.ws1e1{word-spacing:7.173585pt;}
.ws8{word-spacing:7.183459pt;}
.wsec{word-spacing:7.268476pt;}
.ws131{word-spacing:7.316473pt;}
.ws193{word-spacing:7.401723pt;}
.ws3a{word-spacing:7.411936pt;}
.ws88{word-spacing:7.459933pt;}
.ws138{word-spacing:7.507398pt;}
.ws1e7{word-spacing:7.556198pt;}
.ws111{word-spacing:7.698856pt;}
.ws4d{word-spacing:7.735986pt;}
.ws2a{word-spacing:7.746854pt;}
.ws68{word-spacing:7.773467pt;}
.ws202{word-spacing:7.805760pt;}
.ws200{word-spacing:7.811255pt;}
.ws120{word-spacing:7.842316pt;}
.ws67{word-spacing:7.848136pt;}
.ws1b6{word-spacing:7.959757pt;}
.ws1a{word-spacing:7.985777pt;}
.ws13f{word-spacing:8.033775pt;}
.ws17{word-spacing:8.176702pt;}
.wsf8{word-spacing:8.177235pt;}
.ws12d{word-spacing:8.224699pt;}
.ws167{word-spacing:8.257214pt;}
.wse{word-spacing:8.331179pt;}
.ws7a{word-spacing:8.368160pt;}
.ws187{word-spacing:8.517488pt;}
.ws8b{word-spacing:8.559618pt;}
.ws1e5{word-spacing:8.576719pt;}
.ws8c{word-spacing:8.607616pt;}
.ws1e4{word-spacing:8.608294pt;}
.wsb{word-spacing:8.756241pt;}
.ws161{word-spacing:8.777762pt;}
.ws35{word-spacing:8.798540pt;}
.ws1cd{word-spacing:8.815115pt;}
.ws1fa{word-spacing:8.815748pt;}
.ws1c6{word-spacing:8.820303pt;}
.ws1df{word-spacing:8.820463pt;}
.ws207{word-spacing:8.821583pt;}
.ws1c0{word-spacing:8.831484pt;}
.ws1f6{word-spacing:8.831644pt;}
.ws4c{word-spacing:8.841573pt;}
.ws7c{word-spacing:8.942001pt;}
.ws5f{word-spacing:8.992085pt;}
.ws50{word-spacing:9.011704pt;}
.wsf0{word-spacing:9.037463pt;}
.ws142{word-spacing:9.054698pt;}
.ws169{word-spacing:9.112705pt;}
.ws1ed{word-spacing:9.113547pt;}
.ws27{word-spacing:9.180923pt;}
.ws19{word-spacing:9.228921pt;}
.ws36{word-spacing:9.276919pt;}
.wsef{word-spacing:9.372382pt;}
.ws127{word-spacing:9.467844pt;}
.ws130{word-spacing:9.515842pt;}
.ws6c{word-spacing:9.558813pt;}
.ws1db{word-spacing:9.724209pt;}
.ws140{word-spacing:9.755298pt;}
.ws31{word-spacing:9.802762pt;}
.ws1c8{word-spacing:9.851765pt;}
.ws53{word-spacing:9.861294pt;}
.ws7{word-spacing:9.861828pt;}
.wsf7{word-spacing:9.898225pt;}
.ws2f{word-spacing:9.946222pt;}
.ws1c1{word-spacing:10.011161pt;}
.ws22{word-spacing:10.089683pt;}
.ws37{word-spacing:10.137148pt;}
.ws10{word-spacing:10.158891pt;}
.ws9d{word-spacing:10.302834pt;}
.ws126{word-spacing:10.424601pt;}
.ws9a{word-spacing:10.488973pt;}
.ws122{word-spacing:10.568062pt;}
.ws1f3{word-spacing:10.585041pt;}
.ws18f{word-spacing:10.603931pt;}
.ws18b{word-spacing:10.607520pt;}
.ws18c{word-spacing:10.608341pt;}
.wsc0{word-spacing:10.615526pt;}
.ws150{word-spacing:10.712073pt;}
.ws4e{word-spacing:10.754084pt;}
.ws3c{word-spacing:10.998442pt;}
.ws25{word-spacing:11.189367pt;}
.ws1d4{word-spacing:11.222684pt;}
.ws128{word-spacing:11.237365pt;}
.ws18d{word-spacing:11.270837pt;}
.ws1dd{word-spacing:11.286233pt;}
.ws32{word-spacing:11.380825pt;}
.ws15a{word-spacing:11.567404pt;}
.ws78{word-spacing:11.572283pt;}
.ws175{word-spacing:11.588356pt;}
.ws1a4{word-spacing:11.641844pt;}
.wsbb{word-spacing:11.763208pt;}
.ws10e{word-spacing:11.828211pt;}
.ws24{word-spacing:11.954666pt;}
.ws76{word-spacing:12.002131pt;}
.wsbc{word-spacing:12.002504pt;}
.wsa8{word-spacing:12.013870pt;}
.ws3e{word-spacing:12.098126pt;}
.ws118{word-spacing:12.146124pt;}
.ws1fc{word-spacing:12.147091pt;}
.ws1e0{word-spacing:12.402361pt;}
.ws1e9{word-spacing:12.434257pt;}
.ws1d7{word-spacing:12.530050pt;}
.wsd{word-spacing:12.667128pt;}
.wsd7{word-spacing:12.719752pt;}
.ws26{word-spacing:12.958888pt;}
.ws54{word-spacing:12.964725pt;}
.ws1fd{word-spacing:13.103795pt;}
.ws1bc{word-spacing:13.773333pt;}
.ws57{word-spacing:13.942313pt;}
.ws1bb{word-spacing:13.964812pt;}
.ws1c3{word-spacing:13.985684pt;}
.wsf4{word-spacing:14.154568pt;}
.ws4b{word-spacing:14.197244pt;}
.ws204{word-spacing:14.251552pt;}
.wsb1{word-spacing:14.320016pt;}
.wse2{word-spacing:14.489079pt;}
.ws33{word-spacing:14.967332pt;}
.ws117{word-spacing:15.541173pt;}
.ws30{word-spacing:15.684633pt;}
.ws197{word-spacing:16.305264pt;}
.wsd3{word-spacing:17.406016pt;}
.ws176{word-spacing:17.853222pt;}
.ws20c{word-spacing:17.886195pt;}
.ws20b{word-spacing:17.918037pt;}
.ws125{word-spacing:18.410024pt;}
.ws1ba{word-spacing:18.492049pt;}
.ws194{word-spacing:18.902837pt;}
.ws61{word-spacing:19.591232pt;}
.wsff{word-spacing:19.621419pt;}
.ws1dc{word-spacing:20.117945pt;}
.ws19c{word-spacing:20.437675pt;}
.ws20a{word-spacing:20.819404pt;}
.ws1e3{word-spacing:22.572908pt;}
.ws1e2{word-spacing:23.529399pt;}
.ws1e8{word-spacing:24.135093pt;}
.ws20d{word-spacing:26.653928pt;}
.ws0{word-spacing:30.275913pt;}
.ws2{word-spacing:49.750688pt;}
.ws190{word-spacing:131.359520pt;}
.ws107{word-spacing:164.027588pt;}
.ws108{word-spacing:165.738578pt;}
.ws109{word-spacing:170.122578pt;}
.ws106{word-spacing:175.125529pt;}
.ws105{word-spacing:209.182532pt;}
.ws103{word-spacing:243.288337pt;}
._9{margin-left:-322.265691pt;}
._3{margin-left:-4.675679pt;}
._28{margin-left:-3.703994pt;}
._0{margin-left:-2.789118pt;}
._1{margin-left:-1.078726pt;}
._b{width:1.092197pt;}
._a{width:3.330900pt;}
._2c{width:4.636353pt;}
._26{width:7.237768pt;}
._27{width:9.086505pt;}
._2b{width:10.755548pt;}
._29{width:11.674959pt;}
._4{width:13.273678pt;}
._6{width:14.411032pt;}
._7{width:18.364398pt;}
._2{width:19.256310pt;}
._2a{width:20.181724pt;}
._5{width:21.210935pt;}
._25{width:26.334086pt;}
._d{width:29.221959pt;}
._c{width:37.171885pt;}
._12{width:123.656531pt;}
._1b{width:142.748592pt;}
._15{width:160.239464pt;}
._19{width:164.583251pt;}
._1a{width:167.890877pt;}
._13{width:177.973864pt;}
._17{width:185.664673pt;}
._21{width:190.047997pt;}
._14{width:195.627197pt;}
._16{width:204.473659pt;}
._18{width:207.781209pt;}
._1e{width:214.396649pt;}
._23{width:218.780399pt;}
._1d{width:221.091447pt;}
._22{width:225.474843pt;}
._1c{width:231.274325pt;}
._1f{width:236.553568pt;}
._24{width:240.937141pt;}
._e{width:263.213649pt;}
._10{width:291.945991pt;}
._f{width:298.640902pt;}
._11{width:314.102965pt;}
._20{width:467.966379pt;}
._8{width:1166.326223pt;}
.fs8{font-size:21.253333pt;}
.fsa{font-size:21.333333pt;}
.fs4{font-size:24.816000pt;}
.fs10{font-size:26.458667pt;}
.fs11{font-size:26.565333pt;}
.fsb{font-size:27.428267pt;}
.fsc{font-size:30.171200pt;}
.fse{font-size:30.241067pt;}
.fs3{font-size:31.882667pt;}
.fs0{font-size:34.538667pt;}
.fs9{font-size:34.716398pt;}
.fs5{font-size:37.194667pt;}
.fsd{font-size:37.713600pt;}
.fsf{font-size:39.850667pt;}
.fs6{font-size:42.506667pt;}
.fs2{font-size:47.818667pt;}
.fs1{font-size:116.896000pt;}
.fs7{font-size:130.176000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.449333pt;}
.ye9{bottom:4.325761pt;}
.y6f{bottom:6.666667pt;}
.ye8{bottom:14.205517pt;}
.y76{bottom:14.302667pt;}
.y8b{bottom:15.794667pt;}
.ye7{bottom:23.465332pt;}
.yd4{bottom:32.460000pt;}
.ye6{bottom:32.589061pt;}
.y75{bottom:32.792000pt;}
.y8a{bottom:33.330667pt;}
.ye5{bottom:41.775541pt;}
.y6e{bottom:43.086667pt;}
.y89{bottom:50.860000pt;}
.ye4{bottom:50.972606pt;}
.ye3{bottom:59.427252pt;}
.y7e{bottom:68.396000pt;}
.yd9{bottom:68.611464pt;}
.y6d{bottom:76.296000pt;}
.y3d{bottom:76.322667pt;}
.y230{bottom:76.460000pt;}
.y18e{bottom:76.637333pt;}
.y14f{bottom:76.960000pt;}
.yd3{bottom:77.597333pt;}
.ye2{bottom:77.861450pt;}
.y7f{bottom:79.094667pt;}
.y1b0{bottom:86.922667pt;}
.y22f{bottom:87.086667pt;}
.ye1{bottom:87.802445pt;}
.yd2{bottom:89.552000pt;}
.y11f{bottom:89.578667pt;}
.y3c{bottom:89.606667pt;}
.y80{bottom:89.792000pt;}
.y18d{bottom:89.921333pt;}
.y14e{bottom:90.242667pt;}
.y6c{bottom:90.908000pt;}
.ye0{bottom:96.924663pt;}
.y1af{bottom:97.549333pt;}
.y22e{bottom:97.713333pt;}
.y81{bottom:100.486933pt;}
.yd1{bottom:101.508000pt;}
.y6b{bottom:101.534667pt;}
.y11e{bottom:102.862667pt;}
.y3b{bottom:102.890667pt;}
.y18c{bottom:103.204000pt;}
.y14d{bottom:103.526667pt;}
.yd8{bottom:106.121727pt;}
.y234{bottom:108.340000pt;}
.y22d{bottom:108.341333pt;}
.y1ae{bottom:110.192000pt;}
.y82{bottom:111.185333pt;}
.y8c{bottom:112.764000pt;}
.yd0{bottom:113.462667pt;}
.ydf{bottom:115.348277pt;}
.y11d{bottom:116.146667pt;}
.y3a{bottom:116.173333pt;}
.y18b{bottom:116.488000pt;}
.y14c{bottom:116.809333pt;}
.y233{bottom:118.966667pt;}
.y22c{bottom:118.968000pt;}
.y6a{bottom:119.473333pt;}
.y74{bottom:120.014667pt;}
.y83{bottom:121.882667pt;}
.yde{bottom:124.545341pt;}
.ycf{bottom:125.418667pt;}
.y11c{bottom:129.164000pt;}
.y39{bottom:129.457333pt;}
.y232{bottom:129.593333pt;}
.y22b{bottom:129.594667pt;}
.y18a{bottom:129.772000pt;}
.y14b{bottom:130.093333pt;}
.y69{bottom:130.945333pt;}
.y84{bottom:132.578667pt;}
.ydd{bottom:132.949333pt;}
.y231{bottom:140.220000pt;}
.y22a{bottom:140.221333pt;}
.y8d{bottom:141.381867pt;}
.y68{bottom:141.572000pt;}
.y11b{bottom:142.448000pt;}
.y38{bottom:142.741333pt;}
.ydc{bottom:142.953834pt;}
.y189{bottom:143.054667pt;}
.y85{bottom:143.276400pt;}
.y14a{bottom:143.377333pt;}
.yd7{bottom:151.345730pt;}
.y86{bottom:153.973600pt;}
.y11a{bottom:155.465333pt;}
.y1ad{bottom:155.960000pt;}
.y67{bottom:155.984000pt;}
.y37{bottom:156.024000pt;}
.y188{bottom:156.338667pt;}
.y149{bottom:156.660000pt;}
.ydb{bottom:160.518602pt;}
.y87{bottom:164.670267pt;}
.y8e{bottom:167.344187pt;}
.y119{bottom:168.482667pt;}
.y1ac{bottom:169.242667pt;}
.y36{bottom:169.308000pt;}
.y187{bottom:169.622667pt;}
.yda{bottom:169.767076pt;}
.y148{bottom:169.944000pt;}
.y66{bottom:170.397333pt;}
.y1ee{bottom:171.784000pt;}
.y229{bottom:171.805333pt;}
.y88{bottom:175.367467pt;}
.y8f{bottom:176.627333pt;}
.yd6{bottom:178.952800pt;}
.y118{bottom:181.766667pt;}
.y228{bottom:182.432000pt;}
.y1ab{bottom:182.526667pt;}
.y35{bottom:182.592000pt;}
.y186{bottom:182.905333pt;}
.y147{bottom:183.228000pt;}
.y1ed{bottom:183.740000pt;}
.y65{bottom:184.809333pt;}
.y73{bottom:192.552400pt;}
.y7d{bottom:192.904667pt;}
.yf0{bottom:192.914400pt;}
.y117{bottom:194.784000pt;}
.y64{bottom:195.436000pt;}
.yea{bottom:195.471733pt;}
.y1ec{bottom:195.694667pt;}
.y1aa{bottom:195.810667pt;}
.y34{bottom:195.874667pt;}
.y185{bottom:196.189333pt;}
.y146{bottom:196.510667pt;}
.y227{bottom:205.412000pt;}
.yeb{bottom:207.505410pt;}
.y1eb{bottom:207.650667pt;}
.y116{bottom:208.068000pt;}
.y1a9{bottom:209.093333pt;}
.y33{bottom:209.158667pt;}
.y184{bottom:209.472000pt;}
.y145{bottom:209.794667pt;}
.y79{bottom:210.441733pt;}
.y226{bottom:217.366667pt;}
.yec{bottom:219.526234pt;}
.y1ea{bottom:219.605333pt;}
.y63{bottom:220.606667pt;}
.y7a{bottom:221.138400pt;}
.y115{bottom:221.352000pt;}
.y1a8{bottom:222.377333pt;}
.y32{bottom:222.441333pt;}
.y183{bottom:222.756000pt;}
.y144{bottom:223.078667pt;}
.y72{bottom:224.422267pt;}
.yed{bottom:231.547058pt;}
.y1e9{bottom:231.560000pt;}
.y7b{bottom:231.834933pt;}
.y62{bottom:233.889333pt;}
.y114{bottom:234.369333pt;}
.y1a7{bottom:235.661333pt;}
.y31{bottom:235.725333pt;}
.y182{bottom:236.040000pt;}
.y143{bottom:236.361333pt;}
.y7c{bottom:242.532267pt;}
.y1e8{bottom:243.516000pt;}
.yee{bottom:243.567882pt;}
.y225{bottom:244.864000pt;}
.y61{bottom:247.173333pt;}
.y113{bottom:247.653333pt;}
.y1a6{bottom:248.944000pt;}
.y30{bottom:249.009333pt;}
.y181{bottom:249.322667pt;}
.y142{bottom:249.645333pt;}
.yef{bottom:255.600802pt;}
.y224{bottom:256.820000pt;}
.y71{bottom:258.380533pt;}
.y78{bottom:260.060933pt;}
.y60{bottom:260.456000pt;}
.y112{bottom:260.670667pt;}
.y1a5{bottom:262.228000pt;}
.y2f{bottom:262.292000pt;}
.y180{bottom:262.606667pt;}
.y141{bottom:262.929333pt;}
.y1e7{bottom:267.425333pt;}
.y223{bottom:268.774667pt;}
.y5f{bottom:273.740000pt;}
.y111{bottom:273.954667pt;}
.y1a4{bottom:275.512000pt;}
.y2e{bottom:275.576000pt;}
.y17f{bottom:275.890667pt;}
.y140{bottom:276.212000pt;}
.y1e6{bottom:279.381333pt;}
.y222{bottom:280.729333pt;}
.y110{bottom:286.972000pt;}
.y5e{bottom:287.024000pt;}
.y1a3{bottom:288.794667pt;}
.y2d{bottom:288.860000pt;}
.y17e{bottom:289.173333pt;}
.y13f{bottom:289.496000pt;}
.y1e5{bottom:291.336000pt;}
.y221{bottom:292.685333pt;}
.y10f{bottom:300.256000pt;}
.y5d{bottom:300.306667pt;}
.y1a2{bottom:302.078667pt;}
.y2c{bottom:302.142667pt;}
.y17d{bottom:302.457333pt;}
.y13e{bottom:302.778667pt;}
.y1e4{bottom:303.292000pt;}
.y220{bottom:304.640000pt;}
.y10e{bottom:313.273333pt;}
.y5c{bottom:313.590667pt;}
.y1e3{bottom:315.246667pt;}
.y1a1{bottom:315.361333pt;}
.y2b{bottom:315.426667pt;}
.y17c{bottom:315.741333pt;}
.y13d{bottom:316.062667pt;}
.y21f{bottom:316.594667pt;}
.y10d{bottom:326.557333pt;}
.y5b{bottom:326.874667pt;}
.y1e2{bottom:327.201333pt;}
.y21e{bottom:328.550667pt;}
.y1a0{bottom:328.645333pt;}
.y2a{bottom:328.710667pt;}
.y17b{bottom:329.024000pt;}
.y13c{bottom:329.346667pt;}
.y1e1{bottom:339.157333pt;}
.y10c{bottom:339.574667pt;}
.y5a{bottom:340.157333pt;}
.y21d{bottom:340.505333pt;}
.y19f{bottom:341.929333pt;}
.y29{bottom:341.993333pt;}
.y17a{bottom:342.308000pt;}
.y13b{bottom:342.629333pt;}
.y1e0{bottom:351.112000pt;}
.y21c{bottom:352.460000pt;}
.y10b{bottom:352.593333pt;}
.y59{bottom:353.441333pt;}
.y19e{bottom:355.212000pt;}
.y28{bottom:355.277333pt;}
.y179{bottom:355.592000pt;}
.y13a{bottom:355.913333pt;}
.y21b{bottom:364.416000pt;}
.y10a{bottom:365.876000pt;}
.y58{bottom:366.725333pt;}
.y19d{bottom:368.496000pt;}
.y27{bottom:368.561333pt;}
.y178{bottom:368.874667pt;}
.y139{bottom:369.197333pt;}
.y1df{bottom:375.022667pt;}
.y21a{bottom:376.370667pt;}
.y109{bottom:378.894667pt;}
.y57{bottom:380.008000pt;}
.y19c{bottom:381.780000pt;}
.y26{bottom:381.844000pt;}
.y177{bottom:382.158667pt;}
.y138{bottom:382.480000pt;}
.y1de{bottom:386.977333pt;}
.y219{bottom:388.326667pt;}
.y108{bottom:392.177333pt;}
.y56{bottom:393.292000pt;}
.y19b{bottom:395.062667pt;}
.y25{bottom:395.128000pt;}
.y176{bottom:395.441333pt;}
.y137{bottom:395.764000pt;}
.y1dd{bottom:398.932000pt;}
.y218{bottom:400.281333pt;}
.y107{bottom:405.461333pt;}
.ya4{bottom:407.158667pt;}
.yce{bottom:407.718667pt;}
.y19a{bottom:408.346667pt;}
.y24{bottom:408.412000pt;}
.y175{bottom:408.725333pt;}
.y1dc{bottom:410.888000pt;}
.y217{bottom:412.236000pt;}
.y106{bottom:418.745333pt;}
.y136{bottom:420.338667pt;}
.ya3{bottom:420.441333pt;}
.ycd{bottom:421.002667pt;}
.y199{bottom:421.630667pt;}
.y23{bottom:421.694667pt;}
.y174{bottom:422.009333pt;}
.y55{bottom:422.516000pt;}
.y1db{bottom:422.842667pt;}
.y216{bottom:424.192000pt;}
.y105{bottom:432.028000pt;}
.y135{bottom:433.622667pt;}
.ya2{bottom:433.725333pt;}
.ycc{bottom:434.286667pt;}
.y1da{bottom:434.798667pt;}
.y198{bottom:434.913333pt;}
.y22{bottom:434.978667pt;}
.y173{bottom:435.292000pt;}
.y215{bottom:436.146667pt;}
.y104{bottom:445.312000pt;}
.y1d9{bottom:446.753333pt;}
.y134{bottom:446.905333pt;}
.ya1{bottom:447.008000pt;}
.ycb{bottom:447.569333pt;}
.y197{bottom:448.197333pt;}
.y21{bottom:448.261333pt;}
.y172{bottom:448.576000pt;}
.y54{bottom:449.437333pt;}
.y103{bottom:458.596000pt;}
.y1d8{bottom:458.708000pt;}
.y133{bottom:460.189333pt;}
.ya0{bottom:460.292000pt;}
.yca{bottom:460.853333pt;}
.y196{bottom:461.481333pt;}
.y20{bottom:461.545333pt;}
.y171{bottom:461.860000pt;}
.y53{bottom:462.721333pt;}
.y214{bottom:462.846667pt;}
.y1d7{bottom:470.664000pt;}
.y132{bottom:473.472000pt;}
.y9f{bottom:473.576000pt;}
.yc9{bottom:474.137333pt;}
.y195{bottom:474.764000pt;}
.y213{bottom:474.801333pt;}
.y1f{bottom:474.829333pt;}
.y170{bottom:475.142667pt;}
.y52{bottom:476.004000pt;}
.y1d6{bottom:482.618667pt;}
.y131{bottom:486.756000pt;}
.y212{bottom:486.757333pt;}
.y9e{bottom:486.858667pt;}
.yc8{bottom:487.420000pt;}
.y102{bottom:487.485333pt;}
.y194{bottom:488.048000pt;}
.y1e{bottom:488.112000pt;}
.y16f{bottom:488.426667pt;}
.y51{bottom:489.288000pt;}
.y1d5{bottom:494.573333pt;}
.y211{bottom:498.712000pt;}
.y101{bottom:499.440000pt;}
.y130{bottom:500.040000pt;}
.y9d{bottom:500.142667pt;}
.yc7{bottom:500.704000pt;}
.y193{bottom:501.332000pt;}
.y1d{bottom:501.396000pt;}
.y16e{bottom:501.710667pt;}
.y50{bottom:502.572000pt;}
.y1d4{bottom:506.529333pt;}
.y210{bottom:510.666667pt;}
.y100{bottom:511.394667pt;}
.y12f{bottom:513.322667pt;}
.y9c{bottom:513.426667pt;}
.yc6{bottom:513.988000pt;}
.y192{bottom:514.614667pt;}
.y1c{bottom:514.680000pt;}
.y16d{bottom:514.993333pt;}
.y1d3{bottom:518.484000pt;}
.y20f{bottom:522.622667pt;}
.yff{bottom:523.350667pt;}
.y4f{bottom:526.481333pt;}
.y12e{bottom:526.606667pt;}
.y9b{bottom:526.709333pt;}
.yc5{bottom:527.270667pt;}
.y191{bottom:527.898667pt;}
.y1b{bottom:527.962667pt;}
.y1d2{bottom:530.440000pt;}
.y16c{bottom:531.086667pt;}
.y20e{bottom:534.577333pt;}
.yfe{bottom:535.305333pt;}
.y4e{bottom:539.765333pt;}
.y12d{bottom:539.890667pt;}
.y9a{bottom:539.993333pt;}
.yc4{bottom:540.554667pt;}
.y190{bottom:541.181333pt;}
.y1a{bottom:541.246667pt;}
.y1d1{bottom:542.394667pt;}
.y20d{bottom:546.533333pt;}
.yfd{bottom:547.261333pt;}
.y254{bottom:550.517333pt;}
.y4d{bottom:553.049333pt;}
.y12c{bottom:553.173333pt;}
.y99{bottom:553.277333pt;}
.yc3{bottom:553.837333pt;}
.y1d0{bottom:554.349333pt;}
.y16b{bottom:554.465333pt;}
.y19{bottom:554.530667pt;}
.y20c{bottom:558.488000pt;}
.yfc{bottom:559.216000pt;}
.y253{bottom:561.144000pt;}
.y1cf{bottom:566.305333pt;}
.y4c{bottom:566.332000pt;}
.y12b{bottom:566.457333pt;}
.y98{bottom:566.560000pt;}
.yc2{bottom:567.121333pt;}
.y17{bottom:567.581333pt;}
.y16a{bottom:567.749333pt;}
.y18{bottom:567.813333pt;}
.y20b{bottom:570.442667pt;}
.yfb{bottom:571.170667pt;}
.y252{bottom:571.770667pt;}
.y1ce{bottom:578.260000pt;}
.y4b{bottom:579.616000pt;}
.y12a{bottom:579.741333pt;}
.y97{bottom:579.844000pt;}
.yc1{bottom:580.405333pt;}
.y18f{bottom:581.032000pt;}
.y169{bottom:581.033333pt;}
.y251{bottom:582.397333pt;}
.y20a{bottom:582.398667pt;}
.yfa{bottom:583.126667pt;}
.y1cd{bottom:590.214667pt;}
.y4a{bottom:592.898667pt;}
.y129{bottom:593.024000pt;}
.yc0{bottom:593.688000pt;}
.y168{bottom:594.316000pt;}
.y209{bottom:594.353333pt;}
.yf9{bottom:595.081333pt;}
.y1{bottom:597.673333pt;}
.y1cc{bottom:602.170667pt;}
.y250{bottom:603.652000pt;}
.y49{bottom:606.182667pt;}
.y128{bottom:606.308000pt;}
.ybf{bottom:606.972000pt;}
.yf8{bottom:607.036000pt;}
.y167{bottom:607.600000pt;}
.y1cb{bottom:614.125333pt;}
.y24f{bottom:614.278667pt;}
.y96{bottom:614.354667pt;}
.y16{bottom:615.634667pt;}
.y208{bottom:618.264000pt;}
.yf7{bottom:618.992000pt;}
.y48{bottom:619.466667pt;}
.y127{bottom:619.592000pt;}
.ybe{bottom:620.256000pt;}
.y166{bottom:620.882667pt;}
.y24e{bottom:624.905333pt;}
.y1ca{bottom:626.081333pt;}
.y95{bottom:626.309333pt;}
.y207{bottom:630.218667pt;}
.yf6{bottom:630.946667pt;}
.y47{bottom:632.749333pt;}
.y126{bottom:632.874667pt;}
.ybd{bottom:633.538667pt;}
.y165{bottom:634.166667pt;}
.y24d{bottom:635.532000pt;}
.y1c9{bottom:638.036000pt;}
.y94{bottom:638.265333pt;}
.y206{bottom:642.174667pt;}
.yf5{bottom:642.902667pt;}
.y46{bottom:646.033333pt;}
.y125{bottom:646.158667pt;}
.y15{bottom:646.186667pt;}
.ybc{bottom:646.822667pt;}
.y164{bottom:647.450667pt;}
.y1c8{bottom:649.990667pt;}
.y93{bottom:650.220000pt;}
.y205{bottom:654.129333pt;}
.yf4{bottom:654.857333pt;}
.y24c{bottom:656.785333pt;}
.y45{bottom:659.317333pt;}
.y124{bottom:659.441333pt;}
.y14{bottom:659.469333pt;}
.ybb{bottom:660.106667pt;}
.y163{bottom:660.733333pt;}
.y1c7{bottom:661.946667pt;}
.y92{bottom:662.174667pt;}
.y204{bottom:666.084000pt;}
.yf3{bottom:666.812000pt;}
.y24b{bottom:667.412000pt;}
.y44{bottom:672.600000pt;}
.y123{bottom:672.725333pt;}
.y13{bottom:672.753333pt;}
.yba{bottom:673.389333pt;}
.y1c6{bottom:673.901333pt;}
.y162{bottom:674.017333pt;}
.y91{bottom:674.130667pt;}
.y24a{bottom:678.038667pt;}
.y203{bottom:678.040000pt;}
.yf2{bottom:678.768000pt;}
.y1c5{bottom:685.856000pt;}
.y43{bottom:685.884000pt;}
.y122{bottom:686.009333pt;}
.y12{bottom:686.037333pt;}
.y90{bottom:686.085333pt;}
.yb9{bottom:686.673333pt;}
.y161{bottom:687.301333pt;}
.y249{bottom:688.665333pt;}
.y202{bottom:689.994667pt;}
.yf1{bottom:690.722667pt;}
.y1c4{bottom:697.812000pt;}
.y42{bottom:699.168000pt;}
.y121{bottom:699.292000pt;}
.y11{bottom:699.320000pt;}
.y160{bottom:700.584000pt;}
.y201{bottom:701.949333pt;}
.y70{bottom:704.682667pt;}
.yd5{bottom:709.320000pt;}
.y1c3{bottom:709.766667pt;}
.y248{bottom:709.920000pt;}
.y41{bottom:712.450667pt;}
.yb8{bottom:712.576000pt;}
.y10{bottom:712.604000pt;}
.y15f{bottom:713.868000pt;}
.y200{bottom:713.905333pt;}
.y247{bottom:720.546667pt;}
.yb7{bottom:725.860000pt;}
.yf{bottom:725.888000pt;}
.y40{bottom:728.544000pt;}
.y246{bottom:731.173333pt;}
.y1c2{bottom:734.341333pt;}
.y1ff{bottom:737.816000pt;}
.yb6{bottom:739.142667pt;}
.ye{bottom:739.170667pt;}
.y245{bottom:741.800000pt;}
.y1c1{bottom:746.296000pt;}
.y1fe{bottom:749.770667pt;}
.yb5{bottom:752.426667pt;}
.yd{bottom:752.454667pt;}
.y15e{bottom:754.454667pt;}
.y1c0{bottom:758.252000pt;}
.y1fd{bottom:761.725333pt;}
.y244{bottom:763.053333pt;}
.yb4{bottom:765.710667pt;}
.y3f{bottom:765.737333pt;}
.yc{bottom:765.738667pt;}
.y15d{bottom:766.409333pt;}
.y1bf{bottom:770.206667pt;}
.y243{bottom:773.680000pt;}
.y15c{bottom:778.365333pt;}
.yb3{bottom:778.993333pt;}
.yb{bottom:779.021333pt;}
.y1be{bottom:782.161333pt;}
.y242{bottom:784.306667pt;}
.y1fc{bottom:785.636000pt;}
.y15b{bottom:790.320000pt;}
.yb2{bottom:792.277333pt;}
.ya{bottom:792.305333pt;}
.y1bd{bottom:794.117333pt;}
.y255{bottom:794.933333pt;}
.y241{bottom:794.934667pt;}
.y15a{bottom:802.274667pt;}
.yb1{bottom:805.561333pt;}
.y3e{bottom:805.588000pt;}
.y9{bottom:805.589333pt;}
.y1bc{bottom:806.072000pt;}
.y1fb{bottom:809.546667pt;}
.y159{bottom:814.230667pt;}
.y240{bottom:816.188000pt;}
.y1bb{bottom:818.028000pt;}
.yb0{bottom:818.844000pt;}
.y8{bottom:818.872000pt;}
.y1fa{bottom:821.501333pt;}
.y158{bottom:826.185333pt;}
.y23f{bottom:826.814667pt;}
.y1ba{bottom:829.982667pt;}
.yaf{bottom:832.128000pt;}
.y1f9{bottom:833.457333pt;}
.y23e{bottom:837.441333pt;}
.y7{bottom:840.065333pt;}
.y1b9{bottom:841.937333pt;}
.yae{bottom:845.410667pt;}
.y120{bottom:845.412000pt;}
.y157{bottom:846.445333pt;}
.y23d{bottom:848.068000pt;}
.y1f8{bottom:857.366667pt;}
.yad{bottom:858.694667pt;}
.y6{bottom:861.318667pt;}
.y156{bottom:866.370667pt;}
.y1b8{bottom:866.512000pt;}
.y23c{bottom:869.321333pt;}
.y1f7{bottom:869.322667pt;}
.yac{bottom:871.978667pt;}
.y5{bottom:875.289333pt;}
.y1b7{bottom:878.468000pt;}
.y155{bottom:879.653333pt;}
.y23b{bottom:879.948000pt;}
.y1f6{bottom:881.277333pt;}
.yab{bottom:885.261333pt;}
.y1b6{bottom:890.422667pt;}
.y23a{bottom:890.576000pt;}
.y1f5{bottom:893.232000pt;}
.y4{bottom:893.862667pt;}
.yaa{bottom:898.545333pt;}
.y154{bottom:899.446667pt;}
.y239{bottom:901.202667pt;}
.y1b5{bottom:902.377333pt;}
.y1f4{bottom:905.188000pt;}
.ya9{bottom:911.829333pt;}
.y153{bottom:912.729333pt;}
.y1b4{bottom:914.333333pt;}
.y1f3{bottom:917.142667pt;}
.y3{bottom:921.972000pt;}
.y238{bottom:922.456000pt;}
.ya8{bottom:925.112000pt;}
.y152{bottom:926.013333pt;}
.y1b3{bottom:926.288000pt;}
.y1f2{bottom:929.097333pt;}
.y237{bottom:933.082667pt;}
.y1b2{bottom:938.242667pt;}
.ya7{bottom:938.396000pt;}
.y1f1{bottom:941.053333pt;}
.y236{bottom:943.709333pt;}
.y151{bottom:946.137333pt;}
.y1b1{bottom:950.198667pt;}
.ya6{bottom:951.680000pt;}
.y1f0{bottom:953.008000pt;}
.y2{bottom:953.853333pt;}
.y235{bottom:954.336000pt;}
.y150{bottom:964.836000pt;}
.ya5{bottom:964.962667pt;}
.y1ef{bottom:964.964000pt;}
.hd{height:17.130187pt;}
.h11{height:19.967778pt;}
.h4{height:20.001696pt;}
.h1a{height:21.325685pt;}
.h12{height:21.964634pt;}
.h13{height:21.994805pt;}
.hf{height:22.250000pt;}
.h17{height:22.287666pt;}
.hc{height:25.697429pt;}
.h1c{height:26.076096pt;}
.h1b{height:26.081429pt;}
.h1{height:26.318464pt;}
.h15{height:27.009237pt;}
.h14{height:27.455501pt;}
.he{height:27.838165pt;}
.h6{height:29.978901pt;}
.h18{height:32.119637pt;}
.h7{height:33.240213pt;}
.h5{height:33.377696pt;}
.ha{height:36.437824pt;}
.h9{height:36.629099pt;}
.hb{height:37.394197pt;}
.h19{height:44.226667pt;}
.h3{height:45.246912pt;}
.h2{height:89.074752pt;}
.h8{height:101.797632pt;}
.h16{height:264.544000pt;}
.h10{height:269.181333pt;}
.h0{height:1044.000000pt;}
.w1{width:325.334667pt;}
.w2{width:325.834667pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x17{left:2.100267pt;}
.x16{left:5.863333pt;}
.x10{left:8.382800pt;}
.x18{left:9.634800pt;}
.x14{left:10.894867pt;}
.x15{left:12.994800pt;}
.x13{left:14.666000pt;}
.x12{left:17.614533pt;}
.x9{left:18.666667pt;}
.xf{left:19.714133pt;}
.x11{left:21.797467pt;}
.x22{left:23.676400pt;}
.x3{left:50.570667pt;}
.x2b{left:51.973333pt;}
.x2d{left:53.785333pt;}
.xa{left:57.533333pt;}
.x5{left:62.525333pt;}
.x21{left:64.263208pt;}
.x1b{left:68.769333pt;}
.x4{left:69.993333pt;}
.xb{left:91.653600pt;}
.x1e{left:97.756000pt;}
.x2e{left:105.757333pt;}
.xc{left:145.506667pt;}
.x2f{left:149.189333pt;}
.x32{left:169.189333pt;}
.x27{left:170.769333pt;}
.x28{left:179.625333pt;}
.x26{left:190.146667pt;}
.xd{left:203.500000pt;}
.xe{left:259.884000pt;}
.x1a{left:297.433333pt;}
.x19{left:316.942667pt;}
.x30{left:321.653333pt;}
.x31{left:350.441333pt;}
.x25{left:385.009333pt;}
.x6{left:395.277333pt;}
.x2c{left:396.680000pt;}
.x33{left:398.492000pt;}
.x1c{left:401.521333pt;}
.x8{left:403.912000pt;}
.x29{left:405.862667pt;}
.x7{left:407.233333pt;}
.x1d{left:413.476000pt;}
.x38{left:422.636000pt;}
.x20{left:426.026667pt;}
.x2a{left:438.644000pt;}
.x35{left:488.058667pt;}
.x34{left:519.818667pt;}
.x36{left:548.093333pt;}
.x24{left:559.840000pt;}
.x37{left:583.180000pt;}
.x23{left:659.040000pt;}
.x1f{left:664.972000pt;}
.x1{left:754.732000pt;}
.x2{left:765.358667pt;}
}


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