
/* 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_bced64a5bbf4.woff")format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_80386066e98d.woff")format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_91b8156ade46.woff")format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_f1fe5ba30aca.woff")format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_bb55fa607601.woff")format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_c99664ffc1cd.woff")format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_49b43f8e9eca.woff")format("woff");}.ff7{font-family:ff7;line-height:1.402354;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;}
.m19{transform:matrix(0.191982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191982,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231421,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.242966,0.000000,-0.080981,0.236521,0,0);-ms-transform:matrix(0.242966,0.000000,-0.080981,0.236521,0,0);-webkit-transform:matrix(0.242966,0.000000,-0.080981,0.236521,0,0);}
.m17{transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244780,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245637,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248449,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253903,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253941,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254730,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255312,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.256309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256309,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256813,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.257171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257171,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257751,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258012,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259223,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.261423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261423,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262319,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.262633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262633,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262888,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263139,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.263534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263534,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.264082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264082,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.264516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264516,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265113,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.265508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265508,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.265536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265536,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265551,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266916,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.271193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271193,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1a{vertical-align:-60.463738px;}
.v18{vertical-align:-59.186579px;}
.v13{vertical-align:-46.985596px;}
.vc{vertical-align:-45.104880px;}
.ve{vertical-align:-43.941204px;}
.vd{vertical-align:-42.567687px;}
.v14{vertical-align:-39.273152px;}
.vb{vertical-align:-36.224857px;}
.v1d{vertical-align:-31.350763px;}
.v1c{vertical-align:-30.116306px;}
.va{vertical-align:-29.036267px;}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v1b{vertical-align:-17.979625px;}
.v1e{vertical-align:-16.234000px;}
.v11{vertical-align:-14.361328px;}
.v15{vertical-align:-12.945595px;}
.v6{vertical-align:-9.360000px;}
.vf{vertical-align:-5.367365px;}
.v3{vertical-align:-2.880000px;}
.v10{vertical-align:-1.015447px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.360000px;}
.v7{vertical-align:16.234000px;}
.v16{vertical-align:18.259791px;}
.v1{vertical-align:20.880000px;}
.v17{vertical-align:23.033201px;}
.v1f{vertical-align:25.331396px;}
.v9{vertical-align:27.360000px;}
.v19{vertical-align:31.464343px;}
.v4{vertical-align:33.120000px;}
.v12{vertical-align:37.764124px;}
.v20{vertical-align:39.653032px;}
.lsae{letter-spacing:-1.915238px;}
.ls3e{letter-spacing:-1.855513px;}
.lsa8{letter-spacing:-1.667461px;}
.ls95{letter-spacing:-1.494000px;}
.ls7f{letter-spacing:-1.446000px;}
.lsa7{letter-spacing:-1.440000px;}
.ls96{letter-spacing:-1.428000px;}
.lsa6{letter-spacing:-1.332000px;}
.ls97{letter-spacing:-1.302000px;}
.ls62{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.152000px;}
.ls8b{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-1.080000px;}
.ls7a{letter-spacing:-0.774000px;}
.lsaa{letter-spacing:-0.726246px;}
.ls9e{letter-spacing:-0.708000px;}
.ls9f{letter-spacing:-0.666000px;}
.ls1f{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.371400px;}
.ls7{letter-spacing:-0.360000px;}
.lsa0{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.053280px;}
.ls98{letter-spacing:-0.012960px;}
.ls7e{letter-spacing:-0.008640px;}
.lsb1{letter-spacing:-0.004320px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.008640px;}
.ls94{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.017280px;}
.ls2b{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.106560px;}
.ls1b{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.135360px;}
.ls8a{letter-spacing:0.135600px;}
.ls13{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls89{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.206640px;}
.ls93{letter-spacing:0.233280px;}
.lsd{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls67{letter-spacing:0.286560px;}
.ls1a{letter-spacing:0.311760px;}
.ls16{letter-spacing:0.315360px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.368640px;}
.ls6f{letter-spacing:0.386640px;}
.ls6b{letter-spacing:0.439920px;}
.ls12{letter-spacing:0.460080px;}
.ls2c{letter-spacing:0.466800px;}
.ls11{letter-spacing:0.613440px;}
.ls23{letter-spacing:0.666000px;}
.ls26{letter-spacing:0.715680px;}
.ls2{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.773280px;}
.ls42{letter-spacing:0.826560px;}
.ls1c{letter-spacing:0.828000px;}
.lsa9{letter-spacing:0.941215px;}
.ls1{letter-spacing:1.080000px;}
.ls83{letter-spacing:1.083749px;}
.ls84{letter-spacing:2.340000px;}
.ls27{letter-spacing:3.780000px;}
.ls28{letter-spacing:4.680000px;}
.ls71{letter-spacing:6.650967px;}
.ls21{letter-spacing:11.524677px;}
.ls76{letter-spacing:14.229337px;}
.ls3f{letter-spacing:25.657842px;}
.ls7c{letter-spacing:27.723421px;}
.ls78{letter-spacing:27.873088px;}
.ls52{letter-spacing:27.986436px;}
.lsb2{letter-spacing:29.069280px;}
.ls64{letter-spacing:29.102427px;}
.ls5f{letter-spacing:29.689126px;}
.lsb3{letter-spacing:29.789280px;}
.ls63{letter-spacing:30.303466px;}
.ls2e{letter-spacing:30.389413px;}
.ls73{letter-spacing:31.692614px;}
.ls25{letter-spacing:36.255796px;}
.ls88{letter-spacing:43.410632px;}
.ls6d{letter-spacing:55.446220px;}
.ls40{letter-spacing:55.555285px;}
.ls69{letter-spacing:57.786467px;}
.ls4f{letter-spacing:58.218442px;}
.ls87{letter-spacing:59.521795px;}
.ls74{letter-spacing:59.680896px;}
.ls58{letter-spacing:61.304344px;}
.ls70{letter-spacing:68.711168px;}
.ls90{letter-spacing:72.482615px;}
.ls86{letter-spacing:77.764018px;}
.ls20{letter-spacing:78.040201px;}
.ls5d{letter-spacing:78.139027px;}
.ls2f{letter-spacing:78.764397px;}
.ls7d{letter-spacing:78.936352px;}
.ls75{letter-spacing:79.966521px;}
.ls79{letter-spacing:81.520036px;}
.ls5c{letter-spacing:81.804521px;}
.lsa3{letter-spacing:84.047522px;}
.ls2d{letter-spacing:86.770513px;}
.ls5a{letter-spacing:86.924577px;}
.ls7b{letter-spacing:87.346177px;}
.ls72{letter-spacing:88.433564px;}
.ls81{letter-spacing:89.114868px;}
.ls77{letter-spacing:89.975262px;}
.ls59{letter-spacing:90.706436px;}
.ls65{letter-spacing:94.076600px;}
.ls91{letter-spacing:100.646639px;}
.lsac{letter-spacing:106.264315px;}
.ls56{letter-spacing:113.701219px;}
.ls5b{letter-spacing:117.412179px;}
.ls53{letter-spacing:130.974180px;}
.ls85{letter-spacing:141.793787px;}
.lsab{letter-spacing:145.713997px;}
.ls29{letter-spacing:146.506608px;}
.ls36{letter-spacing:150.736262px;}
.ls61{letter-spacing:151.798006px;}
.ls92{letter-spacing:152.303897px;}
.ls6e{letter-spacing:155.398012px;}
.ls66{letter-spacing:157.328514px;}
.ls6a{letter-spacing:158.423636px;}
.ls35{letter-spacing:160.765908px;}
.ls37{letter-spacing:161.349027px;}
.ls8c{letter-spacing:166.549769px;}
.ls9b{letter-spacing:166.838723px;}
.ls18{letter-spacing:167.301459px;}
.ls8d{letter-spacing:168.523108px;}
.lsaf{letter-spacing:170.325504px;}
.ls32{letter-spacing:173.477903px;}
.ls34{letter-spacing:174.061022px;}
.ls33{letter-spacing:177.268176px;}
.ls80{letter-spacing:185.330851px;}
.ls3d{letter-spacing:185.455960px;}
.ls5e{letter-spacing:187.405664px;}
.ls50{letter-spacing:188.525065px;}
.ls8f{letter-spacing:190.173450px;}
.ls2a{letter-spacing:190.342763px;}
.ls4c{letter-spacing:191.009902px;}
.ls9d{letter-spacing:193.138745px;}
.ls8e{letter-spacing:198.066804px;}
.ls3a{letter-spacing:198.216967px;}
.ls41{letter-spacing:201.375809px;}
.ls39{letter-spacing:212.001263px;}
.ls3b{letter-spacing:212.543004px;}
.ls3c{letter-spacing:216.335190px;}
.ls38{letter-spacing:228.975810px;}
.ls48{letter-spacing:249.847066px;}
.ls6c{letter-spacing:254.246509px;}
.ls4b{letter-spacing:256.917397px;}
.ls68{letter-spacing:257.805773px;}
.lsad{letter-spacing:279.575660px;}
.ls55{letter-spacing:284.806125px;}
.ls57{letter-spacing:286.203375px;}
.lsb0{letter-spacing:302.516736px;}
.ls54{letter-spacing:309.374438px;}
.ls82{letter-spacing:314.521663px;}
.ls30{letter-spacing:328.814575px;}
.lsa5{letter-spacing:349.133991px;}
.ls9c{letter-spacing:357.171540px;}
.ls24{letter-spacing:374.480552px;}
.ls51{letter-spacing:376.992105px;}
.ls4d{letter-spacing:431.204374px;}
.ls47{letter-spacing:433.229123px;}
.ls60{letter-spacing:438.789724px;}
.lsa2{letter-spacing:482.204353px;}
.ls31{letter-spacing:491.452663px;}
.ls99{letter-spacing:502.229041px;}
.ls4e{letter-spacing:503.110141px;}
.ls49{letter-spacing:511.766816px;}
.ls4a{letter-spacing:521.532798px;}
.ls9a{letter-spacing:537.897989px;}
.lsa1{letter-spacing:538.196987px;}
.lse{letter-spacing:575.640000px;}
.ls46{letter-spacing:779.821602px;}
.ls44{letter-spacing:842.989801px;}
.lsa4{letter-spacing:929.852581px;}
.ls45{letter-spacing:1021.689571px;}
.ls43{letter-spacing:1101.188601px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-227.531168px;}
.ws7d{word-spacing:-88.124293px;}
.ws21{word-spacing:-79.767276px;}
.ws52{word-spacing:-47.462217px;}
.ws4a{word-spacing:-45.945144px;}
.ws4c{word-spacing:-44.099518px;}
.ws88{word-spacing:-32.808240px;}
.ws66{word-spacing:-23.157991px;}
.ws33{word-spacing:-20.706030px;}
.ws5b{word-spacing:-20.648613px;}
.ws18{word-spacing:-20.623099px;}
.ws27{word-spacing:-20.592764px;}
.ws56{word-spacing:-20.032820px;}
.ws76{word-spacing:-18.827440px;}
.ws12{word-spacing:-16.020000px;}
.ws4b{word-spacing:-15.641678px;}
.ws14{word-spacing:-15.606000px;}
.ws1f{word-spacing:-15.406800px;}
.wsa{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.199800px;}
.ws70{word-spacing:-15.146400px;}
.ws77{word-spacing:-15.075600px;}
.ws11{word-spacing:-15.046800px;}
.ws3d{word-spacing:-15.020438px;}
.ws4d{word-spacing:-14.997092px;}
.ws7c{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.568600px;}
.ws10{word-spacing:-14.479800px;}
.ws57{word-spacing:-14.166000px;}
.ws1e{word-spacing:-13.860000px;}
.ws78{word-spacing:-13.806000px;}
.ws9{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws89{word-spacing:-13.446000px;}
.ws7{word-spacing:-13.140000px;}
.ws4f{word-spacing:-13.098330px;}
.ws8{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws91{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.700000px;}
.wsa3{word-spacing:-10.980000px;}
.ws3{word-spacing:-10.529400px;}
.ws4{word-spacing:-10.440000px;}
.ws19{word-spacing:-9.728640px;}
.ws5{word-spacing:-9.720000px;}
.ws5c{word-spacing:-9.711360px;}
.ws90{word-spacing:-9.707040px;}
.ws44{word-spacing:-8.866817px;}
.wsa0{word-spacing:-8.698138px;}
.ws3e{word-spacing:-8.650421px;}
.ws9b{word-spacing:-8.280000px;}
.ws63{word-spacing:-8.274000px;}
.ws1{word-spacing:-7.560000px;}
.ws43{word-spacing:-1.558451px;}
.ws49{word-spacing:-0.665114px;}
.ws1d{word-spacing:-0.649793px;}
.wsc{word-spacing:0.000000px;}
.ws80{word-spacing:0.119354px;}
.ws8e{word-spacing:1.043150px;}
.ws67{word-spacing:1.513040px;}
.ws3c{word-spacing:1.584922px;}
.ws6c{word-spacing:2.492250px;}
.ws69{word-spacing:2.510270px;}
.ws72{word-spacing:3.141962px;}
.ws4e{word-spacing:3.272338px;}
.ws3a{word-spacing:3.396759px;}
.ws73{word-spacing:3.418179px;}
.ws79{word-spacing:4.411370px;}
.ws2d{word-spacing:6.289281px;}
.ws37{word-spacing:6.733925px;}
.ws51{word-spacing:7.445618px;}
.ws32{word-spacing:10.990591px;}
.ws30{word-spacing:10.993009px;}
.ws84{word-spacing:11.784828px;}
.ws8c{word-spacing:11.996225px;}
.ws22{word-spacing:12.305401px;}
.ws24{word-spacing:12.363445px;}
.ws36{word-spacing:12.514374px;}
.ws50{word-spacing:12.833098px;}
.ws47{word-spacing:14.101796px;}
.ws2f{word-spacing:14.676836px;}
.ws31{word-spacing:14.816045px;}
.ws1c{word-spacing:15.063388px;}
.ws64{word-spacing:15.293013px;}
.ws6b{word-spacing:15.630683px;}
.ws35{word-spacing:16.089909px;}
.ws46{word-spacing:16.191101px;}
.ws71{word-spacing:16.317114px;}
.ws58{word-spacing:16.340347px;}
.ws53{word-spacing:16.428561px;}
.ws87{word-spacing:19.262510px;}
.ws3f{word-spacing:19.360093px;}
.ws38{word-spacing:20.976474px;}
.ws65{word-spacing:25.842071px;}
.ws2e{word-spacing:26.477131px;}
.ws74{word-spacing:28.390583px;}
.ws16{word-spacing:28.695569px;}
.ws1b{word-spacing:28.886262px;}
.ws75{word-spacing:30.422751px;}
.ws23{word-spacing:31.866344px;}
.ws7a{word-spacing:31.982433px;}
.ws6d{word-spacing:32.184438px;}
.ws55{word-spacing:32.496056px;}
.ws2c{word-spacing:33.127695px;}
.ws99{word-spacing:33.302586px;}
.ws9d{word-spacing:33.448592px;}
.ws7b{word-spacing:33.955940px;}
.ws5a{word-spacing:35.074884px;}
.wsa1{word-spacing:36.971091px;}
.ws6f{word-spacing:37.547064px;}
.ws26{word-spacing:37.793779px;}
.ws9f{word-spacing:38.514458px;}
.ws7f{word-spacing:41.223783px;}
.ws13{word-spacing:42.107398px;}
.ws17{word-spacing:43.072815px;}
.ws61{word-spacing:43.348679px;}
.wsa2{word-spacing:44.377352px;}
.ws62{word-spacing:45.319074px;}
.ws29{word-spacing:47.956347px;}
.ws48{word-spacing:51.208641px;}
.ws92{word-spacing:54.184207px;}
.ws8d{word-spacing:55.634668px;}
.ws6e{word-spacing:61.599660px;}
.ws41{word-spacing:66.804272px;}
.ws45{word-spacing:66.972281px;}
.ws5f{word-spacing:67.746799px;}
.ws96{word-spacing:68.432956px;}
.ws60{word-spacing:69.717194px;}
.ws7e{word-spacing:76.084069px;}
.ws68{word-spacing:83.292696px;}
.ws28{word-spacing:84.489745px;}
.ws5d{word-spacing:88.012376px;}
.ws82{word-spacing:89.754512px;}
.ws5e{word-spacing:89.954072px;}
.ws3b{word-spacing:92.290133px;}
.ws83{word-spacing:94.409334px;}
.ws81{word-spacing:95.501446px;}
.ws9e{word-spacing:102.333465px;}
.ws42{word-spacing:121.179842px;}
.ws25{word-spacing:122.803702px;}
.ws86{word-spacing:133.222390px;}
.ws2b{word-spacing:133.370825px;}
.ws98{word-spacing:146.651387px;}
.ws85{word-spacing:147.163321px;}
.ws59{word-spacing:160.835747px;}
.ws6a{word-spacing:163.420390px;}
.ws54{word-spacing:164.328066px;}
.ws40{word-spacing:170.361988px;}
.ws9a{word-spacing:188.414630px;}
.ws95{word-spacing:196.695273px;}
.ws97{word-spacing:204.255860px;}
.ws15{word-spacing:217.805120px;}
.ws94{word-spacing:233.780694px;}
.ws39{word-spacing:285.905950px;}
.ws8f{word-spacing:299.026660px;}
.ws8a{word-spacing:308.830039px;}
.ws8b{word-spacing:345.487913px;}
.ws1a{word-spacing:376.116033px;}
.ws9c{word-spacing:537.061822px;}
.ws93{word-spacing:579.104966px;}
.ws34{word-spacing:605.996572px;}
._aa{margin-left:-1335.955395px;}
._9f{margin-left:-1099.870167px;}
._4a{margin-left:-908.218646px;}
._1c{margin-left:-889.771405px;}
._35{margin-left:-773.026885px;}
._26{margin-left:-692.815343px;}
._86{margin-left:-679.593038px;}
._a3{margin-left:-538.003902px;}
._3b{margin-left:-456.645423px;}
._b9{margin-left:-403.677387px;}
._62{margin-left:-386.836314px;}
._7b{margin-left:-345.903621px;}
._58{margin-left:-245.928808px;}
._43{margin-left:-211.529748px;}
._11{margin-left:-203.204309px;}
._94{margin-left:-182.302187px;}
._60{margin-left:-152.032290px;}
._93{margin-left:-144.606239px;}
._6d{margin-left:-97.506258px;}
._6f{margin-left:-93.411315px;}
._70{margin-left:-87.803277px;}
._6c{margin-left:-81.227739px;}
._6e{margin-left:-78.068505px;}
._65{margin-left:-4.760169px;}
._5{margin-left:-2.631600px;}
._0{margin-left:-1.061280px;}
._1{width:1.330560px;}
._2{width:3.059040px;}
._6{width:4.129440px;}
._b{width:5.151360px;}
._7{width:6.203520px;}
._4{width:7.523280px;}
._3{width:8.568000px;}
._8{width:9.811440px;}
._9{width:11.177040px;}
._a{width:12.430080px;}
._c{width:13.861920px;}
._d{width:16.209120px;}
._96{width:17.670967px;}
._6b{width:18.765695px;}
._a7{width:19.819725px;}
._49{width:21.208675px;}
._af{width:22.914720px;}
._e{width:25.132320px;}
._f{width:26.269200px;}
._53{width:28.296509px;}
._bb{width:30.078931px;}
._50{width:33.312072px;}
._66{width:34.668594px;}
._9c{width:36.940188px;}
._9e{width:38.909536px;}
._24{width:40.582539px;}
._29{width:42.059342px;}
._47{width:43.962363px;}
._8d{width:45.081551px;}
._16{width:46.350382px;}
._79{width:47.501970px;}
._74{width:50.609598px;}
._32{width:54.207423px;}
._42{width:56.836195px;}
._1e{width:58.211241px;}
._23{width:59.899119px;}
._36{width:61.172623px;}
._27{width:62.852725px;}
._17{width:64.049452px;}
._2b{width:67.679703px;}
._37{width:70.802768px;}
._38{width:72.471911px;}
._7f{width:75.239330px;}
._41{width:77.184956px;}
._2c{width:79.230527px;}
._34{width:83.085538px;}
._31{width:84.188065px;}
._1f{width:87.736554px;}
._8c{width:89.125214px;}
._2d{width:90.549174px;}
._84{width:92.284456px;}
._40{width:93.732943px;}
._68{width:96.083425px;}
._48{width:100.089699px;}
._28{width:102.490110px;}
._7d{width:103.860000px;}
._3a{width:105.453068px;}
._75{width:107.116628px;}
._80{width:108.244859px;}
._77{width:109.294775px;}
._1a{width:112.661042px;}
._46{width:113.953668px;}
._61{width:115.545585px;}
._10{width:117.312586px;}
._20{width:118.965818px;}
._3d{width:123.170266px;}
._4e{width:124.369040px;}
._33{width:129.310445px;}
._1d{width:130.750446px;}
._51{width:134.320947px;}
._4b{width:135.530379px;}
._8f{width:139.203513px;}
._1b{width:141.415534px;}
._8e{width:142.550613px;}
._18{width:144.243845px;}
._4c{width:147.166240px;}
._7a{width:149.122480px;}
._8a{width:150.918364px;}
._69{width:157.031866px;}
._83{width:159.559084px;}
._a4{width:160.859904px;}
._7c{width:164.924797px;}
._5a{width:165.994872px;}
._87{width:167.199077px;}
._63{width:173.441037px;}
._3f{width:175.712721px;}
._88{width:178.337477px;}
._45{width:180.366777px;}
._22{width:182.060242px;}
._78{width:183.828256px;}
._85{width:184.898006px;}
._91{width:186.452448px;}
._98{width:189.794451px;}
._25{width:192.397861px;}
._b5{width:193.695040px;}
._b6{width:195.915212px;}
._9b{width:198.426697px;}
._9d{width:200.396045px;}
._b8{width:202.454780px;}
._56{width:204.394652px;}
._89{width:207.403478px;}
._82{width:208.921924px;}
._8b{width:211.704098px;}
._19{width:212.830379px;}
._55{width:214.806100px;}
._97{width:217.381456px;}
._99{width:219.349490px;}
._ab{width:231.955350px;}
._ae{width:246.060000px;}
._a8{width:252.094591px;}
._a9{width:255.339947px;}
._b2{width:257.239974px;}
._b3{width:263.935207px;}
._b7{width:265.100584px;}
._67{width:268.531661px;}
._ac{width:279.598941px;}
._b1{width:286.190580px;}
._5b{width:304.025165px;}
._14{width:318.128880px;}
._81{width:323.351630px;}
._9a{width:327.487787px;}
._a2{width:329.580000px;}
._b4{width:331.619655px;}
._2e{width:335.534385px;}
._15{width:339.385595px;}
._30{width:345.033257px;}
._13{width:357.300000px;}
._ad{width:368.393891px;}
._5c{width:373.697599px;}
._a6{width:375.517240px;}
._a1{width:384.798599px;}
._5e{width:385.827534px;}
._3c{width:396.540000px;}
._a0{width:405.387234px;}
._71{width:409.811660px;}
._b0{width:425.553043px;}
._5f{width:431.820000px;}
._5d{width:444.146827px;}
._52{width:450.398276px;}
._21{width:459.900000px;}
._72{width:463.020589px;}
._4d{width:495.180000px;}
._7e{width:561.960000px;}
._2a{width:565.740000px;}
._6a{width:569.880000px;}
._39{width:591.660000px;}
._4f{width:631.916290px;}
._ba{width:645.480000px;}
._90{width:655.740000px;}
._95{width:660.060000px;}
._73{width:662.940000px;}
._a5{width:672.840000px;}
._2f{width:683.820000px;}
._76{width:696.780000px;}
._92{width:712.620000px;}
._64{width:723.420000px;}
._57{width:757.080000px;}
._59{width:765.900000px;}
._44{width:776.520000px;}
._3e{width:795.420000px;}
._12{width:855.180000px;}
._54{width:1009.612014px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs4c{font-size:25.115911px;}
.fs49{font-size:25.172672px;}
.fs1{font-size:30.240000px;}
.fs38{font-size:33.477511px;}
.fse{font-size:33.530404px;}
.fs1a{font-size:33.845227px;}
.fsa{font-size:34.090643px;}
.fsc{font-size:34.176832px;}
.fs3c{font-size:34.387262px;}
.fs1e{font-size:34.508385px;}
.fs42{font-size:34.526915px;}
.fs40{font-size:34.527060px;}
.fs24{font-size:34.601683px;}
.fs44{font-size:34.610377px;}
.fs35{font-size:34.637457px;}
.fs27{font-size:34.656872px;}
.fs2d{font-size:34.662462px;}
.fs47{font-size:34.685563px;}
.fs4a{font-size:34.697710px;}
.fs22{font-size:34.768820px;}
.fs4d{font-size:34.792550px;}
.fs15{font-size:34.824450px;}
.fs20{font-size:34.966066px;}
.fs31{font-size:34.968301px;}
.fs13{font-size:34.996780px;}
.fs1c{font-size:35.146425px;}
.fs29{font-size:35.467269px;}
.fs3e{font-size:35.603571px;}
.fs17{font-size:35.948119px;}
.fs8{font-size:36.106755px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs30{font-size:52.393319px;}
.fs4{font-size:54.000000px;}
.fs39{font-size:57.952780px;}
.fsf{font-size:58.044342px;}
.fs1b{font-size:58.473451px;}
.fs3a{font-size:58.611101px;}
.fsb{font-size:58.923139px;}
.fsd{font-size:59.072110px;}
.fs3d{font-size:59.409912px;}
.fs12{font-size:59.449747px;}
.fs1f{font-size:59.592257px;}
.fs43{font-size:59.677202px;}
.fs25{font-size:59.753374px;}
.fs2{font-size:59.760000px;}
.fs41{font-size:59.769649px;}
.fs45{font-size:59.821459px;}
.fs36{font-size:59.854751px;}
.fs28{font-size:59.940416px;}
.fs2e{font-size:59.988368px;}
.fs48{font-size:60.004659px;}
.fs23{font-size:60.081750px;}
.fs4b{font-size:60.104119px;}
.fs16{font-size:60.177881px;}
.fs4e{font-size:60.213504px;}
.fs21{font-size:60.422599px;}
.fs2c{font-size:60.464884px;}
.fs32{font-size:60.533480px;}
.fs14{font-size:60.566953px;}
.fs1d{font-size:60.721496px;}
.fs2a{font-size:61.329928px;}
.fs3f{font-size:61.538122px;}
.fs18{font-size:62.119620px;}
.fs19{font-size:62.270104px;}
.fs3b{font-size:62.420460px;}
.fs9{font-size:62.566713px;}
.fs2b{font-size:63.158661px;}
.fs11{font-size:64.316693px;}
.fs2f{font-size:68.007241px;}
.fs6{font-size:72.000000px;}
.fs46{font-size:86.926355px;}
.fs10{font-size:87.063695px;}
.fs26{font-size:89.554423px;}
.fs37{font-size:89.706728px;}
.fs34{font-size:90.336795px;}
.fs33{font-size:90.797280px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.206680px;}
.y106{bottom:3.252796px;}
.y140{bottom:3.316493px;}
.y52{bottom:3.692869px;}
.y165{bottom:3.692871px;}
.y16e{bottom:3.729433px;}
.y16d{bottom:3.729434px;}
.yc4{bottom:3.787946px;}
.yb5{bottom:3.874955px;}
.ye6{bottom:3.966160px;}
.y11c{bottom:4.416325px;}
.y115{bottom:4.526445px;}
.y8d{bottom:4.580968px;}
.y1c9{bottom:4.644106px;}
.y20e{bottom:4.647975px;}
.y161{bottom:4.714468px;}
.y19b{bottom:4.721917px;}
.y95{bottom:4.778523px;}
.y14f{bottom:4.784902px;}
.y110{bottom:4.800055px;}
.yf6{bottom:4.800057px;}
.y132{bottom:4.814165px;}
.y18b{bottom:4.898561px;}
.y168{bottom:4.920967px;}
.ybd{bottom:4.955377px;}
.y1a2{bottom:4.955381px;}
.y218{bottom:5.114882px;}
.y100{bottom:5.115825px;}
.y65{bottom:5.123147px;}
.y63{bottom:5.123148px;}
.y6d{bottom:5.136096px;}
.y6b{bottom:5.136099px;}
.y9d{bottom:5.144908px;}
.y172{bottom:5.174594px;}
.y17d{bottom:5.174598px;}
.yd6{bottom:5.294839px;}
.y1f7{bottom:5.307880px;}
.ycf{bottom:5.403636px;}
.yf3{bottom:5.418247px;}
.yfc{bottom:5.527335px;}
.y133{bottom:5.843145px;}
.ye0{bottom:6.403803px;}
.y1f6{bottom:6.479274px;}
.y15a{bottom:6.508781px;}
.y194{bottom:6.519065px;}
.y1a9{bottom:6.539192px;}
.y1b4{bottom:6.554996px;}
.y184{bottom:6.785409px;}
.y188{bottom:6.785412px;}
.y177{bottom:6.889690px;}
.y160{bottom:6.895790px;}
.y19a{bottom:6.906685px;}
.y97{bottom:7.383366px;}
.yc3{bottom:7.575893px;}
.ya6{bottom:7.653437px;}
.ya5{bottom:7.689882px;}
.y53{bottom:7.751369px;}
.y117{bottom:7.751372px;}
.y166{bottom:7.751373px;}
.y16f{bottom:7.787934px;}
.yea{bottom:7.859535px;}
.ye9{bottom:7.859539px;}
.yae{bottom:7.900392px;}
.yad{bottom:7.938011px;}
.y120{bottom:8.374891px;}
.y169{bottom:8.740738px;}
.ybe{bottom:8.775147px;}
.y1a1{bottom:8.775148px;}
.y1a3{bottom:8.775151px;}
.y64{bottom:8.842687px;}
.y66{bottom:8.842690px;}
.y6c{bottom:8.865043px;}
.y6e{bottom:8.865046px;}
.y173{bottom:8.915684px;}
.y17c{bottom:8.915690px;}
.y101{bottom:8.988220px;}
.y219{bottom:9.022083px;}
.yd3{bottom:9.066497px;}
.y9c{bottom:9.075042px;}
.y9e{bottom:9.075043px;}
.yfb{bottom:9.091009px;}
.yd2{bottom:9.102767px;}
.yf8{bottom:9.127378px;}
.y121{bottom:9.329542px;}
.y15c{bottom:10.273319px;}
.y196{bottom:10.289551px;}
.y20f{bottom:10.385320px;}
.y1a8{bottom:10.412950px;}
.y1b3{bottom:10.438118px;}
.y186{bottom:10.522829px;}
.y178{bottom:10.737655px;}
.y88{bottom:11.100033px;}
.y104{bottom:11.495668px;}
.y13b{bottom:11.516603px;}
.y1f5{bottom:11.640729px;}
.y14a{bottom:12.542239px;}
.y20c{bottom:12.636683px;}
.y20b{bottom:12.636684px;}
.y12d{bottom:12.678518px;}
.y1ec{bottom:12.738911px;}
.ydc{bottom:13.210126px;}
.y90{bottom:13.637184px;}
.y142{bottom:14.140640px;}
.ya2{bottom:14.432195px;}
.yc2{bottom:14.437079px;}
.y11b{bottom:14.501675px;}
.ye5{bottom:14.627462px;}
.yaa{bottom:14.897878px;}
.y1cd{bottom:15.093339px;}
.y107{bottom:15.302915px;}
.y62{bottom:15.474693px;}
.y6a{bottom:15.513817px;}
.y112{bottom:15.527444px;}
.yfd{bottom:15.527446px;}
.y151{bottom:15.550927px;}
.y13f{bottom:15.634886px;}
.y136{bottom:15.691964px;}
.y217{bottom:15.770880px;}
.y10d{bottom:15.818354px;}
.yf2{bottom:15.818355px;}
.y9b{bottom:15.863457px;}
.y210{bottom:16.522101px;}
.y1ed{bottom:16.582548px;}
.y1e9{bottom:16.655760px;}
.y1c8{bottom:16.676556px;}
.y1f4{bottom:16.765578px;}
.y14e{bottom:17.037148px;}
.y1a7{bottom:17.094292px;}
.yca{bottom:17.117547px;}
.yce{bottom:17.117549px;}
.y1b2{bottom:17.135613px;}
.y176{bottom:17.627344px;}
.y15f{bottom:17.802396px;}
.y199{bottom:17.830523px;}
.yd5{bottom:17.879134px;}
.yde{bottom:18.150205px;}
.ydf{bottom:18.150207px;}
.y18a{bottom:18.360520px;}
.y8f{bottom:18.887675px;}
.y8b{bottom:18.887676px;}
.ye8{bottom:19.503287px;}
.ya7{bottom:19.534486px;}
.y13e{bottom:19.534494px;}
.yb7{bottom:20.164802px;}
.yaf{bottom:20.202424px;}
.y1cc{bottom:20.300363px;}
.y1ca{bottom:20.300364px;}
.ycc{bottom:20.852945px;}
.yd1{bottom:20.852946px;}
.y111{bottom:20.909320px;}
.y10f{bottom:20.909321px;}
.yf7{bottom:20.909325px;}
.y14d{bottom:20.915817px;}
.y135{bottom:21.130865px;}
.y130{bottom:21.130866px;}
.y1ea{bottom:22.293094px;}
.y1e5{bottom:23.354670px;}
.y1e6{bottom:24.562670px;}
.y105{bottom:25.098256px;}
.y1f3{bottom:25.477821px;}
.ya1{bottom:25.584346px;}
.y1f2{bottom:25.880488px;}
.ya9{bottom:26.409870px;}
.y20d{bottom:26.435355px;}
.ycd{bottom:26.800564px;}
.yf1{bottom:26.982117px;}
.y131{bottom:27.194500px;}
.yc9{bottom:27.562148px;}
.ydd{bottom:27.591234px;}
.y10c{bottom:27.636665px;}
.yf0{bottom:27.636667px;}
.y8a{bottom:27.943886px;}
.y159{bottom:28.286811px;}
.y193{bottom:28.331503px;}
.y1e8{bottom:28.442913px;}
.y15e{bottom:28.673819px;}
.y198{bottom:28.719123px;}
.y8e{bottom:28.824841px;}
.ye7{bottom:28.927445px;}
.y13d{bottom:28.973730px;}
.ya4{bottom:29.155950px;}
.y13c{bottom:29.192397px;}
.y183{bottom:29.209913px;}
.y187{bottom:29.209916px;}
.ya3{bottom:29.483954px;}
.yac{bottom:30.134340px;}
.ycb{bottom:30.354626px;}
.yb6{bottom:30.435307px;}
.y10e{bottom:30.436694px;}
.y14c{bottom:30.449367px;}
.yab{bottom:30.472927px;}
.yd0{bottom:30.535960px;}
.yfa{bottom:30.727611px;}
.yf4{bottom:30.727612px;}
.y12f{bottom:30.795935px;}
.y15d{bottom:30.890323px;}
.y197{bottom:30.939129px;}
.y1f1{bottom:31.005336px;}
.y12e{bottom:31.126677px;}
.yf9{bottom:31.127612px;}
.yd4{bottom:31.297546px;}
.y189{bottom:31.822480px;}
.y15b{bottom:32.016166px;}
.y195{bottom:32.066751px;}
.y14b{bottom:32.660569px;}
.y185{bottom:32.947333px;}
.y20a{bottom:33.189442px;}
.ydb{bottom:34.397556px;}
.y1eb{bottom:34.446307px;}
.y87{bottom:34.498186px;}
.ye4{bottom:35.658992px;}
.ya0{bottom:36.262713px;}
.y141{bottom:36.772946px;}
.y1cb{bottom:36.871368px;}
.y8c{bottom:37.000102px;}
.yc8{bottom:37.063832px;}
.yef{bottom:37.418592px;}
.y10b{bottom:38.000414px;}
.yf5{bottom:38.000416px;}
.y150{bottom:38.025458px;}
.y1e7{bottom:38.326550px;}
.y134{bottom:38.476542px;}
.y1f0{bottom:38.985459px;}
.yee{bottom:41.273174px;}
.yc7{bottom:41.379487px;}
.y1e4{bottom:44.696004px;}
.y1e3{bottom:45.062066px;}
.y1ef{bottom:45.281701px;}
.y1ee{bottom:46.416490px;}
.y4{bottom:214.950000px;}
.y179{bottom:237.450000px;}
.y27{bottom:247.350000px;}
.y226{bottom:248.070000px;}
.y175{bottom:249.555000px;}
.y1fe{bottom:250.950000px;}
.y11f{bottom:259.830000px;}
.y174{bottom:259.950000px;}
.y57{bottom:260.850000px;}
.y26{bottom:261.030000px;}
.y1b1{bottom:261.255000px;}
.y1e2{bottom:262.004998px;}
.y7b{bottom:262.470000px;}
.y225{bottom:265.350000px;}
.y11e{bottom:267.330000px;}
.y1fd{bottom:268.230000px;}
.yc1{bottom:271.530000px;}
.y1b0{bottom:271.650000px;}
.y25{bottom:274.890000px;}
.y1d2{bottom:277.770000px;}
.y56{bottom:278.130000px;}
.yc0{bottom:279.030000px;}
.y7a{bottom:279.750000px;}
.y224{bottom:282.630000px;}
.y1fc{bottom:285.510000px;}
.y24{bottom:288.750000px;}
.y1e1{bottom:290.370000px;}
.y171{bottom:290.804998px;}
.y11d{bottom:293.070000px;}
.y1d1{bottom:295.050000px;}
.y55{bottom:295.410000px;}
.y79{bottom:296.850000px;}
.y170{bottom:299.730000px;}
.y223{bottom:299.910000px;}
.y1fb{bottom:302.790000px;}
.y23{bottom:303.330000px;}
.y1af{bottom:305.130000px;}
.ybf{bottom:308.550000px;}
.y1d0{bottom:312.330000px;}
.y78{bottom:314.130000px;}
.y222{bottom:317.190000px;}
.y50{bottom:318.090000px;}
.y51{bottom:318.180000px;}
.y22{bottom:320.790000px;}
.y1ae{bottom:322.410000px;}
.y1fa{bottom:325.290000px;}
.y54{bottom:325.650000px;}
.y1cf{bottom:329.610000px;}
.ybc{bottom:331.080000px;}
.y77{bottom:331.410000px;}
.y221{bottom:334.290000px;}
.y21{bottom:337.710000px;}
.y1e0{bottom:338.970000px;}
.y1ad{bottom:339.690000px;}
.ybb{bottom:340.050000px;}
.y16c{bottom:340.829998px;}
.y1ce{bottom:346.890000px;}
.y16b{bottom:348.330000px;}
.y76{bottom:348.690000px;}
.y220{bottom:351.570000px;}
.y4f{bottom:353.910000px;}
.y20{bottom:354.630000px;}
.y1df{bottom:356.250000px;}
.y1ac{bottom:356.790000px;}
.yba{bottom:358.050000px;}
.y16a{bottom:367.770000px;}
.y21f{bottom:368.850000px;}
.y1c7{bottom:369.629996px;}
.y4e{bottom:371.190000px;}
.y1de{bottom:373.530000px;}
.y1ab{bottom:374.070000px;}
.y75{bottom:374.970000px;}
.yb9{bottom:375.330000px;}
.y1f{bottom:380.550000px;}
.y167{bottom:381.479996px;}
.y164{bottom:382.979996px;}
.y21e{bottom:386.130000px;}
.y4d{bottom:388.470000px;}
.y163{bottom:390.450000px;}
.y1c6{bottom:390.630000px;}
.y1aa{bottom:391.350000px;}
.yb8{bottom:392.610000px;}
.y21d{bottom:403.410000px;}
.y4c{bottom:405.750000px;}
.y1dd{bottom:407.910000px;}
.y162{bottom:413.850000px;}
.y1a6{bottom:414.104996px;}
.yb4{bottom:415.154996px;}
.y158{bottom:415.380000px;}
.y21c{bottom:420.510000px;}
.y4b{bottom:423.030000px;}
.y1a5{bottom:424.470000px;}
.y74{bottom:428.070000px;}
.y1c5{bottom:429.870000px;}
.y1e{bottom:433.290000px;}
.y1dc{bottom:434.190000px;}
.yb3{bottom:434.550000px;}
.y157{bottom:436.350000px;}
.y4a{bottom:440.310000px;}
.y73{bottom:445.395000px;}
.y21b{bottom:446.835000px;}
.y1c4{bottom:447.195000px;}
.y1d{bottom:448.815000px;}
.y1a4{bottom:448.995000px;}
.y49{bottom:457.455000px;}
.y1a0{bottom:462.704996px;}
.y19f{bottom:464.130000px;}
.y1c3{bottom:464.475000px;}
.y72{bottom:468.075000px;}
.y19e{bottom:471.675000px;}
.y1c{bottom:473.295000px;}
.yb2{bottom:474.555000px;}
.y48{bottom:474.735000px;}
.y156{bottom:475.815000px;}
.y1db{bottom:487.515000px;}
.y1b{bottom:488.955000px;}
.yb1{bottom:491.835000px;}
.y155{bottom:492.915000px;}
.y1c2{bottom:499.755000px;}
.y19d{bottom:500.115000px;}
.y47{bottom:501.015000px;}
.y1a{bottom:504.435000px;}
.y1da{bottom:504.795000px;}
.yb0{bottom:509.115000px;}
.y154{bottom:510.195000px;}
.y11a{bottom:513.104996px;}
.y1c1{bottom:517.035000px;}
.y19c{bottom:517.215000px;}
.y21a{bottom:517.395000px;}
.y119{bottom:519.015000px;}
.y19{bottom:519.915000px;}
.y153{bottom:527.475000px;}
.ya8{bottom:531.629996px;}
.y9f{bottom:531.630000px;}
.y1c0{bottom:534.315000px;}
.y18{bottom:535.395000px;}
.y1f9{bottom:536.475000px;}
.y118{bottom:537.915000px;}
.y192{bottom:539.880000px;}
.y216{bottom:540.104996px;}
.y152{bottom:544.755000px;}
.y215{bottom:549.075000px;}
.y116{bottom:549.254996px;}
.y17{bottom:551.055000px;}
.y114{bottom:552.330000px;}
.y46{bottom:554.295000px;}
.y113{bottom:556.815000px;}
.y191{bottom:560.955000px;}
.y16{bottom:566.535000px;}
.y149{bottom:567.479996px;}
.y45{bottom:571.575000px;}
.y214{bottom:578.055000px;}
.y10a{bottom:581.129996px;}
.y15{bottom:582.015000px;}
.y148{bottom:588.495000px;}
.y44{bottom:588.855000px;}
.y190{bottom:591.375000px;}
.y213{bottom:595.335000px;}
.y9a{bottom:595.529996px;}
.y14{bottom:597.495000px;}
.y109{bottom:602.175000px;}
.y99{bottom:604.515000px;}
.y43{bottom:605.955000px;}
.y18f{bottom:608.655000px;}
.y212{bottom:612.615000px;}
.y13{bottom:613.155000px;}
.y42{bottom:623.235000px;}
.y241{bottom:623.415000px;}
.y18e{bottom:625.935000px;}
.y147{bottom:627.735000px;}
.y12{bottom:628.635000px;}
.y211{bottom:629.895000px;}
.y98{bottom:634.035000px;}
.y240{bottom:637.275000px;}
.y108{bottom:639.795000px;}
.y41{bottom:640.515000px;}
.y18d{bottom:643.215000px;}
.y11{bottom:644.115000px;}
.y146{bottom:645.015000px;}
.y96{bottom:647.579996px;}
.y94{bottom:650.579996px;}
.y23f{bottom:651.135000px;}
.y209{bottom:652.379996px;}
.y103{bottom:653.279996px;}
.y93{bottom:655.095000px;}
.y40{bottom:657.795000px;}
.y10{bottom:659.595000px;}
.y145{bottom:662.295000px;}
.y23e{bottom:664.815000px;}
.y182{bottom:665.729996px;}
.y102{bottom:668.235000px;}
.y208{bottom:668.955000px;}
.y92{bottom:672.735000px;}
.y3f{bottom:675.075000px;}
.yf{bottom:675.255000px;}
.y181{bottom:676.335000px;}
.y23d{bottom:678.675000px;}
.y144{bottom:679.575000px;}
.y18c{bottom:686.805000px;}
.y91{bottom:690.045000px;}
.y3e{bottom:692.385000px;}
.yff{bottom:694.680000px;}
.y143{bottom:696.885000px;}
.yfe{bottom:703.725000px;}
.y23c{bottom:706.245000px;}
.y207{bottom:708.765000px;}
.y3d{bottom:709.485000px;}
.y86{bottom:712.679992px;}
.y13a{bottom:719.354992px;}
.y23b{bottom:720.105000px;}
.ye{bottom:724.965000px;}
.y206{bottom:726.045000px;}
.y3c{bottom:726.405000px;}
.yed{bottom:727.829992px;}
.y180{bottom:727.845000px;}
.y85{bottom:732.165000px;}
.y23a{bottom:733.785000px;}
.y139{bottom:738.825000px;}
.yd{bottom:742.245000px;}
.y3b{bottom:743.325000px;}
.y71{bottom:744.945000px;}
.y1f8{bottom:745.845000px;}
.y239{bottom:747.645000px;}
.yec{bottom:748.905000px;}
.yc{bottom:759.525000px;}
.y3a{bottom:760.245000px;}
.y205{bottom:760.425000px;}
.y238{bottom:761.505000px;}
.y70{bottom:762.225000px;}
.y17f{bottom:763.125000px;}
.y1bf{bottom:769.785000px;}
.y84{bottom:773.205000px;}
.y237{bottom:775.185000px;}
.yb{bottom:776.805000px;}
.y39{bottom:777.165000px;}
.y204{bottom:777.705000px;}
.y138{bottom:778.785000px;}
.y6f{bottom:779.325000px;}
.y17e{bottom:785.625000px;}
.yeb{bottom:786.705000px;}
.y1be{bottom:787.065000px;}
.y236{bottom:789.045000px;}
.y83{bottom:790.485000px;}
.y38{bottom:793.905000px;}
.y203{bottom:794.985000px;}
.y137{bottom:795.885000px;}
.y69{bottom:801.779992px;}
.y235{bottom:802.905000px;}
.y1bd{bottom:804.345000px;}
.y1d9{bottom:805.425000px;}
.ya{bottom:805.605000px;}
.y82{bottom:807.585000px;}
.ye3{bottom:809.204992px;}
.y37{bottom:810.825000px;}
.y202{bottom:812.265000px;}
.y234{bottom:816.585000px;}
.y12c{bottom:818.579992px;}
.y1bc{bottom:821.625000px;}
.y1d8{bottom:822.705000px;}
.y81{bottom:824.865000px;}
.y36{bottom:827.745000px;}
.ye2{bottom:828.645000px;}
.y201{bottom:829.545000px;}
.y233{bottom:830.445000px;}
.y1bb{bottom:838.905000px;}
.y12b{bottom:839.625000px;}
.y1d7{bottom:839.985000px;}
.y80{bottom:842.145000px;}
.y68{bottom:844.125000px;}
.y232{bottom:844.305000px;}
.y35{bottom:844.665000px;}
.y200{bottom:846.825000px;}
.y1ba{bottom:856.185000px;}
.y1d6{bottom:857.265000px;}
.y231{bottom:857.985000px;}
.y7f{bottom:859.425000px;}
.ye1{bottom:859.605000px;}
.y67{bottom:861.405000px;}
.y34{bottom:861.585000px;}
.y1ff{bottom:869.325000px;}
.y9{bottom:871.665000px;}
.y230{bottom:871.845000px;}
.yda{bottom:873.104992px;}
.y1b9{bottom:873.285000px;}
.y1d5{bottom:874.545000px;}
.y7e{bottom:876.705000px;}
.y33{bottom:878.505000px;}
.y12a{bottom:882.645000px;}
.y61{bottom:883.904992px;}
.y22f{bottom:885.705000px;}
.y1b8{bottom:890.565000px;}
.yd9{bottom:891.105000px;}
.y1d4{bottom:891.645000px;}
.y60{bottom:892.905000px;}
.y7d{bottom:893.985000px;}
.y32{bottom:895.245000px;}
.y22e{bottom:899.385000px;}
.y129{bottom:899.925000px;}
.y8{bottom:901.005000px;}
.y1b7{bottom:907.845000px;}
.y1d3{bottom:908.925000px;}
.y31{bottom:912.165000px;}
.y22d{bottom:913.245000px;}
.y128{bottom:917.250000px;}
.y7{bottom:921.750000px;}
.yd8{bottom:922.290000px;}
.y1b6{bottom:925.170000px;}
.y5f{bottom:926.250000px;}
.y22c{bottom:927.150000px;}
.y30{bottom:929.130000px;}
.y127{bottom:934.530000px;}
.yd7{bottom:939.570000px;}
.y22b{bottom:940.830000px;}
.y1b5{bottom:942.270000px;}
.y6{bottom:943.170000px;}
.y5e{bottom:943.530000px;}
.y2f{bottom:946.050000px;}
.y7c{bottom:951.630000px;}
.y126{bottom:951.810000px;}
.y5d{bottom:960.810000px;}
.yc6{bottom:961.979992px;}
.y2e{bottom:962.970000px;}
.y22a{bottom:964.410000px;}
.y125{bottom:969.090000px;}
.y5c{bottom:978.090000px;}
.y2d{bottom:979.890000px;}
.yc5{bottom:983.130000px;}
.y124{bottom:986.190000px;}
.y5b{bottom:995.190000px;}
.y2c{bottom:996.630000px;}
.y123{bottom:1003.470000px;}
.y5{bottom:1006.890000px;}
.y5a{bottom:1012.470000px;}
.y2b{bottom:1013.550000px;}
.y229{bottom:1017.150000px;}
.y17b{bottom:1019.429992px;}
.y122{bottom:1020.750000px;}
.y17a{bottom:1028.490000px;}
.y59{bottom:1029.750000px;}
.y2a{bottom:1030.470000px;}
.y228{bottom:1032.810000px;}
.y3{bottom:1036.050000px;}
.y58{bottom:1047.030000px;}
.y29{bottom:1047.390000px;}
.y227{bottom:1048.290000px;}
.y2{bottom:1049.730000px;}
.y1{bottom:1063.410000px;}
.y28{bottom:1081.590000px;}
.h26{height:16.049996px;}
.h28{height:17.774768px;}
.h68{height:19.649684px;}
.h6c{height:21.225242px;}
.hf{height:23.400360px;}
.h8d{height:23.400362px;}
.h6a{height:23.400364px;}
.h3d{height:23.400393px;}
.h8b{height:23.400397px;}
.h90{height:23.775155px;}
.h9a{height:23.775161px;}
.h41{height:24.300034px;}
.h6f{height:24.300203px;}
.hbd{height:24.637629px;}
.hb5{height:24.693310px;}
.hc3{height:25.574404px;}
.h2a{height:25.724524px;}
.h5e{height:27.000188px;}
.h13{height:29.475614px;}
.h18{height:29.550134px;}
.ha3{height:31.274383px;}
.ha8{height:31.349979px;}
.hb8{height:32.128180px;}
.hc1{height:32.139431px;}
.h95{height:32.249611px;}
.h7c{height:32.256827px;}
.h88{height:32.840000px;}
.hae{height:32.856346px;}
.h22{height:32.891886px;}
.h20{height:32.908258px;}
.h3f{height:33.200713px;}
.h16{height:33.441456px;}
.h14{height:33.458102px;}
.h1b{height:33.526003px;}
.h19{height:33.542691px;}
.h93{height:33.732427px;}
.h91{height:33.749218px;}
.h49{height:33.851243px;}
.h47{height:33.868092px;}
.ha6{height:33.869420px;}
.h9e{height:33.869562px;}
.ha4{height:33.886279px;}
.h9c{height:33.886421px;}
.h5a{height:33.942765px;}
.hab{height:33.951292px;}
.h58{height:33.959660px;}
.ha9{height:33.968192px;}
.h82{height:33.977857px;}
.h7f{height:33.994770px;}
.h5f{height:34.013825px;}
.h6d{height:34.019311px;}
.hb6{height:34.025047px;}
.hbf{height:34.036962px;}
.hb3{height:34.041983px;}
.hbb{height:34.053905px;}
.h53{height:34.123695px;}
.hc6{height:34.129997px;}
.hc4{height:34.146986px;}
.h7b{height:34.161289px;}
.h31{height:34.178293px;}
.h75{height:34.302401px;}
.h4d{height:34.317282px;}
.h73{height:34.319475px;}
.h2d{height:34.330338px;}
.h2b{height:34.347426px;}
.h44{height:34.477133px;}
.h42{height:34.494294px;}
.h62{height:34.809185px;}
.h98{height:34.925573px;}
.h96{height:34.942958px;}
.h36{height:35.281113px;}
.h11{height:35.419176px;}
.h77{height:35.784694px;}
.h84{height:37.462007px;}
.hb{height:38.158594px;}
.h5{height:40.985156px;}
.h61{height:41.399184px;}
.hba{height:43.574764px;}
.h4c{height:45.375506px;}
.h52{height:46.575008px;}
.h30{height:46.649520px;}
.h7a{height:46.649528px;}
.h35{height:46.649913px;}
.he{height:47.344922px;}
.h87{height:47.848337px;}
.had{height:47.848341px;}
.h7e{height:47.849005px;}
.ha1{height:47.923935px;}
.h1f{height:47.923943px;}
.h2{height:48.616875px;}
.h9b{height:49.348427px;}
.hc8{height:49.583118px;}
.h3{height:50.558906px;}
.h71{height:51.395595px;}
.h72{height:51.449056px;}
.hc{height:52.971680px;}
.h8a{height:53.679894px;}
.h24{height:53.764706px;}
.h6{height:54.421875px;}
.h46{height:55.124296px;}
.h4b{height:55.198492px;}
.h66{height:55.273329px;}
.h57{height:55.273333px;}
.h5c{height:55.347729px;}
.ha0{height:55.362805px;}
.h85{height:55.441632px;}
.hb9{height:55.580488px;}
.h56{height:55.651894px;}
.hc2{height:55.672614px;}
.h34{height:55.740937px;}
.h51{height:55.967612px;}
.h78{height:56.070318px;}
.h89{height:56.849187px;}
.haf{height:56.877484px;}
.h23{height:56.939006px;}
.h21{height:56.967348px;}
.h40{height:57.359943px;}
.ha2{height:57.388495px;}
.h8c{height:57.494971px;}
.h39{height:57.539512px;}
.h3c{height:57.678900px;}
.h17{height:57.801068px;}
.h15{height:57.829839px;}
.h1c{height:57.947201px;}
.h1a{height:57.976045px;}
.h94{height:58.278571px;}
.h92{height:58.307579px;}
.h29{height:58.317648px;}
.h4a{height:58.457443px;}
.h48{height:58.486541px;}
.h67{height:58.501943px;}
.ha7{height:58.540771px;}
.ha5{height:58.569910px;}
.h5b{height:58.615492px;}
.h9f{height:58.631458px;}
.h59{height:58.644669px;}
.h4{height:58.651172px;}
.h9d{height:58.660642px;}
.hac{height:58.682281px;}
.haa{height:58.711491px;}
.h83{height:58.714939px;}
.h80{height:58.744164px;}
.h60{height:58.798973px;}
.hb7{height:58.861992px;}
.hb4{height:58.891292px;}
.h55{height:58.937615px;}
.hc0{height:58.959558px;}
.h54{height:58.966952px;}
.hbc{height:58.988906px;}
.h33{height:59.031915px;}
.h32{height:59.061299px;}
.hc7{height:59.066860px;}
.hc5{height:59.096261px;}
.h50{height:59.271973px;}
.h4e{height:59.301476px;}
.h69{height:59.313453px;}
.hb2{height:59.373379px;}
.h76{height:59.380743px;}
.h74{height:59.410300px;}
.h2e{height:59.413579px;}
.h2c{height:59.443152px;}
.h45{height:59.565179px;}
.h43{height:59.594828px;}
.h65{height:60.162024px;}
.h63{height:60.191970px;}
.h1d{height:60.226875px;}
.h99{height:60.366253px;}
.h97{height:60.396301px;}
.h38{height:60.936678px;}
.h37{height:60.967010px;}
.h3b{height:61.084296px;}
.h3a{height:61.114702px;}
.h8f{height:61.231789px;}
.h12{height:61.375257px;}
.h6b{height:61.405807px;}
.h70{height:62.993035px;}
.h27{height:63.091912px;}
.hb1{height:64.426674px;}
.h81{height:65.442200px;}
.h1e{height:65.518594px;}
.h64{height:67.763357px;}
.h7{height:69.682500px;}
.h9{height:70.628906px;}
.h2f{height:70.664062px;}
.h8{height:72.562500px;}
.h3e{height:72.667575px;}
.hbe{height:73.689994px;}
.h6e{height:77.135093px;}
.h8e{height:77.496268px;}
.h10{height:77.639807px;}
.hb0{height:80.517234px;}
.h25{height:80.644448px;}
.ha{height:81.736875px;}
.h5d{height:82.951534px;}
.h86{height:83.092608px;}
.h7d{height:83.676221px;}
.h79{height:84.102754px;}
.h4f{height:97.036097px;}
.h1{height:1262.250000px;}
.hd{height:1262.517990px;}
.h0{height:1262.520000px;}
.w7{width:13.499948px;}
.w8{width:16.050539px;}
.w1e{width:17.775225px;}
.w1d{width:17.850825px;}
.w17{width:34.350473px;}
.w19{width:35.324635px;}
.w18{width:43.500229px;}
.w26{width:46.648994px;}
.w22{width:50.024371px;}
.w23{width:50.024373px;}
.w16{width:55.274849px;}
.w13{width:60.076554px;}
.w20{width:73.423846px;}
.w3{width:74.852758px;}
.w27{width:81.596839px;}
.w1c{width:93.973499px;}
.w11{width:104.403279px;}
.wc{width:104.926831px;}
.w10{width:112.655189px;}
.wd{width:117.903274px;}
.wa{width:122.774600px;}
.w14{width:125.777164px;}
.w1f{width:130.647316px;}
.w25{width:131.176515px;}
.w1b{width:139.125157px;}
.wb{width:148.499391px;}
.w29{width:154.645508px;}
.w1a{width:155.856855px;}
.w24{width:159.682325px;}
.w6{width:160.729110px;}
.w2c{width:168.062581px;}
.w15{width:206.094856px;}
.w9{width:206.774169px;}
.w21{width:215.257739px;}
.w5{width:219.601212px;}
.we{width:254.854330px;}
.w12{width:271.578201px;}
.w4{width:272.702625px;}
.w28{width:322.722532px;}
.w2a{width:364.503507px;}
.w2b{width:408.598803px;}
.wf{width:460.425333px;}
.w2{width:893.158125px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:2.311591px;}
.x2d{left:3.460108px;}
.x35{left:4.486706px;}
.x12{left:6.347840px;}
.x40{left:8.061695px;}
.x63{left:9.731835px;}
.x49{left:11.046853px;}
.x2c{left:12.165982px;}
.x3e{left:14.274496px;}
.x48{left:15.443683px;}
.x84{left:17.106387px;}
.x3a{left:19.227782px;}
.x50{left:20.349952px;}
.x64{left:22.148729px;}
.x42{left:24.888204px;}
.x4f{left:26.158866px;}
.x9f{left:27.688794px;}
.x8c{left:28.825265px;}
.xa7{left:31.004211px;}
.x6f{left:32.775968px;}
.x30{left:34.005487px;}
.x9d{left:35.292855px;}
.x3f{left:36.425840px;}
.x18{left:37.961590px;}
.x68{left:40.587364px;}
.x13{left:44.434419px;}
.xa0{left:46.582971px;}
.x41{left:47.667488px;}
.x44{left:49.376484px;}
.x38{left:50.689662px;}
.x45{left:53.644961px;}
.x98{left:57.289398px;}
.x1e{left:58.559826px;}
.x8a{left:60.423207px;}
.x2a{left:62.019552px;}
.x3d{left:64.346446px;}
.xb1{left:66.097612px;}
.x58{left:67.643714px;}
.x6a{left:69.244861px;}
.x39{left:71.367079px;}
.x88{left:72.769335px;}
.x86{left:74.104405px;}
.xbf{left:75.623247px;}
.x97{left:76.835034px;}
.x76{left:78.929564px;}
.x2e{left:82.483292px;}
.x2f{left:83.524047px;}
.x1a{left:85.014757px;}
.x2b{left:87.058747px;}
.x73{left:88.712084px;}
.x29{left:89.923434px;}
.x87{left:91.435031px;}
.x1f{left:93.926487px;}
.xb6{left:95.846982px;}
.x6c{left:96.890564px;}
.x19{left:97.979723px;}
.x85{left:99.227131px;}
.x5c{left:101.316008px;}
.x61{left:102.616762px;}
.xae{left:105.092561px;}
.x83{left:108.058772px;}
.xb4{left:110.908160px;}
.x66{left:119.059968px;}
.x5b{left:121.085059px;}
.xb0{left:123.658317px;}
.x5d{left:125.271287px;}
.x77{left:128.176865px;}
.x5e{left:130.615123px;}
.x5a{left:134.390056px;}
.x20{left:135.567468px;}
.x9c{left:137.517911px;}
.xbc{left:139.624080px;}
.x57{left:142.723628px;}
.x78{left:144.342603px;}
.xbd{left:145.461778px;}
.x59{left:147.096809px;}
.x28{left:150.604439px;}
.x75{left:154.305921px;}
.xbb{left:158.256199px;}
.xb2{left:160.040872px;}
.x52{left:162.049975px;}
.x74{left:163.465361px;}
.x4e{left:169.317945px;}
.x1{left:176.430000px;}
.x72{left:179.333752px;}
.xc1{left:183.630000px;}
.x69{left:186.461380px;}
.xc0{left:189.390000px;}
.x55{left:191.379002px;}
.xe{left:197.670000px;}
.x4{left:200.730000px;}
.x10{left:201.810000px;}
.x67{left:204.400463px;}
.x93{left:206.130000px;}
.xb{left:208.290000px;}
.x1d{left:209.482786px;}
.xb9{left:212.070000px;}
.x6b{left:213.137322px;}
.x7{left:215.310000px;}
.x23{left:216.390000px;}
.x24{left:219.270000px;}
.xb3{left:222.344469px;}
.x6{left:226.650000px;}
.x26{left:228.630000px;}
.x54{left:231.596111px;}
.xad{left:234.239998px;}
.xaf{left:242.500636px;}
.x65{left:247.048943px;}
.x2{left:251.850000px;}
.x7d{left:256.440000px;}
.xaa{left:258.239998px;}
.x17{left:261.595333px;}
.x7a{left:264.630000px;}
.x3{left:265.710000px;}
.x9{left:271.650000px;}
.x6d{left:276.870000px;}
.xa4{left:279.089998px;}
.xc{left:280.470000px;}
.x3c{left:288.464998px;}
.x8f{left:290.939998px;}
.xa{left:294.555000px;}
.xb5{left:296.598538px;}
.x7e{left:299.955000px;}
.x16{left:304.139998px;}
.x90{left:308.775000px;}
.x4d{left:313.139998px;}
.x8{left:314.355000px;}
.x9a{left:322.275000px;}
.x1c{left:330.764998px;}
.x96{left:332.939998px;}
.x7b{left:333.989998px;}
.x37{left:337.064998px;}
.x71{left:339.389998px;}
.x91{left:355.439996px;}
.x27{left:360.089996px;}
.x82{left:362.639996px;}
.xa6{left:365.114996px;}
.x7c{left:368.355000px;}
.x53{left:370.912725px;}
.x80{left:371.955000px;}
.x92{left:373.215000px;}
.x9e{left:374.864996px;}
.x6e{left:377.564996px;}
.x94{left:379.364996px;}
.x56{left:381.038044px;}
.x4b{left:383.489996px;}
.x60{left:386.039996px;}
.x47{left:387.989996px;}
.xf{left:392.475000px;}
.xd{left:393.555000px;}
.x32{left:397.364996px;}
.x11{left:403.139996px;}
.x5{left:405.075000px;}
.xa2{left:408.495000px;}
.x33{left:410.835000px;}
.xa3{left:437.639996px;}
.x95{left:442.515000px;}
.x43{left:444.164996px;}
.x9b{left:459.614996px;}
.x34{left:471.315000px;}
.x15{left:478.005000px;}
.x81{left:485.714996px;}
.x36{left:487.365000px;}
.x4a{left:492.945000px;}
.x62{left:498.705000px;}
.x4c{left:501.405000px;}
.x70{left:503.385000px;}
.xa1{left:506.085000px;}
.x8b{left:510.045000px;}
.x89{left:518.505000px;}
.xa8{left:519.765000px;}
.x31{left:520.845000px;}
.xbe{left:522.645000px;}
.x3b{left:543.885000px;}
.x79{left:545.505000px;}
.x99{left:548.205000px;}
.x21{left:550.365000px;}
.x51{left:568.005000px;}
.x1b{left:576.825000px;}
.x7f{left:582.585000px;}
.x46{left:592.665000px;}
.x25{left:594.465000px;}
.xa5{left:601.845000px;}
.xab{left:622.725000px;}
.xb7{left:642.885000px;}
.xb8{left:665.610000px;}
.xac{left:667.410000px;}
.x5f{left:670.830000px;}
.x8d{left:687.930000px;}
.x22{left:690.090000px;}
.x8e{left:691.710000px;}
.xa9{left:696.390000px;}
.xba{left:716.550000px;}
@media print{
.v1a{vertical-align:-53.745545pt;}
.v18{vertical-align:-52.610292pt;}
.v13{vertical-align:-41.764975pt;}
.vc{vertical-align:-40.093227pt;}
.ve{vertical-align:-39.058848pt;}
.vd{vertical-align:-37.837944pt;}
.v14{vertical-align:-34.909469pt;}
.vb{vertical-align:-32.199873pt;}
.v1d{vertical-align:-27.867345pt;}
.v1c{vertical-align:-26.770050pt;}
.va{vertical-align:-25.810015pt;}
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v1b{vertical-align:-15.981889pt;}
.v1e{vertical-align:-14.430222pt;}
.v11{vertical-align:-12.765625pt;}
.v15{vertical-align:-11.507195pt;}
.v6{vertical-align:-8.320000pt;}
.vf{vertical-align:-4.770991pt;}
.v3{vertical-align:-2.560000pt;}
.v10{vertical-align:-0.902620pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.320000pt;}
.v7{vertical-align:14.430222pt;}
.v16{vertical-align:16.230925pt;}
.v1{vertical-align:18.560000pt;}
.v17{vertical-align:20.473956pt;}
.v1f{vertical-align:22.516796pt;}
.v9{vertical-align:24.320000pt;}
.v19{vertical-align:27.968305pt;}
.v4{vertical-align:29.440000pt;}
.v12{vertical-align:33.568110pt;}
.v20{vertical-align:35.247139pt;}
.lsae{letter-spacing:-1.702434pt;}
.ls3e{letter-spacing:-1.649345pt;}
.lsa8{letter-spacing:-1.482187pt;}
.ls95{letter-spacing:-1.328000pt;}
.ls7f{letter-spacing:-1.285333pt;}
.lsa7{letter-spacing:-1.280000pt;}
.ls96{letter-spacing:-1.269333pt;}
.lsa6{letter-spacing:-1.184000pt;}
.ls97{letter-spacing:-1.157333pt;}
.ls62{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls8b{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls7a{letter-spacing:-0.688000pt;}
.lsaa{letter-spacing:-0.645552pt;}
.ls9e{letter-spacing:-0.629333pt;}
.ls9f{letter-spacing:-0.592000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.330133pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa0{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls98{letter-spacing:-0.011520pt;}
.ls7e{letter-spacing:-0.007680pt;}
.lsb1{letter-spacing:-0.003840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.007680pt;}
.ls94{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.015360pt;}
.ls2b{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.094720pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.120320pt;}
.ls8a{letter-spacing:0.120533pt;}
.ls13{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls89{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.183680pt;}
.ls93{letter-spacing:0.207360pt;}
.lsd{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls67{letter-spacing:0.254720pt;}
.ls1a{letter-spacing:0.277120pt;}
.ls16{letter-spacing:0.280320pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.327680pt;}
.ls6f{letter-spacing:0.343680pt;}
.ls6b{letter-spacing:0.391040pt;}
.ls12{letter-spacing:0.408960pt;}
.ls2c{letter-spacing:0.414933pt;}
.ls11{letter-spacing:0.545280pt;}
.ls23{letter-spacing:0.592000pt;}
.ls26{letter-spacing:0.636160pt;}
.ls2{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.687360pt;}
.ls42{letter-spacing:0.734720pt;}
.ls1c{letter-spacing:0.736000pt;}
.lsa9{letter-spacing:0.836635pt;}
.ls1{letter-spacing:0.960000pt;}
.ls83{letter-spacing:0.963333pt;}
.ls84{letter-spacing:2.080000pt;}
.ls27{letter-spacing:3.360000pt;}
.ls28{letter-spacing:4.160000pt;}
.ls71{letter-spacing:5.911971pt;}
.ls21{letter-spacing:10.244158pt;}
.ls76{letter-spacing:12.648299pt;}
.ls3f{letter-spacing:22.806971pt;}
.ls7c{letter-spacing:24.643041pt;}
.ls78{letter-spacing:24.776078pt;}
.ls52{letter-spacing:24.876832pt;}
.lsb2{letter-spacing:25.839360pt;}
.ls64{letter-spacing:25.868824pt;}
.ls5f{letter-spacing:26.390334pt;}
.lsb3{letter-spacing:26.479360pt;}
.ls63{letter-spacing:26.936414pt;}
.ls2e{letter-spacing:27.012811pt;}
.ls73{letter-spacing:28.171212pt;}
.ls25{letter-spacing:32.227375pt;}
.ls88{letter-spacing:38.587229pt;}
.ls6d{letter-spacing:49.285529pt;}
.ls40{letter-spacing:49.382475pt;}
.ls69{letter-spacing:51.365749pt;}
.ls4f{letter-spacing:51.749726pt;}
.ls87{letter-spacing:52.908262pt;}
.ls74{letter-spacing:53.049685pt;}
.ls58{letter-spacing:54.492750pt;}
.ls70{letter-spacing:61.076594pt;}
.ls90{letter-spacing:64.428991pt;}
.ls86{letter-spacing:69.123571pt;}
.ls20{letter-spacing:69.369067pt;}
.ls5d{letter-spacing:69.456913pt;}
.ls2f{letter-spacing:70.012797pt;}
.ls7d{letter-spacing:70.165647pt;}
.ls75{letter-spacing:71.081352pt;}
.ls79{letter-spacing:72.462254pt;}
.ls5c{letter-spacing:72.715130pt;}
.lsa3{letter-spacing:74.708908pt;}
.ls2d{letter-spacing:77.129345pt;}
.ls5a{letter-spacing:77.266290pt;}
.ls7b{letter-spacing:77.641046pt;}
.ls72{letter-spacing:78.607612pt;}
.ls81{letter-spacing:79.213216pt;}
.ls77{letter-spacing:79.978010pt;}
.ls59{letter-spacing:80.627943pt;}
.ls65{letter-spacing:83.623644pt;}
.ls91{letter-spacing:89.463679pt;}
.lsac{letter-spacing:94.457169pt;}
.ls56{letter-spacing:101.067750pt;}
.ls5b{letter-spacing:104.366382pt;}
.ls53{letter-spacing:116.421493pt;}
.ls85{letter-spacing:126.038922pt;}
.lsab{letter-spacing:129.523553pt;}
.ls29{letter-spacing:130.228096pt;}
.ls36{letter-spacing:133.987788pt;}
.ls61{letter-spacing:134.931561pt;}
.ls92{letter-spacing:135.381242pt;}
.ls6e{letter-spacing:138.131567pt;}
.ls66{letter-spacing:139.847568pt;}
.ls6a{letter-spacing:140.821010pt;}
.ls35{letter-spacing:142.903030pt;}
.ls37{letter-spacing:143.421358pt;}
.ls8c{letter-spacing:148.044239pt;}
.ls9b{letter-spacing:148.301087pt;}
.ls18{letter-spacing:148.712408pt;}
.ls8d{letter-spacing:149.798318pt;}
.lsaf{letter-spacing:151.400448pt;}
.ls32{letter-spacing:154.202580pt;}
.ls34{letter-spacing:154.720908pt;}
.ls33{letter-spacing:157.571712pt;}
.ls80{letter-spacing:164.738534pt;}
.ls3d{letter-spacing:164.849742pt;}
.ls5e{letter-spacing:166.582812pt;}
.ls50{letter-spacing:167.577836pt;}
.ls8f{letter-spacing:169.043067pt;}
.ls2a{letter-spacing:169.193568pt;}
.ls4c{letter-spacing:169.786580pt;}
.ls9d{letter-spacing:171.678884pt;}
.ls8e{letter-spacing:176.059382pt;}
.ls3a{letter-spacing:176.192860pt;}
.ls41{letter-spacing:179.000719pt;}
.ls39{letter-spacing:188.445567pt;}
.ls3b{letter-spacing:188.927114pt;}
.ls3c{letter-spacing:192.297946pt;}
.ls38{letter-spacing:203.534053pt;}
.ls48{letter-spacing:222.086281pt;}
.ls6c{letter-spacing:225.996897pt;}
.ls4b{letter-spacing:228.371019pt;}
.ls68{letter-spacing:229.160687pt;}
.lsad{letter-spacing:248.511698pt;}
.ls55{letter-spacing:253.161000pt;}
.ls57{letter-spacing:254.403000pt;}
.lsb0{letter-spacing:268.903765pt;}
.ls54{letter-spacing:274.999500pt;}
.ls82{letter-spacing:279.574812pt;}
.ls30{letter-spacing:292.279622pt;}
.lsa5{letter-spacing:310.341325pt;}
.ls9c{letter-spacing:317.485813pt;}
.ls24{letter-spacing:332.871601pt;}
.ls51{letter-spacing:335.104093pt;}
.ls4d{letter-spacing:383.292777pt;}
.ls47{letter-spacing:385.092554pt;}
.ls60{letter-spacing:390.035310pt;}
.lsa2{letter-spacing:428.626091pt;}
.ls31{letter-spacing:436.846812pt;}
.ls99{letter-spacing:446.425814pt;}
.ls4e{letter-spacing:447.209014pt;}
.ls49{letter-spacing:454.903837pt;}
.ls4a{letter-spacing:463.584710pt;}
.ls9a{letter-spacing:478.131546pt;}
.lsa1{letter-spacing:478.397322pt;}
.lse{letter-spacing:511.680000pt;}
.ls46{letter-spacing:693.174758pt;}
.ls44{letter-spacing:749.324267pt;}
.lsa4{letter-spacing:826.535628pt;}
.ls45{letter-spacing:908.168508pt;}
.ls43{letter-spacing:978.834312pt;}
.ws2a{word-spacing:-202.249927pt;}
.ws7d{word-spacing:-78.332705pt;}
.ws21{word-spacing:-70.904245pt;}
.ws52{word-spacing:-42.188638pt;}
.ws4a{word-spacing:-40.840128pt;}
.ws4c{word-spacing:-39.199572pt;}
.ws88{word-spacing:-29.162880pt;}
.ws66{word-spacing:-20.584881pt;}
.ws33{word-spacing:-18.405360pt;}
.ws5b{word-spacing:-18.354323pt;}
.ws18{word-spacing:-18.331643pt;}
.ws27{word-spacing:-18.304679pt;}
.ws56{word-spacing:-17.806951pt;}
.ws76{word-spacing:-16.735502pt;}
.ws12{word-spacing:-14.240000pt;}
.ws4b{word-spacing:-13.903714pt;}
.ws14{word-spacing:-13.872000pt;}
.ws1f{word-spacing:-13.694933pt;}
.wsa{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.510933pt;}
.ws70{word-spacing:-13.463467pt;}
.ws77{word-spacing:-13.400533pt;}
.ws11{word-spacing:-13.374933pt;}
.ws3d{word-spacing:-13.351500pt;}
.ws4d{word-spacing:-13.330748pt;}
.ws7c{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.949867pt;}
.ws10{word-spacing:-12.870933pt;}
.ws57{word-spacing:-12.592000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws78{word-spacing:-12.272000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws89{word-spacing:-11.952000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws4f{word-spacing:-11.642960pt;}
.ws8{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws91{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.400000pt;}
.wsa3{word-spacing:-9.760000pt;}
.ws3{word-spacing:-9.359467pt;}
.ws4{word-spacing:-9.280000pt;}
.ws19{word-spacing:-8.647680pt;}
.ws5{word-spacing:-8.640000pt;}
.ws5c{word-spacing:-8.632320pt;}
.ws90{word-spacing:-8.628480pt;}
.ws44{word-spacing:-7.881615pt;}
.wsa0{word-spacing:-7.731678pt;}
.ws3e{word-spacing:-7.689263pt;}
.ws9b{word-spacing:-7.360000pt;}
.ws63{word-spacing:-7.354667pt;}
.ws1{word-spacing:-6.720000pt;}
.ws43{word-spacing:-1.385290pt;}
.ws49{word-spacing:-0.591212pt;}
.ws1d{word-spacing:-0.577594pt;}
.wsc{word-spacing:0.000000pt;}
.ws80{word-spacing:0.106093pt;}
.ws8e{word-spacing:0.927244pt;}
.ws67{word-spacing:1.344924pt;}
.ws3c{word-spacing:1.408820pt;}
.ws6c{word-spacing:2.215333pt;}
.ws69{word-spacing:2.231351pt;}
.ws72{word-spacing:2.792856pt;}
.ws4e{word-spacing:2.908745pt;}
.ws3a{word-spacing:3.019341pt;}
.ws73{word-spacing:3.038381pt;}
.ws79{word-spacing:3.921218pt;}
.ws2d{word-spacing:5.590472pt;}
.ws37{word-spacing:5.985711pt;}
.ws51{word-spacing:6.618327pt;}
.ws32{word-spacing:9.769414pt;}
.ws30{word-spacing:9.771563pt;}
.ws84{word-spacing:10.475402pt;}
.ws8c{word-spacing:10.663311pt;}
.ws22{word-spacing:10.938134pt;}
.ws24{word-spacing:10.989729pt;}
.ws36{word-spacing:11.123888pt;}
.ws50{word-spacing:11.407198pt;}
.ws47{word-spacing:12.534930pt;}
.ws2f{word-spacing:13.046077pt;}
.ws31{word-spacing:13.169818pt;}
.ws1c{word-spacing:13.389678pt;}
.ws64{word-spacing:13.593789pt;}
.ws6b{word-spacing:13.893940pt;}
.ws35{word-spacing:14.302142pt;}
.ws46{word-spacing:14.392090pt;}
.ws71{word-spacing:14.504102pt;}
.ws58{word-spacing:14.524753pt;}
.ws53{word-spacing:14.603166pt;}
.ws87{word-spacing:17.122231pt;}
.ws3f{word-spacing:17.208972pt;}
.ws38{word-spacing:18.645755pt;}
.ws65{word-spacing:22.970729pt;}
.ws2e{word-spacing:23.535228pt;}
.ws74{word-spacing:25.236074pt;}
.ws16{word-spacing:25.507172pt;}
.ws1b{word-spacing:25.676677pt;}
.ws75{word-spacing:27.042446pt;}
.ws23{word-spacing:28.325639pt;}
.ws7a{word-spacing:28.428829pt;}
.ws6d{word-spacing:28.608389pt;}
.ws55{word-spacing:28.885383pt;}
.ws2c{word-spacing:29.446840pt;}
.ws99{word-spacing:29.602299pt;}
.ws9d{word-spacing:29.732082pt;}
.ws7b{word-spacing:30.183058pt;}
.ws5a{word-spacing:31.177675pt;}
.wsa1{word-spacing:32.863192pt;}
.ws6f{word-spacing:33.375168pt;}
.ws26{word-spacing:33.594470pt;}
.ws9f{word-spacing:34.235074pt;}
.ws7f{word-spacing:36.643363pt;}
.ws13{word-spacing:37.428798pt;}
.ws17{word-spacing:38.286946pt;}
.ws61{word-spacing:38.532159pt;}
.wsa2{word-spacing:39.446536pt;}
.ws62{word-spacing:40.283621pt;}
.ws29{word-spacing:42.627864pt;}
.ws48{word-spacing:45.518792pt;}
.ws92{word-spacing:48.163740pt;}
.ws8d{word-spacing:49.453039pt;}
.ws6e{word-spacing:54.755253pt;}
.ws41{word-spacing:59.381575pt;}
.ws45{word-spacing:59.530917pt;}
.ws5f{word-spacing:60.219377pt;}
.ws96{word-spacing:60.829295pt;}
.ws60{word-spacing:61.970839pt;}
.ws7e{word-spacing:67.630284pt;}
.ws68{word-spacing:74.037952pt;}
.ws28{word-spacing:75.101995pt;}
.ws5d{word-spacing:78.233223pt;}
.ws82{word-spacing:79.781788pt;}
.ws5e{word-spacing:79.959175pt;}
.ws3b{word-spacing:82.035674pt;}
.ws83{word-spacing:83.919408pt;}
.ws81{word-spacing:84.890175pt;}
.ws9e{word-spacing:90.963080pt;}
.ws42{word-spacing:107.715415pt;}
.ws25{word-spacing:109.158846pt;}
.ws86{word-spacing:118.419902pt;}
.ws2b{word-spacing:118.551844pt;}
.ws98{word-spacing:130.356789pt;}
.ws85{word-spacing:130.811841pt;}
.ws59{word-spacing:142.965108pt;}
.ws6a{word-spacing:145.262569pt;}
.ws54{word-spacing:146.069392pt;}
.ws40{word-spacing:151.432879pt;}
.ws9a{word-spacing:167.479671pt;}
.ws95{word-spacing:174.840243pt;}
.ws97{word-spacing:181.560764pt;}
.ws15{word-spacing:193.604551pt;}
.ws94{word-spacing:207.805062pt;}
.ws39{word-spacing:254.138622pt;}
.ws8f{word-spacing:265.801476pt;}
.ws8a{word-spacing:274.515590pt;}
.ws8b{word-spacing:307.100367pt;}
.ws1a{word-spacing:334.325363pt;}
.ws9c{word-spacing:477.388286pt;}
.ws93{word-spacing:514.759970pt;}
.ws34{word-spacing:538.663620pt;}
._aa{margin-left:-1187.515907pt;}
._9f{margin-left:-977.662371pt;}
._4a{margin-left:-807.305463pt;}
._1c{margin-left:-790.907915pt;}
._35{margin-left:-687.135009pt;}
._26{margin-left:-615.835861pt;}
._86{margin-left:-604.082701pt;}
._a3{margin-left:-478.225691pt;}
._3b{margin-left:-405.907043pt;}
._b9{margin-left:-358.824344pt;}
._62{margin-left:-343.854502pt;}
._7b{margin-left:-307.469885pt;}
._58{margin-left:-218.603385pt;}
._43{margin-left:-188.026442pt;}
._11{margin-left:-180.626053pt;}
._94{margin-left:-162.046388pt;}
._60{margin-left:-135.139814pt;}
._93{margin-left:-128.538879pt;}
._6d{margin-left:-86.672229pt;}
._6f{margin-left:-83.032280pt;}
._70{margin-left:-78.047358pt;}
._6c{margin-left:-72.202435pt;}
._6e{margin-left:-69.394227pt;}
._65{margin-left:-4.231261pt;}
._5{margin-left:-2.339200pt;}
._0{margin-left:-0.943360pt;}
._1{width:1.182720pt;}
._2{width:2.719147pt;}
._6{width:3.670613pt;}
._b{width:4.578987pt;}
._7{width:5.514240pt;}
._4{width:6.687360pt;}
._3{width:7.616000pt;}
._8{width:8.721280pt;}
._9{width:9.935147pt;}
._a{width:11.048960pt;}
._c{width:12.321707pt;}
._d{width:14.408107pt;}
._96{width:15.707526pt;}
._6b{width:16.680618pt;}
._a7{width:17.617533pt;}
._49{width:18.852156pt;}
._af{width:20.368640pt;}
._e{width:22.339840pt;}
._f{width:23.350400pt;}
._53{width:25.152452pt;}
._bb{width:26.736828pt;}
._50{width:29.610730pt;}
._66{width:30.816528pt;}
._9c{width:32.835723pt;}
._9e{width:34.586254pt;}
._24{width:36.073368pt;}
._29{width:37.386082pt;}
._47{width:39.077656pt;}
._8d{width:40.072490pt;}
._16{width:41.200339pt;}
._79{width:42.223974pt;}
._74{width:44.986309pt;}
._32{width:48.184376pt;}
._42{width:50.521062pt;}
._1e{width:51.743326pt;}
._23{width:53.243661pt;}
._36{width:54.375665pt;}
._27{width:55.869088pt;}
._17{width:56.932847pt;}
._2b{width:60.159736pt;}
._37{width:62.935794pt;}
._38{width:64.419476pt;}
._7f{width:66.879405pt;}
._41{width:68.608850pt;}
._2c{width:70.427136pt;}
._34{width:73.853811pt;}
._31{width:74.833836pt;}
._1f{width:77.988048pt;}
._8c{width:79.222412pt;}
._2d{width:80.488155pt;}
._84{width:82.030627pt;}
._40{width:83.318171pt;}
._68{width:85.407489pt;}
._48{width:88.968621pt;}
._28{width:91.102320pt;}
._7d{width:92.320000pt;}
._3a{width:93.736060pt;}
._75{width:95.214780pt;}
._80{width:96.217653pt;}
._77{width:97.150911pt;}
._1a{width:100.143149pt;}
._46{width:101.292150pt;}
._61{width:102.707186pt;}
._10{width:104.277854pt;}
._20{width:105.747394pt;}
._3d{width:109.484681pt;}
._4e{width:110.550258pt;}
._33{width:114.942618pt;}
._1d{width:116.222619pt;}
._51{width:119.396397pt;}
._4b{width:120.471448pt;}
._8f{width:123.736456pt;}
._1b{width:125.702697pt;}
._8e{width:126.711656pt;}
._18{width:128.216751pt;}
._4c{width:130.814435pt;}
._7a{width:132.553315pt;}
._8a{width:134.149657pt;}
._69{width:139.583881pt;}
._83{width:141.830297pt;}
._a4{width:142.986582pt;}
._7c{width:146.599819pt;}
._5a{width:147.550997pt;}
._87{width:148.621402pt;}
._63{width:154.169810pt;}
._3f{width:156.189086pt;}
._88{width:158.522202pt;}
._45{width:160.326024pt;}
._22{width:161.831326pt;}
._78{width:163.402894pt;}
._85{width:164.353783pt;}
._91{width:165.735509pt;}
._98{width:168.706179pt;}
._25{width:171.020321pt;}
._b5{width:172.173369pt;}
._b6{width:174.146855pt;}
._9b{width:176.379286pt;}
._9d{width:178.129817pt;}
._b8{width:179.959804pt;}
._56{width:181.684135pt;}
._89{width:184.358647pt;}
._82{width:185.708377pt;}
._8b{width:188.181420pt;}
._19{width:189.182559pt;}
._55{width:190.938755pt;}
._97{width:193.227961pt;}
._99{width:194.977324pt;}
._ab{width:206.182533pt;}
._ae{width:218.720000pt;}
._a8{width:224.084081pt;}
._a9{width:226.968841pt;}
._b2{width:228.657755pt;}
._b3{width:234.609073pt;}
._b7{width:235.644964pt;}
._67{width:238.694810pt;}
._ac{width:248.532392pt;}
._b1{width:254.391626pt;}
._5b{width:270.244591pt;}
._14{width:282.781227pt;}
._81{width:287.423671pt;}
._9a{width:291.100255pt;}
._a2{width:292.960000pt;}
._b4{width:294.773027pt;}
._2e{width:298.252786pt;}
._15{width:301.676085pt;}
._30{width:306.696229pt;}
._13{width:317.600000pt;}
._ad{width:327.461237pt;}
._5c{width:332.175644pt;}
._a6{width:333.793103pt;}
._a1{width:342.043199pt;}
._5e{width:342.957808pt;}
._3c{width:352.480000pt;}
._a0{width:360.344208pt;}
._71{width:364.277031pt;}
._b0{width:378.269372pt;}
._5f{width:383.840000pt;}
._5d{width:394.797179pt;}
._52{width:400.354023pt;}
._21{width:408.800000pt;}
._72{width:411.573857pt;}
._4d{width:440.160000pt;}
._7e{width:499.520000pt;}
._2a{width:502.880000pt;}
._6a{width:506.560000pt;}
._39{width:525.920000pt;}
._4f{width:561.703369pt;}
._ba{width:573.760000pt;}
._90{width:582.880000pt;}
._95{width:586.720000pt;}
._73{width:589.280000pt;}
._a5{width:598.080000pt;}
._2f{width:607.840000pt;}
._76{width:619.360000pt;}
._92{width:633.440000pt;}
._64{width:643.040000pt;}
._57{width:672.960000pt;}
._59{width:680.800000pt;}
._44{width:690.240000pt;}
._3e{width:707.040000pt;}
._12{width:760.160000pt;}
._54{width:897.432901pt;}
.fs5{font-size:5.120000pt;}
.fs4c{font-size:22.325254pt;}
.fs49{font-size:22.375708pt;}
.fs1{font-size:26.880000pt;}
.fs38{font-size:29.757788pt;}
.fse{font-size:29.804804pt;}
.fs1a{font-size:30.084646pt;}
.fsa{font-size:30.302794pt;}
.fsc{font-size:30.379406pt;}
.fs3c{font-size:30.566456pt;}
.fs1e{font-size:30.674120pt;}
.fs42{font-size:30.690591pt;}
.fs40{font-size:30.690720pt;}
.fs24{font-size:30.757052pt;}
.fs44{font-size:30.764779pt;}
.fs35{font-size:30.788851pt;}
.fs27{font-size:30.806109pt;}
.fs2d{font-size:30.811077pt;}
.fs47{font-size:30.831611pt;}
.fs4a{font-size:30.842409pt;}
.fs22{font-size:30.905618pt;}
.fs4d{font-size:30.926711pt;}
.fs15{font-size:30.955066pt;}
.fs20{font-size:31.080948pt;}
.fs31{font-size:31.082934pt;}
.fs13{font-size:31.108249pt;}
.fs1c{font-size:31.241267pt;}
.fs29{font-size:31.526461pt;}
.fs3e{font-size:31.647619pt;}
.fs17{font-size:31.953883pt;}
.fs8{font-size:32.094894pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs30{font-size:46.571840pt;}
.fs4{font-size:48.000000pt;}
.fs39{font-size:51.513582pt;}
.fsf{font-size:51.594971pt;}
.fs1b{font-size:51.976401pt;}
.fs3a{font-size:52.098756pt;}
.fsb{font-size:52.376124pt;}
.fsd{font-size:52.508542pt;}
.fs3d{font-size:52.808810pt;}
.fs12{font-size:52.844220pt;}
.fs1f{font-size:52.970895pt;}
.fs43{font-size:53.046402pt;}
.fs25{font-size:53.114110pt;}
.fs2{font-size:53.120000pt;}
.fs41{font-size:53.128577pt;}
.fs45{font-size:53.174631pt;}
.fs36{font-size:53.204223pt;}
.fs28{font-size:53.280370pt;}
.fs2e{font-size:53.322993pt;}
.fs48{font-size:53.337475pt;}
.fs23{font-size:53.406000pt;}
.fs4b{font-size:53.425884pt;}
.fs16{font-size:53.491450pt;}
.fs4e{font-size:53.523115pt;}
.fs21{font-size:53.708977pt;}
.fs2c{font-size:53.746564pt;}
.fs32{font-size:53.807538pt;}
.fs14{font-size:53.837292pt;}
.fs1d{font-size:53.974663pt;}
.fs2a{font-size:54.515492pt;}
.fs3f{font-size:54.700553pt;}
.fs18{font-size:55.217440pt;}
.fs19{font-size:55.351204pt;}
.fs3b{font-size:55.484854pt;}
.fs9{font-size:55.614856pt;}
.fs2b{font-size:56.141032pt;}
.fs11{font-size:57.170394pt;}
.fs2f{font-size:60.450881pt;}
.fs6{font-size:64.000000pt;}
.fs46{font-size:77.267871pt;}
.fs10{font-size:77.389951pt;}
.fs26{font-size:79.603932pt;}
.fs37{font-size:79.739313pt;}
.fs34{font-size:80.299374pt;}
.fs33{font-size:80.708693pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.850382pt;}
.y106{bottom:2.891374pt;}
.y140{bottom:2.947994pt;}
.y52{bottom:3.282551pt;}
.y165{bottom:3.282552pt;}
.y16e{bottom:3.315052pt;}
.y16d{bottom:3.315053pt;}
.yc4{bottom:3.367064pt;}
.yb5{bottom:3.444405pt;}
.ye6{bottom:3.525475pt;}
.y11c{bottom:3.925622pt;}
.y115{bottom:4.023507pt;}
.y8d{bottom:4.071972pt;}
.y1c9{bottom:4.128095pt;}
.y20e{bottom:4.131534pt;}
.y161{bottom:4.190639pt;}
.y19b{bottom:4.197260pt;}
.y95{bottom:4.247576pt;}
.y14f{bottom:4.253246pt;}
.y110{bottom:4.266716pt;}
.yf6{bottom:4.266717pt;}
.y132{bottom:4.279258pt;}
.y18b{bottom:4.354276pt;}
.y168{bottom:4.374192pt;}
.ybd{bottom:4.404780pt;}
.y1a2{bottom:4.404783pt;}
.y218{bottom:4.546562pt;}
.y100{bottom:4.547400pt;}
.y65{bottom:4.553908pt;}
.y63{bottom:4.553909pt;}
.y6d{bottom:4.565419pt;}
.y6b{bottom:4.565422pt;}
.y9d{bottom:4.573251pt;}
.y172{bottom:4.599639pt;}
.y17d{bottom:4.599642pt;}
.yd6{bottom:4.706524pt;}
.y1f7{bottom:4.718116pt;}
.ycf{bottom:4.803232pt;}
.yf3{bottom:4.816219pt;}
.yfc{bottom:4.913187pt;}
.y133{bottom:5.193907pt;}
.ye0{bottom:5.692270pt;}
.y1f6{bottom:5.759354pt;}
.y15a{bottom:5.785583pt;}
.y194{bottom:5.794724pt;}
.y1a9{bottom:5.812615pt;}
.y1b4{bottom:5.826663pt;}
.y184{bottom:6.031474pt;}
.y188{bottom:6.031477pt;}
.y177{bottom:6.124169pt;}
.y160{bottom:6.129591pt;}
.y19a{bottom:6.139275pt;}
.y97{bottom:6.562992pt;}
.yc3{bottom:6.734127pt;}
.ya6{bottom:6.803055pt;}
.ya5{bottom:6.835450pt;}
.y53{bottom:6.890106pt;}
.y117{bottom:6.890108pt;}
.y166{bottom:6.890109pt;}
.y16f{bottom:6.922608pt;}
.yea{bottom:6.986253pt;}
.ye9{bottom:6.986257pt;}
.yae{bottom:7.022570pt;}
.yad{bottom:7.056010pt;}
.y120{bottom:7.444348pt;}
.y169{bottom:7.769545pt;}
.ybe{bottom:7.800131pt;}
.y1a1{bottom:7.800132pt;}
.y1a3{bottom:7.800134pt;}
.y64{bottom:7.860166pt;}
.y66{bottom:7.860169pt;}
.y6c{bottom:7.880038pt;}
.y6e{bottom:7.880041pt;}
.y173{bottom:7.925053pt;}
.y17c{bottom:7.925058pt;}
.y101{bottom:7.989529pt;}
.y219{bottom:8.019630pt;}
.yd3{bottom:8.059108pt;}
.y9c{bottom:8.066704pt;}
.y9e{bottom:8.066705pt;}
.yfb{bottom:8.080897pt;}
.yd2{bottom:8.091348pt;}
.yf8{bottom:8.113225pt;}
.y121{bottom:8.292926pt;}
.y15c{bottom:9.131839pt;}
.y196{bottom:9.146267pt;}
.y20f{bottom:9.231396pt;}
.y1a8{bottom:9.255956pt;}
.y1b3{bottom:9.278327pt;}
.y186{bottom:9.353626pt;}
.y178{bottom:9.544582pt;}
.y88{bottom:9.866696pt;}
.y104{bottom:10.218371pt;}
.y13b{bottom:10.236980pt;}
.y1f5{bottom:10.347315pt;}
.y14a{bottom:11.148657pt;}
.y20c{bottom:11.232607pt;}
.y20b{bottom:11.232608pt;}
.y12d{bottom:11.269794pt;}
.y1ec{bottom:11.323476pt;}
.ydc{bottom:11.742334pt;}
.y90{bottom:12.121941pt;}
.y142{bottom:12.569457pt;}
.ya2{bottom:12.828618pt;}
.yc2{bottom:12.832959pt;}
.y11b{bottom:12.890378pt;}
.ye5{bottom:13.002188pt;}
.yaa{bottom:13.242558pt;}
.y1cd{bottom:13.416301pt;}
.y107{bottom:13.602591pt;}
.y62{bottom:13.755283pt;}
.y6a{bottom:13.790059pt;}
.y112{bottom:13.802172pt;}
.yfd{bottom:13.802174pt;}
.y151{bottom:13.823047pt;}
.y13f{bottom:13.897676pt;}
.y136{bottom:13.948412pt;}
.y217{bottom:14.018560pt;}
.y10d{bottom:14.060759pt;}
.yf2{bottom:14.060760pt;}
.y9b{bottom:14.100851pt;}
.y210{bottom:14.686312pt;}
.y1ed{bottom:14.740043pt;}
.y1e9{bottom:14.805120pt;}
.y1c8{bottom:14.823605pt;}
.y1f4{bottom:14.902736pt;}
.y14e{bottom:15.144132pt;}
.y1a7{bottom:15.194926pt;}
.yca{bottom:15.215597pt;}
.yce{bottom:15.215599pt;}
.y1b2{bottom:15.231656pt;}
.y176{bottom:15.668751pt;}
.y15f{bottom:15.824352pt;}
.y199{bottom:15.849354pt;}
.yd5{bottom:15.892564pt;}
.yde{bottom:16.133515pt;}
.ydf{bottom:16.133517pt;}
.y18a{bottom:16.320463pt;}
.y8f{bottom:16.789044pt;}
.y8b{bottom:16.789045pt;}
.ye8{bottom:17.336255pt;}
.ya7{bottom:17.363988pt;}
.y13e{bottom:17.363994pt;}
.yb7{bottom:17.924268pt;}
.yaf{bottom:17.957710pt;}
.y1cc{bottom:18.044767pt;}
.y1ca{bottom:18.044768pt;}
.ycc{bottom:18.535951pt;}
.yd1{bottom:18.535952pt;}
.y111{bottom:18.586062pt;}
.y10f{bottom:18.586063pt;}
.yf7{bottom:18.586067pt;}
.y14d{bottom:18.591837pt;}
.y135{bottom:18.782991pt;}
.y130{bottom:18.782992pt;}
.y1ea{bottom:19.816084pt;}
.y1e5{bottom:20.759706pt;}
.y1e6{bottom:21.833485pt;}
.y105{bottom:22.309561pt;}
.y1f3{bottom:22.646952pt;}
.ya1{bottom:22.741641pt;}
.y1f2{bottom:23.004878pt;}
.ya9{bottom:23.475440pt;}
.y20d{bottom:23.498094pt;}
.ycd{bottom:23.822724pt;}
.yf1{bottom:23.984104pt;}
.y131{bottom:24.172889pt;}
.yc9{bottom:24.499687pt;}
.ydd{bottom:24.525541pt;}
.y10c{bottom:24.565924pt;}
.yf0{bottom:24.565926pt;}
.y8a{bottom:24.839010pt;}
.y159{bottom:25.143832pt;}
.y193{bottom:25.183558pt;}
.y1e8{bottom:25.282589pt;}
.y15e{bottom:25.487839pt;}
.y198{bottom:25.528109pt;}
.y8e{bottom:25.622081pt;}
.ye7{bottom:25.713284pt;}
.y13d{bottom:25.754427pt;}
.ya4{bottom:25.916400pt;}
.y13c{bottom:25.948798pt;}
.y183{bottom:25.964367pt;}
.y187{bottom:25.964370pt;}
.ya3{bottom:26.207959pt;}
.yac{bottom:26.786080pt;}
.ycb{bottom:26.981890pt;}
.yb6{bottom:27.053607pt;}
.y10e{bottom:27.054839pt;}
.y14c{bottom:27.066104pt;}
.yab{bottom:27.087046pt;}
.yd0{bottom:27.143076pt;}
.yfa{bottom:27.313432pt;}
.yf4{bottom:27.313433pt;}
.y12f{bottom:27.374165pt;}
.y15d{bottom:27.458065pt;}
.y197{bottom:27.501448pt;}
.y1f1{bottom:27.560299pt;}
.y12e{bottom:27.668157pt;}
.yf9{bottom:27.668988pt;}
.yd4{bottom:27.820041pt;}
.y189{bottom:28.286649pt;}
.y15b{bottom:28.458815pt;}
.y195{bottom:28.503778pt;}
.y14b{bottom:29.031617pt;}
.y185{bottom:29.286518pt;}
.y20a{bottom:29.501727pt;}
.ydb{bottom:30.575605pt;}
.y1eb{bottom:30.618940pt;}
.y87{bottom:30.665054pt;}
.ye4{bottom:31.696881pt;}
.ya0{bottom:32.233523pt;}
.y141{bottom:32.687063pt;}
.y1cb{bottom:32.774550pt;}
.y8c{bottom:32.888979pt;}
.yc8{bottom:32.945629pt;}
.yef{bottom:33.260971pt;}
.y10b{bottom:33.778146pt;}
.yf5{bottom:33.778148pt;}
.y150{bottom:33.800407pt;}
.y1e7{bottom:34.068044pt;}
.y134{bottom:34.201371pt;}
.y1f0{bottom:34.653741pt;}
.yee{bottom:36.687266pt;}
.yc7{bottom:36.781767pt;}
.y1e4{bottom:39.729782pt;}
.y1e3{bottom:40.055169pt;}
.y1ef{bottom:40.250401pt;}
.y1ee{bottom:41.259102pt;}
.y4{bottom:191.066667pt;}
.y179{bottom:211.066667pt;}
.y27{bottom:219.866667pt;}
.y226{bottom:220.506667pt;}
.y175{bottom:221.826667pt;}
.y1fe{bottom:223.066667pt;}
.y11f{bottom:230.960000pt;}
.y174{bottom:231.066667pt;}
.y57{bottom:231.866667pt;}
.y26{bottom:232.026667pt;}
.y1b1{bottom:232.226667pt;}
.y1e2{bottom:232.893332pt;}
.y7b{bottom:233.306667pt;}
.y225{bottom:235.866667pt;}
.y11e{bottom:237.626667pt;}
.y1fd{bottom:238.426667pt;}
.yc1{bottom:241.360000pt;}
.y1b0{bottom:241.466667pt;}
.y25{bottom:244.346667pt;}
.y1d2{bottom:246.906667pt;}
.y56{bottom:247.226667pt;}
.yc0{bottom:248.026667pt;}
.y7a{bottom:248.666667pt;}
.y224{bottom:251.226667pt;}
.y1fc{bottom:253.786667pt;}
.y24{bottom:256.666667pt;}
.y1e1{bottom:258.106667pt;}
.y171{bottom:258.493332pt;}
.y11d{bottom:260.506667pt;}
.y1d1{bottom:262.266667pt;}
.y55{bottom:262.586667pt;}
.y79{bottom:263.866667pt;}
.y170{bottom:266.426667pt;}
.y223{bottom:266.586667pt;}
.y1fb{bottom:269.146667pt;}
.y23{bottom:269.626667pt;}
.y1af{bottom:271.226667pt;}
.ybf{bottom:274.266667pt;}
.y1d0{bottom:277.626667pt;}
.y78{bottom:279.226667pt;}
.y222{bottom:281.946667pt;}
.y50{bottom:282.746667pt;}
.y51{bottom:282.826667pt;}
.y22{bottom:285.146667pt;}
.y1ae{bottom:286.586667pt;}
.y1fa{bottom:289.146667pt;}
.y54{bottom:289.466667pt;}
.y1cf{bottom:292.986667pt;}
.ybc{bottom:294.293333pt;}
.y77{bottom:294.586667pt;}
.y221{bottom:297.146667pt;}
.y21{bottom:300.186667pt;}
.y1e0{bottom:301.306667pt;}
.y1ad{bottom:301.946667pt;}
.ybb{bottom:302.266667pt;}
.y16c{bottom:302.959998pt;}
.y1ce{bottom:308.346667pt;}
.y16b{bottom:309.626667pt;}
.y76{bottom:309.946667pt;}
.y220{bottom:312.506667pt;}
.y4f{bottom:314.586667pt;}
.y20{bottom:315.226667pt;}
.y1df{bottom:316.666667pt;}
.y1ac{bottom:317.146667pt;}
.yba{bottom:318.266667pt;}
.y16a{bottom:326.906667pt;}
.y21f{bottom:327.866667pt;}
.y1c7{bottom:328.559996pt;}
.y4e{bottom:329.946667pt;}
.y1de{bottom:332.026667pt;}
.y1ab{bottom:332.506667pt;}
.y75{bottom:333.306667pt;}
.yb9{bottom:333.626667pt;}
.y1f{bottom:338.266667pt;}
.y167{bottom:339.093330pt;}
.y164{bottom:340.426663pt;}
.y21e{bottom:343.226667pt;}
.y4d{bottom:345.306667pt;}
.y163{bottom:347.066667pt;}
.y1c6{bottom:347.226667pt;}
.y1aa{bottom:347.866667pt;}
.yb8{bottom:348.986667pt;}
.y21d{bottom:358.586667pt;}
.y4c{bottom:360.666667pt;}
.y1dd{bottom:362.586667pt;}
.y162{bottom:367.866667pt;}
.y1a6{bottom:368.093330pt;}
.yb4{bottom:369.026663pt;}
.y158{bottom:369.226667pt;}
.y21c{bottom:373.786667pt;}
.y4b{bottom:376.026667pt;}
.y1a5{bottom:377.306667pt;}
.y74{bottom:380.506667pt;}
.y1c5{bottom:382.106667pt;}
.y1e{bottom:385.146667pt;}
.y1dc{bottom:385.946667pt;}
.yb3{bottom:386.266667pt;}
.y157{bottom:387.866667pt;}
.y4a{bottom:391.386667pt;}
.y73{bottom:395.906667pt;}
.y21b{bottom:397.186667pt;}
.y1c4{bottom:397.506667pt;}
.y1d{bottom:398.946667pt;}
.y1a4{bottom:399.106667pt;}
.y49{bottom:406.626667pt;}
.y1a0{bottom:411.293330pt;}
.y19f{bottom:412.560000pt;}
.y1c3{bottom:412.866667pt;}
.y72{bottom:416.066667pt;}
.y19e{bottom:419.266667pt;}
.y1c{bottom:420.706667pt;}
.yb2{bottom:421.826667pt;}
.y48{bottom:421.986667pt;}
.y156{bottom:422.946667pt;}
.y1db{bottom:433.346667pt;}
.y1b{bottom:434.626667pt;}
.yb1{bottom:437.186667pt;}
.y155{bottom:438.146667pt;}
.y1c2{bottom:444.226667pt;}
.y19d{bottom:444.546667pt;}
.y47{bottom:445.346667pt;}
.y1a{bottom:448.386667pt;}
.y1da{bottom:448.706667pt;}
.yb0{bottom:452.546667pt;}
.y154{bottom:453.506667pt;}
.y11a{bottom:456.093330pt;}
.y1c1{bottom:459.586667pt;}
.y19c{bottom:459.746667pt;}
.y21a{bottom:459.906667pt;}
.y119{bottom:461.346667pt;}
.y19{bottom:462.146667pt;}
.y153{bottom:468.866667pt;}
.ya8{bottom:472.559996pt;}
.y9f{bottom:472.560000pt;}
.y1c0{bottom:474.946667pt;}
.y18{bottom:475.906667pt;}
.y1f9{bottom:476.866667pt;}
.y118{bottom:478.146667pt;}
.y192{bottom:479.893333pt;}
.y216{bottom:480.093330pt;}
.y152{bottom:484.226667pt;}
.y215{bottom:488.066667pt;}
.y116{bottom:488.226663pt;}
.y17{bottom:489.826667pt;}
.y114{bottom:490.960000pt;}
.y46{bottom:492.706667pt;}
.y113{bottom:494.946667pt;}
.y191{bottom:498.626667pt;}
.y16{bottom:503.586667pt;}
.y149{bottom:504.426663pt;}
.y45{bottom:508.066667pt;}
.y214{bottom:513.826667pt;}
.y10a{bottom:516.559996pt;}
.y15{bottom:517.346667pt;}
.y148{bottom:523.106667pt;}
.y44{bottom:523.426667pt;}
.y190{bottom:525.666667pt;}
.y213{bottom:529.186667pt;}
.y9a{bottom:529.359996pt;}
.y14{bottom:531.106667pt;}
.y109{bottom:535.266667pt;}
.y99{bottom:537.346667pt;}
.y43{bottom:538.626667pt;}
.y18f{bottom:541.026667pt;}
.y212{bottom:544.546667pt;}
.y13{bottom:545.026667pt;}
.y42{bottom:553.986667pt;}
.y241{bottom:554.146667pt;}
.y18e{bottom:556.386667pt;}
.y147{bottom:557.986667pt;}
.y12{bottom:558.786667pt;}
.y211{bottom:559.906667pt;}
.y98{bottom:563.586667pt;}
.y240{bottom:566.466667pt;}
.y108{bottom:568.706667pt;}
.y41{bottom:569.346667pt;}
.y18d{bottom:571.746667pt;}
.y11{bottom:572.546667pt;}
.y146{bottom:573.346667pt;}
.y96{bottom:575.626663pt;}
.y94{bottom:578.293330pt;}
.y23f{bottom:578.786667pt;}
.y209{bottom:579.893330pt;}
.y103{bottom:580.693330pt;}
.y93{bottom:582.306667pt;}
.y40{bottom:584.706667pt;}
.y10{bottom:586.306667pt;}
.y145{bottom:588.706667pt;}
.y23e{bottom:590.946667pt;}
.y182{bottom:591.759996pt;}
.y102{bottom:593.986667pt;}
.y208{bottom:594.626667pt;}
.y92{bottom:597.986667pt;}
.y3f{bottom:600.066667pt;}
.yf{bottom:600.226667pt;}
.y181{bottom:601.186667pt;}
.y23d{bottom:603.266667pt;}
.y144{bottom:604.066667pt;}
.y18c{bottom:610.493333pt;}
.y91{bottom:613.373333pt;}
.y3e{bottom:615.453333pt;}
.yff{bottom:617.493333pt;}
.y143{bottom:619.453333pt;}
.yfe{bottom:625.533333pt;}
.y23c{bottom:627.773333pt;}
.y207{bottom:630.013333pt;}
.y3d{bottom:630.653333pt;}
.y86{bottom:633.493326pt;}
.y13a{bottom:639.426659pt;}
.y23b{bottom:640.093333pt;}
.ye{bottom:644.413333pt;}
.y206{bottom:645.373333pt;}
.y3c{bottom:645.693333pt;}
.yed{bottom:646.959993pt;}
.y180{bottom:646.973333pt;}
.y85{bottom:650.813333pt;}
.y23a{bottom:652.253333pt;}
.y139{bottom:656.733333pt;}
.yd{bottom:659.773333pt;}
.y3b{bottom:660.733333pt;}
.y71{bottom:662.173333pt;}
.y1f8{bottom:662.973333pt;}
.y239{bottom:664.573333pt;}
.yec{bottom:665.693333pt;}
.yc{bottom:675.133333pt;}
.y3a{bottom:675.773333pt;}
.y205{bottom:675.933333pt;}
.y238{bottom:676.893333pt;}
.y70{bottom:677.533333pt;}
.y17f{bottom:678.333333pt;}
.y1bf{bottom:684.253333pt;}
.y84{bottom:687.293333pt;}
.y237{bottom:689.053333pt;}
.yb{bottom:690.493333pt;}
.y39{bottom:690.813333pt;}
.y204{bottom:691.293333pt;}
.y138{bottom:692.253333pt;}
.y6f{bottom:692.733333pt;}
.y17e{bottom:698.333333pt;}
.yeb{bottom:699.293333pt;}
.y1be{bottom:699.613333pt;}
.y236{bottom:701.373333pt;}
.y83{bottom:702.653333pt;}
.y38{bottom:705.693333pt;}
.y203{bottom:706.653333pt;}
.y137{bottom:707.453333pt;}
.y69{bottom:712.693326pt;}
.y235{bottom:713.693333pt;}
.y1bd{bottom:714.973333pt;}
.y1d9{bottom:715.933333pt;}
.ya{bottom:716.093333pt;}
.y82{bottom:717.853333pt;}
.ye3{bottom:719.293326pt;}
.y37{bottom:720.733333pt;}
.y202{bottom:722.013333pt;}
.y234{bottom:725.853333pt;}
.y12c{bottom:727.626659pt;}
.y1bc{bottom:730.333333pt;}
.y1d8{bottom:731.293333pt;}
.y81{bottom:733.213333pt;}
.y36{bottom:735.773333pt;}
.ye2{bottom:736.573333pt;}
.y201{bottom:737.373333pt;}
.y233{bottom:738.173333pt;}
.y1bb{bottom:745.693333pt;}
.y12b{bottom:746.333333pt;}
.y1d7{bottom:746.653333pt;}
.y80{bottom:748.573333pt;}
.y68{bottom:750.333333pt;}
.y232{bottom:750.493333pt;}
.y35{bottom:750.813333pt;}
.y200{bottom:752.733333pt;}
.y1ba{bottom:761.053333pt;}
.y1d6{bottom:762.013333pt;}
.y231{bottom:762.653333pt;}
.y7f{bottom:763.933333pt;}
.ye1{bottom:764.093333pt;}
.y67{bottom:765.693333pt;}
.y34{bottom:765.853333pt;}
.y1ff{bottom:772.733333pt;}
.y9{bottom:774.813333pt;}
.y230{bottom:774.973333pt;}
.yda{bottom:776.093326pt;}
.y1b9{bottom:776.253333pt;}
.y1d5{bottom:777.373333pt;}
.y7e{bottom:779.293333pt;}
.y33{bottom:780.893333pt;}
.y12a{bottom:784.573333pt;}
.y61{bottom:785.693326pt;}
.y22f{bottom:787.293333pt;}
.y1b8{bottom:791.613333pt;}
.yd9{bottom:792.093333pt;}
.y1d4{bottom:792.573333pt;}
.y60{bottom:793.693333pt;}
.y7d{bottom:794.653333pt;}
.y32{bottom:795.773333pt;}
.y22e{bottom:799.453333pt;}
.y129{bottom:799.933333pt;}
.y8{bottom:800.893333pt;}
.y1b7{bottom:806.973333pt;}
.y1d3{bottom:807.933333pt;}
.y31{bottom:810.813333pt;}
.y22d{bottom:811.773333pt;}
.y128{bottom:815.333333pt;}
.y7{bottom:819.333333pt;}
.yd8{bottom:819.813333pt;}
.y1b6{bottom:822.373333pt;}
.y5f{bottom:823.333333pt;}
.y22c{bottom:824.133333pt;}
.y30{bottom:825.893333pt;}
.y127{bottom:830.693333pt;}
.yd7{bottom:835.173333pt;}
.y22b{bottom:836.293333pt;}
.y1b5{bottom:837.573333pt;}
.y6{bottom:838.373333pt;}
.y5e{bottom:838.693333pt;}
.y2f{bottom:840.933333pt;}
.y7c{bottom:845.893333pt;}
.y126{bottom:846.053333pt;}
.y5d{bottom:854.053333pt;}
.yc6{bottom:855.093326pt;}
.y2e{bottom:855.973333pt;}
.y22a{bottom:857.253333pt;}
.y125{bottom:861.413333pt;}
.y5c{bottom:869.413333pt;}
.y2d{bottom:871.013333pt;}
.yc5{bottom:873.893333pt;}
.y124{bottom:876.613333pt;}
.y5b{bottom:884.613333pt;}
.y2c{bottom:885.893333pt;}
.y123{bottom:891.973333pt;}
.y5{bottom:895.013333pt;}
.y5a{bottom:899.973333pt;}
.y2b{bottom:900.933333pt;}
.y229{bottom:904.133333pt;}
.y17b{bottom:906.159993pt;}
.y122{bottom:907.333333pt;}
.y17a{bottom:914.213333pt;}
.y59{bottom:915.333333pt;}
.y2a{bottom:915.973333pt;}
.y228{bottom:918.053333pt;}
.y3{bottom:920.933333pt;}
.y58{bottom:930.693333pt;}
.y29{bottom:931.013333pt;}
.y227{bottom:931.813333pt;}
.y2{bottom:933.093333pt;}
.y1{bottom:945.253333pt;}
.y28{bottom:961.413333pt;}
.h26{height:14.266663pt;}
.h28{height:15.799793pt;}
.h68{height:17.466386pt;}
.h6c{height:18.866882pt;}
.hf{height:20.800320pt;}
.h8d{height:20.800322pt;}
.h6a{height:20.800324pt;}
.h3d{height:20.800349pt;}
.h8b{height:20.800353pt;}
.h90{height:21.133471pt;}
.h9a{height:21.133477pt;}
.h41{height:21.600030pt;}
.h6f{height:21.600180pt;}
.hbd{height:21.900115pt;}
.hb5{height:21.949609pt;}
.hc3{height:22.732804pt;}
.h2a{height:22.866244pt;}
.h5e{height:24.000167pt;}
.h13{height:26.200546pt;}
.h18{height:26.266786pt;}
.ha3{height:27.799452pt;}
.ha8{height:27.866648pt;}
.hb8{height:28.558382pt;}
.hc1{height:28.568384pt;}
.h95{height:28.666321pt;}
.h7c{height:28.672735pt;}
.h88{height:29.191111pt;}
.hae{height:29.205641pt;}
.h22{height:29.237232pt;}
.h20{height:29.251785pt;}
.h3f{height:29.511745pt;}
.h16{height:29.725739pt;}
.h14{height:29.740535pt;}
.h1b{height:29.800892pt;}
.h19{height:29.815726pt;}
.h93{height:29.984379pt;}
.h91{height:29.999305pt;}
.h49{height:30.089993pt;}
.h47{height:30.104971pt;}
.ha6{height:30.106151pt;}
.h9e{height:30.106277pt;}
.ha4{height:30.121137pt;}
.h9c{height:30.121263pt;}
.h5a{height:30.171346pt;}
.hab{height:30.178926pt;}
.h58{height:30.186364pt;}
.ha9{height:30.193948pt;}
.h82{height:30.202540pt;}
.h7f{height:30.217573pt;}
.h5f{height:30.234511pt;}
.h6d{height:30.239388pt;}
.hb6{height:30.244486pt;}
.hbf{height:30.255078pt;}
.hb3{height:30.259541pt;}
.hbb{height:30.270138pt;}
.h53{height:30.332173pt;}
.hc6{height:30.337775pt;}
.hc4{height:30.352876pt;}
.h7b{height:30.365590pt;}
.h31{height:30.380705pt;}
.h75{height:30.491023pt;}
.h4d{height:30.504250pt;}
.h73{height:30.506200pt;}
.h2d{height:30.515856pt;}
.h2b{height:30.531045pt;}
.h44{height:30.646340pt;}
.h42{height:30.661595pt;}
.h62{height:30.941498pt;}
.h98{height:31.044954pt;}
.h96{height:31.060407pt;}
.h36{height:31.360989pt;}
.h11{height:31.483712pt;}
.h77{height:31.808616pt;}
.h84{height:33.299562pt;}
.hb{height:33.918750pt;}
.h5{height:36.431250pt;}
.h61{height:36.799275pt;}
.hba{height:38.733124pt;}
.h4c{height:40.333783pt;}
.h52{height:41.400007pt;}
.h30{height:41.466240pt;}
.h7a{height:41.466247pt;}
.h35{height:41.466589pt;}
.he{height:42.084375pt;}
.h87{height:42.531855pt;}
.had{height:42.531858pt;}
.h7e{height:42.532449pt;}
.ha1{height:42.599053pt;}
.h1f{height:42.599061pt;}
.h2{height:43.215000pt;}
.h9b{height:43.865269pt;}
.hc8{height:44.073883pt;}
.h3{height:44.941250pt;}
.h71{height:45.684973pt;}
.h72{height:45.732494pt;}
.hc{height:47.085938pt;}
.h8a{height:47.715461pt;}
.h24{height:47.790850pt;}
.h6{height:48.375000pt;}
.h46{height:48.999374pt;}
.h4b{height:49.065326pt;}
.h66{height:49.131848pt;}
.h57{height:49.131852pt;}
.h5c{height:49.197982pt;}
.ha0{height:49.211382pt;}
.h85{height:49.281451pt;}
.hb9{height:49.404878pt;}
.h56{height:49.468351pt;}
.hc2{height:49.486768pt;}
.h34{height:49.547500pt;}
.h51{height:49.748989pt;}
.h78{height:49.840283pt;}
.h89{height:50.532610pt;}
.haf{height:50.557763pt;}
.h23{height:50.612450pt;}
.h21{height:50.637643pt;}
.h40{height:50.986616pt;}
.ha2{height:51.011995pt;}
.h8c{height:51.106641pt;}
.h39{height:51.146233pt;}
.h3c{height:51.270133pt;}
.h17{height:51.378727pt;}
.h15{height:51.404301pt;}
.h1c{height:51.508623pt;}
.h1a{height:51.534262pt;}
.h94{height:51.803174pt;}
.h92{height:51.828959pt;}
.h29{height:51.837909pt;}
.h4a{height:51.962172pt;}
.h48{height:51.988036pt;}
.h67{height:52.001727pt;}
.ha7{height:52.036241pt;}
.ha5{height:52.062142pt;}
.h5b{height:52.102660pt;}
.h9f{height:52.116851pt;}
.h59{height:52.128594pt;}
.h4{height:52.134375pt;}
.h9d{height:52.142793pt;}
.hac{height:52.162028pt;}
.haa{height:52.187992pt;}
.h83{height:52.191056pt;}
.h80{height:52.217035pt;}
.h60{height:52.265754pt;}
.hb7{height:52.321771pt;}
.hb4{height:52.347815pt;}
.h55{height:52.388991pt;}
.hc0{height:52.408496pt;}
.h54{height:52.415068pt;}
.hbc{height:52.434583pt;}
.h33{height:52.472814pt;}
.h32{height:52.498932pt;}
.hc7{height:52.503876pt;}
.hc5{height:52.530010pt;}
.h50{height:52.686198pt;}
.h4e{height:52.712423pt;}
.h69{height:52.723069pt;}
.hb2{height:52.776337pt;}
.h76{height:52.782883pt;}
.h74{height:52.809156pt;}
.h2e{height:52.812070pt;}
.h2c{height:52.838358pt;}
.h45{height:52.946825pt;}
.h43{height:52.973180pt;}
.h65{height:53.477355pt;}
.h63{height:53.503974pt;}
.h1d{height:53.535000pt;}
.h99{height:53.658892pt;}
.h97{height:53.685601pt;}
.h38{height:54.165936pt;}
.h37{height:54.192898pt;}
.h3b{height:54.297152pt;}
.h3a{height:54.324179pt;}
.h8f{height:54.428257pt;}
.h12{height:54.555784pt;}
.h6b{height:54.582939pt;}
.h70{height:55.993809pt;}
.h27{height:56.081700pt;}
.hb1{height:57.268154pt;}
.h81{height:58.170845pt;}
.h1e{height:58.238750pt;}
.h64{height:60.234095pt;}
.h7{height:61.940000pt;}
.h9{height:62.781250pt;}
.h2f{height:62.812500pt;}
.h8{height:64.500000pt;}
.h3e{height:64.593400pt;}
.hbe{height:65.502217pt;}
.h6e{height:68.564527pt;}
.h8e{height:68.885571pt;}
.h10{height:69.013161pt;}
.hb0{height:71.570875pt;}
.h25{height:71.683953pt;}
.ha{height:72.655000pt;}
.h5d{height:73.734697pt;}
.h86{height:73.860096pt;}
.h7d{height:74.378863pt;}
.h79{height:74.758004pt;}
.h4f{height:86.254309pt;}
.h1{height:1122.000000pt;}
.hd{height:1122.238213pt;}
.h0{height:1122.240000pt;}
.w7{width:11.999954pt;}
.w8{width:14.267146pt;}
.w1e{width:15.800200pt;}
.w1d{width:15.867400pt;}
.w17{width:30.533754pt;}
.w19{width:31.399676pt;}
.w18{width:38.666870pt;}
.w26{width:41.465773pt;}
.w22{width:44.466107pt;}
.w23{width:44.466109pt;}
.w16{width:49.133199pt;}
.w13{width:53.401381pt;}
.w20{width:65.265641pt;}
.w3{width:66.535785pt;}
.w27{width:72.530523pt;}
.w1c{width:83.531999pt;}
.w11{width:92.802915pt;}
.wc{width:93.268294pt;}
.w10{width:100.137946pt;}
.wd{width:104.802910pt;}
.wa{width:109.132978pt;}
.w14{width:111.801923pt;}
.w1f{width:116.130947pt;}
.w25{width:116.601346pt;}
.w1b{width:123.666807pt;}
.wb{width:131.999459pt;}
.w29{width:137.462674pt;}
.w1a{width:138.539427pt;}
.w24{width:141.939845pt;}
.w6{width:142.870320pt;}
.w2c{width:149.388961pt;}
.w15{width:183.195428pt;}
.w9{width:183.799261pt;}
.w21{width:191.340213pt;}
.w5{width:195.201078pt;}
.we{width:226.537182pt;}
.w12{width:241.402845pt;}
.w4{width:242.402333pt;}
.w28{width:286.864473pt;}
.w2a{width:324.003118pt;}
.w2b{width:363.198936pt;}
.wf{width:409.266963pt;}
.w2{width:793.918333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:2.054747pt;}
.x2d{left:3.075651pt;}
.x35{left:3.988183pt;}
.x12{left:5.642524pt;}
.x40{left:7.165951pt;}
.x63{left:8.650520pt;}
.x49{left:9.819425pt;}
.x2c{left:10.814207pt;}
.x3e{left:12.688441pt;}
.x48{left:13.727718pt;}
.x84{left:15.205677pt;}
.x3a{left:17.091361pt;}
.x50{left:18.088846pt;}
.x64{left:19.687759pt;}
.x42{left:22.122848pt;}
.x4f{left:23.252326pt;}
.x9f{left:24.612261pt;}
.x8c{left:25.622458pt;}
.xa7{left:27.559298pt;}
.x6f{left:29.134194pt;}
.x30{left:30.227100pt;}
.x9d{left:31.371427pt;}
.x3f{left:32.378524pt;}
.x18{left:33.743636pt;}
.x68{left:36.077656pt;}
.x13{left:39.497261pt;}
.xa0{left:41.407086pt;}
.x41{left:42.371101pt;}
.x44{left:43.890208pt;}
.x38{left:45.057477pt;}
.x45{left:47.684410pt;}
.x98{left:50.923910pt;}
.x1e{left:52.053179pt;}
.x8a{left:53.709518pt;}
.x2a{left:55.128490pt;}
.x3d{left:57.196841pt;}
.xb1{left:58.753433pt;}
.x58{left:60.127746pt;}
.x6a{left:61.550987pt;}
.x39{left:63.437403pt;}
.x88{left:64.683853pt;}
.x86{left:65.870582pt;}
.xbf{left:67.220664pt;}
.x97{left:68.297808pt;}
.x76{left:70.159612pt;}
.x2e{left:73.318482pt;}
.x2f{left:74.243597pt;}
.x1a{left:75.568673pt;}
.x2b{left:77.385553pt;}
.x73{left:78.855186pt;}
.x29{left:79.931941pt;}
.x87{left:81.275583pt;}
.x1f{left:83.490210pt;}
.xb6{left:85.197317pt;}
.x6c{left:86.124946pt;}
.x19{left:87.093087pt;}
.x85{left:88.201894pt;}
.x5c{left:90.058674pt;}
.x61{left:91.214900pt;}
.xae{left:93.415610pt;}
.x83{left:96.052241pt;}
.xb4{left:98.585031pt;}
.x66{left:105.831082pt;}
.x5b{left:107.631163pt;}
.xb0{left:109.918504pt;}
.x5d{left:111.352255pt;}
.x77{left:113.934991pt;}
.x5e{left:116.102331pt;}
.x5a{left:119.457828pt;}
.x20{left:120.504416pt;}
.x9c{left:122.238143pt;}
.xbc{left:124.110293pt;}
.x57{left:126.865447pt;}
.x78{left:128.304536pt;}
.xbd{left:129.299358pt;}
.x59{left:130.752719pt;}
.x28{left:133.870612pt;}
.x75{left:137.160819pt;}
.xbb{left:140.672177pt;}
.xb2{left:142.258553pt;}
.x52{left:144.044422pt;}
.x74{left:145.302543pt;}
.x4e{left:150.504840pt;}
.x1{left:156.826667pt;}
.x72{left:159.407780pt;}
.xc1{left:163.226667pt;}
.x69{left:165.743449pt;}
.xc0{left:168.346667pt;}
.x55{left:170.114669pt;}
.xe{left:175.706667pt;}
.x4{left:178.426667pt;}
.x10{left:179.386667pt;}
.x67{left:181.689301pt;}
.x93{left:183.226667pt;}
.xb{left:185.146667pt;}
.x1d{left:186.206921pt;}
.xb9{left:188.506667pt;}
.x6b{left:189.455398pt;}
.x7{left:191.386667pt;}
.x23{left:192.346667pt;}
.x24{left:194.906667pt;}
.xb3{left:197.639528pt;}
.x6{left:201.466667pt;}
.x26{left:203.226667pt;}
.x54{left:205.863210pt;}
.xad{left:208.213332pt;}
.xaf{left:215.556121pt;}
.x65{left:219.599061pt;}
.x2{left:223.866667pt;}
.x7d{left:227.946667pt;}
.xaa{left:229.546665pt;}
.x17{left:232.529185pt;}
.x7a{left:235.226667pt;}
.x3{left:236.186667pt;}
.x9{left:241.466667pt;}
.x6d{left:246.106667pt;}
.xa4{left:248.079998pt;}
.xc{left:249.306667pt;}
.x3c{left:256.413332pt;}
.x8f{left:258.613332pt;}
.xa{left:261.826667pt;}
.xb5{left:263.643145pt;}
.x7e{left:266.626667pt;}
.x16{left:270.346665pt;}
.x90{left:274.466667pt;}
.x4d{left:278.346665pt;}
.x8{left:279.426667pt;}
.x9a{left:286.466667pt;}
.x1c{left:294.013332pt;}
.x96{left:295.946665pt;}
.x7b{left:296.879998pt;}
.x37{left:299.613332pt;}
.x71{left:301.679998pt;}
.x91{left:315.946663pt;}
.x27{left:320.079996pt;}
.x82{left:322.346663pt;}
.xa6{left:324.546663pt;}
.x7c{left:327.426667pt;}
.x53{left:329.700200pt;}
.x80{left:330.626667pt;}
.x92{left:331.746667pt;}
.x9e{left:333.213330pt;}
.x6e{left:335.613330pt;}
.x94{left:337.213330pt;}
.x56{left:338.700484pt;}
.x4b{left:340.879996pt;}
.x60{left:343.146663pt;}
.x47{left:344.879996pt;}
.xf{left:348.866667pt;}
.xd{left:349.826667pt;}
.x32{left:353.213330pt;}
.x11{left:358.346663pt;}
.x5{left:360.066667pt;}
.xa2{left:363.106667pt;}
.x33{left:365.186667pt;}
.xa3{left:389.013330pt;}
.x95{left:393.346667pt;}
.x43{left:394.813330pt;}
.x9b{left:408.546663pt;}
.x34{left:418.946667pt;}
.x15{left:424.893333pt;}
.x81{left:431.746663pt;}
.x36{left:433.213333pt;}
.x4a{left:438.173333pt;}
.x62{left:443.293333pt;}
.x4c{left:445.693333pt;}
.x70{left:447.453333pt;}
.xa1{left:449.853333pt;}
.x8b{left:453.373333pt;}
.x89{left:460.893333pt;}
.xa8{left:462.013333pt;}
.x31{left:462.973333pt;}
.xbe{left:464.573333pt;}
.x3b{left:483.453333pt;}
.x79{left:484.893333pt;}
.x99{left:487.293333pt;}
.x21{left:489.213333pt;}
.x51{left:504.893333pt;}
.x1b{left:512.733333pt;}
.x7f{left:517.853333pt;}
.x46{left:526.813333pt;}
.x25{left:528.413333pt;}
.xa5{left:534.973333pt;}
.xab{left:553.533333pt;}
.xb7{left:571.453333pt;}
.xb8{left:591.653333pt;}
.xac{left:593.253333pt;}
.x5f{left:596.293333pt;}
.x8d{left:611.493333pt;}
.x22{left:613.413333pt;}
.x8e{left:614.853333pt;}
.xa9{left:619.013333pt;}
.xba{left:636.933333pt;}
}


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