
/* 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_3956234257ee.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_2aad463421c0.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_97109b8032c7.woff")format("woff");}.ff3{font-family:ff3;line-height:1.102539;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_56acaf65b3d8.woff")format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_f4efc9994ec7.woff")format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_5ab2ab605e7a.woff")format("woff");}.ff6{font-family:ff6;line-height:0.709473;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_4c03ce964b04.woff")format("woff");}.ff7{font-family:ff7;line-height:0.709961;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_49ee870b33ab.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_0b7afddbad85.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_52c22677389e.woff")format("woff");}.ffa{font-family:ffa;line-height:0.678711;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_6e69d7673424.woff")format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_14663bbfcb68.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_475c0921b0cb.woff")format("woff");}.ffd{font-family:ffd;line-height:0.740723;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_543479f2d6a8.woff")format("woff");}.ffe{font-family:ffe;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_cbbef16f45ae.woff")format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_87861a0c93bf.woff")format("woff");}.ff10{font-family:ff10;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_543479f2d6a8.woff")format("woff");}.ff11{font-family:ff11;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_032c989e13fb.woff")format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_87861a0c93bf.woff")format("woff");}.ff13{font-family:ff13;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_543479f2d6a8.woff")format("woff");}.ff14{font-family:ff14;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_27025e7c7a2c.woff")format("woff");}.ff15{font-family:ff15;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_f7a56fdc2c4f.woff")format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_140067d747fa.woff")format("woff");}.ff17{font-family:ff17;line-height:0.731445;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;}
.m3{transform:matrix(0.000000,-0.249353,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249353,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249353,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249357,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249357,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249357,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m8{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,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);}
.m1{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-38.014568px;}
.v2{vertical-align:-10.570341px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.210490px;}
.vb{vertical-align:2.385923px;}
.v6{vertical-align:3.687420px;}
.v7{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.v8{vertical-align:32.745846px;}
.vc{vertical-align:34.462843px;}
.v9{vertical-align:35.739769px;}
.vd{vertical-align:38.087915px;}
.v5{vertical-align:45.344726px;}
.va{vertical-align:68.792621px;}
.ls16{letter-spacing:-1.407640px;}
.ls17{letter-spacing:-1.390554px;}
.ls15{letter-spacing:-1.023738px;}
.ls2e{letter-spacing:-0.569088px;}
.ls2f{letter-spacing:-0.508896px;}
.ls62{letter-spacing:-0.481536px;}
.ls1c{letter-spacing:-0.448704px;}
.ls30{letter-spacing:-0.421344px;}
.ls31{letter-spacing:-0.393984px;}
.ls1e{letter-spacing:-0.361152px;}
.ls51{letter-spacing:-0.273600px;}
.ls61{letter-spacing:-0.240768px;}
.ls14{letter-spacing:-0.238464px;}
.ls1d{letter-spacing:-0.207936px;}
.ls6{letter-spacing:-0.205344px;}
.ls7{letter-spacing:-0.198720px;}
.ls50{letter-spacing:-0.171552px;}
.ls39{letter-spacing:-0.169321px;}
.ls29{letter-spacing:-0.169147px;}
.ls3{letter-spacing:-0.158976px;}
.ls32{letter-spacing:-0.153216px;}
.ls13{letter-spacing:-0.139104px;}
.ls5f{letter-spacing:-0.137521px;}
.ls5{letter-spacing:-0.125856px;}
.ls56{letter-spacing:-0.121019px;}
.ls8{letter-spacing:-0.119232px;}
.ls44{letter-spacing:-0.114368px;}
.ls12{letter-spacing:-0.099360px;}
.ls5d{letter-spacing:-0.099015px;}
.ls41{letter-spacing:-0.093574px;}
.ls58{letter-spacing:-0.082513px;}
.ls4{letter-spacing:-0.079488px;}
.ls3a{letter-spacing:-0.062084px;}
.ls2a{letter-spacing:-0.062020px;}
.ls9{letter-spacing:-0.039744px;}
.ls57{letter-spacing:-0.005501px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.005472px;}
.ls55{letter-spacing:0.005616px;}
.ls37{letter-spacing:0.005760px;}
.ls24{letter-spacing:0.007200px;}
.lsd{letter-spacing:0.014400px;}
.ls4e{letter-spacing:0.041588px;}
.ls3d{letter-spacing:0.045152px;}
.ls36{letter-spacing:0.049347px;}
.ls54{letter-spacing:0.054857px;}
.ls3e{letter-spacing:0.055291px;}
.ls42{letter-spacing:0.062383px;}
.lsb{letter-spacing:0.080640px;}
.ls45{letter-spacing:0.083177px;}
.ls59{letter-spacing:0.088014px;}
.ls27{letter-spacing:0.095850px;}
.ls3f{letter-spacing:0.103971px;}
.ls5a{letter-spacing:0.110017px;}
.ls22{letter-spacing:0.112764px;}
.ls34{letter-spacing:0.112881px;}
.ls20{letter-spacing:0.114697px;}
.lsa{letter-spacing:0.115615px;}
.ls4f{letter-spacing:0.119567px;}
.ls49{letter-spacing:0.131316px;}
.ls47{letter-spacing:0.134772px;}
.ls1{letter-spacing:0.137808px;}
.ls5b{letter-spacing:0.138972px;}
.lsf{letter-spacing:0.139680px;}
.lsc{letter-spacing:0.139824px;}
.ls26{letter-spacing:0.139968px;}
.lse{letter-spacing:0.141120px;}
.ls21{letter-spacing:0.142836px;}
.ls33{letter-spacing:0.142984px;}
.ls4d{letter-spacing:0.150758px;}
.ls4c{letter-spacing:0.155956px;}
.ls18{letter-spacing:0.162628px;}
.ls4b{letter-spacing:0.166354px;}
.ls19{letter-spacing:0.167411px;}
.ls2c{letter-spacing:0.169147px;}
.ls3c{letter-spacing:0.180609px;}
.ls60{letter-spacing:0.181528px;}
.ls1f{letter-spacing:0.181761px;}
.ls5e{letter-spacing:0.187029px;}
.ls1b{letter-spacing:0.191327px;}
.ls2b{letter-spacing:0.191700px;}
.ls3b{letter-spacing:0.191897px;}
.ls4a{letter-spacing:0.197545px;}
.ls1a{letter-spacing:0.234604px;}
.ls48{letter-spacing:0.259927px;}
.ls5c{letter-spacing:0.352055px;}
.ls43{letter-spacing:0.363898px;}
.ls52{letter-spacing:0.385060px;}
.ls46{letter-spacing:0.421082px;}
.ls28{letter-spacing:0.462334px;}
.ls38{letter-spacing:120.093835px;}
.ls53{letter-spacing:136.350024px;}
.ls35{letter-spacing:191.738719px;}
.ls11{letter-spacing:259.755094px;}
.ls10{letter-spacing:287.734924px;}
.ls40{letter-spacing:420.578345px;}
.ls23{letter-spacing:439.358480px;}
.ls2d{letter-spacing:517.070055px;}
.ls2{letter-spacing:845.585280px;}
.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;}
}
.ws1d{word-spacing:-573.452274px;}
.ws21{word-spacing:-176.534213px;}
.ws24{word-spacing:-56.553258px;}
.ws19{word-spacing:-56.494984px;}
.ws25{word-spacing:-56.378293px;}
.ws1a{word-spacing:-56.320199px;}
.ws22{word-spacing:-56.271056px;}
.ws17{word-spacing:-56.213072px;}
.ws42{word-spacing:-55.393588px;}
.ws49{word-spacing:-55.360583px;}
.ws48{word-spacing:-55.118545px;}
.ws43{word-spacing:-55.008528px;}
.ws45{word-spacing:-54.926015px;}
.ws41{word-spacing:-54.887509px;}
.ws30{word-spacing:-52.406566px;}
.ws13{word-spacing:-52.368727px;}
.ws2d{word-spacing:-52.349382px;}
.ws12{word-spacing:-52.249804px;}
.ws36{word-spacing:-52.245411px;}
.ws3e{word-spacing:-52.151837px;}
.ws3f{word-spacing:-52.105050px;}
.ws32{word-spacing:-52.089454px;}
.ws2c{word-spacing:-52.047866px;}
.ws2e{word-spacing:-51.871115px;}
.ws14{word-spacing:-48.023155px;}
.ws11{word-spacing:-47.999239px;}
.ws10{word-spacing:-47.994456px;}
.ws23{word-spacing:-37.770245px;}
.ws18{word-spacing:-37.731325px;}
.ws47{word-spacing:-36.626461px;}
.ws31{word-spacing:-34.612115px;}
.ws1{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.374976px;}
.ws9{word-spacing:-18.335232px;}
.ws2a{word-spacing:-18.315360px;}
.ws8{word-spacing:-18.295488px;}
.ws3{word-spacing:-18.288864px;}
.ws2{word-spacing:-18.255744px;}
.ws4{word-spacing:-18.216000px;}
.ws1f{word-spacing:-15.212160px;}
.ws20{word-spacing:-14.818176px;}
.ws4e{word-spacing:-14.730624px;}
.ws6{word-spacing:-11.747088px;}
.wsa{word-spacing:-11.609280px;}
.ws1e{word-spacing:-10.015200px;}
.wsd{word-spacing:-0.073187px;}
.ws5{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.608928px;}
.wsb{word-spacing:0.981082px;}
.wse{word-spacing:1.317366px;}
.wsc{word-spacing:1.364984px;}
.ws2f{word-spacing:24.350008px;}
.ws35{word-spacing:25.264941px;}
.ws3a{word-spacing:33.156341px;}
.ws3b{word-spacing:34.211647px;}
.ws4c{word-spacing:34.732264px;}
.ws4b{word-spacing:36.118600px;}
.ws4d{word-spacing:36.179109px;}
.ws15{word-spacing:39.653615px;}
.ws46{word-spacing:47.763898px;}
.ws4a{word-spacing:54.254719px;}
.ws44{word-spacing:57.863320px;}
.ws2b{word-spacing:59.778253px;}
.ws34{word-spacing:61.000005px;}
.ws28{word-spacing:75.889807px;}
.ws26{word-spacing:76.826701px;}
.ws38{word-spacing:79.423422px;}
.ws27{word-spacing:94.695665px;}
.ws3d{word-spacing:95.091846px;}
.ws1c{word-spacing:108.141096px;}
.ws33{word-spacing:111.784274px;}
.ws3c{word-spacing:117.965459px;}
.ws29{word-spacing:127.636604px;}
.ws39{word-spacing:128.601591px;}
.ws37{word-spacing:144.098467px;}
.wsf{word-spacing:283.460977px;}
.ws1b{word-spacing:296.993295px;}
.ws40{word-spacing:1123.837777px;}
._0{margin-left:-1447.886400px;}
._11{margin-left:-517.024949px;}
._12{margin-left:-285.857851px;}
._6{margin-left:-246.719459px;}
._8{margin-left:-240.375629px;}
._5{margin-left:-220.673824px;}
._9{margin-left:-211.905875px;}
._13{margin-left:-197.337767px;}
._7{margin-left:-181.834955px;}
._14{margin-left:-120.048683px;}
._15{margin-left:-75.573665px;}
._16{margin-left:-72.920968px;}
._2{margin-left:-1.058688px;}
._1{width:1.059840px;}
._d{width:60.594562px;}
._a{width:62.576064px;}
._e{width:81.943433px;}
._1e{width:84.736338px;}
._23{width:85.828033px;}
._28{width:92.794088px;}
._1d{width:99.103310px;}
._22{width:100.851838px;}
._30{width:114.129148px;}
._33{width:115.193299px;}
._27{width:116.499468px;}
._31{width:119.643549px;}
._1f{width:125.856855px;}
._24{width:127.416420px;}
._25{width:131.173657px;}
._17{width:134.836062px;}
._20{width:135.890054px;}
._26{width:136.910785px;}
._f{width:148.172472px;}
._2b{width:155.436596px;}
._34{width:165.644204px;}
._32{width:179.767870px;}
._1a{width:181.399373px;}
._2a{width:193.022100px;}
._19{width:196.356073px;}
._2d{width:202.223531px;}
._1c{width:213.426759px;}
._18{width:215.094278px;}
._21{width:228.287236px;}
._1b{width:230.784703px;}
._10{width:253.156164px;}
._29{width:256.208137px;}
._c{width:332.909520px;}
._2c{width:365.457949px;}
._2f{width:367.537368px;}
._2e{width:458.511964px;}
._3{width:843.984000px;}
._4{width:845.585280px;}
._b{width:849.366144px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fsb{font-size:30.369594px;}
.fsa{font-size:30.370166px;}
.fs16{font-size:34.556824px;}
.fs11{font-size:36.000000px;}
.fs18{font-size:36.571604px;}
.fsf{font-size:37.588488px;}
.fs13{font-size:37.627261px;}
.fs1{font-size:41.532000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:42.655755px;}
.fs9{font-size:47.831828px;}
.fs0{font-size:48.000000px;}
.fs15{font-size:51.985483px;}
.fsd{font-size:52.134124px;}
.fsc{font-size:52.135106px;}
.fs8{font-size:54.720000px;}
.fs17{font-size:55.008528px;}
.fse{font-size:56.382219px;}
.fs12{font-size:56.440377px;}
.fs10{font-size:57.793588px;}
.fs14{font-size:61.684034px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:73.187026px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.330163px;}
.ycd{bottom:7.932463px;}
.yca{bottom:17.436105px;}
.y12{bottom:21.780000px;}
.ycc{bottom:22.039309px;}
.yc9{bottom:28.773794px;}
.ycb{bottom:33.375491px;}
.yed{bottom:37.766820px;}
.y11{bottom:52.500000px;}
.ye0{bottom:54.097109px;}
.y10{bottom:74.280000px;}
.ye5{bottom:102.868857px;}
.ye1{bottom:102.939364px;}
.y4{bottom:108.578077px;}
.y1b5{bottom:117.480000px;}
.y3{bottom:121.036638px;}
.y4f{bottom:122.880000px;}
.y11d{bottom:125.040000px;}
.y93{bottom:125.400000px;}
.y145{bottom:126.480000px;}
.y71{bottom:131.520000px;}
.ye6{bottom:132.413333px;}
.y2{bottom:133.495200px;}
.y1f5{bottom:137.280000px;}
.y1dd{bottom:137.640000px;}
.y184{bottom:140.880000px;}
.y1c4{bottom:141.240000px;}
.y5{bottom:146.054700px;}
.y4e{bottom:151.320000px;}
.yc6{bottom:152.040000px;}
.y11c{bottom:153.480000px;}
.y92{bottom:153.840000px;}
.ye7{bottom:154.466195px;}
.yec{bottom:154.540590px;}
.y154{bottom:155.280000px;}
.y144{bottom:155.640000px;}
.yde{bottom:156.720000px;}
.y70{bottom:159.960000px;}
.y20b{bottom:165.720000px;}
.y1dc{bottom:166.080000px;}
.y183{bottom:169.320000px;}
.y1c3{bottom:169.680000px;}
.ye2{bottom:172.631557px;}
.y1f4{bottom:177.600000px;}
.ye8{bottom:179.064916px;}
.y4d{bottom:179.760000px;}
.y11b{bottom:181.920000px;}
.y91{bottom:182.280000px;}
.y153{bottom:183.720000px;}
.y143{bottom:185.160000px;}
.ydd{bottom:187.680000px;}
.ydf{bottom:187.736400px;}
.y6f{bottom:188.400000px;}
.yea{bottom:192.710334px;}
.yc5{bottom:192.720000px;}
.y20a{bottom:194.160000px;}
.y1db{bottom:194.520000px;}
.y182{bottom:197.760000px;}
.y1f3{bottom:206.040000px;}
.y4c{bottom:208.200000px;}
.y11a{bottom:210.360000px;}
.y90{bottom:210.720000px;}
.y152{bottom:212.160000px;}
.y6e{bottom:216.840000px;}
.yc4{bottom:221.160000px;}
.y209{bottom:222.600000px;}
.y142{bottom:222.960000px;}
.ye9{bottom:223.528182px;}
.y181{bottom:226.560000px;}
.y1f2{bottom:234.480000px;}
.y4b{bottom:236.640000px;}
.y8f{bottom:239.160000px;}
.y151{bottom:240.600000px;}
.y11e{bottom:241.805100px;}
.ye3{bottom:242.329700px;}
.y6d{bottom:245.280000px;}
.y1c2{bottom:247.080000px;}
.y119{bottom:247.800000px;}
.y1b4{bottom:249.600000px;}
.yc3{bottom:250.320000px;}
.y212{bottom:251.040000px;}
.y141{bottom:251.400000px;}
.y180{bottom:255.000000px;}
.y1a4{bottom:262.459900px;}
.y208{bottom:262.920000px;}
.y1da{bottom:263.640000px;}
.y19e{bottom:264.000000px;}
.y4a{bottom:265.080000px;}
.y8e{bottom:267.600000px;}
.y150{bottom:269.040000px;}
.y6c{bottom:273.720000px;}
.y1f1{bottom:275.160000px;}
.yc2{bottom:279.840000px;}
.yef{bottom:282.191736px;}
.y17f{bottom:283.440000px;}
.y1c1{bottom:284.520000px;}
.y1a3{bottom:286.941465px;}
.y1b3{bottom:287.040000px;}
.y8{bottom:291.234300px;}
.y207{bottom:291.720000px;}
.y1d9{bottom:292.080000px;}
.y19d{bottom:292.440000px;}
.y49{bottom:293.520000px;}
.y118{bottom:294.240000px;}
.y8d{bottom:296.040000px;}
.y14f{bottom:297.480000px;}
.yee{bottom:300.572331px;}
.y6b{bottom:302.160000px;}
.y1f0{bottom:303.600000px;}
.y7{bottom:305.634300px;}
.yc1{bottom:308.280000px;}
.y1a2{bottom:310.289865px;}
.y1a0{bottom:311.196423px;}
.y17e{bottom:311.880000px;}
.ye4{bottom:312.021870px;}
.y1c0{bottom:312.960000px;}
.y6{bottom:320.034300px;}
.y211{bottom:320.160000px;}
.y1d8{bottom:320.520000px;}
.y19c{bottom:320.880000px;}
.y48{bottom:321.960000px;}
.y117{bottom:322.680000px;}
.y8c{bottom:324.480000px;}
.yeb{bottom:325.099837px;}
.y14e{bottom:325.920000px;}
.y19f{bottom:328.500736px;}
.y1a1{bottom:329.407218px;}
.y6a{bottom:330.600000px;}
.y1ef{bottom:332.040000px;}
.y140{bottom:336.720000px;}
.y17d{bottom:340.320000px;}
.y1bf{bottom:341.400000px;}
.yc0{bottom:348.600000px;}
.y155{bottom:349.458150px;}
.y19b{bottom:350.040000px;}
.y47{bottom:350.400000px;}
.y116{bottom:351.480000px;}
.y69{bottom:359.040000px;}
.y206{bottom:360.480000px;}
.y1d7{bottom:360.840000px;}
.y8b{bottom:361.920000px;}
.y1b2{bottom:362.280000px;}
.y14d{bottom:363.720000px;}
.y13f{bottom:365.160000px;}
.y2b{bottom:369.120000px;}
.y1be{bottom:369.840000px;}
.y1ee{bottom:372.360000px;}
.y17c{bottom:378.120000px;}
.y46{bottom:378.840000px;}
.y19a{bottom:379.560000px;}
.y115{bottom:380.640000px;}
.y68{bottom:387.480000px;}
.y205{bottom:388.920000px;}
.y1d6{bottom:389.280000px;}
.y8a{bottom:390.720000px;}
.yf0{bottom:391.668900px;}
.yc7{bottom:391.696050px;}
.y14c{bottom:392.160000px;}
.y13e{bottom:393.600000px;}
.y1b1{bottom:395.040000px;}
.y17b{bottom:395.400000px;}
.y1b0{bottom:396.480000px;}
.y2a{bottom:397.560000px;}
.y1bd{bottom:398.280000px;}
.y1ed{bottom:400.800000px;}
.y45{bottom:407.280000px;}
.y199{bottom:408.000000px;}
.y114{bottom:410.880000px;}
.ybf{bottom:414.120000px;}
.y1af{bottom:414.840000px;}
.y67{bottom:415.920000px;}
.y210{bottom:417.360000px;}
.y1d5{bottom:417.720000px;}
.y89{bottom:419.160000px;}
.y14b{bottom:420.600000px;}
.y13d{bottom:422.040000px;}
.y165{bottom:423.297042px;}
.y29{bottom:426.000000px;}
.y1bc{bottom:426.720000px;}
.y1ec{bottom:429.240000px;}
.y17a{bottom:429.960000px;}
.y1ae{bottom:431.760000px;}
.y44{bottom:435.720000px;}
.y198{bottom:436.440000px;}
.y113{bottom:440.400000px;}
.y66{bottom:444.360000px;}
.y20f{bottom:445.800000px;}
.y88{bottom:447.600000px;}
.y14a{bottom:449.040000px;}
.y164{bottom:449.213032px;}
.y13c{bottom:450.480000px;}
.y28{bottom:454.440000px;}
.y1bb{bottom:455.520000px;}
.y204{bottom:457.680000px;}
.y1d4{bottom:458.400000px;}
.yb3{bottom:464.160000px;}
.y43{bottom:464.520000px;}
.y197{bottom:465.240000px;}
.y1ad{bottom:466.320000px;}
.y179{bottom:467.400000px;}
.y112{bottom:468.840000px;}
.y1eb{bottom:469.920000px;}
.y163{bottom:472.350454px;}
.y65{bottom:472.800000px;}
.y87{bottom:476.040000px;}
.yfa{bottom:476.299235px;}
.y149{bottom:477.480000px;}
.y13b{bottom:478.920000px;}
.y27{bottom:482.880000px;}
.y1ba{bottom:483.960000px;}
.y203{bottom:486.480000px;}
.y1d3{bottom:486.840000px;}
.yb2{bottom:492.600000px;}
.y42{bottom:492.960000px;}
.y196{bottom:493.680000px;}
.y1ac{bottom:494.760000px;}
.y162{bottom:495.487875px;}
.y111{bottom:497.280000px;}
.y1ea{bottom:498.360000px;}
.y64{bottom:501.240000px;}
.yf9{bottom:501.331525px;}
.y128{bottom:501.617492px;}
.y129{bottom:502.083335px;}
.y86{bottom:504.480000px;}
.y178{bottom:504.840000px;}
.y148{bottom:505.920000px;}
.y13a{bottom:507.360000px;}
.y26{bottom:511.320000px;}
.y1b9{bottom:512.400000px;}
.y1d2{bottom:515.280000px;}
.y161{bottom:518.625422px;}
.yb1{bottom:521.040000px;}
.y41{bottom:521.400000px;}
.ybe{bottom:521.760000px;}
.y195{bottom:522.120000px;}
.y1ab{bottom:523.920000px;}
.y110{bottom:525.720000px;}
.yf8{bottom:526.597845px;}
.y1e9{bottom:526.800000px;}
.y127{bottom:527.140932px;}
.y63{bottom:529.680000px;}
.y85{bottom:532.920000px;}
.y147{bottom:534.360000px;}
.y139{bottom:536.520000px;}
.y25{bottom:540.840000px;}
.y160{bottom:541.762844px;}
.y177{bottom:542.280000px;}
.yb0{bottom:549.480000px;}
.y40{bottom:549.840000px;}
.ybd{bottom:550.200000px;}
.y194{bottom:550.560000px;}
.yf7{bottom:551.864036px;}
.y126{bottom:552.433185px;}
.y1aa{bottom:553.440000px;}
.y10f{bottom:554.160000px;}
.y202{bottom:555.240000px;}
.y1d1{bottom:555.600000px;}
.y62{bottom:558.480000px;}
.ydc{bottom:560.280000px;}
.y84{bottom:561.360000px;}
.y15f{bottom:564.905399px;}
.y138{bottom:566.040000px;}
.y1e8{bottom:567.120000px;}
.y24{bottom:570.360000px;}
.y146{bottom:571.800000px;}
.yf6{bottom:577.130355px;}
.y125{bottom:577.725567px;}
.y3f{bottom:578.280000px;}
.ybc{bottom:578.640000px;}
.y176{bottom:579.720000px;}
.y1a9{bottom:582.240000px;}
.y10e{bottom:582.600000px;}
.y201{bottom:583.680000px;}
.y1d0{bottom:584.040000px;}
.y61{bottom:586.920000px;}
.y193{bottom:588.000000px;}
.ydb{bottom:588.720000px;}
.y83{bottom:589.800000px;}
.y15c{bottom:592.326489px;}
.y157{bottom:593.227971px;}
.y15d{bottom:593.228472px;}
.y137{bottom:594.480000px;}
.y1e7{bottom:595.560000px;}
.y159{bottom:599.612094px;}
.y156{bottom:601.337682px;}
.yf5{bottom:602.389614px;}
.y124{bottom:603.010881px;}
.y167{bottom:605.391723px;}
.y3e{bottom:606.720000px;}
.y15b{bottom:607.724058px;}
.ybb{bottom:607.800000px;}
.y23{bottom:608.520000px;}
.y158{bottom:609.524143px;}
.y15e{bottom:609.524644px;}
.y15a{bottom:610.279135px;}
.y1a8{bottom:610.680000px;}
.y10d{bottom:611.040000px;}
.y200{bottom:612.120000px;}
.y1cf{bottom:612.480000px;}
.y60{bottom:615.360000px;}
.yaf{bottom:615.720000px;}
.y192{bottom:616.440000px;}
.yda{bottom:617.160000px;}
.y82{bottom:618.240000px;}
.y166{bottom:621.694393px;}
.y136{bottom:622.920000px;}
.y1e6{bottom:624.000000px;}
.yf4{bottom:627.655805px;}
.y123{bottom:628.303134px;}
.y3d{bottom:635.160000px;}
.yba{bottom:637.320000px;}
.y22{bottom:638.040000px;}
.y168{bottom:638.523391px;}
.y5f{bottom:643.800000px;}
.yae{bottom:644.160000px;}
.y191{bottom:644.880000px;}
.yd9{bottom:645.600000px;}
.y81{bottom:646.680000px;}
.y10c{bottom:648.480000px;}
.yf2{bottom:651.070429px;}
.y135{bottom:651.720000px;}
.y121{bottom:651.741910px;}
.y1ff{bottom:652.440000px;}
.yf1{bottom:652.921739px;}
.y1ce{bottom:653.160000px;}
.y11f{bottom:653.595130px;}
.yf3{bottom:653.843993px;}
.y120{bottom:654.517936px;}
.y122{bottom:654.518335px;}
.y175{bottom:654.600000px;}
.y3c{bottom:663.600000px;}
.y1e5{bottom:664.680000px;}
.y1a7{bottom:665.400000px;}
.yb9{bottom:665.760000px;}
.y21{bottom:666.480000px;}
.y5e{bottom:672.240000px;}
.yad{bottom:672.600000px;}
.y190{bottom:673.320000px;}
.yd8{bottom:674.040000px;}
.y80{bottom:675.120000px;}
.y10b{bottom:676.920000px;}
.y134{bottom:680.160000px;}
.y1fe{bottom:681.240000px;}
.y1cd{bottom:681.600000px;}
.y3b{bottom:692.040000px;}
.y1e4{bottom:693.120000px;}
.y20{bottom:694.920000px;}
.y1a6{bottom:696.720000px;}
.y5d{bottom:700.680000px;}
.yac{bottom:701.040000px;}
.y18f{bottom:701.760000px;}
.y9f{bottom:702.120000px;}
.yd7{bottom:702.480000px;}
.yb8{bottom:703.200000px;}
.y7f{bottom:703.560000px;}
.y10a{bottom:705.720000px;}
.y1fd{bottom:709.680000px;}
.y1cc{bottom:710.040000px;}
.y133{bottom:717.600000px;}
.y3a{bottom:720.480000px;}
.y1e3{bottom:721.560000px;}
.y1f{bottom:723.360000px;}
.y5c{bottom:729.120000px;}
.yab{bottom:729.480000px;}
.y18e{bottom:730.200000px;}
.yd6{bottom:730.920000px;}
.y7e{bottom:732.000000px;}
.y109{bottom:734.160000px;}
.y9e{bottom:741.000000px;}
.y39{bottom:748.920000px;}
.yb7{bottom:749.640000px;}
.y1fc{bottom:750.000000px;}
.y1cb{bottom:750.360000px;}
.y1e{bottom:751.800000px;}
.y132{bottom:753.960000px;}
.y5b{bottom:757.560000px;}
.yaa{bottom:757.920000px;}
.y18d{bottom:758.640000px;}
.yd5{bottom:759.360000px;}
.y7d{bottom:760.440000px;}
.y1e2{bottom:761.880000px;}
.y108{bottom:763.320000px;}
.y174{bottom:766.200000px;}
.y1{bottom:767.491050px;}
.y9d{bottom:769.440000px;}
.y38{bottom:777.360000px;}
.yb6{bottom:778.080000px;}
.y1fb{bottom:778.440000px;}
.y1ca{bottom:778.800000px;}
.y1d{bottom:780.240000px;}
.yf{bottom:784.040550px;}
.y5a{bottom:786.000000px;}
.ya9{bottom:786.360000px;}
.y18c{bottom:787.080000px;}
.yd4{bottom:787.800000px;}
.y7c{bottom:788.880000px;}
.y1e1{bottom:790.320000px;}
.y131{bottom:790.680000px;}
.y107{bottom:793.560000px;}
.y9c{bottom:797.880000px;}
.y173{bottom:802.920000px;}
.y37{bottom:805.800000px;}
.y1fa{bottom:806.880000px;}
.yb5{bottom:807.240000px;}
.y59{bottom:814.440000px;}
.y18b{bottom:815.520000px;}
.yd3{bottom:816.240000px;}
.y7b{bottom:817.320000px;}
.y1c{bottom:818.760000px;}
.ye{bottom:819.191850px;}
.y9b{bottom:826.320000px;}
.ya8{bottom:826.680000px;}
.y130{bottom:827.400000px;}
.y106{bottom:832.080000px;}
.y36{bottom:834.240000px;}
.y172{bottom:839.640000px;}
.y58{bottom:842.880000px;}
.y18a{bottom:843.960000px;}
.yd2{bottom:844.680000px;}
.y7a{bottom:845.760000px;}
.y1f9{bottom:847.200000px;}
.y1c9{bottom:847.920000px;}
.y9a{bottom:854.760000px;}
.y1b{bottom:858.000000px;}
.y1e0{bottom:859.440000px;}
.yd{bottom:862.391850px;}
.y35{bottom:862.680000px;}
.ya7{bottom:864.120000px;}
.y105{bottom:868.800000px;}
.y57{bottom:871.320000px;}
.y189{bottom:872.400000px;}
.yd1{bottom:873.120000px;}
.y79{bottom:874.200000px;}
.y1f8{bottom:876.000000px;}
.y171{bottom:876.360000px;}
.y99{bottom:883.200000px;}
.y1df{bottom:887.880000px;}
.y34{bottom:891.120000px;}
.y1a{bottom:895.440000px;}
.y56{bottom:899.760000px;}
.y12f{bottom:900.840000px;}
.yd0{bottom:901.560000px;}
.y78{bottom:903.000000px;}
.y20e{bottom:904.440000px;}
.y1c8{bottom:904.800000px;}
.y104{bottom:905.520000px;}
.yc{bottom:905.591850px;}
.y188{bottom:909.840000px;}
.ya6{bottom:910.560000px;}
.y98{bottom:912.000000px;}
.y170{bottom:912.720000px;}
.y1de{bottom:916.320000px;}
.y1b8{bottom:919.560000px;}
.y55{bottom:928.200000px;}
.y33{bottom:928.560000px;}
.ycf{bottom:930.000000px;}
.y77{bottom:931.440000px;}
.y19{bottom:932.880000px;}
.y187{bottom:938.280000px;}
.y12e{bottom:938.640000px;}
.ya5{bottom:939.000000px;}
.y97{bottom:940.440000px;}
.y103{bottom:942.240000px;}
.y1f7{bottom:944.760000px;}
.y1c7{bottom:945.120000px;}
.y1b7{bottom:948.000000px;}
.yb{bottom:948.791850px;}
.y16f{bottom:949.440000px;}
.y12d{bottom:955.920000px;}
.y54{bottom:956.640000px;}
.y32{bottom:957.000000px;}
.yce{bottom:958.800000px;}
.y76{bottom:959.880000px;}
.y186{bottom:966.720000px;}
.ya4{bottom:967.800000px;}
.y96{bottom:968.880000px;}
.y18{bottom:970.320000px;}
.y12c{bottom:971.400000px;}
.y12b{bottom:972.840000px;}
.y1f6{bottom:973.200000px;}
.y1c6{bottom:973.560000px;}
.y1b6{bottom:976.800000px;}
.y102{bottom:978.600000px;}
.y53{bottom:985.080000px;}
.y31{bottom:985.800000px;}
.y16e{bottom:986.160000px;}
.y75{bottom:988.320000px;}
.y12a{bottom:991.200000px;}
.ya{bottom:991.991850px;}
.y185{bottom:995.520000px;}
.ya3{bottom:996.240000px;}
.y95{bottom:997.320000px;}
.y17{bottom:998.760000px;}
.y20d{bottom:1001.640000px;}
.y1c5{bottom:1002.000000px;}
.y52{bottom:1013.520000px;}
.y30{bottom:1014.240000px;}
.y101{bottom:1015.320000px;}
.y74{bottom:1016.760000px;}
.y16d{bottom:1023.960000px;}
.ya2{bottom:1024.680000px;}
.y94{bottom:1025.760000px;}
.y16{bottom:1036.200000px;}
.y9{bottom:1037.031000px;}
.y16c{bottom:1041.240000px;}
.y51{bottom:1041.960000px;}
.y2f{bottom:1042.680000px;}
.yb4{bottom:1045.200000px;}
.y100{bottom:1052.040000px;}
.ya1{bottom:1053.120000px;}
.y73{bottom:1054.200000px;}
.y16b{bottom:1056.720000px;}
.y16a{bottom:1058.160000px;}
.y50{bottom:1070.760000px;}
.y2e{bottom:1071.120000px;}
.y15{bottom:1073.640000px;}
.y169{bottom:1076.520000px;}
.y72{bottom:1082.640000px;}
.yff{bottom:1090.200000px;}
.ya0{bottom:1090.560000px;}
.y20c{bottom:1099.200000px;}
.y2d{bottom:1099.560000px;}
.y1a5{bottom:1102.080000px;}
.yfe{bottom:1107.120000px;}
.y14{bottom:1111.080000px;}
.yfd{bottom:1122.960000px;}
.yfc{bottom:1124.400000px;}
.y2c{bottom:1138.080000px;}
.y13{bottom:1139.520000px;}
.yfb{bottom:1142.400000px;}
.h13{height:22.109895px;}
.h12{height:22.110311px;}
.h2b{height:25.158313px;}
.h18{height:27.365447px;}
.h22{height:27.393675px;}
.hb{height:29.617424px;}
.h2{height:31.757379px;}
.h11{height:34.822878px;}
.h1{height:36.703125px;}
.h31{height:37.212265px;}
.h6{height:37.500000px;}
.h29{height:37.846853px;}
.h15{height:37.955068px;}
.h14{height:37.955783px;}
.h2d{height:38.735815px;}
.h2f{height:38.761357px;}
.h2e{height:38.761858px;}
.hf{height:39.837656px;}
.h33{height:40.047713px;}
.h1d{height:40.128165px;}
.h30{height:40.232777px;}
.h37{height:40.450662px;}
.h36{height:40.747869px;}
.h19{height:41.047797px;}
.h21{height:41.090138px;}
.h1c{height:41.955672px;}
.h1b{height:41.983401px;}
.h1a{height:41.983915px;}
.h25{height:41.998950px;}
.h24{height:42.026707px;}
.h23{height:42.027221px;}
.h17{height:44.735218px;}
.h26{height:44.907664px;}
.h1e{height:45.597656px;}
.h7{height:48.224531px;}
.hd{height:48.779439px;}
.h1f{height:48.815156px;}
.hc{height:50.816383px;}
.ha{height:50.864025px;}
.h8{height:52.417969px;}
.h3{height:55.054688px;}
.h5{height:59.092031px;}
.h38{height:64.230469px;}
.h9{height:64.613672px;}
.h28{height:70.592700px;}
.h2a{height:73.586623px;}
.h35{height:78.135628px;}
.he{height:95.017561px;}
.h2c{height:106.639474px;}
.h34{height:109.264964px;}
.h4{height:110.109375px;}
.h10{height:350.474550px;}
.h32{height:436.855950px;}
.h27{height:744.975000px;}
.h16{height:763.837050px;}
.h20{height:764.624850px;}
.h0{height:1263.000000px;}
.w2{width:10.500000px;}
.w6{width:21.000000px;}
.w3{width:149.999985px;}
.w4{width:495.975000px;}
.w7{width:737.319900px;}
.w9{width:785.629800px;}
.w5{width:795.993960px;}
.w8{width:874.391880px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x22{left:1.080000px;}
.xa{left:3.073439px;}
.x2c{left:18.108120px;}
.x8{left:36.132089px;}
.xc{left:47.901327px;}
.x10{left:58.599729px;}
.x1{left:64.701150px;}
.xf{left:66.870337px;}
.x51{left:74.270678px;}
.x42{left:76.096482px;}
.x50{left:79.032631px;}
.x3{left:81.000000px;}
.x17{left:85.495716px;}
.x28{left:92.136266px;}
.x24{left:93.527207px;}
.x16{left:96.506040px;}
.xb{left:100.336716px;}
.x40{left:103.217133px;}
.x41{left:107.045963px;}
.x9{left:110.381712px;}
.x6{left:119.339619px;}
.x7{left:129.010173px;}
.x46{left:132.153346px;}
.x1e{left:133.499988px;}
.x1c{left:138.261219px;}
.x1d{left:146.038049px;}
.x23{left:155.180100px;}
.x2d{left:170.449600px;}
.x47{left:182.171642px;}
.xe{left:198.262350px;}
.x2{left:205.824450px;}
.x2e{left:213.947091px;}
.x14{left:217.076439px;}
.x48{left:226.451456px;}
.x5{left:230.760144px;}
.x2f{left:259.020761px;}
.x30{left:260.368696px;}
.x13{left:264.783171px;}
.x43{left:291.923708px;}
.x32{left:306.798188px;}
.x31{left:309.050838px;}
.x49{left:317.503157px;}
.x25{left:331.623168px;}
.x29{left:346.658291px;}
.x26{left:361.383460px;}
.x4a{left:365.634106px;}
.x4b{left:367.067468px;}
.x33{left:376.661782px;}
.x27{left:393.383086px;}
.x36{left:402.952763px;}
.x34{left:412.496730px;}
.x4d{left:416.637193px;}
.x4c{left:419.055220px;}
.x15{left:423.547199px;}
.x11{left:430.895052px;}
.x53{left:434.764800px;}
.x35{left:439.914662px;}
.x54{left:441.435600px;}
.x12{left:472.960628px;}
.x1f{left:477.150120px;}
.x18{left:479.857938px;}
.x20{left:483.820920px;}
.x19{left:517.446296px;}
.x4f{left:534.208727px;}
.x37{left:538.921485px;}
.x4e{left:544.408110px;}
.x1a{left:547.177333px;}
.x1b{left:555.034654px;}
.x44{left:557.438400px;}
.x45{left:564.109200px;}
.x38{left:584.374895px;}
.x39{left:585.722955px;}
.x3b{left:632.525677px;}
.x3a{left:634.778327px;}
.x52{left:659.369880px;}
.xd{left:694.109880px;}
.x3c{left:702.613008px;}
.x3f{left:728.907871px;}
.x3d{left:738.445452px;}
.x3e{left:765.865889px;}
.x2a{left:776.892240px;}
.x2b{left:783.563040px;}
.x21{left:792.000000px;}
.x4{left:802.500000px;}
@media print{
.v4{vertical-align:-33.790727pt;}
.v2{vertical-align:-9.395858pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.075991pt;}
.vb{vertical-align:2.120821pt;}
.v6{vertical-align:3.277707pt;}
.v7{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.v8{vertical-align:29.107419pt;}
.vc{vertical-align:30.633638pt;}
.v9{vertical-align:31.768684pt;}
.vd{vertical-align:33.855924pt;}
.v5{vertical-align:40.306423pt;}
.va{vertical-align:61.148996pt;}
.ls16{letter-spacing:-1.251235pt;}
.ls17{letter-spacing:-1.236048pt;}
.ls15{letter-spacing:-0.909989pt;}
.ls2e{letter-spacing:-0.505856pt;}
.ls2f{letter-spacing:-0.452352pt;}
.ls62{letter-spacing:-0.428032pt;}
.ls1c{letter-spacing:-0.398848pt;}
.ls30{letter-spacing:-0.374528pt;}
.ls31{letter-spacing:-0.350208pt;}
.ls1e{letter-spacing:-0.321024pt;}
.ls51{letter-spacing:-0.243200pt;}
.ls61{letter-spacing:-0.214016pt;}
.ls14{letter-spacing:-0.211968pt;}
.ls1d{letter-spacing:-0.184832pt;}
.ls6{letter-spacing:-0.182528pt;}
.ls7{letter-spacing:-0.176640pt;}
.ls50{letter-spacing:-0.152491pt;}
.ls39{letter-spacing:-0.150508pt;}
.ls29{letter-spacing:-0.150353pt;}
.ls3{letter-spacing:-0.141312pt;}
.ls32{letter-spacing:-0.136192pt;}
.ls13{letter-spacing:-0.123648pt;}
.ls5f{letter-spacing:-0.122241pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls56{letter-spacing:-0.107572pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls44{letter-spacing:-0.101661pt;}
.ls12{letter-spacing:-0.088320pt;}
.ls5d{letter-spacing:-0.088014pt;}
.ls41{letter-spacing:-0.083177pt;}
.ls58{letter-spacing:-0.073345pt;}
.ls4{letter-spacing:-0.070656pt;}
.ls3a{letter-spacing:-0.055186pt;}
.ls2a{letter-spacing:-0.055129pt;}
.ls9{letter-spacing:-0.035328pt;}
.ls57{letter-spacing:-0.004890pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.004864pt;}
.ls55{letter-spacing:0.004992pt;}
.ls37{letter-spacing:0.005120pt;}
.ls24{letter-spacing:0.006400pt;}
.lsd{letter-spacing:0.012800pt;}
.ls4e{letter-spacing:0.036967pt;}
.ls3d{letter-spacing:0.040135pt;}
.ls36{letter-spacing:0.043864pt;}
.ls54{letter-spacing:0.048762pt;}
.ls3e{letter-spacing:0.049147pt;}
.ls42{letter-spacing:0.055451pt;}
.lsb{letter-spacing:0.071680pt;}
.ls45{letter-spacing:0.073935pt;}
.ls59{letter-spacing:0.078234pt;}
.ls27{letter-spacing:0.085200pt;}
.ls3f{letter-spacing:0.092419pt;}
.ls5a{letter-spacing:0.097793pt;}
.ls22{letter-spacing:0.100235pt;}
.ls34{letter-spacing:0.100338pt;}
.ls20{letter-spacing:0.101953pt;}
.lsa{letter-spacing:0.102769pt;}
.ls4f{letter-spacing:0.106281pt;}
.ls49{letter-spacing:0.116725pt;}
.ls47{letter-spacing:0.119797pt;}
.ls1{letter-spacing:0.122496pt;}
.ls5b{letter-spacing:0.123531pt;}
.lsf{letter-spacing:0.124160pt;}
.lsc{letter-spacing:0.124288pt;}
.ls26{letter-spacing:0.124416pt;}
.lse{letter-spacing:0.125440pt;}
.ls21{letter-spacing:0.126966pt;}
.ls33{letter-spacing:0.127097pt;}
.ls4d{letter-spacing:0.134007pt;}
.ls4c{letter-spacing:0.138628pt;}
.ls18{letter-spacing:0.144558pt;}
.ls4b{letter-spacing:0.147870pt;}
.ls19{letter-spacing:0.148810pt;}
.ls2c{letter-spacing:0.150353pt;}
.ls3c{letter-spacing:0.160542pt;}
.ls60{letter-spacing:0.161358pt;}
.ls1f{letter-spacing:0.161565pt;}
.ls5e{letter-spacing:0.166248pt;}
.ls1b{letter-spacing:0.170069pt;}
.ls2b{letter-spacing:0.170400pt;}
.ls3b{letter-spacing:0.170575pt;}
.ls4a{letter-spacing:0.175595pt;}
.ls1a{letter-spacing:0.208536pt;}
.ls48{letter-spacing:0.231047pt;}
.ls5c{letter-spacing:0.312937pt;}
.ls43{letter-spacing:0.323465pt;}
.ls52{letter-spacing:0.342275pt;}
.ls46{letter-spacing:0.374295pt;}
.ls28{letter-spacing:0.410964pt;}
.ls38{letter-spacing:106.750076pt;}
.ls53{letter-spacing:121.200021pt;}
.ls35{letter-spacing:170.434416pt;}
.ls11{letter-spacing:230.893417pt;}
.ls10{letter-spacing:255.764377pt;}
.ls40{letter-spacing:373.847418pt;}
.ls23{letter-spacing:390.540872pt;}
.ls2d{letter-spacing:459.617827pt;}
.ls2{letter-spacing:751.631360pt;}
.ws1d{word-spacing:-509.735355pt;}
.ws21{word-spacing:-156.919300pt;}
.ws24{word-spacing:-50.269563pt;}
.ws19{word-spacing:-50.217763pt;}
.ws25{word-spacing:-50.114038pt;}
.ws1a{word-spacing:-50.062399pt;}
.ws22{word-spacing:-50.018717pt;}
.ws17{word-spacing:-49.967176pt;}
.ws42{word-spacing:-49.238745pt;}
.ws49{word-spacing:-49.209407pt;}
.ws48{word-spacing:-48.994262pt;}
.ws43{word-spacing:-48.896469pt;}
.ws45{word-spacing:-48.823125pt;}
.ws41{word-spacing:-48.788897pt;}
.ws30{word-spacing:-46.583614pt;}
.ws13{word-spacing:-46.549980pt;}
.ws2d{word-spacing:-46.532784pt;}
.ws12{word-spacing:-46.444270pt;}
.ws36{word-spacing:-46.440365pt;}
.ws3e{word-spacing:-46.357188pt;}
.ws3f{word-spacing:-46.315600pt;}
.ws32{word-spacing:-46.301737pt;}
.ws2c{word-spacing:-46.264770pt;}
.ws2e{word-spacing:-46.107658pt;}
.ws14{word-spacing:-42.687249pt;}
.ws11{word-spacing:-42.665990pt;}
.ws10{word-spacing:-42.661739pt;}
.ws23{word-spacing:-33.573551pt;}
.ws18{word-spacing:-33.538955pt;}
.ws47{word-spacing:-32.556854pt;}
.ws31{word-spacing:-30.766325pt;}
.ws1{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.333312pt;}
.ws9{word-spacing:-16.297984pt;}
.ws2a{word-spacing:-16.280320pt;}
.ws8{word-spacing:-16.262656pt;}
.ws3{word-spacing:-16.256768pt;}
.ws2{word-spacing:-16.227328pt;}
.ws4{word-spacing:-16.192000pt;}
.ws1f{word-spacing:-13.521920pt;}
.ws20{word-spacing:-13.171712pt;}
.ws4e{word-spacing:-13.093888pt;}
.ws6{word-spacing:-10.441856pt;}
.wsa{word-spacing:-10.319360pt;}
.ws1e{word-spacing:-8.902400pt;}
.wsd{word-spacing:-0.065055pt;}
.ws5{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.541269pt;}
.wsb{word-spacing:0.872073pt;}
.wse{word-spacing:1.170992pt;}
.wsc{word-spacing:1.213319pt;}
.ws2f{word-spacing:21.644451pt;}
.ws35{word-spacing:22.457725pt;}
.ws3a{word-spacing:29.472303pt;}
.ws3b{word-spacing:30.410353pt;}
.ws4c{word-spacing:30.873124pt;}
.ws4b{word-spacing:32.105422pt;}
.ws4d{word-spacing:32.159208pt;}
.ws15{word-spacing:35.247658pt;}
.ws46{word-spacing:42.456799pt;}
.ws4a{word-spacing:48.226417pt;}
.ws44{word-spacing:51.434062pt;}
.ws2b{word-spacing:53.136225pt;}
.ws34{word-spacing:54.222227pt;}
.ws28{word-spacing:67.457607pt;}
.ws26{word-spacing:68.290401pt;}
.ws38{word-spacing:70.598597pt;}
.ws27{word-spacing:84.173925pt;}
.ws3d{word-spacing:84.526086pt;}
.ws1c{word-spacing:96.125419pt;}
.ws33{word-spacing:99.363799pt;}
.ws3c{word-spacing:104.858186pt;}
.ws29{word-spacing:113.454759pt;}
.ws39{word-spacing:114.312525pt;}
.ws37{word-spacing:128.087526pt;}
.wsf{word-spacing:251.965313pt;}
.ws1b{word-spacing:263.994040pt;}
.ws40{word-spacing:998.966913pt;}
._0{margin-left:-1287.010133pt;}
._11{margin-left:-459.577733pt;}
._12{margin-left:-254.095867pt;}
._6{margin-left:-219.306185pt;}
._8{margin-left:-213.667225pt;}
._5{margin-left:-196.154511pt;}
._9{margin-left:-188.360778pt;}
._13{margin-left:-175.411348pt;}
._7{margin-left:-161.631071pt;}
._14{margin-left:-106.709940pt;}
._15{margin-left:-67.176591pt;}
._16{margin-left:-64.818638pt;}
._2{margin-left:-0.941056pt;}
._1{width:0.942080pt;}
._d{width:53.861833pt;}
._a{width:55.623168pt;}
._e{width:72.838607pt;}
._1e{width:75.321189pt;}
._23{width:76.291585pt;}
._28{width:82.483634pt;}
._1d{width:88.091831pt;}
._22{width:89.646078pt;}
._30{width:101.448132pt;}
._33{width:102.394044pt;}
._27{width:103.555083pt;}
._31{width:106.349821pt;}
._1f{width:111.872760pt;}
._24{width:113.259040pt;}
._25{width:116.598806pt;}
._17{width:119.854277pt;}
._20{width:120.791159pt;}
._26{width:121.698476pt;}
._f{width:131.708864pt;}
._2b{width:138.165863pt;}
._34{width:147.239293pt;}
._32{width:159.793662pt;}
._1a{width:161.243887pt;}
._2a{width:171.575200pt;}
._19{width:174.538732pt;}
._2d{width:179.754249pt;}
._1c{width:189.712675pt;}
._18{width:191.194914pt;}
._21{width:202.921988pt;}
._1b{width:205.141959pt;}
._10{width:225.027701pt;}
._29{width:227.740566pt;}
._c{width:295.919573pt;}
._2c{width:324.851510pt;}
._2f{width:326.699883pt;}
._2e{width:407.566190pt;}
._3{width:750.208000pt;}
._4{width:751.631360pt;}
._b{width:754.992128pt;}
.fsb{font-size:26.995195pt;}
.fsa{font-size:26.995703pt;}
.fs16{font-size:30.717177pt;}
.fs11{font-size:32.000000pt;}
.fs18{font-size:32.508092pt;}
.fsf{font-size:33.411990pt;}
.fs13{font-size:33.446454pt;}
.fs1{font-size:36.917333pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:37.916227pt;}
.fs9{font-size:42.517180pt;}
.fs0{font-size:42.666667pt;}
.fs15{font-size:46.209319pt;}
.fsd{font-size:46.341443pt;}
.fsc{font-size:46.342317pt;}
.fs8{font-size:48.640000pt;}
.fs17{font-size:48.896469pt;}
.fse{font-size:50.117528pt;}
.fs12{font-size:50.169224pt;}
.fs10{font-size:51.372078pt;}
.fs14{font-size:54.830253pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:65.055135pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.960145pt;}
.ycd{bottom:7.051078pt;}
.yca{bottom:15.498760pt;}
.y12{bottom:19.360000pt;}
.ycc{bottom:19.590497pt;}
.yc9{bottom:25.576706pt;}
.ycb{bottom:29.667103pt;}
.yed{bottom:33.570507pt;}
.y11{bottom:46.666667pt;}
.ye0{bottom:48.086320pt;}
.y10{bottom:66.026667pt;}
.ye5{bottom:91.438984pt;}
.ye1{bottom:91.501657pt;}
.y4{bottom:96.513846pt;}
.y1b5{bottom:104.426667pt;}
.y3{bottom:107.588123pt;}
.y4f{bottom:109.226667pt;}
.y11d{bottom:111.146667pt;}
.y93{bottom:111.466667pt;}
.y145{bottom:112.426667pt;}
.y71{bottom:116.906667pt;}
.ye6{bottom:117.700741pt;}
.y2{bottom:118.662400pt;}
.y1f5{bottom:122.026667pt;}
.y1dd{bottom:122.346667pt;}
.y184{bottom:125.226667pt;}
.y1c4{bottom:125.546667pt;}
.y5{bottom:129.826400pt;}
.y4e{bottom:134.506667pt;}
.yc6{bottom:135.146667pt;}
.y11c{bottom:136.426667pt;}
.y92{bottom:136.746667pt;}
.ye7{bottom:137.303285pt;}
.yec{bottom:137.369413pt;}
.y154{bottom:138.026667pt;}
.y144{bottom:138.346667pt;}
.yde{bottom:139.306667pt;}
.y70{bottom:142.186667pt;}
.y20b{bottom:147.306667pt;}
.y1dc{bottom:147.626667pt;}
.y183{bottom:150.506667pt;}
.y1c3{bottom:150.826667pt;}
.ye2{bottom:153.450273pt;}
.y1f4{bottom:157.866667pt;}
.ye8{bottom:159.168814pt;}
.y4d{bottom:159.786667pt;}
.y11b{bottom:161.706667pt;}
.y91{bottom:162.026667pt;}
.y153{bottom:163.306667pt;}
.y143{bottom:164.586667pt;}
.ydd{bottom:166.826667pt;}
.ydf{bottom:166.876800pt;}
.y6f{bottom:167.466667pt;}
.yea{bottom:171.298075pt;}
.yc5{bottom:171.306667pt;}
.y20a{bottom:172.586667pt;}
.y1db{bottom:172.906667pt;}
.y182{bottom:175.786667pt;}
.y1f3{bottom:183.146667pt;}
.y4c{bottom:185.066667pt;}
.y11a{bottom:186.986667pt;}
.y90{bottom:187.306667pt;}
.y152{bottom:188.586667pt;}
.y6e{bottom:192.746667pt;}
.yc4{bottom:196.586667pt;}
.y209{bottom:197.866667pt;}
.y142{bottom:198.186667pt;}
.ye9{bottom:198.691717pt;}
.y181{bottom:201.386667pt;}
.y1f2{bottom:208.426667pt;}
.y4b{bottom:210.346667pt;}
.y8f{bottom:212.586667pt;}
.y151{bottom:213.866667pt;}
.y11e{bottom:214.937867pt;}
.ye3{bottom:215.404178pt;}
.y6d{bottom:218.026667pt;}
.y1c2{bottom:219.626667pt;}
.y119{bottom:220.266667pt;}
.y1b4{bottom:221.866667pt;}
.yc3{bottom:222.506667pt;}
.y212{bottom:223.146667pt;}
.y141{bottom:223.466667pt;}
.y180{bottom:226.666667pt;}
.y1a4{bottom:233.297689pt;}
.y208{bottom:233.706667pt;}
.y1da{bottom:234.346667pt;}
.y19e{bottom:234.666667pt;}
.y4a{bottom:235.626667pt;}
.y8e{bottom:237.866667pt;}
.y150{bottom:239.146667pt;}
.y6c{bottom:243.306667pt;}
.y1f1{bottom:244.586667pt;}
.yc2{bottom:248.746667pt;}
.yef{bottom:250.837098pt;}
.y17f{bottom:251.946667pt;}
.y1c1{bottom:252.906667pt;}
.y1a3{bottom:255.059080pt;}
.y1b3{bottom:255.146667pt;}
.y8{bottom:258.874933pt;}
.y207{bottom:259.306667pt;}
.y1d9{bottom:259.626667pt;}
.y19d{bottom:259.946667pt;}
.y49{bottom:260.906667pt;}
.y118{bottom:261.546667pt;}
.y8d{bottom:263.146667pt;}
.y14f{bottom:264.426667pt;}
.yee{bottom:267.175405pt;}
.y6b{bottom:268.586667pt;}
.y1f0{bottom:269.866667pt;}
.y7{bottom:271.674933pt;}
.yc1{bottom:274.026667pt;}
.y1a2{bottom:275.813214pt;}
.y1a0{bottom:276.619043pt;}
.y17e{bottom:277.226667pt;}
.ye4{bottom:277.352773pt;}
.y1c0{bottom:278.186667pt;}
.y6{bottom:284.474933pt;}
.y211{bottom:284.586667pt;}
.y1d8{bottom:284.906667pt;}
.y19c{bottom:285.226667pt;}
.y48{bottom:286.186667pt;}
.y117{bottom:286.826667pt;}
.y8c{bottom:288.426667pt;}
.yeb{bottom:288.977633pt;}
.y14e{bottom:289.706667pt;}
.y19f{bottom:292.000654pt;}
.y1a1{bottom:292.806416pt;}
.y6a{bottom:293.866667pt;}
.y1ef{bottom:295.146667pt;}
.y140{bottom:299.306667pt;}
.y17d{bottom:302.506667pt;}
.y1bf{bottom:303.466667pt;}
.yc0{bottom:309.866667pt;}
.y155{bottom:310.629467pt;}
.y19b{bottom:311.146667pt;}
.y47{bottom:311.466667pt;}
.y116{bottom:312.426667pt;}
.y69{bottom:319.146667pt;}
.y206{bottom:320.426667pt;}
.y1d7{bottom:320.746667pt;}
.y8b{bottom:321.706667pt;}
.y1b2{bottom:322.026667pt;}
.y14d{bottom:323.306667pt;}
.y13f{bottom:324.586667pt;}
.y2b{bottom:328.106667pt;}
.y1be{bottom:328.746667pt;}
.y1ee{bottom:330.986667pt;}
.y17c{bottom:336.106667pt;}
.y46{bottom:336.746667pt;}
.y19a{bottom:337.386667pt;}
.y115{bottom:338.346667pt;}
.y68{bottom:344.426667pt;}
.y205{bottom:345.706667pt;}
.y1d6{bottom:346.026667pt;}
.y8a{bottom:347.306667pt;}
.yf0{bottom:348.150133pt;}
.yc7{bottom:348.174267pt;}
.y14c{bottom:348.586667pt;}
.y13e{bottom:349.866667pt;}
.y1b1{bottom:351.146667pt;}
.y17b{bottom:351.466667pt;}
.y1b0{bottom:352.426667pt;}
.y2a{bottom:353.386667pt;}
.y1bd{bottom:354.026667pt;}
.y1ed{bottom:356.266667pt;}
.y45{bottom:362.026667pt;}
.y199{bottom:362.666667pt;}
.y114{bottom:365.226667pt;}
.ybf{bottom:368.106667pt;}
.y1af{bottom:368.746667pt;}
.y67{bottom:369.706667pt;}
.y210{bottom:370.986667pt;}
.y1d5{bottom:371.306667pt;}
.y89{bottom:372.586667pt;}
.y14b{bottom:373.866667pt;}
.y13d{bottom:375.146667pt;}
.y165{bottom:376.264037pt;}
.y29{bottom:378.666667pt;}
.y1bc{bottom:379.306667pt;}
.y1ec{bottom:381.546667pt;}
.y17a{bottom:382.186667pt;}
.y1ae{bottom:383.786667pt;}
.y44{bottom:387.306667pt;}
.y198{bottom:387.946667pt;}
.y113{bottom:391.466667pt;}
.y66{bottom:394.986667pt;}
.y20f{bottom:396.266667pt;}
.y88{bottom:397.866667pt;}
.y14a{bottom:399.146667pt;}
.y164{bottom:399.300473pt;}
.y13c{bottom:400.426667pt;}
.y28{bottom:403.946667pt;}
.y1bb{bottom:404.906667pt;}
.y204{bottom:406.826667pt;}
.y1d4{bottom:407.466667pt;}
.yb3{bottom:412.586667pt;}
.y43{bottom:412.906667pt;}
.y197{bottom:413.546667pt;}
.y1ad{bottom:414.506667pt;}
.y179{bottom:415.466667pt;}
.y112{bottom:416.746667pt;}
.y1eb{bottom:417.706667pt;}
.y163{bottom:419.867070pt;}
.y65{bottom:420.266667pt;}
.y87{bottom:423.146667pt;}
.yfa{bottom:423.377098pt;}
.y149{bottom:424.426667pt;}
.y13b{bottom:425.706667pt;}
.y27{bottom:429.226667pt;}
.y1ba{bottom:430.186667pt;}
.y203{bottom:432.426667pt;}
.y1d3{bottom:432.746667pt;}
.yb2{bottom:437.866667pt;}
.y42{bottom:438.186667pt;}
.y196{bottom:438.826667pt;}
.y1ac{bottom:439.786667pt;}
.y162{bottom:440.433667pt;}
.y111{bottom:442.026667pt;}
.y1ea{bottom:442.986667pt;}
.y64{bottom:445.546667pt;}
.yf9{bottom:445.628022pt;}
.y128{bottom:445.882215pt;}
.y129{bottom:446.296298pt;}
.y86{bottom:448.426667pt;}
.y178{bottom:448.746667pt;}
.y148{bottom:449.706667pt;}
.y13a{bottom:450.986667pt;}
.y26{bottom:454.506667pt;}
.y1b9{bottom:455.466667pt;}
.y1d2{bottom:458.026667pt;}
.y161{bottom:461.000375pt;}
.yb1{bottom:463.146667pt;}
.y41{bottom:463.466667pt;}
.ybe{bottom:463.786667pt;}
.y195{bottom:464.106667pt;}
.y1ab{bottom:465.706667pt;}
.y110{bottom:467.306667pt;}
.yf8{bottom:468.086973pt;}
.y1e9{bottom:468.266667pt;}
.y127{bottom:468.569717pt;}
.y63{bottom:470.826667pt;}
.y85{bottom:473.706667pt;}
.y147{bottom:474.986667pt;}
.y139{bottom:476.906667pt;}
.y25{bottom:480.746667pt;}
.y160{bottom:481.566972pt;}
.y177{bottom:482.026667pt;}
.yb0{bottom:488.426667pt;}
.y40{bottom:488.746667pt;}
.ybd{bottom:489.066667pt;}
.y194{bottom:489.386667pt;}
.yf7{bottom:490.545810pt;}
.y126{bottom:491.051720pt;}
.y1aa{bottom:491.946667pt;}
.y10f{bottom:492.586667pt;}
.y202{bottom:493.546667pt;}
.y1d1{bottom:493.866667pt;}
.y62{bottom:496.426667pt;}
.ydc{bottom:498.026667pt;}
.y84{bottom:498.986667pt;}
.y15f{bottom:502.138132pt;}
.y138{bottom:503.146667pt;}
.y1e8{bottom:504.106667pt;}
.y24{bottom:506.986667pt;}
.y146{bottom:508.266667pt;}
.yf6{bottom:513.004760pt;}
.y125{bottom:513.533837pt;}
.y3f{bottom:514.026667pt;}
.ybc{bottom:514.346667pt;}
.y176{bottom:515.306667pt;}
.y1a9{bottom:517.546667pt;}
.y10e{bottom:517.866667pt;}
.y201{bottom:518.826667pt;}
.y1d0{bottom:519.146667pt;}
.y61{bottom:521.706667pt;}
.y193{bottom:522.666667pt;}
.ydb{bottom:523.306667pt;}
.y83{bottom:524.266667pt;}
.y15c{bottom:526.512435pt;}
.y157{bottom:527.313752pt;}
.y15d{bottom:527.314198pt;}
.y137{bottom:528.426667pt;}
.y1e7{bottom:529.386667pt;}
.y159{bottom:532.988528pt;}
.y156{bottom:534.522384pt;}
.yf5{bottom:535.457435pt;}
.y124{bottom:536.009672pt;}
.y167{bottom:538.125976pt;}
.y3e{bottom:539.306667pt;}
.y15b{bottom:540.199163pt;}
.ybb{bottom:540.266667pt;}
.y23{bottom:540.906667pt;}
.y158{bottom:541.799239pt;}
.y15e{bottom:541.799684pt;}
.y15a{bottom:542.470342pt;}
.y1a8{bottom:542.826667pt;}
.y10d{bottom:543.146667pt;}
.y200{bottom:544.106667pt;}
.y1cf{bottom:544.426667pt;}
.y60{bottom:546.986667pt;}
.yaf{bottom:547.306667pt;}
.y192{bottom:547.946667pt;}
.yda{bottom:548.586667pt;}
.y82{bottom:549.546667pt;}
.y166{bottom:552.617239pt;}
.y136{bottom:553.706667pt;}
.y1e6{bottom:554.666667pt;}
.yf4{bottom:557.916271pt;}
.y123{bottom:558.491675pt;}
.y3d{bottom:564.586667pt;}
.yba{bottom:566.506667pt;}
.y22{bottom:567.146667pt;}
.y168{bottom:567.576348pt;}
.y5f{bottom:572.266667pt;}
.yae{bottom:572.586667pt;}
.y191{bottom:573.226667pt;}
.yd9{bottom:573.866667pt;}
.y81{bottom:574.826667pt;}
.y10c{bottom:576.426667pt;}
.yf2{bottom:578.729271pt;}
.y135{bottom:579.306667pt;}
.y121{bottom:579.326143pt;}
.y1ff{bottom:579.946667pt;}
.yf1{bottom:580.374880pt;}
.y1ce{bottom:580.586667pt;}
.y11f{bottom:580.973449pt;}
.yf3{bottom:581.194660pt;}
.y120{bottom:581.793721pt;}
.y122{bottom:581.794075pt;}
.y175{bottom:581.866667pt;}
.y3c{bottom:589.866667pt;}
.y1e5{bottom:590.826667pt;}
.y1a7{bottom:591.466667pt;}
.yb9{bottom:591.786667pt;}
.y21{bottom:592.426667pt;}
.y5e{bottom:597.546667pt;}
.yad{bottom:597.866667pt;}
.y190{bottom:598.506667pt;}
.yd8{bottom:599.146667pt;}
.y80{bottom:600.106667pt;}
.y10b{bottom:601.706667pt;}
.y134{bottom:604.586667pt;}
.y1fe{bottom:605.546667pt;}
.y1cd{bottom:605.866667pt;}
.y3b{bottom:615.146667pt;}
.y1e4{bottom:616.106667pt;}
.y20{bottom:617.706667pt;}
.y1a6{bottom:619.306667pt;}
.y5d{bottom:622.826667pt;}
.yac{bottom:623.146667pt;}
.y18f{bottom:623.786667pt;}
.y9f{bottom:624.106667pt;}
.yd7{bottom:624.426667pt;}
.yb8{bottom:625.066667pt;}
.y7f{bottom:625.386667pt;}
.y10a{bottom:627.306667pt;}
.y1fd{bottom:630.826667pt;}
.y1cc{bottom:631.146667pt;}
.y133{bottom:637.866667pt;}
.y3a{bottom:640.426667pt;}
.y1e3{bottom:641.386667pt;}
.y1f{bottom:642.986667pt;}
.y5c{bottom:648.106667pt;}
.yab{bottom:648.426667pt;}
.y18e{bottom:649.066667pt;}
.yd6{bottom:649.706667pt;}
.y7e{bottom:650.666667pt;}
.y109{bottom:652.586667pt;}
.y9e{bottom:658.666667pt;}
.y39{bottom:665.706667pt;}
.yb7{bottom:666.346667pt;}
.y1fc{bottom:666.666667pt;}
.y1cb{bottom:666.986667pt;}
.y1e{bottom:668.266667pt;}
.y132{bottom:670.186667pt;}
.y5b{bottom:673.386667pt;}
.yaa{bottom:673.706667pt;}
.y18d{bottom:674.346667pt;}
.yd5{bottom:674.986667pt;}
.y7d{bottom:675.946667pt;}
.y1e2{bottom:677.226667pt;}
.y108{bottom:678.506667pt;}
.y174{bottom:681.066667pt;}
.y1{bottom:682.214267pt;}
.y9d{bottom:683.946667pt;}
.y38{bottom:690.986667pt;}
.yb6{bottom:691.626667pt;}
.y1fb{bottom:691.946667pt;}
.y1ca{bottom:692.266667pt;}
.y1d{bottom:693.546667pt;}
.yf{bottom:696.924933pt;}
.y5a{bottom:698.666667pt;}
.ya9{bottom:698.986667pt;}
.y18c{bottom:699.626667pt;}
.yd4{bottom:700.266667pt;}
.y7c{bottom:701.226667pt;}
.y1e1{bottom:702.506667pt;}
.y131{bottom:702.826667pt;}
.y107{bottom:705.386667pt;}
.y9c{bottom:709.226667pt;}
.y173{bottom:713.706667pt;}
.y37{bottom:716.266667pt;}
.y1fa{bottom:717.226667pt;}
.yb5{bottom:717.546667pt;}
.y59{bottom:723.946667pt;}
.y18b{bottom:724.906667pt;}
.yd3{bottom:725.546667pt;}
.y7b{bottom:726.506667pt;}
.y1c{bottom:727.786667pt;}
.ye{bottom:728.170533pt;}
.y9b{bottom:734.506667pt;}
.ya8{bottom:734.826667pt;}
.y130{bottom:735.466667pt;}
.y106{bottom:739.626667pt;}
.y36{bottom:741.546667pt;}
.y172{bottom:746.346667pt;}
.y58{bottom:749.226667pt;}
.y18a{bottom:750.186667pt;}
.yd2{bottom:750.826667pt;}
.y7a{bottom:751.786667pt;}
.y1f9{bottom:753.066667pt;}
.y1c9{bottom:753.706667pt;}
.y9a{bottom:759.786667pt;}
.y1b{bottom:762.666667pt;}
.y1e0{bottom:763.946667pt;}
.yd{bottom:766.570533pt;}
.y35{bottom:766.826667pt;}
.ya7{bottom:768.106667pt;}
.y105{bottom:772.266667pt;}
.y57{bottom:774.506667pt;}
.y189{bottom:775.466667pt;}
.yd1{bottom:776.106667pt;}
.y79{bottom:777.066667pt;}
.y1f8{bottom:778.666667pt;}
.y171{bottom:778.986667pt;}
.y99{bottom:785.066667pt;}
.y1df{bottom:789.226667pt;}
.y34{bottom:792.106667pt;}
.y1a{bottom:795.946667pt;}
.y56{bottom:799.786667pt;}
.y12f{bottom:800.746667pt;}
.yd0{bottom:801.386667pt;}
.y78{bottom:802.666667pt;}
.y20e{bottom:803.946667pt;}
.y1c8{bottom:804.266667pt;}
.y104{bottom:804.906667pt;}
.yc{bottom:804.970533pt;}
.y188{bottom:808.746667pt;}
.ya6{bottom:809.386667pt;}
.y98{bottom:810.666667pt;}
.y170{bottom:811.306667pt;}
.y1de{bottom:814.506667pt;}
.y1b8{bottom:817.386667pt;}
.y55{bottom:825.066667pt;}
.y33{bottom:825.386667pt;}
.ycf{bottom:826.666667pt;}
.y77{bottom:827.946667pt;}
.y19{bottom:829.226667pt;}
.y187{bottom:834.026667pt;}
.y12e{bottom:834.346667pt;}
.ya5{bottom:834.666667pt;}
.y97{bottom:835.946667pt;}
.y103{bottom:837.546667pt;}
.y1f7{bottom:839.786667pt;}
.y1c7{bottom:840.106667pt;}
.y1b7{bottom:842.666667pt;}
.yb{bottom:843.370533pt;}
.y16f{bottom:843.946667pt;}
.y12d{bottom:849.706667pt;}
.y54{bottom:850.346667pt;}
.y32{bottom:850.666667pt;}
.yce{bottom:852.266667pt;}
.y76{bottom:853.226667pt;}
.y186{bottom:859.306667pt;}
.ya4{bottom:860.266667pt;}
.y96{bottom:861.226667pt;}
.y18{bottom:862.506667pt;}
.y12c{bottom:863.466667pt;}
.y12b{bottom:864.746667pt;}
.y1f6{bottom:865.066667pt;}
.y1c6{bottom:865.386667pt;}
.y1b6{bottom:868.266667pt;}
.y102{bottom:869.866667pt;}
.y53{bottom:875.626667pt;}
.y31{bottom:876.266667pt;}
.y16e{bottom:876.586667pt;}
.y75{bottom:878.506667pt;}
.y12a{bottom:881.066667pt;}
.ya{bottom:881.770533pt;}
.y185{bottom:884.906667pt;}
.ya3{bottom:885.546667pt;}
.y95{bottom:886.506667pt;}
.y17{bottom:887.786667pt;}
.y20d{bottom:890.346667pt;}
.y1c5{bottom:890.666667pt;}
.y52{bottom:900.906667pt;}
.y30{bottom:901.546667pt;}
.y101{bottom:902.506667pt;}
.y74{bottom:903.786667pt;}
.y16d{bottom:910.186667pt;}
.ya2{bottom:910.826667pt;}
.y94{bottom:911.786667pt;}
.y16{bottom:921.066667pt;}
.y9{bottom:921.805333pt;}
.y16c{bottom:925.546667pt;}
.y51{bottom:926.186667pt;}
.y2f{bottom:926.826667pt;}
.yb4{bottom:929.066667pt;}
.y100{bottom:935.146667pt;}
.ya1{bottom:936.106667pt;}
.y73{bottom:937.066667pt;}
.y16b{bottom:939.306667pt;}
.y16a{bottom:940.586667pt;}
.y50{bottom:951.786667pt;}
.y2e{bottom:952.106667pt;}
.y15{bottom:954.346667pt;}
.y169{bottom:956.906667pt;}
.y72{bottom:962.346667pt;}
.yff{bottom:969.066667pt;}
.ya0{bottom:969.386667pt;}
.y20c{bottom:977.066667pt;}
.y2d{bottom:977.386667pt;}
.y1a5{bottom:979.626667pt;}
.yfe{bottom:984.106667pt;}
.y14{bottom:987.626667pt;}
.yfd{bottom:998.186667pt;}
.yfc{bottom:999.466667pt;}
.y2c{bottom:1011.626667pt;}
.y13{bottom:1012.906667pt;}
.yfb{bottom:1015.466667pt;}
.h13{height:19.653240pt;}
.h12{height:19.653610pt;}
.h2b{height:22.362945pt;}
.h18{height:24.324842pt;}
.h22{height:24.349933pt;}
.hb{height:26.326599pt;}
.h2{height:28.228781pt;}
.h11{height:30.953670pt;}
.h1{height:32.625000pt;}
.h31{height:33.077569pt;}
.h6{height:33.333333pt;}
.h29{height:33.641647pt;}
.h15{height:33.737838pt;}
.h14{height:33.738474pt;}
.h2d{height:34.431836pt;}
.h2f{height:34.454540pt;}
.h2e{height:34.454985pt;}
.hf{height:35.411250pt;}
.h33{height:35.597967pt;}
.h1d{height:35.669480pt;}
.h30{height:35.762468pt;}
.h37{height:35.956144pt;}
.h36{height:36.220328pt;}
.h19{height:36.486931pt;}
.h21{height:36.524567pt;}
.h1c{height:37.293931pt;}
.h1b{height:37.318579pt;}
.h1a{height:37.319035pt;}
.h25{height:37.332400pt;}
.h24{height:37.357073pt;}
.h23{height:37.357530pt;}
.h17{height:39.764638pt;}
.h26{height:39.917923pt;}
.h1e{height:40.531250pt;}
.h7{height:42.866250pt;}
.hd{height:43.359501pt;}
.h1f{height:43.391250pt;}
.hc{height:45.170118pt;}
.ha{height:45.212467pt;}
.h8{height:46.593750pt;}
.h3{height:48.937500pt;}
.h5{height:52.526250pt;}
.h38{height:57.093750pt;}
.h9{height:57.434375pt;}
.h28{height:62.749066pt;}
.h2a{height:65.410331pt;}
.h35{height:69.453891pt;}
.he{height:84.460054pt;}
.h2c{height:94.790644pt;}
.h34{height:97.124412pt;}
.h4{height:97.875000pt;}
.h10{height:311.532933pt;}
.h32{height:388.316400pt;}
.h27{height:662.200000pt;}
.h16{height:678.966267pt;}
.h20{height:679.666533pt;}
.h0{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w6{width:18.666667pt;}
.w3{width:133.333320pt;}
.w4{width:440.866667pt;}
.w7{width:655.395467pt;}
.w9{width:698.337600pt;}
.w5{width:707.550187pt;}
.w8{width:777.237227pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x22{left:0.960000pt;}
.xa{left:2.731946pt;}
.x2c{left:16.096107pt;}
.x8{left:32.117412pt;}
.xc{left:42.578957pt;}
.x10{left:52.088648pt;}
.x1{left:57.512133pt;}
.xf{left:59.440299pt;}
.x51{left:66.018380pt;}
.x42{left:67.641317pt;}
.x50{left:70.251228pt;}
.x3{left:72.000000pt;}
.x17{left:75.996192pt;}
.x28{left:81.898903pt;}
.x24{left:83.135295pt;}
.x16{left:85.783147pt;}
.xb{left:89.188192pt;}
.x40{left:91.748563pt;}
.x41{left:95.151967pt;}
.x9{left:98.117077pt;}
.x6{left:106.079661pt;}
.x7{left:114.675709pt;}
.x46{left:117.469641pt;}
.x1e{left:118.666656pt;}
.x1c{left:122.898861pt;}
.x1d{left:129.811599pt;}
.x23{left:137.937867pt;}
.x2d{left:151.510756pt;}
.x47{left:161.930349pt;}
.xe{left:176.233200pt;}
.x2{left:182.955067pt;}
.x2e{left:190.175192pt;}
.x14{left:192.956834pt;}
.x48{left:201.290183pt;}
.x5{left:205.120128pt;}
.x2f{left:230.240677pt;}
.x30{left:231.438841pt;}
.x13{left:235.362819pt;}
.x43{left:259.487740pt;}
.x32{left:272.709500pt;}
.x31{left:274.711856pt;}
.x49{left:282.225028pt;}
.x25{left:294.776149pt;}
.x29{left:308.140703pt;}
.x26{left:321.229742pt;}
.x4a{left:325.008094pt;}
.x4b{left:326.282193pt;}
.x33{left:334.810473pt;}
.x27{left:349.673854pt;}
.x36{left:358.180234pt;}
.x34{left:366.663760pt;}
.x4d{left:370.344172pt;}
.x4c{left:372.493528pt;}
.x15{left:376.486399pt;}
.x11{left:383.017824pt;}
.x53{left:386.457600pt;}
.x35{left:391.035255pt;}
.x54{left:392.387200pt;}
.x12{left:420.409447pt;}
.x1f{left:424.133440pt;}
.x18{left:426.540389pt;}
.x20{left:430.063040pt;}
.x19{left:459.952263pt;}
.x4f{left:474.852202pt;}
.x37{left:479.041320pt;}
.x4e{left:483.918320pt;}
.x1a{left:486.379852pt;}
.x1b{left:493.364137pt;}
.x44{left:495.500800pt;}
.x45{left:501.430400pt;}
.x38{left:519.444351pt;}
.x39{left:520.642626pt;}
.x3b{left:562.245046pt;}
.x3a{left:564.247402pt;}
.x52{left:586.106560pt;}
.xd{left:616.986560pt;}
.x3c{left:624.544896pt;}
.x3f{left:647.918107pt;}
.x3d{left:656.395957pt;}
.x3e{left:680.769679pt;}
.x2a{left:690.570880pt;}
.x2b{left:696.500480pt;}
.x21{left:704.000000pt;}
.x4{left:713.333333pt;}
}


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