
/* 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_b7e251dc35ed.woff")format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_8c392acf8f36.woff")format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_427ff1740202.woff")format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_56f821a1b699.woff")format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_e255634d68e8.woff")format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_f98181156a97.woff")format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_c49bd345afb8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_769f98b0455b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.387000;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_b89de688543d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.895000;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_c11816aca40d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_470d13a7b621.woff")format("woff");}.ffb{font-family:ffb;line-height:0.826000;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_b0dcdc4a4b2c.woff")format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_54d61c5e3540.woff")format("woff");}.ffd{font-family:ffd;line-height:0.906000;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_b89de688543d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.895000;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_6d5da7d1da6b.woff")format("woff");}.fff{font-family:fff;line-height:0.839000;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_c49bd345afb8.woff")format("woff");}.ff10{font-family:ff10;line-height:0.844000;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_c11816aca40d.woff")format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_b89de688543d.woff")format("woff");}.ff12{font-family:ff12;line-height:0.895000;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_6d5da7d1da6b.woff")format("woff");}.ff13{font-family:ff13;line-height:0.839000;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_f98181156a97.woff")format("woff");}.ff14{font-family:ff14;line-height:0.906000;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_c49bd345afb8.woff")format("woff");}.ff15{font-family:ff15;line-height:0.844000;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_ffb1a3ee4f55.woff")format("woff");}.ff16{font-family:ff16;line-height:0.898000;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_470d13a7b621.woff")format("woff");}.ff17{font-family:ff17;line-height:0.826000;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_f98181156a97.woff")format("woff");}.ff18{font-family:ff18;line-height:0.906000;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_b89de688543d.woff")format("woff");}.ff19{font-family:ff19;line-height:0.895000;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_6d5da7d1da6b.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.839000;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_c11816aca40d.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.898000;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_53a25e3c5813.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.844000;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_54d61c5e3540.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.906000;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_b89de688543d.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.895000;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_f98181156a97.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.906000;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:ff20;src:url("fonts/font_0031_b89de688543d.woff")format("woff");}.ff20{font-family:ff20;line-height:0.895000;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:ff21;src:url("fonts/font_0032_6d5da7d1da6b.woff")format("woff");}.ff21{font-family:ff21;line-height:0.839000;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:ff22;src:url("fonts/font_0033_c11816aca40d.woff")format("woff");}.ff22{font-family:ff22;line-height:0.898000;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:ff23;src:url("fonts/font_0034_53a25e3c5813.woff")format("woff");}.ff23{font-family:ff23;line-height:0.844000;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:ff24;src:url("fonts/font_0035_b89de688543d.woff")format("woff");}.ff24{font-family:ff24;line-height:0.895000;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:ff25;src:url("fonts/font_0036_6d5da7d1da6b.woff")format("woff");}.ff25{font-family:ff25;line-height:0.839000;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:ff26;src:url("fonts/font_0037_54d61c5e3540.woff")format("woff");}.ff26{font-family:ff26;line-height:0.906000;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:ff27;src:url("fonts/font_0038_53a25e3c5813.woff")format("woff");}.ff27{font-family:ff27;line-height:0.844000;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:ff28;src:url("fonts/font_0039_54d61c5e3540.woff")format("woff");}.ff28{font-family:ff28;line-height:0.906000;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:ff29;src:url("fonts/font_0040_765c66c7f1c1.woff")format("woff");}.ff29{font-family:ff29;line-height:0.895000;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:ff2a;src:url("fonts/font_0041_c11816aca40d.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.898000;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:ff2b;src:url("fonts/font_0042_53a25e3c5813.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.844000;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:ff2c;src:url("fonts/font_0043_54d61c5e3540.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.906000;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:ff2d;src:url("fonts/font_0044_b89de688543d.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.895000;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:ff2e;src:url("fonts/font_0045_6d5da7d1da6b.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.839000;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:ff2f;src:url("fonts/font_0046_53a25e3c5813.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.844000;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:ff30;src:url("fonts/font_0047_c11816aca40d.woff")format("woff");}.ff30{font-family:ff30;line-height:0.898000;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:ff31;src:url("fonts/font_0048_4c8a71db5107.woff")format("woff");}.ff31{font-family:ff31;line-height:0.922000;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:ff32;src:url("fonts/font_0049_b89de688543d.woff")format("woff");}.ff32{font-family:ff32;line-height:0.895000;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:ff33;src:url("fonts/font_0050_6d5da7d1da6b.woff")format("woff");}.ff33{font-family:ff33;line-height:0.839000;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:ff34;src:url("fonts/font_0051_54d61c5e3540.woff")format("woff");}.ff34{font-family:ff34;line-height:0.906000;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:ff35;src:url("fonts/font_0052_53a25e3c5813.woff")format("woff");}.ff35{font-family:ff35;line-height:0.844000;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;}
.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(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:-28.206000px;}
.v4{vertical-align:-17.364000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.802000px;}
.v8{vertical-align:11.243866px;}
.v5{vertical-align:13.090856px;}
.v6{vertical-align:21.697440px;}
.v2{vertical-align:28.206000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.960000px;}
.ls1{letter-spacing:2.986176px;}
.ls9{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.955150px;}
.ls3{letter-spacing:13.449600px;}
.lsf{letter-spacing:14.166817px;}
.lsa{letter-spacing:14.943900px;}
.ls13{letter-spacing:15.547738px;}
.ls12{letter-spacing:15.840534px;}
.ls10{letter-spacing:20.922600px;}
.lsb{letter-spacing:20.923200px;}
.ls4{letter-spacing:20.925302px;}
.lsc{letter-spacing:21.072600px;}
.ls11{letter-spacing:26.562600px;}
.lse{letter-spacing:26.563200px;}
.lsd{letter-spacing:29.887800px;}
.ls8{letter-spacing:744.231998px;}
.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;}
}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.012000px;}
.ws4{word-spacing:-13.500000px;}
.ws43{word-spacing:-12.000000px;}
.ws20{word-spacing:-0.960000px;}
.ws0{word-spacing:-0.099000px;}
.ws26{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.054396px;}
.ws18{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.047821px;}
.ws1f{word-spacing:0.000000px;}
.ws67{word-spacing:9.038045px;}
.ws63{word-spacing:10.418857px;}
.ws7e{word-spacing:11.351462px;}
.ws59{word-spacing:11.417140px;}
.ws55{word-spacing:11.476915px;}
.ws73{word-spacing:11.512858px;}
.ws74{word-spacing:11.728051px;}
.ws6{word-spacing:11.907329px;}
.ws49{word-spacing:12.253998px;}
.ws14{word-spacing:12.588826px;}
.ws7d{word-spacing:12.965414px;}
.ws70{word-spacing:13.073011px;}
.ws44{word-spacing:13.090856px;}
.ws36{word-spacing:13.150632px;}
.ws16{word-spacing:13.180608px;}
.ws66{word-spacing:13.210408px;}
.wsd{word-spacing:13.234406px;}
.ws83{word-spacing:13.294127px;}
.ws6d{word-spacing:13.329959px;}
.ws84{word-spacing:13.341947px;}
.ws7b{word-spacing:13.342003px;}
.ws35{word-spacing:13.389734px;}
.ws17{word-spacing:13.395802px;}
.wsf{word-spacing:13.503398px;}
.ws21{word-spacing:13.557197px;}
.ws52{word-spacing:13.628837px;}
.ws62{word-spacing:14.047266px;}
.ws5{word-spacing:14.156916px;}
.ws27{word-spacing:14.226593px;}
.ws5c{word-spacing:14.286368px;}
.ws23{word-spacing:14.346144px;}
.ws79{word-spacing:14.364173px;}
.ws41{word-spacing:14.525471px;}
.ws7c{word-spacing:14.525568px;}
.wsc{word-spacing:14.686963px;}
.ws40{word-spacing:14.764573px;}
.ws75{word-spacing:14.794560px;}
.ws2a{word-spacing:14.824349px;}
.ws24{word-spacing:14.884124px;}
.ws31{word-spacing:14.890102px;}
.ws45{word-spacing:15.003676px;}
.ws4d{word-spacing:15.063451px;}
.ws71{word-spacing:15.224947px;}
.ws1b{word-spacing:15.242778px;}
.ws56{word-spacing:15.302554px;}
.ws60{word-spacing:15.362329px;}
.ws61{word-spacing:15.422105px;}
.ws29{word-spacing:15.481880px;}
.ws77{word-spacing:15.493939px;}
.ws5a{word-spacing:15.541656px;}
.ws3e{word-spacing:15.601432px;}
.ws64{word-spacing:15.661207px;}
.ws30{word-spacing:15.720983px;}
.ws68{word-spacing:15.780758px;}
.ws5b{word-spacing:15.900310px;}
.ws12{word-spacing:15.978125px;}
.ws5d{word-spacing:16.019861px;}
.ws48{word-spacing:16.079636px;}
.ws53{word-spacing:16.139412px;}
.ws87{word-spacing:16.354645px;}
.ws86{word-spacing:16.402466px;}
.ws3b{word-spacing:16.438290px;}
.ws72{word-spacing:16.462310px;}
.ws3a{word-spacing:16.498066px;}
.ws6f{word-spacing:16.516109px;}
.ws3c{word-spacing:16.557841px;}
.ws13{word-spacing:16.569907px;}
.ws11{word-spacing:16.677504px;}
.ws76{word-spacing:16.731302px;}
.ws65{word-spacing:16.796944px;}
.ws69{word-spacing:16.856719px;}
.ws47{word-spacing:16.916495px;}
.ws42{word-spacing:16.976270px;}
.ws28{word-spacing:17.095822px;}
.ws4f{word-spacing:17.155597px;}
.ws39{word-spacing:17.275148px;}
.ws5f{word-spacing:17.328946px;}
.ws5e{word-spacing:17.334924px;}
.ws7a{word-spacing:17.376883px;}
.ws4b{word-spacing:17.454475px;}
.ws58{word-spacing:17.550160px;}
.ws25{word-spacing:17.633802px;}
.ws3d{word-spacing:17.753353px;}
.ws8{word-spacing:17.861069px;}
.ws33{word-spacing:17.872904px;}
.ws81{word-spacing:17.884904px;}
.ws10{word-spacing:17.968666px;}
.ws4a{word-spacing:17.992456px;}
.ws15{word-spacing:18.022464px;}
.ws3f{word-spacing:18.112007px;}
.ws4c{word-spacing:18.231558px;}
.ws2c{word-spacing:18.351109px;}
.ws46{word-spacing:18.590212px;}
.ws82{word-spacing:18.697855px;}
.ws38{word-spacing:18.769538px;}
.ws37{word-spacing:18.829314px;}
.wse{word-spacing:18.883238px;}
.ws2b{word-spacing:18.889090px;}
.ws2d{word-spacing:19.008641px;}
.ws6e{word-spacing:19.044634px;}
.ws85{word-spacing:19.080419px;}
.ws1c{word-spacing:19.187968px;}
.wsa{word-spacing:19.349392px;}
.ws2e{word-spacing:19.427070px;}
.ws4e{word-spacing:19.905275px;}
.ws50{word-spacing:20.024826px;}
.ws6a{word-spacing:20.204153px;}
.ws6c{word-spacing:20.263928px;}
.ws1d{word-spacing:20.503031px;}
.ws32{word-spacing:20.562806px;}
.ws2f{word-spacing:20.742133px;}
.ws6b{word-spacing:20.801909px;}
.ws78{word-spacing:20.819981px;}
.ws34{word-spacing:20.861684px;}
.ws7f{word-spacing:20.873779px;}
.ws57{word-spacing:21.578992px;}
.ws51{word-spacing:23.730913px;}
.ws54{word-spacing:23.850464px;}
.ws9{word-spacing:25.303131px;}
.ws22{word-spacing:25.350571px;}
.ws1e{word-spacing:25.351171px;}
.ws19{word-spacing:25.351771px;}
.ws1a{word-spacing:29.828024px;}
.ws80{word-spacing:29.840054px;}
.ws3{word-spacing:1361.383800px;}
._6{margin-left:-19.893370px;}
._12{margin-left:-8.501756px;}
._4{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._b{margin-left:-4.902967px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._3{width:1.848000px;}
._17{width:2.979223px;}
._5{width:4.751191px;}
._9{width:10.971432px;}
._c{width:13.774475px;}
._d{width:15.254771px;}
._14{width:17.215416px;}
._10{width:18.708395px;}
._16{width:21.567166px;}
._a{width:29.887800px;}
._19{width:30.940003px;}
._13{width:36.844400px;}
._15{width:39.570174px;}
._18{width:40.720688px;}
._8{width:447.071100px;}
._11{width:538.138230px;}
._f{width:744.375443px;}
._e{width:752.463600px;}
._7{width:824.463000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fsc{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.108000px;}
.fsa{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsb{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:77.708400px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.619000px;}
.y55{bottom:-366.885242px;}
.y9d{bottom:-366.885092px;}
.y54{bottom:-351.941304px;}
.y9c{bottom:-351.941154px;}
.y53{bottom:-336.997367px;}
.y9b{bottom:-336.997217px;}
.y52{bottom:-307.790935px;}
.y9a{bottom:-307.790785px;}
.y51{bottom:-288.280350px;}
.y99{bottom:-288.280200px;}
.y50{bottom:-243.192948px;}
.y98{bottom:-243.192798px;}
.y4f{bottom:-225.260268px;}
.y97{bottom:-225.260118px;}
.y4e{bottom:-207.327588px;}
.y96{bottom:-207.327438px;}
.y4d{bottom:-171.163350px;}
.y95{bottom:-171.163200px;}
.y94{bottom:-76.696759px;}
.y4c{bottom:-76.694585px;}
.y93{bottom:-49.622714px;}
.y4b{bottom:-49.620540px;}
.y79{bottom:-47.325092px;}
.y30{bottom:-47.317725px;}
.y92{bottom:-33.483194px;}
.y4a{bottom:-33.481020px;}
.y78{bottom:-32.381154px;}
.y2f{bottom:-32.373787px;}
.y8{bottom:-31.889700px;}
.y77{bottom:-17.437217px;}
.y2e{bottom:-17.429850px;}
.y91{bottom:-17.343674px;}
.y49{bottom:-17.341500px;}
.y0{bottom:0.000000px;}
.y76{bottom:11.769215px;}
.y90{bottom:16.724162px;}
.y75{bottom:31.279800px;}
.y8f{bottom:32.863682px;}
.y8e{bottom:49.003202px;}
.y8d{bottom:65.142722px;}
.y7{bottom:68.165850px;}
.y74{bottom:76.367202px;}
.ycd{bottom:79.926300px;}
.yf4{bottom:79.926862px;}
.y122{bottom:79.937155px;}
.y8c{bottom:81.282242px;}
.y6{bottom:81.665850px;}
.ycc{bottom:84.265800px;}
.y73{bottom:94.299882px;}
.y5{bottom:95.165850px;}
.y121{bottom:96.372566px;}
.y8b{bottom:97.421762px;}
.yf3{bottom:99.210300px;}
.y150{bottom:103.538100px;}
.y4{bottom:108.665850px;}
.y72{bottom:112.232562px;}
.y120{bottom:112.807978px;}
.y8a{bottom:113.561282px;}
.y14f{bottom:118.482038px;}
.y11f{bottom:129.243389px;}
.y89{bottom:129.700802px;}
.ycb{bottom:129.752317px;}
.y106{bottom:129.754260px;}
.y14e{bottom:133.425975px;}
.yf2{bottom:144.691174px;}
.y11e{bottom:145.678800px;}
.y88{bottom:145.840322px;}
.yca{bottom:147.684997px;}
.y105{bottom:147.686940px;}
.y14d{bottom:148.369913px;}
.y71{bottom:148.396800px;}
.yc{bottom:150.235500px;}
.y87{bottom:161.979842px;}
.y2d{bottom:162.004565px;}
.yf1{bottom:162.623854px;}
.y14c{bottom:163.313850px;}
.yc9{bottom:165.617677px;}
.y11d{bottom:172.144532px;}
.y86{bottom:178.119362px;}
.y14b{bottom:178.257788px;}
.yf0{bottom:180.556534px;}
.y2c{bottom:181.515150px;}
.yc8{bottom:183.550357px;}
.y104{bottom:183.552300px;}
.y11c{bottom:190.077212px;}
.y14a{bottom:193.201725px;}
.y85{bottom:194.258882px;}
.yef{bottom:198.489214px;}
.yc7{bottom:201.483037px;}
.y11b{bottom:208.009892px;}
.y149{bottom:208.145663px;}
.yee{bottom:216.421894px;}
.yc6{bottom:219.415717px;}
.y84{bottom:220.566300px;}
.y148{bottom:223.089600px;}
.y11a{bottom:225.942572px;}
.y2b{bottom:226.602552px;}
.yc5{bottom:237.348397px;}
.y103{bottom:237.529800px;}
.y147{bottom:238.033538px;}
.y70{bottom:242.863241px;}
.y119{bottom:243.875252px;}
.y2a{bottom:244.535232px;}
.yed{bottom:252.287254px;}
.y146{bottom:252.977475px;}
.yc4{bottom:255.281077px;}
.y118{bottom:261.807932px;}
.y29{bottom:262.467912px;}
.y102{bottom:266.520300px;}
.y145{bottom:267.921413px;}
.y26{bottom:269.937136px;}
.y6f{bottom:269.937286px;}
.yec{bottom:270.219934px;}
.yc3{bottom:273.213757px;}
.y117{bottom:279.740612px;}
.y144{bottom:282.865350px;}
.y83{bottom:284.038800px;}
.y25{bottom:286.076656px;}
.y6e{bottom:286.076806px;}
.yeb{bottom:288.152614px;}
.yc2{bottom:291.146437px;}
.y116{bottom:297.673292px;}
.y143{bottom:297.809288px;}
.y28{bottom:298.632150px;}
.y24{bottom:302.216176px;}
.y6d{bottom:302.216326px;}
.y82{bottom:303.609300px;}
.yea{bottom:306.085294px;}
.yc1{bottom:309.079117px;}
.y142{bottom:312.753225px;}
.y115{bottom:315.605972px;}
.ye9{bottom:324.017974px;}
.yc0{bottom:327.011797px;}
.y141{bottom:327.697163px;}
.y114{bottom:333.538652px;}
.y23{bottom:336.284012px;}
.y6c{bottom:336.284162px;}
.y81{bottom:337.670100px;}
.ye8{bottom:341.950654px;}
.y140{bottom:342.641100px;}
.ybf{bottom:344.944477px;}
.y113{bottom:351.471332px;}
.y22{bottom:352.423532px;}
.y6b{bottom:352.423682px;}
.ybe{bottom:362.877157px;}
.y80{bottom:368.155800px;}
.y21{bottom:368.563052px;}
.y6a{bottom:368.563202px;}
.y112{bottom:369.404012px;}
.y13f{bottom:375.816600px;}
.ybd{bottom:380.809837px;}
.ye7{bottom:383.957957px;}
.y20{bottom:384.702572px;}
.y69{bottom:384.702722px;}
.y111{bottom:387.336692px;}
.y27{bottom:393.105000px;}
.ybc{bottom:398.742517px;}
.y1f{bottom:400.842092px;}
.y68{bottom:400.842242px;}
.ye6{bottom:401.890637px;}
.y7f{bottom:405.060422px;}
.y110{bottom:405.269372px;}
.ybb{bottom:416.675197px;}
.y1e{bottom:416.981612px;}
.y67{bottom:416.981762px;}
.yb{bottom:419.300850px;}
.ye5{bottom:419.823317px;}
.y13e{bottom:420.651689px;}
.y7e{bottom:422.993222px;}
.y10f{bottom:423.202052px;}
.y1d{bottom:433.121132px;}
.y66{bottom:433.121282px;}
.ya{bottom:434.300850px;}
.yba{bottom:434.607877px;}
.y13d{bottom:437.087100px;}
.ye4{bottom:437.755997px;}
.y7d{bottom:443.920800px;}
.y1c{bottom:449.260652px;}
.y65{bottom:449.260802px;}
.y9{bottom:449.300850px;}
.yb9{bottom:452.540557px;}
.ye3{bottom:455.688677px;}
.y31{bottom:457.795500px;}
.y10e{bottom:459.366290px;}
.y1b{bottom:465.400172px;}
.y64{bottom:465.400322px;}
.yb8{bottom:470.473237px;}
.y13c{bottom:471.756600px;}
.y48{bottom:474.519512px;}
.y1a{bottom:481.539692px;}
.y63{bottom:481.539842px;}
.yb7{bottom:488.405917px;}
.y47{bottom:490.659032px;}
.ye2{bottom:491.554037px;}
.y34{bottom:495.096842px;}
.y7c{bottom:495.096992px;}
.y19{bottom:497.679212px;}
.y62{bottom:497.679362px;}
.y10d{bottom:506.305080px;}
.y46{bottom:506.798552px;}
.y33{bottom:509.275650px;}
.y7b{bottom:509.275800px;}
.ye1{bottom:509.486717px;}
.y18{bottom:513.818732px;}
.y61{bottom:513.818882px;}
.y13b{bottom:516.624016px;}
.y45{bottom:522.938072px;}
.y10c{bottom:524.237760px;}
.yb6{bottom:524.570155px;}
.ye0{bottom:527.419397px;}
.y13a{bottom:533.059427px;}
.y44{bottom:539.077592px;}
.y17{bottom:540.126150px;}
.y60{bottom:540.126300px;}
.y10b{bottom:542.170440px;}
.ydf{bottom:545.352077px;}
.y139{bottom:549.494838px;}
.y43{bottom:555.217112px;}
.yde{bottom:563.284757px;}
.y138{bottom:565.930249px;}
.y42{bottom:571.356632px;}
.y10a{bottom:578.035800px;}
.ydd{bottom:581.217437px;}
.y137{bottom:582.365660px;}
.y41{bottom:587.496152px;}
.y32{bottom:590.229150px;}
.y7a{bottom:590.229300px;}
.yb5{bottom:597.586050px;}
.y136{bottom:598.801072px;}
.ydc{bottom:599.150117px;}
.y16{bottom:603.598650px;}
.y5f{bottom:603.598800px;}
.y40{bottom:603.635672px;}
.y135{bottom:615.236483px;}
.yb4{bottom:615.518730px;}
.ydb{bottom:617.082797px;}
.y3f{bottom:619.775192px;}
.y15{bottom:623.169150px;}
.y134{bottom:631.671894px;}
.yb3{bottom:633.451410px;}
.yda{bottom:635.015477px;}
.y109{bottom:635.881800px;}
.y3e{bottom:635.914712px;}
.y133{bottom:648.107305px;}
.yb2{bottom:651.384090px;}
.y3d{bottom:652.054232px;}
.yd9{bottom:652.948157px;}
.y14{bottom:657.229950px;}
.y5e{bottom:657.230100px;}
.y132{bottom:664.542716px;}
.y107{bottom:664.873800px;}
.yb1{bottom:669.316770px;}
.yd8{bottom:670.880837px;}
.y108{bottom:675.996300px;}
.y3c{bottom:678.361650px;}
.y131{bottom:680.978128px;}
.yb0{bottom:687.249450px;}
.y13{bottom:687.715650px;}
.y5d{bottom:687.715800px;}
.yd7{bottom:688.813517px;}
.y130{bottom:697.413539px;}
.yaf{bottom:705.182130px;}
.y101{bottom:705.514710px;}
.y12f{bottom:713.848950px;}
.yae{bottom:723.114810px;}
.y100{bottom:723.447390px;}
.y12{bottom:724.620272px;}
.y5c{bottom:724.620422px;}
.yd6{bottom:730.820820px;}
.yad{bottom:741.047490px;}
.yff{bottom:741.380070px;}
.y3b{bottom:741.834150px;}
.y11{bottom:742.553072px;}
.y5b{bottom:742.553222px;}
.y12e{bottom:748.518450px;}
.yd5{bottom:748.758182px;}
.yac{bottom:758.980170px;}
.yfe{bottom:759.312750px;}
.y3a{bottom:761.404650px;}
.y10{bottom:763.480650px;}
.y5a{bottom:763.480800px;}
.yd4{bottom:766.690862px;}
.yab{bottom:776.912850px;}
.yfd{bottom:777.245430px;}
.yd3{bottom:784.623542px;}
.y12d{bottom:793.373360px;}
.yaa{bottom:794.845530px;}
.yfc{bottom:795.178110px;}
.y39{bottom:795.465450px;}
.yd2{bottom:802.556222px;}
.y12c{bottom:809.808772px;}
.ya9{bottom:812.778210px;}
.yfb{bottom:813.110790px;}
.yf{bottom:814.656842px;}
.y59{bottom:814.656992px;}
.yd1{bottom:820.488902px;}
.y38{bottom:825.951150px;}
.y12b{bottom:826.244183px;}
.ye{bottom:828.835650px;}
.y58{bottom:828.835800px;}
.ya8{bottom:830.710890px;}
.yd0{bottom:838.421582px;}
.y12a{bottom:842.679594px;}
.ya7{bottom:848.643570px;}
.yfa{bottom:848.976150px;}
.ycf{bottom:856.354262px;}
.y129{bottom:859.115005px;}
.y37{bottom:862.855772px;}
.ya6{bottom:866.576250px;}
.y36{bottom:880.788572px;}
.yf9{bottom:884.209692px;}
.ya5{bottom:884.508930px;}
.y128{bottom:884.521300px;}
.yce{bottom:892.518500px;}
.y127{bottom:900.956711px;}
.y35{bottom:901.716150px;}
.yf8{bottom:902.142372px;}
.ya4{bottom:902.441610px;}
.yd{bottom:909.789150px;}
.y57{bottom:909.789300px;}
.y126{bottom:917.392122px;}
.yf7{bottom:920.075052px;}
.ya3{bottom:920.374290px;}
.yf6{bottom:938.007732px;}
.ya2{bottom:938.306970px;}
.y125{bottom:942.798416px;}
.yf5{bottom:955.940412px;}
.ya1{bottom:956.239290px;}
.y124{bottom:959.233828px;}
.y3{bottom:961.130850px;}
.ya0{bottom:974.171970px;}
.y123{bottom:975.669239px;}
.y1{bottom:988.999500px;}
.y9f{bottom:992.104650px;}
.y9e{bottom:1021.993800px;}
.y2{bottom:1033.378950px;}
.y56{bottom:1035.561750px;}
.h13{height:16.139520px;}
.hd{height:24.603802px;}
.h19{height:24.675533px;}
.h20{height:28.787846px;}
.h9{height:32.900573px;}
.h22{height:33.187496px;}
.h4{height:33.328125px;}
.h1e{height:34.589846px;}
.h5{height:36.000000px;}
.h10{height:36.905702px;}
.hf{height:37.013299px;}
.he{height:37.228493px;}
.h8{height:37.257732px;}
.h6{height:37.494141px;}
.h3{height:38.664000px;}
.h1d{height:41.006062px;}
.h12{height:41.125613px;}
.h11{height:41.364715px;}
.h21{height:48.149568px;}
.ha{height:49.351066px;}
.h1a{height:50.465117px;}
.h18{height:50.485286px;}
.h1c{height:50.489678px;}
.h17{height:54.216469px;}
.hc{height:65.630448px;}
.h15{height:65.631048px;}
.hb{height:69.913872px;}
.h2{height:74.646000px;}
.h7{height:261.448500px;}
.h14{height:472.629000px;}
.h1b{height:1009.843500px;}
.h16{height:1012.912500px;}
.h1f{height:1014.094500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w6{width:1.500000px;}
.w3{width:3.000000px;}
.w5{width:4.500000px;}
.w7{width:811.878000px;}
.w2{width:813.378000px;}
.w4{width:814.878000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x34{left:-759.601680px;}
.x23{left:-758.102850px;}
.x22{left:-754.752000px;}
.x37{left:-751.382850px;}
.x26{left:-749.623500px;}
.x1d{left:-748.597500px;}
.x24{left:-744.653250px;}
.x33{left:-741.669000px;}
.x25{left:-740.170170px;}
.x35{left:-737.146872px;}
.x36{left:-722.247804px;}
.x4a{left:-720.739608px;}
.x49{left:-715.965000px;}
.x21{left:-635.672202px;}
.x46{left:-614.338500px;}
.x20{left:-609.454500px;}
.x48{left:-587.059500px;}
.x1e{left:-585.749743px;}
.x32{left:-573.550350px;}
.x45{left:-572.050350px;}
.x1a{left:-550.569000px;}
.x1b{left:-544.866000px;}
.x1f{left:-543.697327px;}
.x47{left:-406.546350px;}
.x1c{left:-228.341449px;}
.x0{left:0.000000px;}
.x2b{left:1.500000px;}
.x6{left:3.000000px;}
.x4e{left:52.268880px;}
.x5{left:56.125950px;}
.x38{left:57.225000px;}
.x4{left:58.401900px;}
.x16{left:61.626000px;}
.x19{left:63.754500px;}
.xa{left:64.780500px;}
.x11{left:66.754500px;}
.xf{left:68.724600px;}
.x29{left:69.943500px;}
.x17{left:71.724600px;}
.x18{left:73.207680px;}
.x2d{left:74.709000px;}
.x10{left:76.207680px;}
.x27{left:79.657680px;}
.x44{left:82.646174px;}
.x3e{left:92.638392px;}
.x2e{left:94.130196px;}
.x4d{left:96.088973px;}
.x3d{left:97.413000px;}
.x42{left:99.088973px;}
.x4b{left:100.218000px;}
.x43{left:102.034435px;}
.x40{left:103.218000px;}
.xe{left:177.705648px;}
.x15{left:180.705648px;}
.x3a{left:199.039500px;}
.x2a{left:201.647851px;}
.xd{left:203.923350px;}
.x14{left:206.923350px;}
.x30{left:211.092000px;}
.x3c{left:226.318500px;}
.xb{left:227.628257px;}
.x12{left:230.628257px;}
.x2{left:236.123100px;}
.x2c{left:241.327500px;}
.x39{left:247.599000px;}
.x31{left:252.099000px;}
.x3{left:254.268750px;}
.x7{left:262.809000px;}
.x8{left:268.512000px;}
.xc{left:269.680673px;}
.x13{left:272.680673px;}
.x1{left:292.179600px;}
.x4c{left:293.556000px;}
.x41{left:296.556000px;}
.x28{left:311.885886px;}
.x3b{left:406.831500px;}
.x9{left:585.036551px;}
.x2f{left:811.878000px;}
.x3f{left:813.378000px;}
@media print{
.v3{vertical-align:-25.072000pt;}
.v4{vertical-align:-15.434667pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.157333pt;}
.v8{vertical-align:9.994547pt;}
.v5{vertical-align:11.636317pt;}
.v6{vertical-align:19.286613pt;}
.v2{vertical-align:25.072000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls1{letter-spacing:2.654379pt;}
.ls9{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626800pt;}
.ls3{letter-spacing:11.955200pt;}
.lsf{letter-spacing:12.592726pt;}
.lsa{letter-spacing:13.283467pt;}
.ls13{letter-spacing:13.820211pt;}
.ls12{letter-spacing:14.080475pt;}
.ls10{letter-spacing:18.597867pt;}
.lsb{letter-spacing:18.598400pt;}
.ls4{letter-spacing:18.600269pt;}
.lsc{letter-spacing:18.731200pt;}
.ls11{letter-spacing:23.611200pt;}
.lse{letter-spacing:23.611733pt;}
.lsd{letter-spacing:26.566933pt;}
.ls8{letter-spacing:661.539554pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws43{word-spacing:-10.666667pt;}
.ws20{word-spacing:-0.853333pt;}
.ws0{word-spacing:-0.088000pt;}
.ws26{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.048352pt;}
.ws18{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws67{word-spacing:8.033818pt;}
.ws63{word-spacing:9.261206pt;}
.ws7e{word-spacing:10.090189pt;}
.ws59{word-spacing:10.148569pt;}
.ws55{word-spacing:10.201702pt;}
.ws73{word-spacing:10.233651pt;}
.ws74{word-spacing:10.424934pt;}
.ws6{word-spacing:10.584293pt;}
.ws49{word-spacing:10.892443pt;}
.ws14{word-spacing:11.190067pt;}
.ws7d{word-spacing:11.524813pt;}
.ws70{word-spacing:11.620454pt;}
.ws44{word-spacing:11.636317pt;}
.ws36{word-spacing:11.689451pt;}
.ws16{word-spacing:11.716096pt;}
.ws66{word-spacing:11.742585pt;}
.wsd{word-spacing:11.763917pt;}
.ws83{word-spacing:11.817002pt;}
.ws6d{word-spacing:11.848852pt;}
.ws84{word-spacing:11.859509pt;}
.ws7b{word-spacing:11.859558pt;}
.ws35{word-spacing:11.901986pt;}
.ws17{word-spacing:11.907379pt;}
.wsf{word-spacing:12.003021pt;}
.ws21{word-spacing:12.050842pt;}
.ws52{word-spacing:12.114522pt;}
.ws62{word-spacing:12.486459pt;}
.ws5{word-spacing:12.583925pt;}
.ws27{word-spacing:12.645860pt;}
.ws5c{word-spacing:12.698994pt;}
.ws23{word-spacing:12.752128pt;}
.ws79{word-spacing:12.768154pt;}
.ws41{word-spacing:12.911530pt;}
.ws7c{word-spacing:12.911616pt;}
.wsc{word-spacing:13.055078pt;}
.ws40{word-spacing:13.124065pt;}
.ws75{word-spacing:13.150720pt;}
.ws2a{word-spacing:13.177199pt;}
.ws24{word-spacing:13.230333pt;}
.ws31{word-spacing:13.235646pt;}
.ws45{word-spacing:13.336601pt;}
.ws4d{word-spacing:13.389734pt;}
.ws71{word-spacing:13.533286pt;}
.ws1b{word-spacing:13.549136pt;}
.ws56{word-spacing:13.602270pt;}
.ws60{word-spacing:13.655404pt;}
.ws61{word-spacing:13.708538pt;}
.ws29{word-spacing:13.761671pt;}
.ws77{word-spacing:13.772390pt;}
.ws5a{word-spacing:13.814805pt;}
.ws3e{word-spacing:13.867939pt;}
.ws64{word-spacing:13.921073pt;}
.ws30{word-spacing:13.974207pt;}
.ws68{word-spacing:14.027341pt;}
.ws5b{word-spacing:14.133609pt;}
.ws12{word-spacing:14.202778pt;}
.ws5d{word-spacing:14.239876pt;}
.ws48{word-spacing:14.293010pt;}
.ws53{word-spacing:14.346144pt;}
.ws87{word-spacing:14.537462pt;}
.ws86{word-spacing:14.579970pt;}
.ws3b{word-spacing:14.611813pt;}
.ws72{word-spacing:14.633165pt;}
.ws3a{word-spacing:14.664947pt;}
.ws6f{word-spacing:14.680986pt;}
.ws3c{word-spacing:14.718081pt;}
.ws13{word-spacing:14.728806pt;}
.ws11{word-spacing:14.824448pt;}
.ws76{word-spacing:14.872269pt;}
.ws65{word-spacing:14.930617pt;}
.ws69{word-spacing:14.983750pt;}
.ws47{word-spacing:15.036884pt;}
.ws42{word-spacing:15.090018pt;}
.ws28{word-spacing:15.196286pt;}
.ws4f{word-spacing:15.249420pt;}
.ws39{word-spacing:15.355687pt;}
.ws5f{word-spacing:15.403508pt;}
.ws5e{word-spacing:15.408821pt;}
.ws7a{word-spacing:15.446118pt;}
.ws4b{word-spacing:15.515089pt;}
.ws58{word-spacing:15.600142pt;}
.ws25{word-spacing:15.674491pt;}
.ws3d{word-spacing:15.780758pt;}
.ws8{word-spacing:15.876506pt;}
.ws33{word-spacing:15.887026pt;}
.ws81{word-spacing:15.897693pt;}
.ws10{word-spacing:15.972147pt;}
.ws4a{word-spacing:15.993294pt;}
.ws15{word-spacing:16.019968pt;}
.ws3f{word-spacing:16.099562pt;}
.ws4c{word-spacing:16.205829pt;}
.ws2c{word-spacing:16.312097pt;}
.ws46{word-spacing:16.524633pt;}
.ws82{word-spacing:16.620315pt;}
.ws38{word-spacing:16.684034pt;}
.ws37{word-spacing:16.737168pt;}
.wse{word-spacing:16.785101pt;}
.ws2b{word-spacing:16.790302pt;}
.ws2d{word-spacing:16.896570pt;}
.ws6e{word-spacing:16.928563pt;}
.ws85{word-spacing:16.960373pt;}
.ws1c{word-spacing:17.055971pt;}
.wsa{word-spacing:17.199459pt;}
.ws2e{word-spacing:17.268507pt;}
.ws4e{word-spacing:17.693578pt;}
.ws50{word-spacing:17.799845pt;}
.ws6a{word-spacing:17.959247pt;}
.ws6c{word-spacing:18.012381pt;}
.ws1d{word-spacing:18.224916pt;}
.ws32{word-spacing:18.278050pt;}
.ws2f{word-spacing:18.437452pt;}
.ws6b{word-spacing:18.490586pt;}
.ws78{word-spacing:18.506650pt;}
.ws34{word-spacing:18.543719pt;}
.ws7f{word-spacing:18.554470pt;}
.ws57{word-spacing:19.181326pt;}
.ws51{word-spacing:21.094145pt;}
.ws54{word-spacing:21.200413pt;}
.ws9{word-spacing:22.491672pt;}
.ws22{word-spacing:22.533841pt;}
.ws1e{word-spacing:22.534374pt;}
.ws19{word-spacing:22.534908pt;}
.ws1a{word-spacing:26.513799pt;}
.ws80{word-spacing:26.524493pt;}
.ws3{word-spacing:1210.118933pt;}
._6{margin-left:-17.682995pt;}
._12{margin-left:-7.557117pt;}
._4{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._b{margin-left:-4.358193pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._3{width:1.642667pt;}
._17{width:2.648199pt;}
._5{width:4.223281pt;}
._9{width:9.752384pt;}
._c{width:12.243978pt;}
._d{width:13.559797pt;}
._14{width:15.302592pt;}
._10{width:16.629684pt;}
._16{width:19.170814pt;}
._a{width:26.566933pt;}
._19{width:27.502225pt;}
._13{width:32.750578pt;}
._15{width:35.173488pt;}
._18{width:36.196167pt;}
._8{width:397.396533pt;}
._11{width:478.345093pt;}
._f{width:661.667060pt;}
._e{width:668.856533pt;}
._7{width:732.856000pt;}
.fs9{font-size:31.880533pt;}
.fsc{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.429333pt;}
.fsa{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsb{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:69.074133pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.328000pt;}
.y55{bottom:-326.120215pt;}
.y9d{bottom:-326.120082pt;}
.y54{bottom:-312.836715pt;}
.y9c{bottom:-312.836582pt;}
.y53{bottom:-299.553215pt;}
.y9b{bottom:-299.553082pt;}
.y52{bottom:-273.591943pt;}
.y9a{bottom:-273.591809pt;}
.y51{bottom:-256.249200pt;}
.y99{bottom:-256.249067pt;}
.y50{bottom:-216.171509pt;}
.y98{bottom:-216.171376pt;}
.y4f{bottom:-200.231349pt;}
.y97{bottom:-200.231216pt;}
.y4e{bottom:-184.291189pt;}
.y96{bottom:-184.291056pt;}
.y4d{bottom:-152.145200pt;}
.y95{bottom:-152.145067pt;}
.y94{bottom:-68.174897pt;}
.y4c{bottom:-68.172964pt;}
.y93{bottom:-44.109079pt;}
.y4b{bottom:-44.107147pt;}
.y79{bottom:-42.066748pt;}
.y30{bottom:-42.060200pt;}
.y92{bottom:-29.762839pt;}
.y4a{bottom:-29.760907pt;}
.y78{bottom:-28.783248pt;}
.y2f{bottom:-28.776700pt;}
.y8{bottom:-28.346400pt;}
.y77{bottom:-15.499748pt;}
.y2e{bottom:-15.493200pt;}
.y91{bottom:-15.416599pt;}
.y49{bottom:-15.414667pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:10.461524pt;}
.y90{bottom:14.865922pt;}
.y75{bottom:27.804267pt;}
.y8f{bottom:29.212162pt;}
.y8e{bottom:43.558402pt;}
.y8d{bottom:57.904642pt;}
.y7{bottom:60.591867pt;}
.y74{bottom:67.881957pt;}
.ycd{bottom:71.045600pt;}
.yf4{bottom:71.046100pt;}
.y122{bottom:71.055249pt;}
.y8c{bottom:72.250882pt;}
.y6{bottom:72.591867pt;}
.ycc{bottom:74.902933pt;}
.y73{bottom:83.822117pt;}
.y5{bottom:84.591867pt;}
.y121{bottom:85.664503pt;}
.y8b{bottom:86.597122pt;}
.yf3{bottom:88.186933pt;}
.y150{bottom:92.033867pt;}
.y4{bottom:96.591867pt;}
.y72{bottom:99.762277pt;}
.y120{bottom:100.273758pt;}
.y8a{bottom:100.943362pt;}
.y14f{bottom:105.317367pt;}
.y11f{bottom:114.883012pt;}
.y89{bottom:115.289602pt;}
.ycb{bottom:115.335393pt;}
.y106{bottom:115.337120pt;}
.y14e{bottom:118.600867pt;}
.yf2{bottom:128.614377pt;}
.y11e{bottom:129.492267pt;}
.y88{bottom:129.635842pt;}
.yca{bottom:131.275553pt;}
.y105{bottom:131.277280pt;}
.y14d{bottom:131.884367pt;}
.y71{bottom:131.908267pt;}
.yc{bottom:133.542667pt;}
.y87{bottom:143.982082pt;}
.y2d{bottom:144.004057pt;}
.yf1{bottom:144.554537pt;}
.y14c{bottom:145.167867pt;}
.yc9{bottom:147.215713pt;}
.y11d{bottom:153.017362pt;}
.y86{bottom:158.328322pt;}
.y14b{bottom:158.451367pt;}
.yf0{bottom:160.494697pt;}
.y2c{bottom:161.346800pt;}
.yc8{bottom:163.155873pt;}
.y104{bottom:163.157600pt;}
.y11c{bottom:168.957522pt;}
.y14a{bottom:171.734867pt;}
.y85{bottom:172.674562pt;}
.yef{bottom:176.434857pt;}
.yc7{bottom:179.096033pt;}
.y11b{bottom:184.897682pt;}
.y149{bottom:185.018367pt;}
.yee{bottom:192.375017pt;}
.yc6{bottom:195.036193pt;}
.y84{bottom:196.058933pt;}
.y148{bottom:198.301867pt;}
.y11a{bottom:200.837842pt;}
.y2b{bottom:201.424491pt;}
.yc5{bottom:210.976353pt;}
.y103{bottom:211.137600pt;}
.y147{bottom:211.585367pt;}
.y70{bottom:215.878436pt;}
.y119{bottom:216.778002pt;}
.y2a{bottom:217.364651pt;}
.yed{bottom:224.255337pt;}
.y146{bottom:224.868867pt;}
.yc4{bottom:226.916513pt;}
.y118{bottom:232.718162pt;}
.y29{bottom:233.304811pt;}
.y102{bottom:236.906933pt;}
.y145{bottom:238.152367pt;}
.y26{bottom:239.944121pt;}
.y6f{bottom:239.944254pt;}
.yec{bottom:240.195497pt;}
.yc3{bottom:242.856673pt;}
.y117{bottom:248.658322pt;}
.y144{bottom:251.435867pt;}
.y83{bottom:252.478933pt;}
.y25{bottom:254.290361pt;}
.y6e{bottom:254.290494pt;}
.yeb{bottom:256.135657pt;}
.yc2{bottom:258.796833pt;}
.y116{bottom:264.598482pt;}
.y143{bottom:264.719367pt;}
.y28{bottom:265.450800pt;}
.y24{bottom:268.636601pt;}
.y6d{bottom:268.636734pt;}
.y82{bottom:269.874933pt;}
.yea{bottom:272.075817pt;}
.yc1{bottom:274.736993pt;}
.y142{bottom:278.002867pt;}
.y115{bottom:280.538642pt;}
.ye9{bottom:288.015977pt;}
.yc0{bottom:290.677153pt;}
.y141{bottom:291.286367pt;}
.y114{bottom:296.478802pt;}
.y23{bottom:298.919122pt;}
.y6c{bottom:298.919255pt;}
.y81{bottom:300.151200pt;}
.ye8{bottom:303.956137pt;}
.y140{bottom:304.569867pt;}
.ybf{bottom:306.617313pt;}
.y113{bottom:312.418962pt;}
.y22{bottom:313.265362pt;}
.y6b{bottom:313.265495pt;}
.ybe{bottom:322.557473pt;}
.y80{bottom:327.249600pt;}
.y21{bottom:327.611602pt;}
.y6a{bottom:327.611735pt;}
.y112{bottom:328.359122pt;}
.y13f{bottom:334.059200pt;}
.ybd{bottom:338.497633pt;}
.ye7{bottom:341.295962pt;}
.y20{bottom:341.957842pt;}
.y69{bottom:341.957975pt;}
.y111{bottom:344.299282pt;}
.y27{bottom:349.426667pt;}
.ybc{bottom:354.437793pt;}
.y1f{bottom:356.304082pt;}
.y68{bottom:356.304215pt;}
.ye6{bottom:357.236122pt;}
.y7f{bottom:360.053709pt;}
.y110{bottom:360.239442pt;}
.ybb{bottom:370.377953pt;}
.y1e{bottom:370.650322pt;}
.y67{bottom:370.650455pt;}
.yb{bottom:372.711867pt;}
.ye5{bottom:373.176282pt;}
.y13e{bottom:373.912612pt;}
.y7e{bottom:375.993975pt;}
.y10f{bottom:376.179602pt;}
.y1d{bottom:384.996562pt;}
.y66{bottom:384.996695pt;}
.ya{bottom:386.045200pt;}
.yba{bottom:386.318113pt;}
.y13d{bottom:388.521867pt;}
.ye4{bottom:389.116442pt;}
.y7d{bottom:394.596267pt;}
.y1c{bottom:399.342802pt;}
.y65{bottom:399.342935pt;}
.y9{bottom:399.378533pt;}
.yb9{bottom:402.258273pt;}
.ye3{bottom:405.056602pt;}
.y31{bottom:406.929333pt;}
.y10e{bottom:408.325591pt;}
.y1b{bottom:413.689042pt;}
.y64{bottom:413.689175pt;}
.yb8{bottom:418.198433pt;}
.y13c{bottom:419.339200pt;}
.y48{bottom:421.795122pt;}
.y1a{bottom:428.035282pt;}
.y63{bottom:428.035415pt;}
.yb7{bottom:434.138593pt;}
.y47{bottom:436.141362pt;}
.ye2{bottom:436.936922pt;}
.y34{bottom:440.086082pt;}
.y7c{bottom:440.086215pt;}
.y19{bottom:442.381522pt;}
.y62{bottom:442.381655pt;}
.y10d{bottom:450.048960pt;}
.y46{bottom:450.487602pt;}
.y33{bottom:452.689467pt;}
.y7b{bottom:452.689600pt;}
.ye1{bottom:452.877082pt;}
.y18{bottom:456.727762pt;}
.y61{bottom:456.727895pt;}
.y13b{bottom:459.221347pt;}
.y45{bottom:464.833842pt;}
.y10c{bottom:465.989120pt;}
.yb6{bottom:466.284582pt;}
.ye0{bottom:468.817242pt;}
.y13a{bottom:473.830602pt;}
.y44{bottom:479.180082pt;}
.y17{bottom:480.112133pt;}
.y60{bottom:480.112267pt;}
.y10b{bottom:481.929280pt;}
.ydf{bottom:484.757402pt;}
.y139{bottom:488.439856pt;}
.y43{bottom:493.526322pt;}
.yde{bottom:500.697562pt;}
.y138{bottom:503.049110pt;}
.y42{bottom:507.872562pt;}
.y10a{bottom:513.809600pt;}
.ydd{bottom:516.637722pt;}
.y137{bottom:517.658365pt;}
.y41{bottom:522.218802pt;}
.y32{bottom:524.648133pt;}
.y7a{bottom:524.648267pt;}
.yb5{bottom:531.187600pt;}
.y136{bottom:532.267619pt;}
.ydc{bottom:532.577882pt;}
.y16{bottom:536.532133pt;}
.y5f{bottom:536.532267pt;}
.y40{bottom:536.565042pt;}
.y135{bottom:546.876874pt;}
.yb4{bottom:547.127760pt;}
.ydb{bottom:548.518042pt;}
.y3f{bottom:550.911282pt;}
.y15{bottom:553.928133pt;}
.y134{bottom:561.486128pt;}
.yb3{bottom:563.067920pt;}
.yda{bottom:564.458202pt;}
.y109{bottom:565.228267pt;}
.y3e{bottom:565.257522pt;}
.y133{bottom:576.095382pt;}
.yb2{bottom:579.008080pt;}
.y3d{bottom:579.603762pt;}
.yd9{bottom:580.398362pt;}
.y14{bottom:584.204400pt;}
.y5e{bottom:584.204533pt;}
.y132{bottom:590.704637pt;}
.y107{bottom:590.998933pt;}
.yb1{bottom:594.948240pt;}
.yd8{bottom:596.338522pt;}
.y108{bottom:600.885600pt;}
.y3c{bottom:602.988133pt;}
.y131{bottom:605.313891pt;}
.yb0{bottom:610.888400pt;}
.y13{bottom:611.302800pt;}
.y5d{bottom:611.302933pt;}
.yd7{bottom:612.278682pt;}
.y130{bottom:619.923146pt;}
.yaf{bottom:626.828560pt;}
.y101{bottom:627.124187pt;}
.y12f{bottom:634.532400pt;}
.yae{bottom:642.768720pt;}
.y100{bottom:643.064347pt;}
.y12{bottom:644.106909pt;}
.y5c{bottom:644.107042pt;}
.yd6{bottom:649.618507pt;}
.yad{bottom:658.708880pt;}
.yff{bottom:659.004507pt;}
.y3b{bottom:659.408133pt;}
.y11{bottom:660.047175pt;}
.y5b{bottom:660.047309pt;}
.y12e{bottom:665.349733pt;}
.yd5{bottom:665.562829pt;}
.yac{bottom:674.649040pt;}
.yfe{bottom:674.944667pt;}
.y3a{bottom:676.804133pt;}
.y10{bottom:678.649467pt;}
.y5a{bottom:678.649600pt;}
.yd4{bottom:681.502989pt;}
.yab{bottom:690.589200pt;}
.yfd{bottom:690.884827pt;}
.yd3{bottom:697.443149pt;}
.y12d{bottom:705.220765pt;}
.yaa{bottom:706.529360pt;}
.yfc{bottom:706.824987pt;}
.y39{bottom:707.080400pt;}
.yd2{bottom:713.383309pt;}
.y12c{bottom:719.830019pt;}
.ya9{bottom:722.469520pt;}
.yfb{bottom:722.765147pt;}
.yf{bottom:724.139415pt;}
.y59{bottom:724.139549pt;}
.yd1{bottom:729.323469pt;}
.y38{bottom:734.178800pt;}
.y12b{bottom:734.439274pt;}
.ye{bottom:736.742800pt;}
.y58{bottom:736.742933pt;}
.ya8{bottom:738.409680pt;}
.yd0{bottom:745.263629pt;}
.y12a{bottom:749.048528pt;}
.ya7{bottom:754.349840pt;}
.yfa{bottom:754.645467pt;}
.ycf{bottom:761.203789pt;}
.y129{bottom:763.657782pt;}
.y37{bottom:766.982909pt;}
.ya6{bottom:770.290000pt;}
.y36{bottom:782.923175pt;}
.yf9{bottom:785.964171pt;}
.ya5{bottom:786.230160pt;}
.y128{bottom:786.241155pt;}
.yce{bottom:793.349778pt;}
.y127{bottom:800.850410pt;}
.y35{bottom:801.525467pt;}
.yf8{bottom:801.904331pt;}
.ya4{bottom:802.170320pt;}
.yd{bottom:808.701467pt;}
.y57{bottom:808.701600pt;}
.y126{bottom:815.459664pt;}
.yf7{bottom:817.844491pt;}
.ya3{bottom:818.110480pt;}
.yf6{bottom:833.784651pt;}
.ya2{bottom:834.050640pt;}
.y125{bottom:838.043037pt;}
.yf5{bottom:849.724811pt;}
.ya1{bottom:849.990480pt;}
.y124{bottom:852.652291pt;}
.y3{bottom:854.338533pt;}
.ya0{bottom:865.930640pt;}
.y123{bottom:867.261546pt;}
.y1{bottom:879.110667pt;}
.y9f{bottom:881.870800pt;}
.y9e{bottom:908.438933pt;}
.y2{bottom:918.559067pt;}
.y56{bottom:920.499333pt;}
.h13{height:14.346240pt;}
.hd{height:21.870046pt;}
.h19{height:21.933807pt;}
.h20{height:25.589197pt;}
.h9{height:29.244954pt;}
.h22{height:29.499997pt;}
.h4{height:29.625000pt;}
.h1e{height:30.746530pt;}
.h5{height:32.000000pt;}
.h10{height:32.805069pt;}
.hf{height:32.900710pt;}
.he{height:33.091994pt;}
.h8{height:33.117984pt;}
.h6{height:33.328125pt;}
.h3{height:34.368000pt;}
.h1d{height:36.449833pt;}
.h12{height:36.556100pt;}
.h11{height:36.768636pt;}
.h21{height:42.799616pt;}
.ha{height:43.867614pt;}
.h1a{height:44.857882pt;}
.h18{height:44.875810pt;}
.h1c{height:44.879714pt;}
.h17{height:48.192417pt;}
.hc{height:58.338176pt;}
.h15{height:58.338709pt;}
.hb{height:62.145664pt;}
.h2{height:66.352000pt;}
.h7{height:232.398667pt;}
.h14{height:420.114667pt;}
.h1b{height:897.638667pt;}
.h16{height:900.366667pt;}
.h1f{height:901.417333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w6{width:1.333333pt;}
.w3{width:2.666667pt;}
.w5{width:4.000000pt;}
.w7{width:721.669333pt;}
.w2{width:723.002667pt;}
.w4{width:724.336000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x34{left:-675.201493pt;}
.x23{left:-673.869200pt;}
.x22{left:-670.890667pt;}
.x37{left:-667.895867pt;}
.x26{left:-666.332000pt;}
.x1d{left:-665.420000pt;}
.x24{left:-661.914000pt;}
.x33{left:-659.261333pt;}
.x25{left:-657.929040pt;}
.x35{left:-655.241664pt;}
.x36{left:-641.998048pt;}
.x4a{left:-640.657429pt;}
.x49{left:-636.413333pt;}
.x21{left:-565.041957pt;}
.x46{left:-546.078667pt;}
.x20{left:-541.737333pt;}
.x48{left:-521.830667pt;}
.x1e{left:-520.666438pt;}
.x32{left:-509.822533pt;}
.x45{left:-508.489200pt;}
.x1a{left:-489.394667pt;}
.x1b{left:-484.325333pt;}
.x1f{left:-483.286513pt;}
.x47{left:-361.374533pt;}
.x1c{left:-202.970177pt;}
.x0{left:0.000000pt;}
.x2b{left:1.333333pt;}
.x6{left:2.666667pt;}
.x4e{left:46.461227pt;}
.x5{left:49.889733pt;}
.x38{left:50.866667pt;}
.x4{left:51.912800pt;}
.x16{left:54.778667pt;}
.x19{left:56.670667pt;}
.xa{left:57.582667pt;}
.x11{left:59.337333pt;}
.xf{left:61.088533pt;}
.x29{left:62.172000pt;}
.x17{left:63.755200pt;}
.x18{left:65.073493pt;}
.x2d{left:66.408000pt;}
.x10{left:67.740160pt;}
.x27{left:70.806827pt;}
.x44{left:73.463265pt;}
.x3e{left:82.345237pt;}
.x2e{left:83.671286pt;}
.x4d{left:85.412420pt;}
.x3d{left:86.589333pt;}
.x42{left:88.079087pt;}
.x4b{left:89.082667pt;}
.x43{left:90.697276pt;}
.x40{left:91.749333pt;}
.xe{left:157.960576pt;}
.x15{left:160.627243pt;}
.x3a{left:176.924000pt;}
.x2a{left:179.242534pt;}
.xd{left:181.265200pt;}
.x14{left:183.931867pt;}
.x30{left:187.637333pt;}
.x3c{left:201.172000pt;}
.xb{left:202.336228pt;}
.x12{left:205.002895pt;}
.x2{left:209.887200pt;}
.x2c{left:214.513333pt;}
.x39{left:220.088000pt;}
.x31{left:224.088000pt;}
.x3{left:226.016667pt;}
.x7{left:233.608000pt;}
.x8{left:238.677333pt;}
.xc{left:239.716154pt;}
.x13{left:242.382820pt;}
.x1{left:259.715200pt;}
.x4c{left:260.938667pt;}
.x41{left:263.605333pt;}
.x28{left:277.231899pt;}
.x3b{left:361.628000pt;}
.x9{left:520.032490pt;}
.x2f{left:721.669333pt;}
.x3f{left:723.002667pt;}
}


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