
/* 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_ee8d2cf51f4d.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_263bf5639d9a.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_ce2e254d99fb.woff")format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c124e8902a06.woff")format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_2fa9a159b7d6.woff")format("woff");}.ff5{font-family:ff5;line-height:0.927246;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_95a464faff70.woff")format("woff");}.ff6{font-family:ff6;line-height:0.935547;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_3c504aea3736.woff")format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_194c997f11c0.woff")format("woff");}.ff8{font-family:ff8;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_3836535da58a.woff")format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_811268ea98d1.woff")format("woff");}.ffa{font-family:ffa;line-height:0.675293;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_9c8bbd24b5a1.woff")format("woff");}.ffb{font-family:ffb;line-height:0.714355;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_5bcc87e29638.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_3e82b075380a.woff")format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_2dd75e24d086.woff")format("woff");}.ffe{font-family:ffe;line-height:0.927246;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_6c23113e22b6.woff")format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_584a93102178.woff")format("woff");}.ff10{font-family:ff10;line-height:0.925293;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_779df5dcd928.woff")format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_08da7a2f9fd5.woff")format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_613b69697c53.woff")format("woff");}.ff13{font-family:ff13;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_c2bf0411deda.woff")format("woff");}.ff14{font-family:ff14;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_6233cecd4f3e.woff")format("woff");}.ff15{font-family:ff15;line-height:0.926758;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_194c997f11c0.woff")format("woff");}.ff16{font-family:ff16;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_3a19e72ac0db.woff")format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_38b8d3ddd018.woff")format("woff");}.ff18{font-family:ff18;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_6fc8df93d007.woff")format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_21753535be42.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_805b3cdad540.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_5bcc87e29638.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m2{transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-14.400000px;}
.v7{vertical-align:-12.960000px;}
.va{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.940546px;}
.vd{vertical-align:5.760000px;}
.ve{vertical-align:12.000000px;}
.v1{vertical-align:27.360000px;}
.v9{vertical-align:28.800000px;}
.vb{vertical-align:34.779658px;}
.v5{vertical-align:36.000000px;}
.v8{vertical-align:38.880000px;}
.v4{vertical-align:50.400000px;}
.ls49{letter-spacing:-2.289380px;}
.ls25{letter-spacing:-1.898750px;}
.ls53{letter-spacing:-0.689472px;}
.ls39{letter-spacing:-0.508896px;}
.ls35{letter-spacing:-0.492768px;}
.ls31{letter-spacing:-0.481536px;}
.ls30{letter-spacing:-0.448704px;}
.ls51{letter-spacing:-0.434006px;}
.ls21{letter-spacing:-0.434000px;}
.ls42{letter-spacing:-0.424453px;}
.ls4a{letter-spacing:-0.421344px;}
.ls40{letter-spacing:-0.412305px;}
.ls2e{letter-spacing:-0.396025px;}
.ls4b{letter-spacing:-0.393984px;}
.ls2c{letter-spacing:-0.390600px;}
.ls3b{letter-spacing:-0.361152px;}
.ls46{letter-spacing:-0.336354px;}
.ls43{letter-spacing:-0.330929px;}
.ls4f{letter-spacing:-0.260403px;}
.ls1b{letter-spacing:-0.245088px;}
.ls54{letter-spacing:-0.240768px;}
.ls8{letter-spacing:-0.238464px;}
.ls50{letter-spacing:-0.217003px;}
.ls3a{letter-spacing:-0.207936px;}
.ls7{letter-spacing:-0.198720px;}
.ls28{letter-spacing:-0.197541px;}
.ls33{letter-spacing:-0.179568px;}
.ls26{letter-spacing:-0.176902px;}
.ls4{letter-spacing:-0.158976px;}
.ls32{letter-spacing:-0.153216px;}
.lsf{letter-spacing:-0.139104px;}
.ls27{letter-spacing:-0.129728px;}
.ls5{letter-spacing:-0.125856px;}
.ls22{letter-spacing:-0.119350px;}
.ls9{letter-spacing:-0.119232px;}
.ls10{letter-spacing:-0.099360px;}
.ls48{letter-spacing:-0.097651px;}
.ls2d{letter-spacing:-0.097650px;}
.ls6{letter-spacing:-0.079488px;}
.ls41{letter-spacing:-0.079135px;}
.ls29{letter-spacing:-0.053071px;}
.lsa{letter-spacing:-0.039744px;}
.ls24{letter-spacing:-0.016275px;}
.ls61{letter-spacing:-0.009600px;}
.ls0{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000360px;}
.ls5f{letter-spacing:0.000600px;}
.ls3e{letter-spacing:0.005760px;}
.ls3f{letter-spacing:0.007200px;}
.ls5d{letter-spacing:0.007800px;}
.ls5e{letter-spacing:0.009600px;}
.lsb{letter-spacing:0.014400px;}
.ls2a{letter-spacing:0.053071px;}
.ls2b{letter-spacing:0.065100px;}
.ls37{letter-spacing:0.075168px;}
.ls23{letter-spacing:0.086800px;}
.ls45{letter-spacing:0.092226px;}
.ls2f{letter-spacing:0.097650px;}
.ls1f{letter-spacing:0.102360px;}
.ls1c{letter-spacing:0.104976px;}
.ls47{letter-spacing:0.108501px;}
.ls15{letter-spacing:0.119376px;}
.ls19{letter-spacing:0.119520px;}
.ls5b{letter-spacing:0.133632px;}
.ls62{letter-spacing:0.137808px;}
.ls3{letter-spacing:0.139680px;}
.ls1{letter-spacing:0.139824px;}
.ls4e{letter-spacing:0.139968px;}
.ls58{letter-spacing:0.140112px;}
.ls2{letter-spacing:0.141120px;}
.ls56{letter-spacing:0.167040px;}
.ls1d{letter-spacing:0.179568px;}
.ls11{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.180288px;}
.ls1a{letter-spacing:0.200448px;}
.ls55{letter-spacing:0.208800px;}
.ls52{letter-spacing:0.249553px;}
.ls20{letter-spacing:0.266112px;}
.ls38{letter-spacing:0.313632px;}
.ls3c{letter-spacing:0.324478px;}
.ls1e{letter-spacing:0.379750px;}
.ls44{letter-spacing:0.379755px;}
.ls36{letter-spacing:0.405072px;}
.ls17{letter-spacing:0.451584px;}
.ls34{letter-spacing:0.630576px;}
.ls18{letter-spacing:2.097216px;}
.ls12{letter-spacing:18.159264px;}
.ls16{letter-spacing:18.159408px;}
.ls13{letter-spacing:19.033920px;}
.ls57{letter-spacing:27.037728px;}
.ls5c{letter-spacing:87.499296px;}
.ls65{letter-spacing:94.656528px;}
.lse{letter-spacing:98.617536px;}
.lsd{letter-spacing:116.954352px;}
.lsc{letter-spacing:135.291312px;}
.ls63{letter-spacing:164.265984px;}
.ls64{letter-spacing:167.971968px;}
.ls3d{letter-spacing:210.341652px;}
.ls59{letter-spacing:240.391620px;}
.ls5a{letter-spacing:245.921040px;}
.ls4c{letter-spacing:1362.117168px;}
.ls4d{letter-spacing:1367.880048px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-59.020466px;}
.ws19{word-spacing:-58.914325px;}
.ws18{word-spacing:-58.790493px;}
.ws17{word-spacing:-57.068645px;}
.ws3c{word-spacing:-54.630474px;}
.ws15{word-spacing:-54.629754px;}
.ws3f{word-spacing:-54.500272px;}
.ws16{word-spacing:-54.250004px;}
.ws14{word-spacing:-54.130654px;}
.ws3d{word-spacing:-54.033716px;}
.ws3b{word-spacing:-53.990316px;}
.ws3e{word-spacing:-53.816713px;}
.ws2d{word-spacing:-35.891450px;}
.ws2f{word-spacing:-35.639656px;}
.ws2e{word-spacing:-35.546133px;}
.ws8{word-spacing:-20.030400px;}
.ws1{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.374976px;}
.ws6{word-spacing:-18.335232px;}
.wsa{word-spacing:-18.315360px;}
.ws5{word-spacing:-18.295488px;}
.ws3{word-spacing:-18.288864px;}
.ws2{word-spacing:-18.255744px;}
.ws7{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.176256px;}
.ws2a{word-spacing:-15.212160px;}
.ws39{word-spacing:-14.818176px;}
.ws2b{word-spacing:-14.730624px;}
.ws29{word-spacing:-13.524192px;}
.ws54{word-spacing:-13.353600px;}
.ws57{word-spacing:-13.344000px;}
.ws55{word-spacing:-13.334400px;}
.ws50{word-spacing:-12.014352px;}
.wsc{word-spacing:-11.809728px;}
.ws12{word-spacing:-11.788848px;}
.ws4d{word-spacing:-11.776320px;}
.ws28{word-spacing:-11.684448px;}
.ws47{word-spacing:-11.429712px;}
.ws27{word-spacing:-11.116512px;}
.ws38{word-spacing:-10.015200px;}
.ws37{word-spacing:-10.008000px;}
.wsb{word-spacing:-0.066240px;}
.ws11{word-spacing:-0.047520px;}
.ws56{word-spacing:-0.030000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:14.425200px;}
.wsf{word-spacing:14.545152px;}
.wsd{word-spacing:19.948608px;}
.ws10{word-spacing:21.502800px;}
.ws22{word-spacing:29.255280px;}
.ws41{word-spacing:31.801771px;}
.ws44{word-spacing:32.344279px;}
.ws13{word-spacing:34.871927px;}
.ws21{word-spacing:41.783353px;}
.ws1b{word-spacing:41.870153px;}
.ws1c{word-spacing:41.978653px;}
.ws1e{word-spacing:42.195653px;}
.ws1d{word-spacing:42.759853px;}
.ws20{word-spacing:42.765278px;}
.ws1f{word-spacing:42.857503px;}
.ws3a{word-spacing:45.510705px;}
.ws40{word-spacing:45.977440px;}
.ws24{word-spacing:46.759392px;}
.ws26{word-spacing:46.759992px;}
.ws25{word-spacing:46.858632px;}
.ws23{word-spacing:48.043632px;}
.ws48{word-spacing:57.105480px;}
.ws2c{word-spacing:72.554945px;}
.ws4c{word-spacing:74.608992px;}
.ws4a{word-spacing:74.609592px;}
.ws4b{word-spacing:74.708232px;}
.ws49{word-spacing:75.893232px;}
.ws31{word-spacing:82.455697px;}
.ws42{word-spacing:99.897230px;}
.ws32{word-spacing:105.582749px;}
.ws33{word-spacing:136.375487px;}
.ws30{word-spacing:142.842143px;}
.ws43{word-spacing:143.753511px;}
.ws45{word-spacing:145.804188px;}
.ws46{word-spacing:145.836739px;}
.ws34{word-spacing:180.231768px;}
.ws35{word-spacing:182.282445px;}
.ws36{word-spacing:182.314996px;}
.ws53{word-spacing:207.172992px;}
.ws52{word-spacing:208.457232px;}
.ws4e{word-spacing:217.787304px;}
.ws51{word-spacing:223.316904px;}
.ws4f{word-spacing:295.372632px;}
._0{margin-left:-1447.886400px;}
._30{margin-left:-16.615872px;}
._26{margin-left:-11.913408px;}
._2{margin-left:-1.016352px;}
._1{width:1.013616px;}
._8{width:2.122826px;}
._23{width:14.089536px;}
._1c{width:17.688528px;}
._4{width:27.007776px;}
._2c{width:32.345856px;}
._37{width:36.518976px;}
._36{width:40.162176px;}
._24{width:47.276352px;}
._31{width:50.919552px;}
._2b{width:54.628992px;}
._1e{width:59.796214px;}
._1d{width:62.576064px;}
._35{width:79.987680px;}
._28{width:87.180905px;}
._2a{width:91.299456px;}
._2d{width:95.022144px;}
._10{width:97.389606px;}
._13{width:98.453607px;}
._a{width:101.378859px;}
._f{width:102.771207px;}
._7{width:106.472775px;}
._32{width:109.647936px;}
._34{width:112.973184px;}
._6{width:114.935776px;}
._e{width:116.731610px;}
._b{width:127.085041px;}
._33{width:130.153536px;}
._2e{width:131.546880px;}
._d{width:153.636010px;}
._12{width:156.402760px;}
._18{width:158.314779px;}
._19{width:160.200261px;}
._21{width:162.868298px;}
._16{width:170.345011px;}
._c{width:171.538511px;}
._14{width:172.788997px;}
._1a{width:173.802613px;}
._22{width:174.955761px;}
._9{width:182.068596px;}
._25{width:193.984704px;}
._17{width:204.214148px;}
._1b{width:207.957398px;}
._11{width:212.226014px;}
._15{width:214.396014px;}
._27{width:222.640730px;}
._2f{width:268.773408px;}
._3{width:845.585280px;}
._20{width:847.227168px;}
._5{width:849.029760px;}
._1f{width:853.970976px;}
._29{width:1360.851120px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs11{font-size:30.000000px;}
.fs9{font-size:35.970111px;}
.fse{font-size:35.970585px;}
.fsf{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsb{font-size:39.508155px;}
.fs1{font-size:41.532000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.250004px;}
.fsd{font-size:54.250719px;}
.fsc{font-size:54.720000px;}
.fs10{font-size:57.793588px;}
.fsa{font-size:58.967395px;}
.fs12{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:4.560000px;}
.y159{bottom:4.680000px;}
.y182{bottom:5.040000px;}
.yf1{bottom:5.040030px;}
.y178{bottom:5.760000px;}
.y19c{bottom:8.250000px;}
.y19e{bottom:11.250000px;}
.y1a0{bottom:12.750000px;}
.y157{bottom:15.120000px;}
.y1a3{bottom:18.750000px;}
.y176{bottom:19.800000px;}
.yee{bottom:21.960030px;}
.y1a6{bottom:22.500000px;}
.y180{bottom:24.120000px;}
.y1a4{bottom:24.750000px;}
.y14f{bottom:28.080000px;}
.y172{bottom:32.760000px;}
.yea{bottom:34.920030px;}
.y17b{bottom:37.080000px;}
.y17a{bottom:46.800000px;}
.y150{bottom:50.040000px;}
.y10{bottom:52.500000px;}
.y183{bottom:56.520000px;}
.yf{bottom:57.060000px;}
.y179{bottom:59.040000px;}
.y17c{bottom:68.040000px;}
.y151{bottom:72.000000px;}
.yeb{bottom:87.480030px;}
.y173{bottom:88.920000px;}
.y152{bottom:93.960000px;}
.y17d{bottom:99.000000px;}
.y4{bottom:108.578077px;}
.yef{bottom:110.520000px;}
.y72{bottom:111.780000px;}
.y153{bottom:115.560000px;}
.y51{bottom:116.820000px;}
.y120{bottom:117.900000px;}
.y170{bottom:118.620000px;}
.y3{bottom:121.036638px;}
.ye8{bottom:121.860000px;}
.y20c{bottom:125.460000px;}
.y91{bottom:125.820000px;}
.y17e{bottom:129.960000px;}
.y2{bottom:133.495200px;}
.yc0{bottom:134.820000px;}
.y1bc{bottom:135.900000px;}
.y154{bottom:137.520000px;}
.y1f5{bottom:139.140000px;}
.yf0{bottom:139.680000px;}
.yec{bottom:139.680029px;}
.y71{bottom:140.220000px;}
.y21c{bottom:141.660000px;}
.y19a{bottom:143.820000px;}
.y174{bottom:145.080000px;}
.y50{bottom:145.260000px;}
.y5{bottom:146.054700px;}
.y11f{bottom:146.340000px;}
.y16f{bottom:147.060000px;}
.y14d{bottom:150.660000px;}
.y20b{bottom:153.900000px;}
.y90{bottom:154.260000px;}
.ye7{bottom:155.700000px;}
.ye9{bottom:156.780000px;}
.y155{bottom:159.480000px;}
.y158{bottom:160.920000px;}
.yc1{bottom:161.817600px;}
.y1bb{bottom:164.340000px;}
.y181{bottom:167.400000px;}
.y1f4{bottom:167.580000px;}
.y9f{bottom:167.940000px;}
.y70{bottom:169.020000px;}
.y21b{bottom:170.100000px;}
.y177{bottom:170.640000px;}
.y199{bottom:172.260000px;}
.y4f{bottom:173.700000px;}
.y11e{bottom:174.780000px;}
.y16e{bottom:175.500000px;}
.ybf{bottom:175.860000px;}
.y14c{bottom:179.100000px;}
.y156{bottom:181.080000px;}
.y17f{bottom:191.880000px;}
.yed{bottom:192.240030px;}
.y1ba{bottom:192.780000px;}
.y20a{bottom:194.220000px;}
.y8f{bottom:194.580000px;}
.y1f3{bottom:196.020000px;}
.y9e{bottom:197.460000px;}
.y21a{bottom:198.540000px;}
.y198{bottom:200.700000px;}
.y175{bottom:201.600000px;}
.y4e{bottom:202.140000px;}
.y11d{bottom:203.220000px;}
.y16d{bottom:203.940000px;}
.ybe{bottom:204.300000px;}
.y14b{bottom:207.900000px;}
.y6f{bottom:209.340000px;}
.y12e{bottom:216.540000px;}
.y1b9{bottom:221.220000px;}
.y209{bottom:222.660000px;}
.y8e{bottom:223.020000px;}
.y9d{bottom:225.900000px;}
.y197{bottom:229.140000px;}
.y4d{bottom:230.580000px;}
.y11c{bottom:231.660000px;}
.y14a{bottom:236.340000px;}
.y2d{bottom:236.700000px;}
.y6e{bottom:237.780000px;}
.y219{bottom:239.220000px;}
.ybd{bottom:244.620000px;}
.y12d{bottom:244.980000px;}
.y1b8{bottom:249.660000px;}
.y208{bottom:251.100000px;}
.y8d{bottom:251.820000px;}
.y9c{bottom:254.340000px;}
.y196{bottom:257.940000px;}
.y4c{bottom:259.020000px;}
.y11b{bottom:260.100000px;}
.y1f2{bottom:265.140000px;}
.y6d{bottom:266.220000px;}
.y218{bottom:267.660000px;}
.y16c{bottom:273.060000px;}
.y12c{bottom:273.420000px;}
.y149{bottom:276.660000px;}
.y2c{bottom:277.020000px;}
.y1b7{bottom:278.100000px;}
.y207{bottom:279.540000px;}
.y9b{bottom:282.780000px;}
.ybc{bottom:285.300000px;}
.y1e2{bottom:285.660000px;}
.y195{bottom:286.380000px;}
.y4b{bottom:287.820000px;}
.y11a{bottom:288.540000px;}
.y8{bottom:291.234300px;}
.y8c{bottom:292.140000px;}
.y1f1{bottom:293.580000px;}
.y6c{bottom:294.660000px;}
.y16b{bottom:301.500000px;}
.y12b{bottom:301.860000px;}
.y2b{bottom:305.460000px;}
.y7{bottom:305.634300px;}
.y1b6{bottom:306.540000px;}
.y217{bottom:307.980000px;}
.y9a{bottom:311.220000px;}
.ybb{bottom:313.740000px;}
.y1e1{bottom:314.100000px;}
.y194{bottom:314.820000px;}
.y4a{bottom:316.260000px;}
.y119{bottom:316.980000px;}
.y6{bottom:320.034300px;}
.y206{bottom:320.220000px;}
.y8b{bottom:320.580000px;}
.y6b{bottom:323.100000px;}
.y139{bottom:324.086407px;}
.y16a{bottom:329.940000px;}
.y12a{bottom:330.300000px;}
.y2a{bottom:333.900000px;}
.y1b5{bottom:334.980000px;}
.y216{bottom:336.420000px;}
.y99{bottom:339.660000px;}
.y1e0{bottom:342.900000px;}
.y49{bottom:344.700000px;}
.y138{bottom:347.675888px;}
.y205{bottom:348.660000px;}
.y8a{bottom:349.020000px;}
.y6a{bottom:351.540000px;}
.yba{bottom:352.980000px;}
.y193{bottom:355.140000px;}
.y118{bottom:357.660000px;}
.y169{bottom:358.380000px;}
.y129{bottom:358.740000px;}
.yb9{bottom:361.260000px;}
.y29{bottom:362.340000px;}
.y1b4{bottom:363.780000px;}
.y137{bottom:371.265491px;}
.y1df{bottom:372.060000px;}
.y48{bottom:373.140000px;}
.y215{bottom:377.100000px;}
.y89{bottom:377.460000px;}
.y69{bottom:379.980000px;}
.y117{bottom:386.100000px;}
.y168{bottom:386.820000px;}
.y204{bottom:388.980000px;}
.y28{bottom:390.780000px;}
.y1c3{bottom:391.860000px;}
.y1b3{bottom:392.220000px;}
.ye6{bottom:392.580000px;}
.y192{bottom:395.460000px;}
.y148{bottom:397.980000px;}
.y128{bottom:399.060000px;}
.y47{bottom:401.580000px;}
.y1de{bottom:402.300000px;}
.y136{bottom:404.140125px;}
.yb8{bottom:404.820000px;}
.y214{bottom:405.540000px;}
.y88{bottom:405.900000px;}
.y116{bottom:414.540000px;}
.y167{bottom:415.260000px;}
.y203{bottom:417.420000px;}
.y27{bottom:419.220000px;}
.y68{bottom:420.660000px;}
.ye5{bottom:421.020000px;}
.y191{bottom:423.900000px;}
.y127{bottom:427.500000px;}
.y135{bottom:427.729605px;}
.yd5{bottom:429.327842px;}
.y46{bottom:430.020000px;}
.y1dd{bottom:431.820000px;}
.y1c2{bottom:432.540000px;}
.yb7{bottom:433.260000px;}
.y87{bottom:434.340000px;}
.y147{bottom:438.660000px;}
.y115{bottom:442.980000px;}
.y166{bottom:443.700000px;}
.y213{bottom:445.860000px;}
.y1ca{bottom:446.580000px;}
.y26{bottom:447.660000px;}
.y67{bottom:449.100000px;}
.ye4{bottom:449.460000px;}
.yd4{bottom:449.969993px;}
.y134{bottom:451.319208px;}
.y190{bottom:452.700000px;}
.y202{bottom:457.740000px;}
.y45{bottom:458.460000px;}
.y1f0{bottom:459.900000px;}
.y1dc{bottom:460.260000px;}
.y1c1{bottom:460.980000px;}
.yb6{bottom:461.700000px;}
.y86{bottom:462.780000px;}
.y126{bottom:468.180000px;}
.yd3{bottom:470.605388px;}
.y114{bottom:471.420000px;}
.y165{bottom:472.140000px;}
.y212{bottom:474.300000px;}
.y1c9{bottom:475.020000px;}
.y66{bottom:477.540000px;}
.ye3{bottom:477.900000px;}
.y146{bottom:478.980000px;}
.y18f{bottom:481.140000px;}
.y133{bottom:482.425165px;}
.y201{bottom:486.540000px;}
.y44{bottom:486.900000px;}
.y25{bottom:488.340000px;}
.y1db{bottom:488.700000px;}
.y1c0{bottom:489.420000px;}
.yb5{bottom:490.140000px;}
.y85{bottom:491.220000px;}
.y113{bottom:499.860000px;}
.y164{bottom:500.580000px;}
.yd2{bottom:501.564499px;}
.y211{bottom:502.740000px;}
.y1c8{bottom:503.460000px;}
.y65{bottom:505.980000px;}
.y132{bottom:506.008012px;}
.ye2{bottom:506.340000px;}
.y125{bottom:507.420000px;}
.y18e{bottom:509.580000px;}
.y200{bottom:514.980000px;}
.y43{bottom:515.340000px;}
.y24{bottom:516.780000px;}
.y1da{bottom:517.140000px;}
.y1b2{bottom:517.860000px;}
.yb4{bottom:518.580000px;}
.y145{bottom:519.300000px;}
.y84{bottom:519.660000px;}
.yd1{bottom:522.206649px;}
.y124{bottom:526.140000px;}
.y1ef{bottom:528.660000px;}
.y163{bottom:529.020000px;}
.y1c7{bottom:531.900000px;}
.y64{bottom:534.420000px;}
.ye1{bottom:534.780000px;}
.y130{bottom:537.113969px;}
.y18d{bottom:538.020000px;}
.y112{bottom:540.180000px;}
.y106{bottom:541.297556px;}
.yd0{bottom:542.841921px;}
.y210{bottom:543.420000px;}
.y42{bottom:543.780000px;}
.y123{bottom:544.860000px;}
.y23{bottom:545.220000px;}
.y1d9{bottom:545.580000px;}
.y12f{bottom:545.815828px;}
.y1bf{bottom:546.300000px;}
.yb3{bottom:547.020000px;}
.y83{bottom:548.100000px;}
.y131{bottom:554.510808px;}
.y1ff{bottom:555.300000px;}
.y1ee{bottom:557.100000px;}
.y162{bottom:557.460000px;}
.y1b1{bottom:558.540000px;}
.y144{bottom:559.980000px;}
.y1c6{bottom:560.340000px;}
.y63{bottom:562.860000px;}
.y105{bottom:563.708533px;}
.y18c{bottom:566.460000px;}
.y20f{bottom:571.860000px;}
.y41{bottom:572.220000px;}
.y22{bottom:573.660000px;}
.ycf{bottom:573.801032px;}
.y1d8{bottom:574.020000px;}
.y1be{bottom:574.740000px;}
.yb2{bottom:575.460000px;}
.y111{bottom:580.860000px;}
.y122{bottom:582.300000px;}
.y1fe{bottom:583.740000px;}
.y161{bottom:585.900000px;}
.y104{bottom:586.119510px;}
.y1b0{bottom:586.980000px;}
.y82{bottom:588.780000px;}
.y62{bottom:591.300000px;}
.yce{bottom:594.443183px;}
.y18b{bottom:594.900000px;}
.y1ed{bottom:597.780000px;}
.y143{bottom:599.220000px;}
.y40{bottom:600.660000px;}
.y21{bottom:602.100000px;}
.y1d7{bottom:602.460000px;}
.y1bd{bottom:603.180000px;}
.yb1{bottom:603.900000px;}
.yf8{bottom:607.140000px;}
.y1fd{bottom:612.180000px;}
.y160{bottom:614.340000px;}
.y1af{bottom:615.420000px;}
.ye0{bottom:615.780000px;}
.y1c5{bottom:617.220000px;}
.y103{bottom:617.815517px;}
.y142{bottom:617.940000px;}
.ycb{bottom:619.061825px;}
.y61{bottom:619.740000px;}
.yc6{bottom:620.236787px;}
.yc8{bottom:620.529621px;}
.ycd{bottom:620.530113px;}
.y110{bottom:621.180000px;}
.yc3{bottom:621.568627px;}
.y18a{bottom:623.340000px;}
.y1ec{bottom:626.220000px;}
.y81{bottom:629.100000px;}
.yc2{bottom:630.263541px;}
.y1d6{bottom:630.900000px;}
.yb0{bottom:632.340000px;}
.yc9{bottom:637.633114px;}
.yc4{bottom:638.958456px;}
.yc7{bottom:639.108773px;}
.ycc{bottom:639.109265px;}
.yc5{bottom:640.137042px;}
.y102{bottom:640.226494px;}
.y1fc{bottom:640.620000px;}
.y3f{bottom:641.340000px;}
.y20{bottom:642.420000px;}
.y15f{bottom:642.780000px;}
.y1ae{bottom:643.860000px;}
.yf7{bottom:644.580000px;}
.yca{bottom:645.004284px;}
.y1c4{bottom:645.660000px;}
.y60{bottom:648.180000px;}
.y189{bottom:651.780000px;}
.y141{bottom:655.740000px;}
.ydf{bottom:656.100000px;}
.y80{bottom:657.540000px;}
.y1d5{bottom:659.340000px;}
.yaf{bottom:660.780000px;}
.y10f{bottom:661.860000px;}
.y101{bottom:662.630714px;}
.y1eb{bottom:666.540000px;}
.y3e{bottom:669.780000px;}
.y1f{bottom:670.860000px;}
.y15e{bottom:671.220000px;}
.y1ad{bottom:672.300000px;}
.y5f{bottom:676.620000px;}
.y188{bottom:680.220000px;}
.y1fb{bottom:681.300000px;}
.y140{bottom:684.180000px;}
.y7f{bottom:685.980000px;}
.y1d4{bottom:688.140000px;}
.y98{bottom:688.500000px;}
.y100{bottom:692.556693px;}
.y1ea{bottom:694.980000px;}
.yde{bottom:696.780000px;}
.y3d{bottom:698.220000px;}
.y1e{bottom:699.300000px;}
.y15d{bottom:699.660000px;}
.y1ac{bottom:700.740000px;}
.yae{bottom:701.100000px;}
.y10e{bottom:702.180000px;}
.y5e{bottom:705.060000px;}
.y187{bottom:708.660000px;}
.y1fa{bottom:709.740000px;}
.y13f{bottom:712.620000px;}
.y7e{bottom:714.420000px;}
.yff{bottom:714.966318px;}
.y1d3{bottom:716.580000px;}
.y97{bottom:717.300000px;}
.y1e9{bottom:723.420000px;}
.y3c{bottom:726.660000px;}
.y1d{bottom:728.100000px;}
.y1ab{bottom:729.180000px;}
.y5d{bottom:733.500000px;}
.ydd{bottom:737.100000px;}
.y20e{bottom:738.180000px;}
.yfe{bottom:739.879634px;}
.y13e{bottom:741.060000px;}
.yad{bottom:741.420000px;}
.y10d{bottom:742.500000px;}
.y7d{bottom:742.860000px;}
.y1d2{bottom:745.020000px;}
.y96{bottom:745.740000px;}
.y1f9{bottom:750.060000px;}
.yac{bottom:752.580000px;}
.y3b{bottom:755.100000px;}
.y1aa{bottom:757.620000px;}
.y1e8{bottom:764.100000px;}
.yfd{bottom:765.090371px;}
.yfa{bottom:765.235212px;}
.y186{bottom:765.540000px;}
.yfc{bottom:766.859293px;}
.yf9{bottom:767.150694px;}
.y1{bottom:767.491050px;}
.yfb{bottom:767.885831px;}
.y1c{bottom:769.500000px;}
.y7c{bottom:771.300000px;}
.y1d1{bottom:773.460000px;}
.y5c{bottom:774.180000px;}
.ydc{bottom:777.420000px;}
.y1f8{bottom:778.500000px;}
.y15c{bottom:780.660000px;}
.y10c{bottom:783.180000px;}
.y3a{bottom:783.540000px;}
.ye{bottom:784.040550px;}
.y1a9{bottom:786.060000px;}
.y1e7{bottom:792.540000px;}
.y13d{bottom:797.940000px;}
.y185{bottom:799.020000px;}
.y1a5{bottom:799.031250px;}
.y7b{bottom:800.100000px;}
.yab{bottom:800.820000px;}
.y1d0{bottom:801.900000px;}
.y5b{bottom:802.620000px;}
.y20d{bottom:806.940000px;}
.y1b{bottom:811.260000px;}
.y39{bottom:811.980000px;}
.y1a8{bottom:814.500000px;}
.ydb{bottom:818.100000px;}
.y1f7{bottom:818.820000px;}
.y15b{bottom:820.620000px;}
.y10b{bottom:821.340000px;}
.y10a{bottom:822.780000px;}
.y121{bottom:826.380000px;}
.y7a{bottom:828.540000px;}
.yaa{bottom:829.260000px;}
.y1cf{bottom:830.340000px;}
.y5a{bottom:831.060000px;}
.y1e6{bottom:832.860000px;}
.y1a2{bottom:837.281250px;}
.y38{bottom:840.420000px;}
.y109{bottom:842.580000px;}
.y1a7{bottom:842.940000px;}
.y1f6{bottom:847.260000px;}
.y1a{bottom:851.940000px;}
.y13c{bottom:854.820000px;}
.y79{bottom:856.980000px;}
.ya9{bottom:857.700000px;}
.y15a{bottom:858.420000px;}
.y1ce{bottom:858.780000px;}
.y95{bottom:859.500000px;}
.y171{bottom:859.860000px;}
.y1e5{bottom:861.300000px;}
.y108{bottom:862.380000px;}
.y37{bottom:868.860000px;}
.y59{bottom:871.380000px;}
.yda{bottom:876.060000px;}
.y1a1{bottom:879.281250px;}
.yf6{bottom:883.260000px;}
.yd{bottom:883.991850px;}
.y78{bottom:885.420000px;}
.ya8{bottom:886.140000px;}
.y1cd{bottom:887.220000px;}
.y94{bottom:887.940000px;}
.y19{bottom:892.260000px;}
.y36{bottom:897.300000px;}
.y13b{bottom:899.100000px;}
.y58{bottom:899.820000px;}
.y1e4{bottom:901.620000px;}
.y19f{bottom:909.281250px;}
.yf5{bottom:912.060000px;}
.y77{bottom:913.860000px;}
.ya7{bottom:914.580000px;}
.y1cc{bottom:915.660000px;}
.y93{bottom:916.380000px;}
.y35{bottom:925.740000px;}
.yc{bottom:927.191850px;}
.y18{bottom:927.540000px;}
.y57{bottom:928.260000px;}
.y1e3{bottom:930.060000px;}
.y13a{bottom:932.940000px;}
.y14e{bottom:935.100000px;}
.y19d{bottom:939.281250px;}
.yf4{bottom:940.500000px;}
.y76{bottom:942.300000px;}
.ya6{bottom:943.020000px;}
.y92{bottom:944.820000px;}
.y34{bottom:954.180000px;}
.y56{bottom:956.700000px;}
.y1cb{bottom:957.420000px;}
.y17{bottom:961.380000px;}
.yf3{bottom:968.940000px;}
.y19b{bottom:969.281250px;}
.yb{bottom:970.391850px;}
.yd9{bottom:970.740000px;}
.ya5{bottom:971.460000px;}
.y33{bottom:982.620000px;}
.y75{bottom:983.700000px;}
.y55{bottom:985.140000px;}
.y16{bottom:996.660000px;}
.yf2{bottom:997.380000px;}
.yd8{bottom:999.180000px;}
.ya4{bottom:999.900000px;}
.y21d{bottom:1001.700000px;}
.y32{bottom:1011.060000px;}
.y54{bottom:1013.580000px;}
.ya{bottom:1015.431000px;}
.y184{bottom:1016.460000px;}
.y74{bottom:1025.820000px;}
.yd7{bottom:1027.620000px;}
.ya3{bottom:1028.340000px;}
.y15{bottom:1030.140000px;}
.y9{bottom:1037.031000px;}
.y31{bottom:1039.500000px;}
.y53{bottom:1042.020000px;}
.y73{bottom:1054.260000px;}
.yd6{bottom:1056.060000px;}
.y30{bottom:1067.940000px;}
.ya2{bottom:1068.660000px;}
.y14{bottom:1070.820000px;}
.y52{bottom:1082.700000px;}
.y2f{bottom:1096.380000px;}
.y107{bottom:1099.260000px;}
.ya1{bottom:1109.340000px;}
.y13{bottom:1111.140000px;}
.y2e{bottom:1138.140000px;}
.ya0{bottom:1138.500000px;}
.y12{bottom:1139.580000px;}
.h6{height:21.000000px;}
.h2c{height:22.500000px;}
.h1e{height:26.187570px;}
.h16{height:28.763017px;}
.h2e{height:30.000000px;}
.h1b{height:30.402422px;}
.h9{height:30.422813px;}
.hf{height:31.672266px;}
.h2{height:31.757379px;}
.h1a{height:34.595859px;}
.h2d{height:34.945312px;}
.h2f{height:34.968750px;}
.h1{height:36.703125px;}
.h25{height:39.140482px;}
.h13{height:39.495486px;}
.h1f{height:39.496007px;}
.h17{height:39.521975px;}
.h22{height:39.573049px;}
.h23{height:39.573541px;}
.h21{height:39.578946px;}
.h29{height:39.600076px;}
.h24{height:39.600568px;}
.h18{height:39.837656px;}
.h20{height:40.264436px;}
.h30{height:42.000000px;}
.h1d{height:42.436553px;}
.h15{height:42.929876px;}
.h32{height:43.989258px;}
.h10{height:44.149219px;}
.h26{height:45.597656px;}
.hd{height:46.736719px;}
.h7{height:48.224531px;}
.h5{height:48.256875px;}
.ha{height:52.417969px;}
.h14{height:53.323872px;}
.h3{height:55.054688px;}
.h8{height:57.782812px;}
.he{height:70.552266px;}
.h12{height:74.275144px;}
.h28{height:74.275927px;}
.hc{height:97.136719px;}
.h4{height:110.109375px;}
.h31{height:193.500000px;}
.h19{height:210.600000px;}
.h2a{height:219.960000px;}
.h2b{height:226.440000px;}
.h27{height:648.997200px;}
.h11{height:730.950000px;}
.h1c{height:856.034100px;}
.hb{height:1237.500000px;}
.h0{height:1263.000000px;}
.w2{width:10.500000px;}
.w7{width:19.500000px;}
.we{width:153.750000px;}
.wc{width:175.500000px;}
.wd{width:187.500000px;}
.w5{width:304.920000px;}
.wa{width:339.840000px;}
.wb{width:340.200000px;}
.w9{width:344.520000px;}
.wf{width:705.000000px;}
.w8{width:730.949970px;}
.w6{width:730.950000px;}
.w4{width:806.550090px;}
.w3{width:873.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x52{left:6.750000px;}
.x53{left:8.250000px;}
.x4a{left:13.370250px;}
.x21{left:17.519700px;}
.x7{left:19.500000px;}
.x44{left:21.224700px;}
.x48{left:27.388215px;}
.x22{left:30.119700px;}
.x47{left:33.230790px;}
.x4e{left:39.329850px;}
.x20{left:41.095350px;}
.x49{left:45.184605px;}
.x1f{left:46.937850px;}
.x45{left:51.480000px;}
.x8{left:61.620108px;}
.x1{left:64.701150px;}
.x10{left:74.300512px;}
.x24{left:75.922855px;}
.x3{left:81.120108px;}
.x51{left:83.250000px;}
.xf{left:85.949910px;}
.x46{left:95.880000px;}
.x23{left:103.052856px;}
.x56{left:106.620132px;}
.x5{left:108.120108px;}
.x38{left:109.424880px;}
.x1c{left:134.295024px;}
.xc{left:140.199108px;}
.x9{left:141.358884px;}
.x39{left:149.632714px;}
.x6{left:162.120108px;}
.x25{left:163.783046px;}
.x4f{left:168.044400px;}
.x26{left:169.238021px;}
.x27{left:173.071762px;}
.xd{left:179.889036px;}
.xa{left:187.747548px;}
.x4c{left:192.317400px;}
.x3a{left:204.028539px;}
.x2{left:205.824450px;}
.x3b{left:216.119189px;}
.x28{left:226.873736px;}
.x29{left:234.988878px;}
.x37{left:243.782220px;}
.x2a{left:245.895266px;}
.xe{left:249.671280px;}
.xb{left:257.529792px;}
.x3c{left:259.161333px;}
.x3d{left:260.635273px;}
.x43{left:275.160000px;}
.x11{left:278.476459px;}
.x4b{left:282.470850px;}
.x1e{left:294.600000px;}
.x2b{left:303.384791px;}
.x2c{left:311.500425px;}
.x3e{left:314.593388px;}
.x2d{left:316.948889px;}
.x2e{left:320.789018px;}
.x12{left:325.064264px;}
.x3f{left:326.975066px;}
.x40{left:364.712848px;}
.x14{left:366.342353px;}
.x2f{left:374.292347px;}
.x13{left:382.849265px;}
.x41{left:390.366859px;}
.x30{left:393.752202px;}
.x31{left:397.593927px;}
.x15{left:430.024540px;}
.x16{left:432.380196px;}
.x54{left:446.250000px;}
.x4d{left:459.120000px;}
.x32{left:460.976629px;}
.x19{left:483.242333px;}
.x17{left:493.416309px;}
.x18{left:512.284404px;}
.x33{left:537.790507px;}
.x1a{left:547.959043px;}
.x1b{left:559.900467px;}
.x1d{left:599.594880px;}
.x42{left:619.034880px;}
.x55{left:633.750000px;}
.x34{left:710.792760px;}
.x35{left:719.052240px;}
.x50{left:786.000000px;}
.x36{left:793.500000px;}
.x4{left:802.500000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-12.800000pt;}
.v7{vertical-align:-11.520000pt;}
.va{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.613819pt;}
.vd{vertical-align:5.120000pt;}
.ve{vertical-align:10.666667pt;}
.v1{vertical-align:24.320000pt;}
.v9{vertical-align:25.600000pt;}
.vb{vertical-align:30.915251pt;}
.v5{vertical-align:32.000000pt;}
.v8{vertical-align:34.560000pt;}
.v4{vertical-align:44.800000pt;}
.ls49{letter-spacing:-2.035005pt;}
.ls25{letter-spacing:-1.687778pt;}
.ls53{letter-spacing:-0.612864pt;}
.ls39{letter-spacing:-0.452352pt;}
.ls35{letter-spacing:-0.438016pt;}
.ls31{letter-spacing:-0.428032pt;}
.ls30{letter-spacing:-0.398848pt;}
.ls51{letter-spacing:-0.385783pt;}
.ls21{letter-spacing:-0.385778pt;}
.ls42{letter-spacing:-0.377291pt;}
.ls4a{letter-spacing:-0.374528pt;}
.ls40{letter-spacing:-0.366494pt;}
.ls2e{letter-spacing:-0.352022pt;}
.ls4b{letter-spacing:-0.350208pt;}
.ls2c{letter-spacing:-0.347200pt;}
.ls3b{letter-spacing:-0.321024pt;}
.ls46{letter-spacing:-0.298982pt;}
.ls43{letter-spacing:-0.294159pt;}
.ls4f{letter-spacing:-0.231470pt;}
.ls1b{letter-spacing:-0.217856pt;}
.ls54{letter-spacing:-0.214016pt;}
.ls8{letter-spacing:-0.211968pt;}
.ls50{letter-spacing:-0.192891pt;}
.ls3a{letter-spacing:-0.184832pt;}
.ls7{letter-spacing:-0.176640pt;}
.ls28{letter-spacing:-0.175592pt;}
.ls33{letter-spacing:-0.159616pt;}
.ls26{letter-spacing:-0.157246pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls32{letter-spacing:-0.136192pt;}
.lsf{letter-spacing:-0.123648pt;}
.ls27{letter-spacing:-0.115314pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls22{letter-spacing:-0.106089pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls10{letter-spacing:-0.088320pt;}
.ls48{letter-spacing:-0.086801pt;}
.ls2d{letter-spacing:-0.086800pt;}
.ls6{letter-spacing:-0.070656pt;}
.ls41{letter-spacing:-0.070342pt;}
.ls29{letter-spacing:-0.047174pt;}
.lsa{letter-spacing:-0.035328pt;}
.ls24{letter-spacing:-0.014467pt;}
.ls61{letter-spacing:-0.008533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000320pt;}
.ls5f{letter-spacing:0.000533pt;}
.ls3e{letter-spacing:0.005120pt;}
.ls3f{letter-spacing:0.006400pt;}
.ls5d{letter-spacing:0.006933pt;}
.ls5e{letter-spacing:0.008533pt;}
.lsb{letter-spacing:0.012800pt;}
.ls2a{letter-spacing:0.047174pt;}
.ls2b{letter-spacing:0.057867pt;}
.ls37{letter-spacing:0.066816pt;}
.ls23{letter-spacing:0.077156pt;}
.ls45{letter-spacing:0.081979pt;}
.ls2f{letter-spacing:0.086800pt;}
.ls1f{letter-spacing:0.090986pt;}
.ls1c{letter-spacing:0.093312pt;}
.ls47{letter-spacing:0.096446pt;}
.ls15{letter-spacing:0.106112pt;}
.ls19{letter-spacing:0.106240pt;}
.ls5b{letter-spacing:0.118784pt;}
.ls62{letter-spacing:0.122496pt;}
.ls3{letter-spacing:0.124160pt;}
.ls1{letter-spacing:0.124288pt;}
.ls4e{letter-spacing:0.124416pt;}
.ls58{letter-spacing:0.124544pt;}
.ls2{letter-spacing:0.125440pt;}
.ls56{letter-spacing:0.148480pt;}
.ls1d{letter-spacing:0.159616pt;}
.ls11{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.160256pt;}
.ls1a{letter-spacing:0.178176pt;}
.ls55{letter-spacing:0.185600pt;}
.ls52{letter-spacing:0.221825pt;}
.ls20{letter-spacing:0.236544pt;}
.ls38{letter-spacing:0.278784pt;}
.ls3c{letter-spacing:0.288425pt;}
.ls1e{letter-spacing:0.337556pt;}
.ls44{letter-spacing:0.337560pt;}
.ls36{letter-spacing:0.360064pt;}
.ls17{letter-spacing:0.401408pt;}
.ls34{letter-spacing:0.560512pt;}
.ls18{letter-spacing:1.864192pt;}
.ls12{letter-spacing:16.141568pt;}
.ls16{letter-spacing:16.141696pt;}
.ls13{letter-spacing:16.919040pt;}
.ls57{letter-spacing:24.033536pt;}
.ls5c{letter-spacing:77.777152pt;}
.ls65{letter-spacing:84.139136pt;}
.lse{letter-spacing:87.660032pt;}
.lsd{letter-spacing:103.959424pt;}
.lsc{letter-spacing:120.258944pt;}
.ls63{letter-spacing:146.014208pt;}
.ls64{letter-spacing:149.308416pt;}
.ls3d{letter-spacing:186.970357pt;}
.ls59{letter-spacing:213.681440pt;}
.ls5a{letter-spacing:218.596480pt;}
.ls4c{letter-spacing:1210.770816pt;}
.ls4d{letter-spacing:1215.893376pt;}
.ws1a{word-spacing:-52.462636pt;}
.ws19{word-spacing:-52.368288pt;}
.ws18{word-spacing:-52.258216pt;}
.ws17{word-spacing:-50.727685pt;}
.ws3c{word-spacing:-48.560421pt;}
.ws15{word-spacing:-48.559781pt;}
.ws3f{word-spacing:-48.444686pt;}
.ws16{word-spacing:-48.222225pt;}
.ws14{word-spacing:-48.116137pt;}
.ws3d{word-spacing:-48.029970pt;}
.ws3b{word-spacing:-47.991392pt;}
.ws3e{word-spacing:-47.837078pt;}
.ws2d{word-spacing:-31.903511pt;}
.ws2f{word-spacing:-31.679694pt;}
.ws2e{word-spacing:-31.596562pt;}
.ws8{word-spacing:-17.804800pt;}
.ws1{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.333312pt;}
.ws6{word-spacing:-16.297984pt;}
.wsa{word-spacing:-16.280320pt;}
.ws5{word-spacing:-16.262656pt;}
.ws3{word-spacing:-16.256768pt;}
.ws2{word-spacing:-16.227328pt;}
.ws7{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.156672pt;}
.ws2a{word-spacing:-13.521920pt;}
.ws39{word-spacing:-13.171712pt;}
.ws2b{word-spacing:-13.093888pt;}
.ws29{word-spacing:-12.021504pt;}
.ws54{word-spacing:-11.869867pt;}
.ws57{word-spacing:-11.861333pt;}
.ws55{word-spacing:-11.852800pt;}
.ws50{word-spacing:-10.679424pt;}
.wsc{word-spacing:-10.497536pt;}
.ws12{word-spacing:-10.478976pt;}
.ws4d{word-spacing:-10.467840pt;}
.ws28{word-spacing:-10.386176pt;}
.ws47{word-spacing:-10.159744pt;}
.ws27{word-spacing:-9.881344pt;}
.ws38{word-spacing:-8.902400pt;}
.ws37{word-spacing:-8.896000pt;}
.wsb{word-spacing:-0.058880pt;}
.ws11{word-spacing:-0.042240pt;}
.ws56{word-spacing:-0.026667pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:12.822400pt;}
.wsf{word-spacing:12.929024pt;}
.wsd{word-spacing:17.732096pt;}
.ws10{word-spacing:19.113600pt;}
.ws22{word-spacing:26.004693pt;}
.ws41{word-spacing:28.268241pt;}
.ws44{word-spacing:28.750470pt;}
.ws13{word-spacing:30.997268pt;}
.ws21{word-spacing:37.140758pt;}
.ws1b{word-spacing:37.217914pt;}
.ws1c{word-spacing:37.314358pt;}
.ws1e{word-spacing:37.507247pt;}
.ws1d{word-spacing:38.008758pt;}
.ws20{word-spacing:38.013580pt;}
.ws1f{word-spacing:38.095558pt;}
.ws3a{word-spacing:40.453960pt;}
.ws40{word-spacing:40.868836pt;}
.ws24{word-spacing:41.563904pt;}
.ws26{word-spacing:41.564437pt;}
.ws25{word-spacing:41.652117pt;}
.ws23{word-spacing:42.705451pt;}
.ws48{word-spacing:50.760427pt;}
.ws2c{word-spacing:64.493285pt;}
.ws4c{word-spacing:66.319104pt;}
.ws4a{word-spacing:66.319637pt;}
.ws4b{word-spacing:66.407317pt;}
.ws49{word-spacing:67.460651pt;}
.ws31{word-spacing:73.293953pt;}
.ws42{word-spacing:88.797538pt;}
.ws32{word-spacing:93.851333pt;}
.ws33{word-spacing:121.222655pt;}
.ws30{word-spacing:126.970794pt;}
.ws43{word-spacing:127.780899pt;}
.ws45{word-spacing:129.603723pt;}
.ws46{word-spacing:129.632656pt;}
.ws34{word-spacing:160.206016pt;}
.ws35{word-spacing:162.028840pt;}
.ws36{word-spacing:162.057774pt;}
.ws53{word-spacing:184.153771pt;}
.ws52{word-spacing:185.295317pt;}
.ws4e{word-spacing:193.588715pt;}
.ws51{word-spacing:198.503915pt;}
.ws4f{word-spacing:262.553451pt;}
._0{margin-left:-1287.010133pt;}
._30{margin-left:-14.769664pt;}
._26{margin-left:-10.589696pt;}
._2{margin-left:-0.903424pt;}
._1{width:0.900992pt;}
._8{width:1.886957pt;}
._23{width:12.524032pt;}
._1c{width:15.723136pt;}
._4{width:24.006912pt;}
._2c{width:28.751872pt;}
._37{width:32.461312pt;}
._36{width:35.699712pt;}
._24{width:42.023424pt;}
._31{width:45.261824pt;}
._2b{width:48.559104pt;}
._1e{width:53.152190pt;}
._1d{width:55.623168pt;}
._35{width:71.100160pt;}
._28{width:77.494138pt;}
._2a{width:81.155072pt;}
._2d{width:84.464128pt;}
._10{width:86.568539pt;}
._13{width:87.514317pt;}
._a{width:90.114541pt;}
._f{width:91.352184pt;}
._7{width:94.642467pt;}
._32{width:97.464832pt;}
._34{width:100.420608pt;}
._6{width:102.165134pt;}
._e{width:103.761431pt;}
._b{width:112.964480pt;}
._33{width:115.692032pt;}
._2e{width:116.930560pt;}
._d{width:136.565342pt;}
._12{width:139.024676pt;}
._18{width:140.724248pt;}
._19{width:142.400232pt;}
._21{width:144.771820pt;}
._16{width:151.417788pt;}
._c{width:152.478677pt;}
._14{width:153.590220pt;}
._1a{width:154.491212pt;}
._22{width:155.516232pt;}
._9{width:161.838752pt;}
._25{width:172.430848pt;}
._17{width:181.523687pt;}
._1b{width:184.851020pt;}
._11{width:188.645346pt;}
._15{width:190.574235pt;}
._27{width:197.902871pt;}
._2f{width:238.909696pt;}
._3{width:751.631360pt;}
._20{width:753.090816pt;}
._5{width:754.693120pt;}
._1f{width:759.085312pt;}
._29{width:1209.645440pt;}
.fs11{font-size:26.666667pt;}
.fs9{font-size:31.973432pt;}
.fse{font-size:31.973854pt;}
.fsf{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:35.118360pt;}
.fs1{font-size:36.917333pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.222225pt;}
.fsd{font-size:48.222861pt;}
.fsc{font-size:48.640000pt;}
.fs10{font-size:51.372078pt;}
.fsa{font-size:52.415462pt;}
.fs12{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:4.053333pt;}
.y159{bottom:4.160000pt;}
.y182{bottom:4.480000pt;}
.yf1{bottom:4.480027pt;}
.y178{bottom:5.120000pt;}
.y19c{bottom:7.333333pt;}
.y19e{bottom:10.000000pt;}
.y1a0{bottom:11.333333pt;}
.y157{bottom:13.440000pt;}
.y1a3{bottom:16.666667pt;}
.y176{bottom:17.600000pt;}
.yee{bottom:19.520027pt;}
.y1a6{bottom:20.000000pt;}
.y180{bottom:21.440000pt;}
.y1a4{bottom:22.000000pt;}
.y14f{bottom:24.960000pt;}
.y172{bottom:29.120000pt;}
.yea{bottom:31.040027pt;}
.y17b{bottom:32.960000pt;}
.y17a{bottom:41.600000pt;}
.y150{bottom:44.480000pt;}
.y10{bottom:46.666667pt;}
.y183{bottom:50.240000pt;}
.yf{bottom:50.720000pt;}
.y179{bottom:52.480000pt;}
.y17c{bottom:60.480000pt;}
.y151{bottom:64.000000pt;}
.yeb{bottom:77.760027pt;}
.y173{bottom:79.040000pt;}
.y152{bottom:83.520000pt;}
.y17d{bottom:88.000000pt;}
.y4{bottom:96.513846pt;}
.yef{bottom:98.240000pt;}
.y72{bottom:99.360000pt;}
.y153{bottom:102.720000pt;}
.y51{bottom:103.840000pt;}
.y120{bottom:104.800000pt;}
.y170{bottom:105.440000pt;}
.y3{bottom:107.588123pt;}
.ye8{bottom:108.320000pt;}
.y20c{bottom:111.520000pt;}
.y91{bottom:111.840000pt;}
.y17e{bottom:115.520000pt;}
.y2{bottom:118.662400pt;}
.yc0{bottom:119.840000pt;}
.y1bc{bottom:120.800000pt;}
.y154{bottom:122.240000pt;}
.y1f5{bottom:123.680000pt;}
.yf0{bottom:124.160000pt;}
.yec{bottom:124.160025pt;}
.y71{bottom:124.640000pt;}
.y21c{bottom:125.920000pt;}
.y19a{bottom:127.840000pt;}
.y174{bottom:128.960000pt;}
.y50{bottom:129.120000pt;}
.y5{bottom:129.826400pt;}
.y11f{bottom:130.080000pt;}
.y16f{bottom:130.720000pt;}
.y14d{bottom:133.920000pt;}
.y20b{bottom:136.800000pt;}
.y90{bottom:137.120000pt;}
.ye7{bottom:138.400000pt;}
.ye9{bottom:139.360000pt;}
.y155{bottom:141.760000pt;}
.y158{bottom:143.040000pt;}
.yc1{bottom:143.837867pt;}
.y1bb{bottom:146.080000pt;}
.y181{bottom:148.800000pt;}
.y1f4{bottom:148.960000pt;}
.y9f{bottom:149.280000pt;}
.y70{bottom:150.240000pt;}
.y21b{bottom:151.200000pt;}
.y177{bottom:151.680000pt;}
.y199{bottom:153.120000pt;}
.y4f{bottom:154.400000pt;}
.y11e{bottom:155.360000pt;}
.y16e{bottom:156.000000pt;}
.ybf{bottom:156.320000pt;}
.y14c{bottom:159.200000pt;}
.y156{bottom:160.960000pt;}
.y17f{bottom:170.560000pt;}
.yed{bottom:170.880027pt;}
.y1ba{bottom:171.360000pt;}
.y20a{bottom:172.640000pt;}
.y8f{bottom:172.960000pt;}
.y1f3{bottom:174.240000pt;}
.y9e{bottom:175.520000pt;}
.y21a{bottom:176.480000pt;}
.y198{bottom:178.400000pt;}
.y175{bottom:179.200000pt;}
.y4e{bottom:179.680000pt;}
.y11d{bottom:180.640000pt;}
.y16d{bottom:181.280000pt;}
.ybe{bottom:181.600000pt;}
.y14b{bottom:184.800000pt;}
.y6f{bottom:186.080000pt;}
.y12e{bottom:192.480000pt;}
.y1b9{bottom:196.640000pt;}
.y209{bottom:197.920000pt;}
.y8e{bottom:198.240000pt;}
.y9d{bottom:200.800000pt;}
.y197{bottom:203.680000pt;}
.y4d{bottom:204.960000pt;}
.y11c{bottom:205.920000pt;}
.y14a{bottom:210.080000pt;}
.y2d{bottom:210.400000pt;}
.y6e{bottom:211.360000pt;}
.y219{bottom:212.640000pt;}
.ybd{bottom:217.440000pt;}
.y12d{bottom:217.760000pt;}
.y1b8{bottom:221.920000pt;}
.y208{bottom:223.200000pt;}
.y8d{bottom:223.840000pt;}
.y9c{bottom:226.080000pt;}
.y196{bottom:229.280000pt;}
.y4c{bottom:230.240000pt;}
.y11b{bottom:231.200000pt;}
.y1f2{bottom:235.680000pt;}
.y6d{bottom:236.640000pt;}
.y218{bottom:237.920000pt;}
.y16c{bottom:242.720000pt;}
.y12c{bottom:243.040000pt;}
.y149{bottom:245.920000pt;}
.y2c{bottom:246.240000pt;}
.y1b7{bottom:247.200000pt;}
.y207{bottom:248.480000pt;}
.y9b{bottom:251.360000pt;}
.ybc{bottom:253.600000pt;}
.y1e2{bottom:253.920000pt;}
.y195{bottom:254.560000pt;}
.y4b{bottom:255.840000pt;}
.y11a{bottom:256.480000pt;}
.y8{bottom:258.874933pt;}
.y8c{bottom:259.680000pt;}
.y1f1{bottom:260.960000pt;}
.y6c{bottom:261.920000pt;}
.y16b{bottom:268.000000pt;}
.y12b{bottom:268.320000pt;}
.y2b{bottom:271.520000pt;}
.y7{bottom:271.674933pt;}
.y1b6{bottom:272.480000pt;}
.y217{bottom:273.760000pt;}
.y9a{bottom:276.640000pt;}
.ybb{bottom:278.880000pt;}
.y1e1{bottom:279.200000pt;}
.y194{bottom:279.840000pt;}
.y4a{bottom:281.120000pt;}
.y119{bottom:281.760000pt;}
.y6{bottom:284.474933pt;}
.y206{bottom:284.640000pt;}
.y8b{bottom:284.960000pt;}
.y6b{bottom:287.200000pt;}
.y139{bottom:288.076807pt;}
.y16a{bottom:293.280000pt;}
.y12a{bottom:293.600000pt;}
.y2a{bottom:296.800000pt;}
.y1b5{bottom:297.760000pt;}
.y216{bottom:299.040000pt;}
.y99{bottom:301.920000pt;}
.y1e0{bottom:304.800000pt;}
.y49{bottom:306.400000pt;}
.y138{bottom:309.045234pt;}
.y205{bottom:309.920000pt;}
.y8a{bottom:310.240000pt;}
.y6a{bottom:312.480000pt;}
.yba{bottom:313.760000pt;}
.y193{bottom:315.680000pt;}
.y118{bottom:317.920000pt;}
.y169{bottom:318.560000pt;}
.y129{bottom:318.880000pt;}
.yb9{bottom:321.120000pt;}
.y29{bottom:322.080000pt;}
.y1b4{bottom:323.360000pt;}
.y137{bottom:330.013770pt;}
.y1df{bottom:330.720000pt;}
.y48{bottom:331.680000pt;}
.y215{bottom:335.200000pt;}
.y89{bottom:335.520000pt;}
.y69{bottom:337.760000pt;}
.y117{bottom:343.200000pt;}
.y168{bottom:343.840000pt;}
.y204{bottom:345.760000pt;}
.y28{bottom:347.360000pt;}
.y1c3{bottom:348.320000pt;}
.y1b3{bottom:348.640000pt;}
.ye6{bottom:348.960000pt;}
.y192{bottom:351.520000pt;}
.y148{bottom:353.760000pt;}
.y128{bottom:354.720000pt;}
.y47{bottom:356.960000pt;}
.y1de{bottom:357.600000pt;}
.y136{bottom:359.235666pt;}
.yb8{bottom:359.840000pt;}
.y214{bottom:360.480000pt;}
.y88{bottom:360.800000pt;}
.y116{bottom:368.480000pt;}
.y167{bottom:369.120000pt;}
.y203{bottom:371.040000pt;}
.y27{bottom:372.640000pt;}
.y68{bottom:373.920000pt;}
.ye5{bottom:374.240000pt;}
.y191{bottom:376.800000pt;}
.y127{bottom:380.000000pt;}
.y135{bottom:380.204093pt;}
.yd5{bottom:381.624749pt;}
.y46{bottom:382.240000pt;}
.y1dd{bottom:383.840000pt;}
.y1c2{bottom:384.480000pt;}
.yb7{bottom:385.120000pt;}
.y87{bottom:386.080000pt;}
.y147{bottom:389.920000pt;}
.y115{bottom:393.760000pt;}
.y166{bottom:394.400000pt;}
.y213{bottom:396.320000pt;}
.y1ca{bottom:396.960000pt;}
.y26{bottom:397.920000pt;}
.y67{bottom:399.200000pt;}
.ye4{bottom:399.520000pt;}
.yd4{bottom:399.973327pt;}
.y134{bottom:401.172630pt;}
.y190{bottom:402.400000pt;}
.y202{bottom:406.880000pt;}
.y45{bottom:407.520000pt;}
.y1f0{bottom:408.800000pt;}
.y1dc{bottom:409.120000pt;}
.y1c1{bottom:409.760000pt;}
.yb6{bottom:410.400000pt;}
.y86{bottom:411.360000pt;}
.y126{bottom:416.160000pt;}
.yd3{bottom:418.315900pt;}
.y114{bottom:419.040000pt;}
.y165{bottom:419.680000pt;}
.y212{bottom:421.600000pt;}
.y1c9{bottom:422.240000pt;}
.y66{bottom:424.480000pt;}
.ye3{bottom:424.800000pt;}
.y146{bottom:425.760000pt;}
.y18f{bottom:427.680000pt;}
.y133{bottom:428.822369pt;}
.y201{bottom:432.480000pt;}
.y44{bottom:432.800000pt;}
.y25{bottom:434.080000pt;}
.y1db{bottom:434.400000pt;}
.y1c0{bottom:435.040000pt;}
.yb5{bottom:435.680000pt;}
.y85{bottom:436.640000pt;}
.y113{bottom:444.320000pt;}
.y164{bottom:444.960000pt;}
.yd2{bottom:445.835110pt;}
.y211{bottom:446.880000pt;}
.y1c8{bottom:447.520000pt;}
.y65{bottom:449.760000pt;}
.y132{bottom:449.784899pt;}
.ye2{bottom:450.080000pt;}
.y125{bottom:451.040000pt;}
.y18e{bottom:452.960000pt;}
.y200{bottom:457.760000pt;}
.y43{bottom:458.080000pt;}
.y24{bottom:459.360000pt;}
.y1da{bottom:459.680000pt;}
.y1b2{bottom:460.320000pt;}
.yb4{bottom:460.960000pt;}
.y145{bottom:461.600000pt;}
.y84{bottom:461.920000pt;}
.yd1{bottom:464.183688pt;}
.y124{bottom:467.680000pt;}
.y1ef{bottom:469.920000pt;}
.y163{bottom:470.240000pt;}
.y1c7{bottom:472.800000pt;}
.y64{bottom:475.040000pt;}
.ye1{bottom:475.360000pt;}
.y130{bottom:477.434639pt;}
.y18d{bottom:478.240000pt;}
.y112{bottom:480.160000pt;}
.y106{bottom:481.153383pt;}
.yd0{bottom:482.526152pt;}
.y210{bottom:483.040000pt;}
.y42{bottom:483.360000pt;}
.y123{bottom:484.320000pt;}
.y23{bottom:484.640000pt;}
.y1d9{bottom:484.960000pt;}
.y12f{bottom:485.169625pt;}
.y1bf{bottom:485.600000pt;}
.yb3{bottom:486.240000pt;}
.y83{bottom:487.200000pt;}
.y131{bottom:492.898496pt;}
.y1ff{bottom:493.600000pt;}
.y1ee{bottom:495.200000pt;}
.y162{bottom:495.520000pt;}
.y1b1{bottom:496.480000pt;}
.y144{bottom:497.760000pt;}
.y1c6{bottom:498.080000pt;}
.y63{bottom:500.320000pt;}
.y105{bottom:501.074251pt;}
.y18c{bottom:503.520000pt;}
.y20f{bottom:508.320000pt;}
.y41{bottom:508.640000pt;}
.y22{bottom:509.920000pt;}
.ycf{bottom:510.045362pt;}
.y1d8{bottom:510.240000pt;}
.y1be{bottom:510.880000pt;}
.yb2{bottom:511.520000pt;}
.y111{bottom:516.320000pt;}
.y122{bottom:517.600000pt;}
.y1fe{bottom:518.880000pt;}
.y161{bottom:520.800000pt;}
.y104{bottom:520.995120pt;}
.y1b0{bottom:521.760000pt;}
.y82{bottom:523.360000pt;}
.y62{bottom:525.600000pt;}
.yce{bottom:528.393940pt;}
.y18b{bottom:528.800000pt;}
.y1ed{bottom:531.360000pt;}
.y143{bottom:532.640000pt;}
.y40{bottom:533.920000pt;}
.y21{bottom:535.200000pt;}
.y1d7{bottom:535.520000pt;}
.y1bd{bottom:536.160000pt;}
.yb1{bottom:536.800000pt;}
.yf8{bottom:539.680000pt;}
.y1fd{bottom:544.160000pt;}
.y160{bottom:546.080000pt;}
.y1af{bottom:547.040000pt;}
.ye0{bottom:547.360000pt;}
.y1c5{bottom:548.640000pt;}
.y103{bottom:549.169348pt;}
.y142{bottom:549.280000pt;}
.ycb{bottom:550.277177pt;}
.y61{bottom:550.880000pt;}
.yc6{bottom:551.321588pt;}
.yc8{bottom:551.581886pt;}
.ycd{bottom:551.582322pt;}
.y110{bottom:552.160000pt;}
.yc3{bottom:552.505446pt;}
.y18a{bottom:554.080000pt;}
.y1ec{bottom:556.640000pt;}
.y81{bottom:559.200000pt;}
.yc2{bottom:560.234259pt;}
.y1d6{bottom:560.800000pt;}
.yb0{bottom:562.080000pt;}
.yc9{bottom:566.784990pt;}
.yc4{bottom:567.963072pt;}
.yc7{bottom:568.096687pt;}
.ycc{bottom:568.097124pt;}
.yc5{bottom:569.010704pt;}
.y102{bottom:569.090217pt;}
.y1fc{bottom:569.440000pt;}
.y3f{bottom:570.080000pt;}
.y20{bottom:571.040000pt;}
.y15f{bottom:571.360000pt;}
.y1ae{bottom:572.320000pt;}
.yf7{bottom:572.960000pt;}
.yca{bottom:573.337142pt;}
.y1c4{bottom:573.920000pt;}
.y60{bottom:576.160000pt;}
.y189{bottom:579.360000pt;}
.y141{bottom:582.880000pt;}
.ydf{bottom:583.200000pt;}
.y80{bottom:584.480000pt;}
.y1d5{bottom:586.080000pt;}
.yaf{bottom:587.360000pt;}
.y10f{bottom:588.320000pt;}
.y101{bottom:589.005079pt;}
.y1eb{bottom:592.480000pt;}
.y3e{bottom:595.360000pt;}
.y1f{bottom:596.320000pt;}
.y15e{bottom:596.640000pt;}
.y1ad{bottom:597.600000pt;}
.y5f{bottom:601.440000pt;}
.y188{bottom:604.640000pt;}
.y1fb{bottom:605.600000pt;}
.y140{bottom:608.160000pt;}
.y7f{bottom:609.760000pt;}
.y1d4{bottom:611.680000pt;}
.y98{bottom:612.000000pt;}
.y100{bottom:615.605949pt;}
.y1ea{bottom:617.760000pt;}
.yde{bottom:619.360000pt;}
.y3d{bottom:620.640000pt;}
.y1e{bottom:621.600000pt;}
.y15d{bottom:621.920000pt;}
.y1ac{bottom:622.880000pt;}
.yae{bottom:623.200000pt;}
.y10e{bottom:624.160000pt;}
.y5e{bottom:626.720000pt;}
.y187{bottom:629.920000pt;}
.y1fa{bottom:630.880000pt;}
.y13f{bottom:633.440000pt;}
.y7e{bottom:635.040000pt;}
.yff{bottom:635.525616pt;}
.y1d3{bottom:636.960000pt;}
.y97{bottom:637.600000pt;}
.y1e9{bottom:643.040000pt;}
.y3c{bottom:645.920000pt;}
.y1d{bottom:647.200000pt;}
.y1ab{bottom:648.160000pt;}
.y5d{bottom:652.000000pt;}
.ydd{bottom:655.200000pt;}
.y20e{bottom:656.160000pt;}
.yfe{bottom:657.670786pt;}
.y13e{bottom:658.720000pt;}
.yad{bottom:659.040000pt;}
.y10d{bottom:660.000000pt;}
.y7d{bottom:660.320000pt;}
.y1d2{bottom:662.240000pt;}
.y96{bottom:662.880000pt;}
.y1f9{bottom:666.720000pt;}
.yac{bottom:668.960000pt;}
.y3b{bottom:671.200000pt;}
.y1aa{bottom:673.440000pt;}
.y1e8{bottom:679.200000pt;}
.yfd{bottom:680.080330pt;}
.yfa{bottom:680.209077pt;}
.y186{bottom:680.480000pt;}
.yfc{bottom:681.652705pt;}
.yf9{bottom:681.911728pt;}
.y1{bottom:682.214267pt;}
.yfb{bottom:682.565183pt;}
.y1c{bottom:684.000000pt;}
.y7c{bottom:685.600000pt;}
.y1d1{bottom:687.520000pt;}
.y5c{bottom:688.160000pt;}
.ydc{bottom:691.040000pt;}
.y1f8{bottom:692.000000pt;}
.y15c{bottom:693.920000pt;}
.y10c{bottom:696.160000pt;}
.y3a{bottom:696.480000pt;}
.ye{bottom:696.924933pt;}
.y1a9{bottom:698.720000pt;}
.y1e7{bottom:704.480000pt;}
.y13d{bottom:709.280000pt;}
.y185{bottom:710.240000pt;}
.y1a5{bottom:710.250000pt;}
.y7b{bottom:711.200000pt;}
.yab{bottom:711.840000pt;}
.y1d0{bottom:712.800000pt;}
.y5b{bottom:713.440000pt;}
.y20d{bottom:717.280000pt;}
.y1b{bottom:721.120000pt;}
.y39{bottom:721.760000pt;}
.y1a8{bottom:724.000000pt;}
.ydb{bottom:727.200000pt;}
.y1f7{bottom:727.840000pt;}
.y15b{bottom:729.440000pt;}
.y10b{bottom:730.080000pt;}
.y10a{bottom:731.360000pt;}
.y121{bottom:734.560000pt;}
.y7a{bottom:736.480000pt;}
.yaa{bottom:737.120000pt;}
.y1cf{bottom:738.080000pt;}
.y5a{bottom:738.720000pt;}
.y1e6{bottom:740.320000pt;}
.y1a2{bottom:744.250000pt;}
.y38{bottom:747.040000pt;}
.y109{bottom:748.960000pt;}
.y1a7{bottom:749.280000pt;}
.y1f6{bottom:753.120000pt;}
.y1a{bottom:757.280000pt;}
.y13c{bottom:759.840000pt;}
.y79{bottom:761.760000pt;}
.ya9{bottom:762.400000pt;}
.y15a{bottom:763.040000pt;}
.y1ce{bottom:763.360000pt;}
.y95{bottom:764.000000pt;}
.y171{bottom:764.320000pt;}
.y1e5{bottom:765.600000pt;}
.y108{bottom:766.560000pt;}
.y37{bottom:772.320000pt;}
.y59{bottom:774.560000pt;}
.yda{bottom:778.720000pt;}
.y1a1{bottom:781.583333pt;}
.yf6{bottom:785.120000pt;}
.yd{bottom:785.770533pt;}
.y78{bottom:787.040000pt;}
.ya8{bottom:787.680000pt;}
.y1cd{bottom:788.640000pt;}
.y94{bottom:789.280000pt;}
.y19{bottom:793.120000pt;}
.y36{bottom:797.600000pt;}
.y13b{bottom:799.200000pt;}
.y58{bottom:799.840000pt;}
.y1e4{bottom:801.440000pt;}
.y19f{bottom:808.250000pt;}
.yf5{bottom:810.720000pt;}
.y77{bottom:812.320000pt;}
.ya7{bottom:812.960000pt;}
.y1cc{bottom:813.920000pt;}
.y93{bottom:814.560000pt;}
.y35{bottom:822.880000pt;}
.yc{bottom:824.170533pt;}
.y18{bottom:824.480000pt;}
.y57{bottom:825.120000pt;}
.y1e3{bottom:826.720000pt;}
.y13a{bottom:829.280000pt;}
.y14e{bottom:831.200000pt;}
.y19d{bottom:834.916667pt;}
.yf4{bottom:836.000000pt;}
.y76{bottom:837.600000pt;}
.ya6{bottom:838.240000pt;}
.y92{bottom:839.840000pt;}
.y34{bottom:848.160000pt;}
.y56{bottom:850.400000pt;}
.y1cb{bottom:851.040000pt;}
.y17{bottom:854.560000pt;}
.yf3{bottom:861.280000pt;}
.y19b{bottom:861.583333pt;}
.yb{bottom:862.570533pt;}
.yd9{bottom:862.880000pt;}
.ya5{bottom:863.520000pt;}
.y33{bottom:873.440000pt;}
.y75{bottom:874.400000pt;}
.y55{bottom:875.680000pt;}
.y16{bottom:885.920000pt;}
.yf2{bottom:886.560000pt;}
.yd8{bottom:888.160000pt;}
.ya4{bottom:888.800000pt;}
.y21d{bottom:890.400000pt;}
.y32{bottom:898.720000pt;}
.y54{bottom:900.960000pt;}
.ya{bottom:902.605333pt;}
.y184{bottom:903.520000pt;}
.y74{bottom:911.840000pt;}
.yd7{bottom:913.440000pt;}
.ya3{bottom:914.080000pt;}
.y15{bottom:915.680000pt;}
.y9{bottom:921.805333pt;}
.y31{bottom:924.000000pt;}
.y53{bottom:926.240000pt;}
.y73{bottom:937.120000pt;}
.yd6{bottom:938.720000pt;}
.y30{bottom:949.280000pt;}
.ya2{bottom:949.920000pt;}
.y14{bottom:951.840000pt;}
.y52{bottom:962.400000pt;}
.y2f{bottom:974.560000pt;}
.y107{bottom:977.120000pt;}
.ya1{bottom:986.080000pt;}
.y13{bottom:987.680000pt;}
.y2e{bottom:1011.680000pt;}
.ya0{bottom:1012.000000pt;}
.y12{bottom:1012.960000pt;}
.h6{height:18.666667pt;}
.h2c{height:20.000000pt;}
.h1e{height:23.277840pt;}
.h16{height:25.567126pt;}
.h2e{height:26.666667pt;}
.h1b{height:27.024375pt;}
.h9{height:27.042500pt;}
.hf{height:28.153125pt;}
.h2{height:28.228781pt;}
.h1a{height:30.751875pt;}
.h2d{height:31.062500pt;}
.h2f{height:31.083333pt;}
.h1{height:32.625000pt;}
.h25{height:34.791539pt;}
.h13{height:35.107099pt;}
.h1f{height:35.107562pt;}
.h17{height:35.130645pt;}
.h22{height:35.176044pt;}
.h23{height:35.176481pt;}
.h21{height:35.181285pt;}
.h29{height:35.200068pt;}
.h24{height:35.200505pt;}
.h18{height:35.411250pt;}
.h20{height:35.790610pt;}
.h30{height:37.333333pt;}
.h1d{height:37.721380pt;}
.h15{height:38.159890pt;}
.h32{height:39.101562pt;}
.h10{height:39.243750pt;}
.h26{height:40.531250pt;}
.hd{height:41.543750pt;}
.h7{height:42.866250pt;}
.h5{height:42.895000pt;}
.ha{height:46.593750pt;}
.h14{height:47.398998pt;}
.h3{height:48.937500pt;}
.h8{height:51.362500pt;}
.he{height:62.713125pt;}
.h12{height:66.022350pt;}
.h28{height:66.023046pt;}
.hc{height:86.343750pt;}
.h4{height:97.875000pt;}
.h31{height:172.000000pt;}
.h19{height:187.200000pt;}
.h2a{height:195.520000pt;}
.h2b{height:201.280000pt;}
.h27{height:576.886400pt;}
.h11{height:649.733333pt;}
.h1c{height:760.919200pt;}
.hb{height:1100.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w7{width:17.333333pt;}
.we{width:136.666667pt;}
.wc{width:156.000000pt;}
.wd{width:166.666667pt;}
.w5{width:271.040000pt;}
.wa{width:302.080000pt;}
.wb{width:302.400000pt;}
.w9{width:306.240000pt;}
.wf{width:626.666667pt;}
.w8{width:649.733307pt;}
.w6{width:649.733333pt;}
.w4{width:716.933413pt;}
.w3{width:776.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x52{left:6.000000pt;}
.x53{left:7.333333pt;}
.x4a{left:11.884667pt;}
.x21{left:15.573067pt;}
.x7{left:17.333333pt;}
.x44{left:18.866400pt;}
.x48{left:24.345080pt;}
.x22{left:26.773067pt;}
.x47{left:29.538480pt;}
.x4e{left:34.959867pt;}
.x20{left:36.529200pt;}
.x49{left:40.164093pt;}
.x1f{left:41.722533pt;}
.x45{left:45.760000pt;}
.x8{left:54.773429pt;}
.x1{left:57.512133pt;}
.x10{left:66.044900pt;}
.x24{left:67.486983pt;}
.x3{left:72.106763pt;}
.x51{left:74.000000pt;}
.xf{left:76.399920pt;}
.x46{left:85.226667pt;}
.x23{left:91.602539pt;}
.x56{left:94.773451pt;}
.x5{left:96.106763pt;}
.x38{left:97.266560pt;}
.x1c{left:119.373355pt;}
.xc{left:124.621429pt;}
.x9{left:125.652341pt;}
.x39{left:133.006857pt;}
.x6{left:144.106763pt;}
.x25{left:145.584930pt;}
.x4f{left:149.372800pt;}
.x26{left:150.433797pt;}
.x27{left:153.841566pt;}
.xd{left:159.901365pt;}
.xa{left:166.886709pt;}
.x4c{left:170.948800pt;}
.x3a{left:181.358701pt;}
.x2{left:182.955067pt;}
.x3b{left:192.105946pt;}
.x28{left:201.665543pt;}
.x29{left:208.879003pt;}
.x37{left:216.695307pt;}
.x2a{left:218.573570pt;}
.xe{left:221.930027pt;}
.xb{left:228.915371pt;}
.x3c{left:230.365630pt;}
.x3d{left:231.675798pt;}
.x43{left:244.586667pt;}
.x11{left:247.534630pt;}
.x4b{left:251.085200pt;}
.x1e{left:261.866667pt;}
.x2b{left:269.675370pt;}
.x2c{left:276.889266pt;}
.x3e{left:279.638567pt;}
.x2d{left:281.732346pt;}
.x2e{left:285.145794pt;}
.x12{left:288.946012pt;}
.x3f{left:290.644503pt;}
.x40{left:324.189198pt;}
.x14{left:325.637647pt;}
.x2f{left:332.704308pt;}
.x13{left:340.310458pt;}
.x41{left:346.992763pt;}
.x30{left:350.001957pt;}
.x31{left:353.416824pt;}
.x15{left:382.244036pt;}
.x16{left:384.337952pt;}
.x54{left:396.666667pt;}
.x4d{left:408.106667pt;}
.x32{left:409.757004pt;}
.x19{left:429.548741pt;}
.x17{left:438.592274pt;}
.x18{left:455.363915pt;}
.x33{left:478.036006pt;}
.x1a{left:487.074705pt;}
.x1b{left:497.689304pt;}
.x1d{left:532.973227pt;}
.x42{left:550.253227pt;}
.x55{left:563.333333pt;}
.x34{left:631.815787pt;}
.x35{left:639.157547pt;}
.x50{left:698.666667pt;}
.x36{left:705.333333pt;}
.x4{left:713.333333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
