
/* 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_f4dbb26492dc.woff")format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_85e6207fe5c8.woff")format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_5db2aa10cd0e.woff")format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_1d88a2da5211.woff")format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_765652cf893c.woff")format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_d12813e41b79.woff")format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_98eb876c2035.woff")format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_ece6ce0395c3.woff")format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_03d99836d346.woff")format("woff");}.ff9{font-family:ff9;line-height:0.804000;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_994dc2c7ea4b.woff")format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_570cd57afeca.woff")format("woff");}.ffb{font-family:ffb;line-height:0.258000;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_b630e2295d0f.woff")format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_987764b3170a.woff")format("woff");}.ffd{font-family:ffd;line-height:0.712000;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_cfb42790965f.woff")format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_1198ba29fa8b.woff")format("woff");}.fff{font-family:fff;line-height:0.715000;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_713c1b5c6595.woff")format("woff");}.ff10{font-family:ff10;line-height:0.712000;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_b438ce765ce9.woff")format("woff");}.ff11{font-family:ff11;line-height:0.711000;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_e518c608f599.woff")format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-17.849995px;}
.v7{vertical-align:-10.835744px;}
.v8{vertical-align:-8.100220px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.849995px;}
.v3{vertical-align:18.899963px;}
.v2{vertical-align:21.000000px;}
.ls6f{letter-spacing:-1.215000px;}
.ls53{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-1.026000px;}
.ls64{letter-spacing:-0.900000px;}
.ls68{letter-spacing:-0.810000px;}
.ls66{letter-spacing:-0.765000px;}
.ls65{letter-spacing:-0.540000px;}
.ls6d{letter-spacing:-0.405000px;}
.ls35{letter-spacing:-0.378000px;}
.ls67{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.324000px;}
.ls59{letter-spacing:-0.315000px;}
.ls2b{letter-spacing:-0.270000px;}
.ls4a{letter-spacing:-0.245700px;}
.ls55{letter-spacing:-0.225000px;}
.ls27{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.210600px;}
.ls56{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.175500px;}
.ls34{letter-spacing:-0.162000px;}
.ls38{letter-spacing:-0.140400px;}
.ls5a{letter-spacing:-0.135000px;}
.ls32{letter-spacing:-0.108000px;}
.ls45{letter-spacing:-0.105300px;}
.ls57{letter-spacing:-0.090000px;}
.ls36{letter-spacing:-0.070200px;}
.ls28{letter-spacing:-0.054000px;}
.ls58{letter-spacing:-0.045000px;}
.ls23{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013770px;}
.ls3{letter-spacing:0.013772px;}
.ls22{letter-spacing:0.018028px;}
.ls1{letter-spacing:0.026971px;}
.ls16{letter-spacing:0.035100px;}
.ls50{letter-spacing:0.045000px;}
.ls17{letter-spacing:0.054000px;}
.ls5f{letter-spacing:0.067500px;}
.ls26{letter-spacing:0.070200px;}
.lse{letter-spacing:0.076805px;}
.ls9{letter-spacing:0.087791px;}
.ls4f{letter-spacing:0.090000px;}
.ls37{letter-spacing:0.105300px;}
.ls13{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.126659px;}
.lsf{letter-spacing:0.126714px;}
.ls51{letter-spacing:0.135000px;}
.ls1c{letter-spacing:0.135032px;}
.ls15{letter-spacing:0.157950px;}
.ls14{letter-spacing:0.158836px;}
.lsa{letter-spacing:0.159019px;}
.ls1e{letter-spacing:0.159568px;}
.ls39{letter-spacing:0.159751px;}
.ls25{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.175500px;}
.ls54{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.191429px;}
.ls47{letter-spacing:0.193050px;}
.ls4d{letter-spacing:0.202500px;}
.ls46{letter-spacing:0.210600px;}
.ls6{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.225000px;}
.ls12{letter-spacing:0.233909px;}
.ls10{letter-spacing:0.243000px;}
.ls42{letter-spacing:0.245700px;}
.ls4b{letter-spacing:0.264000px;}
.ls24{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.300651px;}
.ls4e{letter-spacing:0.315000px;}
.ls1d{letter-spacing:0.324000px;}
.ls2f{letter-spacing:0.345054px;}
.ls2e{letter-spacing:0.345604px;}
.ls19{letter-spacing:0.351000px;}
.ls62{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.386100px;}
.ls52{letter-spacing:0.405000px;}
.lsd{letter-spacing:0.413345px;}
.ls30{letter-spacing:0.432000px;}
.ls63{letter-spacing:0.450000px;}
.ls31{letter-spacing:0.486000px;}
.ls21{letter-spacing:0.491400px;}
.ls60{letter-spacing:0.495000px;}
.ls20{letter-spacing:0.526500px;}
.ls18{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.561600px;}
.ls5d{letter-spacing:0.585000px;}
.lsb{letter-spacing:0.594000px;}
.ls3e{letter-spacing:0.596700px;}
.ls29{letter-spacing:0.648000px;}
.ls3a{letter-spacing:0.702000px;}
.ls33{letter-spacing:0.756000px;}
.ls6e{letter-spacing:0.765000px;}
.ls3b{letter-spacing:0.772200px;}
.ls2a{letter-spacing:0.810000px;}
.ls6b{letter-spacing:0.855000px;}
.ls3d{letter-spacing:0.864000px;}
.ls5e{letter-spacing:1.061985px;}
.ls40{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.134000px;}
.ls5b{letter-spacing:1.169999px;}
.ls3c{letter-spacing:1.188000px;}
.ls69{letter-spacing:1.305000px;}
.ls6c{letter-spacing:1.458000px;}
.ls6a{letter-spacing:1.485000px;}
.ls1b{letter-spacing:1.512000px;}
.ls3f{letter-spacing:1.728000px;}
.ls61{letter-spacing:2.119500px;}
.ls5c{letter-spacing:2.132993px;}
.ls0{letter-spacing:3.000000px;}
.ls48{letter-spacing:18.048424px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws70{word-spacing:-13.860000px;}
.ws1e{word-spacing:-13.770000px;}
.ws4a{word-spacing:-13.446000px;}
.ws47{word-spacing:-13.338000px;}
.ws4d{word-spacing:-13.122000px;}
.ws35{word-spacing:-13.014000px;}
.ws23{word-spacing:-12.906000px;}
.ws18{word-spacing:-12.852000px;}
.ws2a{word-spacing:-12.798000px;}
.ws2d{word-spacing:-12.744000px;}
.ws20{word-spacing:-12.582000px;}
.ws1a{word-spacing:-12.528000px;}
.ws2c{word-spacing:-12.474000px;}
.ws29{word-spacing:-12.312000px;}
.ws2b{word-spacing:-12.258000px;}
.ws7{word-spacing:-12.042000px;}
.ws44{word-spacing:-11.718000px;}
.ws64{word-spacing:-11.232000px;}
.ws86{word-spacing:-10.530000px;}
.ws7b{word-spacing:-10.440000px;}
.ws73{word-spacing:-10.417500px;}
.ws82{word-spacing:-10.395000px;}
.ws9c{word-spacing:-10.305000px;}
.ws74{word-spacing:-10.170000px;}
.ws72{word-spacing:-10.080000px;}
.ws84{word-spacing:-9.945000px;}
.ws9b{word-spacing:-9.900000px;}
.ws85{word-spacing:-9.832500px;}
.ws9d{word-spacing:-9.630000px;}
.ws0{word-spacing:-9.600000px;}
.ws71{word-spacing:-9.225000px;}
.ws42{word-spacing:-8.739900px;}
.ws41{word-spacing:-8.669700px;}
.ws43{word-spacing:-8.529300px;}
.ws8{word-spacing:-8.494200px;}
.ws6{word-spacing:-8.318700px;}
.ws60{word-spacing:-8.213400px;}
.ws54{word-spacing:-8.178300px;}
.ws4{word-spacing:-8.143200px;}
.ws2f{word-spacing:-8.073000px;}
.ws3{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws5{word-spacing:-8.002800px;}
.ws9{word-spacing:-7.967700px;}
.ws2e{word-spacing:-7.897500px;}
.ws53{word-spacing:-7.862400px;}
.ws30{word-spacing:-7.827300px;}
.wsa{word-spacing:-7.792200px;}
.ws52{word-spacing:-7.757100px;}
.ws5e{word-spacing:-7.722000px;}
.wsb{word-spacing:-6.630000px;}
.ws93{word-spacing:-6.345000px;}
.ws83{word-spacing:-6.210000px;}
.ws88{word-spacing:-6.030000px;}
.wsa3{word-spacing:-5.985000px;}
.ws80{word-spacing:-5.940000px;}
.wsa0{word-spacing:-5.895000px;}
.ws90{word-spacing:-5.850000px;}
.ws8b{word-spacing:-5.715000px;}
.wsa5{word-spacing:-5.625000px;}
.ws19{word-spacing:-5.508000px;}
.ws69{word-spacing:-2.376000px;}
.ws67{word-spacing:-1.458000px;}
.ws39{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.242000px;}
.ws13{word-spacing:-1.188000px;}
.ws10{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.035000px;}
.ws7d{word-spacing:-0.990000px;}
.ws68{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.918000px;}
.ws95{word-spacing:-0.900000px;}
.ws96{word-spacing:-0.855000px;}
.ws27{word-spacing:-0.810000px;}
.ws4b{word-spacing:-0.772200px;}
.ws8e{word-spacing:-0.765000px;}
.ws33{word-spacing:-0.756000px;}
.ws78{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.702000px;}
.ws14{word-spacing:-0.648000px;}
.ws89{word-spacing:-0.630000px;}
.ws7f{word-spacing:-0.585000px;}
.ws4e{word-spacing:-0.561600px;}
.ws75{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.526500px;}
.ws98{word-spacing:-0.495000px;}
.ws8f{word-spacing:-0.450000px;}
.ws5c{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.405000px;}
.ws32{word-spacing:-0.378000px;}
.ws76{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.351000px;}
.ws21{word-spacing:-0.324000px;}
.ws3a{word-spacing:-0.270000px;}
.wsa8{word-spacing:-0.264000px;}
.ws7c{word-spacing:-0.225000px;}
.wsd{word-spacing:-0.216000px;}
.ws57{word-spacing:-0.210600px;}
.ws77{word-spacing:-0.180000px;}
.ws31{word-spacing:-0.175500px;}
.ws63{word-spacing:-0.162000px;}
.ws81{word-spacing:-0.135000px;}
.ws58{word-spacing:-0.108000px;}
.ws3e{word-spacing:-0.105300px;}
.ws9f{word-spacing:-0.090000px;}
.ws5f{word-spacing:-0.054037px;}
.ws62{word-spacing:-0.054000px;}
.ws9e{word-spacing:-0.045000px;}
.ws1c{word-spacing:-0.035100px;}
.wsc{word-spacing:0.000000px;}
.ws99{word-spacing:0.045000px;}
.ws1f{word-spacing:0.054000px;}
.ws7e{word-spacing:0.090000px;}
.ws61{word-spacing:0.108000px;}
.ws8d{word-spacing:0.135000px;}
.ws26{word-spacing:0.175500px;}
.ws56{word-spacing:0.210600px;}
.ws3c{word-spacing:0.216000px;}
.ws91{word-spacing:0.225000px;}
.ws65{word-spacing:0.245700px;}
.ws51{word-spacing:0.270000px;}
.ws97{word-spacing:0.315000px;}
.ws17{word-spacing:0.324000px;}
.ws55{word-spacing:0.378000px;}
.ws36{word-spacing:0.432000px;}
.ws8c{word-spacing:0.450000px;}
.ws1b{word-spacing:0.540000px;}
.ws37{word-spacing:0.594000px;}
.wsa1{word-spacing:0.630000px;}
.wse{word-spacing:0.648000px;}
.ws3d{word-spacing:0.702000px;}
.ws3f{word-spacing:0.756000px;}
.wsa6{word-spacing:0.765000px;}
.ws15{word-spacing:0.810000px;}
.ws6f{word-spacing:0.864000px;}
.ws8a{word-spacing:0.900000px;}
.ws38{word-spacing:0.918000px;}
.ws3b{word-spacing:0.972000px;}
.ws87{word-spacing:0.990000px;}
.ws5b{word-spacing:1.026000px;}
.ws79{word-spacing:1.035000px;}
.ws66{word-spacing:1.080000px;}
.ws94{word-spacing:1.125000px;}
.ws40{word-spacing:1.134000px;}
.ws16{word-spacing:1.188000px;}
.wsa4{word-spacing:1.215000px;}
.ws11{word-spacing:1.242000px;}
.wsa7{word-spacing:1.404000px;}
.ws6a{word-spacing:1.458000px;}
.ws92{word-spacing:1.485000px;}
.ws6e{word-spacing:1.512000px;}
.ws5a{word-spacing:1.620000px;}
.ws6b{word-spacing:1.728000px;}
.ws45{word-spacing:1.782000px;}
.ws12{word-spacing:1.836000px;}
.ws5d{word-spacing:1.998000px;}
.ws6d{word-spacing:2.052000px;}
.ws25{word-spacing:2.106000px;}
.wsa2{word-spacing:2.250000px;}
.ws4f{word-spacing:2.538000px;}
.wsab{word-spacing:3.024000px;}
.wsac{word-spacing:3.132000px;}
.wsa9{word-spacing:3.186000px;}
.wsaa{word-spacing:3.348000px;}
.ws49{word-spacing:3.564000px;}
.ws22{word-spacing:3.888000px;}
.ws4c{word-spacing:4.104000px;}
.ws6c{word-spacing:4.428000px;}
.ws28{word-spacing:5.457000px;}
.wsaf{word-spacing:5.670000px;}
.wsb0{word-spacing:6.264000px;}
.wsad{word-spacing:6.480000px;}
.ws46{word-spacing:6.642000px;}
.ws59{word-spacing:6.696000px;}
.wsae{word-spacing:6.750000px;}
.ws50{word-spacing:15.282000px;}
._18{margin-left:-20.952007px;}
._17{margin-left:-17.401210px;}
._c{margin-left:-15.325841px;}
._7{margin-left:-13.539600px;}
._1c{margin-left:-12.459650px;}
._9{margin-left:-11.418001px;}
._1b{margin-left:-10.124400px;}
._4{margin-left:-8.153768px;}
._8{margin-left:-6.113467px;}
._13{margin-left:-5.035200px;}
._2{margin-left:-4.024800px;}
._5{margin-left:-2.997000px;}
._0{margin-left:-1.876800px;}
._6{width:1.296000px;}
._12{width:2.325600px;}
._10{width:3.396600px;}
._a{width:4.514400px;}
._f{width:5.600514px;}
._11{width:6.959296px;}
._d{width:8.807525px;}
._20{width:10.163467px;}
._b{width:11.303597px;}
._e{width:12.852900px;}
._1e{width:14.130000px;}
._1d{width:16.290000px;}
._16{width:17.334000px;}
._1f{width:18.990000px;}
._15{width:36.045600px;}
._3{width:39.889790px;}
._19{width:43.038000px;}
._1a{width:44.496000px;}
._14{width:47.947252px;}
._1{width:329.188800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs8{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:41.068199px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:0.195190px;}
.yde{bottom:1.995026px;}
.yd6{bottom:2.144989px;}
.yd1{bottom:2.595062px;}
.y8e{bottom:3.199200px;}
.y36{bottom:3.199350px;}
.ya6{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y35{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y8f{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y34{bottom:68.037600px;}
.y196{bottom:69.915784px;}
.y1a9{bottom:71.117249px;}
.y13c{bottom:72.522431px;}
.y78{bottom:74.051552px;}
.y9b{bottom:75.310650px;}
.yb7{bottom:80.125652px;}
.y195{bottom:82.662034px;}
.y33{bottom:83.037600px;}
.y13b{bottom:85.268681px;}
.y1a8{bottom:86.115749px;}
.y77{bottom:89.050052px;}
.y9a{bottom:90.312150px;}
.y114{bottom:94.984648px;}
.yb6{bottom:95.124152px;}
.y194{bottom:95.408284px;}
.y13a{bottom:98.014931px;}
.y32{bottom:98.037600px;}
.y85{bottom:100.584744px;}
.y1a7{bottom:101.115749px;}
.y76{bottom:104.048552px;}
.y99{bottom:105.310650px;}
.y193{bottom:108.154534px;}
.y113{bottom:109.983148px;}
.yb5{bottom:110.122652px;}
.y139{bottom:110.761181px;}
.y84{bottom:115.586244px;}
.y31{bottom:117.494099px;}
.y75{bottom:119.047052px;}
.y98{bottom:120.313650px;}
.y192{bottom:120.900784px;}
.y138{bottom:123.507431px;}
.y112{bottom:124.981648px;}
.yb4{bottom:125.121152px;}
.y83{bottom:130.584744px;}
.y1a6{bottom:131.121749px;}
.y191{bottom:133.647034px;}
.y74{bottom:134.045552px;}
.y97{bottom:135.312150px;}
.y137{bottom:136.253681px;}
.y111{bottom:139.989148px;}
.yb3{bottom:140.121152px;}
.y82{bottom:145.584744px;}
.y1a5{bottom:146.120249px;}
.y190{bottom:146.393284px;}
.y136{bottom:148.999931px;}
.y73{bottom:149.047052px;}
.y96{bottom:150.310650px;}
.y2f{bottom:154.570954px;}
.y110{bottom:154.987648px;}
.yb2{bottom:155.122652px;}
.y18f{bottom:159.139534px;}
.y81{bottom:160.590744px;}
.y1a4{bottom:161.118749px;}
.y135{bottom:161.746181px;}
.y72{bottom:164.045552px;}
.y95{bottom:165.312150px;}
.y2e{bottom:169.570954px;}
.y10f{bottom:169.986148px;}
.yb1{bottom:170.121152px;}
.y18e{bottom:171.885784px;}
.y134{bottom:174.492431px;}
.y80{bottom:175.589244px;}
.y1a3{bottom:176.117249px;}
.y71{bottom:179.057552px;}
.y94{bottom:180.310650px;}
.y2d{bottom:184.572305px;}
.y18d{bottom:184.632034px;}
.y10e{bottom:184.984648px;}
.yb0{bottom:185.122652px;}
.y133{bottom:187.238681px;}
.y1a2{bottom:191.115749px;}
.y70{bottom:194.056052px;}
.y93{bottom:195.312150px;}
.y18c{bottom:197.378284px;}
.y2c{bottom:199.570805px;}
.y10d{bottom:199.983148px;}
.y132{bottom:199.984931px;}
.yaf{bottom:200.121152px;}
.y1a1{bottom:206.115761px;}
.y7f{bottom:208.584744px;}
.y6f{bottom:209.054552px;}
.y18b{bottom:210.124534px;}
.y92{bottom:210.310650px;}
.y131{bottom:212.731181px;}
.y2b{bottom:214.570805px;}
.y10c{bottom:214.981648px;}
.yae{bottom:215.121152px;}
.y18a{bottom:222.870784px;}
.y7e{bottom:223.583244px;}
.y6e{bottom:224.053052px;}
.y91{bottom:225.309150px;}
.y130{bottom:225.477431px;}
.y2a{bottom:229.570805px;}
.y10b{bottom:229.983148px;}
.yad{bottom:230.122652px;}
.y189{bottom:235.617034px;}
.y1a0{bottom:236.123261px;}
.y12f{bottom:238.223681px;}
.y7d{bottom:238.583244px;}
.y6d{bottom:239.051552px;}
.y29{bottom:244.570805px;}
.y10a{bottom:244.981648px;}
.yac{bottom:245.121152px;}
.y188{bottom:248.363284px;}
.y12e{bottom:250.969931px;}
.y19f{bottom:251.121761px;}
.y6c{bottom:254.050052px;}
.y28{bottom:259.570805px;}
.y109{bottom:259.986148px;}
.yab{bottom:260.121152px;}
.y187{bottom:261.109534px;}
.y12d{bottom:263.716181px;}
.y19e{bottom:266.120261px;}
.y6b{bottom:269.048552px;}
.y7c{bottom:271.586244px;}
.y186{bottom:273.855784px;}
.y27{bottom:274.570805px;}
.y108{bottom:274.984648px;}
.yaa{bottom:275.119652px;}
.y12c{bottom:276.462431px;}
.y19d{bottom:281.118761px;}
.ya5{bottom:282.417140px;}
.y6a{bottom:284.047052px;}
.y7b{bottom:286.584744px;}
.y185{bottom:286.602034px;}
.y12b{bottom:289.208681px;}
.y26{bottom:289.572305px;}
.y107{bottom:289.983148px;}
.y19c{bottom:296.117261px;}
.ya4{bottom:297.415640px;}
.y69{bottom:299.045552px;}
.y184{bottom:299.348284px;}
.y7a{bottom:301.583244px;}
.y12a{bottom:301.954931px;}
.y25{bottom:304.570805px;}
.y106{bottom:304.981648px;}
.ya9{bottom:308.122652px;}
.y19b{bottom:311.120261px;}
.y183{bottom:312.094534px;}
.ya3{bottom:312.414140px;}
.y68{bottom:314.044052px;}
.y129{bottom:314.701181px;}
.y24{bottom:319.572305px;}
.y105{bottom:319.981648px;}
.ya8{bottom:323.121152px;}
.y182{bottom:324.840784px;}
.y19a{bottom:326.118761px;}
.ya2{bottom:327.412640px;}
.y128{bottom:327.447431px;}
.y67{bottom:329.044052px;}
.y23{bottom:334.570805px;}
.y104{bottom:334.990648px;}
.y181{bottom:337.587034px;}
.ya7{bottom:338.119652px;}
.y127{bottom:340.193681px;}
.y199{bottom:341.117261px;}
.ya1{bottom:342.411140px;}
.y8d{bottom:348.033154px;}
.y22{bottom:349.570805px;}
.y103{bottom:349.989148px;}
.y180{bottom:350.333284px;}
.y126{bottom:352.939931px;}
.y198{bottom:356.115761px;}
.y66{bottom:362.060552px;}
.y8c{bottom:363.040631px;}
.y17f{bottom:363.079534px;}
.y21{bottom:364.570805px;}
.y102{bottom:364.987648px;}
.y125{bottom:365.686181px;}
.y197{bottom:371.115761px;}
.y17e{bottom:375.825784px;}
.y65{bottom:377.059052px;}
.y8b{bottom:378.039131px;}
.y124{bottom:378.432431px;}
.y20{bottom:379.570805px;}
.y101{bottom:379.986148px;}
.y17d{bottom:388.572034px;}
.y123{bottom:391.178681px;}
.y64{bottom:392.057552px;}
.y8a{bottom:393.037631px;}
.yc3{bottom:393.874628px;}
.y1f{bottom:394.570805px;}
.y100{bottom:394.984648px;}
.y17c{bottom:401.318284px;}
.y122{bottom:403.924931px;}
.y63{bottom:407.056052px;}
.y89{bottom:408.036131px;}
.yc2{bottom:408.873128px;}
.y1e{bottom:409.572305px;}
.yff{bottom:409.983148px;}
.y17b{bottom:414.064534px;}
.y121{bottom:416.671181px;}
.y62{bottom:422.054552px;}
.y88{bottom:423.034631px;}
.yc1{bottom:423.885128px;}
.y1d{bottom:424.570805px;}
.yfe{bottom:424.981648px;}
.y17a{bottom:426.810784px;}
.y120{bottom:429.417431px;}
.y61{bottom:437.053052px;}
.y87{bottom:438.033131px;}
.yc0{bottom:438.883628px;}
.y179{bottom:439.557034px;}
.y1c{bottom:439.570805px;}
.yfd{bottom:439.980148px;}
.y11f{bottom:442.163681px;}
.y60{bottom:452.051552px;}
.y178{bottom:452.303284px;}
.y86{bottom:453.031631px;}
.ybf{bottom:453.882128px;}
.y1b{bottom:454.570805px;}
.y11e{bottom:454.913681px;}
.y177{bottom:465.049534px;}
.y5f{bottom:467.050052px;}
.ybe{bottom:468.880628px;}
.y1a{bottom:469.570805px;}
.yfc{bottom:472.987648px;}
.y176{bottom:477.795784px;}
.y5e{bottom:482.048552px;}
.ybd{bottom:483.879128px;}
.y19{bottom:484.570805px;}
.yfb{bottom:487.986148px;}
.y175{bottom:490.542034px;}
.y5d{bottom:497.047052px;}
.ybc{bottom:498.877628px;}
.y18{bottom:499.569305px;}
.yfa{bottom:502.984648px;}
.y174{bottom:503.288284px;}
.y11d{bottom:504.413681px;}
.y5c{bottom:512.045552px;}
.ybb{bottom:513.876128px;}
.y17{bottom:514.569305px;}
.y173{bottom:516.034534px;}
.yf9{bottom:517.983148px;}
.y5b{bottom:527.044052px;}
.y172{bottom:528.780784px;}
.yba{bottom:528.874628px;}
.yf8{bottom:532.981648px;}
.y171{bottom:541.527034px;}
.y5a{bottom:542.044052px;}
.yb9{bottom:543.873128px;}
.yf7{bottom:547.986148px;}
.y11c{bottom:549.422681px;}
.y170{bottom:554.273284px;}
.yb8{bottom:558.871628px;}
.yf6{bottom:562.984648px;}
.y11b{bottom:564.421181px;}
.y16f{bottom:567.019534px;}
.y59{bottom:575.047052px;}
.y16{bottom:577.755269px;}
.yf5{bottom:577.983148px;}
.y11a{bottom:579.419681px;}
.y16e{bottom:579.765784px;}
.y58{bottom:590.045552px;}
.y16d{bottom:592.512034px;}
.yf4{bottom:592.981648px;}
.y15{bottom:594.252269px;}
.y119{bottom:594.418181px;}
.y57{bottom:605.050052px;}
.y16c{bottom:605.258284px;}
.yf3{bottom:607.986148px;}
.y118{bottom:609.416681px;}
.y14{bottom:610.749269px;}
.y16b{bottom:618.004534px;}
.y56{bottom:620.048552px;}
.yf2{bottom:622.984648px;}
.y117{bottom:624.415181px;}
.y13{bottom:627.246269px;}
.y16a{bottom:630.750784px;}
.y55{bottom:635.047052px;}
.yf1{bottom:637.983148px;}
.y116{bottom:639.413681px;}
.y169{bottom:643.497034px;}
.y12{bottom:643.743269px;}
.y54{bottom:650.045552px;}
.yf0{bottom:652.981648px;}
.y115{bottom:654.413681px;}
.y168{bottom:656.243284px;}
.y11{bottom:660.240269px;}
.y53{bottom:665.047052px;}
.yef{bottom:667.983148px;}
.y167{bottom:668.989534px;}
.y10{bottom:676.737269px;}
.y52{bottom:680.045552px;}
.y166{bottom:681.735784px;}
.yee{bottom:682.981648px;}
.yf{bottom:693.234269px;}
.y165{bottom:694.482034px;}
.y51{bottom:695.053006px;}
.yed{bottom:697.981648px;}
.y164{bottom:707.228284px;}
.ye{bottom:709.731269px;}
.y50{bottom:710.051506px;}
.ya0{bottom:712.717670px;}
.yec{bottom:712.989194px;}
.y145{bottom:718.783637px;}
.y163{bottom:719.974534px;}
.y4f{bottom:725.050006px;}
.yd{bottom:726.228269px;}
.y9f{bottom:727.716170px;}
.yeb{bottom:727.987694px;}
.y162{bottom:732.720784px;}
.y144{bottom:733.782137px;}
.y4e{bottom:740.048506px;}
.y9e{bottom:742.714670px;}
.yc{bottom:742.725269px;}
.yea{bottom:742.986194px;}
.y161{bottom:745.467034px;}
.y143{bottom:748.780637px;}
.y4d{bottom:755.047006px;}
.y9d{bottom:757.713170px;}
.ye9{bottom:757.984694px;}
.y160{bottom:758.213284px;}
.yb{bottom:759.222269px;}
.y142{bottom:763.779137px;}
.y4c{bottom:770.045506px;}
.y1bb{bottom:770.537702px;}
.y15f{bottom:770.959534px;}
.y9c{bottom:772.711670px;}
.ye8{bottom:772.983194px;}
.ya{bottom:775.719269px;}
.y141{bottom:778.777637px;}
.y15e{bottom:783.705784px;}
.y4b{bottom:785.044006px;}
.ye7{bottom:787.981694px;}
.y140{bottom:793.776137px;}
.y15d{bottom:796.452034px;}
.y4a{bottom:800.044006px;}
.y1ba{bottom:800.534700px;}
.ye4{bottom:802.790955px;}
.ye6{bottom:802.980194px;}
.ye3{bottom:802.984694px;}
.y9{bottom:805.719269px;}
.y13f{bottom:808.774637px;}
.y15c{bottom:809.198284px;}
.y1b9{bottom:815.533200px;}
.ye2{bottom:817.983194px;}
.y15b{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y13e{bottom:823.773137px;}
.y1b8{bottom:830.531700px;}
.ye1{bottom:832.981694px;}
.y49{bottom:833.048506px;}
.y15a{bottom:834.690784px;}
.y13d{bottom:838.771637px;}
.y1b7{bottom:845.530200px;}
.ydd{bottom:845.981964px;}
.y159{bottom:847.437034px;}
.ydf{bottom:847.976990px;}
.ye0{bottom:847.980194px;}
.ydc{bottom:847.986194px;}
.y48{bottom:848.047006px;}
.y7{bottom:856.707269px;}
.y158{bottom:860.183284px;}
.y1b6{bottom:860.528700px;}
.ydb{bottom:862.984694px;}
.y47{bottom:863.045506px;}
.y157{bottom:872.929534px;}
.y1b5{bottom:875.527200px;}
.yda{bottom:877.983194px;}
.y46{bottom:878.048506px;}
.y156{bottom:885.675784px;}
.y1b4{bottom:890.525700px;}
.yd9{bottom:892.981694px;}
.y45{bottom:893.047006px;}
.y155{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y1b3{bottom:905.524200px;}
.yd5{bottom:905.847015px;}
.yd8{bottom:907.980194px;}
.yd4{bottom:907.981694px;}
.yd7{bottom:907.992004px;}
.y44{bottom:908.045506px;}
.y154{bottom:911.168284px;}
.yd0{bottom:920.387970px;}
.yd3{bottom:922.980194px;}
.yd2{bottom:922.983032px;}
.ycf{bottom:922.984694px;}
.y43{bottom:923.048506px;}
.y153{bottom:923.914534px;}
.y1b2{bottom:928.013700px;}
.y152{bottom:936.660784px;}
.yce{bottom:937.983194px;}
.y42{bottom:938.047006px;}
.y1b1{bottom:943.012200px;}
.y5{bottom:946.719269px;}
.y151{bottom:949.407034px;}
.ycd{bottom:952.981694px;}
.y41{bottom:953.045506px;}
.y30{bottom:954.366760px;}
.y150{bottom:962.153284px;}
.y1b0{bottom:965.516700px;}
.ycc{bottom:967.992194px;}
.y40{bottom:968.045506px;}
.y14f{bottom:974.899534px;}
.ycb{bottom:982.990694px;}
.y3f{bottom:983.050006px;}
.y14e{bottom:987.645784px;}
.y1af{bottom:988.021200px;}
.yca{bottom:997.989194px;}
.y3e{bottom:998.048506px;}
.y14d{bottom:1000.392034px;}
.y1ae{bottom:1010.525700px;}
.yc9{bottom:1012.987694px;}
.y3d{bottom:1013.047006px;}
.y14c{bottom:1013.138284px;}
.y1ad{bottom:1025.524200px;}
.y14b{bottom:1025.884534px;}
.yc8{bottom:1027.986194px;}
.y3c{bottom:1028.045506px;}
.y14a{bottom:1038.630784px;}
.y1ac{bottom:1040.524200px;}
.yc7{bottom:1042.984694px;}
.y3b{bottom:1043.045506px;}
.y149{bottom:1051.377034px;}
.yc6{bottom:1057.983194px;}
.y3a{bottom:1058.045506px;}
.y148{bottom:1064.123284px;}
.y1ab{bottom:1070.524200px;}
.yc5{bottom:1072.981694px;}
.y39{bottom:1073.045506px;}
.y147{bottom:1076.869534px;}
.y1aa{bottom:1085.524200px;}
.yc4{bottom:1087.980194px;}
.y38{bottom:1088.044006px;}
.y146{bottom:1089.615784px;}
.y79{bottom:1140.640320px;}
.y90{bottom:1140.746521px;}
.y37{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h31{height:6.300000px;}
.h30{height:10.650000px;}
.h2f{height:10.800000px;}
.h2b{height:11.250000px;}
.h2d{height:19.615503px;}
.h10{height:23.842749px;}
.h2c{height:32.800580px;}
.h2{height:34.523438px;}
.h36{height:35.411133px;}
.h2e{height:37.826039px;}
.h8{height:38.838867px;}
.h12{height:41.668744px;}
.h39{height:44.505000px;}
.h37{height:45.090000px;}
.h3{height:45.679688px;}
.h38{height:46.080000px;}
.h9{height:47.469727px;}
.h11{height:48.510668px;}
.h7{height:49.050293px;}
.h6{height:49.183594px;}
.h13{height:49.373529px;}
.h3b{height:50.439000px;}
.hc{height:53.406000px;}
.h29{height:53.559314px;}
.h18{height:53.559909px;}
.h2a{height:53.565680px;}
.h34{height:53.571863px;}
.h32{height:53.577680px;}
.h35{height:53.577907px;}
.h21{height:53.577955px;}
.h33{height:53.583863px;}
.h1a{height:53.583886px;}
.h1d{height:53.583909px;}
.h17{height:53.589863px;}
.h28{height:53.589886px;}
.h15{height:53.590046px;}
.h3a{height:53.595863px;}
.h25{height:53.595912px;}
.h16{height:53.596046px;}
.h23{height:53.601317px;}
.hd{height:53.601863px;}
.h26{height:53.601889px;}
.h19{height:53.601909px;}
.h24{height:53.601912px;}
.h1b{height:53.601955px;}
.he{height:53.602458px;}
.hb{height:53.607863px;}
.h27{height:53.607889px;}
.h1e{height:53.607909px;}
.h1c{height:53.607955px;}
.h14{height:53.608046px;}
.h22{height:53.613317px;}
.ha{height:53.613863px;}
.h20{height:54.108000px;}
.h1f{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w6{width:18.568500px;}
.w4{width:40.125000px;}
.w2{width:41.040000px;}
.w3{width:45.839999px;}
.w5{width:45.855000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x11{left:27.063148px;}
.xd{left:28.737625px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.851065px;}
.x1b{left:254.108231px;}
.xa{left:264.204155px;}
.xf{left:273.402008px;}
.x10{left:286.168808px;}
.x1d{left:302.498703px;}
.x12{left:319.303642px;}
.x19{left:431.002487px;}
.x1a{left:449.581329px;}
.x13{left:476.232010px;}
.x14{left:489.647415px;}
.x15{left:516.376785px;}
.x16{left:569.105988px;}
.x17{left:582.520203px;}
.x4{left:586.814117px;}
.x18{left:614.979767px;}
.xb{left:736.304993px;}
.xc{left:750.746384px;}
.xe{left:777.438629px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x1c{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-15.866662pt;}
.v7{vertical-align:-9.631772pt;}
.v8{vertical-align:-7.200195pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.866662pt;}
.v3{vertical-align:16.799967pt;}
.v2{vertical-align:18.666667pt;}
.ls6f{letter-spacing:-1.080000pt;}
.ls53{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.912000pt;}
.ls64{letter-spacing:-0.800000pt;}
.ls68{letter-spacing:-0.720000pt;}
.ls66{letter-spacing:-0.680000pt;}
.ls65{letter-spacing:-0.480000pt;}
.ls6d{letter-spacing:-0.360000pt;}
.ls35{letter-spacing:-0.336000pt;}
.ls67{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.288000pt;}
.ls59{letter-spacing:-0.280000pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls4a{letter-spacing:-0.218400pt;}
.ls55{letter-spacing:-0.200000pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.187200pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.156000pt;}
.ls34{letter-spacing:-0.144000pt;}
.ls38{letter-spacing:-0.124800pt;}
.ls5a{letter-spacing:-0.120000pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls45{letter-spacing:-0.093600pt;}
.ls57{letter-spacing:-0.080000pt;}
.ls36{letter-spacing:-0.062400pt;}
.ls28{letter-spacing:-0.048000pt;}
.ls58{letter-spacing:-0.040000pt;}
.ls23{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012240pt;}
.ls3{letter-spacing:0.012242pt;}
.ls22{letter-spacing:0.016025pt;}
.ls1{letter-spacing:0.023975pt;}
.ls16{letter-spacing:0.031200pt;}
.ls50{letter-spacing:0.040000pt;}
.ls17{letter-spacing:0.048000pt;}
.ls5f{letter-spacing:0.060000pt;}
.ls26{letter-spacing:0.062400pt;}
.lse{letter-spacing:0.068271pt;}
.ls9{letter-spacing:0.078036pt;}
.ls4f{letter-spacing:0.080000pt;}
.ls37{letter-spacing:0.093600pt;}
.ls13{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.112586pt;}
.lsf{letter-spacing:0.112634pt;}
.ls51{letter-spacing:0.120000pt;}
.ls1c{letter-spacing:0.120029pt;}
.ls15{letter-spacing:0.140400pt;}
.ls14{letter-spacing:0.141188pt;}
.lsa{letter-spacing:0.141350pt;}
.ls1e{letter-spacing:0.141839pt;}
.ls39{letter-spacing:0.142001pt;}
.ls25{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.156000pt;}
.ls54{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.170159pt;}
.ls47{letter-spacing:0.171600pt;}
.ls4d{letter-spacing:0.180000pt;}
.ls46{letter-spacing:0.187200pt;}
.ls6{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.200000pt;}
.ls12{letter-spacing:0.207919pt;}
.ls10{letter-spacing:0.216000pt;}
.ls42{letter-spacing:0.218400pt;}
.ls4b{letter-spacing:0.234667pt;}
.ls24{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.267245pt;}
.ls4e{letter-spacing:0.280000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls2f{letter-spacing:0.306715pt;}
.ls2e{letter-spacing:0.307203pt;}
.ls19{letter-spacing:0.312000pt;}
.ls62{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.343200pt;}
.ls52{letter-spacing:0.360000pt;}
.lsd{letter-spacing:0.367418pt;}
.ls30{letter-spacing:0.384000pt;}
.ls63{letter-spacing:0.400000pt;}
.ls31{letter-spacing:0.432000pt;}
.ls21{letter-spacing:0.436800pt;}
.ls60{letter-spacing:0.440000pt;}
.ls20{letter-spacing:0.468000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.499200pt;}
.ls5d{letter-spacing:0.520000pt;}
.lsb{letter-spacing:0.528000pt;}
.ls3e{letter-spacing:0.530400pt;}
.ls29{letter-spacing:0.576000pt;}
.ls3a{letter-spacing:0.624000pt;}
.ls33{letter-spacing:0.672000pt;}
.ls6e{letter-spacing:0.680000pt;}
.ls3b{letter-spacing:0.686400pt;}
.ls2a{letter-spacing:0.720000pt;}
.ls6b{letter-spacing:0.760000pt;}
.ls3d{letter-spacing:0.768000pt;}
.ls5e{letter-spacing:0.943987pt;}
.ls40{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.008000pt;}
.ls5b{letter-spacing:1.040000pt;}
.ls3c{letter-spacing:1.056000pt;}
.ls69{letter-spacing:1.160000pt;}
.ls6c{letter-spacing:1.296000pt;}
.ls6a{letter-spacing:1.320000pt;}
.ls1b{letter-spacing:1.344000pt;}
.ls3f{letter-spacing:1.536000pt;}
.ls61{letter-spacing:1.884000pt;}
.ls5c{letter-spacing:1.895993pt;}
.ls0{letter-spacing:2.666667pt;}
.ls48{letter-spacing:16.043044pt;}
.ws1{word-spacing:-13.333333pt;}
.ws70{word-spacing:-12.320000pt;}
.ws1e{word-spacing:-12.240000pt;}
.ws4a{word-spacing:-11.952000pt;}
.ws47{word-spacing:-11.856000pt;}
.ws4d{word-spacing:-11.664000pt;}
.ws35{word-spacing:-11.568000pt;}
.ws23{word-spacing:-11.472000pt;}
.ws18{word-spacing:-11.424000pt;}
.ws2a{word-spacing:-11.376000pt;}
.ws2d{word-spacing:-11.328000pt;}
.ws20{word-spacing:-11.184000pt;}
.ws1a{word-spacing:-11.136000pt;}
.ws2c{word-spacing:-11.088000pt;}
.ws29{word-spacing:-10.944000pt;}
.ws2b{word-spacing:-10.896000pt;}
.ws7{word-spacing:-10.704000pt;}
.ws44{word-spacing:-10.416000pt;}
.ws64{word-spacing:-9.984000pt;}
.ws86{word-spacing:-9.360000pt;}
.ws7b{word-spacing:-9.280000pt;}
.ws73{word-spacing:-9.260000pt;}
.ws82{word-spacing:-9.240000pt;}
.ws9c{word-spacing:-9.160000pt;}
.ws74{word-spacing:-9.040000pt;}
.ws72{word-spacing:-8.960000pt;}
.ws84{word-spacing:-8.840000pt;}
.ws9b{word-spacing:-8.800000pt;}
.ws85{word-spacing:-8.740000pt;}
.ws9d{word-spacing:-8.560000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws71{word-spacing:-8.200000pt;}
.ws42{word-spacing:-7.768800pt;}
.ws41{word-spacing:-7.706400pt;}
.ws43{word-spacing:-7.581600pt;}
.ws8{word-spacing:-7.550400pt;}
.ws6{word-spacing:-7.394400pt;}
.ws60{word-spacing:-7.300800pt;}
.ws54{word-spacing:-7.269600pt;}
.ws4{word-spacing:-7.238400pt;}
.ws2f{word-spacing:-7.176000pt;}
.ws3{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.113600pt;}
.ws9{word-spacing:-7.082400pt;}
.ws2e{word-spacing:-7.020000pt;}
.ws53{word-spacing:-6.988800pt;}
.ws30{word-spacing:-6.957600pt;}
.wsa{word-spacing:-6.926400pt;}
.ws52{word-spacing:-6.895200pt;}
.ws5e{word-spacing:-6.864000pt;}
.wsb{word-spacing:-5.893333pt;}
.ws93{word-spacing:-5.640000pt;}
.ws83{word-spacing:-5.520000pt;}
.ws88{word-spacing:-5.360000pt;}
.wsa3{word-spacing:-5.320000pt;}
.ws80{word-spacing:-5.280000pt;}
.wsa0{word-spacing:-5.240000pt;}
.ws90{word-spacing:-5.200000pt;}
.ws8b{word-spacing:-5.080000pt;}
.wsa5{word-spacing:-5.000000pt;}
.ws19{word-spacing:-4.896000pt;}
.ws69{word-spacing:-2.112000pt;}
.ws67{word-spacing:-1.296000pt;}
.ws39{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.104000pt;}
.ws13{word-spacing:-1.056000pt;}
.ws10{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.920000pt;}
.ws7d{word-spacing:-0.880000pt;}
.ws68{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.816000pt;}
.ws95{word-spacing:-0.800000pt;}
.ws96{word-spacing:-0.760000pt;}
.ws27{word-spacing:-0.720000pt;}
.ws4b{word-spacing:-0.686400pt;}
.ws8e{word-spacing:-0.680000pt;}
.ws33{word-spacing:-0.672000pt;}
.ws78{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.624000pt;}
.ws14{word-spacing:-0.576000pt;}
.ws89{word-spacing:-0.560000pt;}
.ws7f{word-spacing:-0.520000pt;}
.ws4e{word-spacing:-0.499200pt;}
.ws75{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.468000pt;}
.ws98{word-spacing:-0.440000pt;}
.ws8f{word-spacing:-0.400000pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.360000pt;}
.ws32{word-spacing:-0.336000pt;}
.ws76{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.312000pt;}
.ws21{word-spacing:-0.288000pt;}
.ws3a{word-spacing:-0.240000pt;}
.wsa8{word-spacing:-0.234667pt;}
.ws7c{word-spacing:-0.200000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws57{word-spacing:-0.187200pt;}
.ws77{word-spacing:-0.160000pt;}
.ws31{word-spacing:-0.156000pt;}
.ws63{word-spacing:-0.144000pt;}
.ws81{word-spacing:-0.120000pt;}
.ws58{word-spacing:-0.096000pt;}
.ws3e{word-spacing:-0.093600pt;}
.ws9f{word-spacing:-0.080000pt;}
.ws5f{word-spacing:-0.048033pt;}
.ws62{word-spacing:-0.048000pt;}
.ws9e{word-spacing:-0.040000pt;}
.ws1c{word-spacing:-0.031200pt;}
.wsc{word-spacing:0.000000pt;}
.ws99{word-spacing:0.040000pt;}
.ws1f{word-spacing:0.048000pt;}
.ws7e{word-spacing:0.080000pt;}
.ws61{word-spacing:0.096000pt;}
.ws8d{word-spacing:0.120000pt;}
.ws26{word-spacing:0.156000pt;}
.ws56{word-spacing:0.187200pt;}
.ws3c{word-spacing:0.192000pt;}
.ws91{word-spacing:0.200000pt;}
.ws65{word-spacing:0.218400pt;}
.ws51{word-spacing:0.240000pt;}
.ws97{word-spacing:0.280000pt;}
.ws17{word-spacing:0.288000pt;}
.ws55{word-spacing:0.336000pt;}
.ws36{word-spacing:0.384000pt;}
.ws8c{word-spacing:0.400000pt;}
.ws1b{word-spacing:0.480000pt;}
.ws37{word-spacing:0.528000pt;}
.wsa1{word-spacing:0.560000pt;}
.wse{word-spacing:0.576000pt;}
.ws3d{word-spacing:0.624000pt;}
.ws3f{word-spacing:0.672000pt;}
.wsa6{word-spacing:0.680000pt;}
.ws15{word-spacing:0.720000pt;}
.ws6f{word-spacing:0.768000pt;}
.ws8a{word-spacing:0.800000pt;}
.ws38{word-spacing:0.816000pt;}
.ws3b{word-spacing:0.864000pt;}
.ws87{word-spacing:0.880000pt;}
.ws5b{word-spacing:0.912000pt;}
.ws79{word-spacing:0.920000pt;}
.ws66{word-spacing:0.960000pt;}
.ws94{word-spacing:1.000000pt;}
.ws40{word-spacing:1.008000pt;}
.ws16{word-spacing:1.056000pt;}
.wsa4{word-spacing:1.080000pt;}
.ws11{word-spacing:1.104000pt;}
.wsa7{word-spacing:1.248000pt;}
.ws6a{word-spacing:1.296000pt;}
.ws92{word-spacing:1.320000pt;}
.ws6e{word-spacing:1.344000pt;}
.ws5a{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.536000pt;}
.ws45{word-spacing:1.584000pt;}
.ws12{word-spacing:1.632000pt;}
.ws5d{word-spacing:1.776000pt;}
.ws6d{word-spacing:1.824000pt;}
.ws25{word-spacing:1.872000pt;}
.wsa2{word-spacing:2.000000pt;}
.ws4f{word-spacing:2.256000pt;}
.wsab{word-spacing:2.688000pt;}
.wsac{word-spacing:2.784000pt;}
.wsa9{word-spacing:2.832000pt;}
.wsaa{word-spacing:2.976000pt;}
.ws49{word-spacing:3.168000pt;}
.ws22{word-spacing:3.456000pt;}
.ws4c{word-spacing:3.648000pt;}
.ws6c{word-spacing:3.936000pt;}
.ws28{word-spacing:4.850667pt;}
.wsaf{word-spacing:5.040000pt;}
.wsb0{word-spacing:5.568000pt;}
.wsad{word-spacing:5.760000pt;}
.ws46{word-spacing:5.904000pt;}
.ws59{word-spacing:5.952000pt;}
.wsae{word-spacing:6.000000pt;}
.ws50{word-spacing:13.584000pt;}
._18{margin-left:-18.624006pt;}
._17{margin-left:-15.467742pt;}
._c{margin-left:-13.622970pt;}
._7{margin-left:-12.035200pt;}
._1c{margin-left:-11.075245pt;}
._9{margin-left:-10.149334pt;}
._1b{margin-left:-8.999467pt;}
._4{margin-left:-7.247794pt;}
._8{margin-left:-5.434193pt;}
._13{margin-left:-4.475733pt;}
._2{margin-left:-3.577600pt;}
._5{margin-left:-2.664000pt;}
._0{margin-left:-1.668267pt;}
._6{width:1.152000pt;}
._12{width:2.067200pt;}
._10{width:3.019200pt;}
._a{width:4.012800pt;}
._f{width:4.978234pt;}
._11{width:6.186041pt;}
._d{width:7.828911pt;}
._20{width:9.034193pt;}
._b{width:10.047642pt;}
._e{width:11.424800pt;}
._1e{width:12.560000pt;}
._1d{width:14.480000pt;}
._16{width:15.408000pt;}
._1f{width:16.880000pt;}
._15{width:32.040533pt;}
._3{width:35.457591pt;}
._19{width:38.256000pt;}
._1a{width:39.552000pt;}
._14{width:42.619780pt;}
._1{width:292.612267pt;}
.fs8{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:36.505066pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:0.173503pt;}
.yde{bottom:1.773356pt;}
.yd6{bottom:1.906657pt;}
.yd1{bottom:2.306722pt;}
.y8e{bottom:2.843733pt;}
.y36{bottom:2.843867pt;}
.ya6{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y35{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y8f{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y34{bottom:60.477867pt;}
.y196{bottom:62.147363pt;}
.y1a9{bottom:63.215333pt;}
.y13c{bottom:64.464383pt;}
.y78{bottom:65.823602pt;}
.y9b{bottom:66.942800pt;}
.yb7{bottom:71.222802pt;}
.y195{bottom:73.477363pt;}
.y33{bottom:73.811200pt;}
.y13b{bottom:75.794383pt;}
.y1a8{bottom:76.547333pt;}
.y77{bottom:79.155602pt;}
.y9a{bottom:80.277467pt;}
.y114{bottom:84.430799pt;}
.yb6{bottom:84.554802pt;}
.y194{bottom:84.807363pt;}
.y13a{bottom:87.124383pt;}
.y32{bottom:87.144533pt;}
.y85{bottom:89.408662pt;}
.y1a7{bottom:89.880666pt;}
.y76{bottom:92.487602pt;}
.y99{bottom:93.609467pt;}
.y193{bottom:96.137363pt;}
.y113{bottom:97.762799pt;}
.yb5{bottom:97.886802pt;}
.y139{bottom:98.454383pt;}
.y84{bottom:102.743328pt;}
.y31{bottom:104.439199pt;}
.y75{bottom:105.819602pt;}
.y98{bottom:106.945467pt;}
.y192{bottom:107.467363pt;}
.y138{bottom:109.784383pt;}
.y112{bottom:111.094799pt;}
.yb4{bottom:111.218802pt;}
.y83{bottom:116.075328pt;}
.y1a6{bottom:116.552666pt;}
.y191{bottom:118.797363pt;}
.y74{bottom:119.151602pt;}
.y97{bottom:120.277467pt;}
.y137{bottom:121.114383pt;}
.y111{bottom:124.434799pt;}
.yb3{bottom:124.552135pt;}
.y82{bottom:129.408662pt;}
.y1a5{bottom:129.884666pt;}
.y190{bottom:130.127363pt;}
.y136{bottom:132.444383pt;}
.y73{bottom:132.486269pt;}
.y96{bottom:133.609467pt;}
.y2f{bottom:137.396404pt;}
.y110{bottom:137.766799pt;}
.yb2{bottom:137.886802pt;}
.y18f{bottom:141.457363pt;}
.y81{bottom:142.747328pt;}
.y1a4{bottom:143.216666pt;}
.y135{bottom:143.774383pt;}
.y72{bottom:145.818269pt;}
.y95{bottom:146.944133pt;}
.y2e{bottom:150.729737pt;}
.y10f{bottom:151.098799pt;}
.yb1{bottom:151.218802pt;}
.y18e{bottom:152.787363pt;}
.y134{bottom:155.104383pt;}
.y80{bottom:156.079328pt;}
.y1a3{bottom:156.548666pt;}
.y71{bottom:159.162269pt;}
.y94{bottom:160.276133pt;}
.y2d{bottom:164.064271pt;}
.y18d{bottom:164.117363pt;}
.y10e{bottom:164.430799pt;}
.yb0{bottom:164.553468pt;}
.y133{bottom:166.434383pt;}
.y1a2{bottom:169.880666pt;}
.y70{bottom:172.494269pt;}
.y93{bottom:173.610800pt;}
.y18c{bottom:175.447363pt;}
.y2c{bottom:177.396271pt;}
.y10d{bottom:177.762799pt;}
.y132{bottom:177.764383pt;}
.yaf{bottom:177.885468pt;}
.y1a1{bottom:183.214010pt;}
.y7f{bottom:185.408662pt;}
.y6f{bottom:185.826269pt;}
.y18b{bottom:186.777363pt;}
.y92{bottom:186.942800pt;}
.y131{bottom:189.094383pt;}
.y2b{bottom:190.729605pt;}
.y10c{bottom:191.094799pt;}
.yae{bottom:191.218802pt;}
.y18a{bottom:198.107363pt;}
.y7e{bottom:198.740662pt;}
.y6e{bottom:199.158269pt;}
.y91{bottom:200.274800pt;}
.y130{bottom:200.424383pt;}
.y2a{bottom:204.062938pt;}
.y10b{bottom:204.429465pt;}
.yad{bottom:204.553468pt;}
.y189{bottom:209.437363pt;}
.y1a0{bottom:209.887343pt;}
.y12f{bottom:211.754383pt;}
.y7d{bottom:212.073995pt;}
.y6d{bottom:212.490269pt;}
.y29{bottom:217.396271pt;}
.y10a{bottom:217.761465pt;}
.yac{bottom:217.885468pt;}
.y188{bottom:220.767363pt;}
.y12e{bottom:223.084383pt;}
.y19f{bottom:223.219343pt;}
.y6c{bottom:225.822269pt;}
.y28{bottom:230.729605pt;}
.y109{bottom:231.098799pt;}
.yab{bottom:231.218802pt;}
.y187{bottom:232.097363pt;}
.y12d{bottom:234.414383pt;}
.y19e{bottom:236.551343pt;}
.y6b{bottom:239.154269pt;}
.y7c{bottom:241.409995pt;}
.y186{bottom:243.427363pt;}
.y27{bottom:244.062938pt;}
.y108{bottom:244.430799pt;}
.yaa{bottom:244.550802pt;}
.y12c{bottom:245.744383pt;}
.y19d{bottom:249.883343pt;}
.ya5{bottom:251.037458pt;}
.y6a{bottom:252.486269pt;}
.y7b{bottom:254.741995pt;}
.y185{bottom:254.757363pt;}
.y12b{bottom:257.074383pt;}
.y26{bottom:257.397605pt;}
.y107{bottom:257.762799pt;}
.y19c{bottom:263.215343pt;}
.ya4{bottom:264.369458pt;}
.y69{bottom:265.818269pt;}
.y184{bottom:266.087363pt;}
.y7a{bottom:268.073995pt;}
.y12a{bottom:268.404383pt;}
.y25{bottom:270.729605pt;}
.y106{bottom:271.094799pt;}
.ya9{bottom:273.886802pt;}
.y19b{bottom:276.551343pt;}
.y183{bottom:277.417363pt;}
.ya3{bottom:277.701458pt;}
.y68{bottom:279.150269pt;}
.y129{bottom:279.734383pt;}
.y24{bottom:284.064271pt;}
.y105{bottom:284.428132pt;}
.ya8{bottom:287.218802pt;}
.y182{bottom:288.747363pt;}
.y19a{bottom:289.883343pt;}
.ya2{bottom:291.033458pt;}
.y128{bottom:291.064383pt;}
.y67{bottom:292.483602pt;}
.y23{bottom:297.396271pt;}
.y104{bottom:297.769465pt;}
.y181{bottom:300.077363pt;}
.ya7{bottom:300.550802pt;}
.y127{bottom:302.394383pt;}
.y199{bottom:303.215343pt;}
.ya1{bottom:304.365458pt;}
.y8d{bottom:309.362804pt;}
.y22{bottom:310.729605pt;}
.y103{bottom:311.101465pt;}
.y180{bottom:311.407363pt;}
.y126{bottom:313.724383pt;}
.y198{bottom:316.547343pt;}
.y66{bottom:321.831602pt;}
.y8c{bottom:322.702784pt;}
.y17f{bottom:322.737363pt;}
.y21{bottom:324.062938pt;}
.y102{bottom:324.433465pt;}
.y125{bottom:325.054383pt;}
.y197{bottom:329.880676pt;}
.y17e{bottom:334.067363pt;}
.y65{bottom:335.163602pt;}
.y8b{bottom:336.034784pt;}
.y124{bottom:336.384383pt;}
.y20{bottom:337.396271pt;}
.y101{bottom:337.765465pt;}
.y17d{bottom:345.397363pt;}
.y123{bottom:347.714383pt;}
.y64{bottom:348.495602pt;}
.y8a{bottom:349.366784pt;}
.yc3{bottom:350.110780pt;}
.y1f{bottom:350.729605pt;}
.y100{bottom:351.097465pt;}
.y17c{bottom:356.727363pt;}
.y122{bottom:359.044383pt;}
.y63{bottom:361.827602pt;}
.y89{bottom:362.698784pt;}
.yc2{bottom:363.442780pt;}
.y1e{bottom:364.064271pt;}
.yff{bottom:364.429465pt;}
.y17b{bottom:368.057363pt;}
.y121{bottom:370.374383pt;}
.y62{bottom:375.159602pt;}
.y88{bottom:376.030784pt;}
.yc1{bottom:376.786780pt;}
.y1d{bottom:377.396271pt;}
.yfe{bottom:377.761465pt;}
.y17a{bottom:379.387363pt;}
.y120{bottom:381.704383pt;}
.y61{bottom:388.491602pt;}
.y87{bottom:389.362784pt;}
.yc0{bottom:390.118780pt;}
.y179{bottom:390.717363pt;}
.y1c{bottom:390.729605pt;}
.yfd{bottom:391.093465pt;}
.y11f{bottom:393.034383pt;}
.y60{bottom:401.823602pt;}
.y178{bottom:402.047363pt;}
.y86{bottom:402.694784pt;}
.ybf{bottom:403.450780pt;}
.y1b{bottom:404.062938pt;}
.y11e{bottom:404.367716pt;}
.y177{bottom:413.377363pt;}
.y5f{bottom:415.155602pt;}
.ybe{bottom:416.782780pt;}
.y1a{bottom:417.396271pt;}
.yfc{bottom:420.433465pt;}
.y176{bottom:424.707363pt;}
.y5e{bottom:428.487602pt;}
.ybd{bottom:430.114780pt;}
.y19{bottom:430.729605pt;}
.yfb{bottom:433.765465pt;}
.y175{bottom:436.037363pt;}
.y5d{bottom:441.819602pt;}
.ybc{bottom:443.446780pt;}
.y18{bottom:444.061605pt;}
.yfa{bottom:447.097465pt;}
.y174{bottom:447.367363pt;}
.y11d{bottom:448.367716pt;}
.y5c{bottom:455.151602pt;}
.ybb{bottom:456.778780pt;}
.y17{bottom:457.394938pt;}
.y173{bottom:458.697363pt;}
.yf9{bottom:460.429465pt;}
.y5b{bottom:468.483602pt;}
.y172{bottom:470.027363pt;}
.yba{bottom:470.110780pt;}
.yf8{bottom:473.761465pt;}
.y171{bottom:481.357363pt;}
.y5a{bottom:481.816935pt;}
.yb9{bottom:483.442780pt;}
.yf7{bottom:487.098799pt;}
.y11c{bottom:488.375716pt;}
.y170{bottom:492.687363pt;}
.yb8{bottom:496.774780pt;}
.yf6{bottom:500.430799pt;}
.y11b{bottom:501.707716pt;}
.y16f{bottom:504.017363pt;}
.y59{bottom:511.152935pt;}
.y16{bottom:513.560239pt;}
.yf5{bottom:513.762799pt;}
.y11a{bottom:515.039716pt;}
.y16e{bottom:515.347363pt;}
.y58{bottom:524.484935pt;}
.y16d{bottom:526.677363pt;}
.yf4{bottom:527.094799pt;}
.y15{bottom:528.224239pt;}
.y119{bottom:528.371716pt;}
.y57{bottom:537.822269pt;}
.y16c{bottom:538.007363pt;}
.yf3{bottom:540.432132pt;}
.y118{bottom:541.703716pt;}
.y14{bottom:542.888239pt;}
.y16b{bottom:549.337363pt;}
.y56{bottom:551.154269pt;}
.yf2{bottom:553.764132pt;}
.y117{bottom:555.035716pt;}
.y13{bottom:557.552239pt;}
.y16a{bottom:560.667363pt;}
.y55{bottom:564.486269pt;}
.yf1{bottom:567.096132pt;}
.y116{bottom:568.367716pt;}
.y169{bottom:571.997363pt;}
.y12{bottom:572.216239pt;}
.y54{bottom:577.818269pt;}
.yf0{bottom:580.428132pt;}
.y115{bottom:581.701050pt;}
.y168{bottom:583.327363pt;}
.y11{bottom:586.880239pt;}
.y53{bottom:591.152935pt;}
.yef{bottom:593.762799pt;}
.y167{bottom:594.657363pt;}
.y10{bottom:601.544239pt;}
.y52{bottom:604.484935pt;}
.y166{bottom:605.987363pt;}
.yee{bottom:607.094799pt;}
.yf{bottom:616.208239pt;}
.y165{bottom:617.317363pt;}
.y51{bottom:617.824895pt;}
.yed{bottom:620.428132pt;}
.y164{bottom:628.647363pt;}
.ye{bottom:630.872239pt;}
.y50{bottom:631.156895pt;}
.ya0{bottom:633.526818pt;}
.yec{bottom:633.768173pt;}
.y145{bottom:638.918788pt;}
.y163{bottom:639.977363pt;}
.y4f{bottom:644.488895pt;}
.yd{bottom:645.536239pt;}
.y9f{bottom:646.858818pt;}
.yeb{bottom:647.100173pt;}
.y162{bottom:651.307363pt;}
.y144{bottom:652.250788pt;}
.y4e{bottom:657.820895pt;}
.y9e{bottom:660.190818pt;}
.yc{bottom:660.200239pt;}
.yea{bottom:660.432173pt;}
.y161{bottom:662.637363pt;}
.y143{bottom:665.582788pt;}
.y4d{bottom:671.152895pt;}
.y9d{bottom:673.522818pt;}
.ye9{bottom:673.764173pt;}
.y160{bottom:673.967363pt;}
.yb{bottom:674.864239pt;}
.y142{bottom:678.914788pt;}
.y4c{bottom:684.484895pt;}
.y1bb{bottom:684.922401pt;}
.y15f{bottom:685.297363pt;}
.y9c{bottom:686.854818pt;}
.ye8{bottom:687.096173pt;}
.ya{bottom:689.528239pt;}
.y141{bottom:692.246788pt;}
.y15e{bottom:696.627363pt;}
.y4b{bottom:697.816895pt;}
.ye7{bottom:700.428173pt;}
.y140{bottom:705.578788pt;}
.y15d{bottom:707.957363pt;}
.y4a{bottom:711.150228pt;}
.y1ba{bottom:711.586400pt;}
.ye4{bottom:713.591960pt;}
.ye6{bottom:713.760173pt;}
.ye3{bottom:713.764173pt;}
.y9{bottom:716.194906pt;}
.y13f{bottom:718.910788pt;}
.y15c{bottom:719.287363pt;}
.y1b9{bottom:724.918400pt;}
.ye2{bottom:727.096173pt;}
.y15b{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y13e{bottom:732.242788pt;}
.y1b8{bottom:738.250400pt;}
.ye1{bottom:740.428173pt;}
.y49{bottom:740.487561pt;}
.y15a{bottom:741.947363pt;}
.y13d{bottom:745.574788pt;}
.y1b7{bottom:751.582400pt;}
.ydd{bottom:751.983968pt;}
.y159{bottom:753.277363pt;}
.ydf{bottom:753.757324pt;}
.ye0{bottom:753.760173pt;}
.ydc{bottom:753.765506pt;}
.y48{bottom:753.819561pt;}
.y7{bottom:761.517572pt;}
.y158{bottom:764.607363pt;}
.y1b6{bottom:764.914400pt;}
.ydb{bottom:767.097506pt;}
.y47{bottom:767.151561pt;}
.y157{bottom:775.937363pt;}
.y1b5{bottom:778.246400pt;}
.yda{bottom:780.429506pt;}
.y46{bottom:780.487561pt;}
.y156{bottom:787.267363pt;}
.y1b4{bottom:791.578400pt;}
.yd9{bottom:793.761506pt;}
.y45{bottom:793.819561pt;}
.y155{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y1b3{bottom:804.910400pt;}
.yd5{bottom:805.197347pt;}
.yd8{bottom:807.093506pt;}
.yd4{bottom:807.094839pt;}
.yd7{bottom:807.104004pt;}
.y44{bottom:807.151561pt;}
.y154{bottom:809.927363pt;}
.yd0{bottom:818.122640pt;}
.yd3{bottom:820.426839pt;}
.yd2{bottom:820.429362pt;}
.ycf{bottom:820.430839pt;}
.y43{bottom:820.487561pt;}
.y153{bottom:821.257363pt;}
.y1b2{bottom:824.901067pt;}
.y152{bottom:832.587363pt;}
.yce{bottom:833.762839pt;}
.y42{bottom:833.819561pt;}
.y1b1{bottom:838.233067pt;}
.y5{bottom:841.528239pt;}
.y151{bottom:843.917363pt;}
.ycd{bottom:847.094839pt;}
.y41{bottom:847.151561pt;}
.y30{bottom:848.326009pt;}
.y150{bottom:855.247363pt;}
.y1b0{bottom:858.237067pt;}
.ycc{bottom:860.437506pt;}
.y40{bottom:860.484895pt;}
.y14f{bottom:866.577363pt;}
.ycb{bottom:873.769506pt;}
.y3f{bottom:873.822228pt;}
.y14e{bottom:877.907363pt;}
.y1af{bottom:878.241067pt;}
.yca{bottom:887.101506pt;}
.y3e{bottom:887.154228pt;}
.y14d{bottom:889.237363pt;}
.y1ae{bottom:898.245067pt;}
.yc9{bottom:900.433506pt;}
.y3d{bottom:900.486228pt;}
.y14c{bottom:900.567363pt;}
.y1ad{bottom:911.577067pt;}
.y14b{bottom:911.897363pt;}
.yc8{bottom:913.765506pt;}
.y3c{bottom:913.818228pt;}
.y14a{bottom:923.227363pt;}
.y1ac{bottom:924.910400pt;}
.yc7{bottom:927.097506pt;}
.y3b{bottom:927.151561pt;}
.y149{bottom:934.557363pt;}
.yc6{bottom:940.429506pt;}
.y3a{bottom:940.484895pt;}
.y148{bottom:945.887363pt;}
.y1ab{bottom:951.577067pt;}
.yc5{bottom:953.761506pt;}
.y39{bottom:953.818228pt;}
.y147{bottom:957.217363pt;}
.y1aa{bottom:964.910400pt;}
.yc4{bottom:967.093506pt;}
.y38{bottom:967.150228pt;}
.y146{bottom:968.547363pt;}
.y79{bottom:1013.902507pt;}
.y90{bottom:1013.996908pt;}
.y37{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h31{height:5.600000pt;}
.h30{height:9.466667pt;}
.h2f{height:9.600000pt;}
.h2b{height:10.000000pt;}
.h2d{height:17.436003pt;}
.h10{height:21.193555pt;}
.h2c{height:29.156071pt;}
.h2{height:30.687500pt;}
.h36{height:31.476562pt;}
.h2e{height:33.623146pt;}
.h8{height:34.523438pt;}
.h12{height:37.038883pt;}
.h39{height:39.560000pt;}
.h37{height:40.080000pt;}
.h3{height:40.604167pt;}
.h38{height:40.960000pt;}
.h9{height:42.195312pt;}
.h11{height:43.120594pt;}
.h7{height:43.600260pt;}
.h6{height:43.718750pt;}
.h13{height:43.887581pt;}
.h3b{height:44.834667pt;}
.hc{height:47.472000pt;}
.h29{height:47.608279pt;}
.h18{height:47.608808pt;}
.h2a{height:47.613938pt;}
.h34{height:47.619434pt;}
.h32{height:47.624605pt;}
.h35{height:47.624806pt;}
.h21{height:47.624849pt;}
.h33{height:47.630101pt;}
.h1a{height:47.630121pt;}
.h1d{height:47.630141pt;}
.h17{height:47.635434pt;}
.h28{height:47.635454pt;}
.h15{height:47.635597pt;}
.h3a{height:47.640767pt;}
.h25{height:47.640811pt;}
.h16{height:47.640930pt;}
.h23{height:47.645615pt;}
.hd{height:47.646101pt;}
.h26{height:47.646124pt;}
.h19{height:47.646141pt;}
.h24{height:47.646144pt;}
.h1b{height:47.646182pt;}
.he{height:47.646630pt;}
.hb{height:47.651434pt;}
.h27{height:47.651457pt;}
.h1e{height:47.651475pt;}
.h1c{height:47.651515pt;}
.h14{height:47.651597pt;}
.h22{height:47.656282pt;}
.ha{height:47.656767pt;}
.h20{height:48.096000pt;}
.h1f{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w6{width:16.505333pt;}
.w4{width:35.666667pt;}
.w2{width:36.480000pt;}
.w3{width:40.746666pt;}
.w5{width:40.760000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x11{left:24.056132pt;}
.xd{left:25.544556pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.867613pt;}
.x1b{left:225.873984pt;}
.xa{left:234.848138pt;}
.xf{left:243.024007pt;}
.x10{left:254.372274pt;}
.x1d{left:268.887736pt;}
.x12{left:283.825460pt;}
.x19{left:383.113322pt;}
.x1a{left:399.627848pt;}
.x13{left:423.317342pt;}
.x14{left:435.242147pt;}
.x15{left:459.001587pt;}
.x16{left:505.871989pt;}
.x17{left:517.795736pt;}
.x4{left:521.612549pt;}
.x18{left:546.648682pt;}
.xb{left:654.493327pt;}
.xc{left:667.330119pt;}
.xe{left:691.056559pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1c{left:727.865560pt;}
.x1{left:733.334391pt;}
}


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