
/* 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_58e5840f2c3b.woff")format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_6a46f0ae73cc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_e63f290de20d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_8a686e4e8c64.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_450033e88d9d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_06270d396e56.woff")format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_ffa78e4bbc4f.woff")format("woff");}.ff7{font-family:ff7;line-height:1.090000;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_dcb98e8db9b3.woff")format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_cb09d81d8f99.woff")format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_656166747c0f.woff")format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_00faeb844081.woff")format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_00faeb844081.woff")format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_00faeb844081.woff")format("woff");}.ffd{font-family:ffd;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_00faeb844081.woff")format("woff");}.ffe{font-family:ffe;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_0e64c67e41ee.woff")format("woff");}.fff{font-family:fff;line-height:1.144000;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:-22.800110px;}
.v2{vertical-align:-19.199983px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.799931px;}
.ls5{letter-spacing:-2.109000px;}
.lsc{letter-spacing:-0.798000px;}
.ls9{letter-spacing:-0.399000px;}
.ls1{letter-spacing:-0.064904px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000018px;}
.ls2{letter-spacing:0.000027px;}
.ls3{letter-spacing:0.000073px;}
.ls8{letter-spacing:0.798000px;}
.ls7{letter-spacing:0.798047px;}
.lsa{letter-spacing:0.855000px;}
.ls6{letter-spacing:1.140000px;}
.lsd{letter-spacing:2.596800px;}
.lsb{letter-spacing:10.799986px;}
.lse{letter-spacing:12.143981px;}
.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;}
}
.wsa3{word-spacing:-15.390000px;}
.wsb1{word-spacing:-15.048000px;}
.ws5{word-spacing:-14.250000px;}
.wsb2{word-spacing:-13.851000px;}
.wsef{word-spacing:-13.452000px;}
.ws7{word-spacing:-13.332000px;}
.ws8{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws6{word-spacing:-10.944000px;}
.ws20{word-spacing:-9.975000px;}
.ws1{word-spacing:-9.408000px;}
.wsf0{word-spacing:-9.216000px;}
.ws9{word-spacing:-8.400000px;}
.ws3{word-spacing:-8.259300px;}
.wsa{word-spacing:-1.890000px;}
.wsa8{word-spacing:-1.140000px;}
.ws8c{word-spacing:-0.912000px;}
.wse6{word-spacing:-0.855000px;}
.wsb5{word-spacing:-0.798000px;}
.ws7e{word-spacing:-0.684000px;}
.ws88{word-spacing:-0.627000px;}
.wsf3{word-spacing:-0.624000px;}
.wsb3{word-spacing:-0.570000px;}
.ws65{word-spacing:-0.513000px;}
.ws2b{word-spacing:-0.456000px;}
.ws116{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.399000px;}
.wsf4{word-spacing:-0.384000px;}
.wsaa{word-spacing:-0.342000px;}
.ws94{word-spacing:-0.285000px;}
.wsb4{word-spacing:-0.228000px;}
.ws12a{word-spacing:-0.192000px;}
.wsac{word-spacing:-0.171000px;}
.ws129{word-spacing:-0.144000px;}
.ws8d{word-spacing:-0.114000px;}
.ws68{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.ws92{word-spacing:0.057000px;}
.wsc{word-spacing:0.064904px;}
.ws121{word-spacing:0.096000px;}
.ws49{word-spacing:0.114000px;}
.wsf7{word-spacing:0.144000px;}
.wsaf{word-spacing:0.171000px;}
.wsb7{word-spacing:0.228000px;}
.ws54{word-spacing:0.285000px;}
.ws113{word-spacing:0.288000px;}
.wsc1{word-spacing:0.342000px;}
.ws122{word-spacing:0.384000px;}
.ws3d{word-spacing:0.399000px;}
.ws53{word-spacing:0.456000px;}
.ws118{word-spacing:0.480000px;}
.ws16{word-spacing:0.513000px;}
.wsad{word-spacing:0.570000px;}
.wsbe{word-spacing:0.627000px;}
.ws119{word-spacing:0.672000px;}
.ws62{word-spacing:0.684000px;}
.ws96{word-spacing:0.741000px;}
.ws100{word-spacing:0.768000px;}
.wsae{word-spacing:0.798000px;}
.wsde{word-spacing:0.816000px;}
.ws51{word-spacing:0.855000px;}
.wsdd{word-spacing:0.864000px;}
.ws73{word-spacing:0.912000px;}
.wsa9{word-spacing:0.969000px;}
.wsa1{word-spacing:1.008000px;}
.ws8b{word-spacing:1.026000px;}
.ws10c{word-spacing:1.056000px;}
.wscd{word-spacing:1.083000px;}
.ws9c{word-spacing:1.104000px;}
.ws5e{word-spacing:1.140000px;}
.wsa2{word-spacing:1.152000px;}
.ws75{word-spacing:1.197000px;}
.wsdf{word-spacing:1.200000px;}
.ws3e{word-spacing:1.248000px;}
.ws76{word-spacing:1.254000px;}
.ws61{word-spacing:1.311000px;}
.ws104{word-spacing:1.344000px;}
.ws86{word-spacing:1.368000px;}
.ws108{word-spacing:1.392000px;}
.wsa7{word-spacing:1.425000px;}
.wsf5{word-spacing:1.440000px;}
.ws13{word-spacing:1.482000px;}
.wsf8{word-spacing:1.488000px;}
.ws42{word-spacing:1.536000px;}
.ws95{word-spacing:1.539000px;}
.wsba{word-spacing:1.596000px;}
.ws6e{word-spacing:1.653000px;}
.ws10b{word-spacing:1.680000px;}
.ws33{word-spacing:1.710000px;}
.ws56{word-spacing:1.767000px;}
.wsff{word-spacing:1.776000px;}
.ws18{word-spacing:1.824000px;}
.ws57{word-spacing:1.881000px;}
.ws48{word-spacing:1.938000px;}
.ws10a{word-spacing:1.968000px;}
.ws60{word-spacing:1.995000px;}
.wsec{word-spacing:2.052000px;}
.ws4b{word-spacing:2.109000px;}
.wsf6{word-spacing:2.112000px;}
.ws124{word-spacing:2.160000px;}
.ws37{word-spacing:2.166000px;}
.ws5a{word-spacing:2.223000px;}
.ws10d{word-spacing:2.256000px;}
.ws78{word-spacing:2.280000px;}
.ws85{word-spacing:2.337000px;}
.ws6c{word-spacing:2.394000px;}
.ws10f{word-spacing:2.400000px;}
.wsfc{word-spacing:2.448000px;}
.wsc2{word-spacing:2.451000px;}
.ws9b{word-spacing:2.508000px;}
.ws40{word-spacing:2.544000px;}
.wscc{word-spacing:2.565000px;}
.wsce{word-spacing:2.622000px;}
.ws102{word-spacing:2.640000px;}
.ws81{word-spacing:2.679000px;}
.ws105{word-spacing:2.688000px;}
.ws87{word-spacing:2.736000px;}
.ws127{word-spacing:2.784000px;}
.ws74{word-spacing:2.793000px;}
.ws3f{word-spacing:2.832000px;}
.ws6f{word-spacing:2.850000px;}
.wsa0{word-spacing:2.880000px;}
.ws2e{word-spacing:2.907000px;}
.ws9f{word-spacing:2.928000px;}
.ws84{word-spacing:2.964000px;}
.ws35{word-spacing:3.021000px;}
.ws5b{word-spacing:3.078000px;}
.wsf2{word-spacing:3.120000px;}
.ws50{word-spacing:3.135000px;}
.ws7d{word-spacing:3.192000px;}
.ws41{word-spacing:3.216000px;}
.ws59{word-spacing:3.249000px;}
.ws26{word-spacing:3.306000px;}
.ws11c{word-spacing:3.312000px;}
.ws128{word-spacing:3.360000px;}
.ws2d{word-spacing:3.363000px;}
.ws117{word-spacing:3.408000px;}
.ws10{word-spacing:3.420000px;}
.ws9a{word-spacing:3.477000px;}
.ws83{word-spacing:3.534000px;}
.ws4a{word-spacing:3.591000px;}
.ws27{word-spacing:3.648000px;}
.ws11{word-spacing:3.705000px;}
.wsb6{word-spacing:3.762000px;}
.ws7b{word-spacing:3.819000px;}
.ws70{word-spacing:3.876000px;}
.ws112{word-spacing:3.888000px;}
.ws3b{word-spacing:3.933000px;}
.ws11a{word-spacing:3.936000px;}
.ws39{word-spacing:3.990000px;}
.ws11d{word-spacing:4.032000px;}
.ws19{word-spacing:4.046994px;}
.wsa4{word-spacing:4.047000px;}
.wsbb{word-spacing:4.104000px;}
.ws4c{word-spacing:4.161000px;}
.ws71{word-spacing:4.218000px;}
.ws3c{word-spacing:4.275000px;}
.wse5{word-spacing:4.332000px;}
.ws7c{word-spacing:4.389000px;}
.wsd1{word-spacing:4.446000px;}
.ws110{word-spacing:4.464000px;}
.ws89{word-spacing:4.503000px;}
.ws28{word-spacing:4.560000px;}
.ws107{word-spacing:4.608000px;}
.wse2{word-spacing:4.617000px;}
.ws11e{word-spacing:4.656000px;}
.ws8a{word-spacing:4.674000px;}
.ws45{word-spacing:4.704000px;}
.wscf{word-spacing:4.731000px;}
.ws115{word-spacing:4.752000px;}
.wsd3{word-spacing:4.788000px;}
.wsfd{word-spacing:4.800000px;}
.ws6b{word-spacing:4.845000px;}
.ws24{word-spacing:4.902000px;}
.ws32{word-spacing:4.959000px;}
.ws93{word-spacing:5.016000px;}
.ws7a{word-spacing:5.073000px;}
.ws36{word-spacing:5.130000px;}
.ws3a{word-spacing:5.187000px;}
.wsfe{word-spacing:5.232000px;}
.ws8f{word-spacing:5.358000px;}
.ws4f{word-spacing:5.415000px;}
.ws98{word-spacing:5.472000px;}
.ws9e{word-spacing:5.520000px;}
.ws5d{word-spacing:5.529000px;}
.ws1b{word-spacing:5.586000px;}
.wscb{word-spacing:5.643000px;}
.ws12{word-spacing:5.700000px;}
.ws44{word-spacing:5.712000px;}
.ws17{word-spacing:5.757000px;}
.ws66{word-spacing:5.814000px;}
.wsca{word-spacing:5.871000px;}
.ws103{word-spacing:5.904000px;}
.ws90{word-spacing:5.928000px;}
.ws80{word-spacing:5.985000px;}
.ws106{word-spacing:6.000000px;}
.wsda{word-spacing:6.042000px;}
.ws58{word-spacing:6.099000px;}
.ws14{word-spacing:6.156000px;}
.wsbd{word-spacing:6.213000px;}
.ws43{word-spacing:6.240000px;}
.wsd{word-spacing:6.270000px;}
.wsd9{word-spacing:6.327000px;}
.wsd6{word-spacing:6.384000px;}
.ws10e{word-spacing:6.432000px;}
.ws97{word-spacing:6.441000px;}
.ws91{word-spacing:6.498000px;}
.wse0{word-spacing:6.555000px;}
.ws11b{word-spacing:6.576000px;}
.ws29{word-spacing:6.612000px;}
.ws9d{word-spacing:6.624000px;}
.ws25{word-spacing:6.726000px;}
.ws67{word-spacing:6.783000px;}
.ws120{word-spacing:6.816000px;}
.ws5f{word-spacing:6.840000px;}
.wsd2{word-spacing:6.897000px;}
.wsc3{word-spacing:6.954000px;}
.wsc7{word-spacing:7.068000px;}
.wsfb{word-spacing:7.104000px;}
.ws2a{word-spacing:7.125000px;}
.ws64{word-spacing:7.182000px;}
.ws101{word-spacing:7.200000px;}
.ws99{word-spacing:7.239000px;}
.ws34{word-spacing:7.296000px;}
.ws72{word-spacing:7.353000px;}
.wsf9{word-spacing:7.392000px;}
.ws38{word-spacing:7.410000px;}
.wsc9{word-spacing:7.467000px;}
.wsa6{word-spacing:7.524000px;}
.wsdb{word-spacing:7.581000px;}
.wsd5{word-spacing:7.638000px;}
.ws1e{word-spacing:7.695000px;}
.ws23{word-spacing:7.752000px;}
.wsc4{word-spacing:7.809000px;}
.ws111{word-spacing:7.824000px;}
.ws69{word-spacing:7.866000px;}
.ws126{word-spacing:7.872000px;}
.wsbc{word-spacing:7.923000px;}
.wsd4{word-spacing:7.980000px;}
.wsdc{word-spacing:8.037000px;}
.ws46{word-spacing:8.094000px;}
.wsd0{word-spacing:8.151000px;}
.wsc6{word-spacing:8.208000px;}
.ws82{word-spacing:8.265000px;}
.ws77{word-spacing:8.322000px;}
.ws79{word-spacing:8.379000px;}
.ws11f{word-spacing:8.400000px;}
.wsbf{word-spacing:8.436000px;}
.ws8e{word-spacing:8.493000px;}
.ws1a{word-spacing:8.550000px;}
.ws4d{word-spacing:8.607000px;}
.ws52{word-spacing:8.835000px;}
.wsf1{word-spacing:8.892000px;}
.ws6d{word-spacing:9.006000px;}
.ws1d{word-spacing:9.234000px;}
.wsd7{word-spacing:9.291000px;}
.wsb0{word-spacing:9.348000px;}
.ws47{word-spacing:9.405000px;}
.wsee{word-spacing:9.519000px;}
.wsc8{word-spacing:9.576000px;}
.wsfa{word-spacing:9.600000px;}
.ws31{word-spacing:9.633000px;}
.ws4e{word-spacing:9.690000px;}
.wsd8{word-spacing:9.747000px;}
.ws15{word-spacing:9.918000px;}
.wsa5{word-spacing:9.975000px;}
.wse9{word-spacing:10.032000px;}
.wseb{word-spacing:10.089000px;}
.wsc5{word-spacing:10.260000px;}
.wse3{word-spacing:10.488000px;}
.ws125{word-spacing:10.512000px;}
.ws5c{word-spacing:10.773000px;}
.ws21{word-spacing:10.887000px;}
.ws55{word-spacing:10.944000px;}
.ws109{word-spacing:10.992000px;}
.ws123{word-spacing:11.088000px;}
.wse1{word-spacing:11.115000px;}
.wsb8{word-spacing:11.229000px;}
.wse8{word-spacing:11.286000px;}
.wse4{word-spacing:11.343000px;}
.wsab{word-spacing:11.400000px;}
.wsed{word-spacing:11.628000px;}
.ws63{word-spacing:11.685000px;}
.wsc0{word-spacing:11.799000px;}
.wsb9{word-spacing:12.084000px;}
.wsf{word-spacing:12.369000px;}
.ws22{word-spacing:12.711000px;}
.ws30{word-spacing:13.680000px;}
.wse7{word-spacing:14.478000px;}
.ws1c{word-spacing:14.592000px;}
.wse{word-spacing:15.162000px;}
.ws2f{word-spacing:17.157000px;}
.wsea{word-spacing:17.442000px;}
.ws6a{word-spacing:18.069000px;}
.ws7f{word-spacing:21.090000px;}
.ws114{word-spacing:23.904000px;}
.ws1f{word-spacing:73.056000px;}
._e{margin-left:-2078.940070px;}
._6{margin-left:-15.600014px;}
._3{margin-left:-8.965200px;}
._10{margin-left:-6.227700px;}
._9{margin-left:-4.265700px;}
._4{margin-left:-3.141000px;}
._0{margin-left:-1.632000px;}
._2{width:1.189135px;}
._5{width:2.253000px;}
._f{width:3.312000px;}
._11{width:4.944000px;}
._b{width:6.288000px;}
._c{width:7.296000px;}
._a{width:10.752000px;}
._7{width:22.320003px;}
._1{width:40.799984px;}
._8{width:56.255989px;}
._d{width:1769.159993px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs4{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.y85{bottom:33.984900px;}
.y3{bottom:33.985050px;}
.y26{bottom:73.277979px;}
.y1c4{bottom:73.283998px;}
.ye6{bottom:73.289998px;}
.yb0{bottom:73.426031px;}
.y191{bottom:73.468781px;}
.y207{bottom:73.483031px;}
.y16e{bottom:73.963031px;}
.y1ab{bottom:74.353491px;}
.y84{bottom:74.498213px;}
.y58{bottom:78.074999px;}
.y266{bottom:80.531580px;}
.y1c8{bottom:82.104281px;}
.y1fe{bottom:82.118531px;}
.ycd{bottom:84.832031px;}
.y29d{bottom:84.989533px;}
.y22e{bottom:85.408195px;}
.y1c3{bottom:87.155998px;}
.ye5{bottom:87.161998px;}
.y57{bottom:88.788004px;}
.y122{bottom:89.412281px;}
.yaf{bottom:90.682781px;}
.y190{bottom:90.725531px;}
.y206{bottom:90.739781px;}
.y16d{bottom:91.219781px;}
.y1f0{bottom:91.487287px;}
.y1aa{bottom:91.610241px;}
.y83{bottom:91.754963px;}
.y25{bottom:91.949976px;}
.y265{bottom:94.403580px;}
.y29c{bottom:98.861533px;}
.y22d{bottom:99.280195px;}
.y147{bottom:99.361031px;}
.y1fd{bottom:99.375281px;}
.y1c2{bottom:101.027998px;}
.ye4{bottom:101.033998px;}
.ycc{bottom:102.088781px;}
.y121{bottom:106.669031px;}
.y56{bottom:107.459999px;}
.yae{bottom:107.939531px;}
.y18f{bottom:107.982281px;}
.y205{bottom:107.996531px;}
.y264{bottom:108.275580px;}
.y16c{bottom:108.476531px;}
.y24{bottom:108.575226px;}
.y1ef{bottom:108.744037px;}
.y1a9{bottom:108.866991px;}
.y21e{bottom:108.887241px;}
.y82{bottom:109.011713px;}
.y29b{bottom:112.733533px;}
.ye3{bottom:114.905998px;}
.y146{bottom:116.617781px;}
.y1fc{bottom:116.632031px;}
.y55{bottom:118.172998px;}
.ycb{bottom:119.345531px;}
.y1c1{bottom:119.700005px;}
.y263{bottom:122.147580px;}
.yad{bottom:125.196281px;}
.y16b{bottom:125.733281px;}
.y1ee{bottom:126.000787px;}
.y1a8{bottom:126.123741px;}
.y21d{bottom:126.143991px;}
.y81{bottom:126.268463px;}
.y29a{bottom:126.605533px;}
.y23{bottom:127.247223px;}
.ye2{bottom:128.777998px;}
.y22c{bottom:130.408195px;}
.y120{bottom:132.547031px;}
.y18e{bottom:133.860281px;}
.y145{bottom:133.874531px;}
.y262{bottom:136.019580px;}
.yca{bottom:136.602281px;}
.y54{bottom:136.845005px;}
.yf5{bottom:138.162303px;}
.y299{bottom:140.477533px;}
.yac{bottom:142.453031px;}
.y1fb{bottom:142.510031px;}
.y16a{bottom:142.990031px;}
.y1a7{bottom:143.380491px;}
.y21c{bottom:143.400741px;}
.y80{bottom:143.525213px;}
.ye1{bottom:147.450005px;}
.y53{bottom:147.572993px;}
.y11f{bottom:149.803781px;}
.y261{bottom:149.891580px;}
.y22{bottom:150.732582px;}
.y18d{bottom:151.117031px;}
.y144{bottom:151.131281px;}
.y1ed{bottom:151.878787px;}
.yc9{bottom:153.859031px;}
.y298{bottom:154.349545px;}
.yf4{bottom:155.419053px;}
.ye0{bottom:158.166004px;}
.yab{bottom:159.709781px;}
.y1c7{bottom:159.752531px;}
.y1fa{bottom:159.766781px;}
.y1c0{bottom:159.882281px;}
.y169{bottom:160.246781px;}
.y1a6{bottom:160.637241px;}
.y21b{bottom:160.657491px;}
.y7f{bottom:160.781963px;}
.y52{bottom:161.444993px;}
.y22b{bottom:161.533195px;}
.y260{bottom:163.763538px;}
.y21{bottom:164.604572px;}
.y11e{bottom:167.060531px;}
.y297{bottom:168.221545px;}
.y18c{bottom:168.373781px;}
.y204{bottom:168.388031px;}
.y1ec{bottom:169.135537px;}
.yc8{bottom:171.115781px;}
.ydf{bottom:172.038004px;}
.yf3{bottom:172.675803px;}
.y51{bottom:175.316993px;}
.yaa{bottom:176.966531px;}
.y143{bottom:177.009281px;}
.y1f9{bottom:177.023531px;}
.y1bf{bottom:177.139031px;}
.y168{bottom:177.503531px;}
.y25f{bottom:177.635538px;}
.y1a5{bottom:177.893991px;}
.y21a{bottom:177.914241px;}
.y7e{bottom:178.038713px;}
.y296{bottom:182.093545px;}
.y11d{bottom:184.317281px;}
.y18b{bottom:185.630531px;}
.y203{bottom:185.644781px;}
.y1eb{bottom:186.392287px;}
.yc7{bottom:188.372531px;}
.y50{bottom:189.188993px;}
.yf2{bottom:189.932553px;}
.yde{bottom:190.709999px;}
.y25e{bottom:191.507544px;}
.ya9{bottom:194.223281px;}
.y142{bottom:194.266031px;}
.y20{bottom:194.292572px;}
.y1be{bottom:194.395781px;}
.y22a{bottom:194.533031px;}
.y167{bottom:194.760281px;}
.y1a4{bottom:195.150741px;}
.y219{bottom:195.170991px;}
.y7d{bottom:195.295463px;}
.y295{bottom:195.965545px;}
.y11c{bottom:201.574031px;}
.y18a{bottom:202.887281px;}
.y1f8{bottom:202.901531px;}
.y4f{bottom:203.060993px;}
.y1ea{bottom:203.649037px;}
.y25d{bottom:205.379544px;}
.yc6{bottom:205.629281px;}
.yf1{bottom:207.189303px;}
.y1f{bottom:208.164573px;}
.y229{bottom:208.405032px;}
.y294{bottom:209.837545px;}
.ya8{bottom:211.480031px;}
.y141{bottom:211.522781px;}
.y1bd{bottom:211.652531px;}
.y166{bottom:212.017031px;}
.y1a3{bottom:212.407491px;}
.y218{bottom:212.427741px;}
.y7c{bottom:212.552213px;}
.y4e{bottom:216.932993px;}
.y25c{bottom:219.251544px;}
.y189{bottom:220.144031px;}
.y1f7{bottom:220.158281px;}
.y1e9{bottom:220.905787px;}
.yc5{bottom:222.886031px;}
.y293{bottom:223.709545px;}
.yf0{bottom:224.446053px;}
.y11b{bottom:227.452031px;}
.ya7{bottom:228.736781px;}
.y140{bottom:228.779531px;}
.y1bc{bottom:228.909281px;}
.y165{bottom:229.273781px;}
.y1a2{bottom:229.664241px;}
.y217{bottom:229.684491px;}
.y7b{bottom:229.808963px;}
.y25b{bottom:233.123544px;}
.y4d{bottom:235.605011px;}
.y228{bottom:235.777032px;}
.y188{bottom:237.400781px;}
.y1f6{bottom:237.415031px;}
.y292{bottom:237.581545px;}
.y1e8{bottom:238.162537px;}
.yc4{bottom:240.142781px;}
.yef{bottom:241.702803px;}
.y11a{bottom:244.708781px;}
.ya6{bottom:245.993531px;}
.y13f{bottom:246.036281px;}
.y1bb{bottom:246.166031px;}
.y164{bottom:246.530531px;}
.y1a1{bottom:246.920991px;}
.y216{bottom:246.941241px;}
.y25a{bottom:246.995558px;}
.y7a{bottom:247.065713px;}
.y291{bottom:251.453545px;}
.y1e{bottom:252.821709px;}
.y187{bottom:254.657531px;}
.y202{bottom:254.671781px;}
.y1e7{bottom:255.419287px;}
.ydd{bottom:256.696031px;}
.yc3{bottom:257.399531px;}
.yee{bottom:258.959553px;}
.y259{bottom:260.867558px;}
.y119{bottom:261.965531px;}
.y227{bottom:263.149031px;}
.ya5{bottom:263.250281px;}
.y13e{bottom:263.293031px;}
.y1ba{bottom:263.422781px;}
.y163{bottom:263.787281px;}
.y1a0{bottom:264.177741px;}
.y215{bottom:264.197991px;}
.y79{bottom:264.322463px;}
.y290{bottom:265.325545px;}
.y1d{bottom:270.078461px;}
.y186{bottom:271.914281px;}
.y201{bottom:271.928531px;}
.y1e6{bottom:272.676037px;}
.ydc{bottom:273.952781px;}
.yc2{bottom:274.656281px;}
.y258{bottom:274.739558px;}
.yed{bottom:276.216303px;}
.y226{bottom:277.021032px;}
.y28f{bottom:279.197545px;}
.y118{bottom:279.222281px;}
.ya4{bottom:280.507031px;}
.y1f5{bottom:280.549781px;}
.y1b9{bottom:280.679531px;}
.y162{bottom:281.044031px;}
.y19f{bottom:281.434491px;}
.y214{bottom:281.454741px;}
.y78{bottom:281.579213px;}
.y1c{bottom:287.335190px;}
.y257{bottom:288.611558px;}
.y13d{bottom:289.171031px;}
.y1e5{bottom:289.932787px;}
.ydb{bottom:291.209531px;}
.yc1{bottom:291.913031px;}
.y28e{bottom:293.069545px;}
.yec{bottom:293.473053px;}
.y117{bottom:296.479031px;}
.ya3{bottom:297.763781px;}
.y1f4{bottom:297.806531px;}
.y4c{bottom:297.824531px;}
.y1b8{bottom:297.936281px;}
.y161{bottom:298.300781px;}
.y19e{bottom:298.691241px;}
.y213{bottom:298.711491px;}
.y77{bottom:298.835963px;}
.y256{bottom:302.483550px;}
.y225{bottom:304.393031px;}
.y1b{bottom:304.591942px;}
.y13c{bottom:306.427781px;}
.y28d{bottom:306.941545px;}
.y1e4{bottom:307.189537px;}
.yda{bottom:308.466281px;}
.yeb{bottom:310.729803px;}
.y116{bottom:313.735781px;}
.ya2{bottom:315.020531px;}
.y1f3{bottom:315.063281px;}
.y4b{bottom:315.081281px;}
.y1b7{bottom:315.193031px;}
.y160{bottom:315.557531px;}
.y19d{bottom:315.947991px;}
.y212{bottom:315.968241px;}
.y76{bottom:316.092713px;}
.y255{bottom:316.355579px;}
.yc0{bottom:317.791031px;}
.y224{bottom:318.265031px;}
.y28c{bottom:320.813545px;}
.y1a{bottom:321.848694px;}
.y13b{bottom:323.684531px;}
.yd9{bottom:325.723031px;}
.yea{bottom:327.986553px;}
.y254{bottom:330.227579px;}
.y115{bottom:330.992531px;}
.y223{bottom:332.137031px;}
.ya1{bottom:332.277281px;}
.y1f2{bottom:332.320031px;}
.y4a{bottom:332.338031px;}
.y1b6{bottom:332.449781px;}
.y15f{bottom:332.814281px;}
.y1e3{bottom:333.067537px;}
.y19c{bottom:333.204741px;}
.y211{bottom:333.224991px;}
.y75{bottom:333.349463px;}
.y28b{bottom:334.685545px;}
.ybf{bottom:335.047781px;}
.y185{bottom:340.941281px;}
.yd8{bottom:342.979781px;}
.y253{bottom:344.099556px;}
.ye9{bottom:345.243303px;}
.y222{bottom:346.009031px;}
.y114{bottom:348.249281px;}
.y28a{bottom:348.557545px;}
.ya0{bottom:349.534031px;}
.y13a{bottom:349.562531px;}
.y1f1{bottom:349.576781px;}
.y49{bottom:349.594781px;}
.y1b5{bottom:349.706531px;}
.y15e{bottom:350.071031px;}
.y1e2{bottom:350.324287px;}
.y19b{bottom:350.461491px;}
.y74{bottom:350.606213px;}
.ybe{bottom:352.304531px;}
.y19{bottom:357.098694px;}
.y252{bottom:357.971564px;}
.y184{bottom:358.198031px;}
.y221{bottom:359.881031px;}
.yd7{bottom:360.236531px;}
.y289{bottom:362.429545px;}
.ye8{bottom:362.500053px;}
.y113{bottom:365.506031px;}
.y9f{bottom:366.790781px;}
.y139{bottom:366.819281px;}
.y200{bottom:366.833531px;}
.y48{bottom:366.851531px;}
.y1b4{bottom:366.963281px;}
.y15d{bottom:367.327781px;}
.y1e1{bottom:367.581037px;}
.y19a{bottom:367.718241px;}
.y73{bottom:367.862963px;}
.y210{bottom:368.474991px;}
.ybd{bottom:369.561281px;}
.y251{bottom:371.843564px;}
.y220{bottom:373.753031px;}
.y183{bottom:375.454781px;}
.y288{bottom:376.301545px;}
.yd6{bottom:377.493281px;}
.y112{bottom:382.762781px;}
.y9e{bottom:384.047531px;}
.y138{bottom:384.076031px;}
.y47{bottom:384.108281px;}
.y1b3{bottom:384.220031px;}
.y15c{bottom:384.584531px;}
.y199{bottom:384.974991px;}
.y72{bottom:385.119713px;}
.y250{bottom:385.715564px;}
.y21f{bottom:387.625031px;}
.y287{bottom:390.173545px;}
.y182{bottom:392.711531px;}
.y1e0{bottom:393.459037px;}
.yd5{bottom:394.709531px;}
.ybc{bottom:395.439281px;}
.ye7{bottom:397.750031px;}
.y24f{bottom:399.587564px;}
.y111{bottom:400.019531px;}
.y9d{bottom:401.304281px;}
.y137{bottom:401.332781px;}
.y46{bottom:401.365031px;}
.y1b2{bottom:401.476781px;}
.y15b{bottom:401.841281px;}
.y71{bottom:402.376463px;}
.y286{bottom:404.045545px;}
.y181{bottom:409.968281px;}
.y1df{bottom:410.715787px;}
.y18{bottom:410.998215px;}
.yd4{bottom:411.966281px;}
.ybb{bottom:412.696031px;}
.y24e{bottom:413.459564px;}
.y285{bottom:417.917545px;}
.y9c{bottom:418.561031px;}
.y136{bottom:418.589531px;}
.y45{bottom:418.621781px;}
.y15a{bottom:419.098031px;}
.y70{bottom:419.633213px;}
.y198{bottom:420.224991px;}
.y110{bottom:425.897531px;}
.y180{bottom:427.225031px;}
.y24d{bottom:427.331569px;}
.y1b1{bottom:427.354781px;}
.y17{bottom:428.254944px;}
.yd3{bottom:429.223031px;}
.yba{bottom:429.952781px;}
.y284{bottom:431.789545px;}
.y9b{bottom:435.817781px;}
.y20f{bottom:435.832031px;}
.y135{bottom:435.846281px;}
.y44{bottom:435.878531px;}
.y159{bottom:436.354781px;}
.y1de{bottom:436.593787px;}
.y6f{bottom:436.889963px;}
.y24c{bottom:441.203569px;}
.y10f{bottom:443.154281px;}
.y17f{bottom:444.481781px;}
.y1b0{bottom:444.611531px;}
.y283{bottom:445.661531px;}
.yd2{bottom:446.479781px;}
.yb9{bottom:447.209531px;}
.y9a{bottom:453.074531px;}
.y20e{bottom:453.088781px;}
.y134{bottom:453.103031px;}
.y43{bottom:453.135281px;}
.y158{bottom:453.611531px;}
.y1dd{bottom:453.850537px;}
.y6e{bottom:454.146713px;}
.y24b{bottom:455.075558px;}
.y282{bottom:459.533531px;}
.y10e{bottom:460.411031px;}
.y17e{bottom:461.738531px;}
.y1af{bottom:461.868281px;}
.y16{bottom:462.754211px;}
.yd1{bottom:463.736531px;}
.yb8{bottom:464.466281px;}
.y24a{bottom:468.947558px;}
.y99{bottom:470.331281px;}
.y20d{bottom:470.345531px;}
.y133{bottom:470.359781px;}
.y42{bottom:470.392031px;}
.y157{bottom:470.868281px;}
.y1dc{bottom:471.107287px;}
.y6d{bottom:471.403463px;}
.y281{bottom:473.405531px;}
.y197{bottom:478.981031px;}
.y17d{bottom:478.995281px;}
.y15{bottom:480.010941px;}
.yd0{bottom:480.993281px;}
.yb7{bottom:481.723031px;}
.y249{bottom:482.819558px;}
.y10d{bottom:486.289031px;}
.y280{bottom:487.277531px;}
.y98{bottom:487.588031px;}
.y20c{bottom:487.602281px;}
.y1c6{bottom:487.616531px;}
.y41{bottom:487.648781px;}
.y156{bottom:488.125031px;}
.y1db{bottom:488.364037px;}
.y6c{bottom:488.660213px;}
.y132{bottom:496.237781px;}
.y17c{bottom:496.252031px;}
.y248{bottom:496.691558px;}
.y14{bottom:497.267715px;}
.ycf{bottom:498.243281px;}
.yb6{bottom:498.979781px;}
.y27f{bottom:501.149531px;}
.y10c{bottom:503.545781px;}
.y97{bottom:504.844781px;}
.y1c5{bottom:504.873281px;}
.y40{bottom:504.905531px;}
.y6b{bottom:505.916963px;}
.y247{bottom:510.563558px;}
.y20b{bottom:513.480281px;}
.y131{bottom:513.494531px;}
.y1da{bottom:514.242037px;}
.y13{bottom:514.524445px;}
.y27e{bottom:515.021531px;}
.yce{bottom:515.500031px;}
.yb5{bottom:516.236531px;}
.y10b{bottom:520.802531px;}
.y96{bottom:522.101531px;}
.y1ae{bottom:522.115781px;}
.y17b{bottom:522.130031px;}
.y3f{bottom:522.162281px;}
.y6a{bottom:523.173713px;}
.y155{bottom:523.375031px;}
.y246{bottom:524.435558px;}
.y27d{bottom:528.893531px;}
.y20a{bottom:530.737031px;}
.y130{bottom:530.751281px;}
.y1d9{bottom:531.498787px;}
.y12{bottom:531.781219px;}
.yb4{bottom:533.493281px;}
.y10a{bottom:538.059281px;}
.y245{bottom:538.307558px;}
.y95{bottom:539.358281px;}
.y1ad{bottom:539.372531px;}
.y17a{bottom:539.386781px;}
.y3e{bottom:539.419031px;}
.y69{bottom:540.430463px;}
.y27c{bottom:542.765531px;}
.y209{bottom:547.993781px;}
.y12f{bottom:548.008031px;}
.y1d8{bottom:548.755537px;}
.y11{bottom:549.037949px;}
.yb3{bottom:550.750031px;}
.y244{bottom:552.179558px;}
.y109{bottom:555.316031px;}
.y94{bottom:556.615031px;}
.y1ac{bottom:556.629281px;}
.y27b{bottom:556.637531px;}
.y179{bottom:556.643531px;}
.y3d{bottom:556.675781px;}
.y68{bottom:557.687213px;}
.y208{bottom:565.250531px;}
.y196{bottom:565.264781px;}
.y1d7{bottom:566.012287px;}
.y243{bottom:566.051558px;}
.y10{bottom:566.294678px;}
.y27a{bottom:570.509531px;}
.y108{bottom:572.572781px;}
.y93{bottom:573.871781px;}
.y12e{bottom:573.886031px;}
.y178{bottom:573.900281px;}
.y3c{bottom:573.932531px;}
.y67{bottom:574.943963px;}
.y242{bottom:579.923558px;}
.y154{bottom:582.507281px;}
.y195{bottom:582.521531px;}
.y1d6{bottom:583.269037px;}
.yf{bottom:583.551453px;}
.y279{bottom:584.381531px;}
.yb2{bottom:586.000031px;}
.y107{bottom:589.829531px;}
.y92{bottom:591.128531px;}
.y12d{bottom:591.142781px;}
.y177{bottom:591.157031px;}
.y3b{bottom:591.189281px;}
.y66{bottom:592.200713px;}
.y241{bottom:593.795558px;}
.y278{bottom:598.253531px;}
.y153{bottom:599.764031px;}
.y194{bottom:599.778281px;}
.y1d5{bottom:600.525787px;}
.ye{bottom:600.808182px;}
.y106{bottom:607.086281px;}
.y240{bottom:607.667558px;}
.y91{bottom:608.385281px;}
.y12c{bottom:608.399531px;}
.y3a{bottom:608.446031px;}
.y65{bottom:609.457463px;}
.y277{bottom:612.125531px;}
.y152{bottom:617.020781px;}
.y176{bottom:617.035031px;}
.y1d4{bottom:617.782537px;}
.yd{bottom:618.064957px;}
.y23f{bottom:621.539558px;}
.yb1{bottom:622.000031px;}
.y105{bottom:624.343031px;}
.y90{bottom:625.642031px;}
.y12b{bottom:625.656281px;}
.y39{bottom:625.702781px;}
.y276{bottom:625.997531px;}
.y64{bottom:626.714213px;}
.y151{bottom:634.277531px;}
.y175{bottom:634.291781px;}
.y1d3{bottom:635.039287px;}
.yc{bottom:635.321686px;}
.y23e{bottom:635.411558px;}
.y275{bottom:639.869531px;}
.y104{bottom:641.599781px;}
.y8f{bottom:642.898781px;}
.y12a{bottom:642.913031px;}
.y38{bottom:642.959531px;}
.y63{bottom:643.970963px;}
.y23d{bottom:649.283558px;}
.y150{bottom:651.534281px;}
.y174{bottom:651.548531px;}
.y1d2{bottom:652.296037px;}
.yb{bottom:652.578461px;}
.y274{bottom:653.741531px;}
.y103{bottom:658.856531px;}
.y8e{bottom:660.155531px;}
.y129{bottom:660.169781px;}
.y37{bottom:660.216281px;}
.y62{bottom:661.227713px;}
.y23c{bottom:663.155558px;}
.y273{bottom:667.613531px;}
.y14f{bottom:668.791031px;}
.y173{bottom:668.805281px;}
.y1d1{bottom:669.552787px;}
.ya{bottom:669.835190px;}
.y102{bottom:676.113281px;}
.y23b{bottom:677.027558px;}
.y8d{bottom:677.412281px;}
.y128{bottom:677.426531px;}
.y36{bottom:677.473031px;}
.y61{bottom:678.484463px;}
.y272{bottom:681.485531px;}
.y14e{bottom:686.047781px;}
.y172{bottom:686.062031px;}
.y1d0{bottom:686.809537px;}
.y9{bottom:687.091965px;}
.y23a{bottom:690.899558px;}
.y101{bottom:693.370031px;}
.y8c{bottom:694.669031px;}
.y127{bottom:694.683281px;}
.y35{bottom:694.729781px;}
.y271{bottom:695.357531px;}
.y60{bottom:695.741213px;}
.y14d{bottom:703.304531px;}
.y1cf{bottom:704.066287px;}
.y8{bottom:704.348694px;}
.y239{bottom:704.771558px;}
.y270{bottom:709.229531px;}
.y100{bottom:710.626781px;}
.y8b{bottom:711.925781px;}
.y171{bottom:711.940031px;}
.y34{bottom:711.986531px;}
.y5f{bottom:712.997963px;}
.y238{bottom:718.643558px;}
.y126{bottom:720.561281px;}
.y1ce{bottom:721.323037px;}
.y26f{bottom:723.101531px;}
.yff{bottom:727.883531px;}
.y8a{bottom:729.182531px;}
.y170{bottom:729.196781px;}
.y33{bottom:729.243281px;}
.y5e{bottom:730.254713px;}
.y237{bottom:732.515558px;}
.y26e{bottom:736.973531px;}
.y125{bottom:737.818031px;}
.y1cd{bottom:738.579787px;}
.yfe{bottom:745.140281px;}
.y236{bottom:746.387558px;}
.y89{bottom:746.439281px;}
.y16f{bottom:746.453531px;}
.y32{bottom:746.473031px;}
.y5d{bottom:747.511463px;}
.y26d{bottom:750.845531px;}
.y7{bottom:752.087723px;}
.y124{bottom:755.074781px;}
.y1cc{bottom:755.836537px;}
.yfd{bottom:762.397031px;}
.y88{bottom:763.696031px;}
.y193{bottom:763.710281px;}
.y31{bottom:763.729781px;}
.y26c{bottom:764.717531px;}
.y5c{bottom:764.768213px;}
.y6{bottom:765.959702px;}
.y27{bottom:766.006417px;}
.y123{bottom:772.331531px;}
.y1cb{bottom:773.093287px;}
.y235{bottom:778.562531px;}
.y26b{bottom:778.589531px;}
.yfc{bottom:779.653781px;}
.y87{bottom:780.952781px;}
.y192{bottom:780.967031px;}
.y30{bottom:780.986531px;}
.y5b{bottom:782.024963px;}
.y14c{bottom:789.588281px;}
.y1ca{bottom:790.350037px;}
.y26a{bottom:792.461531px;}
.yfb{bottom:796.910531px;}
.y86{bottom:798.209531px;}
.y1ff{bottom:798.223781px;}
.y2f{bottom:798.243281px;}
.y5{bottom:803.731200px;}
.y269{bottom:806.333531px;}
.y14b{bottom:806.845031px;}
.yfa{bottom:814.167281px;}
.y2e{bottom:815.466281px;}
.y5a{bottom:817.274963px;}
.y268{bottom:820.205531px;}
.y14a{bottom:824.101781px;}
.y1c9{bottom:825.600037px;}
.yf9{bottom:831.424031px;}
.y29f{bottom:832.109531px;}
.y2d{bottom:832.723031px;}
.y234{bottom:834.077531px;}
.y149{bottom:841.358531px;}
.y29e{bottom:845.981531px;}
.y4{bottom:846.166168px;}
.y267{bottom:847.949524px;}
.y233{bottom:847.949531px;}
.yf8{bottom:848.680781px;}
.y2c{bottom:849.979781px;}
.y148{bottom:858.615281px;}
.y232{bottom:861.821531px;}
.yf7{bottom:865.937531px;}
.y2b{bottom:867.236531px;}
.y231{bottom:875.693531px;}
.y2a{bottom:884.493281px;}
.y230{bottom:889.565531px;}
.yf6{bottom:901.187531px;}
.y29{bottom:901.750031px;}
.y22f{bottom:903.437531px;}
.y2{bottom:926.117065px;}
.y28{bottom:938.819984px;}
.y59{bottom:938.820007px;}
.he{height:29.299200px;}
.h2{height:33.840000px;}
.hf{height:34.320000px;}
.hd{height:41.856000px;}
.h18{height:41.856092px;}
.h3{height:42.048000px;}
.h17{height:42.528000px;}
.hc{height:49.104000px;}
.h8{height:49.704000px;}
.ha{height:50.502000px;}
.h13{height:53.640000px;}
.h4{height:54.862258px;}
.h7{height:56.373000px;}
.h10{height:57.592727px;}
.h14{height:57.619910px;}
.h12{height:57.700910px;}
.h11{height:57.727727px;}
.h15{height:57.754910px;}
.h9{height:58.311000px;}
.h16{height:58.887000px;}
.h6{height:61.622631px;}
.hb{height:65.274000px;}
.h5{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x6{left:72.368402px;}
.x7{left:87.174473px;}
.x4{left:91.421541px;}
.x9{left:95.669553px;}
.x5{left:211.193221px;}
.x1{left:485.858414px;}
.x3{left:528.009430px;}
.x8{left:571.890015px;}
@media print{
.v3{vertical-align:-20.266764pt;}
.v2{vertical-align:-17.066652pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266606pt;}
.ls5{letter-spacing:-1.874667pt;}
.lsc{letter-spacing:-0.709333pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls1{letter-spacing:-0.057693pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000016pt;}
.ls2{letter-spacing:0.000024pt;}
.ls3{letter-spacing:0.000065pt;}
.ls8{letter-spacing:0.709333pt;}
.ls7{letter-spacing:0.709375pt;}
.lsa{letter-spacing:0.760000pt;}
.ls6{letter-spacing:1.013333pt;}
.lsd{letter-spacing:2.308267pt;}
.lsb{letter-spacing:9.599987pt;}
.lse{letter-spacing:10.794649pt;}
.wsa3{word-spacing:-13.680000pt;}
.wsb1{word-spacing:-13.376000pt;}
.ws5{word-spacing:-12.666667pt;}
.wsb2{word-spacing:-12.312000pt;}
.wsef{word-spacing:-11.957333pt;}
.ws7{word-spacing:-11.850667pt;}
.ws8{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws6{word-spacing:-9.728000pt;}
.ws20{word-spacing:-8.866667pt;}
.ws1{word-spacing:-8.362667pt;}
.wsf0{word-spacing:-8.192000pt;}
.ws9{word-spacing:-7.466667pt;}
.ws3{word-spacing:-7.341600pt;}
.wsa{word-spacing:-1.680000pt;}
.wsa8{word-spacing:-1.013333pt;}
.ws8c{word-spacing:-0.810667pt;}
.wse6{word-spacing:-0.760000pt;}
.wsb5{word-spacing:-0.709333pt;}
.ws7e{word-spacing:-0.608000pt;}
.ws88{word-spacing:-0.557333pt;}
.wsf3{word-spacing:-0.554667pt;}
.wsb3{word-spacing:-0.506667pt;}
.ws65{word-spacing:-0.456000pt;}
.ws2b{word-spacing:-0.405333pt;}
.ws116{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.354667pt;}
.wsf4{word-spacing:-0.341333pt;}
.wsaa{word-spacing:-0.304000pt;}
.ws94{word-spacing:-0.253333pt;}
.wsb4{word-spacing:-0.202667pt;}
.ws12a{word-spacing:-0.170667pt;}
.wsac{word-spacing:-0.152000pt;}
.ws129{word-spacing:-0.128000pt;}
.ws8d{word-spacing:-0.101333pt;}
.ws68{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.ws92{word-spacing:0.050667pt;}
.wsc{word-spacing:0.057693pt;}
.ws121{word-spacing:0.085333pt;}
.ws49{word-spacing:0.101333pt;}
.wsf7{word-spacing:0.128000pt;}
.wsaf{word-spacing:0.152000pt;}
.wsb7{word-spacing:0.202667pt;}
.ws54{word-spacing:0.253333pt;}
.ws113{word-spacing:0.256000pt;}
.wsc1{word-spacing:0.304000pt;}
.ws122{word-spacing:0.341333pt;}
.ws3d{word-spacing:0.354667pt;}
.ws53{word-spacing:0.405333pt;}
.ws118{word-spacing:0.426667pt;}
.ws16{word-spacing:0.456000pt;}
.wsad{word-spacing:0.506667pt;}
.wsbe{word-spacing:0.557333pt;}
.ws119{word-spacing:0.597333pt;}
.ws62{word-spacing:0.608000pt;}
.ws96{word-spacing:0.658667pt;}
.ws100{word-spacing:0.682667pt;}
.wsae{word-spacing:0.709333pt;}
.wsde{word-spacing:0.725333pt;}
.ws51{word-spacing:0.760000pt;}
.wsdd{word-spacing:0.768000pt;}
.ws73{word-spacing:0.810667pt;}
.wsa9{word-spacing:0.861333pt;}
.wsa1{word-spacing:0.896000pt;}
.ws8b{word-spacing:0.912000pt;}
.ws10c{word-spacing:0.938667pt;}
.wscd{word-spacing:0.962667pt;}
.ws9c{word-spacing:0.981333pt;}
.ws5e{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.024000pt;}
.ws75{word-spacing:1.064000pt;}
.wsdf{word-spacing:1.066667pt;}
.ws3e{word-spacing:1.109333pt;}
.ws76{word-spacing:1.114667pt;}
.ws61{word-spacing:1.165333pt;}
.ws104{word-spacing:1.194667pt;}
.ws86{word-spacing:1.216000pt;}
.ws108{word-spacing:1.237333pt;}
.wsa7{word-spacing:1.266667pt;}
.wsf5{word-spacing:1.280000pt;}
.ws13{word-spacing:1.317333pt;}
.wsf8{word-spacing:1.322667pt;}
.ws42{word-spacing:1.365333pt;}
.ws95{word-spacing:1.368000pt;}
.wsba{word-spacing:1.418667pt;}
.ws6e{word-spacing:1.469333pt;}
.ws10b{word-spacing:1.493333pt;}
.ws33{word-spacing:1.520000pt;}
.ws56{word-spacing:1.570667pt;}
.wsff{word-spacing:1.578667pt;}
.ws18{word-spacing:1.621333pt;}
.ws57{word-spacing:1.672000pt;}
.ws48{word-spacing:1.722667pt;}
.ws10a{word-spacing:1.749333pt;}
.ws60{word-spacing:1.773333pt;}
.wsec{word-spacing:1.824000pt;}
.ws4b{word-spacing:1.874667pt;}
.wsf6{word-spacing:1.877333pt;}
.ws124{word-spacing:1.920000pt;}
.ws37{word-spacing:1.925333pt;}
.ws5a{word-spacing:1.976000pt;}
.ws10d{word-spacing:2.005333pt;}
.ws78{word-spacing:2.026667pt;}
.ws85{word-spacing:2.077333pt;}
.ws6c{word-spacing:2.128000pt;}
.ws10f{word-spacing:2.133333pt;}
.wsfc{word-spacing:2.176000pt;}
.wsc2{word-spacing:2.178667pt;}
.ws9b{word-spacing:2.229333pt;}
.ws40{word-spacing:2.261333pt;}
.wscc{word-spacing:2.280000pt;}
.wsce{word-spacing:2.330667pt;}
.ws102{word-spacing:2.346667pt;}
.ws81{word-spacing:2.381333pt;}
.ws105{word-spacing:2.389333pt;}
.ws87{word-spacing:2.432000pt;}
.ws127{word-spacing:2.474667pt;}
.ws74{word-spacing:2.482667pt;}
.ws3f{word-spacing:2.517333pt;}
.ws6f{word-spacing:2.533333pt;}
.wsa0{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.584000pt;}
.ws9f{word-spacing:2.602667pt;}
.ws84{word-spacing:2.634667pt;}
.ws35{word-spacing:2.685333pt;}
.ws5b{word-spacing:2.736000pt;}
.wsf2{word-spacing:2.773333pt;}
.ws50{word-spacing:2.786667pt;}
.ws7d{word-spacing:2.837333pt;}
.ws41{word-spacing:2.858667pt;}
.ws59{word-spacing:2.888000pt;}
.ws26{word-spacing:2.938667pt;}
.ws11c{word-spacing:2.944000pt;}
.ws128{word-spacing:2.986667pt;}
.ws2d{word-spacing:2.989333pt;}
.ws117{word-spacing:3.029333pt;}
.ws10{word-spacing:3.040000pt;}
.ws9a{word-spacing:3.090667pt;}
.ws83{word-spacing:3.141333pt;}
.ws4a{word-spacing:3.192000pt;}
.ws27{word-spacing:3.242667pt;}
.ws11{word-spacing:3.293333pt;}
.wsb6{word-spacing:3.344000pt;}
.ws7b{word-spacing:3.394667pt;}
.ws70{word-spacing:3.445333pt;}
.ws112{word-spacing:3.456000pt;}
.ws3b{word-spacing:3.496000pt;}
.ws11a{word-spacing:3.498667pt;}
.ws39{word-spacing:3.546667pt;}
.ws11d{word-spacing:3.584000pt;}
.ws19{word-spacing:3.597328pt;}
.wsa4{word-spacing:3.597333pt;}
.wsbb{word-spacing:3.648000pt;}
.ws4c{word-spacing:3.698667pt;}
.ws71{word-spacing:3.749333pt;}
.ws3c{word-spacing:3.800000pt;}
.wse5{word-spacing:3.850667pt;}
.ws7c{word-spacing:3.901333pt;}
.wsd1{word-spacing:3.952000pt;}
.ws110{word-spacing:3.968000pt;}
.ws89{word-spacing:4.002667pt;}
.ws28{word-spacing:4.053333pt;}
.ws107{word-spacing:4.096000pt;}
.wse2{word-spacing:4.104000pt;}
.ws11e{word-spacing:4.138667pt;}
.ws8a{word-spacing:4.154667pt;}
.ws45{word-spacing:4.181333pt;}
.wscf{word-spacing:4.205333pt;}
.ws115{word-spacing:4.224000pt;}
.wsd3{word-spacing:4.256000pt;}
.wsfd{word-spacing:4.266667pt;}
.ws6b{word-spacing:4.306667pt;}
.ws24{word-spacing:4.357333pt;}
.ws32{word-spacing:4.408000pt;}
.ws93{word-spacing:4.458667pt;}
.ws7a{word-spacing:4.509333pt;}
.ws36{word-spacing:4.560000pt;}
.ws3a{word-spacing:4.610667pt;}
.wsfe{word-spacing:4.650667pt;}
.ws8f{word-spacing:4.762667pt;}
.ws4f{word-spacing:4.813333pt;}
.ws98{word-spacing:4.864000pt;}
.ws9e{word-spacing:4.906667pt;}
.ws5d{word-spacing:4.914667pt;}
.ws1b{word-spacing:4.965333pt;}
.wscb{word-spacing:5.016000pt;}
.ws12{word-spacing:5.066667pt;}
.ws44{word-spacing:5.077333pt;}
.ws17{word-spacing:5.117333pt;}
.ws66{word-spacing:5.168000pt;}
.wsca{word-spacing:5.218667pt;}
.ws103{word-spacing:5.248000pt;}
.ws90{word-spacing:5.269333pt;}
.ws80{word-spacing:5.320000pt;}
.ws106{word-spacing:5.333333pt;}
.wsda{word-spacing:5.370667pt;}
.ws58{word-spacing:5.421333pt;}
.ws14{word-spacing:5.472000pt;}
.wsbd{word-spacing:5.522667pt;}
.ws43{word-spacing:5.546667pt;}
.wsd{word-spacing:5.573333pt;}
.wsd9{word-spacing:5.624000pt;}
.wsd6{word-spacing:5.674667pt;}
.ws10e{word-spacing:5.717333pt;}
.ws97{word-spacing:5.725333pt;}
.ws91{word-spacing:5.776000pt;}
.wse0{word-spacing:5.826667pt;}
.ws11b{word-spacing:5.845333pt;}
.ws29{word-spacing:5.877333pt;}
.ws9d{word-spacing:5.888000pt;}
.ws25{word-spacing:5.978667pt;}
.ws67{word-spacing:6.029333pt;}
.ws120{word-spacing:6.058667pt;}
.ws5f{word-spacing:6.080000pt;}
.wsd2{word-spacing:6.130667pt;}
.wsc3{word-spacing:6.181333pt;}
.wsc7{word-spacing:6.282667pt;}
.wsfb{word-spacing:6.314667pt;}
.ws2a{word-spacing:6.333333pt;}
.ws64{word-spacing:6.384000pt;}
.ws101{word-spacing:6.400000pt;}
.ws99{word-spacing:6.434667pt;}
.ws34{word-spacing:6.485333pt;}
.ws72{word-spacing:6.536000pt;}
.wsf9{word-spacing:6.570667pt;}
.ws38{word-spacing:6.586667pt;}
.wsc9{word-spacing:6.637333pt;}
.wsa6{word-spacing:6.688000pt;}
.wsdb{word-spacing:6.738667pt;}
.wsd5{word-spacing:6.789333pt;}
.ws1e{word-spacing:6.840000pt;}
.ws23{word-spacing:6.890667pt;}
.wsc4{word-spacing:6.941333pt;}
.ws111{word-spacing:6.954667pt;}
.ws69{word-spacing:6.992000pt;}
.ws126{word-spacing:6.997333pt;}
.wsbc{word-spacing:7.042667pt;}
.wsd4{word-spacing:7.093333pt;}
.wsdc{word-spacing:7.144000pt;}
.ws46{word-spacing:7.194667pt;}
.wsd0{word-spacing:7.245333pt;}
.wsc6{word-spacing:7.296000pt;}
.ws82{word-spacing:7.346667pt;}
.ws77{word-spacing:7.397333pt;}
.ws79{word-spacing:7.448000pt;}
.ws11f{word-spacing:7.466667pt;}
.wsbf{word-spacing:7.498667pt;}
.ws8e{word-spacing:7.549333pt;}
.ws1a{word-spacing:7.600000pt;}
.ws4d{word-spacing:7.650667pt;}
.ws52{word-spacing:7.853333pt;}
.wsf1{word-spacing:7.904000pt;}
.ws6d{word-spacing:8.005333pt;}
.ws1d{word-spacing:8.208000pt;}
.wsd7{word-spacing:8.258667pt;}
.wsb0{word-spacing:8.309333pt;}
.ws47{word-spacing:8.360000pt;}
.wsee{word-spacing:8.461333pt;}
.wsc8{word-spacing:8.512000pt;}
.wsfa{word-spacing:8.533333pt;}
.ws31{word-spacing:8.562667pt;}
.ws4e{word-spacing:8.613333pt;}
.wsd8{word-spacing:8.664000pt;}
.ws15{word-spacing:8.816000pt;}
.wsa5{word-spacing:8.866667pt;}
.wse9{word-spacing:8.917333pt;}
.wseb{word-spacing:8.968000pt;}
.wsc5{word-spacing:9.120000pt;}
.wse3{word-spacing:9.322667pt;}
.ws125{word-spacing:9.344000pt;}
.ws5c{word-spacing:9.576000pt;}
.ws21{word-spacing:9.677333pt;}
.ws55{word-spacing:9.728000pt;}
.ws109{word-spacing:9.770667pt;}
.ws123{word-spacing:9.856000pt;}
.wse1{word-spacing:9.880000pt;}
.wsb8{word-spacing:9.981333pt;}
.wse8{word-spacing:10.032000pt;}
.wse4{word-spacing:10.082667pt;}
.wsab{word-spacing:10.133333pt;}
.wsed{word-spacing:10.336000pt;}
.ws63{word-spacing:10.386667pt;}
.wsc0{word-spacing:10.488000pt;}
.wsb9{word-spacing:10.741333pt;}
.wsf{word-spacing:10.994667pt;}
.ws22{word-spacing:11.298667pt;}
.ws30{word-spacing:12.160000pt;}
.wse7{word-spacing:12.869333pt;}
.ws1c{word-spacing:12.970667pt;}
.wse{word-spacing:13.477333pt;}
.ws2f{word-spacing:15.250667pt;}
.wsea{word-spacing:15.504000pt;}
.ws6a{word-spacing:16.061333pt;}
.ws7f{word-spacing:18.746667pt;}
.ws114{word-spacing:21.248000pt;}
.ws1f{word-spacing:64.938667pt;}
._e{margin-left:-1847.946729pt;}
._6{margin-left:-13.866679pt;}
._3{margin-left:-7.969067pt;}
._10{margin-left:-5.535733pt;}
._9{margin-left:-3.791733pt;}
._4{margin-left:-2.792000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.057009pt;}
._5{width:2.002667pt;}
._f{width:2.944000pt;}
._11{width:4.394667pt;}
._b{width:5.589333pt;}
._c{width:6.485333pt;}
._a{width:9.557333pt;}
._7{width:19.840003pt;}
._1{width:36.266652pt;}
._8{width:50.005324pt;}
._d{width:1572.586660pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.y85{bottom:30.208800pt;}
.y3{bottom:30.208933pt;}
.y26{bottom:65.135981pt;}
.y1c4{bottom:65.141331pt;}
.ye6{bottom:65.146665pt;}
.yb0{bottom:65.267583pt;}
.y191{bottom:65.305583pt;}
.y207{bottom:65.318249pt;}
.y16e{bottom:65.744916pt;}
.y1ab{bottom:66.091992pt;}
.y84{bottom:66.220634pt;}
.y58{bottom:69.399999pt;}
.y266{bottom:71.583627pt;}
.y1c8{bottom:72.981583pt;}
.y1fe{bottom:72.994249pt;}
.ycd{bottom:75.406249pt;}
.y29d{bottom:75.546252pt;}
.y22e{bottom:75.918396pt;}
.y1c3{bottom:77.471998pt;}
.ye5{bottom:77.477331pt;}
.y57{bottom:78.922670pt;}
.y122{bottom:79.477583pt;}
.yaf{bottom:80.606916pt;}
.y190{bottom:80.644916pt;}
.y206{bottom:80.657583pt;}
.y16d{bottom:81.084249pt;}
.y1f0{bottom:81.322033pt;}
.y1aa{bottom:81.431325pt;}
.y83{bottom:81.559967pt;}
.y25{bottom:81.733312pt;}
.y265{bottom:83.914294pt;}
.y29c{bottom:87.876918pt;}
.y22d{bottom:88.249063pt;}
.y147{bottom:88.320916pt;}
.y1fd{bottom:88.333583pt;}
.y1c2{bottom:89.802665pt;}
.ye4{bottom:89.807998pt;}
.ycc{bottom:90.745583pt;}
.y121{bottom:94.816916pt;}
.y56{bottom:95.519999pt;}
.yae{bottom:95.946249pt;}
.y18f{bottom:95.984249pt;}
.y205{bottom:95.996916pt;}
.y264{bottom:96.244960pt;}
.y16c{bottom:96.423583pt;}
.y24{bottom:96.511312pt;}
.y1ef{bottom:96.661366pt;}
.y1a9{bottom:96.770659pt;}
.y21e{bottom:96.788659pt;}
.y82{bottom:96.899301pt;}
.y29b{bottom:100.207585pt;}
.ye3{bottom:102.138665pt;}
.y146{bottom:103.660249pt;}
.y1fc{bottom:103.672916pt;}
.y55{bottom:105.042665pt;}
.ycb{bottom:106.084916pt;}
.y1c1{bottom:106.400004pt;}
.y263{bottom:108.575627pt;}
.yad{bottom:111.285583pt;}
.y16b{bottom:111.762916pt;}
.y1ee{bottom:112.000699pt;}
.y1a8{bottom:112.109992pt;}
.y21d{bottom:112.127992pt;}
.y81{bottom:112.238634pt;}
.y29a{bottom:112.538252pt;}
.y23{bottom:113.108642pt;}
.ye2{bottom:114.469331pt;}
.y22c{bottom:115.918396pt;}
.y120{bottom:117.819583pt;}
.y18e{bottom:118.986916pt;}
.y145{bottom:118.999583pt;}
.y262{bottom:120.906294pt;}
.yca{bottom:121.424249pt;}
.y54{bottom:121.640004pt;}
.yf5{bottom:122.810936pt;}
.y299{bottom:124.868918pt;}
.yac{bottom:126.624916pt;}
.y1fb{bottom:126.675583pt;}
.y16a{bottom:127.102249pt;}
.y1a7{bottom:127.449325pt;}
.y21c{bottom:127.467325pt;}
.y80{bottom:127.577967pt;}
.ye1{bottom:131.066671pt;}
.y53{bottom:131.175993pt;}
.y11f{bottom:133.158916pt;}
.y261{bottom:133.236960pt;}
.y22{bottom:133.984517pt;}
.y18d{bottom:134.326249pt;}
.y144{bottom:134.338916pt;}
.y1ed{bottom:135.003366pt;}
.yc9{bottom:136.763583pt;}
.y298{bottom:137.199595pt;}
.yf4{bottom:138.150270pt;}
.ye0{bottom:140.592003pt;}
.yab{bottom:141.964249pt;}
.y1c7{bottom:142.002249pt;}
.y1fa{bottom:142.014916pt;}
.y1c0{bottom:142.117583pt;}
.y169{bottom:142.441583pt;}
.y1a6{bottom:142.788659pt;}
.y21b{bottom:142.806659pt;}
.y7f{bottom:142.917301pt;}
.y52{bottom:143.506660pt;}
.y22b{bottom:143.585063pt;}
.y260{bottom:145.567589pt;}
.y21{bottom:146.315175pt;}
.y11e{bottom:148.498249pt;}
.y297{bottom:149.530262pt;}
.y18c{bottom:149.665583pt;}
.y204{bottom:149.678249pt;}
.y1ec{bottom:150.342699pt;}
.yc8{bottom:152.102916pt;}
.ydf{bottom:152.922670pt;}
.yf3{bottom:153.489603pt;}
.y51{bottom:155.837327pt;}
.yaa{bottom:157.303583pt;}
.y143{bottom:157.341583pt;}
.y1f9{bottom:157.354249pt;}
.y1bf{bottom:157.456916pt;}
.y168{bottom:157.780916pt;}
.y25f{bottom:157.898256pt;}
.y1a5{bottom:158.127992pt;}
.y21a{bottom:158.145992pt;}
.y7e{bottom:158.256634pt;}
.y296{bottom:161.860929pt;}
.y11d{bottom:163.837583pt;}
.y18b{bottom:165.004916pt;}
.y203{bottom:165.017583pt;}
.y1eb{bottom:165.682033pt;}
.yc7{bottom:167.442249pt;}
.y50{bottom:168.167993pt;}
.yf2{bottom:168.828936pt;}
.yde{bottom:169.519999pt;}
.y25e{bottom:170.228928pt;}
.ya9{bottom:172.642916pt;}
.y142{bottom:172.680916pt;}
.y20{bottom:172.704508pt;}
.y1be{bottom:172.796249pt;}
.y22a{bottom:172.918249pt;}
.y167{bottom:173.120249pt;}
.y1a4{bottom:173.467325pt;}
.y219{bottom:173.485325pt;}
.y7d{bottom:173.595967pt;}
.y295{bottom:174.191595pt;}
.y11c{bottom:179.176916pt;}
.y18a{bottom:180.344249pt;}
.y1f8{bottom:180.356916pt;}
.y4f{bottom:180.498660pt;}
.y1ea{bottom:181.021366pt;}
.y25d{bottom:182.559595pt;}
.yc6{bottom:182.781583pt;}
.yf1{bottom:184.168270pt;}
.y1f{bottom:185.035176pt;}
.y229{bottom:185.248917pt;}
.y294{bottom:186.522262pt;}
.ya8{bottom:187.982249pt;}
.y141{bottom:188.020249pt;}
.y1bd{bottom:188.135583pt;}
.y166{bottom:188.459583pt;}
.y1a3{bottom:188.806659pt;}
.y218{bottom:188.824659pt;}
.y7c{bottom:188.935301pt;}
.y4e{bottom:192.829327pt;}
.y25c{bottom:194.890262pt;}
.y189{bottom:195.683583pt;}
.y1f7{bottom:195.696249pt;}
.y1e9{bottom:196.360699pt;}
.yc5{bottom:198.120916pt;}
.y293{bottom:198.852929pt;}
.yf0{bottom:199.507603pt;}
.y11b{bottom:202.179583pt;}
.ya7{bottom:203.321583pt;}
.y140{bottom:203.359583pt;}
.y1bc{bottom:203.474916pt;}
.y165{bottom:203.798916pt;}
.y1a2{bottom:204.145992pt;}
.y217{bottom:204.163992pt;}
.y7b{bottom:204.274634pt;}
.y25b{bottom:207.220928pt;}
.y4d{bottom:209.426676pt;}
.y228{bottom:209.579584pt;}
.y188{bottom:211.022916pt;}
.y1f6{bottom:211.035583pt;}
.y292{bottom:211.183595pt;}
.y1e8{bottom:211.700033pt;}
.yc4{bottom:213.460249pt;}
.yef{bottom:214.846936pt;}
.y11a{bottom:217.518916pt;}
.ya6{bottom:218.660916pt;}
.y13f{bottom:218.698916pt;}
.y1bb{bottom:218.814249pt;}
.y164{bottom:219.138249pt;}
.y1a1{bottom:219.485325pt;}
.y216{bottom:219.503325pt;}
.y25a{bottom:219.551607pt;}
.y7a{bottom:219.613967pt;}
.y291{bottom:223.514262pt;}
.y1e{bottom:224.730408pt;}
.y187{bottom:226.362249pt;}
.y202{bottom:226.374916pt;}
.y1e7{bottom:227.039366pt;}
.ydd{bottom:228.174249pt;}
.yc3{bottom:228.799583pt;}
.yee{bottom:230.186270pt;}
.y259{bottom:231.882274pt;}
.y119{bottom:232.858249pt;}
.y227{bottom:233.910249pt;}
.ya5{bottom:234.000249pt;}
.y13e{bottom:234.038249pt;}
.y1ba{bottom:234.153583pt;}
.y163{bottom:234.477583pt;}
.y1a0{bottom:234.824659pt;}
.y215{bottom:234.842659pt;}
.y79{bottom:234.953301pt;}
.y290{bottom:235.844929pt;}
.y1d{bottom:240.069743pt;}
.y186{bottom:241.701583pt;}
.y201{bottom:241.714249pt;}
.y1e6{bottom:242.378699pt;}
.ydc{bottom:243.513583pt;}
.yc2{bottom:244.138916pt;}
.y258{bottom:244.212940pt;}
.yed{bottom:245.525603pt;}
.y226{bottom:246.240917pt;}
.y28f{bottom:248.175595pt;}
.y118{bottom:248.197583pt;}
.ya4{bottom:249.339583pt;}
.y1f5{bottom:249.377583pt;}
.y1b9{bottom:249.492916pt;}
.y162{bottom:249.816916pt;}
.y19f{bottom:250.163992pt;}
.y214{bottom:250.181992pt;}
.y78{bottom:250.292634pt;}
.y1c{bottom:255.409058pt;}
.y257{bottom:256.543607pt;}
.y13d{bottom:257.040916pt;}
.y1e5{bottom:257.718033pt;}
.ydb{bottom:258.852916pt;}
.yc1{bottom:259.478249pt;}
.y28e{bottom:260.506262pt;}
.yec{bottom:260.864936pt;}
.y117{bottom:263.536916pt;}
.ya3{bottom:264.678916pt;}
.y1f4{bottom:264.716916pt;}
.y4c{bottom:264.732916pt;}
.y1b8{bottom:264.832249pt;}
.y161{bottom:265.156249pt;}
.y19e{bottom:265.503325pt;}
.y213{bottom:265.521325pt;}
.y77{bottom:265.631967pt;}
.y256{bottom:268.874267pt;}
.y225{bottom:270.571583pt;}
.y1b{bottom:270.748393pt;}
.y13c{bottom:272.380249pt;}
.y28d{bottom:272.836929pt;}
.y1e4{bottom:273.057366pt;}
.yda{bottom:274.192249pt;}
.yeb{bottom:276.204270pt;}
.y116{bottom:278.876249pt;}
.ya2{bottom:280.018249pt;}
.y1f3{bottom:280.056249pt;}
.y4b{bottom:280.072249pt;}
.y1b7{bottom:280.171583pt;}
.y160{bottom:280.495583pt;}
.y19d{bottom:280.842659pt;}
.y212{bottom:280.860659pt;}
.y76{bottom:280.971301pt;}
.y255{bottom:281.204959pt;}
.yc0{bottom:282.480916pt;}
.y224{bottom:282.902249pt;}
.y28c{bottom:285.167595pt;}
.y1a{bottom:286.087728pt;}
.y13b{bottom:287.719583pt;}
.yd9{bottom:289.531583pt;}
.yea{bottom:291.543603pt;}
.y254{bottom:293.535626pt;}
.y115{bottom:294.215583pt;}
.y223{bottom:295.232916pt;}
.ya1{bottom:295.357583pt;}
.y1f2{bottom:295.395583pt;}
.y4a{bottom:295.411583pt;}
.y1b6{bottom:295.510916pt;}
.y15f{bottom:295.834916pt;}
.y1e3{bottom:296.060033pt;}
.y19c{bottom:296.181992pt;}
.y211{bottom:296.199992pt;}
.y75{bottom:296.310634pt;}
.y28b{bottom:297.498262pt;}
.ybf{bottom:297.820249pt;}
.y185{bottom:303.058916pt;}
.yd8{bottom:304.870916pt;}
.y253{bottom:305.866272pt;}
.ye9{bottom:306.882936pt;}
.y222{bottom:307.563583pt;}
.y114{bottom:309.554916pt;}
.y28a{bottom:309.828929pt;}
.ya0{bottom:310.696916pt;}
.y13a{bottom:310.722249pt;}
.y1f1{bottom:310.734916pt;}
.y49{bottom:310.750916pt;}
.y1b5{bottom:310.850249pt;}
.y15e{bottom:311.174249pt;}
.y1e2{bottom:311.399366pt;}
.y19b{bottom:311.521325pt;}
.y74{bottom:311.649967pt;}
.ybe{bottom:313.159583pt;}
.y19{bottom:317.421061pt;}
.y252{bottom:318.196946pt;}
.y184{bottom:318.398249pt;}
.y221{bottom:319.894249pt;}
.yd7{bottom:320.210249pt;}
.y289{bottom:322.159595pt;}
.ye8{bottom:322.222270pt;}
.y113{bottom:324.894249pt;}
.y9f{bottom:326.036249pt;}
.y139{bottom:326.061583pt;}
.y200{bottom:326.074249pt;}
.y48{bottom:326.090249pt;}
.y1b4{bottom:326.189583pt;}
.y15d{bottom:326.513583pt;}
.y1e1{bottom:326.738699pt;}
.y19a{bottom:326.860659pt;}
.y73{bottom:326.989301pt;}
.y210{bottom:327.533325pt;}
.ybd{bottom:328.498916pt;}
.y251{bottom:330.527613pt;}
.y220{bottom:332.224916pt;}
.y183{bottom:333.737583pt;}
.y288{bottom:334.490262pt;}
.yd6{bottom:335.549583pt;}
.y112{bottom:340.233583pt;}
.y9e{bottom:341.375583pt;}
.y138{bottom:341.400916pt;}
.y47{bottom:341.429583pt;}
.y1b3{bottom:341.528916pt;}
.y15c{bottom:341.852916pt;}
.y199{bottom:342.199992pt;}
.y72{bottom:342.328634pt;}
.y250{bottom:342.858279pt;}
.y21f{bottom:344.555583pt;}
.y287{bottom:346.820929pt;}
.y182{bottom:349.076916pt;}
.y1e0{bottom:349.741366pt;}
.yd5{bottom:350.852916pt;}
.ybc{bottom:351.501583pt;}
.ye7{bottom:353.555583pt;}
.y24f{bottom:355.188946pt;}
.y111{bottom:355.572916pt;}
.y9d{bottom:356.714916pt;}
.y137{bottom:356.740249pt;}
.y46{bottom:356.768916pt;}
.y1b2{bottom:356.868249pt;}
.y15b{bottom:357.192249pt;}
.y71{bottom:357.667967pt;}
.y286{bottom:359.151595pt;}
.y181{bottom:364.416249pt;}
.y1df{bottom:365.080699pt;}
.y18{bottom:365.331746pt;}
.yd4{bottom:366.192249pt;}
.ybb{bottom:366.840916pt;}
.y24e{bottom:367.519613pt;}
.y285{bottom:371.482262pt;}
.y9c{bottom:372.054249pt;}
.y136{bottom:372.079583pt;}
.y45{bottom:372.108249pt;}
.y15a{bottom:372.531583pt;}
.y70{bottom:373.007301pt;}
.y198{bottom:373.533325pt;}
.y110{bottom:378.575583pt;}
.y180{bottom:379.755583pt;}
.y24d{bottom:379.850284pt;}
.y1b1{bottom:379.870916pt;}
.y17{bottom:380.671061pt;}
.yd3{bottom:381.531583pt;}
.yba{bottom:382.180249pt;}
.y284{bottom:383.812929pt;}
.y9b{bottom:387.393583pt;}
.y20f{bottom:387.406249pt;}
.y135{bottom:387.418916pt;}
.y44{bottom:387.447583pt;}
.y159{bottom:387.870916pt;}
.y1de{bottom:388.083366pt;}
.y6f{bottom:388.346634pt;}
.y24c{bottom:392.180950pt;}
.y10f{bottom:393.914916pt;}
.y17f{bottom:395.094916pt;}
.y1b0{bottom:395.210249pt;}
.y283{bottom:396.143583pt;}
.yd2{bottom:396.870916pt;}
.yb9{bottom:397.519583pt;}
.y9a{bottom:402.732916pt;}
.y20e{bottom:402.745583pt;}
.y134{bottom:402.758249pt;}
.y43{bottom:402.786916pt;}
.y158{bottom:403.210249pt;}
.y1dd{bottom:403.422699pt;}
.y6e{bottom:403.685967pt;}
.y24b{bottom:404.511607pt;}
.y282{bottom:408.474249pt;}
.y10e{bottom:409.254249pt;}
.y17e{bottom:410.434249pt;}
.y1af{bottom:410.549583pt;}
.y16{bottom:411.337077pt;}
.yd1{bottom:412.210249pt;}
.yb8{bottom:412.858916pt;}
.y24a{bottom:416.842274pt;}
.y99{bottom:418.072249pt;}
.y20d{bottom:418.084916pt;}
.y133{bottom:418.097583pt;}
.y42{bottom:418.126249pt;}
.y157{bottom:418.549583pt;}
.y1dc{bottom:418.762033pt;}
.y6d{bottom:419.025301pt;}
.y281{bottom:420.804916pt;}
.y197{bottom:425.760916pt;}
.y17d{bottom:425.773583pt;}
.y15{bottom:426.676392pt;}
.yd0{bottom:427.549583pt;}
.yb7{bottom:428.198249pt;}
.y249{bottom:429.172940pt;}
.y10d{bottom:432.256916pt;}
.y280{bottom:433.135583pt;}
.y98{bottom:433.411583pt;}
.y20c{bottom:433.424249pt;}
.y1c6{bottom:433.436916pt;}
.y41{bottom:433.465583pt;}
.y156{bottom:433.888916pt;}
.y1db{bottom:434.101366pt;}
.y6c{bottom:434.364634pt;}
.y132{bottom:441.100249pt;}
.y17c{bottom:441.112916pt;}
.y248{bottom:441.503607pt;}
.y14{bottom:442.015747pt;}
.ycf{bottom:442.882916pt;}
.yb6{bottom:443.537583pt;}
.y27f{bottom:445.466249pt;}
.y10c{bottom:447.596249pt;}
.y97{bottom:448.750916pt;}
.y1c5{bottom:448.776249pt;}
.y40{bottom:448.804916pt;}
.y6b{bottom:449.703967pt;}
.y247{bottom:453.834274pt;}
.y20b{bottom:456.426916pt;}
.y131{bottom:456.439583pt;}
.y1da{bottom:457.104033pt;}
.y13{bottom:457.355062pt;}
.y27e{bottom:457.796916pt;}
.yce{bottom:458.222249pt;}
.yb5{bottom:458.876916pt;}
.y10b{bottom:462.935583pt;}
.y96{bottom:464.090249pt;}
.y1ae{bottom:464.102916pt;}
.y17b{bottom:464.115583pt;}
.y3f{bottom:464.144249pt;}
.y6a{bottom:465.043301pt;}
.y155{bottom:465.222249pt;}
.y246{bottom:466.164940pt;}
.y27d{bottom:470.127583pt;}
.y20a{bottom:471.766249pt;}
.y130{bottom:471.778916pt;}
.y1d9{bottom:472.443366pt;}
.y12{bottom:472.694417pt;}
.yb4{bottom:474.216249pt;}
.y10a{bottom:478.274916pt;}
.y245{bottom:478.495607pt;}
.y95{bottom:479.429583pt;}
.y1ad{bottom:479.442249pt;}
.y17a{bottom:479.454916pt;}
.y3e{bottom:479.483583pt;}
.y69{bottom:480.382634pt;}
.y27c{bottom:482.458249pt;}
.y209{bottom:487.105583pt;}
.y12f{bottom:487.118249pt;}
.y1d8{bottom:487.782699pt;}
.y11{bottom:488.033732pt;}
.yb3{bottom:489.555583pt;}
.y244{bottom:490.826274pt;}
.y109{bottom:493.614249pt;}
.y94{bottom:494.768916pt;}
.y1ac{bottom:494.781583pt;}
.y27b{bottom:494.788916pt;}
.y179{bottom:494.794249pt;}
.y3d{bottom:494.822916pt;}
.y68{bottom:495.721967pt;}
.y208{bottom:502.444916pt;}
.y196{bottom:502.457583pt;}
.y1d7{bottom:503.122033pt;}
.y243{bottom:503.156940pt;}
.y10{bottom:503.373047pt;}
.y27a{bottom:507.119583pt;}
.y108{bottom:508.953583pt;}
.y93{bottom:510.108249pt;}
.y12e{bottom:510.120916pt;}
.y178{bottom:510.133583pt;}
.y3c{bottom:510.162249pt;}
.y67{bottom:511.061301pt;}
.y242{bottom:515.487607pt;}
.y154{bottom:517.784249pt;}
.y195{bottom:517.796916pt;}
.y1d6{bottom:518.461366pt;}
.yf{bottom:518.712402pt;}
.y279{bottom:519.450249pt;}
.yb2{bottom:520.888916pt;}
.y107{bottom:524.292916pt;}
.y92{bottom:525.447583pt;}
.y12d{bottom:525.460249pt;}
.y177{bottom:525.472916pt;}
.y3b{bottom:525.501583pt;}
.y66{bottom:526.400634pt;}
.y241{bottom:527.818274pt;}
.y278{bottom:531.780916pt;}
.y153{bottom:533.123583pt;}
.y194{bottom:533.136249pt;}
.y1d5{bottom:533.800699pt;}
.ye{bottom:534.051717pt;}
.y106{bottom:539.632249pt;}
.y240{bottom:540.148940pt;}
.y91{bottom:540.786916pt;}
.y12c{bottom:540.799583pt;}
.y3a{bottom:540.840916pt;}
.y65{bottom:541.739967pt;}
.y277{bottom:544.111583pt;}
.y152{bottom:548.462916pt;}
.y176{bottom:548.475583pt;}
.y1d4{bottom:549.140033pt;}
.yd{bottom:549.391073pt;}
.y23f{bottom:552.479607pt;}
.yb1{bottom:552.888916pt;}
.y105{bottom:554.971583pt;}
.y90{bottom:556.126249pt;}
.y12b{bottom:556.138916pt;}
.y39{bottom:556.180249pt;}
.y276{bottom:556.442249pt;}
.y64{bottom:557.079301pt;}
.y151{bottom:563.802249pt;}
.y175{bottom:563.814916pt;}
.y1d3{bottom:564.479366pt;}
.yc{bottom:564.730387pt;}
.y23e{bottom:564.810274pt;}
.y275{bottom:568.772916pt;}
.y104{bottom:570.310916pt;}
.y8f{bottom:571.465583pt;}
.y12a{bottom:571.478249pt;}
.y38{bottom:571.519583pt;}
.y63{bottom:572.418634pt;}
.y23d{bottom:577.140940pt;}
.y150{bottom:579.141583pt;}
.y174{bottom:579.154249pt;}
.y1d2{bottom:579.818699pt;}
.yb{bottom:580.069743pt;}
.y274{bottom:581.103583pt;}
.y103{bottom:585.650249pt;}
.y8e{bottom:586.804916pt;}
.y129{bottom:586.817583pt;}
.y37{bottom:586.858916pt;}
.y62{bottom:587.757967pt;}
.y23c{bottom:589.471607pt;}
.y273{bottom:593.434249pt;}
.y14f{bottom:594.480916pt;}
.y173{bottom:594.493583pt;}
.y1d1{bottom:595.158033pt;}
.ya{bottom:595.409058pt;}
.y102{bottom:600.989583pt;}
.y23b{bottom:601.802274pt;}
.y8d{bottom:602.144249pt;}
.y128{bottom:602.156916pt;}
.y36{bottom:602.198249pt;}
.y61{bottom:603.097301pt;}
.y272{bottom:605.764916pt;}
.y14e{bottom:609.820249pt;}
.y172{bottom:609.832916pt;}
.y1d0{bottom:610.497366pt;}
.y9{bottom:610.748413pt;}
.y23a{bottom:614.132940pt;}
.y101{bottom:616.328916pt;}
.y8c{bottom:617.483583pt;}
.y127{bottom:617.496249pt;}
.y35{bottom:617.537583pt;}
.y271{bottom:618.095583pt;}
.y60{bottom:618.436634pt;}
.y14d{bottom:625.159583pt;}
.y1cf{bottom:625.836699pt;}
.y8{bottom:626.087728pt;}
.y239{bottom:626.463607pt;}
.y270{bottom:630.426249pt;}
.y100{bottom:631.668249pt;}
.y8b{bottom:632.822916pt;}
.y171{bottom:632.835583pt;}
.y34{bottom:632.876916pt;}
.y5f{bottom:633.775967pt;}
.y238{bottom:638.794274pt;}
.y126{bottom:640.498916pt;}
.y1ce{bottom:641.176033pt;}
.y26f{bottom:642.756916pt;}
.yff{bottom:647.007583pt;}
.y8a{bottom:648.162249pt;}
.y170{bottom:648.174916pt;}
.y33{bottom:648.216249pt;}
.y5e{bottom:649.115301pt;}
.y237{bottom:651.124940pt;}
.y26e{bottom:655.087583pt;}
.y125{bottom:655.838249pt;}
.y1cd{bottom:656.515366pt;}
.yfe{bottom:662.346916pt;}
.y236{bottom:663.455607pt;}
.y89{bottom:663.501583pt;}
.y16f{bottom:663.514249pt;}
.y32{bottom:663.531583pt;}
.y5d{bottom:664.454634pt;}
.y26d{bottom:667.418249pt;}
.y7{bottom:668.522420pt;}
.y124{bottom:671.177583pt;}
.y1cc{bottom:671.854699pt;}
.yfd{bottom:677.686249pt;}
.y88{bottom:678.840916pt;}
.y193{bottom:678.853583pt;}
.y31{bottom:678.870916pt;}
.y26c{bottom:679.748916pt;}
.y5c{bottom:679.793967pt;}
.y6{bottom:680.853068pt;}
.y27{bottom:680.894593pt;}
.y123{bottom:686.516916pt;}
.y1cb{bottom:687.194033pt;}
.y235{bottom:692.055583pt;}
.y26b{bottom:692.079583pt;}
.yfc{bottom:693.025583pt;}
.y87{bottom:694.180249pt;}
.y192{bottom:694.192916pt;}
.y30{bottom:694.210249pt;}
.y5b{bottom:695.133301pt;}
.y14c{bottom:701.856249pt;}
.y1ca{bottom:702.533366pt;}
.y26a{bottom:704.410249pt;}
.yfb{bottom:708.364916pt;}
.y86{bottom:709.519583pt;}
.y1ff{bottom:709.532249pt;}
.y2f{bottom:709.549583pt;}
.y5{bottom:714.427733pt;}
.y269{bottom:716.740916pt;}
.y14b{bottom:717.195583pt;}
.yfa{bottom:723.704249pt;}
.y2e{bottom:724.858916pt;}
.y5a{bottom:726.466634pt;}
.y268{bottom:729.071583pt;}
.y14a{bottom:732.534916pt;}
.y1c9{bottom:733.866699pt;}
.yf9{bottom:739.043583pt;}
.y29f{bottom:739.652916pt;}
.y2d{bottom:740.198249pt;}
.y234{bottom:741.402249pt;}
.y149{bottom:747.874249pt;}
.y29e{bottom:751.983583pt;}
.y4{bottom:752.147705pt;}
.y267{bottom:753.732910pt;}
.y233{bottom:753.732916pt;}
.yf8{bottom:754.382916pt;}
.y2c{bottom:755.537583pt;}
.y148{bottom:763.213583pt;}
.y232{bottom:766.063583pt;}
.yf7{bottom:769.722249pt;}
.y2b{bottom:770.876916pt;}
.y231{bottom:778.394249pt;}
.y2a{bottom:786.216249pt;}
.y230{bottom:790.724916pt;}
.yf6{bottom:801.055583pt;}
.y29{bottom:801.555583pt;}
.y22f{bottom:803.055583pt;}
.y2{bottom:823.215169pt;}
.y28{bottom:834.506653pt;}
.y59{bottom:834.506673pt;}
.he{height:26.043733pt;}
.h2{height:30.080000pt;}
.hf{height:30.506667pt;}
.hd{height:37.205333pt;}
.h18{height:37.205415pt;}
.h3{height:37.376000pt;}
.h17{height:37.802667pt;}
.hc{height:43.648000pt;}
.h8{height:44.181333pt;}
.ha{height:44.890667pt;}
.h13{height:47.680000pt;}
.h4{height:48.766452pt;}
.h7{height:50.109333pt;}
.h10{height:51.193535pt;}
.h14{height:51.217698pt;}
.h12{height:51.289698pt;}
.h11{height:51.313535pt;}
.h15{height:51.337698pt;}
.h9{height:51.832000pt;}
.h16{height:52.344000pt;}
.h6{height:54.775672pt;}
.hb{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x6{left:64.327469pt;}
.x7{left:77.488421pt;}
.x4{left:81.263592pt;}
.x9{left:85.039602pt;}
.x5{left:187.727308pt;}
.x1{left:431.874146pt;}
.x3{left:469.341715pt;}
.x8{left:508.346680pt;}
}


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