
/* 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_18f380ff2d53.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_e98d2504aade.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_f6eddee38a30.woff")format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_efa702faeced.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7a1818ba3895.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_506429fcf8d8.woff")format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_91b67d9ad583.woff")format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_50e96f02ce48.woff")format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.996400px;}
.v2{vertical-align:23.906880px;}
.ls53{letter-spacing:-1.152000px;}
.ls6d{letter-spacing:-0.993600px;}
.ls54{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls61{letter-spacing:-0.861120px;}
.ls18{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.589680px;}
.ls16{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls6c{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.432000px;}
.ls3f{letter-spacing:-0.421200px;}
.ls5f{letter-spacing:-0.397440px;}
.ls3a{letter-spacing:-0.336960px;}
.ls4c{letter-spacing:-0.331200px;}
.ls10{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.298800px;}
.ls50{letter-spacing:-0.288000px;}
.ls60{letter-spacing:-0.264960px;}
.ls32{letter-spacing:-0.252720px;}
.ls48{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.192960px;}
.ls44{letter-spacing:-0.168480px;}
.ls62{letter-spacing:-0.167040px;}
.ls11{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.ls33{letter-spacing:-0.084240px;}
.ls38{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.059760px;}
.ls47{letter-spacing:0.065736px;}
.ls24{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.089640px;}
.ls3c{letter-spacing:0.095616px;}
.ls5a{letter-spacing:0.119232px;}
.ls4e{letter-spacing:0.129600px;}
.ls9{letter-spacing:0.136800px;}
.ls4{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.168480px;}
.ls41{letter-spacing:0.203184px;}
.ls65{letter-spacing:0.205344px;}
.ls2{letter-spacing:0.216000px;}
.ls46{letter-spacing:0.221112px;}
.ls29{letter-spacing:0.239040px;}
.ls4a{letter-spacing:0.245016px;}
.ls58{letter-spacing:0.258336px;}
.ls5d{letter-spacing:0.264960px;}
.ls68{letter-spacing:0.271584px;}
.ls36{letter-spacing:0.280800px;}
.ls1f{letter-spacing:0.286848px;}
.ls3{letter-spacing:0.288000px;}
.ls67{letter-spacing:0.291456px;}
.ls6a{letter-spacing:0.311328px;}
.lsf{letter-spacing:0.324000px;}
.ls5b{letter-spacing:0.324576px;}
.ls27{letter-spacing:0.328680px;}
.ls56{letter-spacing:0.331200px;}
.ls19{letter-spacing:0.336960px;}
.ls66{letter-spacing:0.351072px;}
.ls6b{letter-spacing:0.357696px;}
.ls3e{letter-spacing:0.358560px;}
.ls57{letter-spacing:0.384192px;}
.ls69{letter-spacing:0.397440px;}
.ls63{letter-spacing:0.410688px;}
.ls2e{letter-spacing:0.421200px;}
.ls2b{letter-spacing:0.504000px;}
.ls5e{letter-spacing:0.536544px;}
.ls26{letter-spacing:0.543816px;}
.ls34{letter-spacing:0.549792px;}
.ls28{letter-spacing:0.597600px;}
.ls59{letter-spacing:0.609408px;}
.ls64{letter-spacing:0.635904px;}
.ls45{letter-spacing:0.657360px;}
.ls51{letter-spacing:0.693216px;}
.ls4f{letter-spacing:0.702720px;}
.ls40{letter-spacing:0.752976px;}
.ls25{letter-spacing:0.856800px;}
.ls1a{letter-spacing:0.864000px;}
.lsc{letter-spacing:1.576800px;}
.ls1c{letter-spacing:1.584000px;}
.ls30{letter-spacing:2.296800px;}
.ls21{letter-spacing:2.304000px;}
.ls7{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.744000px;}
.ls2a{letter-spacing:4.456800px;}
.lsb{letter-spacing:4.464000px;}
.ls1e{letter-spacing:5.184000px;}
.ls35{letter-spacing:5.896800px;}
.ls6{letter-spacing:5.904000px;}
.ls2f{letter-spacing:6.616800px;}
.ls3b{letter-spacing:6.624000px;}
.ls2d{letter-spacing:7.344000px;}
.ls5c{letter-spacing:7.485120px;}
.ls5{letter-spacing:8.064000px;}
.ls31{letter-spacing:8.776800px;}
.ls20{letter-spacing:8.784000px;}
.ls43{letter-spacing:9.504000px;}
.ls42{letter-spacing:10.224000px;}
.ls8{letter-spacing:10.944000px;}
.ls22{letter-spacing:12.384000px;}
.lsa{letter-spacing:13.096800px;}
.ls1b{letter-spacing:13.104000px;}
.ls2c{letter-spacing:14.544000px;}
.ls1{letter-spacing:20.405520px;}
.ls37{letter-spacing:25.344000px;}
.ls52{letter-spacing:28.944000px;}
.ls55{letter-spacing:44.248320px;}
.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;}
}
.ws5{word-spacing:-30.348000px;}
.ws4{word-spacing:-30.240000px;}
.ws4c{word-spacing:-23.839920px;}
.ws10{word-spacing:-23.755680px;}
.ws59{word-spacing:-23.587200px;}
.ws7e{word-spacing:-23.334480px;}
.ws58{word-spacing:-23.250240px;}
.ws57{word-spacing:-23.166000px;}
.ws69{word-spacing:-23.081760px;}
.ws5d{word-spacing:-22.997520px;}
.ws5e{word-spacing:-22.913280px;}
.ws6a{word-spacing:-22.829040px;}
.wsb{word-spacing:-22.660560px;}
.wsa{word-spacing:-20.304000px;}
.ws64{word-spacing:-20.232000px;}
.ws37{word-spacing:-20.160000px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.ws8{word-spacing:-19.800000px;}
.ws7f{word-spacing:-19.728000px;}
.ws9{word-spacing:-19.584000px;}
.wsc{word-spacing:-19.512000px;}
.wsd{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.296000px;}
.wse{word-spacing:-19.152000px;}
.ws84{word-spacing:-19.080000px;}
.ws92{word-spacing:-18.745920px;}
.ws8f{word-spacing:-18.414720px;}
.ws8d{word-spacing:-18.282240px;}
.ws8e{word-spacing:-18.149760px;}
.ws9b{word-spacing:-18.083520px;}
.ws9d{word-spacing:-18.017280px;}
.ws90{word-spacing:-17.553600px;}
.ws9c{word-spacing:-17.421120px;}
.ws4b{word-spacing:-17.210880px;}
.ws66{word-spacing:-16.971840px;}
.ws6e{word-spacing:-16.852320px;}
.ws72{word-spacing:-16.673040px;}
.ws65{word-spacing:-16.613280px;}
.ws36{word-spacing:-16.493760px;}
.ws6f{word-spacing:-16.374240px;}
.ws5c{word-spacing:-16.314480px;}
.ws1{word-spacing:-15.786786px;}
.ws3{word-spacing:-13.410720px;}
.ws91{word-spacing:-11.442240px;}
.ws56{word-spacing:-10.808640px;}
.ws25{word-spacing:-5.184000px;}
.ws24{word-spacing:-4.464000px;}
.ws45{word-spacing:-4.032000px;}
.ws26{word-spacing:-3.744000px;}
.ws41{word-spacing:-3.456000px;}
.ws82{word-spacing:-3.312000px;}
.ws74{word-spacing:-3.240000px;}
.ws1a{word-spacing:-3.024000px;}
.ws42{word-spacing:-2.736000px;}
.ws93{word-spacing:-2.592000px;}
.ws14{word-spacing:-2.412000px;}
.ws47{word-spacing:-2.304000px;}
.ws4e{word-spacing:-1.872000px;}
.ws3a{word-spacing:-1.584000px;}
.ws29{word-spacing:-0.864000px;}
.ws98{word-spacing:-0.728640px;}
.ws76{word-spacing:-0.657360px;}
.ws67{word-spacing:-0.597600px;}
.ws7a{word-spacing:-0.505440px;}
.ws75{word-spacing:-0.504000px;}
.ws83{word-spacing:-0.432000px;}
.ws52{word-spacing:-0.360000px;}
.ws6c{word-spacing:-0.336960px;}
.wsa1{word-spacing:-0.331200px;}
.ws70{word-spacing:-0.298800px;}
.ws19{word-spacing:-0.288000px;}
.ws97{word-spacing:-0.264960px;}
.ws8c{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.144000px;}
.ws9a{word-spacing:-0.132480px;}
.ws15{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.059760px;}
.ws99{word-spacing:0.066240px;}
.ws3f{word-spacing:0.119520px;}
.ws96{word-spacing:0.132480px;}
.ws27{word-spacing:0.144000px;}
.ws71{word-spacing:0.179280px;}
.ws28{word-spacing:0.216000px;}
.ws3e{word-spacing:0.239040px;}
.ws5a{word-spacing:0.252720px;}
.wsa0{word-spacing:0.264960px;}
.ws6d{word-spacing:0.288000px;}
.ws6b{word-spacing:0.298800px;}
.ws9f{word-spacing:0.331200px;}
.ws51{word-spacing:0.360000px;}
.ws68{word-spacing:0.421200px;}
.ws1e{word-spacing:0.432000px;}
.ws79{word-spacing:0.463680px;}
.ws13{word-spacing:0.482400px;}
.ws7c{word-spacing:0.504000px;}
.ws16{word-spacing:0.540000px;}
.ws18{word-spacing:0.576000px;}
.ws9e{word-spacing:0.596160px;}
.ws78{word-spacing:0.662400px;}
.ws2b{word-spacing:0.720000px;}
.ws95{word-spacing:0.728640px;}
.ws11{word-spacing:0.776880px;}
.wsa2{word-spacing:0.794880px;}
.ws2a{word-spacing:0.864000px;}
.ws77{word-spacing:0.896400px;}
.ws38{word-spacing:1.008000px;}
.ws49{word-spacing:1.080000px;}
.ws85{word-spacing:1.152000px;}
.ws1b{word-spacing:1.296000px;}
.ws48{word-spacing:1.728000px;}
.ws1c{word-spacing:2.016000px;}
.ws94{word-spacing:2.088000px;}
.ws7d{word-spacing:2.448000px;}
.ws2d{word-spacing:2.736000px;}
.ws5f{word-spacing:3.096000px;}
.ws3b{word-spacing:3.168000px;}
.ws34{word-spacing:3.240000px;}
.ws2e{word-spacing:3.456000px;}
.ws4d{word-spacing:3.960000px;}
.ws20{word-spacing:4.176000px;}
.ws3d{word-spacing:4.608000px;}
.ws1f{word-spacing:4.896000px;}
.ws21{word-spacing:5.040000px;}
.ws46{word-spacing:5.184000px;}
.ws3c{word-spacing:5.328000px;}
.ws2c{word-spacing:5.616000px;}
.ws43{word-spacing:5.760000px;}
.ws44{word-spacing:6.048000px;}
.ws33{word-spacing:6.336000px;}
.ws40{word-spacing:6.624000px;}
.ws22{word-spacing:7.056000px;}
.ws87{word-spacing:7.200000px;}
.ws23{word-spacing:7.776000px;}
.ws4a{word-spacing:8.064000px;}
.ws50{word-spacing:8.208000px;}
.ws1d{word-spacing:8.496000px;}
.ws35{word-spacing:9.216000px;}
.ws30{word-spacing:9.936000px;}
.ws2f{word-spacing:10.656000px;}
.ws5b{word-spacing:11.376000px;}
.ws39{word-spacing:12.096000px;}
.ws31{word-spacing:12.816000px;}
.ws86{word-spacing:13.248000px;}
.ws32{word-spacing:13.536000px;}
.ws53{word-spacing:14.256000px;}
.ws54{word-spacing:14.544000px;}
.ws2{word-spacing:15.732584px;}
.ws55{word-spacing:16.416000px;}
.ws80{word-spacing:17.136000px;}
.ws81{word-spacing:17.856000px;}
.ws61{word-spacing:18.288000px;}
.ws60{word-spacing:18.576000px;}
.ws73{word-spacing:19.296000px;}
.ws4f{word-spacing:20.016000px;}
.ws7b{word-spacing:20.736000px;}
.ws62{word-spacing:24.768000px;}
.ws63{word-spacing:25.056000px;}
.ws8a{word-spacing:27.936000px;}
.ws8b{word-spacing:28.656000px;}
.ws88{word-spacing:37.296000px;}
.ws89{word-spacing:37.728000px;}
._a{margin-left:-22.015554px;}
._13{margin-left:-6.823440px;}
._12{margin-left:-5.797632px;}
._7{margin-left:-4.542960px;}
._2{margin-left:-2.839350px;}
._1{margin-left:-1.817184px;}
._0{width:1.362888px;}
._8{width:2.952924px;}
._b{width:4.523088px;}
._9{width:5.977560px;}
._d{width:7.724571px;}
._5{width:9.483429px;}
._c{width:11.280534px;}
._f{width:12.634368px;}
._10{width:14.719104px;}
._6{width:18.682923px;}
._14{width:25.488000px;}
._16{width:27.576000px;}
._17{width:28.606296px;}
._4{width:37.252272px;}
._3{width:44.293860px;}
._e{width:142.112880px;}
._11{width:843.984000px;}
._15{width:2844.144000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(91,75,75);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:56.787000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:59.775600px;}
.fsa{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs0{font-size:90.859200px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:2.160000px;}
.yf7{bottom:3.420000px;}
.yf0{bottom:3.780000px;}
.yee{bottom:4.140000px;}
.y61{bottom:6.480000px;}
.y80{bottom:6.660000px;}
.y14{bottom:66.059640px;}
.y13{bottom:90.179640px;}
.y10{bottom:111.475500px;}
.y12{bottom:111.960000px;}
.yf{bottom:129.409500px;}
.y3c{bottom:130.500000px;}
.y136{bottom:130.680000px;}
.y7e{bottom:144.360000px;}
.ye{bottom:147.342000px;}
.yb4{bottom:148.140000px;}
.y5f{bottom:149.760000px;}
.yc4{bottom:151.740000px;}
.yf5{bottom:152.280900px;}
.y3b{bottom:153.180000px;}
.y135{bottom:153.360000px;}
.y11c{bottom:162.540000px;}
.y156{bottom:166.497840px;}
.y7d{bottom:167.040000px;}
.yb3{bottom:170.820000px;}
.yf4{bottom:171.180000px;}
.y5e{bottom:172.440000px;}
.yc3{bottom:174.600000px;}
.y3a{bottom:176.040000px;}
.y134{bottom:176.220000px;}
.y11b{bottom:185.400000px;}
.y155{bottom:187.197840px;}
.y7c{bottom:189.900000px;}
.yb2{bottom:193.680000px;}
.y5d{bottom:195.300000px;}
.yf3{bottom:196.380000px;}
.yc2{bottom:197.280000px;}
.y39{bottom:198.720000px;}
.y133{bottom:198.900000px;}
.y9c{bottom:204.480000px;}
.y11a{bottom:208.080000px;}
.y7b{bottom:212.580000px;}
.yb1{bottom:216.360000px;}
.y5c{bottom:217.980000px;}
.yd{bottom:219.072000px;}
.yc1{bottom:220.140000px;}
.y38{bottom:221.580000px;}
.ye3{bottom:221.755680px;}
.y184{bottom:223.200000px;}
.yde{bottom:226.620000px;}
.y154{bottom:228.938400px;}
.yce{bottom:230.040000px;}
.y132{bottom:230.760000px;}
.y119{bottom:230.940000px;}
.yec{bottom:232.381620px;}
.y9b{bottom:236.340000px;}
.yc{bottom:237.006000px;}
.ye2{bottom:240.654780px;}
.y5b{bottom:240.840000px;}
.yc0{bottom:242.820000px;}
.y183{bottom:244.075680px;}
.y37{bottom:244.260000px;}
.y7a{bottom:244.440000px;}
.ydd{bottom:249.300000px;}
.y153{bottom:249.820560px;}
.yb0{bottom:250.380000px;}
.yeb{bottom:251.462520px;}
.ycd{bottom:252.720000px;}
.y131{bottom:253.440000px;}
.y118{bottom:253.620000px;}
.yb{bottom:254.938500px;}
.y9a{bottom:259.020000px;}
.y5a{bottom:263.520000px;}
.y182{bottom:264.957840px;}
.ye1{bottom:265.500000px;}
.ybf{bottom:265.680000px;}
.y36{bottom:267.120000px;}
.y152{bottom:270.702720px;}
.ydc{bottom:272.160000px;}
.yea{bottom:274.500000px;}
.ycc{bottom:275.580000px;}
.y130{bottom:276.300000px;}
.y99{bottom:281.880000px;}
.y117{bottom:285.480000px;}
.y181{bottom:285.840000px;}
.y59{bottom:286.380000px;}
.ybe{bottom:288.360000px;}
.y35{bottom:289.800000px;}
.y79{bottom:289.980000px;}
.y151{bottom:291.584880px;}
.ydb{bottom:294.840000px;}
.ycb{bottom:298.260000px;}
.y12f{bottom:298.980000px;}
.y98{bottom:304.560000px;}
.y180{bottom:306.720000px;}
.y101{bottom:307.440000px;}
.y116{bottom:308.160000px;}
.ya{bottom:308.736000px;}
.y58{bottom:309.060000px;}
.ybd{bottom:311.220000px;}
.y150{bottom:312.467040px;}
.y78{bottom:312.660000px;}
.yaf{bottom:313.921620px;}
.yda{bottom:317.700000px;}
.yca{bottom:321.120000px;}
.y12e{bottom:321.840000px;}
.y34{bottom:322.560000px;}
.y9{bottom:326.668500px;}
.y97{bottom:327.420000px;}
.y17f{bottom:327.587040px;}
.y100{bottom:330.120000px;}
.y115{bottom:331.020000px;}
.yae{bottom:333.000900px;}
.y14f{bottom:333.349200px;}
.ybc{bottom:333.900000px;}
.yd9{bottom:340.380000px;}
.y57{bottom:340.920000px;}
.y77{bottom:344.520000px;}
.y17e{bottom:348.469200px;}
.y96{bottom:350.100000px;}
.yad{bottom:351.900000px;}
.yff{bottom:352.980000px;}
.y114{bottom:353.700000px;}
.y14e{bottom:354.231360px;}
.yc9{bottom:354.960000px;}
.ybb{bottom:356.760000px;}
.y8{bottom:362.535000px;}
.yd8{bottom:363.240000px;}
.y56{bottom:363.600000px;}
.y76{bottom:367.200000px;}
.y12d{bottom:367.380000px;}
.y17d{bottom:369.169200px;}
.y95{bottom:372.960000px;}
.y14d{bottom:375.113520px;}
.y33{bottom:375.120000px;}
.yfe{bottom:375.660000px;}
.yac{bottom:376.920000px;}
.yba{bottom:379.440000px;}
.y7{bottom:380.467500px;}
.y113{bottom:385.560000px;}
.yd7{bottom:385.920000px;}
.y55{bottom:386.460000px;}
.y17c{bottom:390.051360px;}
.y75{bottom:390.060000px;}
.y94{bottom:395.640000px;}
.y14c{bottom:395.995680px;}
.y32{bottom:397.980000px;}
.y6{bottom:398.400000px;}
.yfd{bottom:398.520000px;}
.y12c{bottom:399.060000px;}
.y112{bottom:408.240000px;}
.yd6{bottom:408.780000px;}
.y54{bottom:409.140000px;}
.y17b{bottom:410.933520px;}
.y74{bottom:412.740000px;}
.yb9{bottom:413.460000px;}
.y5{bottom:416.332500px;}
.y14b{bottom:416.877840px;}
.y93{bottom:418.500000px;}
.yc8{bottom:418.680900px;}
.y31{bottom:420.660000px;}
.y12b{bottom:421.920000px;}
.y111{bottom:431.100000px;}
.yd5{bottom:431.460000px;}
.y17a{bottom:431.815680px;}
.y53{bottom:432.000000px;}
.y73{bottom:435.600000px;}
.yc7{bottom:437.581620px;}
.y14a{bottom:437.723280px;}
.y30{bottom:443.520000px;}
.y12a{bottom:444.600000px;}
.y92{bottom:451.080000px;}
.y179{bottom:452.697840px;}
.y110{bottom:453.780000px;}
.yd4{bottom:454.320000px;}
.y52{bottom:454.680000px;}
.yfc{bottom:456.300900px;}
.yc6{bottom:456.660000px;}
.y72{bottom:458.280000px;}
.y149{bottom:458.605440px;}
.y4{bottom:461.164500px;}
.y2f{bottom:466.200000px;}
.y129{bottom:467.460000px;}
.y178{bottom:473.580000px;}
.yfb{bottom:475.200000px;}
.y10f{bottom:476.640000px;}
.yb8{bottom:477.001620px;}
.y51{bottom:477.540000px;}
.y148{bottom:479.487600px;}
.y71{bottom:481.140000px;}
.yc5{bottom:481.680000px;}
.yd3{bottom:488.160000px;}
.y2e{bottom:489.060000px;}
.y177{bottom:494.393040px;}
.yb7{bottom:496.080900px;}
.y128{bottom:499.140000px;}
.y10e{bottom:499.320000px;}
.y50{bottom:500.220000px;}
.y147{bottom:500.369760px;}
.yfa{bottom:500.400000px;}
.y70{bottom:503.820000px;}
.y2d{bottom:511.740000px;}
.yb6{bottom:514.980000px;}
.y176{bottom:515.275200px;}
.y146{bottom:521.251920px;}
.y127{bottom:522.000000px;}
.y4f{bottom:523.080000px;}
.ye9{bottom:524.701620px;}
.y91{bottom:526.500000px;}
.y10d{bottom:531.180000px;}
.y2c{bottom:534.600000px;}
.y175{bottom:536.157360px;}
.yb5{bottom:540.180000px;}
.y145{bottom:542.134080px;}
.ye8{bottom:543.780000px;}
.y126{bottom:544.680000px;}
.y4e{bottom:545.760000px;}
.y90{bottom:549.360000px;}
.yd2{bottom:551.880900px;}
.y10c{bottom:553.860000px;}
.y174{bottom:557.039520px;}
.y2b{bottom:557.280000px;}
.y6f{bottom:561.601620px;}
.y144{bottom:563.016240px;}
.y125{bottom:567.540000px;}
.yd1{bottom:570.781620px;}
.y8f{bottom:572.040000px;}
.ye7{bottom:572.400000px;}
.y10b{bottom:576.720000px;}
.y173{bottom:577.921680px;}
.y2a{bottom:580.140000px;}
.yed{bottom:580.320000px;}
.y6e{bottom:580.680000px;}
.yef{bottom:581.940000px;}
.y143{bottom:583.898400px;}
.yd0{bottom:589.860000px;}
.y124{bottom:590.220000px;}
.y8e{bottom:594.900000px;}
.y172{bottom:598.803840px;}
.y10a{bottom:599.400000px;}
.y29{bottom:602.820000px;}
.y4d{bottom:603.545040px;}
.y142{bottom:604.598400px;}
.y6d{bottom:605.700000px;}
.ycf{bottom:614.880000px;}
.y8d{bottom:617.580000px;}
.y171{bottom:619.686000px;}
.y7f{bottom:621.900000px;}
.y109{bottom:622.080000px;}
.y81{bottom:622.620000px;}
.y4c{bottom:622.623420px;}
.y141{bottom:625.480560px;}
.y28{bottom:625.680000px;}
.y8c{bottom:640.440000px;}
.y170{bottom:640.568160px;}
.y4b{bottom:641.522520px;}
.y108{bottom:644.940000px;}
.y140{bottom:646.362720px;}
.y123{bottom:648.183420px;}
.y27{bottom:648.360000px;}
.y4a{bottom:660.600900px;}
.y16f{bottom:661.450320px;}
.y122{bottom:667.082520px;}
.y13f{bottom:667.244880px;}
.y107{bottom:667.620000px;}
.y26{bottom:671.040000px;}
.y8b{bottom:672.120000px;}
.y49{bottom:679.500000px;}
.y16e{bottom:682.332480px;}
.y121{bottom:686.160900px;}
.y13e{bottom:688.127040px;}
.y25{bottom:693.900000px;}
.y8a{bottom:694.980000px;}
.y106{bottom:700.380000px;}
.y16d{bottom:703.214640px;}
.y48{bottom:704.520000px;}
.y120{bottom:705.060000px;}
.yf2{bottom:707.760000px;}
.y13d{bottom:709.009200px;}
.y60{bottom:711.720000px;}
.y24{bottom:716.580000px;}
.y89{bottom:717.660000px;}
.y16c{bottom:724.096800px;}
.y13c{bottom:729.891360px;}
.y11f{bottom:730.080000px;}
.yf1{bottom:732.780000px;}
.yf9{bottom:738.360000px;}
.yf6{bottom:738.900000px;}
.yf8{bottom:739.080000px;}
.y23{bottom:739.440000px;}
.y88{bottom:740.520000px;}
.y16b{bottom:744.978960px;}
.y13b{bottom:750.773520px;}
.y105{bottom:761.041620px;}
.y22{bottom:762.120000px;}
.y87{bottom:763.200000px;}
.y16a{bottom:765.678960px;}
.y13a{bottom:771.655680px;}
.y104{bottom:780.115680px;}
.y21{bottom:784.980000px;}
.y86{bottom:786.060000px;}
.y169{bottom:786.561120px;}
.y139{bottom:792.537840px;}
.y103{bottom:799.014780px;}
.y168{bottom:807.443280px;}
.y20{bottom:807.660000px;}
.y138{bottom:813.420000px;}
.y102{bottom:823.860000px;}
.y167{bottom:828.325440px;}
.y1f{bottom:830.520000px;}
.y6c{bottom:833.220000px;}
.y85{bottom:843.842520px;}
.y137{bottom:846.000000px;}
.yab{bottom:847.980000px;}
.y166{bottom:849.207600px;}
.y1e{bottom:853.200000px;}
.y6b{bottom:855.900000px;}
.y84{bottom:862.920900px;}
.y3{bottom:863.829000px;}
.y165{bottom:870.089760px;}
.yaa{bottom:870.660000px;}
.y1d{bottom:876.060000px;}
.y6a{bottom:878.760000px;}
.y83{bottom:881.820000px;}
.y164{bottom:890.971920px;}
.ya9{bottom:893.520000px;}
.y1c{bottom:898.740000px;}
.y2{bottom:899.695500px;}
.y69{bottom:901.440000px;}
.y82{bottom:906.840000px;}
.y163{bottom:911.854080px;}
.y9d{bottom:912.780000px;}
.ya8{bottom:916.200000px;}
.y68{bottom:924.300000px;}
.ye0{bottom:930.060000px;}
.y162{bottom:932.736240px;}
.y1b{bottom:932.760000px;}
.y47{bottom:933.300000px;}
.ya7{bottom:939.060000px;}
.y67{bottom:946.980000px;}
.y161{bottom:953.618400px;}
.ydf{bottom:955.080000px;}
.y46{bottom:955.980000px;}
.ya6{bottom:961.740000px;}
.y1{bottom:962.460000px;}
.ye6{bottom:963.000000px;}
.ye4{bottom:963.360000px;}
.y66{bottom:969.840000px;}
.y160{bottom:974.500560px;}
.y45{bottom:978.840000px;}
.ya5{bottom:984.600000px;}
.y1a{bottom:988.380000px;}
.y65{bottom:992.520000px;}
.y15f{bottom:995.382720px;}
.y44{bottom:1001.520000px;}
.ya4{bottom:1007.280000px;}
.y19{bottom:1011.060000px;}
.y64{bottom:1015.380000px;}
.y15e{bottom:1016.264880px;}
.y43{bottom:1024.380000px;}
.ya3{bottom:1030.140000px;}
.y18{bottom:1033.920000px;}
.y15d{bottom:1037.147040px;}
.y63{bottom:1038.060000px;}
.y42{bottom:1047.060000px;}
.ya2{bottom:1052.820000px;}
.y17{bottom:1056.600000px;}
.y15c{bottom:1058.029200px;}
.y62{bottom:1060.920000px;}
.y41{bottom:1069.920000px;}
.ya1{bottom:1075.680000px;}
.y15b{bottom:1078.911360px;}
.y11e{bottom:1083.600000px;}
.y16{bottom:1091.331000px;}
.y40{bottom:1092.600000px;}
.ya0{bottom:1098.360000px;}
.y15a{bottom:1099.793520px;}
.y11d{bottom:1106.460000px;}
.y3f{bottom:1115.460000px;}
.y159{bottom:1120.675680px;}
.y9f{bottom:1121.220000px;}
.y15{bottom:1125.540000px;}
.y3e{bottom:1138.140000px;}
.y158{bottom:1141.557840px;}
.y9e{bottom:1155.240000px;}
.y3d{bottom:1161.000000px;}
.y157{bottom:1162.440000px;}
.y11{bottom:1195.740000px;}
.h19{height:18.900000px;}
.h15{height:19.080000px;}
.h16{height:19.081500px;}
.h18{height:20.878500px;}
.h17{height:21.060000px;}
.h10{height:23.578500px;}
.he{height:23.580000px;}
.h11{height:23.760000px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.h8{height:50.312812px;}
.h7{height:62.327813px;}
.h14{height:62.345093px;}
.hb{height:63.344531px;}
.h2{height:67.326667px;}
.h1a{height:69.086250px;}
.h1f{height:69.103530px;}
.h1e{height:69.138090px;}
.h1c{height:69.172650px;}
.h1b{height:69.233130px;}
.h1d{height:69.354090px;}
.hd{height:75.073590px;}
.h12{height:75.083670px;}
.hf{height:75.087270px;}
.h13{height:75.090150px;}
.ha{height:75.093750px;}
.h3{height:84.385482px;}
.hc{height:87.859687px;}
.h9{height:112.640625px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:37.440000px;}
.w7{width:46.620000px;}
.w8{width:46.800000px;}
.w6{width:46.980000px;}
.w3{width:49.680000px;}
.w4{width:49.860000px;}
.wd{width:51.118500px;}
.we{width:51.120000px;}
.wc{width:54.360000px;}
.wb{width:56.160000px;}
.wa{width:58.860000px;}
.w9{width:60.300000px;}
.w10{width:97.920000px;}
.wf{width:97.921500px;}
.w11{width:108.898500px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:10.980000px;}
.x15{left:12.060000px;}
.x12{left:13.500000px;}
.x20{left:16.380000px;}
.x1a{left:19.620000px;}
.x4{left:84.962700px;}
.x17{left:88.380000px;}
.x1{left:102.046500px;}
.x21{left:119.007360px;}
.x6{left:138.056760px;}
.x18{left:148.859460px;}
.x11{left:203.580000px;}
.x1d{left:209.160000px;}
.xf{left:229.680000px;}
.xb{left:266.040000px;}
.x19{left:347.040000px;}
.x13{left:381.240000px;}
.x1e{left:419.580000px;}
.x7{left:422.640000px;}
.x2{left:431.820000px;}
.xe{left:445.500000px;}
.xc{left:519.480000px;}
.x14{left:560.700000px;}
.x1f{left:619.200000px;}
.x1c{left:728.640000px;}
.x16{left:738.900000px;}
.x1b{left:750.600000px;}
.x9{left:760.860000px;}
.xd{left:769.860000px;}
.x3{left:783.900000px;}
.x10{left:796.140000px;}
.xa{left:807.660000px;}
.x5{left:811.080000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.996800pt;}
.v2{vertical-align:21.250560pt;}
.ls53{letter-spacing:-1.024000pt;}
.ls6d{letter-spacing:-0.883200pt;}
.ls54{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls61{letter-spacing:-0.765440pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.524160pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls6c{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls3f{letter-spacing:-0.374400pt;}
.ls5f{letter-spacing:-0.353280pt;}
.ls3a{letter-spacing:-0.299520pt;}
.ls4c{letter-spacing:-0.294400pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.265600pt;}
.ls50{letter-spacing:-0.256000pt;}
.ls60{letter-spacing:-0.235520pt;}
.ls32{letter-spacing:-0.224640pt;}
.ls48{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.171520pt;}
.ls44{letter-spacing:-0.149760pt;}
.ls62{letter-spacing:-0.148480pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.ls33{letter-spacing:-0.074880pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.053120pt;}
.ls47{letter-spacing:0.058432pt;}
.ls24{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.079680pt;}
.ls3c{letter-spacing:0.084992pt;}
.ls5a{letter-spacing:0.105984pt;}
.ls4e{letter-spacing:0.115200pt;}
.ls9{letter-spacing:0.121600pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.149760pt;}
.ls41{letter-spacing:0.180608pt;}
.ls65{letter-spacing:0.182528pt;}
.ls2{letter-spacing:0.192000pt;}
.ls46{letter-spacing:0.196544pt;}
.ls29{letter-spacing:0.212480pt;}
.ls4a{letter-spacing:0.217792pt;}
.ls58{letter-spacing:0.229632pt;}
.ls5d{letter-spacing:0.235520pt;}
.ls68{letter-spacing:0.241408pt;}
.ls36{letter-spacing:0.249600pt;}
.ls1f{letter-spacing:0.254976pt;}
.ls3{letter-spacing:0.256000pt;}
.ls67{letter-spacing:0.259072pt;}
.ls6a{letter-spacing:0.276736pt;}
.lsf{letter-spacing:0.288000pt;}
.ls5b{letter-spacing:0.288512pt;}
.ls27{letter-spacing:0.292160pt;}
.ls56{letter-spacing:0.294400pt;}
.ls19{letter-spacing:0.299520pt;}
.ls66{letter-spacing:0.312064pt;}
.ls6b{letter-spacing:0.317952pt;}
.ls3e{letter-spacing:0.318720pt;}
.ls57{letter-spacing:0.341504pt;}
.ls69{letter-spacing:0.353280pt;}
.ls63{letter-spacing:0.365056pt;}
.ls2e{letter-spacing:0.374400pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls5e{letter-spacing:0.476928pt;}
.ls26{letter-spacing:0.483392pt;}
.ls34{letter-spacing:0.488704pt;}
.ls28{letter-spacing:0.531200pt;}
.ls59{letter-spacing:0.541696pt;}
.ls64{letter-spacing:0.565248pt;}
.ls45{letter-spacing:0.584320pt;}
.ls51{letter-spacing:0.616192pt;}
.ls4f{letter-spacing:0.624640pt;}
.ls40{letter-spacing:0.669312pt;}
.ls25{letter-spacing:0.761600pt;}
.ls1a{letter-spacing:0.768000pt;}
.lsc{letter-spacing:1.401600pt;}
.ls1c{letter-spacing:1.408000pt;}
.ls30{letter-spacing:2.041600pt;}
.ls21{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:3.328000pt;}
.ls2a{letter-spacing:3.961600pt;}
.lsb{letter-spacing:3.968000pt;}
.ls1e{letter-spacing:4.608000pt;}
.ls35{letter-spacing:5.241600pt;}
.ls6{letter-spacing:5.248000pt;}
.ls2f{letter-spacing:5.881600pt;}
.ls3b{letter-spacing:5.888000pt;}
.ls2d{letter-spacing:6.528000pt;}
.ls5c{letter-spacing:6.653440pt;}
.ls5{letter-spacing:7.168000pt;}
.ls31{letter-spacing:7.801600pt;}
.ls20{letter-spacing:7.808000pt;}
.ls43{letter-spacing:8.448000pt;}
.ls42{letter-spacing:9.088000pt;}
.ls8{letter-spacing:9.728000pt;}
.ls22{letter-spacing:11.008000pt;}
.lsa{letter-spacing:11.641600pt;}
.ls1b{letter-spacing:11.648000pt;}
.ls2c{letter-spacing:12.928000pt;}
.ls1{letter-spacing:18.138240pt;}
.ls37{letter-spacing:22.528000pt;}
.ls52{letter-spacing:25.728000pt;}
.ls55{letter-spacing:39.331840pt;}
.ws5{word-spacing:-26.976000pt;}
.ws4{word-spacing:-26.880000pt;}
.ws4c{word-spacing:-21.191040pt;}
.ws10{word-spacing:-21.116160pt;}
.ws59{word-spacing:-20.966400pt;}
.ws7e{word-spacing:-20.741760pt;}
.ws58{word-spacing:-20.666880pt;}
.ws57{word-spacing:-20.592000pt;}
.ws69{word-spacing:-20.517120pt;}
.ws5d{word-spacing:-20.442240pt;}
.ws5e{word-spacing:-20.367360pt;}
.ws6a{word-spacing:-20.292480pt;}
.wsb{word-spacing:-20.142720pt;}
.wsa{word-spacing:-18.048000pt;}
.ws64{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.920000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws7f{word-spacing:-17.536000pt;}
.ws9{word-spacing:-17.408000pt;}
.wsc{word-spacing:-17.344000pt;}
.wsd{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.152000pt;}
.wse{word-spacing:-17.024000pt;}
.ws84{word-spacing:-16.960000pt;}
.ws92{word-spacing:-16.663040pt;}
.ws8f{word-spacing:-16.368640pt;}
.ws8d{word-spacing:-16.250880pt;}
.ws8e{word-spacing:-16.133120pt;}
.ws9b{word-spacing:-16.074240pt;}
.ws9d{word-spacing:-16.015360pt;}
.ws90{word-spacing:-15.603200pt;}
.ws9c{word-spacing:-15.485440pt;}
.ws4b{word-spacing:-15.298560pt;}
.ws66{word-spacing:-15.086080pt;}
.ws6e{word-spacing:-14.979840pt;}
.ws72{word-spacing:-14.820480pt;}
.ws65{word-spacing:-14.767360pt;}
.ws36{word-spacing:-14.661120pt;}
.ws6f{word-spacing:-14.554880pt;}
.ws5c{word-spacing:-14.501760pt;}
.ws1{word-spacing:-14.032699pt;}
.ws3{word-spacing:-11.920640pt;}
.ws91{word-spacing:-10.170880pt;}
.ws56{word-spacing:-9.607680pt;}
.ws25{word-spacing:-4.608000pt;}
.ws24{word-spacing:-3.968000pt;}
.ws45{word-spacing:-3.584000pt;}
.ws26{word-spacing:-3.328000pt;}
.ws41{word-spacing:-3.072000pt;}
.ws82{word-spacing:-2.944000pt;}
.ws74{word-spacing:-2.880000pt;}
.ws1a{word-spacing:-2.688000pt;}
.ws42{word-spacing:-2.432000pt;}
.ws93{word-spacing:-2.304000pt;}
.ws14{word-spacing:-2.144000pt;}
.ws47{word-spacing:-2.048000pt;}
.ws4e{word-spacing:-1.664000pt;}
.ws3a{word-spacing:-1.408000pt;}
.ws29{word-spacing:-0.768000pt;}
.ws98{word-spacing:-0.647680pt;}
.ws76{word-spacing:-0.584320pt;}
.ws67{word-spacing:-0.531200pt;}
.ws7a{word-spacing:-0.449280pt;}
.ws75{word-spacing:-0.448000pt;}
.ws83{word-spacing:-0.384000pt;}
.ws52{word-spacing:-0.320000pt;}
.ws6c{word-spacing:-0.299520pt;}
.wsa1{word-spacing:-0.294400pt;}
.ws70{word-spacing:-0.265600pt;}
.ws19{word-spacing:-0.256000pt;}
.ws97{word-spacing:-0.235520pt;}
.ws8c{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.128000pt;}
.ws9a{word-spacing:-0.117760pt;}
.ws15{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053120pt;}
.ws99{word-spacing:0.058880pt;}
.ws3f{word-spacing:0.106240pt;}
.ws96{word-spacing:0.117760pt;}
.ws27{word-spacing:0.128000pt;}
.ws71{word-spacing:0.159360pt;}
.ws28{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.212480pt;}
.ws5a{word-spacing:0.224640pt;}
.wsa0{word-spacing:0.235520pt;}
.ws6d{word-spacing:0.256000pt;}
.ws6b{word-spacing:0.265600pt;}
.ws9f{word-spacing:0.294400pt;}
.ws51{word-spacing:0.320000pt;}
.ws68{word-spacing:0.374400pt;}
.ws1e{word-spacing:0.384000pt;}
.ws79{word-spacing:0.412160pt;}
.ws13{word-spacing:0.428800pt;}
.ws7c{word-spacing:0.448000pt;}
.ws16{word-spacing:0.480000pt;}
.ws18{word-spacing:0.512000pt;}
.ws9e{word-spacing:0.529920pt;}
.ws78{word-spacing:0.588800pt;}
.ws2b{word-spacing:0.640000pt;}
.ws95{word-spacing:0.647680pt;}
.ws11{word-spacing:0.690560pt;}
.wsa2{word-spacing:0.706560pt;}
.ws2a{word-spacing:0.768000pt;}
.ws77{word-spacing:0.796800pt;}
.ws38{word-spacing:0.896000pt;}
.ws49{word-spacing:0.960000pt;}
.ws85{word-spacing:1.024000pt;}
.ws1b{word-spacing:1.152000pt;}
.ws48{word-spacing:1.536000pt;}
.ws1c{word-spacing:1.792000pt;}
.ws94{word-spacing:1.856000pt;}
.ws7d{word-spacing:2.176000pt;}
.ws2d{word-spacing:2.432000pt;}
.ws5f{word-spacing:2.752000pt;}
.ws3b{word-spacing:2.816000pt;}
.ws34{word-spacing:2.880000pt;}
.ws2e{word-spacing:3.072000pt;}
.ws4d{word-spacing:3.520000pt;}
.ws20{word-spacing:3.712000pt;}
.ws3d{word-spacing:4.096000pt;}
.ws1f{word-spacing:4.352000pt;}
.ws21{word-spacing:4.480000pt;}
.ws46{word-spacing:4.608000pt;}
.ws3c{word-spacing:4.736000pt;}
.ws2c{word-spacing:4.992000pt;}
.ws43{word-spacing:5.120000pt;}
.ws44{word-spacing:5.376000pt;}
.ws33{word-spacing:5.632000pt;}
.ws40{word-spacing:5.888000pt;}
.ws22{word-spacing:6.272000pt;}
.ws87{word-spacing:6.400000pt;}
.ws23{word-spacing:6.912000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws50{word-spacing:7.296000pt;}
.ws1d{word-spacing:7.552000pt;}
.ws35{word-spacing:8.192000pt;}
.ws30{word-spacing:8.832000pt;}
.ws2f{word-spacing:9.472000pt;}
.ws5b{word-spacing:10.112000pt;}
.ws39{word-spacing:10.752000pt;}
.ws31{word-spacing:11.392000pt;}
.ws86{word-spacing:11.776000pt;}
.ws32{word-spacing:12.032000pt;}
.ws53{word-spacing:12.672000pt;}
.ws54{word-spacing:12.928000pt;}
.ws2{word-spacing:13.984519pt;}
.ws55{word-spacing:14.592000pt;}
.ws80{word-spacing:15.232000pt;}
.ws81{word-spacing:15.872000pt;}
.ws61{word-spacing:16.256000pt;}
.ws60{word-spacing:16.512000pt;}
.ws73{word-spacing:17.152000pt;}
.ws4f{word-spacing:17.792000pt;}
.ws7b{word-spacing:18.432000pt;}
.ws62{word-spacing:22.016000pt;}
.ws63{word-spacing:22.272000pt;}
.ws8a{word-spacing:24.832000pt;}
.ws8b{word-spacing:25.472000pt;}
.ws88{word-spacing:33.152000pt;}
.ws89{word-spacing:33.536000pt;}
._a{margin-left:-19.569381pt;}
._13{margin-left:-6.065280pt;}
._12{margin-left:-5.153451pt;}
._7{margin-left:-4.038187pt;}
._2{margin-left:-2.523867pt;}
._1{margin-left:-1.615275pt;}
._0{width:1.211456pt;}
._8{width:2.624821pt;}
._b{width:4.020523pt;}
._9{width:5.313387pt;}
._d{width:6.866285pt;}
._5{width:8.429715pt;}
._c{width:10.027141pt;}
._f{width:11.230549pt;}
._10{width:13.083648pt;}
._6{width:16.607043pt;}
._14{width:22.656000pt;}
._16{width:24.512000pt;}
._17{width:25.427819pt;}
._4{width:33.113131pt;}
._3{width:39.372320pt;}
._e{width:126.322560pt;}
._11{width:750.208000pt;}
._15{width:2528.128000pt;}
.fs9{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:50.477333pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:53.133867pt;}
.fsa{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs0{font-size:80.763733pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:1.920000pt;}
.yf7{bottom:3.040000pt;}
.yf0{bottom:3.360000pt;}
.yee{bottom:3.680000pt;}
.y61{bottom:5.760000pt;}
.y80{bottom:5.920000pt;}
.y14{bottom:58.719680pt;}
.y13{bottom:80.159680pt;}
.y10{bottom:99.089333pt;}
.y12{bottom:99.520000pt;}
.yf{bottom:115.030667pt;}
.y3c{bottom:116.000000pt;}
.y136{bottom:116.160000pt;}
.y7e{bottom:128.320000pt;}
.ye{bottom:130.970667pt;}
.yb4{bottom:131.680000pt;}
.y5f{bottom:133.120000pt;}
.yc4{bottom:134.880000pt;}
.yf5{bottom:135.360800pt;}
.y3b{bottom:136.160000pt;}
.y135{bottom:136.320000pt;}
.y11c{bottom:144.480000pt;}
.y156{bottom:147.998080pt;}
.y7d{bottom:148.480000pt;}
.yb3{bottom:151.840000pt;}
.yf4{bottom:152.160000pt;}
.y5e{bottom:153.280000pt;}
.yc3{bottom:155.200000pt;}
.y3a{bottom:156.480000pt;}
.y134{bottom:156.640000pt;}
.y11b{bottom:164.800000pt;}
.y155{bottom:166.398080pt;}
.y7c{bottom:168.800000pt;}
.yb2{bottom:172.160000pt;}
.y5d{bottom:173.600000pt;}
.yf3{bottom:174.560000pt;}
.yc2{bottom:175.360000pt;}
.y39{bottom:176.640000pt;}
.y133{bottom:176.800000pt;}
.y9c{bottom:181.760000pt;}
.y11a{bottom:184.960000pt;}
.y7b{bottom:188.960000pt;}
.yb1{bottom:192.320000pt;}
.y5c{bottom:193.760000pt;}
.yd{bottom:194.730667pt;}
.yc1{bottom:195.680000pt;}
.y38{bottom:196.960000pt;}
.ye3{bottom:197.116160pt;}
.y184{bottom:198.400000pt;}
.yde{bottom:201.440000pt;}
.y154{bottom:203.500800pt;}
.yce{bottom:204.480000pt;}
.y132{bottom:205.120000pt;}
.y119{bottom:205.280000pt;}
.yec{bottom:206.561440pt;}
.y9b{bottom:210.080000pt;}
.yc{bottom:210.672000pt;}
.ye2{bottom:213.915360pt;}
.y5b{bottom:214.080000pt;}
.yc0{bottom:215.840000pt;}
.y183{bottom:216.956160pt;}
.y37{bottom:217.120000pt;}
.y7a{bottom:217.280000pt;}
.ydd{bottom:221.600000pt;}
.y153{bottom:222.062720pt;}
.yb0{bottom:222.560000pt;}
.yeb{bottom:223.522240pt;}
.ycd{bottom:224.640000pt;}
.y131{bottom:225.280000pt;}
.y118{bottom:225.440000pt;}
.yb{bottom:226.612000pt;}
.y9a{bottom:230.240000pt;}
.y5a{bottom:234.240000pt;}
.y182{bottom:235.518080pt;}
.ye1{bottom:236.000000pt;}
.ybf{bottom:236.160000pt;}
.y36{bottom:237.440000pt;}
.y152{bottom:240.624640pt;}
.ydc{bottom:241.920000pt;}
.yea{bottom:244.000000pt;}
.ycc{bottom:244.960000pt;}
.y130{bottom:245.600000pt;}
.y99{bottom:250.560000pt;}
.y117{bottom:253.760000pt;}
.y181{bottom:254.080000pt;}
.y59{bottom:254.560000pt;}
.ybe{bottom:256.320000pt;}
.y35{bottom:257.600000pt;}
.y79{bottom:257.760000pt;}
.y151{bottom:259.186560pt;}
.ydb{bottom:262.080000pt;}
.ycb{bottom:265.120000pt;}
.y12f{bottom:265.760000pt;}
.y98{bottom:270.720000pt;}
.y180{bottom:272.640000pt;}
.y101{bottom:273.280000pt;}
.y116{bottom:273.920000pt;}
.ya{bottom:274.432000pt;}
.y58{bottom:274.720000pt;}
.ybd{bottom:276.640000pt;}
.y150{bottom:277.748480pt;}
.y78{bottom:277.920000pt;}
.yaf{bottom:279.041440pt;}
.yda{bottom:282.400000pt;}
.yca{bottom:285.440000pt;}
.y12e{bottom:286.080000pt;}
.y34{bottom:286.720000pt;}
.y9{bottom:290.372000pt;}
.y97{bottom:291.040000pt;}
.y17f{bottom:291.188480pt;}
.y100{bottom:293.440000pt;}
.y115{bottom:294.240000pt;}
.yae{bottom:296.000800pt;}
.y14f{bottom:296.310400pt;}
.ybc{bottom:296.800000pt;}
.yd9{bottom:302.560000pt;}
.y57{bottom:303.040000pt;}
.y77{bottom:306.240000pt;}
.y17e{bottom:309.750400pt;}
.y96{bottom:311.200000pt;}
.yad{bottom:312.800000pt;}
.yff{bottom:313.760000pt;}
.y114{bottom:314.400000pt;}
.y14e{bottom:314.872320pt;}
.yc9{bottom:315.520000pt;}
.ybb{bottom:317.120000pt;}
.y8{bottom:322.253333pt;}
.yd8{bottom:322.880000pt;}
.y56{bottom:323.200000pt;}
.y76{bottom:326.400000pt;}
.y12d{bottom:326.560000pt;}
.y17d{bottom:328.150400pt;}
.y95{bottom:331.520000pt;}
.y14d{bottom:333.434240pt;}
.y33{bottom:333.440000pt;}
.yfe{bottom:333.920000pt;}
.yac{bottom:335.040000pt;}
.yba{bottom:337.280000pt;}
.y7{bottom:338.193333pt;}
.y113{bottom:342.720000pt;}
.yd7{bottom:343.040000pt;}
.y55{bottom:343.520000pt;}
.y17c{bottom:346.712320pt;}
.y75{bottom:346.720000pt;}
.y94{bottom:351.680000pt;}
.y14c{bottom:351.996160pt;}
.y32{bottom:353.760000pt;}
.y6{bottom:354.133333pt;}
.yfd{bottom:354.240000pt;}
.y12c{bottom:354.720000pt;}
.y112{bottom:362.880000pt;}
.yd6{bottom:363.360000pt;}
.y54{bottom:363.680000pt;}
.y17b{bottom:365.274240pt;}
.y74{bottom:366.880000pt;}
.yb9{bottom:367.520000pt;}
.y5{bottom:370.073333pt;}
.y14b{bottom:370.558080pt;}
.y93{bottom:372.000000pt;}
.yc8{bottom:372.160800pt;}
.y31{bottom:373.920000pt;}
.y12b{bottom:375.040000pt;}
.y111{bottom:383.200000pt;}
.yd5{bottom:383.520000pt;}
.y17a{bottom:383.836160pt;}
.y53{bottom:384.000000pt;}
.y73{bottom:387.200000pt;}
.yc7{bottom:388.961440pt;}
.y14a{bottom:389.087360pt;}
.y30{bottom:394.240000pt;}
.y12a{bottom:395.200000pt;}
.y92{bottom:400.960000pt;}
.y179{bottom:402.398080pt;}
.y110{bottom:403.360000pt;}
.yd4{bottom:403.840000pt;}
.y52{bottom:404.160000pt;}
.yfc{bottom:405.600800pt;}
.yc6{bottom:405.920000pt;}
.y72{bottom:407.360000pt;}
.y149{bottom:407.649280pt;}
.y4{bottom:409.924000pt;}
.y2f{bottom:414.400000pt;}
.y129{bottom:415.520000pt;}
.y178{bottom:420.960000pt;}
.yfb{bottom:422.400000pt;}
.y10f{bottom:423.680000pt;}
.yb8{bottom:424.001440pt;}
.y51{bottom:424.480000pt;}
.y148{bottom:426.211200pt;}
.y71{bottom:427.680000pt;}
.yc5{bottom:428.160000pt;}
.yd3{bottom:433.920000pt;}
.y2e{bottom:434.720000pt;}
.y177{bottom:439.460480pt;}
.yb7{bottom:440.960800pt;}
.y128{bottom:443.680000pt;}
.y10e{bottom:443.840000pt;}
.y50{bottom:444.640000pt;}
.y147{bottom:444.773120pt;}
.yfa{bottom:444.800000pt;}
.y70{bottom:447.840000pt;}
.y2d{bottom:454.880000pt;}
.yb6{bottom:457.760000pt;}
.y176{bottom:458.022400pt;}
.y146{bottom:463.335040pt;}
.y127{bottom:464.000000pt;}
.y4f{bottom:464.960000pt;}
.ye9{bottom:466.401440pt;}
.y91{bottom:468.000000pt;}
.y10d{bottom:472.160000pt;}
.y2c{bottom:475.200000pt;}
.y175{bottom:476.584320pt;}
.yb5{bottom:480.160000pt;}
.y145{bottom:481.896960pt;}
.ye8{bottom:483.360000pt;}
.y126{bottom:484.160000pt;}
.y4e{bottom:485.120000pt;}
.y90{bottom:488.320000pt;}
.yd2{bottom:490.560800pt;}
.y10c{bottom:492.320000pt;}
.y174{bottom:495.146240pt;}
.y2b{bottom:495.360000pt;}
.y6f{bottom:499.201440pt;}
.y144{bottom:500.458880pt;}
.y125{bottom:504.480000pt;}
.yd1{bottom:507.361440pt;}
.y8f{bottom:508.480000pt;}
.ye7{bottom:508.800000pt;}
.y10b{bottom:512.640000pt;}
.y173{bottom:513.708160pt;}
.y2a{bottom:515.680000pt;}
.yed{bottom:515.840000pt;}
.y6e{bottom:516.160000pt;}
.yef{bottom:517.280000pt;}
.y143{bottom:519.020800pt;}
.yd0{bottom:524.320000pt;}
.y124{bottom:524.640000pt;}
.y8e{bottom:528.800000pt;}
.y172{bottom:532.270080pt;}
.y10a{bottom:532.800000pt;}
.y29{bottom:535.840000pt;}
.y4d{bottom:536.484480pt;}
.y142{bottom:537.420800pt;}
.y6d{bottom:538.400000pt;}
.ycf{bottom:546.560000pt;}
.y8d{bottom:548.960000pt;}
.y171{bottom:550.832000pt;}
.y7f{bottom:552.800000pt;}
.y109{bottom:552.960000pt;}
.y81{bottom:553.440000pt;}
.y4c{bottom:553.443040pt;}
.y141{bottom:555.982720pt;}
.y28{bottom:556.160000pt;}
.y8c{bottom:569.280000pt;}
.y170{bottom:569.393920pt;}
.y4b{bottom:570.242240pt;}
.y108{bottom:573.280000pt;}
.y140{bottom:574.544640pt;}
.y123{bottom:576.163040pt;}
.y27{bottom:576.320000pt;}
.y4a{bottom:587.200800pt;}
.y16f{bottom:587.955840pt;}
.y122{bottom:592.962240pt;}
.y13f{bottom:593.106560pt;}
.y107{bottom:593.440000pt;}
.y26{bottom:596.480000pt;}
.y8b{bottom:597.440000pt;}
.y49{bottom:604.000000pt;}
.y16e{bottom:606.517760pt;}
.y121{bottom:609.920800pt;}
.y13e{bottom:611.668480pt;}
.y25{bottom:616.800000pt;}
.y8a{bottom:617.760000pt;}
.y106{bottom:622.560000pt;}
.y16d{bottom:625.079680pt;}
.y48{bottom:626.240000pt;}
.y120{bottom:626.720000pt;}
.yf2{bottom:629.120000pt;}
.y13d{bottom:630.230400pt;}
.y60{bottom:632.640000pt;}
.y24{bottom:636.960000pt;}
.y89{bottom:637.920000pt;}
.y16c{bottom:643.641600pt;}
.y13c{bottom:648.792320pt;}
.y11f{bottom:648.960000pt;}
.yf1{bottom:651.360000pt;}
.yf9{bottom:656.320000pt;}
.yf6{bottom:656.800000pt;}
.yf8{bottom:656.960000pt;}
.y23{bottom:657.280000pt;}
.y88{bottom:658.240000pt;}
.y16b{bottom:662.203520pt;}
.y13b{bottom:667.354240pt;}
.y105{bottom:676.481440pt;}
.y22{bottom:677.440000pt;}
.y87{bottom:678.400000pt;}
.y16a{bottom:680.603520pt;}
.y13a{bottom:685.916160pt;}
.y104{bottom:693.436160pt;}
.y21{bottom:697.760000pt;}
.y86{bottom:698.720000pt;}
.y169{bottom:699.165440pt;}
.y139{bottom:704.478080pt;}
.y103{bottom:710.235360pt;}
.y168{bottom:717.727360pt;}
.y20{bottom:717.920000pt;}
.y138{bottom:723.040000pt;}
.y102{bottom:732.320000pt;}
.y167{bottom:736.289280pt;}
.y1f{bottom:738.240000pt;}
.y6c{bottom:740.640000pt;}
.y85{bottom:750.082240pt;}
.y137{bottom:752.000000pt;}
.yab{bottom:753.760000pt;}
.y166{bottom:754.851200pt;}
.y1e{bottom:758.400000pt;}
.y6b{bottom:760.800000pt;}
.y84{bottom:767.040800pt;}
.y3{bottom:767.848000pt;}
.y165{bottom:773.413120pt;}
.yaa{bottom:773.920000pt;}
.y1d{bottom:778.720000pt;}
.y6a{bottom:781.120000pt;}
.y83{bottom:783.840000pt;}
.y164{bottom:791.975040pt;}
.ya9{bottom:794.240000pt;}
.y1c{bottom:798.880000pt;}
.y2{bottom:799.729333pt;}
.y69{bottom:801.280000pt;}
.y82{bottom:806.080000pt;}
.y163{bottom:810.536960pt;}
.y9d{bottom:811.360000pt;}
.ya8{bottom:814.400000pt;}
.y68{bottom:821.600000pt;}
.ye0{bottom:826.720000pt;}
.y162{bottom:829.098880pt;}
.y1b{bottom:829.120000pt;}
.y47{bottom:829.600000pt;}
.ya7{bottom:834.720000pt;}
.y67{bottom:841.760000pt;}
.y161{bottom:847.660800pt;}
.ydf{bottom:848.960000pt;}
.y46{bottom:849.760000pt;}
.ya6{bottom:854.880000pt;}
.y1{bottom:855.520000pt;}
.ye6{bottom:856.000000pt;}
.ye4{bottom:856.320000pt;}
.y66{bottom:862.080000pt;}
.y160{bottom:866.222720pt;}
.y45{bottom:870.080000pt;}
.ya5{bottom:875.200000pt;}
.y1a{bottom:878.560000pt;}
.y65{bottom:882.240000pt;}
.y15f{bottom:884.784640pt;}
.y44{bottom:890.240000pt;}
.ya4{bottom:895.360000pt;}
.y19{bottom:898.720000pt;}
.y64{bottom:902.560000pt;}
.y15e{bottom:903.346560pt;}
.y43{bottom:910.560000pt;}
.ya3{bottom:915.680000pt;}
.y18{bottom:919.040000pt;}
.y15d{bottom:921.908480pt;}
.y63{bottom:922.720000pt;}
.y42{bottom:930.720000pt;}
.ya2{bottom:935.840000pt;}
.y17{bottom:939.200000pt;}
.y15c{bottom:940.470400pt;}
.y62{bottom:943.040000pt;}
.y41{bottom:951.040000pt;}
.ya1{bottom:956.160000pt;}
.y15b{bottom:959.032320pt;}
.y11e{bottom:963.200000pt;}
.y16{bottom:970.072000pt;}
.y40{bottom:971.200000pt;}
.ya0{bottom:976.320000pt;}
.y15a{bottom:977.594240pt;}
.y11d{bottom:983.520000pt;}
.y3f{bottom:991.520000pt;}
.y159{bottom:996.156160pt;}
.y9f{bottom:996.640000pt;}
.y15{bottom:1000.480000pt;}
.y3e{bottom:1011.680000pt;}
.y158{bottom:1014.718080pt;}
.y9e{bottom:1026.880000pt;}
.y3d{bottom:1032.000000pt;}
.y157{bottom:1033.280000pt;}
.y11{bottom:1062.880000pt;}
.h19{height:16.800000pt;}
.h15{height:16.960000pt;}
.h16{height:16.961333pt;}
.h18{height:18.558667pt;}
.h17{height:18.720000pt;}
.h10{height:20.958667pt;}
.he{height:20.960000pt;}
.h11{height:21.120000pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.h8{height:44.722500pt;}
.h7{height:55.402500pt;}
.h14{height:55.417860pt;}
.hb{height:56.306250pt;}
.h2{height:59.845926pt;}
.h1a{height:61.410000pt;}
.h1f{height:61.425360pt;}
.h1e{height:61.456080pt;}
.h1c{height:61.486800pt;}
.h1b{height:61.540560pt;}
.h1d{height:61.648080pt;}
.hd{height:66.732080pt;}
.h12{height:66.741040pt;}
.hf{height:66.744240pt;}
.h13{height:66.746800pt;}
.ha{height:66.750000pt;}
.h3{height:75.009317pt;}
.hc{height:78.097500pt;}
.h9{height:100.125000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:33.280000pt;}
.w7{width:41.440000pt;}
.w8{width:41.600000pt;}
.w6{width:41.760000pt;}
.w3{width:44.160000pt;}
.w4{width:44.320000pt;}
.wd{width:45.438667pt;}
.we{width:45.440000pt;}
.wc{width:48.320000pt;}
.wb{width:49.920000pt;}
.wa{width:52.320000pt;}
.w9{width:53.600000pt;}
.w10{width:87.040000pt;}
.wf{width:87.041333pt;}
.w11{width:96.798667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:9.760000pt;}
.x15{left:10.720000pt;}
.x12{left:12.000000pt;}
.x20{left:14.560000pt;}
.x1a{left:17.440000pt;}
.x4{left:75.522400pt;}
.x17{left:78.560000pt;}
.x1{left:90.708000pt;}
.x21{left:105.784320pt;}
.x6{left:122.717120pt;}
.x18{left:132.319520pt;}
.x11{left:180.960000pt;}
.x1d{left:185.920000pt;}
.xf{left:204.160000pt;}
.xb{left:236.480000pt;}
.x19{left:308.480000pt;}
.x13{left:338.880000pt;}
.x1e{left:372.960000pt;}
.x7{left:375.680000pt;}
.x2{left:383.840000pt;}
.xe{left:396.000000pt;}
.xc{left:461.760000pt;}
.x14{left:498.400000pt;}
.x1f{left:550.400000pt;}
.x1c{left:647.680000pt;}
.x16{left:656.800000pt;}
.x1b{left:667.200000pt;}
.x9{left:676.320000pt;}
.xd{left:684.320000pt;}
.x3{left:696.800000pt;}
.x10{left:707.680000pt;}
.xa{left:717.920000pt;}
.x5{left:720.960000pt;}
}


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