
/* 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_b0e087ee8f19.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_cc91894a41ec.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_2a5edb08b46f.woff")format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_55306fea6d52.woff")format("woff");}.ff4{font-family:ff4;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1906ec28d189.woff")format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_61aab2e135b4.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_0cb3cf16113d.woff")format("woff");}.ff7{font-family:ff7;line-height:1.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_4e643f569198.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_e77b1474347c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_3f04bbf4f866.woff")format("woff");}.ffa{font-family:ffa;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_7cfa9e420045.woff")format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_aedf5b6c116f.woff")format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_e1fd221d4522.woff")format("woff");}.ffd{font-family:ffd;line-height:0.864258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_223665dd775a.woff")format("woff");}.ffe{font-family:ffe;line-height:0.729000;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;}
.m10{transform:matrix(0.000000,-0.249743,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249743,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249743,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.249882,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249882,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249882,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.250867,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250867,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250867,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250905,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250905,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250905,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.250917,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250917,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250917,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.250925,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250925,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250925,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v7{vertical-align:-33.120026px;}
.v3{vertical-align:-27.360022px;}
.v4{vertical-align:-24.480020px;}
.v1c{vertical-align:-20.160016px;}
.v10{vertical-align:-15.840013px;}
.v9{vertical-align:-14.397612px;}
.v8{vertical-align:-12.960010px;}
.vd{vertical-align:-10.080008px;}
.v1{vertical-align:-8.640007px;}
.v5{vertical-align:-5.760005px;}
.v18{vertical-align:-1.440001px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.440001px;}
.v6{vertical-align:5.760005px;}
.v16{vertical-align:11.520009px;}
.v11{vertical-align:15.840013px;}
.va{vertical-align:25.920021px;}
.v2{vertical-align:27.360022px;}
.v19{vertical-align:31.680025px;}
.v1b{vertical-align:33.120026px;}
.vc{vertical-align:36.000029px;}
.v17{vertical-align:37.440030px;}
.vb{vertical-align:41.760033px;}
.v13{vertical-align:43.200035px;}
.v15{vertical-align:47.520038px;}
.v14{vertical-align:57.600046px;}
.v1a{vertical-align:59.040047px;}
.vf{vertical-align:63.360051px;}
.ve{vertical-align:77.760062px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.015840px;}
.ls2c{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.250489px;}
.ls2b{letter-spacing:0.250576px;}
.lsc{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.380011px;}
.ls8{letter-spacing:0.501120px;}
.ls9{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.504141px;}
.lsa{letter-spacing:0.558720px;}
.ls18{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.648001px;}
.ls2d{letter-spacing:0.675721px;}
.ls23{letter-spacing:0.684001px;}
.ls6{letter-spacing:0.684841px;}
.ls1e{letter-spacing:0.698401px;}
.ls2{letter-spacing:0.720001px;}
.ls12{letter-spacing:0.761941px;}
.ls19{letter-spacing:0.792001px;}
.ls17{letter-spacing:0.825340px;}
.ls29{letter-spacing:0.966299px;}
.ls20{letter-spacing:1.188001px;}
.lsb{letter-spacing:1.296001px;}
.ls1{letter-spacing:1.440001px;}
.ls15{letter-spacing:2.088002px;}
.ls4{letter-spacing:2.160002px;}
.ls1d{letter-spacing:2.498402px;}
.lse{letter-spacing:2.520002px;}
.ls1a{letter-spacing:2.664002px;}
.lsf{letter-spacing:3.600003px;}
.ls1c{letter-spacing:3.628803px;}
.ls1b{letter-spacing:4.456804px;}
.ls7{letter-spacing:5.040004px;}
.ls27{letter-spacing:6.480005px;}
.ls14{letter-spacing:7.920006px;}
.ls22{letter-spacing:12.456010px;}
.ls13{letter-spacing:16.581433px;}
.ls10{letter-spacing:18.000014px;}
.ls3{letter-spacing:19.440016px;}
.ls1f{letter-spacing:19.656016px;}
.ls11{letter-spacing:36.789218px;}
.ls24{letter-spacing:168.112934px;}
.ls16{letter-spacing:177.395438px;}
.ls21{letter-spacing:179.632944px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-196.334258px;}
.wsa{word-spacing:-55.944045px;}
.ws4{word-spacing:-28.440023px;}
.ws17{word-spacing:-21.407963px;}
.ws16{word-spacing:-19.545306px;}
.ws15{word-spacing:-18.938821px;}
.ws5{word-spacing:-18.720015px;}
.ws1b{word-spacing:-18.504015px;}
.ws13{word-spacing:-18.377038px;}
.wsc{word-spacing:-18.329115px;}
.ws9{word-spacing:-18.288015px;}
.ws7{word-spacing:-18.000014px;}
.ws12{word-spacing:-17.765882px;}
.ws1a{word-spacing:-17.586072px;}
.wsb{word-spacing:-17.393584px;}
.ws1e{word-spacing:-15.840013px;}
.ws2{word-spacing:-15.786786px;}
.ws11{word-spacing:-15.686713px;}
.ws34{word-spacing:-15.120012px;}
.ws18{word-spacing:-13.687352px;}
.wse{word-spacing:-13.587272px;}
.ws2c{word-spacing:-13.148121px;}
.ws8{word-spacing:-12.600010px;}
.ws33{word-spacing:-12.130586px;}
.ws24{word-spacing:-12.130498px;}
.ws6{word-spacing:-11.880010px;}
.ws2a{word-spacing:-11.614093px;}
.ws28{word-spacing:-11.570058px;}
.wsd{word-spacing:-11.277824px;}
.ws1d{word-spacing:-11.088009px;}
.ws26{word-spacing:-10.957167px;}
.ws10{word-spacing:-10.440008px;}
.ws2e{word-spacing:-10.255006px;}
.ws27{word-spacing:-10.167335px;}
.ws35{word-spacing:-9.720008px;}
.ws29{word-spacing:-9.222127px;}
.ws20{word-spacing:-9.187207px;}
.ws2b{word-spacing:-8.239393px;}
.ws2f{word-spacing:-6.574060px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.170361px;}
.ws0{word-spacing:0.272578px;}
.ws1c{word-spacing:6.077813px;}
.ws1f{word-spacing:13.470140px;}
.ws23{word-spacing:26.312200px;}
.ws25{word-spacing:36.001784px;}
.ws2d{word-spacing:36.002178px;}
.ws21{word-spacing:46.472216px;}
.wsf{word-spacing:86.831023px;}
.ws30{word-spacing:103.440391px;}
.ws31{word-spacing:103.440785px;}
.ws32{word-spacing:117.789156px;}
.ws19{word-spacing:162.957095px;}
.ws22{word-spacing:192.697973px;}
._30{margin-left:-177.395438px;}
._41{margin-left:-21.140989px;}
._3a{margin-left:-19.243836px;}
._2c{margin-left:-18.000014px;}
._38{margin-left:-16.510119px;}
._3{margin-left:-12.992866px;}
._4{margin-left:-10.903104px;}
._2f{margin-left:-9.693877px;}
._6{margin-left:-8.449906px;}
._2{margin-left:-6.541862px;}
._45{margin-left:-5.532201px;}
._c{margin-left:-4.429386px;}
._1{margin-left:-2.907494px;}
._0{margin-left:-1.817184px;}
._7{width:1.419675px;}
._e{width:2.469912px;}
._5{width:3.634368px;}
._f{width:4.663747px;}
._10{width:5.843184px;}
._11{width:7.769726px;}
._a{width:9.483429px;}
._12{width:10.570644px;}
._17{width:12.358156px;}
._2b{width:13.496985px;}
._14{width:14.513811px;}
._13{width:15.736958px;}
._16{width:16.957522px;}
._b{width:18.682923px;}
._d{width:19.705089px;}
._23{width:21.121961px;}
._15{width:22.176018px;}
._18{width:23.396163px;}
._19{width:24.464261px;}
._27{width:25.795675px;}
._29{width:27.257805px;}
._28{width:28.806058px;}
._2a{width:29.822608px;}
._26{width:30.905207px;}
._1c{width:32.437535px;}
._1d{width:33.942537px;}
._9{width:37.252272px;}
._1a{width:38.701540px;}
._1b{width:40.205176px;}
._24{width:41.509542px;}
._25{width:42.742727px;}
._8{width:45.032091px;}
._3c{width:52.069788px;}
._22{width:55.358447px;}
._21{width:58.425700px;}
._40{width:61.835628px;}
._44{width:66.960054px;}
._3e{width:71.109245px;}
._35{width:73.700441px;}
._3f{width:75.656482px;}
._20{width:83.282030px;}
._1e{width:84.397394px;}
._1f{width:86.231887px;}
._2e{width:109.930384px;}
._2d{width:114.834283px;}
._42{width:132.708965px;}
._39{width:138.235892px;}
._43{width:140.225336px;}
._31{width:181.981049px;}
._33{width:198.404647px;}
._37{width:215.322098px;}
._36{width:216.344246px;}
._3d{width:221.656703px;}
._3b{width:226.172381px;}
._34{width:234.000187px;}
._32{width:239.917944px;}
._46{width:846.000677px;}
.fc8{color:rgb(0,255,0);}
.fc7{color:rgb(0,147,0);}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(214,49,255);}
.fc3{color:rgb(0,220,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(91,75,75);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs28{font-size:23.647699px;}
.fsf{font-size:27.371542px;}
.fs22{font-size:29.008823px;}
.fs26{font-size:29.638104px;}
.fs21{font-size:36.573149px;}
.fsd{font-size:36.658109px;}
.fs24{font-size:36.888510px;}
.fs2a{font-size:38.880031px;}
.fs20{font-size:39.414272px;}
.fse{font-size:40.567712px;}
.fs23{font-size:41.618913px;}
.fs12{font-size:41.760033px;}
.fs25{font-size:41.777313px;}
.fs8{font-size:44.640036px;}
.fs1b{font-size:46.732357px;}
.fs27{font-size:47.295398px;}
.fs7{font-size:47.520038px;}
.fs10{font-size:48.875079px;}
.fs1d{font-size:49.235079px;}
.fs1f{font-size:50.400040px;}
.fs2{font-size:56.787000px;}
.fs29{font-size:60.480048px;}
.fsa{font-size:62.566850px;}
.fs15{font-size:62.746850px;}
.fs1e{font-size:63.259251px;}
.fs16{font-size:63.906051px;}
.fs11{font-size:65.008852px;}
.fs17{font-size:66.104453px;}
.fs18{font-size:68.125255px;}
.fs9{font-size:69.120055px;}
.fs14{font-size:69.934856px;}
.fs19{font-size:70.273256px;}
.fs1a{font-size:70.306856px;}
.fs3{font-size:72.000058px;}
.fs13{font-size:73.209659px;}
.fsb{font-size:73.316459px;}
.fsc{font-size:73.354859px;}
.fs5{font-size:74.880060px;}
.fs1c{font-size:77.007062px;}
.fs0{font-size:90.859200px;}
.fs6{font-size:108.000086px;}
.fs1{font-size:113.574000px;}
.fs4{font-size:113.760091px;}
.y0{bottom:0.000000px;}
.y152{bottom:0.359887px;}
.y8b{bottom:0.719503px;}
.y137{bottom:1.799888px;}
.y88{bottom:2.159407px;}
.yb7{bottom:2.159861px;}
.ycc{bottom:3.239489px;}
.yb5{bottom:3.239862px;}
.ye7{bottom:3.599702px;}
.yd1{bottom:4.679701px;}
.y19{bottom:23.880919px;}
.y18{bottom:44.400936px;}
.y126{bottom:90.120972px;}
.y31{bottom:91.560973px;}
.y79{bottom:98.040978px;}
.y112{bottom:98.041578px;}
.y7c{bottom:104.880984px;}
.y198{bottom:105.960985px;}
.y17{bottom:111.475500px;}
.y30{bottom:118.560995px;}
.y5e{bottom:125.041000px;}
.y16{bottom:129.409500px;}
.y125{bottom:130.801005px;}
.y197{bottom:132.961006px;}
.y78{bottom:138.361011px;}
.y111{bottom:138.361611px;}
.y15{bottom:147.342000px;}
.y2f{bottom:152.401022px;}
.y196{bottom:159.961628px;}
.yff{bottom:163.921631px;}
.y14{bottom:165.274500px;}
.y5d{bottom:165.361032px;}
.yfd{bottom:165.361632px;}
.y124{bottom:171.121037px;}
.yfe{bottom:172.201638px;}
.y47{bottom:172.561038px;}
.y77{bottom:179.041043px;}
.ya7{bottom:179.041643px;}
.ya8{bottom:186.601649px;}
.y195{bottom:186.961650px;}
.y2e{bottom:196.681057px;}
.y5c{bottom:206.041065px;}
.yfb{bottom:206.041665px;}
.y123{bottom:211.801069px;}
.yfc{bottom:212.881670px;}
.y194{bottom:213.961671px;}
.y10e{bottom:217.921674px;}
.y180{bottom:219.001075px;}
.y76{bottom:219.361075px;}
.ya6{bottom:219.361675px;}
.y110{bottom:222.961678px;}
.y46{bottom:223.321079px;}
.y10d{bottom:226.921682px;}
.yfa{bottom:234.841688px;}
.y13{bottom:237.006000px;}
.y193{bottom:240.961693px;}
.y10f{bottom:242.761694px;}
.y5b{bottom:246.361097px;}
.y2d{bottom:249.961100px;}
.y122{bottom:252.121102px;}
.y86{bottom:253.561103px;}
.y12{bottom:254.938500px;}
.y75{bottom:260.041108px;}
.ya4{bottom:260.041708px;}
.ya5{bottom:267.601714px;}
.y192{bottom:267.961714px;}
.y45{bottom:270.481116px;}
.y11{bottom:272.871000px;}
.y10c{bottom:273.361719px;}
.y5a{bottom:287.041130px;}
.y10{bottom:290.803500px;}
.y2c{bottom:291.361133px;}
.y121{bottom:292.801134px;}
.y85{bottom:294.241135px;}
.y191{bottom:294.601736px;}
.y1ae{bottom:294.961736px;}
.y81{bottom:300.001140px;}
.y74{bottom:300.361140px;}
.ya3{bottom:300.361740px;}
.y82{bottom:303.241143px;}
.yf{bottom:308.736000px;}
.y109{bottom:312.601750px;}
.y10b{bottom:317.641754px;}
.y44{bottom:318.001154px;}
.y84{bottom:320.881157px;}
.ybe{bottom:321.241157px;}
.y190{bottom:321.961758px;}
.y59{bottom:327.361162px;}
.y108{bottom:332.041766px;}
.y120{bottom:333.121166px;}
.y10a{bottom:337.441770px;}
.y73{bottom:341.041173px;}
.ya2{bottom:341.041773px;}
.y2b{bottom:344.641176px;}
.ybd{bottom:348.241179px;}
.y18f{bottom:348.961779px;}
.y83{bottom:354.361183px;}
.y89{bottom:361.921790px;}
.ye{bottom:362.535000px;}
.y43{bottom:365.161192px;}
.y58{bottom:368.041194px;}
.y107{bottom:368.041794px;}
.y11f{bottom:373.801199px;}
.ybc{bottom:375.241200px;}
.y18e{bottom:375.961801px;}
.yd{bottom:380.467500px;}
.y72{bottom:381.361205px;}
.ya1{bottom:381.361805px;}
.y87{bottom:382.082400px;}
.y95{bottom:384.241807px;}
.y2a{bottom:391.801213px;}
.ybb{bottom:402.241222px;}
.y18d{bottom:402.961822px;}
.y57{bottom:408.361227px;}
.y106{bottom:408.361827px;}
.y42{bottom:412.321230px;}
.y11e{bottom:414.121231px;}
.yc{bottom:416.332500px;}
.y80{bottom:421.681237px;}
.y71{bottom:422.041238px;}
.ya0{bottom:422.041838px;}
.y8e{bottom:424.921840px;}
.y8d{bottom:427.441842px;}
.yba{bottom:429.241243px;}
.y18c{bottom:429.961844px;}
.y29{bottom:432.841246px;}
.yb{bottom:434.265000px;}
.y8c{bottom:439.321851px;}
.y56{bottom:449.041259px;}
.y105{bottom:449.041859px;}
.ya{bottom:452.199000px;}
.y11d{bottom:454.801264px;}
.yb9{bottom:455.881265px;}
.y18b{bottom:456.961866px;}
.y41{bottom:459.481268px;}
.y7b{bottom:462.001270px;}
.y70{bottom:462.361270px;}
.y9f{bottom:462.361870px;}
.y9{bottom:470.131500px;}
.y8f{bottom:476.761881px;}
.yb8{bottom:482.881286px;}
.ycb{bottom:482.882400px;}
.y18a{bottom:483.961887px;}
.y28{bottom:486.481289px;}
.yc7{bottom:488.641891px;}
.y55{bottom:489.361291px;}
.y104{bottom:489.361891px;}
.y11c{bottom:495.121296px;}
.y7a{bottom:502.681302px;}
.y8a{bottom:502.682400px;}
.y6f{bottom:503.041302px;}
.y9e{bottom:503.041902px;}
.ybf{bottom:506.281905px;}
.y40{bottom:507.001306px;}
.ydf{bottom:507.721906px;}
.y189{bottom:510.961909px;}
.y8{bottom:514.963500px;}
.ye0{bottom:524.281919px;}
.y90{bottom:526.081921px;}
.yc0{bottom:528.601923px;}
.y54{bottom:530.041324px;}
.y103{bottom:530.041924px;}
.y27{bottom:533.641327px;}
.y11b{bottom:535.801329px;}
.y188{bottom:537.961930px;}
.y182{bottom:543.001334px;}
.y6e{bottom:543.361335px;}
.y9d{bottom:543.361935px;}
.yc8{bottom:543.721935px;}
.ycd{bottom:546.601937px;}
.y3f{bottom:554.161343px;}
.yc9{bottom:556.321945px;}
.yce{bottom:560.281948px;}
.ye1{bottom:562.081950px;}
.yc1{bottom:562.801950px;}
.y187{bottom:564.961952px;}
.yca{bottom:567.481954px;}
.y102{bottom:568.561955px;}
.y53{bottom:570.361356px;}
.ycf{bottom:571.441957px;}
.y91{bottom:575.761961px;}
.y11a{bottom:576.121361px;}
.y101{bottom:577.561962px;}
.y26{bottom:580.801365px;}
.y181{bottom:583.681367px;}
.y6d{bottom:584.041367px;}
.y9c{bottom:584.041967px;}
.y186{bottom:591.961974px;}
.yc2{bottom:597.001978px;}
.ye2{bottom:600.241980px;}
.y3e{bottom:601.321381px;}
.y52{bottom:611.041389px;}
.y119{bottom:616.801393px;}
.y1ad{bottom:618.961995px;}
.y25{bottom:621.841397px;}
.y185{bottom:624.001399px;}
.y6c{bottom:624.361399px;}
.y9b{bottom:624.361999px;}
.y92{bottom:625.442000px;}
.yc3{bottom:631.202005px;}
.ye3{bottom:638.402011px;}
.y1ac{bottom:645.962017px;}
.y3d{bottom:648.481419px;}
.y118{bottom:651.001421px;}
.y51{bottom:651.361421px;}
.y1bb{bottom:651.362021px;}
.yd8{bottom:659.642028px;}
.y6b{bottom:665.041432px;}
.y9a{bottom:665.042032px;}
.yc4{bottom:665.402032px;}
.y24{bottom:669.361435px;}
.yd7{bottom:672.602038px;}
.y1ab{bottom:672.962038px;}
.yde{bottom:673.322039px;}
.y93{bottom:674.762040px;}
.ye4{bottom:676.202041px;}
.y117{bottom:678.001442px;}
.yd6{bottom:685.562048px;}
.ydd{bottom:686.282049px;}
.y50{bottom:692.041454px;}
.y1ba{bottom:692.042054px;}
.y3c{bottom:696.001457px;}
.yd5{bottom:698.522059px;}
.ydc{bottom:699.242059px;}
.yc5{bottom:699.602060px;}
.y1aa{bottom:699.962060px;}
.yf9{bottom:703.922063px;}
.y116{bottom:705.001464px;}
.y6a{bottom:705.361464px;}
.y99{bottom:705.362064px;}
.yd4{bottom:711.842069px;}
.ydb{bottom:712.202070px;}
.ye5{bottom:714.362071px;}
.y23{bottom:722.641478px;}
.y94{bottom:724.442080px;}
.yd3{bottom:724.802080px;}
.yda{bottom:725.162080px;}
.y1a9{bottom:726.962082px;}
.y1b9{bottom:730.922085px;}
.y115{bottom:732.001486px;}
.y7{bottom:732.322500px;}
.y4f{bottom:732.361486px;}
.y1b8{bottom:732.362086px;}
.yc6{bottom:733.802087px;}
.yd9{bottom:738.482091px;}
.y3b{bottom:743.161495px;}
.y69{bottom:746.041497px;}
.yf8{bottom:746.042097px;}
.yd0{bottom:746.042400px;}
.yd2{bottom:746.762400px;}
.ye6{bottom:748.922400px;}
.y1a8{bottom:753.962103px;}
.y114{bottom:758.641507px;}
.y6{bottom:768.187500px;}
.y22{bottom:769.801516px;}
.y1b7{bottom:771.602117px;}
.y4e{bottom:773.041518px;}
.y1b6{bottom:773.042118px;}
.y98{bottom:780.241524px;}
.y1a7{bottom:780.962125px;}
.yf7{bottom:784.922128px;}
.y113{bottom:785.641529px;}
.y68{bottom:786.361529px;}
.yf6{bottom:786.362129px;}
.y3a{bottom:790.321532px;}
.y5{bottom:804.054000px;}
.y97{bottom:806.881546px;}
.y1a6{bottom:807.962146px;}
.y1b5{bottom:811.922150px;}
.y167{bottom:813.002150px;}
.y4d{bottom:813.361551px;}
.y166{bottom:813.362151px;}
.y171{bottom:814.082151px;}
.y170{bottom:814.442152px;}
.y168{bottom:816.602153px;}
.y21{bottom:816.961554px;}
.y172{bottom:817.322154px;}
.yf5{bottom:825.602160px;}
.y158{bottom:826.322161px;}
.y67{bottom:827.041562px;}
.yf4{bottom:827.042162px;}
.y96{bottom:833.881567px;}
.y1a5{bottom:834.962168px;}
.y159{bottom:835.682169px;}
.y39{bottom:837.481570px;}
.y4{bottom:839.919000px;}
.y17e{bottom:847.202178px;}
.y16d{bottom:850.802181px;}
.y20{bottom:854.041583px;}
.y1b4{bottom:854.042183px;}
.y15a{bottom:855.842185px;}
.y176{bottom:856.562185px;}
.y16e{bottom:858.002186px;}
.y161{bottom:859.082187px;}
.y17d{bottom:860.882189px;}
.yab{bottom:861.241589px;}
.y1a4{bottom:861.962190px;}
.y177{bottom:864.122191px;}
.yf3{bottom:865.922193px;}
.y66{bottom:867.361594px;}
.yf2{bottom:867.362194px;}
.y162{bottom:873.842199px;}
.y15b{bottom:875.642201px;}
.y16c{bottom:876.362201px;}
.y178{bottom:876.722201px;}
.y17b{bottom:882.482206px;}
.y38{bottom:885.001608px;}
.yaa{bottom:887.881610px;}
.y1a3{bottom:888.962211px;}
.y1b2{bottom:892.922214px;}
.y1f{bottom:894.361615px;}
.y1b3{bottom:894.362215px;}
.y15c{bottom:895.442216px;}
.y174{bottom:896.522217px;}
.y3{bottom:902.683500px;}
.y17a{bottom:903.002222px;}
.y16a{bottom:904.082223px;}
.yf1{bottom:906.602225px;}
.y65{bottom:908.041626px;}
.yf0{bottom:908.042226px;}
.y169{bottom:911.642229px;}
.y163{bottom:913.802231px;}
.y15d{bottom:915.242232px;}
.y1a2{bottom:915.962233px;}
.ya9{bottom:918.121634px;}
.y175{bottom:918.482235px;}
.y164{bottom:925.322240px;}
.y1b1{bottom:928.201643px;}
.y37{bottom:932.161646px;}
.y2{bottom:932.571000px;}
.yac{bottom:934.322247px;}
.y1e{bottom:935.041648px;}
.y15e{bottom:935.402248px;}
.y1a1{bottom:942.962254px;}
.yb3{bottom:945.122256px;}
.y173{bottom:946.202257px;}
.y184{bottom:948.001658px;}
.y64{bottom:948.361659px;}
.yef{bottom:948.362259px;}
.yb6{bottom:949.082400px;}
.yb4{bottom:949.802400px;}
.y17c{bottom:952.682262px;}
.y16b{bottom:954.122263px;}
.y165{bottom:954.842264px;}
.y15f{bottom:955.202264px;}
.y1{bottom:962.460000px;}
.y1a0{bottom:969.962276px;}
.y16f{bottom:973.202279px;}
.y179{bottom:973.922279px;}
.y17f{bottom:974.282279px;}
.y160{bottom:975.002280px;}
.y4c{bottom:975.361680px;}
.y1d{bottom:978.961683px;}
.y36{bottom:979.321683px;}
.y136{bottom:983.282400px;}
.yb2{bottom:984.002287px;}
.y150{bottom:985.442288px;}
.y14f{bottom:985.802289px;}
.yad{bottom:986.882290px;}
.y134{bottom:987.242290px;}
.y144{bottom:987.602290px;}
.y143{bottom:987.962290px;}
.y151{bottom:988.682291px;}
.y63{bottom:989.041691px;}
.yee{bottom:989.042291px;}
.y135{bottom:990.122292px;}
.y145{bottom:990.842293px;}
.y19f{bottom:996.962298px;}
.y127{bottom:1003.442303px;}
.y128{bottom:1012.802310px;}
.y4b{bottom:1016.041713px;}
.y13a{bottom:1017.482314px;}
.y154{bottom:1017.842314px;}
.y149{bottom:1018.202315px;}
.yb1{bottom:1023.242319px;}
.y19e{bottom:1023.962319px;}
.y35{bottom:1026.481721px;}
.y183{bottom:1027.921722px;}
.yed{bottom:1027.922322px;}
.y7d{bottom:1029.001723px;}
.y62{bottom:1029.361723px;}
.yec{bottom:1029.362323px;}
.y1c{bottom:1032.961726px;}
.y129{bottom:1040.882333px;}
.y12d{bottom:1041.242333px;}
.y13e{bottom:1044.482336px;}
.y12e{bottom:1049.162339px;}
.y19d{bottom:1050.962341px;}
.y12f{bottom:1051.682341px;}
.y130{bottom:1055.282344px;}
.y14b{bottom:1056.002345px;}
.y4a{bottom:1056.361745px;}
.y139{bottom:1058.522347px;}
.y13f{bottom:1059.242347px;}
.y156{bottom:1061.042349px;}
.y13b{bottom:1061.402349px;}
.yb0{bottom:1062.482350px;}
.yeb{bottom:1068.602355px;}
.y7f{bottom:1069.681756px;}
.y61{bottom:1070.041756px;}
.yea{bottom:1070.042356px;}
.y153{bottom:1070.402356px;}
.y146{bottom:1073.282359px;}
.y155{bottom:1073.642359px;}
.y34{bottom:1074.001759px;}
.y138{bottom:1076.162361px;}
.y100{bottom:1076.881762px;}
.y19c{bottom:1077.962362px;}
.y1b{bottom:1086.961770px;}
.y131{bottom:1094.882376px;}
.y14c{bottom:1095.962377px;}
.y12a{bottom:1096.682377px;}
.y49{bottom:1097.041778px;}
.y140{bottom:1099.202379px;}
.yaf{bottom:1101.362381px;}
.y1af{bottom:1103.882383px;}
.y19b{bottom:1104.962384px;}
.y147{bottom:1105.682385px;}
.y132{bottom:1106.042385px;}
.y14d{bottom:1107.122386px;}
.ye8{bottom:1108.922387px;}
.y7e{bottom:1110.001788px;}
.y60{bottom:1110.361788px;}
.ye9{bottom:1110.362388px;}
.y141{bottom:1110.722389px;}
.y33{bottom:1121.161797px;}
.y12b{bottom:1124.402400px;}
.y13c{bottom:1124.762400px;}
.y148{bottom:1131.602405px;}
.y19a{bottom:1131.962406px;}
.y157{bottom:1132.682406px;}
.y133{bottom:1135.562408px;}
.y14e{bottom:1136.642409px;}
.y142{bottom:1140.242412px;}
.yae{bottom:1140.602412px;}
.y1a{bottom:1140.961813px;}
.y48{bottom:1144.201815px;}
.y14a{bottom:1148.882419px;}
.y1b0{bottom:1150.681821px;}
.y5f{bottom:1151.041821px;}
.y13d{bottom:1151.042421px;}
.y12c{bottom:1152.122422px;}
.y32{bottom:1157.881826px;}
.y199{bottom:1158.962427px;}
.h43{height:10.080000px;}
.h3e{height:11.520000px;}
.h11{height:16.560000px;}
.h1f{height:17.280000px;}
.h42{height:17.522945px;}
.h26{height:19.440000px;}
.h27{height:20.160000px;}
.h18{height:20.282313px;}
.h38{height:21.495538px;}
.h3f{height:21.961835px;}
.h3b{height:25.379295px;}
.h39{height:26.661826px;}
.h3c{height:26.891723px;}
.h37{height:27.100704px;}
.h16{height:27.163659px;}
.h41{height:27.334386px;}
.h36{height:29.205975px;}
.h17{height:30.060675px;}
.ha{height:30.623064px;}
.h3a{height:30.839615px;}
.h3d{height:30.956989px;}
.h2b{height:33.018073px;}
.h25{height:34.628677px;}
.h40{height:35.045890px;}
.h19{height:36.216434px;}
.h29{height:36.483194px;}
.h1b{height:38.210431px;}
.hb{height:38.764831px;}
.h45{height:42.023002px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h2c{height:43.480835px;}
.h1e{height:43.546314px;}
.h12{height:46.362036px;}
.h2a{height:46.875105px;}
.h20{height:47.354384px;}
.hc{height:47.416358px;}
.h1a{height:48.171559px;}
.h1d{height:48.534790px;}
.h21{height:48.983400px;}
.hd{height:49.968040px;}
.he{height:50.027384px;}
.h22{height:50.480814px;}
.h1c{height:50.807503px;}
.h13{height:50.881622px;}
.h15{height:50.908272px;}
.h23{height:52.072483px;}
.h24{height:52.097380px;}
.h32{height:53.178793px;}
.h46{height:55.339244px;}
.h28{height:57.062233px;}
.h30{height:64.181301px;}
.hf{height:64.327551px;}
.h6{height:65.880053px;}
.h2{height:67.326667px;}
.h9{height:70.840857px;}
.h8{height:74.952060px;}
.h44{height:76.600861px;}
.h3{height:84.385482px;}
.h10{height:91.687573px;}
.h2d{height:91.689973px;}
.h35{height:101.880082px;}
.h7{height:104.090483px;}
.h2e{height:105.941335px;}
.h33{height:123.221349px;}
.h2f{height:127.687602px;}
.h34{height:129.127603px;}
.h31{height:141.941364px;}
.h14{height:163.080000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:11.880000px;}
.w4{width:17.640000px;}
.w5{width:19.440000px;}
.w9{width:23.760000px;}
.wa{width:24.840000px;}
.wb{width:25.560000px;}
.w6{width:25.920000px;}
.w7{width:27.000000px;}
.w8{width:70.920000px;}
.w3{width:892.500000px;}
.w2{width:892.830000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:14.400147px;}
.x3{left:84.960068px;}
.xf{left:90.720073px;}
.xb{left:93.240075px;}
.x9{left:96.480077px;}
.x4{left:100.080080px;}
.x1{left:102.046500px;}
.x41{left:104.400084px;}
.xc{left:106.560085px;}
.xe{left:108.720087px;}
.x49{left:115.560135px;}
.xa4{left:117.000094px;}
.x60{left:118.800095px;}
.x53{left:122.040098px;}
.x87{left:123.480099px;}
.x69{left:125.280100px;}
.x6a{left:127.440102px;}
.x5{left:128.520103px;}
.x86{left:129.600116px;}
.x48{left:132.480103px;}
.x54{left:135.000108px;}
.x55{left:140.760113px;}
.x68{left:142.920114px;}
.x85{left:144.360115px;}
.x4d{left:145.440116px;}
.x47{left:147.240118px;}
.xa3{left:148.680119px;}
.x4e{left:151.560121px;}
.x6{left:156.240125px;}
.x8{left:162.720130px;}
.x4f{left:164.520132px;}
.x1c{left:169.920000px;}
.x2f{left:171.360137px;}
.x8f{left:174.240139px;}
.x14{left:183.240000px;}
.x46{left:192.240150px;}
.x45{left:193.320155px;}
.x88{left:198.720159px;}
.xa{left:210.240168px;}
.x63{left:212.760170px;}
.x6e{left:219.600176px;}
.x6b{left:223.200179px;}
.x89{left:226.440181px;}
.x33{left:227.520000px;}
.x8e{left:228.600183px;}
.x6c{left:234.720188px;}
.x12{left:236.160189px;}
.x15{left:238.680000px;}
.x6d{left:241.560000px;}
.x66{left:242.640194px;}
.x8a{left:246.600197px;}
.x65{left:250.920201px;}
.x40{left:253.080000px;}
.x8b{left:255.600204px;}
.x8d{left:259.200207px;}
.x2e{left:261.000209px;}
.x10{left:273.240219px;}
.x6f{left:282.600226px;}
.x34{left:285.840000px;}
.x16{left:293.760000px;}
.x8c{left:295.200236px;}
.x1b{left:322.200258px;}
.xa5{left:325.080042px;}
.x64{left:328.320263px;}
.x98{left:338.760271px;}
.x79{left:340.920273px;}
.x35{left:344.160000px;}
.x92{left:345.600276px;}
.x73{left:347.040278px;}
.x17{left:349.200000px;}
.x91{left:352.440295px;}
.x72{left:356.040291px;}
.x71{left:363.960290px;}
.x70{left:365.760293px;}
.x90{left:367.200294px;}
.x67{left:379.440304px;}
.x5a{left:380.520304px;}
.x5b{left:386.640309px;}
.xd{left:388.440311px;}
.x5c{left:399.600320px;}
.x36{left:402.480000px;}
.x18{left:404.640000px;}
.x5d{left:405.720325px;}
.x75{left:413.640331px;}
.x61{left:417.960334px;}
.x50{left:420.120336px;}
.x62{left:424.071339px;}
.x11{left:425.160340px;}
.x51{left:426.240341px;}
.x76{left:429.840344px;}
.x1e{left:434.160347px;}
.x25{left:437.400350px;}
.x95{left:440.640353px;}
.x2{left:441.720353px;}
.x42{left:443.880000px;}
.x7{left:446.400357px;}
.x78{left:447.840358px;}
.x93{left:452.880362px;}
.x19{left:460.080000px;}
.x94{left:461.160371px;}
.x3e{left:466.200373px;}
.x97{left:468.000374px;}
.x3f{left:470.520376px;}
.x3c{left:473.760478px;}
.x1f{left:474.840380px;}
.x96{left:480.240384px;}
.x3b{left:483.120470px;}
.x74{left:487.440390px;}
.x3a{left:492.840461px;}
.x22{left:504.000403px;}
.x20{left:507.600406px;}
.x21{left:511.560409px;}
.x31{left:513.000410px;}
.x1a{left:515.520000px;}
.x77{left:520.200416px;}
.x30{left:524.520420px;}
.xa7{left:525.600420px;}
.xa8{left:531.720425px;}
.x24{left:539.280431px;}
.x52{left:544.320435px;}
.xac{left:552.600442px;}
.xad{left:558.720447px;}
.x44{left:563.400449px;}
.x43{left:564.480452px;}
.x7b{left:569.520456px;}
.x7c{left:571.320457px;}
.x9a{left:574.920497px;}
.x37{left:578.880000px;}
.xa9{left:581.760465px;}
.x23{left:586.440469px;}
.x7a{left:588.240471px;}
.x99{left:594.000475px;}
.xa0{left:597.960478px;}
.x3d{left:615.600492px;}
.xa6{left:620.999994px;}
.x29{left:627.120502px;}
.x2a{left:637.560510px;}
.x38{left:647.280000px;}
.x9f{left:650.160520px;}
.x9b{left:659.160527px;}
.xa1{left:660.960529px;}
.x7d{left:668.520535px;}
.x80{left:672.480538px;}
.x9c{left:675.360540px;}
.x7e{left:682.560546px;}
.x9d{left:683.640549px;}
.x7f{left:686.880000px;}
.x81{left:691.560553px;}
.x5f{left:694.080555px;}
.x9e{left:695.520556px;}
.x5e{left:701.639977px;}
.xae{left:704.520564px;}
.x56{left:705.960565px;}
.x82{left:707.040566px;}
.xaf{left:710.640569px;}
.x57{left:712.080570px;}
.x32{left:715.320572px;}
.x13{left:722.880578px;}
.xa2{left:728.640583px;}
.x83{left:739.080591px;}
.x2d{left:743.760595px;}
.x2b{left:747.360598px;}
.x84{left:750.960601px;}
.x4a{left:752.760602px;}
.xaa{left:754.920604px;}
.x58{left:759.240607px;}
.xab{left:761.040609px;}
.x59{left:765.360612px;}
.x2c{left:771.120617px;}
.x26{left:786.240814px;}
.x27{left:789.480632px;}
.x28{left:794.880636px;}
.x4b{left:797.400638px;}
.x39{left:799.200639px;}
.x4c{left:803.520643px;}
@media print{
.v7{vertical-align:-29.440024pt;}
.v3{vertical-align:-24.320019pt;}
.v4{vertical-align:-21.760017pt;}
.v1c{vertical-align:-17.920014pt;}
.v10{vertical-align:-14.080011pt;}
.v9{vertical-align:-12.797877pt;}
.v8{vertical-align:-11.520009pt;}
.vd{vertical-align:-8.960007pt;}
.v1{vertical-align:-7.680006pt;}
.v5{vertical-align:-5.120004pt;}
.v18{vertical-align:-1.280001pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.280001pt;}
.v6{vertical-align:5.120004pt;}
.v16{vertical-align:10.240008pt;}
.v11{vertical-align:14.080011pt;}
.va{vertical-align:23.040018pt;}
.v2{vertical-align:24.320019pt;}
.v19{vertical-align:28.160023pt;}
.v1b{vertical-align:29.440024pt;}
.vc{vertical-align:32.000026pt;}
.v17{vertical-align:33.280027pt;}
.vb{vertical-align:37.120030pt;}
.v13{vertical-align:38.400031pt;}
.v15{vertical-align:42.240034pt;}
.v14{vertical-align:51.200041pt;}
.v1a{vertical-align:52.480042pt;}
.vf{vertical-align:56.320045pt;}
.ve{vertical-align:69.120055pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.014080pt;}
.ls2c{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.222657pt;}
.ls2b{letter-spacing:0.222735pt;}
.lsc{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.337787pt;}
.ls8{letter-spacing:0.445440pt;}
.ls9{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.448125pt;}
.lsa{letter-spacing:0.496640pt;}
.ls18{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls2d{letter-spacing:0.600640pt;}
.ls23{letter-spacing:0.608000pt;}
.ls6{letter-spacing:0.608747pt;}
.ls1e{letter-spacing:0.620800pt;}
.ls2{letter-spacing:0.640001pt;}
.ls12{letter-spacing:0.677281pt;}
.ls19{letter-spacing:0.704001pt;}
.ls17{letter-spacing:0.733636pt;}
.ls29{letter-spacing:0.858932pt;}
.ls20{letter-spacing:1.056001pt;}
.lsb{letter-spacing:1.152001pt;}
.ls1{letter-spacing:1.280001pt;}
.ls15{letter-spacing:1.856001pt;}
.ls4{letter-spacing:1.920002pt;}
.ls1d{letter-spacing:2.220802pt;}
.lse{letter-spacing:2.240002pt;}
.ls1a{letter-spacing:2.368002pt;}
.lsf{letter-spacing:3.200003pt;}
.ls1c{letter-spacing:3.225603pt;}
.ls1b{letter-spacing:3.961603pt;}
.ls7{letter-spacing:4.480004pt;}
.ls27{letter-spacing:5.760005pt;}
.ls14{letter-spacing:7.040006pt;}
.ls22{letter-spacing:11.072009pt;}
.ls13{letter-spacing:14.739052pt;}
.ls10{letter-spacing:16.000013pt;}
.ls3{letter-spacing:17.280014pt;}
.ls1f{letter-spacing:17.472014pt;}
.ls11{letter-spacing:32.701527pt;}
.ls24{letter-spacing:149.433720pt;}
.ls16{letter-spacing:157.684834pt;}
.ls21{letter-spacing:159.673728pt;}
.ws14{word-spacing:-174.519341pt;}
.wsa{word-spacing:-49.728040pt;}
.ws4{word-spacing:-25.280020pt;}
.ws17{word-spacing:-19.029301pt;}
.ws16{word-spacing:-17.373605pt;}
.ws15{word-spacing:-16.834507pt;}
.ws5{word-spacing:-16.640013pt;}
.ws1b{word-spacing:-16.448013pt;}
.ws13{word-spacing:-16.335145pt;}
.wsc{word-spacing:-16.292546pt;}
.ws9{word-spacing:-16.256013pt;}
.ws7{word-spacing:-16.000013pt;}
.ws12{word-spacing:-15.791895pt;}
.ws1a{word-spacing:-15.632064pt;}
.wsb{word-spacing:-15.460964pt;}
.ws1e{word-spacing:-14.080011pt;}
.ws2{word-spacing:-14.032699pt;}
.ws11{word-spacing:-13.943744pt;}
.ws34{word-spacing:-13.440011pt;}
.ws18{word-spacing:-12.166535pt;}
.wse{word-spacing:-12.077575pt;}
.ws2c{word-spacing:-11.687218pt;}
.ws8{word-spacing:-11.200009pt;}
.ws33{word-spacing:-10.782743pt;}
.ws24{word-spacing:-10.782665pt;}
.ws6{word-spacing:-10.560008pt;}
.ws2a{word-spacing:-10.323638pt;}
.ws28{word-spacing:-10.284496pt;}
.wsd{word-spacing:-10.024732pt;}
.ws1d{word-spacing:-9.856008pt;}
.ws26{word-spacing:-9.739704pt;}
.ws10{word-spacing:-9.280007pt;}
.ws2e{word-spacing:-9.115561pt;}
.ws27{word-spacing:-9.037632pt;}
.ws35{word-spacing:-8.640007pt;}
.ws29{word-spacing:-8.197447pt;}
.ws20{word-spacing:-8.166407pt;}
.ws2b{word-spacing:-7.323905pt;}
.ws2f{word-spacing:-5.843609pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.151432pt;}
.ws0{word-spacing:0.242291pt;}
.ws1c{word-spacing:5.402500pt;}
.ws1f{word-spacing:11.973458pt;}
.ws23{word-spacing:23.388622pt;}
.ws25{word-spacing:32.001586pt;}
.ws2d{word-spacing:32.001936pt;}
.ws21{word-spacing:41.308637pt;}
.wsf{word-spacing:77.183132pt;}
.ws30{word-spacing:91.947014pt;}
.ws31{word-spacing:91.947364pt;}
.ws32{word-spacing:104.701472pt;}
.ws19{word-spacing:144.850751pt;}
.ws22{word-spacing:171.287087pt;}
._30{margin-left:-157.684834pt;}
._41{margin-left:-18.791990pt;}
._3a{margin-left:-17.105632pt;}
._2c{margin-left:-16.000013pt;}
._38{margin-left:-14.675661pt;}
._3{margin-left:-11.549214pt;}
._4{margin-left:-9.691648pt;}
._2f{margin-left:-8.616779pt;}
._6{margin-left:-7.511027pt;}
._2{margin-left:-5.814989pt;}
._45{margin-left:-4.917512pt;}
._c{margin-left:-3.937232pt;}
._1{margin-left:-2.584439pt;}
._0{margin-left:-1.615275pt;}
._7{width:1.261933pt;}
._e{width:2.195477pt;}
._5{width:3.230549pt;}
._f{width:4.145553pt;}
._10{width:5.193941pt;}
._11{width:6.906423pt;}
._a{width:8.429715pt;}
._12{width:9.396128pt;}
._17{width:10.985027pt;}
._2b{width:11.997320pt;}
._14{width:12.901166pt;}
._13{width:13.988407pt;}
._16{width:15.073353pt;}
._b{width:16.607043pt;}
._d{width:17.515635pt;}
._23{width:18.775076pt;}
._15{width:19.712016pt;}
._18{width:20.796589pt;}
._19{width:21.746010pt;}
._27{width:22.929489pt;}
._29{width:24.229160pt;}
._28{width:25.605385pt;}
._2a{width:26.508985pt;}
._26{width:27.471295pt;}
._1c{width:28.833364pt;}
._1d{width:30.171144pt;}
._9{width:33.113131pt;}
._1a{width:34.401369pt;}
._1b{width:35.737935pt;}
._24{width:36.897371pt;}
._25{width:37.993535pt;}
._8{width:40.028525pt;}
._3c{width:46.284256pt;}
._22{width:49.207508pt;}
._21{width:51.933955pt;}
._40{width:54.965003pt;}
._44{width:59.520048pt;}
._3e{width:63.208218pt;}
._35{width:65.511503pt;}
._3f{width:67.250207pt;}
._20{width:74.028471pt;}
._1e{width:75.019906pt;}
._1f{width:76.650566pt;}
._2e{width:97.715897pt;}
._2d{width:102.074919pt;}
._42{width:117.963524pt;}
._39{width:122.876348pt;}
._43{width:124.644743pt;}
._31{width:161.760933pt;}
._33{width:176.359686pt;}
._37{width:191.397421pt;}
._36{width:192.305996pt;}
._3d{width:197.028181pt;}
._3b{width:201.042116pt;}
._34{width:208.000166pt;}
._32{width:213.260395pt;}
._46{width:752.000602pt;}
.fs28{font-size:21.020177pt;}
.fsf{font-size:24.330259pt;}
.fs22{font-size:25.785621pt;}
.fs26{font-size:26.344981pt;}
.fs21{font-size:32.509466pt;}
.fsd{font-size:32.584986pt;}
.fs24{font-size:32.789786pt;}
.fs2a{font-size:34.560028pt;}
.fs20{font-size:35.034908pt;}
.fse{font-size:36.060189pt;}
.fs23{font-size:36.994590pt;}
.fs12{font-size:37.120030pt;}
.fs25{font-size:37.135390pt;}
.fs8{font-size:39.680032pt;}
.fs1b{font-size:41.539873pt;}
.fs27{font-size:42.040354pt;}
.fs7{font-size:42.240034pt;}
.fs10{font-size:43.444515pt;}
.fs1d{font-size:43.764515pt;}
.fs1f{font-size:44.800036pt;}
.fs2{font-size:50.477333pt;}
.fs29{font-size:53.760043pt;}
.fsa{font-size:55.614978pt;}
.fs15{font-size:55.774978pt;}
.fs1e{font-size:56.230445pt;}
.fs16{font-size:56.805379pt;}
.fs11{font-size:57.785646pt;}
.fs17{font-size:58.759514pt;}
.fs18{font-size:60.555782pt;}
.fs9{font-size:61.440049pt;}
.fs14{font-size:62.164316pt;}
.fs19{font-size:62.465117pt;}
.fs1a{font-size:62.494983pt;}
.fs3{font-size:64.000051pt;}
.fs13{font-size:65.075252pt;}
.fsb{font-size:65.170185pt;}
.fsc{font-size:65.204319pt;}
.fs5{font-size:66.560053pt;}
.fs1c{font-size:68.450721pt;}
.fs0{font-size:80.763733pt;}
.fs6{font-size:96.000077pt;}
.fs1{font-size:100.954667pt;}
.fs4{font-size:101.120081pt;}
.y0{bottom:0.000000pt;}
.y152{bottom:0.319899pt;}
.y8b{bottom:0.639558pt;}
.y137{bottom:1.599901pt;}
.y88{bottom:1.919473pt;}
.yb7{bottom:1.919876pt;}
.ycc{bottom:2.879546pt;}
.yb5{bottom:2.879878pt;}
.ye7{bottom:3.199735pt;}
.yd1{bottom:4.159734pt;}
.y19{bottom:21.227484pt;}
.y18{bottom:39.467498pt;}
.y126{bottom:80.107531pt;}
.y31{bottom:81.387532pt;}
.y79{bottom:87.147536pt;}
.y112{bottom:87.148070pt;}
.y7c{bottom:93.227541pt;}
.y198{bottom:94.187542pt;}
.y17{bottom:99.089333pt;}
.y30{bottom:105.387551pt;}
.y5e{bottom:111.147556pt;}
.y16{bottom:115.030667pt;}
.y125{bottom:116.267560pt;}
.y197{bottom:118.187561pt;}
.y78{bottom:122.987565pt;}
.y111{bottom:122.988098pt;}
.y15{bottom:130.970667pt;}
.y2f{bottom:135.467575pt;}
.y196{bottom:142.188114pt;}
.yff{bottom:145.708117pt;}
.y14{bottom:146.910667pt;}
.y5d{bottom:146.987584pt;}
.yfd{bottom:146.988118pt;}
.y124{bottom:152.107588pt;}
.yfe{bottom:153.068122pt;}
.y47{bottom:153.387589pt;}
.y77{bottom:159.147594pt;}
.ya7{bottom:159.148127pt;}
.ya8{bottom:165.868133pt;}
.y195{bottom:166.188133pt;}
.y2e{bottom:174.827607pt;}
.y5c{bottom:183.147613pt;}
.yfb{bottom:183.148147pt;}
.y123{bottom:188.267617pt;}
.yfc{bottom:189.228151pt;}
.y194{bottom:190.188152pt;}
.y10e{bottom:193.708155pt;}
.y180{bottom:194.667622pt;}
.y76{bottom:194.987623pt;}
.ya6{bottom:194.988156pt;}
.y110{bottom:198.188159pt;}
.y46{bottom:198.507625pt;}
.y10d{bottom:201.708161pt;}
.yfa{bottom:208.748167pt;}
.y13{bottom:210.672000pt;}
.y193{bottom:214.188171pt;}
.y10f{bottom:215.788173pt;}
.y5b{bottom:218.987642pt;}
.y2d{bottom:222.187644pt;}
.y122{bottom:224.107646pt;}
.y86{bottom:225.387647pt;}
.y12{bottom:226.612000pt;}
.y75{bottom:231.147652pt;}
.ya4{bottom:231.148185pt;}
.ya5{bottom:237.868190pt;}
.y192{bottom:238.188191pt;}
.y45{bottom:240.427659pt;}
.y11{bottom:242.552000pt;}
.y10c{bottom:242.988194pt;}
.y5a{bottom:255.147671pt;}
.y10{bottom:258.492000pt;}
.y2c{bottom:258.987674pt;}
.y121{bottom:260.267675pt;}
.y85{bottom:261.547676pt;}
.y191{bottom:261.868209pt;}
.y1ae{bottom:262.188210pt;}
.y81{bottom:266.667680pt;}
.y74{bottom:266.987680pt;}
.ya3{bottom:266.988214pt;}
.y82{bottom:269.547682pt;}
.yf{bottom:274.432000pt;}
.y109{bottom:277.868222pt;}
.y10b{bottom:282.348226pt;}
.y44{bottom:282.667693pt;}
.y84{bottom:285.227695pt;}
.ybe{bottom:285.547695pt;}
.y190{bottom:286.188229pt;}
.y59{bottom:290.987699pt;}
.y108{bottom:295.148236pt;}
.y120{bottom:296.107704pt;}
.y10a{bottom:299.948240pt;}
.y73{bottom:303.147709pt;}
.ya2{bottom:303.148243pt;}
.y2b{bottom:306.347712pt;}
.ybd{bottom:309.547714pt;}
.y18f{bottom:310.188248pt;}
.y83{bottom:314.987719pt;}
.y89{bottom:321.708257pt;}
.ye{bottom:322.253333pt;}
.y43{bottom:324.587726pt;}
.y58{bottom:327.147728pt;}
.y107{bottom:327.148262pt;}
.y11f{bottom:332.267732pt;}
.ybc{bottom:333.547734pt;}
.y18e{bottom:334.188267pt;}
.yd{bottom:338.193333pt;}
.y72{bottom:338.987738pt;}
.ya1{bottom:338.988271pt;}
.y87{bottom:339.628800pt;}
.y95{bottom:341.548273pt;}
.y2a{bottom:348.267745pt;}
.ybb{bottom:357.547753pt;}
.y18d{bottom:358.188287pt;}
.y57{bottom:362.987757pt;}
.y106{bottom:362.988290pt;}
.y42{bottom:366.507760pt;}
.y11e{bottom:368.107761pt;}
.yc{bottom:370.073333pt;}
.y80{bottom:374.827767pt;}
.y71{bottom:375.147767pt;}
.ya0{bottom:375.148300pt;}
.y8e{bottom:377.708302pt;}
.y8d{bottom:379.948304pt;}
.yba{bottom:381.547772pt;}
.y18c{bottom:382.188306pt;}
.y29{bottom:384.747774pt;}
.yb{bottom:386.013333pt;}
.y8c{bottom:390.508312pt;}
.y56{bottom:399.147786pt;}
.y105{bottom:399.148319pt;}
.ya{bottom:401.954667pt;}
.y11d{bottom:404.267790pt;}
.yb9{bottom:405.227791pt;}
.y18b{bottom:406.188325pt;}
.y41{bottom:408.427793pt;}
.y7b{bottom:410.667795pt;}
.y70{bottom:410.987795pt;}
.y9f{bottom:410.988329pt;}
.y9{bottom:417.894667pt;}
.y8f{bottom:423.788339pt;}
.yb8{bottom:429.227810pt;}
.ycb{bottom:429.228800pt;}
.y18a{bottom:430.188344pt;}
.y28{bottom:432.427813pt;}
.yc7{bottom:434.348347pt;}
.y55{bottom:434.987815pt;}
.y104{bottom:434.988348pt;}
.y11c{bottom:440.107819pt;}
.y7a{bottom:446.827824pt;}
.y8a{bottom:446.828800pt;}
.y6f{bottom:447.147824pt;}
.y9e{bottom:447.148358pt;}
.ybf{bottom:450.028360pt;}
.y40{bottom:450.667827pt;}
.ydf{bottom:451.308361pt;}
.y189{bottom:454.188363pt;}
.y8{bottom:457.745333pt;}
.ye0{bottom:466.028373pt;}
.y90{bottom:467.628374pt;}
.yc0{bottom:469.868376pt;}
.y54{bottom:471.147844pt;}
.y103{bottom:471.148377pt;}
.y27{bottom:474.347846pt;}
.y11b{bottom:476.267848pt;}
.y188{bottom:478.188383pt;}
.y182{bottom:482.667853pt;}
.y6e{bottom:482.987853pt;}
.y9d{bottom:482.988386pt;}
.yc8{bottom:483.308387pt;}
.ycd{bottom:485.868389pt;}
.y3f{bottom:492.587861pt;}
.yc9{bottom:494.508396pt;}
.yce{bottom:498.028398pt;}
.ye1{bottom:499.628400pt;}
.yc1{bottom:500.268400pt;}
.y187{bottom:502.188402pt;}
.yca{bottom:504.428404pt;}
.y102{bottom:505.388404pt;}
.y53{bottom:506.987872pt;}
.ycf{bottom:507.948406pt;}
.y91{bottom:511.788409pt;}
.y11a{bottom:512.107876pt;}
.y101{bottom:513.388411pt;}
.y26{bottom:516.267880pt;}
.y181{bottom:518.827882pt;}
.y6d{bottom:519.147882pt;}
.y9c{bottom:519.148415pt;}
.y186{bottom:526.188421pt;}
.yc2{bottom:530.668425pt;}
.ye2{bottom:533.548427pt;}
.y3e{bottom:534.507894pt;}
.y52{bottom:543.147901pt;}
.y119{bottom:548.267905pt;}
.y1ad{bottom:550.188440pt;}
.y25{bottom:552.747909pt;}
.y185{bottom:554.667910pt;}
.y6c{bottom:554.987911pt;}
.y9b{bottom:554.988444pt;}
.y92{bottom:555.948445pt;}
.yc3{bottom:561.068449pt;}
.ye3{bottom:567.468454pt;}
.y1ac{bottom:574.188459pt;}
.y3d{bottom:576.427928pt;}
.y118{bottom:578.667930pt;}
.y51{bottom:578.987930pt;}
.y1bb{bottom:578.988463pt;}
.yd8{bottom:586.348469pt;}
.y6b{bottom:591.147940pt;}
.y9a{bottom:591.148473pt;}
.yc4{bottom:591.468473pt;}
.y24{bottom:594.987943pt;}
.yd7{bottom:597.868478pt;}
.y1ab{bottom:598.188479pt;}
.yde{bottom:598.508479pt;}
.y93{bottom:599.788480pt;}
.ye4{bottom:601.068481pt;}
.y117{bottom:602.667949pt;}
.yd6{bottom:609.388488pt;}
.ydd{bottom:610.028488pt;}
.y50{bottom:615.147959pt;}
.y1ba{bottom:615.148492pt;}
.y3c{bottom:618.667962pt;}
.yd5{bottom:620.908497pt;}
.ydc{bottom:621.548497pt;}
.yc5{bottom:621.868497pt;}
.y1aa{bottom:622.188498pt;}
.yf9{bottom:625.708501pt;}
.y116{bottom:626.667968pt;}
.y6a{bottom:626.987968pt;}
.y99{bottom:626.988502pt;}
.yd4{bottom:632.748506pt;}
.ydb{bottom:633.068506pt;}
.ye5{bottom:634.988508pt;}
.y23{bottom:642.347981pt;}
.y94{bottom:643.948515pt;}
.yd3{bottom:644.268515pt;}
.yda{bottom:644.588516pt;}
.y1a9{bottom:646.188517pt;}
.y1b9{bottom:649.708520pt;}
.y115{bottom:650.667987pt;}
.y7{bottom:650.953333pt;}
.y4f{bottom:650.987987pt;}
.y1b8{bottom:650.988521pt;}
.yc6{bottom:652.268522pt;}
.yd9{bottom:656.428525pt;}
.y3b{bottom:660.587995pt;}
.y69{bottom:663.147997pt;}
.yf8{bottom:663.148531pt;}
.yd0{bottom:663.148800pt;}
.yd2{bottom:663.788800pt;}
.ye6{bottom:665.708800pt;}
.y1a8{bottom:670.188536pt;}
.y114{bottom:674.348006pt;}
.y6{bottom:682.833333pt;}
.y22{bottom:684.268014pt;}
.y1b7{bottom:685.868549pt;}
.y4e{bottom:687.148016pt;}
.y1b6{bottom:687.148550pt;}
.y98{bottom:693.548022pt;}
.y1a7{bottom:694.188555pt;}
.yf7{bottom:697.708558pt;}
.y113{bottom:698.348025pt;}
.y68{bottom:698.988026pt;}
.yf6{bottom:698.988559pt;}
.y3a{bottom:702.508029pt;}
.y5{bottom:714.714667pt;}
.y97{bottom:717.228040pt;}
.y1a6{bottom:718.188575pt;}
.y1b5{bottom:721.708577pt;}
.y167{bottom:722.668578pt;}
.y4d{bottom:722.988045pt;}
.y166{bottom:722.988578pt;}
.y171{bottom:723.628579pt;}
.y170{bottom:723.948579pt;}
.y168{bottom:725.868581pt;}
.y21{bottom:726.188048pt;}
.y172{bottom:726.508581pt;}
.yf5{bottom:733.868587pt;}
.y158{bottom:734.508588pt;}
.y67{bottom:735.148055pt;}
.yf4{bottom:735.148588pt;}
.y96{bottom:741.228060pt;}
.y1a5{bottom:742.188594pt;}
.y159{bottom:742.828594pt;}
.y39{bottom:744.428062pt;}
.y4{bottom:746.594667pt;}
.y17e{bottom:753.068602pt;}
.y16d{bottom:756.268605pt;}
.y20{bottom:759.148074pt;}
.y1b4{bottom:759.148607pt;}
.y15a{bottom:760.748609pt;}
.y176{bottom:761.388609pt;}
.y16e{bottom:762.668610pt;}
.y161{bottom:763.628611pt;}
.y17d{bottom:765.228612pt;}
.yab{bottom:765.548079pt;}
.y1a4{bottom:766.188613pt;}
.y177{bottom:768.108614pt;}
.yf3{bottom:769.708616pt;}
.y66{bottom:770.988083pt;}
.yf2{bottom:770.988617pt;}
.y162{bottom:776.748621pt;}
.y15b{bottom:778.348623pt;}
.y16c{bottom:778.988623pt;}
.y178{bottom:779.308623pt;}
.y17b{bottom:784.428628pt;}
.y38{bottom:786.668096pt;}
.yaa{bottom:789.228098pt;}
.y1a3{bottom:790.188632pt;}
.y1b2{bottom:793.708635pt;}
.y1f{bottom:794.988103pt;}
.y1b3{bottom:794.988636pt;}
.y15c{bottom:795.948637pt;}
.y174{bottom:796.908638pt;}
.y3{bottom:802.385333pt;}
.y17a{bottom:802.668642pt;}
.y16a{bottom:803.628643pt;}
.yf1{bottom:805.868645pt;}
.y65{bottom:807.148112pt;}
.yf0{bottom:807.148646pt;}
.y169{bottom:810.348648pt;}
.y163{bottom:812.268650pt;}
.y15d{bottom:813.548651pt;}
.y1a2{bottom:814.188651pt;}
.ya9{bottom:816.108120pt;}
.y175{bottom:816.428653pt;}
.y164{bottom:822.508658pt;}
.y1b1{bottom:825.068127pt;}
.y37{bottom:828.588130pt;}
.y2{bottom:828.952000pt;}
.yac{bottom:830.508664pt;}
.y1e{bottom:831.148132pt;}
.y15e{bottom:831.468665pt;}
.y1a1{bottom:838.188671pt;}
.yb3{bottom:840.108672pt;}
.y173{bottom:841.068673pt;}
.y184{bottom:842.668141pt;}
.y64{bottom:842.988141pt;}
.yef{bottom:842.988674pt;}
.yb6{bottom:843.628800pt;}
.yb4{bottom:844.268800pt;}
.y17c{bottom:846.828677pt;}
.y16b{bottom:848.108678pt;}
.y165{bottom:848.748679pt;}
.y15f{bottom:849.068679pt;}
.y1{bottom:855.520000pt;}
.y1a0{bottom:862.188690pt;}
.y16f{bottom:865.068692pt;}
.y179{bottom:865.708693pt;}
.y17f{bottom:866.028693pt;}
.y160{bottom:866.668693pt;}
.y4c{bottom:866.988160pt;}
.y1d{bottom:870.188163pt;}
.y36{bottom:870.508163pt;}
.y136{bottom:874.028800pt;}
.yb2{bottom:874.668700pt;}
.y150{bottom:875.948701pt;}
.y14f{bottom:876.268701pt;}
.yad{bottom:877.228702pt;}
.y134{bottom:877.548702pt;}
.y144{bottom:877.868702pt;}
.y143{bottom:878.188703pt;}
.y151{bottom:878.828703pt;}
.y63{bottom:879.148170pt;}
.yee{bottom:879.148703pt;}
.y135{bottom:880.108704pt;}
.y145{bottom:880.748705pt;}
.y19f{bottom:886.188709pt;}
.y127{bottom:891.948714pt;}
.y128{bottom:900.268720pt;}
.y4b{bottom:903.148189pt;}
.y13a{bottom:904.428724pt;}
.y154{bottom:904.748724pt;}
.y149{bottom:905.068724pt;}
.yb1{bottom:909.548728pt;}
.y19e{bottom:910.188728pt;}
.y35{bottom:912.428197pt;}
.y183{bottom:913.708198pt;}
.yed{bottom:913.708731pt;}
.y7d{bottom:914.668198pt;}
.y62{bottom:914.988199pt;}
.yec{bottom:914.988732pt;}
.y1c{bottom:918.188201pt;}
.y129{bottom:925.228740pt;}
.y12d{bottom:925.548740pt;}
.y13e{bottom:928.428743pt;}
.y12e{bottom:932.588746pt;}
.y19d{bottom:934.188747pt;}
.y12f{bottom:934.828748pt;}
.y130{bottom:938.028750pt;}
.y14b{bottom:938.668751pt;}
.y4a{bottom:938.988218pt;}
.y139{bottom:940.908753pt;}
.y13f{bottom:941.548753pt;}
.y156{bottom:943.148755pt;}
.y13b{bottom:943.468755pt;}
.yb0{bottom:944.428756pt;}
.yeb{bottom:949.868760pt;}
.y7f{bottom:950.828227pt;}
.y61{bottom:951.148228pt;}
.yea{bottom:951.148761pt;}
.y153{bottom:951.468761pt;}
.y146{bottom:954.028763pt;}
.y155{bottom:954.348763pt;}
.y34{bottom:954.668230pt;}
.y138{bottom:956.588765pt;}
.y100{bottom:957.228232pt;}
.y19c{bottom:958.188767pt;}
.y1b{bottom:966.188240pt;}
.y131{bottom:973.228779pt;}
.y14c{bottom:974.188779pt;}
.y12a{bottom:974.828780pt;}
.y49{bottom:975.148247pt;}
.y140{bottom:977.068782pt;}
.yaf{bottom:978.988783pt;}
.y1af{bottom:981.228785pt;}
.y19b{bottom:982.188786pt;}
.y147{bottom:982.828786pt;}
.y132{bottom:983.148787pt;}
.y14d{bottom:984.108787pt;}
.ye8{bottom:985.708789pt;}
.y7e{bottom:986.668256pt;}
.y60{bottom:986.988256pt;}
.ye9{bottom:986.988790pt;}
.y141{bottom:987.308790pt;}
.y33{bottom:996.588264pt;}
.y12b{bottom:999.468800pt;}
.y13c{bottom:999.788800pt;}
.y148{bottom:1005.868805pt;}
.y19a{bottom:1006.188805pt;}
.y157{bottom:1006.828805pt;}
.y133{bottom:1009.388808pt;}
.y14e{bottom:1010.348808pt;}
.y142{bottom:1013.548811pt;}
.yae{bottom:1013.868811pt;}
.y1a{bottom:1014.188278pt;}
.y48{bottom:1017.068280pt;}
.y14a{bottom:1021.228817pt;}
.y1b0{bottom:1022.828285pt;}
.y5f{bottom:1023.148285pt;}
.y13d{bottom:1023.148819pt;}
.y12c{bottom:1024.108819pt;}
.y32{bottom:1029.228290pt;}
.y199{bottom:1030.188824pt;}
.h43{height:8.960000pt;}
.h3e{height:10.240000pt;}
.h11{height:14.720000pt;}
.h1f{height:15.360000pt;}
.h42{height:15.575951pt;}
.h26{height:17.280000pt;}
.h27{height:17.920000pt;}
.h18{height:18.028722pt;}
.h38{height:19.107145pt;}
.h3f{height:19.521631pt;}
.h3b{height:22.559373pt;}
.h39{height:23.699401pt;}
.h3c{height:23.903754pt;}
.h37{height:24.089514pt;}
.h16{height:24.145475pt;}
.h41{height:24.297232pt;}
.h36{height:25.960867pt;}
.h17{height:26.720600pt;}
.ha{height:27.220502pt;}
.h3a{height:27.412991pt;}
.h3d{height:27.517324pt;}
.h2b{height:29.349398pt;}
.h25{height:30.781046pt;}
.h40{height:31.151902pt;}
.h19{height:32.192385pt;}
.h29{height:32.429506pt;}
.h1b{height:33.964827pt;}
.hb{height:34.457628pt;}
.h45{height:37.353780pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h2c{height:38.649631pt;}
.h1e{height:38.707835pt;}
.h12{height:41.210699pt;}
.h2a{height:41.666760pt;}
.h20{height:42.092786pt;}
.hc{height:42.147874pt;}
.h1a{height:42.819164pt;}
.h1d{height:43.142036pt;}
.h21{height:43.540800pt;}
.hd{height:44.416036pt;}
.he{height:44.468786pt;}
.h22{height:44.871834pt;}
.h1c{height:45.162225pt;}
.h13{height:45.228109pt;}
.h15{height:45.251797pt;}
.h23{height:46.286651pt;}
.h24{height:46.308783pt;}
.h32{height:47.270038pt;}
.h46{height:49.190439pt;}
.h28{height:50.721985pt;}
.h30{height:57.050046pt;}
.hf{height:57.180046pt;}
.h6{height:58.560047pt;}
.h2{height:59.845926pt;}
.h9{height:62.969650pt;}
.h8{height:66.624053pt;}
.h44{height:68.089654pt;}
.h3{height:75.009317pt;}
.h10{height:81.500065pt;}
.h2d{height:81.502199pt;}
.h35{height:90.560072pt;}
.h7{height:92.524874pt;}
.h2e{height:94.170075pt;}
.h33{height:109.530088pt;}
.h2f{height:113.500091pt;}
.h34{height:114.780092pt;}
.h31{height:126.170101pt;}
.h14{height:144.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:10.560000pt;}
.w4{width:15.680000pt;}
.w5{width:17.280000pt;}
.w9{width:21.120000pt;}
.wa{width:22.080000pt;}
.wb{width:22.720000pt;}
.w6{width:23.040000pt;}
.w7{width:24.000000pt;}
.w8{width:63.040000pt;}
.w3{width:793.333333pt;}
.w2{width:793.626667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:12.800131pt;}
.x3{left:75.520060pt;}
.xf{left:80.640065pt;}
.xb{left:82.880066pt;}
.x9{left:85.760069pt;}
.x4{left:88.960071pt;}
.x1{left:90.708000pt;}
.x41{left:92.800074pt;}
.xc{left:94.720076pt;}
.xe{left:96.640077pt;}
.x49{left:102.720120pt;}
.xa4{left:104.000083pt;}
.x60{left:105.600084pt;}
.x53{left:108.480087pt;}
.x87{left:109.760088pt;}
.x69{left:111.360089pt;}
.x6a{left:113.280091pt;}
.x5{left:114.240091pt;}
.x86{left:115.200103pt;}
.x48{left:117.760092pt;}
.x54{left:120.000096pt;}
.x55{left:125.120100pt;}
.x68{left:127.040102pt;}
.x85{left:128.320103pt;}
.x4d{left:129.280103pt;}
.x47{left:130.880105pt;}
.xa3{left:132.160106pt;}
.x4e{left:134.720108pt;}
.x6{left:138.880111pt;}
.x8{left:144.640116pt;}
.x4f{left:146.240117pt;}
.x1c{left:151.040000pt;}
.x2f{left:152.320122pt;}
.x8f{left:154.880124pt;}
.x14{left:162.880000pt;}
.x46{left:170.880134pt;}
.x45{left:171.840137pt;}
.x88{left:176.640141pt;}
.xa{left:186.880150pt;}
.x63{left:189.120151pt;}
.x6e{left:195.200156pt;}
.x6b{left:198.400159pt;}
.x89{left:201.280161pt;}
.x33{left:202.240000pt;}
.x8e{left:203.200163pt;}
.x6c{left:208.640167pt;}
.x12{left:209.920168pt;}
.x15{left:212.160000pt;}
.x6d{left:214.720000pt;}
.x66{left:215.680173pt;}
.x8a{left:219.200175pt;}
.x65{left:223.040178pt;}
.x40{left:224.960000pt;}
.x8b{left:227.200182pt;}
.x8d{left:230.400184pt;}
.x2e{left:232.000186pt;}
.x10{left:242.880194pt;}
.x6f{left:251.200201pt;}
.x34{left:254.080000pt;}
.x16{left:261.120000pt;}
.x8c{left:262.400210pt;}
.x1b{left:286.400229pt;}
.xa5{left:288.960037pt;}
.x64{left:291.840233pt;}
.x98{left:301.120241pt;}
.x79{left:303.040242pt;}
.x35{left:305.920000pt;}
.x92{left:307.200246pt;}
.x73{left:308.480247pt;}
.x17{left:310.400000pt;}
.x91{left:313.280262pt;}
.x72{left:316.480259pt;}
.x71{left:323.520258pt;}
.x70{left:325.120260pt;}
.x90{left:326.400261pt;}
.x67{left:337.280270pt;}
.x5a{left:338.240271pt;}
.x5b{left:343.680275pt;}
.xd{left:345.280276pt;}
.x5c{left:355.200284pt;}
.x36{left:357.760000pt;}
.x18{left:359.680000pt;}
.x5d{left:360.640289pt;}
.x75{left:367.680294pt;}
.x61{left:371.520297pt;}
.x50{left:373.440299pt;}
.x62{left:376.952302pt;}
.x11{left:377.920302pt;}
.x51{left:378.880303pt;}
.x76{left:382.080306pt;}
.x1e{left:385.920309pt;}
.x25{left:388.800311pt;}
.x95{left:391.680313pt;}
.x2{left:392.640314pt;}
.x42{left:394.560000pt;}
.x7{left:396.800317pt;}
.x78{left:398.080318pt;}
.x93{left:402.560322pt;}
.x19{left:408.960000pt;}
.x94{left:409.920330pt;}
.x3e{left:414.400332pt;}
.x97{left:416.000333pt;}
.x3f{left:418.240335pt;}
.x3c{left:421.120425pt;}
.x1f{left:422.080338pt;}
.x96{left:426.880342pt;}
.x3b{left:429.440418pt;}
.x74{left:433.280347pt;}
.x3a{left:438.080410pt;}
.x22{left:448.000358pt;}
.x20{left:451.200361pt;}
.x21{left:454.720364pt;}
.x31{left:456.000365pt;}
.x1a{left:458.240000pt;}
.x77{left:462.400370pt;}
.x30{left:466.240373pt;}
.xa7{left:467.200374pt;}
.xa8{left:472.640378pt;}
.x24{left:479.360383pt;}
.x52{left:483.840387pt;}
.xac{left:491.200393pt;}
.xad{left:496.640397pt;}
.x44{left:500.800399pt;}
.x43{left:501.760401pt;}
.x7b{left:506.240405pt;}
.x7c{left:507.840406pt;}
.x9a{left:511.040442pt;}
.x37{left:514.560000pt;}
.xa9{left:517.120414pt;}
.x23{left:521.280417pt;}
.x7a{left:522.880418pt;}
.x99{left:528.000422pt;}
.xa0{left:531.520425pt;}
.x3d{left:547.200438pt;}
.xa6{left:551.999995pt;}
.x29{left:557.440446pt;}
.x2a{left:566.720453pt;}
.x38{left:575.360000pt;}
.x9f{left:577.920462pt;}
.x9b{left:585.920469pt;}
.xa1{left:587.520470pt;}
.x7d{left:594.240475pt;}
.x80{left:597.760478pt;}
.x9c{left:600.320480pt;}
.x7e{left:606.720485pt;}
.x9d{left:607.680488pt;}
.x7f{left:610.560000pt;}
.x81{left:614.720492pt;}
.x5f{left:616.960494pt;}
.x9e{left:618.240495pt;}
.x5e{left:623.679980pt;}
.xae{left:626.240501pt;}
.x56{left:627.520502pt;}
.x82{left:628.480503pt;}
.xaf{left:631.680505pt;}
.x57{left:632.960506pt;}
.x32{left:635.840509pt;}
.x13{left:642.560514pt;}
.xa2{left:647.680518pt;}
.x83{left:656.960526pt;}
.x2d{left:661.120529pt;}
.x2b{left:664.320531pt;}
.x84{left:667.520534pt;}
.x4a{left:669.120535pt;}
.xaa{left:671.040537pt;}
.x58{left:674.880540pt;}
.xab{left:676.480541pt;}
.x59{left:680.320544pt;}
.x2c{left:685.440548pt;}
.x26{left:698.880723pt;}
.x27{left:701.760561pt;}
.x28{left:706.560565pt;}
.x4b{left:708.800567pt;}
.x39{left:710.400568pt;}
.x4c{left:714.240571pt;}
}


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