
/* 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_cade675d9ab3.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_b743b3365e58.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_1a0ed5684a2a.woff")format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_8e8237f7018b.woff")format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_c464f5cd5b20.woff")format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_5e77950fcc20.woff")format("woff");}.ff6{font-family:ff6;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_aea09b3b4153.woff")format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_a64df2fa44c7.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_81cc83e97da2.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_876be0ae164a.woff")format("woff");}.ffa{font-family:ffa;line-height:0.706055;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_60c5f0d43179.woff")format("woff");}.ffb{font-family:ffb;line-height:0.908691;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_a3b6d2107742.woff")format("woff");}.ffc{font-family:ffc;line-height:0.674316;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_96d42eb6d570.woff")format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-14.400000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160000px;}
.v4{vertical-align:5.760000px;}
.v6{vertical-align:14.400000px;}
.v8{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.936000px;}
.ls50{letter-spacing:-0.864000px;}
.ls39{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.648000px;}
.ls59{letter-spacing:-0.596160px;}
.ls36{letter-spacing:-0.576000px;}
.ls44{letter-spacing:-0.530640px;}
.ls4e{letter-spacing:-0.482400px;}
.ls46{letter-spacing:-0.434160px;}
.ls2e{letter-spacing:-0.432000px;}
.ls45{letter-spacing:-0.337680px;}
.ls27{letter-spacing:-0.289440px;}
.lsb{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.241200px;}
.ls10{letter-spacing:-0.216000px;}
.ls43{letter-spacing:-0.192960px;}
.ls18{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.057600px;}
.ls42{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.079200px;}
.ls23{letter-spacing:0.086400px;}
.ls57{letter-spacing:0.132480px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.144720px;}
.ls2a{letter-spacing:0.181440px;}
.ls41{letter-spacing:0.192960px;}
.ls3c{letter-spacing:0.201600px;}
.ls32{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.337680px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.372960px;}
.lsd{letter-spacing:0.385920px;}
.ls19{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.727200px;}
.ls2f{letter-spacing:0.792000px;}
.ls4a{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.160000px;}
.ls16{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.600000px;}
.ls1e{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.040000px;}
.ls4c{letter-spacing:5.047200px;}
.ls1f{letter-spacing:5.760000px;}
.ls29{letter-spacing:6.480000px;}
.ls49{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.920000px;}
.ls1d{letter-spacing:8.640000px;}
.ls17{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.080000px;}
.ls34{letter-spacing:10.800000px;}
.ls21{letter-spacing:11.520000px;}
.ls33{letter-spacing:12.240000px;}
.ls35{letter-spacing:12.960000px;}
.ls2b{letter-spacing:13.680000px;}
.ls48{letter-spacing:14.400000px;}
.ls24{letter-spacing:15.120000px;}
.ls1b{letter-spacing:15.840000px;}
.ls9{letter-spacing:16.560000px;}
.ls1c{letter-spacing:17.280000px;}
.ls4f{letter-spacing:18.000000px;}
.ls3a{letter-spacing:18.720000px;}
.ls12{letter-spacing:19.440000px;}
.ls5b{letter-spacing:20.160000px;}
.ls3f{letter-spacing:20.376000px;}
.ls51{letter-spacing:20.880000px;}
.ls28{letter-spacing:21.600000px;}
.ls14{letter-spacing:22.320000px;}
.ls15{letter-spacing:23.040000px;}
.ls47{letter-spacing:23.760000px;}
.ls30{letter-spacing:26.640000px;}
.ls7{letter-spacing:28.080000px;}
.ls5c{letter-spacing:28.800000px;}
.ls52{letter-spacing:29.520000px;}
.ls53{letter-spacing:30.240000px;}
.ls5a{letter-spacing:31.680000px;}
.ls63{letter-spacing:36.720000px;}
.ls3d{letter-spacing:44.016480px;}
.ls61{letter-spacing:47.520000px;}
.ls31{letter-spacing:54.864000px;}
.ls5f{letter-spacing:77.040000px;}
.ls62{letter-spacing:90.000000px;}
.ls3e{letter-spacing:94.032000px;}
.ls60{letter-spacing:111.600000px;}
.ls5e{letter-spacing:169.200000px;}
.ls5d{letter-spacing:175.680000px;}
.ls56{letter-spacing:189.380160px;}
.ls55{letter-spacing:214.551360px;}
.ls54{letter-spacing:413.271360px;}
.ls40{letter-spacing:1041.120000px;}
.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;}
}
.ws9c{word-spacing:-72.000000px;}
.ws9e{word-spacing:-59.976000px;}
.ws9f{word-spacing:-51.120000px;}
.wsac{word-spacing:-18.864000px;}
.wsae{word-spacing:-18.720000px;}
.ws86{word-spacing:-18.576000px;}
.ws91{word-spacing:-18.504000px;}
.ws73{word-spacing:-18.432000px;}
.ws5e{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws22{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsad{word-spacing:-17.568000px;}
.wsba{word-spacing:-17.424000px;}
.wsa7{word-spacing:-17.280000px;}
.wsb3{word-spacing:-17.064000px;}
.wsc5{word-spacing:-16.692480px;}
.wsc7{word-spacing:-16.427520px;}
.wsc8{word-spacing:-15.963840px;}
.ws1{word-spacing:-15.786786px;}
.ws6{word-spacing:-12.445920px;}
.ws5{word-spacing:-12.060000px;}
.wsa0{word-spacing:-11.867040px;}
.ws87{word-spacing:-11.818800px;}
.ws3f{word-spacing:-11.770560px;}
.wsa2{word-spacing:-11.722320px;}
.wsa3{word-spacing:-11.625840px;}
.wsb4{word-spacing:-11.577600px;}
.wsa1{word-spacing:-11.529360px;}
.wsc6{word-spacing:-10.440000px;}
.ws51{word-spacing:-4.464000px;}
.ws35{word-spacing:-4.320000px;}
.ws36{word-spacing:-4.032000px;}
.ws28{word-spacing:-3.744000px;}
.ws20{word-spacing:-3.600000px;}
.ws6e{word-spacing:-3.312000px;}
.ws29{word-spacing:-3.024000px;}
.ws3d{word-spacing:-2.880000px;}
.ws8b{word-spacing:-2.736000px;}
.ws8c{word-spacing:-2.592000px;}
.ws66{word-spacing:-2.304000px;}
.ws1c{word-spacing:-2.160000px;}
.ws67{word-spacing:-1.872000px;}
.ws7a{word-spacing:-1.584000px;}
.ws33{word-spacing:-1.440000px;}
.ws57{word-spacing:-1.296000px;}
.wsc9{word-spacing:-1.224000px;}
.ws34{word-spacing:-1.152000px;}
.ws5f{word-spacing:-0.864000px;}
.wscc{word-spacing:-0.728640px;}
.wsf{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.504000px;}
.ws3a{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.288000px;}
.ws88{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.144720px;}
.ws1d{word-spacing:-0.144000px;}
.wscb{word-spacing:-0.132480px;}
.ws7b{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws46{word-spacing:0.072000px;}
.ws3e{word-spacing:0.144000px;}
.ws2{word-spacing:0.170361px;}
.ws21{word-spacing:0.216000px;}
.wsa{word-spacing:0.288000px;}
.ws65{word-spacing:0.432000px;}
.wsd2{word-spacing:0.434160px;}
.ws27{word-spacing:0.576000px;}
.wsb2{word-spacing:0.648000px;}
.ws39{word-spacing:0.720000px;}
.ws95{word-spacing:0.792000px;}
.ws49{word-spacing:0.936000px;}
.ws38{word-spacing:1.008000px;}
.ws7c{word-spacing:1.296000px;}
.ws42{word-spacing:1.440000px;}
.wsb8{word-spacing:1.656000px;}
.ws43{word-spacing:1.728000px;}
.ws5c{word-spacing:2.016000px;}
.wsb6{word-spacing:2.088000px;}
.ws5d{word-spacing:2.160000px;}
.wsbb{word-spacing:2.304000px;}
.ws8e{word-spacing:2.376000px;}
.ws25{word-spacing:2.448000px;}
.ws37{word-spacing:2.736000px;}
.ws24{word-spacing:2.880000px;}
.ws82{word-spacing:3.096000px;}
.ws50{word-spacing:3.168000px;}
.ws40{word-spacing:3.456000px;}
.ws41{word-spacing:3.600000px;}
.wsb9{word-spacing:3.744000px;}
.ws26{word-spacing:3.888000px;}
.ws75{word-spacing:4.176000px;}
.ws4d{word-spacing:4.320000px;}
.ws72{word-spacing:4.608000px;}
.ws94{word-spacing:4.896000px;}
.ws2d{word-spacing:5.040000px;}
.wsf2{word-spacing:5.184000px;}
.ws2e{word-spacing:5.328000px;}
.ws85{word-spacing:5.616000px;}
.wsc3{word-spacing:5.688000px;}
.ws3c{word-spacing:5.760000px;}
.wsd1{word-spacing:5.904000px;}
.ws3b{word-spacing:5.976000px;}
.ws64{word-spacing:6.048000px;}
.ws60{word-spacing:6.336000px;}
.ws11{word-spacing:6.480000px;}
.ws74{word-spacing:6.696000px;}
.ws10{word-spacing:6.768000px;}
.wsab{word-spacing:7.056000px;}
.wsa8{word-spacing:7.200000px;}
.wsb5{word-spacing:7.488000px;}
.ws4f{word-spacing:7.776000px;}
.wsbc{word-spacing:7.848000px;}
.ws4e{word-spacing:7.920000px;}
.wsc2{word-spacing:8.136000px;}
.ws84{word-spacing:8.208000px;}
.ws76{word-spacing:8.496000px;}
.ws4c{word-spacing:8.640000px;}
.ws4b{word-spacing:8.928000px;}
.ws9b{word-spacing:9.216000px;}
.ws44{word-spacing:9.360000px;}
.ws92{word-spacing:9.576000px;}
.ws45{word-spacing:9.648000px;}
.ws13{word-spacing:9.936000px;}
.ws15{word-spacing:10.080000px;}
.ws14{word-spacing:10.368000px;}
.ws7f{word-spacing:10.656000px;}
.ws78{word-spacing:10.800000px;}
.ws77{word-spacing:10.944000px;}
.ws79{word-spacing:11.088000px;}
.ws9d{word-spacing:11.304000px;}
.wsca{word-spacing:11.376000px;}
.ws55{word-spacing:11.520000px;}
.ws56{word-spacing:11.808000px;}
.ws7e{word-spacing:12.096000px;}
.ws8a{word-spacing:12.240000px;}
.ws90{word-spacing:12.384000px;}
.ws7d{word-spacing:12.528000px;}
.ws80{word-spacing:12.816000px;}
.ws68{word-spacing:12.960000px;}
.ws81{word-spacing:13.248000px;}
.ws5a{word-spacing:13.536000px;}
.ws59{word-spacing:13.680000px;}
.ws58{word-spacing:13.968000px;}
.wsb0{word-spacing:14.112000px;}
.wse{word-spacing:14.256000px;}
.wsd{word-spacing:14.400000px;}
.wsc{word-spacing:14.688000px;}
.wsd6{word-spacing:14.976000px;}
.ws5b{word-spacing:15.120000px;}
.wsd8{word-spacing:15.264000px;}
.wsaf{word-spacing:15.408000px;}
.wscd{word-spacing:15.696000px;}
.ws48{word-spacing:15.840000px;}
.ws47{word-spacing:16.056000px;}
.ws8f{word-spacing:16.128000px;}
.ws6d{word-spacing:16.416000px;}
.ws1f{word-spacing:16.560000px;}
.ws1e{word-spacing:16.848000px;}
.wsd5{word-spacing:17.136000px;}
.ws1a{word-spacing:17.280000px;}
.ws4a{word-spacing:17.568000px;}
.ws9a{word-spacing:17.856000px;}
.wsa9{word-spacing:18.000000px;}
.wsaa{word-spacing:18.288000px;}
.wsb1{word-spacing:18.576000px;}
.ws54{word-spacing:18.720000px;}
.ws53{word-spacing:18.936000px;}
.ws52{word-spacing:19.008000px;}
.ws2a{word-spacing:19.296000px;}
.ws2c{word-spacing:19.440000px;}
.ws83{word-spacing:19.656000px;}
.ws2b{word-spacing:19.728000px;}
.wscf{word-spacing:20.160000px;}
.wsd0{word-spacing:20.448000px;}
.wsbd{word-spacing:20.880000px;}
.wsbe{word-spacing:21.168000px;}
.wsf8{word-spacing:21.456000px;}
.ws62{word-spacing:21.600000px;}
.ws61{word-spacing:21.888000px;}
.ws31{word-spacing:22.176000px;}
.ws30{word-spacing:22.320000px;}
.ws63{word-spacing:22.608000px;}
.ws32{word-spacing:23.040000px;}
.ws2f{word-spacing:23.328000px;}
.ws98{word-spacing:23.760000px;}
.ws99{word-spacing:24.048000px;}
.wse6{word-spacing:24.480000px;}
.ws69{word-spacing:25.920000px;}
.ws70{word-spacing:26.496000px;}
.ws6f{word-spacing:26.640000px;}
.ws71{word-spacing:26.928000px;}
.wsf3{word-spacing:27.360000px;}
.ws93{word-spacing:27.648000px;}
.wsb7{word-spacing:27.936000px;}
.ws19{word-spacing:28.080000px;}
.ws1b{word-spacing:28.368000px;}
.wsdd{word-spacing:28.656000px;}
.wsd3{word-spacing:28.800000px;}
.ws18{word-spacing:29.088000px;}
.wsc1{word-spacing:29.376000px;}
.wsc0{word-spacing:29.520000px;}
.wsbf{word-spacing:29.808000px;}
.wsc4{word-spacing:30.096000px;}
.ws17{word-spacing:30.240000px;}
.ws16{word-spacing:30.528000px;}
.wsa6{word-spacing:30.960000px;}
.wsa5{word-spacing:31.248000px;}
.wsce{word-spacing:31.680000px;}
.ws97{word-spacing:32.256000px;}
.ws96{word-spacing:32.400000px;}
.wsa4{word-spacing:32.688000px;}
.ws6b{word-spacing:32.976000px;}
.ws6c{word-spacing:33.120000px;}
.ws6a{word-spacing:33.408000px;}
.wse8{word-spacing:33.840000px;}
.wsf4{word-spacing:36.000000px;}
.wsf5{word-spacing:36.144000px;}
.wse0{word-spacing:38.880000px;}
.ws8d{word-spacing:41.040000px;}
.wsee{word-spacing:45.360000px;}
.wsef{word-spacing:46.080000px;}
.wsd4{word-spacing:47.520000px;}
.wsdf{word-spacing:49.680000px;}
.wsf7{word-spacing:52.560000px;}
.wse3{word-spacing:60.480000px;}
.wse4{word-spacing:61.920000px;}
.wsf1{word-spacing:70.560000px;}
.wsf6{word-spacing:79.200000px;}
.wsdb{word-spacing:81.360000px;}
.wseb{word-spacing:97.920000px;}
.wsec{word-spacing:99.360000px;}
.wsf0{word-spacing:102.240000px;}
.wsda{word-spacing:118.080000px;}
.wsd9{word-spacing:120.960000px;}
.wse1{word-spacing:125.136000px;}
.wsde{word-spacing:126.720000px;}
.wsd7{word-spacing:127.440000px;}
.wsed{word-spacing:146.880000px;}
.wse2{word-spacing:180.720000px;}
.wse7{word-spacing:187.200000px;}
.wse5{word-spacing:194.400000px;}
.wsdc{word-spacing:203.760000px;}
.wsf9{word-spacing:209.520000px;}
.wse9{word-spacing:228.960000px;}
.wsea{word-spacing:972.720000px;}
._e4{margin-left:-3928.248000px;}
._8d{margin-left:-3818.187408px;}
._b6{margin-left:-3805.493112px;}
._3a{margin-left:-3551.694960px;}
._104{margin-left:-3164.682888px;}
._c6{margin-left:-3158.245632px;}
._c9{margin-left:-3081.272520px;}
._d7{margin-left:-3079.924968px;}
._f1{margin-left:-3057.013632px;}
._100{margin-left:-3007.861776px;}
._cd{margin-left:-3004.781112px;}
._ef{margin-left:-3000.378888px;}
._fa{margin-left:-2990.117256px;}
._69{margin-left:-2987.969328px;}
._91{margin-left:-2984.389776px;}
._f7{margin-left:-2982.744000px;}
._51{margin-left:-2981.688144px;}
._e8{margin-left:-2980.201704px;}
._6d{margin-left:-2978.751480px;}
._102{margin-left:-2977.465704px;}
._6e{margin-left:-2976.264000px;}
._5a{margin-left:-2974.582440px;}
._82{margin-left:-2973.569328px;}
._93{margin-left:-2971.656000px;}
._4f{margin-left:-2970.514224px;}
._77{margin-left:-2969.336664px;}
._4a{margin-left:-2968.160520px;}
._5f{margin-left:-2966.377752px;}
._58{margin-left:-2965.375125px;}
._48{margin-left:-2964.145551px;}
._7d{margin-left:-2963.079624px;}
._ff{margin-left:-2962.069776px;}
._52{margin-left:-2960.815104px;}
._54{margin-left:-2958.931032px;}
._4d{margin-left:-2957.664288px;}
._89{margin-left:-2956.491840px;}
._4c{margin-left:-2955.312000px;}
._47{margin-left:-2954.100072px;}
._46{margin-left:-2952.726960px;}
._60{margin-left:-2951.705472px;}
._57{margin-left:-2950.301256px;}
._14{margin-left:-2948.581632px;}
._17{margin-left:-2947.011552px;}
._8c{margin-left:-2942.640000px;}
._34{margin-left:-2941.018368px;}
._5e{margin-left:-2937.985992px;}
._3c{margin-left:-2936.885112px;}
._18{margin-left:-2935.599336px;}
._43{margin-left:-2933.200152px;}
._41{margin-left:-2930.203032px;}
._3d{margin-left:-2927.398296px;}
._3e{margin-left:-2924.206152px;}
._37{margin-left:-2922.742440px;}
._2c{margin-left:-2920.364592px;}
._2d{margin-left:-2918.282568px;}
._1a{margin-left:-2916.488664px;}
._21{margin-left:-2915.106744px;}
._a1{margin-left:-2903.683008px;}
._40{margin-left:-2902.181112px;}
._2f{margin-left:-2900.200035px;}
._12{margin-left:-2893.146744px;}
._f{margin-left:-2883.551520px;}
._fc{margin-left:-2879.108592px;}
._b{margin-left:-2872.789776px;}
._62{margin-left:-2855.348592px;}
._a0{margin-left:-2851.457328px;}
._20{margin-left:-2814.685776px;}
._95{margin-left:-2807.525256px;}
._f4{margin-left:-2793.140592px;}
._a2{margin-left:-2761.138656px;}
._6f{margin-left:-2756.836080px;}
._d3{margin-left:-2752.272000px;}
._86{margin-left:-2743.200000px;}
._ea{margin-left:-2738.376000px;}
._55{margin-left:-2736.903480px;}
._f3{margin-left:-2723.665704px;}
._da{margin-left:-2720.448000px;}
._45{margin-left:-2671.117776px;}
._dc{margin-left:-2660.184000px;}
._15{margin-left:-2651.799480px;}
._103{margin-left:-2643.092592px;}
._e3{margin-left:-2567.016000px;}
._ad{margin-left:-2547.010224px;}
._d5{margin-left:-2544.264000px;}
._b8{margin-left:-2523.495480px;}
._bd{margin-left:-2520.288000px;}
._97{margin-left:-2489.869632px;}
._87{margin-left:-2467.980216px;}
._eb{margin-left:-2466.049704px;}
._ba{margin-left:-2463.745704px;}
._96{margin-left:-2454.812592px;}
._db{margin-left:-2439.913704px;}
._68{margin-left:-2435.161704px;}
._d2{margin-left:-2418.807480px;}
._1e{margin-left:-2417.206296px;}
._9f{margin-left:-2414.880000px;}
._8e{margin-left:-2409.097704px;}
._ae{margin-left:-2364.989112px;}
._8a{margin-left:-2347.033704px;}
._78{margin-left:-2335.913184px;}
._74{margin-left:-2324.082888px;}
._85{margin-left:-2288.120520px;}
._fe{margin-left:-2262.240000px;}
._c{margin-left:-2228.575104px;}
._ce{margin-left:-2224.440000px;}
._e1{margin-left:-2222.672520px;}
._f6{margin-left:-2180.304000px;}
._c1{margin-left:-2154.312000px;}
._df{margin-left:-2124.288000px;}
._d4{margin-left:-2116.296000px;}
._f0{margin-left:-2063.785704px;}
._2e{margin-left:-2061.363264px;}
._61{margin-left:-2060.172216px;}
._8f{margin-left:-2035.762368px;}
._ee{margin-left:-2015.905704px;}
._d9{margin-left:-1993.801704px;}
._88{margin-left:-1988.000520px;}
._bf{margin-left:-1986.264000px;}
._d6{margin-left:-1976.400000px;}
._de{margin-left:-1952.806296px;}
._2a{margin-left:-1939.680000px;}
._73{margin-left:-1933.200000px;}
._8b{margin-left:-1929.361704px;}
._c5{margin-left:-1920.456000px;}
._e0{margin-left:-1871.833704px;}
._bb{margin-left:-1864.368000px;}
._c7{margin-left:-1845.841704px;}
._e6{margin-left:-1835.833704px;}
._fb{margin-left:-1823.809704px;}
._7a{margin-left:-1804.990296px;}
._ca{margin-left:-1798.344000px;}
._d1{margin-left:-1795.801704px;}
._101{margin-left:-1789.825704px;}
._e7{margin-left:-1776.384000px;}
._e5{margin-left:-1774.201704px;}
._c0{margin-left:-1764.360000px;}
._94{margin-left:-1759.896000px;}
._63{margin-left:-1751.209992px;}
._a7{margin-left:-1746.980592px;}
._d8{margin-left:-1735.897704px;}
._7e{margin-left:-1705.973112px;}
._ec{margin-left:-1700.352000px;}
._81{margin-left:-1698.140448px;}
._11{margin-left:-1696.757784px;}
._b2{margin-left:-1685.358816px;}
._1c{margin-left:-1665.481704px;}
._7b{margin-left:-1663.249704px;}
._92{margin-left:-1655.900592px;}
._65{margin-left:-1652.970888px;}
._c8{margin-left:-1640.376000px;}
._f5{margin-left:-1627.825704px;}
._bc{margin-left:-1620.360000px;}
._105{margin-left:-1603.921704px;}
._53{margin-left:-1574.103480px;}
._27{margin-left:-1551.373776px;}
._a9{margin-left:-1547.739408px;}
._d{margin-left:-1522.080000px;}
._ed{margin-left:-1500.408000px;}
._66{margin-left:-1491.906888px;}
._c3{margin-left:-1490.400000px;}
._80{margin-left:-1429.719336px;}
._5b{margin-left:-1428.068448px;}
._f2{margin-left:-1393.897704px;}
._3f{margin-left:-1389.800664px;}
._83{margin-left:-1368.337704px;}
._38{margin-left:-1362.780216px;}
._f8{margin-left:-1353.649704px;}
._dd{margin-left:-1339.992000px;}
._cb{margin-left:-1336.104000px;}
._6c{margin-left:-1327.287480px;}
._70{margin-left:-1313.542440px;}
._98{margin-left:-1277.943768px;}
._6a{margin-left:-1265.297328px;}
._aa{margin-left:-1219.957776px;}
._5c{margin-left:-1218.781632px;}
._b0{margin-left:-1215.216000px;}
._59{margin-left:-1205.461632px;}
._a6{margin-left:-1166.322888px;}
._7c{margin-left:-1160.840664px;}
._7f{margin-left:-1151.588448px;}
._25{margin-left:-1142.691552px;}
._c4{margin-left:-1124.064000px;}
._a4{margin-left:-1105.318440px;}
._b5{margin-left:-1082.509776px;}
._79{margin-left:-1065.800664px;}
._26{margin-left:-1060.894440px;}
._23{margin-left:-1041.768000px;}
._64{margin-left:-1027.995552px;}
._44{margin-left:-1013.958816px;}
._5d{margin-left:-959.976000px;}
._a8{margin-left:-953.677632px;}
._be{margin-left:-948.168000px;}
._28{margin-left:-939.960000px;}
._b9{margin-left:-936.858888px;}
._50{margin-left:-882.054816px;}
._24{margin-left:-864.992664px;}
._3b{margin-left:-827.490888px;}
._e2{margin-left:-821.641704px;}
._a3{margin-left:-815.826888px;}
._56{margin-left:-788.970888px;}
._90{margin-left:-777.975768px;}
._1b{margin-left:-766.928664px;}
._32{margin-left:-757.512000px;}
._b7{margin-left:-717.978888px;}
._67{margin-left:-680.310816px;}
._75{margin-left:-662.022816px;}
._39{margin-left:-644.250888px;}
._6b{margin-left:-597.960000px;}
._2b{margin-left:-590.250888px;}
._19{margin-left:-550.218888px;}
._13{margin-left:-532.938888px;}
._fd{margin-left:-480.240000px;}
._9e{margin-left:-371.952000px;}
._9d{margin-left:-234.000000px;}
._22{margin-left:-198.000000px;}
._9{margin-left:-9.313068px;}
._4{margin-left:-7.268736px;}
._35{margin-left:-4.844448px;}
._0{margin-left:-3.634368px;}
._2{margin-left:-1.817184px;}
._1{width:1.362888px;}
._36{width:2.393184px;}
._3{width:3.634368px;}
._30{width:5.184000px;}
._10{width:7.200000px;}
._42{width:8.293248px;}
._7{width:9.483429px;}
._1f{width:10.944000px;}
._49{width:12.600000px;}
._e{width:14.603976px;}
._84{width:15.675456px;}
._1d{width:16.704000px;}
._8{width:18.682923px;}
._a{width:19.705089px;}
._31{width:21.672000px;}
._33{width:22.824000px;}
._cf{width:23.976000px;}
._4b{width:26.352000px;}
._16{width:28.224000px;}
._a5{width:29.324448px;}
._76{width:30.637632px;}
._4e{width:33.973776px;}
._f9{width:36.022296px;}
._6{width:37.252272px;}
._d0{width:38.969184px;}
._5{width:45.145665px;}
._ab{width:49.042224px;}
._cc{width:50.333112px;}
._c2{width:54.288000px;}
._ac{width:73.311336px;}
._b1{width:81.519336px;}
._9a{width:94.913088px;}
._71{width:130.849560px;}
._b4{width:144.879336px;}
._e9{width:147.605112px;}
._b3{width:165.168000px;}
._99{width:169.574400px;}
._72{width:194.400000px;}
._af{width:253.522224px;}
._9c{width:281.520000px;}
._9b{width:306.028800px;}
._29{width:845.933112px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:56.787000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:3.600000px;}
.yd8{bottom:3.780000px;}
.ydb{bottom:10.080000px;}
.yd6{bottom:10.260000px;}
.y1b{bottom:14.220000px;}
.y18{bottom:14.400000px;}
.y1c{bottom:57.240000px;}
.y1a{bottom:73.980000px;}
.y16{bottom:111.475500px;}
.yb7{bottom:115.020000px;}
.ya3{bottom:119.340000px;}
.ye4{bottom:122.040000px;}
.ycb{bottom:127.620000px;}
.y15{bottom:129.409500px;}
.y63{bottom:134.820000px;}
.y117{bottom:136.800000px;}
.y56{bottom:137.340000px;}
.yb6{bottom:146.160000px;}
.y14{bottom:147.342000px;}
.ya2{bottom:150.480000px;}
.ye3{bottom:153.000000px;}
.y87{bottom:157.320000px;}
.yca{bottom:158.580000px;}
.y13{bottom:165.274500px;}
.y62{bottom:165.780000px;}
.y116{bottom:167.760000px;}
.y55{bottom:168.480000px;}
.yb5{bottom:177.120000px;}
.ya1{bottom:180.000000px;}
.y3b{bottom:181.440000px;}
.ye2{bottom:184.140000px;}
.y86{bottom:188.280000px;}
.yc9{bottom:189.720000px;}
.y71{bottom:194.580000px;}
.y61{bottom:196.920000px;}
.y115{bottom:198.900000px;}
.y54{bottom:199.440000px;}
.ye8{bottom:205.020000px;}
.yf6{bottom:206.640000px;}
.yb4{bottom:208.260000px;}
.ya0{bottom:210.960000px;}
.y3a{bottom:212.580000px;}
.ye1{bottom:215.100000px;}
.y85{bottom:219.420000px;}
.y70{bottom:225.540000px;}
.y60{bottom:227.880000px;}
.yc8{bottom:229.680000px;}
.y114{bottom:229.860000px;}
.y53{bottom:230.580000px;}
.ye0{bottom:232.740000px;}
.ye7{bottom:235.980000px;}
.y12{bottom:237.006000px;}
.yb3{bottom:239.220000px;}
.y9f{bottom:241.920000px;}
.y39{bottom:243.540000px;}
.yf5{bottom:246.600000px;}
.y84{bottom:250.380000px;}
.ydf{bottom:252.360000px;}
.y11{bottom:254.938500px;}
.y6f{bottom:256.680000px;}
.yde{bottom:258.120000px;}
.y5f{bottom:259.020000px;}
.yc7{bottom:260.820000px;}
.y113{bottom:261.000000px;}
.y52{bottom:261.540000px;}
.ye6{bottom:267.120000px;}
.yb2{bottom:270.180000px;}
.y10{bottom:272.871000px;}
.y9e{bottom:273.060000px;}
.y38{bottom:274.680000px;}
.yf4{bottom:277.740000px;}
.y83{bottom:281.520000px;}
.ydd{bottom:284.400000px;}
.y6e{bottom:287.640000px;}
.y5e{bottom:289.980000px;}
.yf{bottom:290.803500px;}
.yc6{bottom:291.780000px;}
.y112{bottom:291.960000px;}
.y51{bottom:292.680000px;}
.ye5{bottom:293.940000px;}
.yb1{bottom:301.320000px;}
.y9d{bottom:304.020000px;}
.y37{bottom:305.640000px;}
.yf3{bottom:308.700000px;}
.ye{bottom:308.736000px;}
.ydc{bottom:309.960000px;}
.y82{bottom:312.480000px;}
.y6d{bottom:318.600000px;}
.yc5{bottom:318.780000px;}
.y5d{bottom:321.120000px;}
.y111{bottom:323.100000px;}
.y50{bottom:323.640000px;}
.yb0{bottom:332.280000px;}
.y9c{bottom:335.160000px;}
.yda{bottom:336.240000px;}
.y36{bottom:336.600000px;}
.y81{bottom:343.620000px;}
.yf2{bottom:348.840000px;}
.y6c{bottom:349.740000px;}
.y5c{bottom:351.900000px;}
.y110{bottom:354.060000px;}
.y4f{bottom:354.600000px;}
.yd9{bottom:355.860000px;}
.yd7{bottom:361.620000px;}
.yd{bottom:362.535000px;}
.yaf{bottom:363.420000px;}
.y9b{bottom:366.120000px;}
.y35{bottom:367.740000px;}
.y80{bottom:374.580000px;}
.yc{bottom:380.467500px;}
.y6b{bottom:380.700000px;}
.y5b{bottom:384.480000px;}
.y10f{bottom:385.200000px;}
.y4e{bottom:385.740000px;}
.yd5{bottom:387.900000px;}
.yf1{bottom:388.800000px;}
.yae{bottom:394.380000px;}
.y9a{bottom:397.260000px;}
.y34{bottom:398.700000px;}
.ya8{bottom:401.940000px;}
.y7f{bottom:405.720000px;}
.yd4{bottom:407.520000px;}
.y6a{bottom:411.840000px;}
.yd2{bottom:413.460000px;}
.y5a{bottom:415.440000px;}
.y10e{bottom:416.160000px;}
.yb{bottom:416.332500px;}
.y4d{bottom:416.700000px;}
.yad{bottom:425.520000px;}
.y99{bottom:428.220000px;}
.yf0{bottom:428.940000px;}
.y33{bottom:429.840000px;}
.ya7{bottom:432.900000px;}
.ya{bottom:434.265000px;}
.y7e{bottom:436.680000px;}
.y59{bottom:446.580000px;}
.y10d{bottom:447.300000px;}
.y4c{bottom:447.840000px;}
.y9{bottom:452.199000px;}
.yd1{bottom:453.060000px;}
.y98{bottom:459.360000px;}
.y32{bottom:460.800000px;}
.ya6{bottom:464.040000px;}
.yac{bottom:465.480000px;}
.y7d{bottom:467.820000px;}
.yef{bottom:468.900000px;}
.y8{bottom:470.131500px;}
.ycf{bottom:472.500000px;}
.y58{bottom:477.540000px;}
.y10c{bottom:478.260000px;}
.y4b{bottom:478.800000px;}
.y97{bottom:490.320000px;}
.y31{bottom:491.940000px;}
.yd0{bottom:491.941440px;}
.ya5{bottom:495.000000px;}
.yab{bottom:496.620000px;}
.y7c{bottom:498.780000px;}
.y57{bottom:508.500000px;}
.yee{bottom:509.040000px;}
.y10b{bottom:509.400000px;}
.y4a{bottom:509.940000px;}
.y7{bottom:514.963500px;}
.y96{bottom:521.460000px;}
.ya4{bottom:522.180000px;}
.y30{bottom:522.900000px;}
.yaa{bottom:527.580000px;}
.y7b{bottom:529.920000px;}
.yce{bottom:531.900000px;}
.yba{bottom:537.840000px;}
.y10a{bottom:540.360000px;}
.y49{bottom:540.900000px;}
.yed{bottom:549.000000px;}
.y95{bottom:552.420000px;}
.y2f{bottom:554.040000px;}
.ya9{bottom:554.760000px;}
.y7a{bottom:560.880000px;}
.ycd{bottom:563.040000px;}
.yb9{bottom:568.800000px;}
.y109{bottom:571.500000px;}
.y48{bottom:572.040000px;}
.yec{bottom:580.140000px;}
.y94{bottom:583.560000px;}
.y2e{bottom:585.000000px;}
.yc4{bottom:585.720000px;}
.ycc{bottom:594.000000px;}
.yb8{bottom:595.800000px;}
.y108{bottom:602.460000px;}
.y47{bottom:603.000000px;}
.y79{bottom:610.020000px;}
.y93{bottom:614.520000px;}
.y2d{bottom:616.140000px;}
.yc3{bottom:616.680000px;}
.yeb{bottom:620.100000px;}
.y107{bottom:633.420000px;}
.y46{bottom:634.140000px;}
.y78{bottom:640.980000px;}
.y92{bottom:645.660000px;}
.y2c{bottom:647.100000px;}
.yc2{bottom:647.820000px;}
.yea{bottom:660.240000px;}
.y106{bottom:664.560000px;}
.y45{bottom:665.100000px;}
.y77{bottom:672.120000px;}
.y91{bottom:676.620000px;}
.y2b{bottom:678.240000px;}
.yc1{bottom:678.780000px;}
.y105{bottom:695.520000px;}
.y44{bottom:696.240000px;}
.ye9{bottom:700.200000px;}
.y76{bottom:703.080000px;}
.y90{bottom:707.760000px;}
.y2a{bottom:709.200000px;}
.yc0{bottom:709.920000px;}
.y104{bottom:726.660000px;}
.y43{bottom:727.200000px;}
.y75{bottom:734.040000px;}
.y8f{bottom:738.720000px;}
.y29{bottom:740.340000px;}
.ybf{bottom:740.880000px;}
.y103{bottom:757.620000px;}
.y42{bottom:758.340000px;}
.y74{bottom:765.180000px;}
.y6{bottom:768.187500px;}
.y8e{bottom:769.860000px;}
.y28{bottom:771.300000px;}
.ybe{bottom:771.840000px;}
.y102{bottom:788.760000px;}
.y41{bottom:789.300000px;}
.y73{bottom:796.140000px;}
.y8d{bottom:800.820000px;}
.y27{bottom:802.440000px;}
.y5{bottom:804.054000px;}
.ybd{bottom:811.980000px;}
.y101{bottom:819.720000px;}
.y40{bottom:820.440000px;}
.y72{bottom:823.320000px;}
.y8c{bottom:831.960000px;}
.y26{bottom:833.400000px;}
.y4{bottom:839.919000px;}
.ybc{bottom:842.940000px;}
.y100{bottom:850.860000px;}
.y3f{bottom:851.400000px;}
.y8b{bottom:862.920000px;}
.y25{bottom:864.540000px;}
.ybb{bottom:870.120000px;}
.yff{bottom:881.820000px;}
.y3e{bottom:882.540000px;}
.y8a{bottom:894.060000px;}
.y24{bottom:895.500000px;}
.y3{bottom:902.683500px;}
.yfe{bottom:912.960000px;}
.y3d{bottom:913.500000px;}
.y69{bottom:926.640000px;}
.y2{bottom:932.571000px;}
.y88{bottom:934.380000px;}
.y89{bottom:935.100000px;}
.y23{bottom:942.480000px;}
.yfd{bottom:943.920000px;}
.y3c{bottom:944.640000px;}
.y68{bottom:957.600000px;}
.y1{bottom:962.460000px;}
.yfc{bottom:975.060000px;}
.y22{bottom:975.600000px;}
.y67{bottom:988.740000px;}
.yfb{bottom:1006.020000px;}
.y21{bottom:1006.740000px;}
.y66{bottom:1019.700000px;}
.yfa{bottom:1037.160000px;}
.y20{bottom:1037.700000px;}
.y65{bottom:1050.840000px;}
.yf9{bottom:1068.120000px;}
.y1f{bottom:1068.840000px;}
.y64{bottom:1081.800000px;}
.yf8{bottom:1099.260000px;}
.y1e{bottom:1099.800000px;}
.yf7{bottom:1130.580000px;}
.y1d{bottom:1130.940000px;}
.y19{bottom:1161.900000px;}
.y17{bottom:1178.640000px;}
.h12{height:25.380000px;}
.h14{height:25.560000px;}
.h13{height:25.561500px;}
.h9{height:30.960000px;}
.h7{height:31.138500px;}
.hb{height:40.066523px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.hf{height:44.893125px;}
.hd{height:50.308594px;}
.h10{height:52.056427px;}
.h11{height:55.016719px;}
.he{height:59.479102px;}
.h8{height:59.800781px;}
.hc{height:63.175781px;}
.h2{height:67.326667px;}
.ha{height:67.426523px;}
.h3{height:84.385482px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:89.820000px;}
.w6{width:94.320000px;}
.w7{width:101.701500px;}
.w9{width:122.400000px;}
.w3{width:226.440000px;}
.w4{width:226.441500px;}
.w5{width:226.618500px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:5.220000px;}
.x1c{left:30.420000px;}
.x1a{left:34.200000px;}
.x1e{left:46.800000px;}
.x20{left:52.380000px;}
.xa{left:70.380000px;}
.x1{left:102.046500px;}
.x2{left:106.380000px;}
.x7{left:108.720000px;}
.x15{left:111.240000px;}
.x4{left:113.220000px;}
.xb{left:127.620000px;}
.xc{left:133.380000px;}
.x23{left:154.440000px;}
.xd{left:160.380000px;}
.x6{left:226.980000px;}
.x16{left:229.511520px;}
.x18{left:235.260000px;}
.x21{left:265.320000px;}
.x8{left:270.000000px;}
.x22{left:318.780000px;}
.x3{left:332.820000px;}
.xf{left:349.920000px;}
.x10{left:370.440000px;}
.x19{left:387.360000px;}
.x9{left:446.400000px;}
.x1b{left:489.060000px;}
.x5{left:559.260000px;}
.x1d{left:578.880000px;}
.x1f{left:651.600000px;}
.x11{left:733.680000px;}
.xe{left:781.380000px;}
.x13{left:783.540000px;}
.x14{left:786.600000px;}
.x12{left:787.860000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920000pt;}
.v4{vertical-align:5.120000pt;}
.v6{vertical-align:12.800000pt;}
.v8{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls50{letter-spacing:-0.768000pt;}
.ls39{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.576000pt;}
.ls59{letter-spacing:-0.529920pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls44{letter-spacing:-0.471680pt;}
.ls4e{letter-spacing:-0.428800pt;}
.ls46{letter-spacing:-0.385920pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls45{letter-spacing:-0.300160pt;}
.ls27{letter-spacing:-0.257280pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.214400pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls43{letter-spacing:-0.171520pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.051200pt;}
.ls42{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.070400pt;}
.ls23{letter-spacing:0.076800pt;}
.ls57{letter-spacing:0.117760pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.128640pt;}
.ls2a{letter-spacing:0.161280pt;}
.ls41{letter-spacing:0.171520pt;}
.ls3c{letter-spacing:0.179200pt;}
.ls32{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.300160pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.331520pt;}
.lsd{letter-spacing:0.343040pt;}
.ls19{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.646400pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls4a{letter-spacing:0.768000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.920000pt;}
.ls16{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls4c{letter-spacing:4.486400pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls29{letter-spacing:5.760000pt;}
.ls49{letter-spacing:6.400000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:7.680000pt;}
.ls17{letter-spacing:8.320000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls34{letter-spacing:9.600000pt;}
.ls21{letter-spacing:10.240000pt;}
.ls33{letter-spacing:10.880000pt;}
.ls35{letter-spacing:11.520000pt;}
.ls2b{letter-spacing:12.160000pt;}
.ls48{letter-spacing:12.800000pt;}
.ls24{letter-spacing:13.440000pt;}
.ls1b{letter-spacing:14.080000pt;}
.ls9{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:15.360000pt;}
.ls4f{letter-spacing:16.000000pt;}
.ls3a{letter-spacing:16.640000pt;}
.ls12{letter-spacing:17.280000pt;}
.ls5b{letter-spacing:17.920000pt;}
.ls3f{letter-spacing:18.112000pt;}
.ls51{letter-spacing:18.560000pt;}
.ls28{letter-spacing:19.200000pt;}
.ls14{letter-spacing:19.840000pt;}
.ls15{letter-spacing:20.480000pt;}
.ls47{letter-spacing:21.120000pt;}
.ls30{letter-spacing:23.680000pt;}
.ls7{letter-spacing:24.960000pt;}
.ls5c{letter-spacing:25.600000pt;}
.ls52{letter-spacing:26.240000pt;}
.ls53{letter-spacing:26.880000pt;}
.ls5a{letter-spacing:28.160000pt;}
.ls63{letter-spacing:32.640000pt;}
.ls3d{letter-spacing:39.125760pt;}
.ls61{letter-spacing:42.240000pt;}
.ls31{letter-spacing:48.768000pt;}
.ls5f{letter-spacing:68.480000pt;}
.ls62{letter-spacing:80.000000pt;}
.ls3e{letter-spacing:83.584000pt;}
.ls60{letter-spacing:99.200000pt;}
.ls5e{letter-spacing:150.400000pt;}
.ls5d{letter-spacing:156.160000pt;}
.ls56{letter-spacing:168.337920pt;}
.ls55{letter-spacing:190.712320pt;}
.ls54{letter-spacing:367.352320pt;}
.ls40{letter-spacing:925.440000pt;}
.ws9c{word-spacing:-64.000000pt;}
.ws9e{word-spacing:-53.312000pt;}
.ws9f{word-spacing:-45.440000pt;}
.wsac{word-spacing:-16.768000pt;}
.wsae{word-spacing:-16.640000pt;}
.ws86{word-spacing:-16.512000pt;}
.ws91{word-spacing:-16.448000pt;}
.ws73{word-spacing:-16.384000pt;}
.ws5e{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws22{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsad{word-spacing:-15.616000pt;}
.wsba{word-spacing:-15.488000pt;}
.wsa7{word-spacing:-15.360000pt;}
.wsb3{word-spacing:-15.168000pt;}
.wsc5{word-spacing:-14.837760pt;}
.wsc7{word-spacing:-14.602240pt;}
.wsc8{word-spacing:-14.190080pt;}
.ws1{word-spacing:-14.032699pt;}
.ws6{word-spacing:-11.063040pt;}
.ws5{word-spacing:-10.720000pt;}
.wsa0{word-spacing:-10.548480pt;}
.ws87{word-spacing:-10.505600pt;}
.ws3f{word-spacing:-10.462720pt;}
.wsa2{word-spacing:-10.419840pt;}
.wsa3{word-spacing:-10.334080pt;}
.wsb4{word-spacing:-10.291200pt;}
.wsa1{word-spacing:-10.248320pt;}
.wsc6{word-spacing:-9.280000pt;}
.ws51{word-spacing:-3.968000pt;}
.ws35{word-spacing:-3.840000pt;}
.ws36{word-spacing:-3.584000pt;}
.ws28{word-spacing:-3.328000pt;}
.ws20{word-spacing:-3.200000pt;}
.ws6e{word-spacing:-2.944000pt;}
.ws29{word-spacing:-2.688000pt;}
.ws3d{word-spacing:-2.560000pt;}
.ws8b{word-spacing:-2.432000pt;}
.ws8c{word-spacing:-2.304000pt;}
.ws66{word-spacing:-2.048000pt;}
.ws1c{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.664000pt;}
.ws7a{word-spacing:-1.408000pt;}
.ws33{word-spacing:-1.280000pt;}
.ws57{word-spacing:-1.152000pt;}
.wsc9{word-spacing:-1.088000pt;}
.ws34{word-spacing:-1.024000pt;}
.ws5f{word-spacing:-0.768000pt;}
.wscc{word-spacing:-0.647680pt;}
.wsf{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.448000pt;}
.ws3a{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.256000pt;}
.ws88{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.128640pt;}
.ws1d{word-spacing:-0.128000pt;}
.wscb{word-spacing:-0.117760pt;}
.ws7b{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws46{word-spacing:0.064000pt;}
.ws3e{word-spacing:0.128000pt;}
.ws2{word-spacing:0.151432pt;}
.ws21{word-spacing:0.192000pt;}
.wsa{word-spacing:0.256000pt;}
.ws65{word-spacing:0.384000pt;}
.wsd2{word-spacing:0.385920pt;}
.ws27{word-spacing:0.512000pt;}
.wsb2{word-spacing:0.576000pt;}
.ws39{word-spacing:0.640000pt;}
.ws95{word-spacing:0.704000pt;}
.ws49{word-spacing:0.832000pt;}
.ws38{word-spacing:0.896000pt;}
.ws7c{word-spacing:1.152000pt;}
.ws42{word-spacing:1.280000pt;}
.wsb8{word-spacing:1.472000pt;}
.ws43{word-spacing:1.536000pt;}
.ws5c{word-spacing:1.792000pt;}
.wsb6{word-spacing:1.856000pt;}
.ws5d{word-spacing:1.920000pt;}
.wsbb{word-spacing:2.048000pt;}
.ws8e{word-spacing:2.112000pt;}
.ws25{word-spacing:2.176000pt;}
.ws37{word-spacing:2.432000pt;}
.ws24{word-spacing:2.560000pt;}
.ws82{word-spacing:2.752000pt;}
.ws50{word-spacing:2.816000pt;}
.ws40{word-spacing:3.072000pt;}
.ws41{word-spacing:3.200000pt;}
.wsb9{word-spacing:3.328000pt;}
.ws26{word-spacing:3.456000pt;}
.ws75{word-spacing:3.712000pt;}
.ws4d{word-spacing:3.840000pt;}
.ws72{word-spacing:4.096000pt;}
.ws94{word-spacing:4.352000pt;}
.ws2d{word-spacing:4.480000pt;}
.wsf2{word-spacing:4.608000pt;}
.ws2e{word-spacing:4.736000pt;}
.ws85{word-spacing:4.992000pt;}
.wsc3{word-spacing:5.056000pt;}
.ws3c{word-spacing:5.120000pt;}
.wsd1{word-spacing:5.248000pt;}
.ws3b{word-spacing:5.312000pt;}
.ws64{word-spacing:5.376000pt;}
.ws60{word-spacing:5.632000pt;}
.ws11{word-spacing:5.760000pt;}
.ws74{word-spacing:5.952000pt;}
.ws10{word-spacing:6.016000pt;}
.wsab{word-spacing:6.272000pt;}
.wsa8{word-spacing:6.400000pt;}
.wsb5{word-spacing:6.656000pt;}
.ws4f{word-spacing:6.912000pt;}
.wsbc{word-spacing:6.976000pt;}
.ws4e{word-spacing:7.040000pt;}
.wsc2{word-spacing:7.232000pt;}
.ws84{word-spacing:7.296000pt;}
.ws76{word-spacing:7.552000pt;}
.ws4c{word-spacing:7.680000pt;}
.ws4b{word-spacing:7.936000pt;}
.ws9b{word-spacing:8.192000pt;}
.ws44{word-spacing:8.320000pt;}
.ws92{word-spacing:8.512000pt;}
.ws45{word-spacing:8.576000pt;}
.ws13{word-spacing:8.832000pt;}
.ws15{word-spacing:8.960000pt;}
.ws14{word-spacing:9.216000pt;}
.ws7f{word-spacing:9.472000pt;}
.ws78{word-spacing:9.600000pt;}
.ws77{word-spacing:9.728000pt;}
.ws79{word-spacing:9.856000pt;}
.ws9d{word-spacing:10.048000pt;}
.wsca{word-spacing:10.112000pt;}
.ws55{word-spacing:10.240000pt;}
.ws56{word-spacing:10.496000pt;}
.ws7e{word-spacing:10.752000pt;}
.ws8a{word-spacing:10.880000pt;}
.ws90{word-spacing:11.008000pt;}
.ws7d{word-spacing:11.136000pt;}
.ws80{word-spacing:11.392000pt;}
.ws68{word-spacing:11.520000pt;}
.ws81{word-spacing:11.776000pt;}
.ws5a{word-spacing:12.032000pt;}
.ws59{word-spacing:12.160000pt;}
.ws58{word-spacing:12.416000pt;}
.wsb0{word-spacing:12.544000pt;}
.wse{word-spacing:12.672000pt;}
.wsd{word-spacing:12.800000pt;}
.wsc{word-spacing:13.056000pt;}
.wsd6{word-spacing:13.312000pt;}
.ws5b{word-spacing:13.440000pt;}
.wsd8{word-spacing:13.568000pt;}
.wsaf{word-spacing:13.696000pt;}
.wscd{word-spacing:13.952000pt;}
.ws48{word-spacing:14.080000pt;}
.ws47{word-spacing:14.272000pt;}
.ws8f{word-spacing:14.336000pt;}
.ws6d{word-spacing:14.592000pt;}
.ws1f{word-spacing:14.720000pt;}
.ws1e{word-spacing:14.976000pt;}
.wsd5{word-spacing:15.232000pt;}
.ws1a{word-spacing:15.360000pt;}
.ws4a{word-spacing:15.616000pt;}
.ws9a{word-spacing:15.872000pt;}
.wsa9{word-spacing:16.000000pt;}
.wsaa{word-spacing:16.256000pt;}
.wsb1{word-spacing:16.512000pt;}
.ws54{word-spacing:16.640000pt;}
.ws53{word-spacing:16.832000pt;}
.ws52{word-spacing:16.896000pt;}
.ws2a{word-spacing:17.152000pt;}
.ws2c{word-spacing:17.280000pt;}
.ws83{word-spacing:17.472000pt;}
.ws2b{word-spacing:17.536000pt;}
.wscf{word-spacing:17.920000pt;}
.wsd0{word-spacing:18.176000pt;}
.wsbd{word-spacing:18.560000pt;}
.wsbe{word-spacing:18.816000pt;}
.wsf8{word-spacing:19.072000pt;}
.ws62{word-spacing:19.200000pt;}
.ws61{word-spacing:19.456000pt;}
.ws31{word-spacing:19.712000pt;}
.ws30{word-spacing:19.840000pt;}
.ws63{word-spacing:20.096000pt;}
.ws32{word-spacing:20.480000pt;}
.ws2f{word-spacing:20.736000pt;}
.ws98{word-spacing:21.120000pt;}
.ws99{word-spacing:21.376000pt;}
.wse6{word-spacing:21.760000pt;}
.ws69{word-spacing:23.040000pt;}
.ws70{word-spacing:23.552000pt;}
.ws6f{word-spacing:23.680000pt;}
.ws71{word-spacing:23.936000pt;}
.wsf3{word-spacing:24.320000pt;}
.ws93{word-spacing:24.576000pt;}
.wsb7{word-spacing:24.832000pt;}
.ws19{word-spacing:24.960000pt;}
.ws1b{word-spacing:25.216000pt;}
.wsdd{word-spacing:25.472000pt;}
.wsd3{word-spacing:25.600000pt;}
.ws18{word-spacing:25.856000pt;}
.wsc1{word-spacing:26.112000pt;}
.wsc0{word-spacing:26.240000pt;}
.wsbf{word-spacing:26.496000pt;}
.wsc4{word-spacing:26.752000pt;}
.ws17{word-spacing:26.880000pt;}
.ws16{word-spacing:27.136000pt;}
.wsa6{word-spacing:27.520000pt;}
.wsa5{word-spacing:27.776000pt;}
.wsce{word-spacing:28.160000pt;}
.ws97{word-spacing:28.672000pt;}
.ws96{word-spacing:28.800000pt;}
.wsa4{word-spacing:29.056000pt;}
.ws6b{word-spacing:29.312000pt;}
.ws6c{word-spacing:29.440000pt;}
.ws6a{word-spacing:29.696000pt;}
.wse8{word-spacing:30.080000pt;}
.wsf4{word-spacing:32.000000pt;}
.wsf5{word-spacing:32.128000pt;}
.wse0{word-spacing:34.560000pt;}
.ws8d{word-spacing:36.480000pt;}
.wsee{word-spacing:40.320000pt;}
.wsef{word-spacing:40.960000pt;}
.wsd4{word-spacing:42.240000pt;}
.wsdf{word-spacing:44.160000pt;}
.wsf7{word-spacing:46.720000pt;}
.wse3{word-spacing:53.760000pt;}
.wse4{word-spacing:55.040000pt;}
.wsf1{word-spacing:62.720000pt;}
.wsf6{word-spacing:70.400000pt;}
.wsdb{word-spacing:72.320000pt;}
.wseb{word-spacing:87.040000pt;}
.wsec{word-spacing:88.320000pt;}
.wsf0{word-spacing:90.880000pt;}
.wsda{word-spacing:104.960000pt;}
.wsd9{word-spacing:107.520000pt;}
.wse1{word-spacing:111.232000pt;}
.wsde{word-spacing:112.640000pt;}
.wsd7{word-spacing:113.280000pt;}
.wsed{word-spacing:130.560000pt;}
.wse2{word-spacing:160.640000pt;}
.wse7{word-spacing:166.400000pt;}
.wse5{word-spacing:172.800000pt;}
.wsdc{word-spacing:181.120000pt;}
.wsf9{word-spacing:186.240000pt;}
.wse9{word-spacing:203.520000pt;}
.wsea{word-spacing:864.640000pt;}
._e4{margin-left:-3491.776000pt;}
._8d{margin-left:-3393.944363pt;}
._b6{margin-left:-3382.660544pt;}
._3a{margin-left:-3157.062187pt;}
._104{margin-left:-2813.051456pt;}
._c6{margin-left:-2807.329451pt;}
._c9{margin-left:-2738.908907pt;}
._d7{margin-left:-2737.711083pt;}
._f1{margin-left:-2717.345451pt;}
._100{margin-left:-2673.654912pt;}
._cd{margin-left:-2670.916544pt;}
._ef{margin-left:-2667.003456pt;}
._fa{margin-left:-2657.882005pt;}
._69{margin-left:-2655.972736pt;}
._91{margin-left:-2652.790912pt;}
._f7{margin-left:-2651.328000pt;}
._51{margin-left:-2650.389461pt;}
._e8{margin-left:-2649.068181pt;}
._6d{margin-left:-2647.779093pt;}
._102{margin-left:-2646.636181pt;}
._6e{margin-left:-2645.568000pt;}
._5a{margin-left:-2644.073280pt;}
._82{margin-left:-2643.172736pt;}
._93{margin-left:-2641.472000pt;}
._4f{margin-left:-2640.457088pt;}
._77{margin-left:-2639.410368pt;}
._4a{margin-left:-2638.364907pt;}
._5f{margin-left:-2636.780224pt;}
._58{margin-left:-2635.889000pt;}
._48{margin-left:-2634.796045pt;}
._7d{margin-left:-2633.848555pt;}
._ff{margin-left:-2632.950912pt;}
._52{margin-left:-2631.835648pt;}
._54{margin-left:-2630.160917pt;}
._4d{margin-left:-2629.034923pt;}
._89{margin-left:-2627.992747pt;}
._4c{margin-left:-2626.944000pt;}
._47{margin-left:-2625.866731pt;}
._46{margin-left:-2624.646187pt;}
._60{margin-left:-2623.738197pt;}
._57{margin-left:-2622.490005pt;}
._14{margin-left:-2620.961451pt;}
._17{margin-left:-2619.565824pt;}
._8c{margin-left:-2615.680000pt;}
._34{margin-left:-2614.238549pt;}
._5e{margin-left:-2611.543104pt;}
._3c{margin-left:-2610.564544pt;}
._18{margin-left:-2609.421632pt;}
._43{margin-left:-2607.289024pt;}
._41{margin-left:-2604.624917pt;}
._3d{margin-left:-2602.131819pt;}
._3e{margin-left:-2599.294357pt;}
._37{margin-left:-2597.993280pt;}
._2c{margin-left:-2595.879637pt;}
._2d{margin-left:-2594.028949pt;}
._1a{margin-left:-2592.434368pt;}
._21{margin-left:-2591.205995pt;}
._a1{margin-left:-2581.051563pt;}
._40{margin-left:-2579.716544pt;}
._2f{margin-left:-2577.955587pt;}
._12{margin-left:-2571.685995pt;}
._f{margin-left:-2563.156907pt;}
._fc{margin-left:-2559.207637pt;}
._b{margin-left:-2553.590912pt;}
._62{margin-left:-2538.087637pt;}
._a0{margin-left:-2534.628736pt;}
._20{margin-left:-2501.942912pt;}
._95{margin-left:-2495.578005pt;}
._f4{margin-left:-2482.791637pt;}
._a2{margin-left:-2454.345472pt;}
._6f{margin-left:-2450.520960pt;}
._d3{margin-left:-2446.464000pt;}
._86{margin-left:-2438.400000pt;}
._ea{margin-left:-2434.112000pt;}
._55{margin-left:-2432.803093pt;}
._f3{margin-left:-2421.036181pt;}
._da{margin-left:-2418.176000pt;}
._45{margin-left:-2374.326912pt;}
._dc{margin-left:-2364.608000pt;}
._15{margin-left:-2357.155093pt;}
._103{margin-left:-2349.415637pt;}
._e3{margin-left:-2281.792000pt;}
._ad{margin-left:-2264.009088pt;}
._d5{margin-left:-2261.568000pt;}
._b8{margin-left:-2243.107093pt;}
._bd{margin-left:-2240.256000pt;}
._97{margin-left:-2213.217451pt;}
._87{margin-left:-2193.760192pt;}
._eb{margin-left:-2192.044181pt;}
._ba{margin-left:-2189.996181pt;}
._96{margin-left:-2182.055637pt;}
._db{margin-left:-2168.812181pt;}
._68{margin-left:-2164.588181pt;}
._d2{margin-left:-2150.051093pt;}
._1e{margin-left:-2148.627819pt;}
._9f{margin-left:-2146.560000pt;}
._8e{margin-left:-2141.420181pt;}
._ae{margin-left:-2102.212544pt;}
._8a{margin-left:-2086.252181pt;}
._78{margin-left:-2076.367275pt;}
._74{margin-left:-2065.851456pt;}
._85{margin-left:-2033.884907pt;}
._fe{margin-left:-2010.880000pt;}
._c{margin-left:-1980.955648pt;}
._ce{margin-left:-1977.280000pt;}
._e1{margin-left:-1975.708907pt;}
._f6{margin-left:-1938.048000pt;}
._c1{margin-left:-1914.944000pt;}
._df{margin-left:-1888.256000pt;}
._d4{margin-left:-1881.152000pt;}
._f0{margin-left:-1834.476181pt;}
._2e{margin-left:-1832.322901pt;}
._61{margin-left:-1831.264192pt;}
._8f{margin-left:-1809.566549pt;}
._ee{margin-left:-1791.916181pt;}
._d9{margin-left:-1772.268181pt;}
._88{margin-left:-1767.111573pt;}
._bf{margin-left:-1765.568000pt;}
._d6{margin-left:-1756.800000pt;}
._de{margin-left:-1735.827819pt;}
._2a{margin-left:-1724.160000pt;}
._73{margin-left:-1718.400000pt;}
._8b{margin-left:-1714.988181pt;}
._c5{margin-left:-1707.072000pt;}
._e0{margin-left:-1663.852181pt;}
._bb{margin-left:-1657.216000pt;}
._c7{margin-left:-1640.748181pt;}
._e6{margin-left:-1631.852181pt;}
._fb{margin-left:-1621.164181pt;}
._7a{margin-left:-1604.435819pt;}
._ca{margin-left:-1598.528000pt;}
._d1{margin-left:-1596.268181pt;}
._101{margin-left:-1590.956181pt;}
._e7{margin-left:-1579.008000pt;}
._e5{margin-left:-1577.068181pt;}
._c0{margin-left:-1568.320000pt;}
._94{margin-left:-1564.352000pt;}
._63{margin-left:-1556.631104pt;}
._a7{margin-left:-1552.871637pt;}
._d8{margin-left:-1543.020181pt;}
._7e{margin-left:-1516.420544pt;}
._ec{margin-left:-1511.424000pt;}
._81{margin-left:-1509.458176pt;}
._11{margin-left:-1508.229141pt;}
._b2{margin-left:-1498.096725pt;}
._1c{margin-left:-1480.428181pt;}
._7b{margin-left:-1478.444181pt;}
._92{margin-left:-1471.911637pt;}
._65{margin-left:-1469.307456pt;}
._c8{margin-left:-1458.112000pt;}
._f5{margin-left:-1446.956181pt;}
._bc{margin-left:-1440.320000pt;}
._105{margin-left:-1425.708181pt;}
._53{margin-left:-1399.203093pt;}
._27{margin-left:-1378.998912pt;}
._a9{margin-left:-1375.768363pt;}
._d{margin-left:-1352.960000pt;}
._ed{margin-left:-1333.696000pt;}
._66{margin-left:-1326.139456pt;}
._c3{margin-left:-1324.800000pt;}
._80{margin-left:-1270.861632pt;}
._5b{margin-left:-1269.394176pt;}
._f2{margin-left:-1239.020181pt;}
._3f{margin-left:-1235.378368pt;}
._83{margin-left:-1216.300181pt;}
._38{margin-left:-1211.360192pt;}
._f8{margin-left:-1203.244181pt;}
._dd{margin-left:-1191.104000pt;}
._cb{margin-left:-1187.648000pt;}
._6c{margin-left:-1179.811093pt;}
._70{margin-left:-1167.593280pt;}
._98{margin-left:-1135.950016pt;}
._6a{margin-left:-1124.708736pt;}
._aa{margin-left:-1084.406912pt;}
._5c{margin-left:-1083.361451pt;}
._b0{margin-left:-1080.192000pt;}
._59{margin-left:-1071.521451pt;}
._a6{margin-left:-1036.731456pt;}
._7c{margin-left:-1031.858368pt;}
._7f{margin-left:-1023.634176pt;}
._25{margin-left:-1015.725824pt;}
._c4{margin-left:-999.168000pt;}
._a4{margin-left:-982.505280pt;}
._b5{margin-left:-962.230912pt;}
._79{margin-left:-947.378368pt;}
._26{margin-left:-943.017280pt;}
._23{margin-left:-926.016000pt;}
._64{margin-left:-913.773824pt;}
._44{margin-left:-901.296725pt;}
._5d{margin-left:-853.312000pt;}
._a8{margin-left:-847.713451pt;}
._be{margin-left:-842.816000pt;}
._28{margin-left:-835.520000pt;}
._b9{margin-left:-832.763456pt;}
._50{margin-left:-784.048725pt;}
._24{margin-left:-768.882368pt;}
._3b{margin-left:-735.547456pt;}
._e2{margin-left:-730.348181pt;}
._a3{margin-left:-725.179456pt;}
._56{margin-left:-701.307456pt;}
._90{margin-left:-691.534016pt;}
._1b{margin-left:-681.714368pt;}
._32{margin-left:-673.344000pt;}
._b7{margin-left:-638.203456pt;}
._67{margin-left:-604.720725pt;}
._75{margin-left:-588.464725pt;}
._39{margin-left:-572.667456pt;}
._6b{margin-left:-531.520000pt;}
._2b{margin-left:-524.667456pt;}
._19{margin-left:-489.083456pt;}
._13{margin-left:-473.723456pt;}
._fd{margin-left:-426.880000pt;}
._9e{margin-left:-330.624000pt;}
._9d{margin-left:-208.000000pt;}
._22{margin-left:-176.000000pt;}
._9{margin-left:-8.278283pt;}
._4{margin-left:-6.461099pt;}
._35{margin-left:-4.306176pt;}
._0{margin-left:-3.230549pt;}
._2{margin-left:-1.615275pt;}
._1{width:1.211456pt;}
._36{width:2.127275pt;}
._3{width:3.230549pt;}
._30{width:4.608000pt;}
._10{width:6.400000pt;}
._42{width:7.371776pt;}
._7{width:8.429715pt;}
._1f{width:9.728000pt;}
._49{width:11.200000pt;}
._e{width:12.981312pt;}
._84{width:13.933739pt;}
._1d{width:14.848000pt;}
._8{width:16.607043pt;}
._a{width:17.515635pt;}
._31{width:19.264000pt;}
._33{width:20.288000pt;}
._cf{width:21.312000pt;}
._4b{width:23.424000pt;}
._16{width:25.088000pt;}
._a5{width:26.066176pt;}
._76{width:27.233451pt;}
._4e{width:30.198912pt;}
._f9{width:32.019819pt;}
._6{width:33.113131pt;}
._d0{width:34.639275pt;}
._5{width:40.129480pt;}
._ab{width:43.593088pt;}
._cc{width:44.740544pt;}
._c2{width:48.256000pt;}
._ac{width:65.165632pt;}
._b1{width:72.461632pt;}
._9a{width:84.367189pt;}
._71{width:116.310720pt;}
._b4{width:128.781632pt;}
._e9{width:131.204544pt;}
._b3{width:146.816000pt;}
._99{width:150.732800pt;}
._72{width:172.800000pt;}
._af{width:225.353088pt;}
._9c{width:250.240000pt;}
._9b{width:272.025600pt;}
._29{width:751.940544pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:50.477333pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:3.200000pt;}
.yd8{bottom:3.360000pt;}
.ydb{bottom:8.960000pt;}
.yd6{bottom:9.120000pt;}
.y1b{bottom:12.640000pt;}
.y18{bottom:12.800000pt;}
.y1c{bottom:50.880000pt;}
.y1a{bottom:65.760000pt;}
.y16{bottom:99.089333pt;}
.yb7{bottom:102.240000pt;}
.ya3{bottom:106.080000pt;}
.ye4{bottom:108.480000pt;}
.ycb{bottom:113.440000pt;}
.y15{bottom:115.030667pt;}
.y63{bottom:119.840000pt;}
.y117{bottom:121.600000pt;}
.y56{bottom:122.080000pt;}
.yb6{bottom:129.920000pt;}
.y14{bottom:130.970667pt;}
.ya2{bottom:133.760000pt;}
.ye3{bottom:136.000000pt;}
.y87{bottom:139.840000pt;}
.yca{bottom:140.960000pt;}
.y13{bottom:146.910667pt;}
.y62{bottom:147.360000pt;}
.y116{bottom:149.120000pt;}
.y55{bottom:149.760000pt;}
.yb5{bottom:157.440000pt;}
.ya1{bottom:160.000000pt;}
.y3b{bottom:161.280000pt;}
.ye2{bottom:163.680000pt;}
.y86{bottom:167.360000pt;}
.yc9{bottom:168.640000pt;}
.y71{bottom:172.960000pt;}
.y61{bottom:175.040000pt;}
.y115{bottom:176.800000pt;}
.y54{bottom:177.280000pt;}
.ye8{bottom:182.240000pt;}
.yf6{bottom:183.680000pt;}
.yb4{bottom:185.120000pt;}
.ya0{bottom:187.520000pt;}
.y3a{bottom:188.960000pt;}
.ye1{bottom:191.200000pt;}
.y85{bottom:195.040000pt;}
.y70{bottom:200.480000pt;}
.y60{bottom:202.560000pt;}
.yc8{bottom:204.160000pt;}
.y114{bottom:204.320000pt;}
.y53{bottom:204.960000pt;}
.ye0{bottom:206.880000pt;}
.ye7{bottom:209.760000pt;}
.y12{bottom:210.672000pt;}
.yb3{bottom:212.640000pt;}
.y9f{bottom:215.040000pt;}
.y39{bottom:216.480000pt;}
.yf5{bottom:219.200000pt;}
.y84{bottom:222.560000pt;}
.ydf{bottom:224.320000pt;}
.y11{bottom:226.612000pt;}
.y6f{bottom:228.160000pt;}
.yde{bottom:229.440000pt;}
.y5f{bottom:230.240000pt;}
.yc7{bottom:231.840000pt;}
.y113{bottom:232.000000pt;}
.y52{bottom:232.480000pt;}
.ye6{bottom:237.440000pt;}
.yb2{bottom:240.160000pt;}
.y10{bottom:242.552000pt;}
.y9e{bottom:242.720000pt;}
.y38{bottom:244.160000pt;}
.yf4{bottom:246.880000pt;}
.y83{bottom:250.240000pt;}
.ydd{bottom:252.800000pt;}
.y6e{bottom:255.680000pt;}
.y5e{bottom:257.760000pt;}
.yf{bottom:258.492000pt;}
.yc6{bottom:259.360000pt;}
.y112{bottom:259.520000pt;}
.y51{bottom:260.160000pt;}
.ye5{bottom:261.280000pt;}
.yb1{bottom:267.840000pt;}
.y9d{bottom:270.240000pt;}
.y37{bottom:271.680000pt;}
.yf3{bottom:274.400000pt;}
.ye{bottom:274.432000pt;}
.ydc{bottom:275.520000pt;}
.y82{bottom:277.760000pt;}
.y6d{bottom:283.200000pt;}
.yc5{bottom:283.360000pt;}
.y5d{bottom:285.440000pt;}
.y111{bottom:287.200000pt;}
.y50{bottom:287.680000pt;}
.yb0{bottom:295.360000pt;}
.y9c{bottom:297.920000pt;}
.yda{bottom:298.880000pt;}
.y36{bottom:299.200000pt;}
.y81{bottom:305.440000pt;}
.yf2{bottom:310.080000pt;}
.y6c{bottom:310.880000pt;}
.y5c{bottom:312.800000pt;}
.y110{bottom:314.720000pt;}
.y4f{bottom:315.200000pt;}
.yd9{bottom:316.320000pt;}
.yd7{bottom:321.440000pt;}
.yd{bottom:322.253333pt;}
.yaf{bottom:323.040000pt;}
.y9b{bottom:325.440000pt;}
.y35{bottom:326.880000pt;}
.y80{bottom:332.960000pt;}
.yc{bottom:338.193333pt;}
.y6b{bottom:338.400000pt;}
.y5b{bottom:341.760000pt;}
.y10f{bottom:342.400000pt;}
.y4e{bottom:342.880000pt;}
.yd5{bottom:344.800000pt;}
.yf1{bottom:345.600000pt;}
.yae{bottom:350.560000pt;}
.y9a{bottom:353.120000pt;}
.y34{bottom:354.400000pt;}
.ya8{bottom:357.280000pt;}
.y7f{bottom:360.640000pt;}
.yd4{bottom:362.240000pt;}
.y6a{bottom:366.080000pt;}
.yd2{bottom:367.520000pt;}
.y5a{bottom:369.280000pt;}
.y10e{bottom:369.920000pt;}
.yb{bottom:370.073333pt;}
.y4d{bottom:370.400000pt;}
.yad{bottom:378.240000pt;}
.y99{bottom:380.640000pt;}
.yf0{bottom:381.280000pt;}
.y33{bottom:382.080000pt;}
.ya7{bottom:384.800000pt;}
.ya{bottom:386.013333pt;}
.y7e{bottom:388.160000pt;}
.y59{bottom:396.960000pt;}
.y10d{bottom:397.600000pt;}
.y4c{bottom:398.080000pt;}
.y9{bottom:401.954667pt;}
.yd1{bottom:402.720000pt;}
.y98{bottom:408.320000pt;}
.y32{bottom:409.600000pt;}
.ya6{bottom:412.480000pt;}
.yac{bottom:413.760000pt;}
.y7d{bottom:415.840000pt;}
.yef{bottom:416.800000pt;}
.y8{bottom:417.894667pt;}
.ycf{bottom:420.000000pt;}
.y58{bottom:424.480000pt;}
.y10c{bottom:425.120000pt;}
.y4b{bottom:425.600000pt;}
.y97{bottom:435.840000pt;}
.y31{bottom:437.280000pt;}
.yd0{bottom:437.281280pt;}
.ya5{bottom:440.000000pt;}
.yab{bottom:441.440000pt;}
.y7c{bottom:443.360000pt;}
.y57{bottom:452.000000pt;}
.yee{bottom:452.480000pt;}
.y10b{bottom:452.800000pt;}
.y4a{bottom:453.280000pt;}
.y7{bottom:457.745333pt;}
.y96{bottom:463.520000pt;}
.ya4{bottom:464.160000pt;}
.y30{bottom:464.800000pt;}
.yaa{bottom:468.960000pt;}
.y7b{bottom:471.040000pt;}
.yce{bottom:472.800000pt;}
.yba{bottom:478.080000pt;}
.y10a{bottom:480.320000pt;}
.y49{bottom:480.800000pt;}
.yed{bottom:488.000000pt;}
.y95{bottom:491.040000pt;}
.y2f{bottom:492.480000pt;}
.ya9{bottom:493.120000pt;}
.y7a{bottom:498.560000pt;}
.ycd{bottom:500.480000pt;}
.yb9{bottom:505.600000pt;}
.y109{bottom:508.000000pt;}
.y48{bottom:508.480000pt;}
.yec{bottom:515.680000pt;}
.y94{bottom:518.720000pt;}
.y2e{bottom:520.000000pt;}
.yc4{bottom:520.640000pt;}
.ycc{bottom:528.000000pt;}
.yb8{bottom:529.600000pt;}
.y108{bottom:535.520000pt;}
.y47{bottom:536.000000pt;}
.y79{bottom:542.240000pt;}
.y93{bottom:546.240000pt;}
.y2d{bottom:547.680000pt;}
.yc3{bottom:548.160000pt;}
.yeb{bottom:551.200000pt;}
.y107{bottom:563.040000pt;}
.y46{bottom:563.680000pt;}
.y78{bottom:569.760000pt;}
.y92{bottom:573.920000pt;}
.y2c{bottom:575.200000pt;}
.yc2{bottom:575.840000pt;}
.yea{bottom:586.880000pt;}
.y106{bottom:590.720000pt;}
.y45{bottom:591.200000pt;}
.y77{bottom:597.440000pt;}
.y91{bottom:601.440000pt;}
.y2b{bottom:602.880000pt;}
.yc1{bottom:603.360000pt;}
.y105{bottom:618.240000pt;}
.y44{bottom:618.880000pt;}
.ye9{bottom:622.400000pt;}
.y76{bottom:624.960000pt;}
.y90{bottom:629.120000pt;}
.y2a{bottom:630.400000pt;}
.yc0{bottom:631.040000pt;}
.y104{bottom:645.920000pt;}
.y43{bottom:646.400000pt;}
.y75{bottom:652.480000pt;}
.y8f{bottom:656.640000pt;}
.y29{bottom:658.080000pt;}
.ybf{bottom:658.560000pt;}
.y103{bottom:673.440000pt;}
.y42{bottom:674.080000pt;}
.y74{bottom:680.160000pt;}
.y6{bottom:682.833333pt;}
.y8e{bottom:684.320000pt;}
.y28{bottom:685.600000pt;}
.ybe{bottom:686.080000pt;}
.y102{bottom:701.120000pt;}
.y41{bottom:701.600000pt;}
.y73{bottom:707.680000pt;}
.y8d{bottom:711.840000pt;}
.y27{bottom:713.280000pt;}
.y5{bottom:714.714667pt;}
.ybd{bottom:721.760000pt;}
.y101{bottom:728.640000pt;}
.y40{bottom:729.280000pt;}
.y72{bottom:731.840000pt;}
.y8c{bottom:739.520000pt;}
.y26{bottom:740.800000pt;}
.y4{bottom:746.594667pt;}
.ybc{bottom:749.280000pt;}
.y100{bottom:756.320000pt;}
.y3f{bottom:756.800000pt;}
.y8b{bottom:767.040000pt;}
.y25{bottom:768.480000pt;}
.ybb{bottom:773.440000pt;}
.yff{bottom:783.840000pt;}
.y3e{bottom:784.480000pt;}
.y8a{bottom:794.720000pt;}
.y24{bottom:796.000000pt;}
.y3{bottom:802.385333pt;}
.yfe{bottom:811.520000pt;}
.y3d{bottom:812.000000pt;}
.y69{bottom:823.680000pt;}
.y2{bottom:828.952000pt;}
.y88{bottom:830.560000pt;}
.y89{bottom:831.200000pt;}
.y23{bottom:837.760000pt;}
.yfd{bottom:839.040000pt;}
.y3c{bottom:839.680000pt;}
.y68{bottom:851.200000pt;}
.y1{bottom:855.520000pt;}
.yfc{bottom:866.720000pt;}
.y22{bottom:867.200000pt;}
.y67{bottom:878.880000pt;}
.yfb{bottom:894.240000pt;}
.y21{bottom:894.880000pt;}
.y66{bottom:906.400000pt;}
.yfa{bottom:921.920000pt;}
.y20{bottom:922.400000pt;}
.y65{bottom:934.080000pt;}
.yf9{bottom:949.440000pt;}
.y1f{bottom:950.080000pt;}
.y64{bottom:961.600000pt;}
.yf8{bottom:977.120000pt;}
.y1e{bottom:977.600000pt;}
.yf7{bottom:1004.960000pt;}
.y1d{bottom:1005.280000pt;}
.y19{bottom:1032.800000pt;}
.y17{bottom:1047.680000pt;}
.h12{height:22.560000pt;}
.h14{height:22.720000pt;}
.h13{height:22.721333pt;}
.h9{height:27.520000pt;}
.h7{height:27.678667pt;}
.hb{height:35.614687pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.hf{height:39.905000pt;}
.hd{height:44.718750pt;}
.h10{height:46.272380pt;}
.h11{height:48.903750pt;}
.he{height:52.870312pt;}
.h8{height:53.156250pt;}
.hc{height:56.156250pt;}
.h2{height:59.845926pt;}
.ha{height:59.934688pt;}
.h3{height:75.009317pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:79.840000pt;}
.w6{width:83.840000pt;}
.w7{width:90.401333pt;}
.w9{width:108.800000pt;}
.w3{width:201.280000pt;}
.w4{width:201.281333pt;}
.w5{width:201.438667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:4.640000pt;}
.x1c{left:27.040000pt;}
.x1a{left:30.400000pt;}
.x1e{left:41.600000pt;}
.x20{left:46.560000pt;}
.xa{left:62.560000pt;}
.x1{left:90.708000pt;}
.x2{left:94.560000pt;}
.x7{left:96.640000pt;}
.x15{left:98.880000pt;}
.x4{left:100.640000pt;}
.xb{left:113.440000pt;}
.xc{left:118.560000pt;}
.x23{left:137.280000pt;}
.xd{left:142.560000pt;}
.x6{left:201.760000pt;}
.x16{left:204.010240pt;}
.x18{left:209.120000pt;}
.x21{left:235.840000pt;}
.x8{left:240.000000pt;}
.x22{left:283.360000pt;}
.x3{left:295.840000pt;}
.xf{left:311.040000pt;}
.x10{left:329.280000pt;}
.x19{left:344.320000pt;}
.x9{left:396.800000pt;}
.x1b{left:434.720000pt;}
.x5{left:497.120000pt;}
.x1d{left:514.560000pt;}
.x1f{left:579.200000pt;}
.x11{left:652.160000pt;}
.xe{left:694.560000pt;}
.x13{left:696.480000pt;}
.x14{left:699.200000pt;}
.x12{left:700.320000pt;}
}


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