
/* 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_aff86738acd9.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_93b732304bb6.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_ab86e60a891c.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_db6a3dbf3a53.woff")format("woff");}.ff4{font-family:ff4;line-height:1.136230;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_a6657d462657.woff")format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_c3f014b3db9a.woff")format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_91f27b801831.woff")format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_ae5a9cae1ff9.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_9ffae1882370.woff")format("woff");}.ff9{font-family:ff9;line-height:2.549805;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_9a96631c8e74.woff")format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_0c43dbad83b7.woff")format("woff");}.ffb{font-family:ffb;line-height:0.769531;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_352a1a9c906e.woff")format("woff");}.ffc{font-family:ffc;line-height:1.142578;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);}
.v10{vertical-align:-36.000000px;}
.ve{vertical-align:-23.040000px;}
.vf{vertical-align:-20.160000px;}
.v2{vertical-align:-18.000000px;}
.v12{vertical-align:-14.400000px;}
.v5{vertical-align:-12.960000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v6{vertical-align:12.960000px;}
.vc{vertical-align:15.840000px;}
.v3{vertical-align:18.000000px;}
.v11{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:29.520000px;}
.vd{vertical-align:36.000000px;}
.v8{vertical-align:42.480000px;}
.v7{vertical-align:48.240000px;}
.v9{vertical-align:90.720000px;}
.ls16{letter-spacing:-1.056000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.553200px;}
.ls5e{letter-spacing:-0.501000px;}
.ls17{letter-spacing:-0.385800px;}
.ls37{letter-spacing:-0.354000px;}
.ls6{letter-spacing:-0.334200px;}
.ls55{letter-spacing:-0.306600px;}
.ls11{letter-spacing:-0.219000px;}
.ls56{letter-spacing:-0.165600px;}
.ls20{letter-spacing:-0.106800px;}
.ls58{letter-spacing:-0.100200px;}
.ls38{letter-spacing:-0.076800px;}
.ls1f{letter-spacing:-0.053400px;}
.ls24{letter-spacing:-0.051600px;}
.ls57{letter-spacing:-0.017400px;}
.ls34{letter-spacing:-0.011400px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.013200px;}
.ls36{letter-spacing:0.022800px;}
.ls2{letter-spacing:0.051600px;}
.ls4a{letter-spacing:0.051840px;}
.ls35{letter-spacing:0.054600px;}
.ls41{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.080400px;}
.ls48{letter-spacing:0.109440px;}
.ls42{letter-spacing:0.115200px;}
.ls27{letter-spacing:0.132600px;}
.ls47{letter-spacing:0.138240px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.149760px;}
.ls22{letter-spacing:0.157200px;}
.ls1d{letter-spacing:0.166800px;}
.ls31{letter-spacing:0.213120px;}
.ls9{letter-spacing:0.219000px;}
.ls7{letter-spacing:0.256200px;}
.ls4e{letter-spacing:0.259920px;}
.ls5c{letter-spacing:0.287040px;}
.ls54{letter-spacing:0.291600px;}
.ls49{letter-spacing:0.304320px;}
.ls2e{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.334200px;}
.ls3b{letter-spacing:0.345600px;}
.ls4f{letter-spacing:0.365760px;}
.ls4c{letter-spacing:0.385800px;}
.ls10{letter-spacing:0.385920px;}
.ls53{letter-spacing:0.399600px;}
.ls5a{letter-spacing:0.501000px;}
.ls59{letter-spacing:0.666000px;}
.ls4d{letter-spacing:0.702720px;}
.ls50{letter-spacing:0.800640px;}
.ls19{letter-spacing:0.869760px;}
.ls33{letter-spacing:0.920640px;}
.ls43{letter-spacing:1.094400px;}
.ls14{letter-spacing:1.105920px;}
.ls32{letter-spacing:1.275840px;}
.ls4b{letter-spacing:1.566720px;}
.ls51{letter-spacing:1.692000px;}
.ls5f{letter-spacing:1.825920px;}
.ls30{letter-spacing:1.872000px;}
.ls40{letter-spacing:2.536560px;}
.ls1a{letter-spacing:2.545920px;}
.lse{letter-spacing:3.029760px;}
.ls29{letter-spacing:3.081600px;}
.lsc{letter-spacing:3.265920px;}
.ls3d{letter-spacing:3.522960px;}
.ls2d{letter-spacing:3.733200px;}
.ls39{letter-spacing:3.801600px;}
.ls52{letter-spacing:4.111200px;}
.ls46{letter-spacing:4.238640px;}
.ls2a{letter-spacing:4.453200px;}
.ls13{letter-spacing:5.425920px;}
.ls60{letter-spacing:6.065280px;}
.ls2c{letter-spacing:9.331200px;}
.ls18{letter-spacing:9.745920px;}
.ls2b{letter-spacing:10.051200px;}
.ls3a{letter-spacing:10.171200px;}
.ls26{letter-spacing:10.771200px;}
.ls45{letter-spacing:11.220480px;}
.lsf{letter-spacing:11.669760px;}
.lsb{letter-spacing:12.625920px;}
.ls3e{letter-spacing:13.305600px;}
.ls5b{letter-spacing:13.345920px;}
.ls3f{letter-spacing:16.216560px;}
.ls2f{letter-spacing:16.225920px;}
.ls25{letter-spacing:16.750080px;}
.ls3c{letter-spacing:17.413200px;}
.ls23{letter-spacing:20.536560px;}
.lsa{letter-spacing:21.265920px;}
.ls15{letter-spacing:21.445920px;}
.ls44{letter-spacing:23.950080px;}
.ls1e{letter-spacing:34.345920px;}
.ls3{letter-spacing:35.665920px;}
.ls5d{letter-spacing:37.825920px;}
.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;}
}
.ws10{word-spacing:-18.414720px;}
.ws32{word-spacing:-18.115080px;}
.wsf{word-spacing:-17.948280px;}
.wsb{word-spacing:-17.833080px;}
.ws16{word-spacing:-17.780880px;}
.ws8{word-spacing:-17.665680px;}
.wsa{word-spacing:-17.614080px;}
.ws1c{word-spacing:-17.562480px;}
.wse{word-spacing:-17.395080px;}
.ws7{word-spacing:-17.279880px;}
.ws12{word-spacing:-17.228280px;}
.ws33{word-spacing:-17.113080px;}
.ws15{word-spacing:-17.060880px;}
.wsd{word-spacing:-16.948080px;}
.ws14{word-spacing:-16.894080px;}
.ws1b{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.558080px;}
.ws31{word-spacing:-16.513080px;}
.ws18{word-spacing:-16.506480px;}
.ws2d{word-spacing:-16.306680px;}
.ws9{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.970240px;}
.ws23{word-spacing:-14.627400px;}
.ws25{word-spacing:-14.595600px;}
.ws21{word-spacing:-14.572800px;}
.ws27{word-spacing:-14.273400px;}
.ws1e{word-spacing:-14.071800px;}
.ws1f{word-spacing:-14.019600px;}
.wsc{word-spacing:-13.939200px;}
.ws1d{word-spacing:-13.927800px;}
.ws2f{word-spacing:-13.147200px;}
.ws2a{word-spacing:-11.609280px;}
.ws1a{word-spacing:-10.965840px;}
.ws19{word-spacing:-10.821840px;}
.ws17{word-spacing:-10.808640px;}
.ws26{word-spacing:-9.979200px;}
.ws29{word-spacing:-9.902400px;}
.ws28{word-spacing:-9.625200px;}
.ws30{word-spacing:-9.187200px;}
.ws2e{word-spacing:-9.021600px;}
.ws3{word-spacing:-0.056784px;}
.ws5{word-spacing:0.000000px;}
.ws20{word-spacing:11.385360px;}
.ws4{word-spacing:15.728022px;}
.ws2{word-spacing:15.729225px;}
.ws22{word-spacing:21.625920px;}
.ws0{word-spacing:25.167303px;}
.ws1{word-spacing:31.460225px;}
.ws24{word-spacing:42.410880px;}
.ws2c{word-spacing:73.058296px;}
.ws2b{word-spacing:77.126400px;}
._2b{margin-left:-3048.926994px;}
._2d{margin-left:-3046.948920px;}
._2c{margin-left:-3045.798730px;}
._a6{margin-left:-3044.759441px;}
._8f{margin-left:-3042.845822px;}
._32{margin-left:-3032.021508px;}
._2a{margin-left:-3030.675542px;}
._a3{margin-left:-3028.526462px;}
._13{margin-left:-3015.088441px;}
._11{margin-left:-3014.087493px;}
._12{margin-left:-3012.934686px;}
._14{margin-left:-2997.996958px;}
._b{margin-left:-2980.390894px;}
._8a{margin-left:-2969.607803px;}
._6e{margin-left:-2926.833662px;}
._53{margin-left:-2913.098186px;}
._8{margin-left:-2868.897642px;}
._31{margin-left:-2854.508324px;}
._7{margin-left:-2843.056821px;}
._37{margin-left:-2826.667890px;}
._23{margin-left:-2806.696004px;}
._61{margin-left:-2788.945982px;}
._7b{margin-left:-2765.912360px;}
._5f{margin-left:-2687.063102px;}
._84{margin-left:-2677.018760px;}
._2e{margin-left:-2626.266062px;}
._79{margin-left:-2618.874098px;}
._4a{margin-left:-2606.772120px;}
._63{margin-left:-2595.609587px;}
._8d{margin-left:-2576.648021px;}
._67{margin-left:-2569.896818px;}
._97{margin-left:-2555.957618px;}
._41{margin-left:-2511.495824px;}
._a7{margin-left:-2506.600178px;}
._81{margin-left:-2499.440498px;}
._a1{margin-left:-2488.643618px;}
._94{margin-left:-2485.311218px;}
._9a{margin-left:-2480.355566px;}
._46{margin-left:-2435.567049px;}
._7a{margin-left:-2428.841035px;}
._9{margin-left:-2379.993039px;}
._75{margin-left:-2360.419195px;}
._7f{margin-left:-2323.391138px;}
._68{margin-left:-2314.097515px;}
._4b{margin-left:-2311.989495px;}
._92{margin-left:-2243.577835px;}
._6c{margin-left:-2208.349675px;}
._47{margin-left:-2200.111538px;}
._9d{margin-left:-2187.393835px;}
._4d{margin-left:-2164.629938px;}
._6f{margin-left:-2128.754533px;}
._69{margin-left:-2121.658213px;}
._9f{margin-left:-2120.358955px;}
._77{margin-left:-2113.182718px;}
._a0{margin-left:-2106.701275px;}
._9b{margin-left:-2100.432613px;}
._93{margin-left:-2072.174053px;}
._55{margin-left:-2032.065835px;}
._6d{margin-left:-2012.425573px;}
._56{margin-left:-1967.516978px;}
._7e{margin-left:-1921.128373px;}
._49{margin-left:-1870.455355px;}
._95{margin-left:-1866.001951px;}
._89{margin-left:-1859.540191px;}
._72{margin-left:-1850.259016px;}
._a5{margin-left:-1844.506591px;}
._8c{margin-left:-1841.085151px;}
._9e{margin-left:-1832.879416px;}
._8e{margin-left:-1830.595471px;}
._7c{margin-left:-1826.517391px;}
._74{margin-left:-1805.983711px;}
._96{margin-left:-1791.791071px;}
._a2{margin-left:-1785.883609px;}
._3d{margin-left:-1769.170213px;}
._57{margin-left:-1765.685413px;}
._80{margin-left:-1761.299929px;}
._3c{margin-left:-1740.624409px;}
._43{margin-left:-1705.810213px;}
._6b{margin-left:-1686.106591px;}
._26{margin-left:-1590.869413px;}
._3a{margin-left:-1541.682535px;}
._52{margin-left:-1536.892453px;}
._5a{margin-left:-1474.467871px;}
._76{margin-left:-1462.245289px;}
._48{margin-left:-1458.376729px;}
._99{margin-left:-1444.579609px;}
._78{margin-left:-1424.589907px;}
._70{margin-left:-1350.585427px;}
._71{margin-left:-1332.971347px;}
._87{margin-left:-1312.130467px;}
._7d{margin-left:-1294.002787px;}
._88{margin-left:-1287.225427px;}
._90{margin-left:-1227.441667px;}
._a8{margin-left:-1216.642387px;}
._98{margin-left:-1165.242444px;}
._42{margin-left:-1153.156627px;}
._39{margin-left:-1152.013849px;}
._6a{margin-left:-1122.854604px;}
._83{margin-left:-1115.885004px;}
._18{margin-left:-1038.261907px;}
._36{margin-left:-1029.172387px;}
._15{margin-left:-1010.130067px;}
._54{margin-left:-989.165964px;}
._40{margin-left:-946.904844px;}
._33{margin-left:-910.855164px;}
._a4{margin-left:-904.619244px;}
._65{margin-left:-881.958547px;}
._5d{margin-left:-879.789324px;}
._91{margin-left:-849.647622px;}
._85{margin-left:-813.103647px;}
._64{margin-left:-812.056902px;}
._62{margin-left:-750.896640px;}
._9c{margin-left:-744.014742px;}
._30{margin-left:-742.070022px;}
._29{margin-left:-729.800149px;}
._1b{margin-left:-708.964422px;}
._5e{margin-left:-706.780800px;}
._60{margin-left:-686.681622px;}
._86{margin-left:-673.506822px;}
._5c{margin-left:-669.324684px;}
._4c{margin-left:-645.088902px;}
._82{margin-left:-639.479280px;}
._35{margin-left:-616.893702px;}
._58{margin-left:-596.937600px;}
._66{margin-left:-583.926342px;}
._51{margin-left:-543.337302px;}
._5b{margin-left:-479.592582px;}
._59{margin-left:-430.298502px;}
._a{margin-left:-429.068160px;}
._3b{margin-left:-397.198080px;}
._3e{margin-left:-227.278080px;}
._a9{margin-left:-224.634240px;}
._19{margin-left:-193.438080px;}
._50{margin-left:-13.563738px;}
._4f{margin-left:-10.165839px;}
._4e{margin-left:-8.899200px;}
._5{margin-left:-6.805738px;}
._e{margin-left:-4.856640px;}
._f{margin-left:-3.777544px;}
._0{margin-left:-2.722833px;}
._2{margin-left:-1.252218px;}
._3{width:1.587039px;}
._27{width:2.601819px;}
._1{width:3.633048px;}
._10{width:4.793959px;}
._6{width:5.977800px;}
._1c{width:7.497159px;}
._c{width:9.489018px;}
._d{width:10.539440px;}
._20{width:12.236778px;}
._24{width:13.964262px;}
._25{width:15.468858px;}
._34{width:16.475888px;}
._44{width:17.520904px;}
._4{width:19.534150px;}
._1d{width:20.545920px;}
._28{width:21.559627px;}
._21{width:22.578240px;}
._22{width:23.930460px;}
._1e{width:25.184058px;}
._1f{width:26.379564px;}
._38{width:28.004993px;}
._8b{width:29.381399px;}
._45{width:31.164969px;}
._16{width:34.774818px;}
._17{width:36.171378px;}
._73{width:50.244607px;}
._3f{width:67.115520px;}
._1a{width:74.355840px;}
._2f{width:76.757760px;}
.fc5{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc3{color:rgb(0,114,198);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,75,75);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(46,46,46);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsd{font-size:45.360000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:56.784000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:59.778000px;}
.fsf{font-size:59.904000px;}
.fsa{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fse{font-size:81.360000px;}
.fs0{font-size:90.858000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y119{bottom:3.060000px;}
.ydc{bottom:4.860000px;}
.y1ae{bottom:8.205000px;}
.y1ab{bottom:8.250000px;}
.y1a7{bottom:8.430000px;}
.y197{bottom:10.335000px;}
.y118{bottom:13.680000px;}
.yf6{bottom:14.295000px;}
.y1a5{bottom:15.990000px;}
.y12c{bottom:19.980000px;}
.ycd{bottom:20.340000px;}
.yd0{bottom:20.520000px;}
.y156{bottom:21.240000px;}
.y160{bottom:21.420000px;}
.y168{bottom:21.600000px;}
.y164{bottom:21.780000px;}
.y10d{bottom:21.960000px;}
.yc9{bottom:22.035000px;}
.yff{bottom:22.140000px;}
.y100{bottom:22.320000px;}
.y152{bottom:22.710000px;}
.y169{bottom:23.220000px;}
.y133{bottom:23.430000px;}
.y121{bottom:23.760000px;}
.y11a{bottom:24.300000px;}
.y123{bottom:25.380000px;}
.y122{bottom:27.180000px;}
.y12b{bottom:29.520000px;}
.yde{bottom:31.710000px;}
.y132{bottom:34.050000px;}
.y1b1{bottom:35.565000px;}
.y1bc{bottom:37.470000px;}
.y155{bottom:38.520000px;}
.y15f{bottom:38.700000px;}
.y12a{bottom:40.185000px;}
.y163{bottom:40.860000px;}
.y162{bottom:41.580000px;}
.y196{bottom:44.715000px;}
.y134{bottom:46.110000px;}
.yf5{bottom:48.855000px;}
.y12d{bottom:50.985000px;}
.y15a{bottom:54.720000px;}
.yc8{bottom:56.595000px;}
.y12{bottom:58.320000px;}
.y1b0{bottom:70.125000px;}
.y1bb{bottom:72.030000px;}
.y158{bottom:74.520000px;}
.y11{bottom:78.480000px;}
.y195{bottom:79.275000px;}
.yf4{bottom:83.415000px;}
.yc7{bottom:90.975000px;}
.y1a3{bottom:98.280000px;}
.y1b7{bottom:99.000000px;}
.y1fc{bottom:100.080000px;}
.y1cb{bottom:101.520000px;}
.y179{bottom:101.880000px;}
.y150{bottom:102.600000px;}
.yda{bottom:105.300000px;}
.y1ba{bottom:106.590000px;}
.yc5{bottom:108.900000px;}
.y141{bottom:111.240000px;}
.y10{bottom:111.475500px;}
.y185{bottom:113.760000px;}
.y194{bottom:113.835000px;}
.ya8{bottom:115.560000px;}
.yf2{bottom:116.820000px;}
.y49{bottom:118.980000px;}
.y87{bottom:120.060000px;}
.y106{bottom:120.240000px;}
.y2d{bottom:122.400000px;}
.yf{bottom:129.409500px;}
.y98{bottom:129.420000px;}
.yb2{bottom:129.600000px;}
.y65{bottom:133.560000px;}
.y192{bottom:135.036000px;}
.y1b6{bottom:135.216000px;}
.y1fb{bottom:136.296000px;}
.y1ca{bottom:137.736000px;}
.y178{bottom:138.096000px;}
.y1b9{bottom:141.015000px;}
.y11f{bottom:144.216000px;}
.yc4{bottom:145.116000px;}
.ye{bottom:147.342000px;}
.y140{bottom:147.456000px;}
.y184{bottom:149.976000px;}
.y201{bottom:151.590000px;}
.ya7{bottom:151.770000px;}
.y1a2{bottom:152.670000px;}
.yf1{bottom:153.030000px;}
.y48{bottom:155.370000px;}
.y86{bottom:156.270000px;}
.y105{bottom:156.450000px;}
.y14f{bottom:156.810000px;}
.y2c{bottom:158.790000px;}
.yd9{bottom:159.690000px;}
.y97{bottom:165.630000px;}
.y1e4{bottom:167.970000px;}
.y166{bottom:168.480000px;}
.y64{bottom:169.770000px;}
.y1b5{bottom:171.570000px;}
.y1fa{bottom:172.470000px;}
.y1c9{bottom:173.910000px;}
.ydd{bottom:174.420000px;}
.y177{bottom:174.450000px;}
.y11e{bottom:181.830000px;}
.yb1{bottom:183.810000px;}
.y165{bottom:185.760000px;}
.y183{bottom:186.150000px;}
.y210{bottom:186.870000px;}
.y200{bottom:187.770000px;}
.ya6{bottom:187.950000px;}
.y1a1{bottom:188.850000px;}
.yf0{bottom:189.210000px;}
.y151{bottom:190.620000px;}
.y85{bottom:192.450000px;}
.y104{bottom:192.810000px;}
.yc3{bottom:193.350000px;}
.y2b{bottom:194.970000px;}
.y96{bottom:201.810000px;}
.y63{bottom:205.950000px;}
.y1b4{bottom:207.750000px;}
.y1f9{bottom:208.650000px;}
.y47{bottom:209.550000px;}
.y1c8{bottom:210.270000px;}
.y176{bottom:210.630000px;}
.y14e{bottom:211.170000px;}
.yd{bottom:219.072000px;}
.y13f{bottom:219.990000px;}
.y11d{bottom:221.430000px;}
.y1e3{bottom:222.150000px;}
.y182{bottom:222.510000px;}
.y20f{bottom:223.050000px;}
.y1ff{bottom:223.950000px;}
.ya5{bottom:224.130000px;}
.y1a0{bottom:225.030000px;}
.yef{bottom:225.570000px;}
.y84{bottom:228.630000px;}
.y103{bottom:228.990000px;}
.y2a{bottom:231.150000px;}
.yc{bottom:237.006000px;}
.y95{bottom:238.170000px;}
.y62{bottom:242.130000px;}
.y191{bottom:243.570000px;}
.y1f8{bottom:245.010000px;}
.y46{bottom:245.730000px;}
.y1c7{bottom:246.450000px;}
.y175{bottom:246.810000px;}
.yc2{bottom:247.530000px;}
.yb{bottom:254.938500px;}
.y13e{bottom:256.170000px;}
.y11c{bottom:258.330000px;}
.y1e2{bottom:258.510000px;}
.y181{bottom:258.690000px;}
.y20e{bottom:259.230000px;}
.y1fe{bottom:260.130000px;}
.ya4{bottom:260.310000px;}
.y19f{bottom:261.210000px;}
.yee{bottom:261.750000px;}
.y1b3{bottom:261.930000px;}
.y83{bottom:264.810000px;}
.y1b8{bottom:265.140000px;}
.y102{bottom:265.170000px;}
.y14d{bottom:265.350000px;}
.y29{bottom:267.330000px;}
.y94{bottom:274.350000px;}
.y15d{bottom:275.805000px;}
.y61{bottom:278.310000px;}
.y1f7{bottom:281.190000px;}
.y45{bottom:281.910000px;}
.y1c6{bottom:282.630000px;}
.y174{bottom:282.990000px;}
.yc1{bottom:283.710000px;}
.y13d{bottom:292.350000px;}
.y1e1{bottom:294.690000px;}
.y180{bottom:294.870000px;}
.y20d{bottom:295.410000px;}
.y15c{bottom:295.605000px;}
.y1fd{bottom:296.310000px;}
.ya3{bottom:296.670000px;}
.y11b{bottom:297.210000px;}
.y19e{bottom:297.570000px;}
.y190{bottom:297.750000px;}
.yed{bottom:297.930000px;}
.y82{bottom:301.170000px;}
.y28{bottom:303.510000px;}
.ya{bottom:308.736000px;}
.y93{bottom:310.530000px;}
.y60{bottom:314.670000px;}
.y1b2{bottom:316.110000px;}
.y1f6{bottom:317.370000px;}
.y44{bottom:318.270000px;}
.y1c5{bottom:318.810000px;}
.y21c{bottom:318.990000px;}
.y173{bottom:319.350000px;}
.y14c{bottom:319.530000px;}
.y101{bottom:319.890000px;}
.yc0{bottom:320.070000px;}
.y9{bottom:326.668500px;}
.y13c{bottom:328.710000px;}
.y117{bottom:330.150000px;}
.y1e0{bottom:330.870000px;}
.y17f{bottom:331.050000px;}
.y20c{bottom:331.770000px;}
.y1cf{bottom:332.670000px;}
.ya2{bottom:332.850000px;}
.y19d{bottom:333.750000px;}
.yec{bottom:334.110000px;}
.yfe{bottom:334.830000px;}
.y81{bottom:337.350000px;}
.y92{bottom:346.710000px;}
.y5f{bottom:350.850000px;}
.y18f{bottom:351.930000px;}
.y1f5{bottom:353.550000px;}
.y43{bottom:354.450000px;}
.y1c4{bottom:355.170000px;}
.y172{bottom:355.530000px;}
.ybf{bottom:356.250000px;}
.y27{bottom:357.870000px;}
.y8{bottom:362.535000px;}
.y1df{bottom:367.050000px;}
.y17e{bottom:367.410000px;}
.y20b{bottom:367.950000px;}
.y21b{bottom:368.130000px;}
.y1ce{bottom:368.850000px;}
.ya1{bottom:369.030000px;}
.y19c{bottom:369.930000px;}
.yeb{bottom:370.470000px;}
.y80{bottom:373.530000px;}
.y14b{bottom:373.710000px;}
.y13b{bottom:376.950000px;}
.y7{bottom:380.467500px;}
.y91{bottom:383.070000px;}
.y5e{bottom:387.030000px;}
.y1f4{bottom:389.955000px;}
.y42{bottom:390.675000px;}
.y1c3{bottom:391.395000px;}
.y171{bottom:391.755000px;}
.ybe{bottom:392.475000px;}
.y26{bottom:394.095000px;}
.y1de{bottom:403.455000px;}
.y20a{bottom:404.175000px;}
.y21a{bottom:404.355000px;}
.y1cd{bottom:405.075000px;}
.ya0{bottom:405.255000px;}
.y18e{bottom:406.155000px;}
.y116{bottom:408.675000px;}
.yfd{bottom:411.375000px;}
.y90{bottom:419.295000px;}
.y17d{bottom:422.535000px;}
.y5d{bottom:423.255000px;}
.yea{bottom:424.695000px;}
.y6{bottom:425.299500px;}
.y1f3{bottom:426.135000px;}
.y41{bottom:426.855000px;}
.y1c2{bottom:427.575000px;}
.y7f{bottom:427.755000px;}
.y170{bottom:427.935000px;}
.y14a{bottom:428.115000px;}
.ybd{bottom:428.655000px;}
.y193{bottom:429.120000px;}
.y25{bottom:430.275000px;}
.y13a{bottom:431.175000px;}
.yf3{bottom:435.240000px;}
.y1dd{bottom:439.635000px;}
.y209{bottom:440.355000px;}
.y219{bottom:440.535000px;}
.y1cc{bottom:441.255000px;}
.y9f{bottom:441.615000px;}
.y19b{bottom:442.515000px;}
.y5{bottom:443.232000px;}
.y115{bottom:444.855000px;}
.yfc{bottom:447.555000px;}
.y8f{bottom:455.475000px;}
.y5c{bottom:459.615000px;}
.y18d{bottom:460.515000px;}
.y1f2{bottom:462.315000px;}
.y40{bottom:463.035000px;}
.y1c1{bottom:463.755000px;}
.y7e{bottom:464.115000px;}
.ybc{bottom:465.015000px;}
.y24{bottom:466.455000px;}
.y139{bottom:467.355000px;}
.y1dc{bottom:475.815000px;}
.y208{bottom:476.535000px;}
.y218{bottom:476.895000px;}
.y17c{bottom:477.615000px;}
.y9e{bottom:477.795000px;}
.y19a{bottom:478.695000px;}
.ye9{bottom:478.875000px;}
.y114{bottom:481.035000px;}
.y149{bottom:482.295000px;}
.yfb{bottom:483.735000px;}
.y4{bottom:488.064000px;}
.y8e{bottom:491.655000px;}
.y5b{bottom:495.795000px;}
.y1f1{bottom:498.495000px;}
.yc6{bottom:498.600000px;}
.y3f{bottom:499.395000px;}
.y1c0{bottom:500.115000px;}
.y7d{bottom:500.295000px;}
.y16f{bottom:500.475000px;}
.y23{bottom:502.815000px;}
.y138{bottom:503.535000px;}
.y1db{bottom:511.995000px;}
.y207{bottom:512.895000px;}
.y217{bottom:513.075000px;}
.y17b{bottom:513.795000px;}
.y9d{bottom:513.975000px;}
.y18c{bottom:514.695000px;}
.y199{bottom:514.875000px;}
.y113{bottom:517.395000px;}
.ybb{bottom:519.195000px;}
.yfa{bottom:519.915000px;}
.yca{bottom:520.635000px;}
.yb0{bottom:528.015000px;}
.y5a{bottom:531.975000px;}
.ye8{bottom:533.055000px;}
.y1f0{bottom:534.855000px;}
.y3e{bottom:535.575000px;}
.y1bf{bottom:536.295000px;}
.y7c{bottom:536.475000px;}
.y16e{bottom:536.655000px;}
.y22{bottom:538.995000px;}
.y137{bottom:539.715000px;}
.y8d{bottom:546.015000px;}
.y1da{bottom:548.175000px;}
.y206{bottom:549.075000px;}
.y216{bottom:549.255000px;}
.y17a{bottom:549.975000px;}
.y9c{bottom:550.155000px;}
.y198{bottom:551.055000px;}
.y112{bottom:553.575000px;}
.yf9{bottom:556.275000px;}
.yaf{bottom:564.195000px;}
.y73{bottom:568.155000px;}
.y18b{bottom:568.875000px;}
.y1ef{bottom:571.035000px;}
.y3d{bottom:571.755000px;}
.y1be{bottom:572.475000px;}
.y7b{bottom:572.655000px;}
.y16d{bottom:572.835000px;}
.yba{bottom:573.375000px;}
.y21{bottom:575.175000px;}
.y136{bottom:576.075000px;}
.y8c{bottom:582.195000px;}
.y1d9{bottom:584.535000px;}
.y205{bottom:585.255000px;}
.y215{bottom:585.435000px;}
.y59{bottom:586.155000px;}
.y9b{bottom:586.515000px;}
.ye7{bottom:587.415000px;}
.y111{bottom:589.755000px;}
.y148{bottom:590.655000px;}
.yf8{bottom:592.455000px;}
.yae{bottom:600.375000px;}
.y72{bottom:604.515000px;}
.y1ee{bottom:607.215000px;}
.y3c{bottom:607.935000px;}
.y7a{bottom:609.015000px;}
.y20{bottom:611.355000px;}
.y1af{bottom:612.180000px;}
.y135{bottom:614.595000px;}
.y8b{bottom:618.375000px;}
.y1d8{bottom:620.715000px;}
.y204{bottom:621.435000px;}
.y1bd{bottom:621.615000px;}
.y214{bottom:621.795000px;}
.y58{bottom:622.515000px;}
.y9a{bottom:622.695000px;}
.y18a{bottom:623.055000px;}
.y147{bottom:627.015000px;}
.yb9{bottom:627.555000px;}
.yf7{bottom:628.635000px;}
.y131{bottom:629.535000px;}
.yad{bottom:636.555000px;}
.y71{bottom:640.725000px;}
.ye6{bottom:641.625000px;}
.y15b{bottom:642.705000px;}
.y1ed{bottom:643.425000px;}
.y3b{bottom:644.325000px;}
.y110{bottom:644.505000px;}
.y79{bottom:645.225000px;}
.y1f{bottom:647.745000px;}
.y8a{bottom:654.585000px;}
.y1d7{bottom:656.925000px;}
.y203{bottom:657.825000px;}
.y213{bottom:658.005000px;}
.y57{bottom:658.725000px;}
.y99{bottom:658.905000px;}
.y146{bottom:663.225000px;}
.yac{bottom:672.765000px;}
.yd8{bottom:673.125000px;}
.y70{bottom:676.905000px;}
.y189{bottom:677.445000px;}
.y1ec{bottom:679.605000px;}
.y3a{bottom:680.505000px;}
.y78{bottom:681.405000px;}
.y10f{bottom:681.585000px;}
.yb8{bottom:681.765000px;}
.y1e{bottom:683.925000px;}
.yd7{bottom:688.605000px;}
.y89{bottom:690.765000px;}
.y1d6{bottom:693.105000px;}
.y202{bottom:694.005000px;}
.y212{bottom:694.185000px;}
.y56{bottom:694.905000px;}
.ye5{bottom:695.805000px;}
.y16c{bottom:696.165000px;}
.y10e{bottom:696.525000px;}
.y145{bottom:699.405000px;}
.yab{bottom:709.125000px;}
.y6f{bottom:713.085000px;}
.y1eb{bottom:715.965000px;}
.y39{bottom:716.685000px;}
.y77{bottom:717.585000px;}
.y1d{bottom:720.105000px;}
.yd6{bottom:723.165000px;}
.y1d5{bottom:729.465000px;}
.y130{bottom:730.005000px;}
.y88{bottom:730.185000px;}
.y211{bottom:730.905000px;}
.y55{bottom:731.085000px;}
.y188{bottom:731.625000px;}
.y16b{bottom:732.525000px;}
.y10c{bottom:733.425000px;}
.y144{bottom:735.585000px;}
.yb7{bottom:736.125000px;}
.yaa{bottom:745.305000px;}
.y6e{bottom:749.445000px;}
.ye4{bottom:749.985000px;}
.y1ea{bottom:752.145000px;}
.y38{bottom:752.865000px;}
.y76{bottom:753.765000px;}
.y1c{bottom:756.285000px;}
.yd5{bottom:757.725000px;}
.y1d4{bottom:765.645000px;}
.y12f{bottom:766.725000px;}
.y54{bottom:767.445000px;}
.y16a{bottom:768.885000px;}
.y143{bottom:771.765000px;}
.ya9{bottom:784.725000px;}
.y6d{bottom:785.625000px;}
.y187{bottom:785.805000px;}
.y1e9{bottom:788.325000px;}
.y37{bottom:789.225000px;}
.y75{bottom:790.125000px;}
.yb6{bottom:790.305000px;}
.y1b{bottom:792.465000px;}
.yd4{bottom:792.825000px;}
.y1d3{bottom:801.825000px;}
.y53{bottom:803.625000px;}
.ye3{bottom:804.165000px;}
.y167{bottom:805.245000px;}
.y10b{bottom:809.745000px;}
.y1ad{bottom:818.460000px;}
.y142{bottom:821.085000px;}
.y6c{bottom:821.805000px;}
.y1e8{bottom:824.505000px;}
.y36{bottom:825.405000px;}
.yd3{bottom:827.385000px;}
.y1a{bottom:828.825000px;}
.y1d2{bottom:838.005000px;}
.y74{bottom:839.265000px;}
.y52{bottom:839.805000px;}
.y186{bottom:839.985000px;}
.y12e{bottom:840.525000px;}
.y161{bottom:843.225000px;}
.yb5{bottom:844.485000px;}
.y10a{bottom:846.105000px;}
.y129{bottom:855.465000px;}
.y6b{bottom:857.985000px;}
.ye2{bottom:858.525000px;}
.y1e7{bottom:860.865000px;}
.yd2{bottom:861.945000px;}
.y35{bottom:862.125000px;}
.y3{bottom:863.829000px;}
.y19{bottom:865.005000px;}
.y1d1{bottom:874.365000px;}
.y51{bottom:875.985000px;}
.y109{bottom:882.285000px;}
.y6a{bottom:894.210000px;}
.yd1{bottom:896.370000px;}
.y1e6{bottom:897.090000px;}
.y34{bottom:898.530000px;}
.yb4{bottom:898.710000px;}
.y15e{bottom:899.610000px;}
.y2{bottom:899.695500px;}
.y50{bottom:912.210000px;}
.ye1{bottom:912.750000px;}
.y18{bottom:914.190000px;}
.y108{bottom:918.510000px;}
.y1aa{bottom:926.820000px;}
.y1d0{bottom:929.490000px;}
.y69{bottom:930.570000px;}
.ycf{bottom:930.930000px;}
.y1e5{bottom:933.270000px;}
.y33{bottom:934.710000px;}
.y4f{bottom:948.570000px;}
.y157{bottom:952.350000px;}
.yb3{bottom:953.070000px;}
.y17{bottom:954.150000px;}
.y107{bottom:954.690000px;}
.y1a9{bottom:958.860000px;}
.y128{bottom:960.630000px;}
.y1{bottom:962.460000px;}
.yce{bottom:965.490000px;}
.y68{bottom:966.750000px;}
.ye0{bottom:966.930000px;}
.y1ac{bottom:967.860000px;}
.y1a8{bottom:969.840000px;}
.y32{bottom:971.070000px;}
.y1a6{bottom:982.980000px;}
.y4e{bottom:984.750000px;}
.y159{bottom:988.350000px;}
.y16{bottom:989.610000px;}
.y127{bottom:996.810000px;}
.ycc{bottom:1000.770000px;}
.y67{bottom:1002.930000px;}
.y31{bottom:1007.250000px;}
.y4d{bottom:1020.930000px;}
.ydf{bottom:1021.110000px;}
.y15{bottom:1025.070000px;}
.y126{bottom:1033.530000px;}
.y66{bottom:1039.110000px;}
.y154{bottom:1041.630000px;}
.y30{bottom:1043.430000px;}
.ydb{bottom:1050.450000px;}
.y4c{bottom:1057.110000px;}
.y124{bottom:1070.430000px;}
.y14{bottom:1073.490000px;}
.y125{bottom:1073.850000px;}
.ycb{bottom:1075.470000px;}
.y1a4{bottom:1078.920000px;}
.y2f{bottom:1079.610000px;}
.y4b{bottom:1093.470000px;}
.y120{bottom:1104.270000px;}
.y13{bottom:1121.730000px;}
.y2e{bottom:1128.930000px;}
.y4a{bottom:1129.650000px;}
.y153{bottom:1130.370000px;}
.h13{height:18.900000px;}
.h34{height:28.980000px;}
.h32{height:33.120000px;}
.hf{height:34.380000px;}
.h12{height:34.416000px;}
.h11{height:34.560000px;}
.h29{height:35.280000px;}
.h30{height:35.640000px;}
.h18{height:36.900000px;}
.h16{height:37.080000px;}
.h2f{height:37.260000px;}
.h19{height:39.060000px;}
.h1e{height:40.140000px;}
.h5{height:42.076944px;}
.h4{height:42.190512px;}
.h10{height:43.506914px;}
.h14{height:45.900000px;}
.ha{height:47.884219px;}
.he{height:48.251953px;}
.h27{height:52.560000px;}
.h2b{height:52.740000px;}
.hd{height:53.398828px;}
.h38{height:53.527500px;}
.h9{height:54.162422px;}
.h2d{height:55.656000px;}
.h17{height:56.615625px;}
.h26{height:60.876000px;}
.h25{height:63.019687px;}
.h20{height:65.556000px;}
.h7{height:65.884219px;}
.h2{height:67.325778px;}
.h3a{height:67.824844px;}
.h8{height:69.715898px;}
.h24{height:70.808555px;}
.h33{height:71.613281px;}
.h35{height:73.722656px;}
.h37{height:84.240000px;}
.h3{height:84.385482px;}
.h28{height:88.560000px;}
.h2c{height:93.287461px;}
.h15{height:97.740000px;}
.h36{height:98.051133px;}
.hb{height:98.907187px;}
.h1f{height:101.787188px;}
.h1d{height:103.402969px;}
.hc{height:105.300000px;}
.h31{height:127.980000px;}
.h1c{height:141.387188px;}
.h23{height:141.567188px;}
.h21{height:147.147187px;}
.h1a{height:151.642969px;}
.h39{height:155.340000px;}
.h22{height:189.807188px;}
.h1b{height:194.122969px;}
.h2e{height:199.800000px;}
.h2a{height:309.630000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h6{height:1263.060000px;}
.w13{width:4.500000px;}
.w26{width:40.500000px;}
.w27{width:40.680000px;}
.w19{width:41.940000px;}
.we{width:43.200000px;}
.w15{width:63.180000px;}
.w10{width:67.140000px;}
.w1c{width:67.500000px;}
.w21{width:81.036000px;}
.w1f{width:90.180000px;}
.w20{width:98.856000px;}
.w1e{width:111.456000px;}
.w7{width:120.996000px;}
.w6{width:135.000000px;}
.w9{width:148.716000px;}
.w24{width:156.780000px;}
.w5{width:160.050000px;}
.w22{width:168.840000px;}
.w25{width:178.740000px;}
.w1b{width:189.030000px;}
.w4{width:215.130000px;}
.w8{width:226.470000px;}
.w1d{width:249.870000px;}
.w14{width:281.586000px;}
.w12{width:355.710000px;}
.w16{width:389.055000px;}
.w17{width:499.785000px;}
.wc{width:615.600000px;}
.wf{width:627.405000px;}
.w11{width:641.445000px;}
.w1a{width:649.800000px;}
.w18{width:655.485000px;}
.w28{width:657.900000px;}
.wd{width:661.245000px;}
.wa{width:666.105000px;}
.w29{width:669.780000px;}
.w3{width:676.800000px;}
.w23{width:684.360000px;}
.wb{width:696.060000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x28{left:-2.340000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x37{left:11.340000px;}
.x2b{left:21.960000px;}
.x24{left:23.940000px;}
.x25{left:27.540000px;}
.x20{left:46.794000px;}
.x16{left:62.676000px;}
.x5{left:64.800000px;}
.x15{left:68.940000px;}
.xa{left:100.296000px;}
.x1{left:102.046500px;}
.x30{left:104.256000px;}
.x1f{left:105.696000px;}
.x14{left:114.516000px;}
.x48{left:120.240000px;}
.xc{left:122.400000px;}
.x8{left:127.296000px;}
.x7{left:133.956000px;}
.x17{left:135.000000px;}
.xe{left:137.376000px;}
.x49{left:140.760000px;}
.x4{left:142.056000px;}
.x3c{left:144.036000px;}
.x4a{left:154.290000px;}
.x4b{left:181.290000px;}
.x3a{left:190.695000px;}
.x31{left:200.739000px;}
.x21{left:212.799000px;}
.x40{left:234.210000px;}
.x38{left:237.819000px;}
.x1d{left:248.610000px;}
.x9{left:250.050000px;}
.x3b{left:252.750000px;}
.x1b{left:255.639000px;}
.x18{left:267.339000px;}
.x1c{left:268.419000px;}
.x32{left:273.279000px;}
.x22{left:275.619000px;}
.x1e{left:284.115000px;}
.x42{left:290.880000px;}
.x34{left:293.619000px;}
.x1a{left:295.635000px;}
.x6{left:315.795000px;}
.x39{left:317.019000px;}
.x3d{left:333.075000px;}
.x26{left:348.879000px;}
.x10{left:352.515000px;}
.x13{left:363.855000px;}
.x2c{left:382.215000px;}
.x2d{left:388.875000px;}
.x2e{left:393.195000px;}
.x33{left:396.609000px;}
.x2f{left:397.695000px;}
.x3e{left:400.575000px;}
.x3{left:452.775000px;}
.x35{left:454.569000px;}
.x27{left:456.195000px;}
.xd{left:457.815000px;}
.x29{left:460.515000px;}
.x41{left:481.605000px;}
.x43{left:496.980000px;}
.x47{left:507.420000px;}
.x11{left:512.565000px;}
.x46{left:578.700000px;}
.x44{left:605.160000px;}
.x12{left:647.565000px;}
.x3f{left:650.445000px;}
.x45{left:709.560000px;}
.x23{left:733.110000px;}
.x2a{left:742.110000px;}
.x36{left:759.750000px;}
.x19{left:761.550000px;}
.xb{left:788.730000px;}
.x2{left:797.190000px;}
@media print{
.v10{vertical-align:-32.000000pt;}
.ve{vertical-align:-20.480000pt;}
.vf{vertical-align:-17.920000pt;}
.v2{vertical-align:-16.000000pt;}
.v12{vertical-align:-12.800000pt;}
.v5{vertical-align:-11.520000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v6{vertical-align:11.520000pt;}
.vc{vertical-align:14.080000pt;}
.v3{vertical-align:16.000000pt;}
.v11{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:26.240000pt;}
.vd{vertical-align:32.000000pt;}
.v8{vertical-align:37.760000pt;}
.v7{vertical-align:42.880000pt;}
.v9{vertical-align:80.640000pt;}
.ls16{letter-spacing:-0.938667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.491733pt;}
.ls5e{letter-spacing:-0.445333pt;}
.ls17{letter-spacing:-0.342933pt;}
.ls37{letter-spacing:-0.314667pt;}
.ls6{letter-spacing:-0.297067pt;}
.ls55{letter-spacing:-0.272533pt;}
.ls11{letter-spacing:-0.194667pt;}
.ls56{letter-spacing:-0.147200pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls58{letter-spacing:-0.089067pt;}
.ls38{letter-spacing:-0.068267pt;}
.ls1f{letter-spacing:-0.047467pt;}
.ls24{letter-spacing:-0.045867pt;}
.ls57{letter-spacing:-0.015467pt;}
.ls34{letter-spacing:-0.010133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.011733pt;}
.ls36{letter-spacing:0.020267pt;}
.ls2{letter-spacing:0.045867pt;}
.ls4a{letter-spacing:0.046080pt;}
.ls35{letter-spacing:0.048533pt;}
.ls41{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.071467pt;}
.ls48{letter-spacing:0.097280pt;}
.ls42{letter-spacing:0.102400pt;}
.ls27{letter-spacing:0.117867pt;}
.ls47{letter-spacing:0.122880pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.133120pt;}
.ls22{letter-spacing:0.139733pt;}
.ls1d{letter-spacing:0.148267pt;}
.ls31{letter-spacing:0.189440pt;}
.ls9{letter-spacing:0.194667pt;}
.ls7{letter-spacing:0.227733pt;}
.ls4e{letter-spacing:0.231040pt;}
.ls5c{letter-spacing:0.255147pt;}
.ls54{letter-spacing:0.259200pt;}
.ls49{letter-spacing:0.270507pt;}
.ls2e{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.297067pt;}
.ls3b{letter-spacing:0.307200pt;}
.ls4f{letter-spacing:0.325120pt;}
.ls4c{letter-spacing:0.342933pt;}
.ls10{letter-spacing:0.343040pt;}
.ls53{letter-spacing:0.355200pt;}
.ls5a{letter-spacing:0.445333pt;}
.ls59{letter-spacing:0.592000pt;}
.ls4d{letter-spacing:0.624640pt;}
.ls50{letter-spacing:0.711680pt;}
.ls19{letter-spacing:0.773120pt;}
.ls33{letter-spacing:0.818347pt;}
.ls43{letter-spacing:0.972800pt;}
.ls14{letter-spacing:0.983040pt;}
.ls32{letter-spacing:1.134080pt;}
.ls4b{letter-spacing:1.392640pt;}
.ls51{letter-spacing:1.504000pt;}
.ls5f{letter-spacing:1.623040pt;}
.ls30{letter-spacing:1.664000pt;}
.ls40{letter-spacing:2.254720pt;}
.ls1a{letter-spacing:2.263040pt;}
.lse{letter-spacing:2.693120pt;}
.ls29{letter-spacing:2.739200pt;}
.lsc{letter-spacing:2.903040pt;}
.ls3d{letter-spacing:3.131520pt;}
.ls2d{letter-spacing:3.318400pt;}
.ls39{letter-spacing:3.379200pt;}
.ls52{letter-spacing:3.654400pt;}
.ls46{letter-spacing:3.767680pt;}
.ls2a{letter-spacing:3.958400pt;}
.ls13{letter-spacing:4.823040pt;}
.ls60{letter-spacing:5.391360pt;}
.ls2c{letter-spacing:8.294400pt;}
.ls18{letter-spacing:8.663040pt;}
.ls2b{letter-spacing:8.934400pt;}
.ls3a{letter-spacing:9.041067pt;}
.ls26{letter-spacing:9.574400pt;}
.ls45{letter-spacing:9.973760pt;}
.lsf{letter-spacing:10.373120pt;}
.lsb{letter-spacing:11.223040pt;}
.ls3e{letter-spacing:11.827200pt;}
.ls5b{letter-spacing:11.863040pt;}
.ls3f{letter-spacing:14.414720pt;}
.ls2f{letter-spacing:14.423040pt;}
.ls25{letter-spacing:14.888960pt;}
.ls3c{letter-spacing:15.478400pt;}
.ls23{letter-spacing:18.254720pt;}
.lsa{letter-spacing:18.903040pt;}
.ls15{letter-spacing:19.063040pt;}
.ls44{letter-spacing:21.288960pt;}
.ls1e{letter-spacing:30.529707pt;}
.ls3{letter-spacing:31.703040pt;}
.ls5d{letter-spacing:33.623040pt;}
.ws10{word-spacing:-16.368640pt;}
.ws32{word-spacing:-16.102293pt;}
.wsf{word-spacing:-15.954027pt;}
.wsb{word-spacing:-15.851627pt;}
.ws16{word-spacing:-15.805227pt;}
.ws8{word-spacing:-15.702827pt;}
.wsa{word-spacing:-15.656960pt;}
.ws1c{word-spacing:-15.611093pt;}
.wse{word-spacing:-15.462293pt;}
.ws7{word-spacing:-15.359893pt;}
.ws12{word-spacing:-15.314027pt;}
.ws33{word-spacing:-15.211627pt;}
.ws15{word-spacing:-15.165227pt;}
.wsd{word-spacing:-15.064960pt;}
.ws14{word-spacing:-15.016960pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.718293pt;}
.ws31{word-spacing:-14.678293pt;}
.ws18{word-spacing:-14.672427pt;}
.ws2d{word-spacing:-14.494827pt;}
.ws9{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.344000pt;}
.ws13{word-spacing:-13.306880pt;}
.ws23{word-spacing:-13.002133pt;}
.ws25{word-spacing:-12.973867pt;}
.ws21{word-spacing:-12.953600pt;}
.ws27{word-spacing:-12.687467pt;}
.ws1e{word-spacing:-12.508267pt;}
.ws1f{word-spacing:-12.461867pt;}
.wsc{word-spacing:-12.390400pt;}
.ws1d{word-spacing:-12.380267pt;}
.ws2f{word-spacing:-11.686400pt;}
.ws2a{word-spacing:-10.319360pt;}
.ws1a{word-spacing:-9.747413pt;}
.ws19{word-spacing:-9.619413pt;}
.ws17{word-spacing:-9.607680pt;}
.ws26{word-spacing:-8.870400pt;}
.ws29{word-spacing:-8.802133pt;}
.ws28{word-spacing:-8.555733pt;}
.ws30{word-spacing:-8.166400pt;}
.ws2e{word-spacing:-8.019200pt;}
.ws3{word-spacing:-0.050475pt;}
.ws5{word-spacing:0.000000pt;}
.ws20{word-spacing:10.120320pt;}
.ws4{word-spacing:13.980464pt;}
.ws2{word-spacing:13.981533pt;}
.ws22{word-spacing:19.223040pt;}
.ws0{word-spacing:22.370936pt;}
.ws1{word-spacing:27.964645pt;}
.ws24{word-spacing:37.698560pt;}
.ws2c{word-spacing:64.940708pt;}
.ws2b{word-spacing:68.556800pt;}
._2b{margin-left:-2710.157328pt;}
._2d{margin-left:-2708.399040pt;}
._2c{margin-left:-2707.376649pt;}
._a6{margin-left:-2706.452836pt;}
._8f{margin-left:-2704.751842pt;}
._32{margin-left:-2695.130230pt;}
._2a{margin-left:-2693.933815pt;}
._a3{margin-left:-2692.023522pt;}
._13{margin-left:-2680.078614pt;}
._11{margin-left:-2679.188882pt;}
._12{margin-left:-2678.164165pt;}
._14{margin-left:-2664.886185pt;}
._b{margin-left:-2649.236350pt;}
._8a{margin-left:-2639.651380pt;}
._6e{margin-left:-2601.629922pt;}
._53{margin-left:-2589.420610pt;}
._8{margin-left:-2550.131238pt;}
._31{margin-left:-2537.340733pt;}
._7{margin-left:-2527.161619pt;}
._37{margin-left:-2512.593680pt;}
._23{margin-left:-2494.840893pt;}
._61{margin-left:-2479.063095pt;}
._7b{margin-left:-2458.588764pt;}
._5f{margin-left:-2388.500535pt;}
._84{margin-left:-2379.572231pt;}
._2e{margin-left:-2334.458722pt;}
._79{margin-left:-2327.888087pt;}
._4a{margin-left:-2317.130774pt;}
._63{margin-left:-2307.208522pt;}
._8d{margin-left:-2290.353796pt;}
._67{margin-left:-2284.352727pt;}
._97{margin-left:-2271.962327pt;}
._41{margin-left:-2232.440732pt;}
._a7{margin-left:-2228.089047pt;}
._81{margin-left:-2221.724887pt;}
._a1{margin-left:-2212.127660pt;}
._94{margin-left:-2209.165527pt;}
._9a{margin-left:-2204.760503pt;}
._46{margin-left:-2164.948488pt;}
._7a{margin-left:-2158.969809pt;}
._9{margin-left:-2115.549368pt;}
._75{margin-left:-2098.150396pt;}
._7f{margin-left:-2065.236567pt;}
._68{margin-left:-2056.975569pt;}
._4b{margin-left:-2055.101773pt;}
._92{margin-left:-1994.291409pt;}
._6c{margin-left:-1962.977489pt;}
._47{margin-left:-1955.654700pt;}
._9d{margin-left:-1944.350076pt;}
._4d{margin-left:-1924.115500pt;}
._6f{margin-left:-1892.226252pt;}
._69{margin-left:-1885.918412pt;}
._9f{margin-left:-1884.763516pt;}
._77{margin-left:-1878.384639pt;}
._a0{margin-left:-1872.623356pt;}
._9b{margin-left:-1867.051212pt;}
._93{margin-left:-1841.932492pt;}
._55{margin-left:-1806.280743pt;}
._6d{margin-left:-1788.822732pt;}
._56{margin-left:-1748.903980pt;}
._7e{margin-left:-1707.669665pt;}
._49{margin-left:-1662.626983pt;}
._95{margin-left:-1658.668401pt;}
._89{margin-left:-1652.924614pt;}
._72{margin-left:-1644.674681pt;}
._a5{margin-left:-1639.561414pt;}
._8c{margin-left:-1636.520134pt;}
._9e{margin-left:-1629.226148pt;}
._8e{margin-left:-1627.195974pt;}
._7c{margin-left:-1623.571014pt;}
._74{margin-left:-1605.318854pt;}
._96{margin-left:-1592.703174pt;}
._a2{margin-left:-1587.452097pt;}
._3d{margin-left:-1572.595745pt;}
._57{margin-left:-1569.498145pt;}
._80{margin-left:-1565.599937pt;}
._3c{margin-left:-1547.221697pt;}
._43{margin-left:-1516.275745pt;}
._6b{margin-left:-1498.761414pt;}
._26{margin-left:-1414.106145pt;}
._3a{margin-left:-1370.384476pt;}
._52{margin-left:-1366.126625pt;}
._5a{margin-left:-1310.638108pt;}
._76{margin-left:-1299.773590pt;}
._48{margin-left:-1296.334870pt;}
._99{margin-left:-1284.070763pt;}
._78{margin-left:-1266.302139pt;}
._70{margin-left:-1200.520379pt;}
._71{margin-left:-1184.863419pt;}
._87{margin-left:-1166.338193pt;}
._7d{margin-left:-1150.224699pt;}
._88{margin-left:-1144.200379pt;}
._90{margin-left:-1091.059259pt;}
._a8{margin-left:-1081.459899pt;}
._98{margin-left:-1035.771062pt;}
._42{margin-left:-1025.028113pt;}
._39{margin-left:-1024.012310pt;}
._6a{margin-left:-998.092982pt;}
._83{margin-left:-991.897782pt;}
._18{margin-left:-922.899473pt;}
._36{margin-left:-914.819899pt;}
._15{margin-left:-897.893393pt;}
._54{margin-left:-879.258635pt;}
._40{margin-left:-841.693195pt;}
._33{margin-left:-809.649035pt;}
._a4{margin-left:-804.105995pt;}
._65{margin-left:-783.963153pt;}
._5d{margin-left:-782.034955pt;}
._91{margin-left:-755.242331pt;}
._85{margin-left:-722.758798pt;}
._64{margin-left:-721.828358pt;}
._62{margin-left:-667.463680pt;}
._9c{margin-left:-661.346438pt;}
._30{margin-left:-659.617798pt;}
._29{margin-left:-648.711243pt;}
._1b{margin-left:-630.190598pt;}
._5e{margin-left:-628.249600pt;}
._60{margin-left:-610.383664pt;}
._86{margin-left:-598.672731pt;}
._5c{margin-left:-594.955275pt;}
._4c{margin-left:-573.412358pt;}
._82{margin-left:-568.426027pt;}
._35{margin-left:-548.349958pt;}
._58{margin-left:-530.611200pt;}
._66{margin-left:-519.045638pt;}
._51{margin-left:-482.966491pt;}
._5b{margin-left:-426.304518pt;}
._59{margin-left:-382.487558pt;}
._a{margin-left:-381.393920pt;}
._3b{margin-left:-353.064960pt;}
._3e{margin-left:-202.024960pt;}
._a9{margin-left:-199.674880pt;}
._19{margin-left:-171.944960pt;}
._50{margin-left:-12.056656pt;}
._4f{margin-left:-9.036301pt;}
._4e{margin-left:-7.910400pt;}
._5{margin-left:-6.049545pt;}
._e{margin-left:-4.317013pt;}
._f{margin-left:-3.357817pt;}
._0{margin-left:-2.420296pt;}
._2{margin-left:-1.113082pt;}
._3{width:1.410701pt;}
._27{width:2.312728pt;}
._1{width:3.229376pt;}
._10{width:4.261297pt;}
._6{width:5.313600pt;}
._1c{width:6.664142pt;}
._c{width:8.434682pt;}
._d{width:9.368391pt;}
._20{width:10.877136pt;}
._24{width:12.412678pt;}
._25{width:13.750096pt;}
._34{width:14.645234pt;}
._44{width:15.574137pt;}
._4{width:17.363689pt;}
._1d{width:18.263040pt;}
._28{width:19.164113pt;}
._21{width:20.069547pt;}
._22{width:21.271520pt;}
._1e{width:22.385829pt;}
._1f{width:23.448502pt;}
._38{width:24.893327pt;}
._8b{width:26.116799pt;}
._45{width:27.702195pt;}
._16{width:30.910949pt;}
._17{width:32.152336pt;}
._73{width:44.661873pt;}
._3f{width:59.658240pt;}
._1a{width:66.094080pt;}
._2f{width:68.229120pt;}
.fs7{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsd{font-size:40.320000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:50.474667pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.136000pt;}
.fsf{font-size:53.248000pt;}
.fsa{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fse{font-size:72.320000pt;}
.fs0{font-size:80.762667pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:2.720000pt;}
.ydc{bottom:4.320000pt;}
.y1ae{bottom:7.293333pt;}
.y1ab{bottom:7.333333pt;}
.y1a7{bottom:7.493333pt;}
.y197{bottom:9.186667pt;}
.y118{bottom:12.160000pt;}
.yf6{bottom:12.706667pt;}
.y1a5{bottom:14.213333pt;}
.y12c{bottom:17.760000pt;}
.ycd{bottom:18.080000pt;}
.yd0{bottom:18.240000pt;}
.y156{bottom:18.880000pt;}
.y160{bottom:19.040000pt;}
.y168{bottom:19.200000pt;}
.y164{bottom:19.360000pt;}
.y10d{bottom:19.520000pt;}
.yc9{bottom:19.586667pt;}
.yff{bottom:19.680000pt;}
.y100{bottom:19.840000pt;}
.y152{bottom:20.186667pt;}
.y169{bottom:20.640000pt;}
.y133{bottom:20.826667pt;}
.y121{bottom:21.120000pt;}
.y11a{bottom:21.600000pt;}
.y123{bottom:22.560000pt;}
.y122{bottom:24.160000pt;}
.y12b{bottom:26.240000pt;}
.yde{bottom:28.186667pt;}
.y132{bottom:30.266667pt;}
.y1b1{bottom:31.613333pt;}
.y1bc{bottom:33.306667pt;}
.y155{bottom:34.240000pt;}
.y15f{bottom:34.400000pt;}
.y12a{bottom:35.720000pt;}
.y163{bottom:36.320000pt;}
.y162{bottom:36.960000pt;}
.y196{bottom:39.746667pt;}
.y134{bottom:40.986667pt;}
.yf5{bottom:43.426667pt;}
.y12d{bottom:45.320000pt;}
.y15a{bottom:48.640000pt;}
.yc8{bottom:50.306667pt;}
.y12{bottom:51.840000pt;}
.y1b0{bottom:62.333333pt;}
.y1bb{bottom:64.026667pt;}
.y158{bottom:66.240000pt;}
.y11{bottom:69.760000pt;}
.y195{bottom:70.466667pt;}
.yf4{bottom:74.146667pt;}
.yc7{bottom:80.866667pt;}
.y1a3{bottom:87.360000pt;}
.y1b7{bottom:88.000000pt;}
.y1fc{bottom:88.960000pt;}
.y1cb{bottom:90.240000pt;}
.y179{bottom:90.560000pt;}
.y150{bottom:91.200000pt;}
.yda{bottom:93.600000pt;}
.y1ba{bottom:94.746667pt;}
.yc5{bottom:96.800000pt;}
.y141{bottom:98.880000pt;}
.y10{bottom:99.089333pt;}
.y185{bottom:101.120000pt;}
.y194{bottom:101.186667pt;}
.ya8{bottom:102.720000pt;}
.yf2{bottom:103.840000pt;}
.y49{bottom:105.760000pt;}
.y87{bottom:106.720000pt;}
.y106{bottom:106.880000pt;}
.y2d{bottom:108.800000pt;}
.yf{bottom:115.030667pt;}
.y98{bottom:115.040000pt;}
.yb2{bottom:115.200000pt;}
.y65{bottom:118.720000pt;}
.y192{bottom:120.032000pt;}
.y1b6{bottom:120.192000pt;}
.y1fb{bottom:121.152000pt;}
.y1ca{bottom:122.432000pt;}
.y178{bottom:122.752000pt;}
.y1b9{bottom:125.346667pt;}
.y11f{bottom:128.192000pt;}
.yc4{bottom:128.992000pt;}
.ye{bottom:130.970667pt;}
.y140{bottom:131.072000pt;}
.y184{bottom:133.312000pt;}
.y201{bottom:134.746667pt;}
.ya7{bottom:134.906667pt;}
.y1a2{bottom:135.706667pt;}
.yf1{bottom:136.026667pt;}
.y48{bottom:138.106667pt;}
.y86{bottom:138.906667pt;}
.y105{bottom:139.066667pt;}
.y14f{bottom:139.386667pt;}
.y2c{bottom:141.146667pt;}
.yd9{bottom:141.946667pt;}
.y97{bottom:147.226667pt;}
.y1e4{bottom:149.306667pt;}
.y166{bottom:149.760000pt;}
.y64{bottom:150.906667pt;}
.y1b5{bottom:152.506667pt;}
.y1fa{bottom:153.306667pt;}
.y1c9{bottom:154.586667pt;}
.ydd{bottom:155.040000pt;}
.y177{bottom:155.066667pt;}
.y11e{bottom:161.626667pt;}
.yb1{bottom:163.386667pt;}
.y165{bottom:165.120000pt;}
.y183{bottom:165.466667pt;}
.y210{bottom:166.106667pt;}
.y200{bottom:166.906667pt;}
.ya6{bottom:167.066667pt;}
.y1a1{bottom:167.866667pt;}
.yf0{bottom:168.186667pt;}
.y151{bottom:169.440000pt;}
.y85{bottom:171.066667pt;}
.y104{bottom:171.386667pt;}
.yc3{bottom:171.866667pt;}
.y2b{bottom:173.306667pt;}
.y96{bottom:179.386667pt;}
.y63{bottom:183.066667pt;}
.y1b4{bottom:184.666667pt;}
.y1f9{bottom:185.466667pt;}
.y47{bottom:186.266667pt;}
.y1c8{bottom:186.906667pt;}
.y176{bottom:187.226667pt;}
.y14e{bottom:187.706667pt;}
.yd{bottom:194.730667pt;}
.y13f{bottom:195.546667pt;}
.y11d{bottom:196.826667pt;}
.y1e3{bottom:197.466667pt;}
.y182{bottom:197.786667pt;}
.y20f{bottom:198.266667pt;}
.y1ff{bottom:199.066667pt;}
.ya5{bottom:199.226667pt;}
.y1a0{bottom:200.026667pt;}
.yef{bottom:200.506667pt;}
.y84{bottom:203.226667pt;}
.y103{bottom:203.546667pt;}
.y2a{bottom:205.466667pt;}
.yc{bottom:210.672000pt;}
.y95{bottom:211.706667pt;}
.y62{bottom:215.226667pt;}
.y191{bottom:216.506667pt;}
.y1f8{bottom:217.786667pt;}
.y46{bottom:218.426667pt;}
.y1c7{bottom:219.066667pt;}
.y175{bottom:219.386667pt;}
.yc2{bottom:220.026667pt;}
.yb{bottom:226.612000pt;}
.y13e{bottom:227.706667pt;}
.y11c{bottom:229.626667pt;}
.y1e2{bottom:229.786667pt;}
.y181{bottom:229.946667pt;}
.y20e{bottom:230.426667pt;}
.y1fe{bottom:231.226667pt;}
.ya4{bottom:231.386667pt;}
.y19f{bottom:232.186667pt;}
.yee{bottom:232.666667pt;}
.y1b3{bottom:232.826667pt;}
.y83{bottom:235.386667pt;}
.y1b8{bottom:235.680000pt;}
.y102{bottom:235.706667pt;}
.y14d{bottom:235.866667pt;}
.y29{bottom:237.626667pt;}
.y94{bottom:243.866667pt;}
.y15d{bottom:245.160000pt;}
.y61{bottom:247.386667pt;}
.y1f7{bottom:249.946667pt;}
.y45{bottom:250.586667pt;}
.y1c6{bottom:251.226667pt;}
.y174{bottom:251.546667pt;}
.yc1{bottom:252.186667pt;}
.y13d{bottom:259.866667pt;}
.y1e1{bottom:261.946667pt;}
.y180{bottom:262.106667pt;}
.y20d{bottom:262.586667pt;}
.y15c{bottom:262.760000pt;}
.y1fd{bottom:263.386667pt;}
.ya3{bottom:263.706667pt;}
.y11b{bottom:264.186667pt;}
.y19e{bottom:264.506667pt;}
.y190{bottom:264.666667pt;}
.yed{bottom:264.826667pt;}
.y82{bottom:267.706667pt;}
.y28{bottom:269.786667pt;}
.ya{bottom:274.432000pt;}
.y93{bottom:276.026667pt;}
.y60{bottom:279.706667pt;}
.y1b2{bottom:280.986667pt;}
.y1f6{bottom:282.106667pt;}
.y44{bottom:282.906667pt;}
.y1c5{bottom:283.386667pt;}
.y21c{bottom:283.546667pt;}
.y173{bottom:283.866667pt;}
.y14c{bottom:284.026667pt;}
.y101{bottom:284.346667pt;}
.yc0{bottom:284.506667pt;}
.y9{bottom:290.372000pt;}
.y13c{bottom:292.186667pt;}
.y117{bottom:293.466667pt;}
.y1e0{bottom:294.106667pt;}
.y17f{bottom:294.266667pt;}
.y20c{bottom:294.906667pt;}
.y1cf{bottom:295.706667pt;}
.ya2{bottom:295.866667pt;}
.y19d{bottom:296.666667pt;}
.yec{bottom:296.986667pt;}
.yfe{bottom:297.626667pt;}
.y81{bottom:299.866667pt;}
.y92{bottom:308.186667pt;}
.y5f{bottom:311.866667pt;}
.y18f{bottom:312.826667pt;}
.y1f5{bottom:314.266667pt;}
.y43{bottom:315.066667pt;}
.y1c4{bottom:315.706667pt;}
.y172{bottom:316.026667pt;}
.ybf{bottom:316.666667pt;}
.y27{bottom:318.106667pt;}
.y8{bottom:322.253333pt;}
.y1df{bottom:326.266667pt;}
.y17e{bottom:326.586667pt;}
.y20b{bottom:327.066667pt;}
.y21b{bottom:327.226667pt;}
.y1ce{bottom:327.866667pt;}
.ya1{bottom:328.026667pt;}
.y19c{bottom:328.826667pt;}
.yeb{bottom:329.306667pt;}
.y80{bottom:332.026667pt;}
.y14b{bottom:332.186667pt;}
.y13b{bottom:335.066667pt;}
.y7{bottom:338.193333pt;}
.y91{bottom:340.506667pt;}
.y5e{bottom:344.026667pt;}
.y1f4{bottom:346.626667pt;}
.y42{bottom:347.266667pt;}
.y1c3{bottom:347.906667pt;}
.y171{bottom:348.226667pt;}
.ybe{bottom:348.866667pt;}
.y26{bottom:350.306667pt;}
.y1de{bottom:358.626667pt;}
.y20a{bottom:359.266667pt;}
.y21a{bottom:359.426667pt;}
.y1cd{bottom:360.066667pt;}
.ya0{bottom:360.226667pt;}
.y18e{bottom:361.026667pt;}
.y116{bottom:363.266667pt;}
.yfd{bottom:365.666667pt;}
.y90{bottom:372.706667pt;}
.y17d{bottom:375.586667pt;}
.y5d{bottom:376.226667pt;}
.yea{bottom:377.506667pt;}
.y6{bottom:378.044000pt;}
.y1f3{bottom:378.786667pt;}
.y41{bottom:379.426667pt;}
.y1c2{bottom:380.066667pt;}
.y7f{bottom:380.226667pt;}
.y170{bottom:380.386667pt;}
.y14a{bottom:380.546667pt;}
.ybd{bottom:381.026667pt;}
.y193{bottom:381.440000pt;}
.y25{bottom:382.466667pt;}
.y13a{bottom:383.266667pt;}
.yf3{bottom:386.880000pt;}
.y1dd{bottom:390.786667pt;}
.y209{bottom:391.426667pt;}
.y219{bottom:391.586667pt;}
.y1cc{bottom:392.226667pt;}
.y9f{bottom:392.546667pt;}
.y19b{bottom:393.346667pt;}
.y5{bottom:393.984000pt;}
.y115{bottom:395.426667pt;}
.yfc{bottom:397.826667pt;}
.y8f{bottom:404.866667pt;}
.y5c{bottom:408.546667pt;}
.y18d{bottom:409.346667pt;}
.y1f2{bottom:410.946667pt;}
.y40{bottom:411.586667pt;}
.y1c1{bottom:412.226667pt;}
.y7e{bottom:412.546667pt;}
.ybc{bottom:413.346667pt;}
.y24{bottom:414.626667pt;}
.y139{bottom:415.426667pt;}
.y1dc{bottom:422.946667pt;}
.y208{bottom:423.586667pt;}
.y218{bottom:423.906667pt;}
.y17c{bottom:424.546667pt;}
.y9e{bottom:424.706667pt;}
.y19a{bottom:425.506667pt;}
.ye9{bottom:425.666667pt;}
.y114{bottom:427.586667pt;}
.y149{bottom:428.706667pt;}
.yfb{bottom:429.986667pt;}
.y4{bottom:433.834667pt;}
.y8e{bottom:437.026667pt;}
.y5b{bottom:440.706667pt;}
.y1f1{bottom:443.106667pt;}
.yc6{bottom:443.200000pt;}
.y3f{bottom:443.906667pt;}
.y1c0{bottom:444.546667pt;}
.y7d{bottom:444.706667pt;}
.y16f{bottom:444.866667pt;}
.y23{bottom:446.946667pt;}
.y138{bottom:447.586667pt;}
.y1db{bottom:455.106667pt;}
.y207{bottom:455.906667pt;}
.y217{bottom:456.066667pt;}
.y17b{bottom:456.706667pt;}
.y9d{bottom:456.866667pt;}
.y18c{bottom:457.506667pt;}
.y199{bottom:457.666667pt;}
.y113{bottom:459.906667pt;}
.ybb{bottom:461.506667pt;}
.yfa{bottom:462.146667pt;}
.yca{bottom:462.786667pt;}
.yb0{bottom:469.346667pt;}
.y5a{bottom:472.866667pt;}
.ye8{bottom:473.826667pt;}
.y1f0{bottom:475.426667pt;}
.y3e{bottom:476.066667pt;}
.y1bf{bottom:476.706667pt;}
.y7c{bottom:476.866667pt;}
.y16e{bottom:477.026667pt;}
.y22{bottom:479.106667pt;}
.y137{bottom:479.746667pt;}
.y8d{bottom:485.346667pt;}
.y1da{bottom:487.266667pt;}
.y206{bottom:488.066667pt;}
.y216{bottom:488.226667pt;}
.y17a{bottom:488.866667pt;}
.y9c{bottom:489.026667pt;}
.y198{bottom:489.826667pt;}
.y112{bottom:492.066667pt;}
.yf9{bottom:494.466667pt;}
.yaf{bottom:501.506667pt;}
.y73{bottom:505.026667pt;}
.y18b{bottom:505.666667pt;}
.y1ef{bottom:507.586667pt;}
.y3d{bottom:508.226667pt;}
.y1be{bottom:508.866667pt;}
.y7b{bottom:509.026667pt;}
.y16d{bottom:509.186667pt;}
.yba{bottom:509.666667pt;}
.y21{bottom:511.266667pt;}
.y136{bottom:512.066667pt;}
.y8c{bottom:517.506667pt;}
.y1d9{bottom:519.586667pt;}
.y205{bottom:520.226667pt;}
.y215{bottom:520.386667pt;}
.y59{bottom:521.026667pt;}
.y9b{bottom:521.346667pt;}
.ye7{bottom:522.146667pt;}
.y111{bottom:524.226667pt;}
.y148{bottom:525.026667pt;}
.yf8{bottom:526.626667pt;}
.yae{bottom:533.666667pt;}
.y72{bottom:537.346667pt;}
.y1ee{bottom:539.746667pt;}
.y3c{bottom:540.386667pt;}
.y7a{bottom:541.346667pt;}
.y20{bottom:543.426667pt;}
.y1af{bottom:544.160000pt;}
.y135{bottom:546.306667pt;}
.y8b{bottom:549.666667pt;}
.y1d8{bottom:551.746667pt;}
.y204{bottom:552.386667pt;}
.y1bd{bottom:552.546667pt;}
.y214{bottom:552.706667pt;}
.y58{bottom:553.346667pt;}
.y9a{bottom:553.506667pt;}
.y18a{bottom:553.826667pt;}
.y147{bottom:557.346667pt;}
.yb9{bottom:557.826667pt;}
.yf7{bottom:558.786667pt;}
.y131{bottom:559.586667pt;}
.yad{bottom:565.826667pt;}
.y71{bottom:569.533333pt;}
.ye6{bottom:570.333333pt;}
.y15b{bottom:571.293333pt;}
.y1ed{bottom:571.933333pt;}
.y3b{bottom:572.733333pt;}
.y110{bottom:572.893333pt;}
.y79{bottom:573.533333pt;}
.y1f{bottom:575.773333pt;}
.y8a{bottom:581.853333pt;}
.y1d7{bottom:583.933333pt;}
.y203{bottom:584.733333pt;}
.y213{bottom:584.893333pt;}
.y57{bottom:585.533333pt;}
.y99{bottom:585.693333pt;}
.y146{bottom:589.533333pt;}
.yac{bottom:598.013333pt;}
.yd8{bottom:598.333333pt;}
.y70{bottom:601.693333pt;}
.y189{bottom:602.173333pt;}
.y1ec{bottom:604.093333pt;}
.y3a{bottom:604.893333pt;}
.y78{bottom:605.693333pt;}
.y10f{bottom:605.853333pt;}
.yb8{bottom:606.013333pt;}
.y1e{bottom:607.933333pt;}
.yd7{bottom:612.093333pt;}
.y89{bottom:614.013333pt;}
.y1d6{bottom:616.093333pt;}
.y202{bottom:616.893333pt;}
.y212{bottom:617.053333pt;}
.y56{bottom:617.693333pt;}
.ye5{bottom:618.493333pt;}
.y16c{bottom:618.813333pt;}
.y10e{bottom:619.133333pt;}
.y145{bottom:621.693333pt;}
.yab{bottom:630.333333pt;}
.y6f{bottom:633.853333pt;}
.y1eb{bottom:636.413333pt;}
.y39{bottom:637.053333pt;}
.y77{bottom:637.853333pt;}
.y1d{bottom:640.093333pt;}
.yd6{bottom:642.813333pt;}
.y1d5{bottom:648.413333pt;}
.y130{bottom:648.893333pt;}
.y88{bottom:649.053333pt;}
.y211{bottom:649.693333pt;}
.y55{bottom:649.853333pt;}
.y188{bottom:650.333333pt;}
.y16b{bottom:651.133333pt;}
.y10c{bottom:651.933333pt;}
.y144{bottom:653.853333pt;}
.yb7{bottom:654.333333pt;}
.yaa{bottom:662.493333pt;}
.y6e{bottom:666.173333pt;}
.ye4{bottom:666.653333pt;}
.y1ea{bottom:668.573333pt;}
.y38{bottom:669.213333pt;}
.y76{bottom:670.013333pt;}
.y1c{bottom:672.253333pt;}
.yd5{bottom:673.533333pt;}
.y1d4{bottom:680.573333pt;}
.y12f{bottom:681.533333pt;}
.y54{bottom:682.173333pt;}
.y16a{bottom:683.453333pt;}
.y143{bottom:686.013333pt;}
.ya9{bottom:697.533333pt;}
.y6d{bottom:698.333333pt;}
.y187{bottom:698.493333pt;}
.y1e9{bottom:700.733333pt;}
.y37{bottom:701.533333pt;}
.y75{bottom:702.333333pt;}
.yb6{bottom:702.493333pt;}
.y1b{bottom:704.413333pt;}
.yd4{bottom:704.733333pt;}
.y1d3{bottom:712.733333pt;}
.y53{bottom:714.333333pt;}
.ye3{bottom:714.813333pt;}
.y167{bottom:715.773333pt;}
.y10b{bottom:719.773333pt;}
.y1ad{bottom:727.520000pt;}
.y142{bottom:729.853333pt;}
.y6c{bottom:730.493333pt;}
.y1e8{bottom:732.893333pt;}
.y36{bottom:733.693333pt;}
.yd3{bottom:735.453333pt;}
.y1a{bottom:736.733333pt;}
.y1d2{bottom:744.893333pt;}
.y74{bottom:746.013333pt;}
.y52{bottom:746.493333pt;}
.y186{bottom:746.653333pt;}
.y12e{bottom:747.133333pt;}
.y161{bottom:749.533333pt;}
.yb5{bottom:750.653333pt;}
.y10a{bottom:752.093333pt;}
.y129{bottom:760.413333pt;}
.y6b{bottom:762.653333pt;}
.ye2{bottom:763.133333pt;}
.y1e7{bottom:765.213333pt;}
.yd2{bottom:766.173333pt;}
.y35{bottom:766.333333pt;}
.y3{bottom:767.848000pt;}
.y19{bottom:768.893333pt;}
.y1d1{bottom:777.213333pt;}
.y51{bottom:778.653333pt;}
.y109{bottom:784.253333pt;}
.y6a{bottom:794.853333pt;}
.yd1{bottom:796.773333pt;}
.y1e6{bottom:797.413333pt;}
.y34{bottom:798.693333pt;}
.yb4{bottom:798.853333pt;}
.y15e{bottom:799.653333pt;}
.y2{bottom:799.729333pt;}
.y50{bottom:810.853333pt;}
.ye1{bottom:811.333333pt;}
.y18{bottom:812.613333pt;}
.y108{bottom:816.453333pt;}
.y1aa{bottom:823.840000pt;}
.y1d0{bottom:826.213333pt;}
.y69{bottom:827.173333pt;}
.ycf{bottom:827.493333pt;}
.y1e5{bottom:829.573333pt;}
.y33{bottom:830.853333pt;}
.y4f{bottom:843.173333pt;}
.y157{bottom:846.533333pt;}
.yb3{bottom:847.173333pt;}
.y17{bottom:848.133333pt;}
.y107{bottom:848.613333pt;}
.y1a9{bottom:852.320000pt;}
.y128{bottom:853.893333pt;}
.y1{bottom:855.520000pt;}
.yce{bottom:858.213333pt;}
.y68{bottom:859.333333pt;}
.ye0{bottom:859.493333pt;}
.y1ac{bottom:860.320000pt;}
.y1a8{bottom:862.080000pt;}
.y32{bottom:863.173333pt;}
.y1a6{bottom:873.760000pt;}
.y4e{bottom:875.333333pt;}
.y159{bottom:878.533333pt;}
.y16{bottom:879.653333pt;}
.y127{bottom:886.053333pt;}
.ycc{bottom:889.573333pt;}
.y67{bottom:891.493333pt;}
.y31{bottom:895.333333pt;}
.y4d{bottom:907.493333pt;}
.ydf{bottom:907.653333pt;}
.y15{bottom:911.173333pt;}
.y126{bottom:918.693333pt;}
.y66{bottom:923.653333pt;}
.y154{bottom:925.893333pt;}
.y30{bottom:927.493333pt;}
.ydb{bottom:933.733333pt;}
.y4c{bottom:939.653333pt;}
.y124{bottom:951.493333pt;}
.y14{bottom:954.213333pt;}
.y125{bottom:954.533333pt;}
.ycb{bottom:955.973333pt;}
.y1a4{bottom:959.040000pt;}
.y2f{bottom:959.653333pt;}
.y4b{bottom:971.973333pt;}
.y120{bottom:981.573333pt;}
.y13{bottom:997.093333pt;}
.y2e{bottom:1003.493333pt;}
.y4a{bottom:1004.133333pt;}
.y153{bottom:1004.773333pt;}
.h13{height:16.800000pt;}
.h34{height:25.760000pt;}
.h32{height:29.440000pt;}
.hf{height:30.560000pt;}
.h12{height:30.592000pt;}
.h11{height:30.720000pt;}
.h29{height:31.360000pt;}
.h30{height:31.680000pt;}
.h18{height:32.800000pt;}
.h16{height:32.960000pt;}
.h2f{height:33.120000pt;}
.h19{height:34.720000pt;}
.h1e{height:35.680000pt;}
.h5{height:37.401728pt;}
.h4{height:37.502677pt;}
.h10{height:38.672812pt;}
.h14{height:40.800000pt;}
.ha{height:42.563750pt;}
.he{height:42.890625pt;}
.h27{height:46.720000pt;}
.h2b{height:46.880000pt;}
.hd{height:47.465625pt;}
.h38{height:47.580000pt;}
.h9{height:48.144375pt;}
.h2d{height:49.472000pt;}
.h17{height:50.325000pt;}
.h26{height:54.112000pt;}
.h25{height:56.017500pt;}
.h20{height:58.272000pt;}
.h7{height:58.563750pt;}
.h2{height:59.845136pt;}
.h3a{height:60.288750pt;}
.h8{height:61.969687pt;}
.h24{height:62.940937pt;}
.h33{height:63.656250pt;}
.h35{height:65.531250pt;}
.h37{height:74.880000pt;}
.h3{height:75.009317pt;}
.h28{height:78.720000pt;}
.h2c{height:82.922188pt;}
.h15{height:86.880000pt;}
.h36{height:87.156562pt;}
.hb{height:87.917500pt;}
.h1f{height:90.477500pt;}
.h1d{height:91.913750pt;}
.hc{height:93.600000pt;}
.h31{height:113.760000pt;}
.h1c{height:125.677500pt;}
.h23{height:125.837500pt;}
.h21{height:130.797500pt;}
.h1a{height:134.793750pt;}
.h39{height:138.080000pt;}
.h22{height:168.717500pt;}
.h1b{height:172.553750pt;}
.h2e{height:177.600000pt;}
.h2a{height:275.226667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h6{height:1122.720000pt;}
.w13{width:4.000000pt;}
.w26{width:36.000000pt;}
.w27{width:36.160000pt;}
.w19{width:37.280000pt;}
.we{width:38.400000pt;}
.w15{width:56.160000pt;}
.w10{width:59.680000pt;}
.w1c{width:60.000000pt;}
.w21{width:72.032000pt;}
.w1f{width:80.160000pt;}
.w20{width:87.872000pt;}
.w1e{width:99.072000pt;}
.w7{width:107.552000pt;}
.w6{width:120.000000pt;}
.w9{width:132.192000pt;}
.w24{width:139.360000pt;}
.w5{width:142.266667pt;}
.w22{width:150.080000pt;}
.w25{width:158.880000pt;}
.w1b{width:168.026667pt;}
.w4{width:191.226667pt;}
.w8{width:201.306667pt;}
.w1d{width:222.106667pt;}
.w14{width:250.298667pt;}
.w12{width:316.186667pt;}
.w16{width:345.826667pt;}
.w17{width:444.253333pt;}
.wc{width:547.200000pt;}
.wf{width:557.693333pt;}
.w11{width:570.173333pt;}
.w1a{width:577.600000pt;}
.w18{width:582.653333pt;}
.w28{width:584.800000pt;}
.wd{width:587.773333pt;}
.wa{width:592.093333pt;}
.w29{width:595.360000pt;}
.w3{width:601.600000pt;}
.w23{width:608.320000pt;}
.wb{width:618.720000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x28{left:-2.080000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x37{left:10.080000pt;}
.x2b{left:19.520000pt;}
.x24{left:21.280000pt;}
.x25{left:24.480000pt;}
.x20{left:41.594667pt;}
.x16{left:55.712000pt;}
.x5{left:57.600000pt;}
.x15{left:61.280000pt;}
.xa{left:89.152000pt;}
.x1{left:90.708000pt;}
.x30{left:92.672000pt;}
.x1f{left:93.952000pt;}
.x14{left:101.792000pt;}
.x48{left:106.880000pt;}
.xc{left:108.800000pt;}
.x8{left:113.152000pt;}
.x7{left:119.072000pt;}
.x17{left:120.000000pt;}
.xe{left:122.112000pt;}
.x49{left:125.120000pt;}
.x4{left:126.272000pt;}
.x3c{left:128.032000pt;}
.x4a{left:137.146667pt;}
.x4b{left:161.146667pt;}
.x3a{left:169.506667pt;}
.x31{left:178.434667pt;}
.x21{left:189.154667pt;}
.x40{left:208.186667pt;}
.x38{left:211.394667pt;}
.x1d{left:220.986667pt;}
.x9{left:222.266667pt;}
.x3b{left:224.666667pt;}
.x1b{left:227.234667pt;}
.x18{left:237.634667pt;}
.x1c{left:238.594667pt;}
.x32{left:242.914667pt;}
.x22{left:244.994667pt;}
.x1e{left:252.546667pt;}
.x42{left:258.560000pt;}
.x34{left:260.994667pt;}
.x1a{left:262.786667pt;}
.x6{left:280.706667pt;}
.x39{left:281.794667pt;}
.x3d{left:296.066667pt;}
.x26{left:310.114667pt;}
.x10{left:313.346667pt;}
.x13{left:323.426667pt;}
.x2c{left:339.746667pt;}
.x2d{left:345.666667pt;}
.x2e{left:349.506667pt;}
.x33{left:352.541333pt;}
.x2f{left:353.506667pt;}
.x3e{left:356.066667pt;}
.x3{left:402.466667pt;}
.x35{left:404.061333pt;}
.x27{left:405.506667pt;}
.xd{left:406.946667pt;}
.x29{left:409.346667pt;}
.x41{left:428.093333pt;}
.x43{left:441.760000pt;}
.x47{left:451.040000pt;}
.x11{left:455.613333pt;}
.x46{left:514.400000pt;}
.x44{left:537.920000pt;}
.x12{left:575.613333pt;}
.x3f{left:578.173333pt;}
.x45{left:630.720000pt;}
.x23{left:651.653333pt;}
.x2a{left:659.653333pt;}
.x36{left:675.333333pt;}
.x19{left:676.933333pt;}
.xb{left:701.093333pt;}
.x2{left:708.613333pt;}
}


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