
/* 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_435fe2368270.woff")format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_a997a018b560.woff")format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_f4ccaf7729b3.woff")format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_5d986793cdb1.woff")format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_27ddbe0e422d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_0cfabbd09ad1.woff")format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_b08b24689536.woff")format("woff");}.ff7{font-family:ff7;line-height:0.859375;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_bc69af459f2c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.859375;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_694b2aa663f7.woff")format("woff");}.ff9{font-family:ff9;line-height:1.043457;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_9d0f4ad5d92d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.881836;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_1ea2440bc616.woff")format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_8f61efa23935.woff")format("woff");}.ffc{font-family:ffc;line-height:0.682129;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_093d78069098.woff")format("woff");}.ffd{font-family:ffd;line-height:0.682129;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_20f96d2af646.woff")format("woff");}.ffe{font-family:ffe;line-height:0.919434;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_155216b8f10c.woff")format("woff");}.fff{font-family:fff;line-height:1.064941;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_5960d7b3cb09.woff")format("woff");}.ff10{font-family:ff10;line-height:0.919434;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_4623ab066a87.woff")format("woff");}.ff11{font-family:ff11;line-height:0.919434;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_9b042c7742f1.woff")format("woff");}.ff12{font-family:ff12;line-height:1.043457;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_9d0f4ad5d92d.woff")format("woff");}.ff13{font-family:ff13;line-height:0.881836;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_38c5f2602c42.woff")format("woff");}.ff14{font-family:ff14;line-height:0.689453;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_29f51708ab04.woff")format("woff");}.ff15{font-family:ff15;line-height:0.919434;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_41d1f7b78eea.woff")format("woff");}.ff16{font-family:ff16;line-height:0.919434;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_4b0e4597641d.woff")format("woff");}.ff17{font-family:ff17;line-height:0.919434;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:ff18;src:url("fonts/font_0023_c6f163abdd32.woff")format("woff");}.ff18{font-family:ff18;line-height:0.682129;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:ff19;src:url("fonts/font_0024_3ae16c99bb7b.woff")format("woff");}.ff19{font-family:ff19;line-height:1.043457;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:ff1a;src:url("fonts/font_0025_9d0f4ad5d92d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.881836;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:ff1b;src:url("fonts/font_0026_a0d6ef255187.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.689453;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:ff1c;src:url("fonts/font_0027_948ce5ce0fc9.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.682129;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:ff1d;src:url("fonts/font_0028_093d78069098.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.682129;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:ff1e;src:url("fonts/font_0029_1620bcfef6cb.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.919434;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:ff1f;src:url("fonts/font_0030_6bae3d4353a2.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.919434;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;}
.m1{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,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);}
.m2{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-29.519897px;}
.v2{vertical-align:-18.000000px;}
.v8{vertical-align:-14.399780px;}
.v6{vertical-align:-12.239868px;}
.v5{vertical-align:-10.080322px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.960205px;}
.v1{vertical-align:18.180176px;}
.v7{vertical-align:35.280029px;}
.vb{vertical-align:38.490000px;}
.v9{vertical-align:42.480103px;}
.va{vertical-align:78.480103px;}
.ls1d{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls33{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.306000px;}
.ls4{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.255000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.125400px;}
.ls2f{letter-spacing:-0.085200px;}
.ls1b{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000088px;}
.ls2c{letter-spacing:0.054000px;}
.ls38{letter-spacing:0.054029px;}
.ls11{letter-spacing:0.143875px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.144059px;}
.ls28{letter-spacing:0.181385px;}
.ls2d{letter-spacing:0.190800px;}
.ls2b{letter-spacing:0.201000px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.216022px;}
.ls3{letter-spacing:0.238800px;}
.ls37{letter-spacing:0.252000px;}
.ls2e{letter-spacing:0.284400px;}
.ls23{letter-spacing:0.287820px;}
.ls27{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.288360px;}
.ls22{letter-spacing:0.336420px;}
.ls20{letter-spacing:0.359640px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.360007px;}
.ls24{letter-spacing:0.360180px;}
.ls39{letter-spacing:0.396000px;}
.ls1a{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.576000px;}
.ls31{letter-spacing:0.648000px;}
.ls36{letter-spacing:0.720062px;}
.ls8{letter-spacing:0.864000px;}
.lsd{letter-spacing:2.219091px;}
.lsf{letter-spacing:2.456699px;}
.lsc{letter-spacing:2.498319px;}
.ls10{letter-spacing:3.019019px;}
.ls29{letter-spacing:4.037767px;}
.ls2a{letter-spacing:5.726887px;}
.ls9{letter-spacing:6.341819px;}
.ls17{letter-spacing:8.948755px;}
.ls16{letter-spacing:8.948939px;}
.ls25{letter-spacing:12.240000px;}
.lsb{letter-spacing:20.375912px;}
.ls12{letter-spacing:22.616611px;}
.ls26{letter-spacing:23.760000px;}
.lsa{letter-spacing:26.501731px;}
.ls14{letter-spacing:46.295956px;}
.ls19{letter-spacing:48.959927px;}
.ls13{letter-spacing:96.696103px;}
.ls32{letter-spacing:851.032793px;}
.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;}
}
.ws10{word-spacing:-39.888000px;}
.ws1{word-spacing:-18.771600px;}
.ws0{word-spacing:-18.532800px;}
.ws8{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.200000px;}
.ws13{word-spacing:-16.128000px;}
.ws6{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.984000px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.552000px;}
.ws1a{word-spacing:-15.300000px;}
.ws1d{word-spacing:-12.276000px;}
.ws1c{word-spacing:-12.168000px;}
.ws1b{word-spacing:-11.934029px;}
.ws18{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.592000px;}
.wsc{word-spacing:-11.246400px;}
.wse{word-spacing:-11.121000px;}
.ws14{word-spacing:-10.897200px;}
.ws17{word-spacing:-10.813800px;}
.ws2{word-spacing:-10.612800px;}
.ws15{word-spacing:-10.527600px;}
.ws16{word-spacing:-10.357800px;}
.wsf{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.054000px;}
.ws12{word-spacing:-0.048240px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:8.011477px;}
._3e{margin-left:-31.866550px;}
._3{margin-left:-6.864275px;}
._4d{margin-left:-5.234635px;}
._39{margin-left:-4.000320px;}
._0{margin-left:-2.695680px;}
._1{margin-left:-1.311603px;}
._2{width:1.275367px;}
._16{width:2.927982px;}
._2f{width:4.032070px;}
._2d{width:5.087974px;}
._38{width:6.552000px;}
._25{width:7.560000px;}
._34{width:9.063691px;}
._24{width:10.871905px;}
._6{width:12.456000px;}
._7{width:14.231978px;}
._8{width:17.784000px;}
._30{width:19.004630px;}
._36{width:20.034781px;}
._32{width:21.096000px;}
._c{width:22.151985px;}
._4{width:23.976000px;}
._5{width:25.103967px;}
._e{width:27.048000px;}
._21{width:28.512000px;}
._f{width:29.520000px;}
._20{width:30.563883px;}
._15{width:32.279989px;}
._14{width:33.672011px;}
._2e{width:35.136000px;}
._4b{width:36.576000px;}
._31{width:37.584022px;}
._2b{width:38.739581px;}
._18{width:40.080016px;}
._33{width:41.615983px;}
._3b{width:42.649995px;}
._48{width:43.747655px;}
._40{width:44.932585px;}
._44{width:46.147415px;}
._2c{width:47.736000px;}
._d{width:48.924237px;}
._4f{width:50.168160px;}
._56{width:51.315603px;}
._49{width:52.464240px;}
._22{width:53.483974px;}
._1c{width:54.515982px;}
._1b{width:55.728000px;}
._1d{width:56.807905px;}
._28{width:58.535956px;}
._4e{width:59.760088px;}
._3a{width:60.840000px;}
._51{width:62.784000px;}
._50{width:64.080000px;}
._4a{width:65.304000px;}
._9{width:66.935989px;}
._a{width:67.992011px;}
._1e{width:71.223789px;}
._19{width:72.504000px;}
._1a{width:73.884033px;}
._43{width:75.000141px;}
._5b{width:76.320000px;}
._37{width:77.976000px;}
._b{width:79.920000px;}
._41{width:80.928000px;}
._52{width:83.736000px;}
._58{width:84.749186px;}
._11{width:86.880000px;}
._53{width:88.319985px;}
._1f{width:90.207497px;}
._13{width:91.356011px;}
._12{width:92.423982px;}
._26{width:94.019883px;}
._17{width:95.447978px;}
._47{width:98.208000px;}
._5c{width:101.951956px;}
._35{width:104.040000px;}
._23{width:107.855890px;}
._5a{width:109.452015px;}
._45{width:111.960000px;}
._46{width:113.328000px;}
._59{width:115.751960px;}
._27{width:122.615978px;}
._55{width:124.056000px;}
._54{width:125.399960px;}
._5e{width:127.728000px;}
._5d{width:129.240000px;}
._57{width:136.883956px;}
._42{width:138.174036px;}
._10{width:192.899985px;}
._3f{width:346.709782px;}
._4c{width:424.418999px;}
._3c{width:447.300015px;}
._3d{width:515.519985px;}
._2a{width:1304.632829px;}
._29{width:1391.128741px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.120000px;}
.fs9{font-size:40.746240px;}
.fsa{font-size:41.000940px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:54.338880px;}
.fs8{font-size:54.791700px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.880000px;}
.y88{bottom:2.880465px;}
.ycf{bottom:4.680219px;}
.ye3{bottom:4.859689px;}
.yd4{bottom:4.859735px;}
.yde{bottom:4.859754px;}
.yd9{bottom:4.860190px;}
.yca{bottom:4.860193px;}
.ye8{bottom:4.860639px;}
.yc7{bottom:4.860643px;}
.y12b{bottom:6.119980px;}
.y129{bottom:6.120026px;}
.y12d{bottom:6.299973px;}
.y133{bottom:6.299995px;}
.y12f{bottom:6.300018px;}
.y126{bottom:6.480011px;}
.y127{bottom:11.160004px;}
.yce{bottom:20.880176px;}
.yd3{bottom:21.059692px;}
.ydd{bottom:21.059711px;}
.ye2{bottom:21.059767px;}
.yc9{bottom:21.060150px;}
.ye7{bottom:21.060596px;}
.yc6{bottom:21.060600px;}
.yd8{bottom:21.105251px;}
.y144{bottom:22.320007px;}
.y145{bottom:22.500000px;}
.y114{bottom:33.268950px;}
.ye1{bottom:37.079668px;}
.yd2{bottom:37.079713px;}
.ycd{bottom:37.080133px;}
.ydc{bottom:37.259788px;}
.ye6{bottom:37.260673px;}
.yd7{bottom:37.305208px;}
.yc0{bottom:39.797460px;}
.y87{bottom:43.919535px;}
.y4{bottom:43.920000px;}
.y3{bottom:46.800000px;}
.yd1{bottom:53.279670px;}
.ye0{bottom:53.279745px;}
.ycc{bottom:53.280210px;}
.ydb{bottom:53.459745px;}
.ye5{bottom:53.460630px;}
.yd6{bottom:53.505165px;}
.ybf{bottom:55.646775px;}
.yee{bottom:110.736000px;}
.yb3{bottom:111.276075px;}
.y1b4{bottom:117.755997px;}
.y5b{bottom:119.195995px;}
.y111{bottom:119.196075px;}
.y31{bottom:120.456000px;}
.y13d{bottom:122.255997px;}
.y1aa{bottom:124.596005px;}
.y26{bottom:124.956000px;}
.yc1{bottom:128.777880px;}
.y85{bottom:129.636005px;}
.yed{bottom:131.255940px;}
.y112{bottom:131.477850px;}
.y159{bottom:134.136005px;}
.yb2{bottom:135.396075px;}
.y1b3{bottom:135.936000px;}
.y5a{bottom:143.496002px;}
.y110{bottom:143.496075px;}
.y30{bottom:144.755997px;}
.y13c{bottom:146.556004px;}
.y25{bottom:149.255997px;}
.y1b2{bottom:150.689999px;}
.y84{bottom:153.930004px;}
.ybb{bottom:156.090000px;}
.y158{bottom:158.430004px;}
.yb1{bottom:159.689955px;}
.y1a1{bottom:160.050000px;}
.y10f{bottom:167.789955px;}
.y59{bottom:167.790000px;}
.y13b{bottom:170.669998px;}
.y1a9{bottom:171.209999px;}
.y24{bottom:173.549995px;}
.yba{bottom:174.450000px;}
.y83{bottom:178.230000px;}
.y157{bottom:182.549995px;}
.yb0{bottom:183.989955px;}
.y1a0{bottom:188.670000px;}
.y10e{bottom:192.089955px;}
.y58{bottom:192.089996px;}
.yb9{bottom:194.789955px;}
.y13a{bottom:194.969994px;}
.ybc{bottom:195.193800px;}
.y23{bottom:197.849991px;}
.y113{bottom:198.991650px;}
.y82{bottom:202.530006px;}
.y156{bottom:206.849991px;}
.yaf{bottom:208.289955px;}
.y10d{bottom:216.389955px;}
.y57{bottom:216.389992px;}
.y19f{bottom:217.470000px;}
.y1a8{bottom:218.009995px;}
.y139{bottom:219.269989px;}
.y22{bottom:222.150009px;}
.y191{bottom:225.389992px;}
.y81{bottom:226.830002px;}
.y155{bottom:231.150009px;}
.yae{bottom:232.589955px;}
.y10c{bottom:240.509955px;}
.y56{bottom:240.509995px;}
.y138{bottom:243.570007px;}
.y16d{bottom:245.009995px;}
.y21{bottom:246.269989px;}
.y19e{bottom:246.270000px;}
.yc3{bottom:246.738570px;}
.y190{bottom:249.509995px;}
.y80{bottom:251.669998px;}
.y154{bottom:255.450005px;}
.yad{bottom:256.889955px;}
.y7e{bottom:260.669998px;}
.y1a7{bottom:263.190010px;}
.y10b{bottom:264.809955px;}
.y55{bottom:264.809990px;}
.y137{bottom:267.870003px;}
.y7f{bottom:268.049995px;}
.y20{bottom:270.570007px;}
.y18f{bottom:273.809990px;}
.y19d{bottom:275.070000px;}
.y153{bottom:279.750000px;}
.yac{bottom:281.009955px;}
.y1a6{bottom:283.709999px;}
.y10a{bottom:289.109955px;}
.y54{bottom:289.110008px;}
.y136{bottom:291.990005px;}
.y7d{bottom:294.509995px;}
.y1f{bottom:294.870003px;}
.y18e{bottom:298.110008px;}
.y19c{bottom:302.070000px;}
.y152{bottom:304.049995px;}
.yab{bottom:305.309955px;}
.y16c{bottom:305.309990px;}
.yc2{bottom:305.605695px;}
.y53{bottom:313.410004px;}
.y135{bottom:316.290000px;}
.y109{bottom:317.909955px;}
.y7c{bottom:318.809990px;}
.y1e{bottom:319.169998px;}
.y19b{bottom:322.409925px;}
.y18d{bottom:322.410004px;}
.y151{bottom:328.169998px;}
.yaa{bottom:329.609955px;}
.y16b{bottom:329.610008px;}
.y52{bottom:337.709999px;}
.y108{bottom:342.209955px;}
.y7b{bottom:342.929993px;}
.y1d{bottom:343.469994px;}
.y134{bottom:345.089996px;}
.ybe{bottom:345.907035px;}
.y18c{bottom:346.709999px;}
.y2f{bottom:347.969994px;}
.ybd{bottom:352.133400px;}
.y150{bottom:352.514992px;}
.ya9{bottom:353.954955px;}
.y16a{bottom:353.955002px;}
.y1b1{bottom:360.615005px;}
.y51{bottom:361.875000px;}
.y107{bottom:366.374955px;}
.y132{bottom:367.455002px;}
.y1c{bottom:367.634995px;}
.y79{bottom:367.815010px;}
.y2e{bottom:372.134995px;}
.yec{bottom:372.495000px;}
.y7a{bottom:375.195007px;}
.y18b{bottom:375.375000px;}
.y14f{bottom:376.815010px;}
.ya8{bottom:378.254955px;}
.y169{bottom:378.254997px;}
.y50{bottom:386.175018px;}
.y131{bottom:387.435013px;}
.y1b0{bottom:387.615005px;}
.y106{bottom:390.674955px;}
.y1b{bottom:391.935013px;}
.y78{bottom:392.115005px;}
.yeb{bottom:394.994985px;}
.y2d{bottom:396.435013px;}
.y18a{bottom:399.675018px;}
.y14e{bottom:401.115005px;}
.ya7{bottom:402.374955px;}
.y168{bottom:402.375000px;}
.y1af{bottom:405.794998px;}
.y130{bottom:407.414978px;}
.y4f{bottom:410.474991px;}
.y105{bottom:414.974955px;}
.yea{bottom:415.515015px;}
.y1a{bottom:420.734985px;}
.y77{bottom:420.914978px;}
.y189{bottom:423.974991px;}
.ya6{bottom:426.674955px;}
.y167{bottom:426.675018px;}
.y12e{bottom:427.214996px;}
.y14d{bottom:429.914978px;}
.y4e{bottom:434.775009px;}
.y104{bottom:439.274955px;}
.y1ae{bottom:442.154984px;}
.y19{bottom:445.035004px;}
.y76{bottom:445.214996px;}
.y12c{bottom:447.195007px;}
.y188{bottom:448.275009px;}
.ya5{bottom:450.974955px;}
.y166{bottom:450.974991px;}
.y1ad{bottom:458.175018px;}
.y4d{bottom:459.074982px;}
.y103{bottom:463.574955px;}
.y1a5{bottom:465.195007px;}
.y12a{bottom:467.175018px;}
.y18{bottom:469.335022px;}
.y75{bottom:469.515015px;}
.y187{bottom:472.574982px;}
.y165{bottom:475.275009px;}
.y197{bottom:476.715000px;}
.ya4{bottom:479.774955px;}
.y4c{bottom:483.375000px;}
.y14c{bottom:483.734985px;}
.y128{bottom:487.154984px;}
.y102{bottom:487.874955px;}
.y17{bottom:493.634995px;}
.y186{bottom:496.875000px;}
.y164{bottom:499.574982px;}
.y14b{bottom:503.714996px;}
.y196{bottom:503.715000px;}
.y1a4{bottom:503.894989px;}
.ya3{bottom:504.074955px;}
.y125{bottom:506.955002px;}
.y4b{bottom:507.494980px;}
.y101{bottom:516.494955px;}
.y16{bottom:517.755020px;}
.y74{bottom:517.935013px;}
.y14a{bottom:523.515015px;}
.y163{bottom:523.875000px;}
.y195{bottom:524.234985px;}
.y185{bottom:525.494980px;}
.ya2{bottom:528.374955px;}
.y4a{bottom:536.294998px;}
.y124{bottom:537.195007px;}
.y100{bottom:540.794955px;}
.y15{bottom:542.054993px;}
.y73{bottom:542.234985px;}
.y149{bottom:543.494980px;}
.y184{bottom:549.794998px;}
.ya1{bottom:552.494955px;}
.y162{bottom:552.494980px;}
.y123{bottom:556.994980px;}
.y148{bottom:563.474991px;}
.yff{bottom:565.094955px;}
.y14{bottom:566.355011px;}
.y72{bottom:566.535004px;}
.y2c{bottom:570.855011px;}
.y183{bottom:574.095016px;}
.ya0{bottom:576.794955px;}
.y161{bottom:576.794998px;}
.y122{bottom:581.294998px;}
.y147{bottom:583.275009px;}
.yfe{bottom:589.394955px;}
.y13{bottom:590.654984px;}
.y71{bottom:590.835022px;}
.y2b{bottom:595.154984px;}
.y49{bottom:596.595016px;}
.y9f{bottom:601.094955px;}
.y160{bottom:601.095016px;}
.y182{bottom:602.894989px;}
.y146{bottom:603.255020px;}
.y121{bottom:605.595016px;}
.yfd{bottom:613.694955px;}
.y12{bottom:614.984985px;}
.y2a{bottom:619.484985px;}
.y48{bottom:620.925018px;}
.y143{bottom:623.265015px;}
.y9e{bottom:625.425015px;}
.y15f{bottom:625.425018px;}
.y181{bottom:627.224991px;}
.y120{bottom:629.925018px;}
.y11{bottom:639.285004px;}
.yfc{bottom:642.525015px;}
.y29{bottom:643.785004px;}
.y47{bottom:645.224991px;}
.y15e{bottom:649.724991px;}
.y9d{bottom:649.725015px;}
.y180{bottom:651.525009px;}
.y11f{bottom:654.224991px;}
.ye9{bottom:655.484985px;}
.y1ac{bottom:659.265015px;}
.y10{bottom:663.404984px;}
.y70{bottom:663.585022px;}
.y28{bottom:667.904984px;}
.y142{bottom:669.345016px;}
.y46{bottom:669.525009px;}
.y15d{bottom:674.025009px;}
.y9c{bottom:674.025015px;}
.ye4{bottom:674.924370px;}
.y11e{bottom:678.525009px;}
.y17f{bottom:680.144989px;}
.yf{bottom:687.705002px;}
.y6f{bottom:687.884995px;}
.y27{bottom:692.205002px;}
.y45{bottom:693.644989px;}
.y15c{bottom:698.144989px;}
.y9b{bottom:698.145015px;}
.y11d{bottom:702.644989px;}
.yfb{bottom:702.645015px;}
.y17e{bottom:704.445007px;}
.y6e{bottom:712.724991px;}
.ye{bottom:716.505020px;}
.y44{bottom:717.945007px;}
.y19a{bottom:721.724985px;}
.y6d{bottom:721.724991px;}
.y141{bottom:722.445007px;}
.y9a{bottom:722.445015px;}
.y1a3{bottom:724.064987px;}
.y11c{bottom:726.945007px;}
.yfa{bottom:726.945015px;}
.y17d{bottom:728.744980px;}
.ydf{bottom:740.445285px;}
.y43{bottom:742.244980px;}
.y140{bottom:746.744980px;}
.y99{bottom:746.745015px;}
.y199{bottom:748.724985px;}
.y11b{bottom:751.244980px;}
.yf9{bottom:751.245015px;}
.y17c{bottom:753.044998px;}
.y6c{bottom:755.744980px;}
.yd{bottom:758.804993px;}
.y42{bottom:766.544998px;}
.y198{bottom:769.065060px;}
.y98{bottom:771.045015px;}
.y13f{bottom:771.045044px;}
.yf8{bottom:775.545015px;}
.y11a{bottom:775.545044px;}
.y6b{bottom:780.045044px;}
.y17b{bottom:781.844971px;}
.y41{bottom:790.844971px;}
.y13e{bottom:795.344971px;}
.y97{bottom:795.345015px;}
.y119{bottom:799.844971px;}
.yf7{bottom:799.845015px;}
.yc{bottom:801.105011px;}
.y6a{bottom:804.164978px;}
.yda{bottom:805.785285px;}
.y17a{bottom:805.964996px;}
.y40{bottom:814.964996px;}
.y15b{bottom:819.464996px;}
.y96{bottom:819.465015px;}
.y118{bottom:823.964996px;}
.yf6{bottom:823.965015px;}
.y69{bottom:828.464996px;}
.yb{bottom:829.725037px;}
.y179{bottom:830.265015px;}
.y3f{bottom:839.265015px;}
.y95{bottom:843.765015px;}
.yf5{bottom:848.265015px;}
.ya{bottom:849.524963px;}
.y68{bottom:852.765015px;}
.y178{bottom:859.065033px;}
.y94{bottom:868.065015px;}
.y3e{bottom:868.065033px;}
.yd5{bottom:871.304805px;}
.yf4{bottom:872.565015px;}
.y117{bottom:872.565033px;}
.y9{bottom:873.824982px;}
.y67{bottom:877.109985px;}
.y177{bottom:883.410004px;}
.y3d{bottom:892.410004px;}
.y93{bottom:892.410015px;}
.y116{bottom:896.910004px;}
.yf3{bottom:896.910015px;}
.y8{bottom:899.250000px;}
.y66{bottom:901.410004px;}
.y176{bottom:907.710022px;}
.y92{bottom:916.710015px;}
.y3c{bottom:916.710022px;}
.yf2{bottom:921.210015px;}
.y115{bottom:921.210022px;}
.y65{bottom:925.710022px;}
.y7{bottom:927.690033px;}
.y175{bottom:932.010040px;}
.y194{bottom:936.510045px;}
.yd0{bottom:936.870300px;}
.y91{bottom:941.010015px;}
.y15a{bottom:941.010040px;}
.y1a2{bottom:944.250000px;}
.yf1{bottom:945.510015px;}
.y3b{bottom:945.510040px;}
.y64{bottom:949.829956px;}
.y6{bottom:955.949982px;}
.y174{bottom:960.629974px;}
.y193{bottom:963.510045px;}
.y90{bottom:965.130015px;}
.y3a{bottom:969.629974px;}
.yf0{bottom:969.630015px;}
.y62{bottom:977.550018px;}
.y63{bottom:977.730011px;}
.y192{bottom:983.850015px;}
.y173{bottom:984.929993px;}
.y61{bottom:986.550018px;}
.y8f{bottom:989.430015px;}
.y39{bottom:993.929993px;}
.yef{bottom:993.930015px;}
.ycb{bottom:1002.389835px;}
.y172{bottom:1009.230011px;}
.y8e{bottom:1013.730015px;}
.y60{bottom:1017.690033px;}
.y38{bottom:1018.230011px;}
.yb8{bottom:1018.230015px;}
.y171{bottom:1033.530029px;}
.y8d{bottom:1038.030015px;}
.y1ab{bottom:1038.030029px;}
.y5f{bottom:1041.989960px;}
.yb7{bottom:1042.530015px;}
.y37{bottom:1042.530029px;}
.y170{bottom:1062.329956px;}
.y8c{bottom:1062.330015px;}
.y5e{bottom:1066.289978px;}
.y36{bottom:1066.829956px;}
.yb6{bottom:1066.830015px;}
.yc8{bottom:1067.729835px;}
.y16f{bottom:1086.629974px;}
.y8b{bottom:1086.630015px;}
.y5d{bottom:1090.410004px;}
.y35{bottom:1091.129974px;}
.yb5{bottom:1091.130015px;}
.yc5{bottom:1100.849400px;}
.y16e{bottom:1110.750000px;}
.y8a{bottom:1110.750015px;}
.y34{bottom:1115.250000px;}
.yb4{bottom:1115.250015px;}
.y5c{bottom:1122.629974px;}
.y89{bottom:1139.550015px;}
.y33{bottom:1139.550018px;}
.yc4{bottom:1143.899970px;}
.y32{bottom:1194.839996px;}
.y86{bottom:1194.840000px;}
.y2{bottom:1234.440033px;}
.y1{bottom:1250.280029px;}
.h5{height:14.940000px;}
.h14{height:14.940450px;}
.h2b{height:19.080000px;}
.h2c{height:19.260000px;}
.h2e{height:19.296000px;}
.h28{height:19.440000px;}
.h2a{height:28.042031px;}
.h20{height:32.399970px;}
.h1d{height:32.401335px;}
.h1f{height:33.824531px;}
.h13{height:34.012969px;}
.h26{height:34.499014px;}
.h4{height:34.696055px;}
.h27{height:34.714663px;}
.h2d{height:35.280000px;}
.h18{height:37.863281px;}
.h1e{height:39.807422px;}
.h15{height:40.384688px;}
.h29{height:40.843828px;}
.h6{height:41.726953px;}
.h9{height:42.960938px;}
.hb{height:43.282266px;}
.h3{height:45.720703px;}
.h1b{height:46.007626px;}
.h1c{height:46.391019px;}
.h16{height:48.550781px;}
.h12{height:49.313672px;}
.ha{height:50.597578px;}
.h11{height:56.242284px;}
.hc{height:56.242471px;}
.h17{height:59.414062px;}
.h8{height:60.960938px;}
.h22{height:64.619115px;}
.h21{height:64.620480px;}
.h24{height:64.800015px;}
.h23{height:64.836450px;}
.h7{height:71.324297px;}
.h1a{height:84.497626px;}
.he{height:85.762368px;}
.hd{height:96.240967px;}
.h10{height:96.960938px;}
.hf{height:121.762368px;}
.h25{height:229.196250px;}
.h19{height:393.957000px;}
.h1{height:1263.000000px;}
.h2{height:1263.059967px;}
.h0{height:1263.060000px;}
.w4{width:7.380000px;}
.w5{width:7.380435px;}
.w3{width:7.596000px;}
.w14{width:14.940000px;}
.wc{width:41.759580px;}
.w9{width:52.415115px;}
.w8{width:52.559550px;}
.wb{width:52.560900px;}
.w7{width:62.640015px;}
.wa{width:63.000435px;}
.w11{width:65.520000px;}
.we{width:80.639997px;}
.w10{width:80.820002px;}
.wf{width:80.855999px;}
.w13{width:128.520000px;}
.w12{width:129.636005px;}
.wd{width:292.993200px;}
.w6{width:322.541970px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.200020px;}
.x14{left:13.066320px;}
.x20{left:14.423685px;}
.x18{left:17.027445px;}
.x1{left:84.995989px;}
.xa{left:106.415987px;}
.x3{left:120.275984px;}
.x1f{left:123.300915px;}
.x4{left:126.575991px;}
.x19{left:137.556015px;}
.x8{left:151.409990px;}
.x1a{left:170.490150px;}
.x21{left:188.490005px;}
.x15{left:224.698755px;}
.x22{left:270.075005px;}
.x1b{left:276.914700px;}
.x17{left:284.680215px;}
.x6{left:303.014978px;}
.x9{left:335.594980px;}
.x1c{left:340.634700px;}
.x5{left:350.894976px;}
.x26{left:361.515060px;}
.x2a{left:374.114992px;}
.x1d{left:393.915120px;}
.x25{left:403.995060px;}
.x1e{left:416.414985px;}
.x7{left:446.505007px;}
.xb{left:460.005007px;}
.x13{left:461.681070px;}
.xe{left:467.925005px;}
.xf{left:500.144976px;}
.x23{left:526.964996px;}
.x11{left:530.204989px;}
.xd{left:581.324968px;}
.x28{left:619.665015px;}
.x10{left:651.749987px;}
.x24{left:657.509995px;}
.x27{left:715.109940px;}
.x2b{left:727.710009px;}
.x29{left:757.589983px;}
.x2c{left:771.809967px;}
.xc{left:779.370026px;}
.x12{left:785.309940px;}
.x2{left:800.609985px;}
@media print{
.v3{vertical-align:-26.239909pt;}
.v2{vertical-align:-16.000000pt;}
.v8{vertical-align:-12.799805pt;}
.v6{vertical-align:-10.879883pt;}
.v5{vertical-align:-8.960286pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.520182pt;}
.v1{vertical-align:16.160156pt;}
.v7{vertical-align:31.360026pt;}
.vb{vertical-align:34.213333pt;}
.v9{vertical-align:37.760091pt;}
.va{vertical-align:69.760091pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.272000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.226667pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.111467pt;}
.ls2f{letter-spacing:-0.075733pt;}
.ls1b{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000078pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls38{letter-spacing:0.048026pt;}
.ls11{letter-spacing:0.127889pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.128052pt;}
.ls28{letter-spacing:0.161231pt;}
.ls2d{letter-spacing:0.169600pt;}
.ls2b{letter-spacing:0.178667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.192020pt;}
.ls3{letter-spacing:0.212267pt;}
.ls37{letter-spacing:0.224000pt;}
.ls2e{letter-spacing:0.252800pt;}
.ls23{letter-spacing:0.255840pt;}
.ls27{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.256320pt;}
.ls22{letter-spacing:0.299040pt;}
.ls20{letter-spacing:0.319680pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.320007pt;}
.ls24{letter-spacing:0.320160pt;}
.ls39{letter-spacing:0.352000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls31{letter-spacing:0.576000pt;}
.ls36{letter-spacing:0.640055pt;}
.ls8{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.972526pt;}
.lsf{letter-spacing:2.183732pt;}
.lsc{letter-spacing:2.220728pt;}
.ls10{letter-spacing:2.683572pt;}
.ls29{letter-spacing:3.589127pt;}
.ls2a{letter-spacing:5.090567pt;}
.ls9{letter-spacing:5.637172pt;}
.ls17{letter-spacing:7.954449pt;}
.ls16{letter-spacing:7.954612pt;}
.ls25{letter-spacing:10.880000pt;}
.lsb{letter-spacing:18.111922pt;}
.ls12{letter-spacing:20.103654pt;}
.ls26{letter-spacing:21.120000pt;}
.lsa{letter-spacing:23.557094pt;}
.ls14{letter-spacing:41.151961pt;}
.ls19{letter-spacing:43.519935pt;}
.ls13{letter-spacing:85.952091pt;}
.ls32{letter-spacing:756.473593pt;}
.ws10{word-spacing:-35.456000pt;}
.ws1{word-spacing:-16.685867pt;}
.ws0{word-spacing:-16.473600pt;}
.ws8{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.400000pt;}
.ws13{word-spacing:-14.336000pt;}
.ws6{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.208000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws1a{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-10.912000pt;}
.ws1c{word-spacing:-10.816000pt;}
.ws1b{word-spacing:-10.608026pt;}
.ws18{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.304000pt;}
.wsc{word-spacing:-9.996800pt;}
.wse{word-spacing:-9.885333pt;}
.ws14{word-spacing:-9.686400pt;}
.ws17{word-spacing:-9.612267pt;}
.ws2{word-spacing:-9.433600pt;}
.ws15{word-spacing:-9.357867pt;}
.ws16{word-spacing:-9.206933pt;}
.wsf{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.048000pt;}
.ws12{word-spacing:-0.042880pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:7.121313pt;}
._3e{margin-left:-28.325822pt;}
._3{margin-left:-6.101578pt;}
._4d{margin-left:-4.653009pt;}
._39{margin-left:-3.555840pt;}
._0{margin-left:-2.396160pt;}
._1{margin-left:-1.165870pt;}
._2{width:1.133659pt;}
._16{width:2.602650pt;}
._2f{width:3.584062pt;}
._2d{width:4.522644pt;}
._38{width:5.824000pt;}
._25{width:6.720000pt;}
._34{width:8.056614pt;}
._24{width:9.663915pt;}
._6{width:11.072000pt;}
._7{width:12.650647pt;}
._8{width:15.808000pt;}
._30{width:16.893004pt;}
._36{width:17.808694pt;}
._32{width:18.752000pt;}
._c{width:19.690654pt;}
._4{width:21.312000pt;}
._5{width:22.314637pt;}
._e{width:24.042667pt;}
._21{width:25.344000pt;}
._f{width:26.240000pt;}
._20{width:27.167896pt;}
._15{width:28.693324pt;}
._14{width:29.930676pt;}
._2e{width:31.232000pt;}
._4b{width:32.512000pt;}
._31{width:33.408019pt;}
._2b{width:34.435183pt;}
._18{width:35.626681pt;}
._33{width:36.991985pt;}
._3b{width:37.911106pt;}
._48{width:38.886804pt;}
._40{width:39.940076pt;}
._44{width:41.019924pt;}
._2c{width:42.432000pt;}
._d{width:43.488210pt;}
._4f{width:44.593920pt;}
._56{width:45.613870pt;}
._49{width:46.634880pt;}
._22{width:47.541311pt;}
._1c{width:48.458650pt;}
._1b{width:49.536000pt;}
._1d{width:50.495915pt;}
._28{width:52.031961pt;}
._4e{width:53.120078pt;}
._3a{width:54.080000pt;}
._51{width:55.808000pt;}
._50{width:56.960000pt;}
._4a{width:58.048000pt;}
._9{width:59.498657pt;}
._a{width:60.437343pt;}
._1e{width:63.310034pt;}
._19{width:64.448000pt;}
._1a{width:65.674696pt;}
._43{width:66.666792pt;}
._5b{width:67.840000pt;}
._37{width:69.312000pt;}
._b{width:71.040000pt;}
._41{width:71.936000pt;}
._52{width:74.432000pt;}
._58{width:75.332610pt;}
._11{width:77.226667pt;}
._53{width:78.506654pt;}
._1f{width:80.184442pt;}
._13{width:81.205343pt;}
._12{width:82.154650pt;}
._26{width:83.573229pt;}
._17{width:84.842647pt;}
._47{width:87.296000pt;}
._5c{width:90.623961pt;}
._35{width:92.480000pt;}
._23{width:95.871902pt;}
._5a{width:97.290680pt;}
._45{width:99.520000pt;}
._46{width:100.736000pt;}
._59{width:102.890631pt;}
._27{width:108.991980pt;}
._55{width:110.272000pt;}
._54{width:111.466631pt;}
._5e{width:113.536000pt;}
._5d{width:114.880000pt;}
._57{width:121.674628pt;}
._42{width:122.821365pt;}
._10{width:171.466654pt;}
._3f{width:308.186473pt;}
._4c{width:377.261333pt;}
._3c{width:397.600013pt;}
._3d{width:458.239987pt;}
._2a{width:1159.673626pt;}
._29{width:1236.558881pt;}
.fsb{font-size:29.440000pt;}
.fs9{font-size:36.218880pt;}
.fsa{font-size:36.445280pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:48.301227pt;}
.fs8{font-size:48.703733pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.560000pt;}
.y88{bottom:2.560413pt;}
.ycf{bottom:4.160195pt;}
.ye3{bottom:4.319724pt;}
.yd4{bottom:4.319764pt;}
.yde{bottom:4.319781pt;}
.yd9{bottom:4.320169pt;}
.yca{bottom:4.320172pt;}
.ye8{bottom:4.320568pt;}
.yc7{bottom:4.320572pt;}
.y12b{bottom:5.439982pt;}
.y129{bottom:5.440023pt;}
.y12d{bottom:5.599976pt;}
.y133{bottom:5.599996pt;}
.y12f{bottom:5.600016pt;}
.y126{bottom:5.760010pt;}
.y127{bottom:9.920003pt;}
.yce{bottom:18.560156pt;}
.yd3{bottom:18.719726pt;}
.ydd{bottom:18.719743pt;}
.ye2{bottom:18.719793pt;}
.yc9{bottom:18.720133pt;}
.ye7{bottom:18.720530pt;}
.yc6{bottom:18.720533pt;}
.yd8{bottom:18.760223pt;}
.y144{bottom:19.840007pt;}
.y145{bottom:20.000000pt;}
.y114{bottom:29.572400pt;}
.ye1{bottom:32.959705pt;}
.yd2{bottom:32.959745pt;}
.ycd{bottom:32.960118pt;}
.ydc{bottom:33.119812pt;}
.ye6{bottom:33.120598pt;}
.yd7{bottom:33.160185pt;}
.yc0{bottom:35.375520pt;}
.y87{bottom:39.039587pt;}
.y4{bottom:39.040000pt;}
.y3{bottom:41.600000pt;}
.yd1{bottom:47.359707pt;}
.ye0{bottom:47.359773pt;}
.ycc{bottom:47.360187pt;}
.ydb{bottom:47.519773pt;}
.ye5{bottom:47.520560pt;}
.yd6{bottom:47.560147pt;}
.ybf{bottom:49.463800pt;}
.yee{bottom:98.432000pt;}
.yb3{bottom:98.912067pt;}
.y1b4{bottom:104.671997pt;}
.y5b{bottom:105.951996pt;}
.y111{bottom:105.952067pt;}
.y31{bottom:107.072000pt;}
.y13d{bottom:108.671997pt;}
.y1aa{bottom:110.752004pt;}
.y26{bottom:111.072000pt;}
.yc1{bottom:114.469227pt;}
.y85{bottom:115.232005pt;}
.yed{bottom:116.671947pt;}
.y112{bottom:116.869200pt;}
.y159{bottom:119.232005pt;}
.yb2{bottom:120.352067pt;}
.y1b3{bottom:120.832000pt;}
.y5a{bottom:127.552002pt;}
.y110{bottom:127.552067pt;}
.y30{bottom:128.671997pt;}
.y13c{bottom:130.272003pt;}
.y25{bottom:132.671997pt;}
.y1b2{bottom:133.946665pt;}
.y84{bottom:136.826670pt;}
.ybb{bottom:138.746667pt;}
.y158{bottom:140.826670pt;}
.yb1{bottom:141.946627pt;}
.y1a1{bottom:142.266667pt;}
.y10f{bottom:149.146627pt;}
.y59{bottom:149.146667pt;}
.y13b{bottom:151.706665pt;}
.y1a9{bottom:152.186666pt;}
.y24{bottom:154.266663pt;}
.yba{bottom:155.066667pt;}
.y83{bottom:158.426666pt;}
.y157{bottom:162.266663pt;}
.yb0{bottom:163.546627pt;}
.y1a0{bottom:167.706667pt;}
.y10e{bottom:170.746627pt;}
.y58{bottom:170.746663pt;}
.yb9{bottom:173.146627pt;}
.y13a{bottom:173.306661pt;}
.ybc{bottom:173.505600pt;}
.y23{bottom:175.866659pt;}
.y113{bottom:176.881467pt;}
.y82{bottom:180.026672pt;}
.y156{bottom:183.866659pt;}
.yaf{bottom:185.146627pt;}
.y10d{bottom:192.346627pt;}
.y57{bottom:192.346659pt;}
.y19f{bottom:193.306667pt;}
.y1a8{bottom:193.786662pt;}
.y139{bottom:194.906657pt;}
.y22{bottom:197.466675pt;}
.y191{bottom:200.346659pt;}
.y81{bottom:201.626668pt;}
.y155{bottom:205.466675pt;}
.yae{bottom:206.746627pt;}
.y10c{bottom:213.786627pt;}
.y56{bottom:213.786662pt;}
.y138{bottom:216.506673pt;}
.y16d{bottom:217.786662pt;}
.y21{bottom:218.906657pt;}
.y19e{bottom:218.906667pt;}
.yc3{bottom:219.323173pt;}
.y190{bottom:221.786662pt;}
.y80{bottom:223.706665pt;}
.y154{bottom:227.066671pt;}
.yad{bottom:228.346627pt;}
.y7e{bottom:231.706665pt;}
.y1a7{bottom:233.946676pt;}
.y10b{bottom:235.386627pt;}
.y55{bottom:235.386658pt;}
.y137{bottom:238.106669pt;}
.y7f{bottom:238.266663pt;}
.y20{bottom:240.506673pt;}
.y18f{bottom:243.386658pt;}
.y19d{bottom:244.506667pt;}
.y153{bottom:248.666667pt;}
.yac{bottom:249.786627pt;}
.y1a6{bottom:252.186666pt;}
.y10a{bottom:256.986627pt;}
.y54{bottom:256.986674pt;}
.y136{bottom:259.546672pt;}
.y7d{bottom:261.786662pt;}
.y1f{bottom:262.106669pt;}
.y18e{bottom:264.986674pt;}
.y19c{bottom:268.506667pt;}
.y152{bottom:270.266663pt;}
.yab{bottom:271.386627pt;}
.y16c{bottom:271.386658pt;}
.yc2{bottom:271.649507pt;}
.y53{bottom:278.586670pt;}
.y135{bottom:281.146667pt;}
.y109{bottom:282.586627pt;}
.y7c{bottom:283.386658pt;}
.y1e{bottom:283.706665pt;}
.y19b{bottom:286.586600pt;}
.y18d{bottom:286.586670pt;}
.y151{bottom:291.706665pt;}
.yaa{bottom:292.986627pt;}
.y16b{bottom:292.986674pt;}
.y52{bottom:300.186666pt;}
.y108{bottom:304.186627pt;}
.y7b{bottom:304.826660pt;}
.y1d{bottom:305.306661pt;}
.y134{bottom:306.746663pt;}
.ybe{bottom:307.472920pt;}
.y18c{bottom:308.186666pt;}
.y2f{bottom:309.306661pt;}
.ybd{bottom:313.007467pt;}
.y150{bottom:313.346659pt;}
.ya9{bottom:314.626627pt;}
.y16a{bottom:314.626668pt;}
.y1b1{bottom:320.546672pt;}
.y51{bottom:321.666667pt;}
.y107{bottom:325.666627pt;}
.y132{bottom:326.626668pt;}
.y1c{bottom:326.786662pt;}
.y79{bottom:326.946676pt;}
.y2e{bottom:330.786662pt;}
.yec{bottom:331.106667pt;}
.y7a{bottom:333.506673pt;}
.y18b{bottom:333.666667pt;}
.y14f{bottom:334.946676pt;}
.ya8{bottom:336.226627pt;}
.y169{bottom:336.226664pt;}
.y50{bottom:343.266683pt;}
.y131{bottom:344.386678pt;}
.y1b0{bottom:344.546672pt;}
.y106{bottom:347.266627pt;}
.y1b{bottom:348.386678pt;}
.y78{bottom:348.546672pt;}
.yeb{bottom:351.106653pt;}
.y2d{bottom:352.386678pt;}
.y18a{bottom:355.266683pt;}
.y14e{bottom:356.546672pt;}
.ya7{bottom:357.666627pt;}
.y168{bottom:357.666667pt;}
.y1af{bottom:360.706665pt;}
.y130{bottom:362.146647pt;}
.y4f{bottom:364.866659pt;}
.y105{bottom:368.866627pt;}
.yea{bottom:369.346680pt;}
.y1a{bottom:373.986654pt;}
.y77{bottom:374.146647pt;}
.y189{bottom:376.866659pt;}
.ya6{bottom:379.266627pt;}
.y167{bottom:379.266683pt;}
.y12e{bottom:379.746663pt;}
.y14d{bottom:382.146647pt;}
.y4e{bottom:386.466675pt;}
.y104{bottom:390.466627pt;}
.y1ae{bottom:393.026652pt;}
.y19{bottom:395.586670pt;}
.y76{bottom:395.746663pt;}
.y12c{bottom:397.506673pt;}
.y188{bottom:398.466675pt;}
.ya5{bottom:400.866627pt;}
.y166{bottom:400.866659pt;}
.y1ad{bottom:407.266683pt;}
.y4d{bottom:408.066650pt;}
.y103{bottom:412.066627pt;}
.y1a5{bottom:413.506673pt;}
.y12a{bottom:415.266683pt;}
.y18{bottom:417.186686pt;}
.y75{bottom:417.346680pt;}
.y187{bottom:420.066650pt;}
.y165{bottom:422.466675pt;}
.y197{bottom:423.746667pt;}
.ya4{bottom:426.466627pt;}
.y4c{bottom:429.666667pt;}
.y14c{bottom:429.986654pt;}
.y128{bottom:433.026652pt;}
.y102{bottom:433.666627pt;}
.y17{bottom:438.786662pt;}
.y186{bottom:441.666667pt;}
.y164{bottom:444.066650pt;}
.y14b{bottom:447.746663pt;}
.y196{bottom:447.746667pt;}
.y1a4{bottom:447.906657pt;}
.ya3{bottom:448.066627pt;}
.y125{bottom:450.626668pt;}
.y4b{bottom:451.106649pt;}
.y101{bottom:459.106627pt;}
.y16{bottom:460.226685pt;}
.y74{bottom:460.386678pt;}
.y14a{bottom:465.346680pt;}
.y163{bottom:465.666667pt;}
.y195{bottom:465.986653pt;}
.y185{bottom:467.106649pt;}
.ya2{bottom:469.666627pt;}
.y4a{bottom:476.706665pt;}
.y124{bottom:477.506673pt;}
.y100{bottom:480.706627pt;}
.y15{bottom:481.826660pt;}
.y73{bottom:481.986654pt;}
.y149{bottom:483.106649pt;}
.y184{bottom:488.706665pt;}
.ya1{bottom:491.106627pt;}
.y162{bottom:491.106649pt;}
.y123{bottom:495.106649pt;}
.y148{bottom:500.866659pt;}
.yff{bottom:502.306627pt;}
.y14{bottom:503.426676pt;}
.y72{bottom:503.586670pt;}
.y2c{bottom:507.426676pt;}
.y183{bottom:510.306681pt;}
.ya0{bottom:512.706627pt;}
.y161{bottom:512.706665pt;}
.y122{bottom:516.706665pt;}
.y147{bottom:518.466675pt;}
.yfe{bottom:523.906627pt;}
.y13{bottom:525.026652pt;}
.y71{bottom:525.186686pt;}
.y2b{bottom:529.026652pt;}
.y49{bottom:530.306681pt;}
.y9f{bottom:534.306627pt;}
.y160{bottom:534.306681pt;}
.y182{bottom:535.906657pt;}
.y146{bottom:536.226685pt;}
.y121{bottom:538.306681pt;}
.yfd{bottom:545.506627pt;}
.y12{bottom:546.653320pt;}
.y2a{bottom:550.653320pt;}
.y48{bottom:551.933350pt;}
.y143{bottom:554.013346pt;}
.y9e{bottom:555.933347pt;}
.y15f{bottom:555.933350pt;}
.y181{bottom:557.533325pt;}
.y120{bottom:559.933350pt;}
.y11{bottom:568.253337pt;}
.yfc{bottom:571.133347pt;}
.y29{bottom:572.253337pt;}
.y47{bottom:573.533325pt;}
.y15e{bottom:577.533325pt;}
.y9d{bottom:577.533347pt;}
.y180{bottom:579.133341pt;}
.y11f{bottom:581.533325pt;}
.ye9{bottom:582.653320pt;}
.y1ac{bottom:586.013346pt;}
.y10{bottom:589.693319pt;}
.y70{bottom:589.853353pt;}
.y28{bottom:593.693319pt;}
.y142{bottom:594.973348pt;}
.y46{bottom:595.133341pt;}
.y15d{bottom:599.133341pt;}
.y9c{bottom:599.133347pt;}
.ye4{bottom:599.932773pt;}
.y11e{bottom:603.133341pt;}
.y17f{bottom:604.573324pt;}
.yf{bottom:611.293335pt;}
.y6f{bottom:611.453328pt;}
.y27{bottom:615.293335pt;}
.y45{bottom:616.573324pt;}
.y15c{bottom:620.573324pt;}
.y9b{bottom:620.573347pt;}
.y11d{bottom:624.573324pt;}
.yfb{bottom:624.573347pt;}
.y17e{bottom:626.173340pt;}
.y6e{bottom:633.533325pt;}
.ye{bottom:636.893351pt;}
.y44{bottom:638.173340pt;}
.y19a{bottom:641.533320pt;}
.y6d{bottom:641.533325pt;}
.y141{bottom:642.173340pt;}
.y9a{bottom:642.173347pt;}
.y1a3{bottom:643.613322pt;}
.y11c{bottom:646.173340pt;}
.yfa{bottom:646.173347pt;}
.y17d{bottom:647.773315pt;}
.ydf{bottom:658.173587pt;}
.y43{bottom:659.773315pt;}
.y140{bottom:663.773315pt;}
.y99{bottom:663.773347pt;}
.y199{bottom:665.533320pt;}
.y11b{bottom:667.773315pt;}
.yf9{bottom:667.773347pt;}
.y17c{bottom:669.373332pt;}
.y6c{bottom:671.773315pt;}
.yd{bottom:674.493327pt;}
.y42{bottom:681.373332pt;}
.y198{bottom:683.613387pt;}
.y98{bottom:685.373347pt;}
.y13f{bottom:685.373372pt;}
.yf8{bottom:689.373347pt;}
.y11a{bottom:689.373372pt;}
.y6b{bottom:693.373372pt;}
.y17b{bottom:694.973307pt;}
.y41{bottom:702.973307pt;}
.y13e{bottom:706.973307pt;}
.y97{bottom:706.973347pt;}
.y119{bottom:710.973307pt;}
.yf7{bottom:710.973347pt;}
.yc{bottom:712.093343pt;}
.y6a{bottom:714.813314pt;}
.yda{bottom:716.253587pt;}
.y17a{bottom:716.413330pt;}
.y40{bottom:724.413330pt;}
.y15b{bottom:728.413330pt;}
.y96{bottom:728.413347pt;}
.y118{bottom:732.413330pt;}
.yf6{bottom:732.413347pt;}
.y69{bottom:736.413330pt;}
.yb{bottom:737.533366pt;}
.y179{bottom:738.013346pt;}
.y3f{bottom:746.013346pt;}
.y95{bottom:750.013347pt;}
.yf5{bottom:754.013347pt;}
.ya{bottom:755.133301pt;}
.y68{bottom:758.013346pt;}
.y178{bottom:763.613363pt;}
.y94{bottom:771.613347pt;}
.y3e{bottom:771.613363pt;}
.yd5{bottom:774.493160pt;}
.yf4{bottom:775.613347pt;}
.y117{bottom:775.613363pt;}
.y9{bottom:776.733317pt;}
.y67{bottom:779.653320pt;}
.y177{bottom:785.253337pt;}
.y3d{bottom:793.253337pt;}
.y93{bottom:793.253347pt;}
.y116{bottom:797.253337pt;}
.yf3{bottom:797.253347pt;}
.y8{bottom:799.333333pt;}
.y66{bottom:801.253337pt;}
.y176{bottom:806.853353pt;}
.y92{bottom:814.853347pt;}
.y3c{bottom:814.853353pt;}
.yf2{bottom:818.853347pt;}
.y115{bottom:818.853353pt;}
.y65{bottom:822.853353pt;}
.y7{bottom:824.613363pt;}
.y175{bottom:828.453369pt;}
.y194{bottom:832.453373pt;}
.yd0{bottom:832.773600pt;}
.y91{bottom:836.453347pt;}
.y15a{bottom:836.453369pt;}
.y1a2{bottom:839.333333pt;}
.yf1{bottom:840.453347pt;}
.y3b{bottom:840.453369pt;}
.y64{bottom:844.293294pt;}
.y6{bottom:849.733317pt;}
.y174{bottom:853.893311pt;}
.y193{bottom:856.453373pt;}
.y90{bottom:857.893347pt;}
.y3a{bottom:861.893311pt;}
.yf0{bottom:861.893347pt;}
.y62{bottom:868.933350pt;}
.y63{bottom:869.093343pt;}
.y192{bottom:874.533347pt;}
.y173{bottom:875.493327pt;}
.y61{bottom:876.933350pt;}
.y8f{bottom:879.493347pt;}
.y39{bottom:883.493327pt;}
.yef{bottom:883.493347pt;}
.ycb{bottom:891.013187pt;}
.y172{bottom:897.093343pt;}
.y8e{bottom:901.093347pt;}
.y60{bottom:904.613363pt;}
.y38{bottom:905.093343pt;}
.yb8{bottom:905.093347pt;}
.y171{bottom:918.693359pt;}
.y8d{bottom:922.693347pt;}
.y1ab{bottom:922.693359pt;}
.y5f{bottom:926.213298pt;}
.yb7{bottom:926.693347pt;}
.y37{bottom:926.693359pt;}
.y170{bottom:944.293294pt;}
.y8c{bottom:944.293347pt;}
.y5e{bottom:947.813314pt;}
.y36{bottom:948.293294pt;}
.yb6{bottom:948.293347pt;}
.yc8{bottom:949.093187pt;}
.y16f{bottom:965.893311pt;}
.y8b{bottom:965.893347pt;}
.y5d{bottom:969.253337pt;}
.y35{bottom:969.893311pt;}
.yb5{bottom:969.893347pt;}
.yc5{bottom:978.532800pt;}
.y16e{bottom:987.333333pt;}
.y8a{bottom:987.333347pt;}
.y34{bottom:991.333333pt;}
.yb4{bottom:991.333347pt;}
.y5c{bottom:997.893311pt;}
.y89{bottom:1012.933347pt;}
.y33{bottom:1012.933350pt;}
.yc4{bottom:1016.799973pt;}
.y32{bottom:1062.079997pt;}
.y86{bottom:1062.080000pt;}
.y2{bottom:1097.280029pt;}
.y1{bottom:1111.360026pt;}
.h5{height:13.280000pt;}
.h14{height:13.280400pt;}
.h2b{height:16.960000pt;}
.h2c{height:17.120000pt;}
.h2e{height:17.152000pt;}
.h28{height:17.280000pt;}
.h2a{height:24.926250pt;}
.h20{height:28.799973pt;}
.h1d{height:28.801187pt;}
.h1f{height:30.066250pt;}
.h13{height:30.233750pt;}
.h26{height:30.665790pt;}
.h4{height:30.840937pt;}
.h27{height:30.857478pt;}
.h2d{height:31.360000pt;}
.h18{height:33.656250pt;}
.h1e{height:35.384375pt;}
.h15{height:35.897500pt;}
.h29{height:36.305625pt;}
.h6{height:37.090625pt;}
.h9{height:38.187500pt;}
.hb{height:38.473125pt;}
.h3{height:40.640625pt;}
.h1b{height:40.895668pt;}
.h1c{height:41.236462pt;}
.h16{height:43.156250pt;}
.h12{height:43.834375pt;}
.ha{height:44.975625pt;}
.h11{height:49.993141pt;}
.hc{height:49.993307pt;}
.h17{height:52.812500pt;}
.h8{height:54.187500pt;}
.h22{height:57.439213pt;}
.h21{height:57.440427pt;}
.h24{height:57.600013pt;}
.h23{height:57.632400pt;}
.h7{height:63.399375pt;}
.h1a{height:75.109001pt;}
.he{height:76.233216pt;}
.hd{height:85.547526pt;}
.h10{height:86.187500pt;}
.hf{height:108.233216pt;}
.h25{height:203.730000pt;}
.h19{height:350.184000pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.719971pt;}
.h0{height:1122.720000pt;}
.w4{width:6.560000pt;}
.w5{width:6.560387pt;}
.w3{width:6.752000pt;}
.w14{width:13.280000pt;}
.wc{width:37.119627pt;}
.w9{width:46.591213pt;}
.w8{width:46.719600pt;}
.wb{width:46.720800pt;}
.w7{width:55.680013pt;}
.wa{width:56.000387pt;}
.w11{width:58.240000pt;}
.we{width:71.679998pt;}
.w10{width:71.840001pt;}
.wf{width:71.871999pt;}
.w13{width:114.240000pt;}
.w12{width:115.232005pt;}
.wd{width:260.438400pt;}
.w6{width:286.703973pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.288907pt;}
.x14{left:11.614507pt;}
.x20{left:12.821053pt;}
.x18{left:15.135507pt;}
.x1{left:75.551990pt;}
.xa{left:94.591988pt;}
.x3{left:106.911986pt;}
.x1f{left:109.600813pt;}
.x4{left:112.511992pt;}
.x19{left:122.272013pt;}
.x8{left:134.586658pt;}
.x1a{left:151.546800pt;}
.x21{left:167.546672pt;}
.x15{left:199.732227pt;}
.x22{left:240.066671pt;}
.x1b{left:246.146400pt;}
.x17{left:253.049080pt;}
.x6{left:269.346648pt;}
.x9{left:298.306649pt;}
.x1c{left:302.786400pt;}
.x5{left:311.906645pt;}
.x26{left:321.346720pt;}
.x2a{left:332.546660pt;}
.x1d{left:350.146773pt;}
.x25{left:359.106720pt;}
.x1e{left:370.146653pt;}
.x7{left:396.893339pt;}
.xb{left:408.893339pt;}
.x13{left:410.383173pt;}
.xe{left:415.933338pt;}
.xf{left:444.573312pt;}
.x23{left:468.413330pt;}
.x11{left:471.293323pt;}
.xd{left:516.733305pt;}
.x28{left:550.813347pt;}
.x10{left:579.333322pt;}
.x24{left:584.453328pt;}
.x27{left:635.653280pt;}
.x2b{left:646.853341pt;}
.x29{left:673.413318pt;}
.x2c{left:686.053304pt;}
.xc{left:692.773356pt;}
.x12{left:698.053280pt;}
.x2{left:711.653320pt;}
}


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