
/* 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_74dda19b3354.woff")format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f0e419a70dcc.woff")format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_053d3c080980.woff")format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_fa06b955adcd.woff")format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_02f10beb0498.woff")format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1bc1647c653f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_243ace8c0608.woff")format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_0b693720bf91.woff")format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_5e2aa384e125.woff")format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.000000,-0.249350,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249350,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249350,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249409,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249409,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249409,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249524,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249524,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249524,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249526,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249526,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249526,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249970,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249970,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249970,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,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);}
.v6{vertical-align:-86.072400px;}
.v5{vertical-align:-66.960000px;}
.v2{vertical-align:-27.360000px;}
.vb{vertical-align:-22.337280px;}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-14.400000px;}
.v9{vertical-align:-12.220560px;}
.vc{vertical-align:-1.637400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.673800px;}
.va{vertical-align:12.240000px;}
.v7{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.vd{vertical-align:52.687800px;}
.ls42{letter-spacing:-2.160000px;}
.ls25{letter-spacing:-1.656000px;}
.ls14{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.135440px;}
.ls5c{letter-spacing:-1.121802px;}
.ls7{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.728640px;}
.ls1a{letter-spacing:-0.720000px;}
.ls56{letter-spacing:-0.657360px;}
.ls1e{letter-spacing:-0.576000px;}
.ls57{letter-spacing:-0.537840px;}
.ls12{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.478080px;}
.lsd{letter-spacing:-0.463680px;}
.ls1f{letter-spacing:-0.432000px;}
.ls59{letter-spacing:-0.418320px;}
.ls2e{letter-spacing:-0.358560px;}
.lsc{letter-spacing:-0.331200px;}
.ls4{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.264960px;}
.ls31{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.132480px;}
.ls18{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.059760px;}
.ls3a{letter-spacing:-0.051120px;}
.ls3{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000299px;}
.ls47{letter-spacing:0.011952px;}
.ls55{letter-spacing:0.015120px;}
.ls3b{letter-spacing:0.020160px;}
.ls4e{letter-spacing:0.020952px;}
.ls0{letter-spacing:0.057600px;}
.ls5b{letter-spacing:0.059760px;}
.ls13{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.079200px;}
.ls5d{letter-spacing:0.097548px;}
.ls53{letter-spacing:0.104400px;}
.ls30{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.179280px;}
.ls54{letter-spacing:0.191232px;}
.ls20{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.239040px;}
.ls50{letter-spacing:0.250992px;}
.lsa{letter-spacing:0.264960px;}
.ls4b{letter-spacing:0.268920px;}
.ls6{letter-spacing:0.288000px;}
.ls52{letter-spacing:0.292824px;}
.lse{letter-spacing:0.331200px;}
.ls48{letter-spacing:0.334080px;}
.ls2b{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.364536px;}
.ls3c{letter-spacing:0.383040px;}
.ls8{letter-spacing:0.385920px;}
.ls58{letter-spacing:0.400392px;}
.ls16{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.439200px;}
.ls17{letter-spacing:0.496800px;}
.ls1b{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.511200px;}
.ls4c{letter-spacing:0.543816px;}
.ls11{letter-spacing:0.576000px;}
.ls38{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.655200px;}
.ls10{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.792000px;}
.ls19{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.896400px;}
.ls26{letter-spacing:0.936000px;}
.ls5a{letter-spacing:1.061280px;}
.ls41{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.613520px;}
.ls2a{letter-spacing:2.414304px;}
.ls40{letter-spacing:2.448000px;}
.ls28{letter-spacing:2.880000px;}
.ls51{letter-spacing:3.600000px;}
.ls4f{letter-spacing:4.620960px;}
.ls34{letter-spacing:5.681520px;}
.ls44{letter-spacing:10.080000px;}
.ls43{letter-spacing:15.761520px;}
.ls23{letter-spacing:16.272000px;}
.ls45{letter-spacing:19.512000px;}
.ls39{letter-spacing:19.656000px;}
.ls24{letter-spacing:19.872000px;}
.ls22{letter-spacing:20.232000px;}
.ls21{letter-spacing:25.841520px;}
.ls4a{letter-spacing:91.752860px;}
.ls3f{letter-spacing:194.400000px;}
.ls46{letter-spacing:846.000000px;}
.ls36{letter-spacing:2376.011520px;}
.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;}
}
.ws2b{word-spacing:-72.000000px;}
.ws60{word-spacing:-59.760000px;}
.ws2c{word-spacing:-56.664000px;}
.ws5d{word-spacing:-55.944000px;}
.ws48{word-spacing:-28.058040px;}
.ws4a{word-spacing:-27.338040px;}
.ws61{word-spacing:-23.406912px;}
.ws54{word-spacing:-19.440000px;}
.ws23{word-spacing:-18.864000px;}
.ws15{word-spacing:-18.720000px;}
.ws65{word-spacing:-18.576000px;}
.ws27{word-spacing:-18.504000px;}
.ws20{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.288000px;}
.ws31{word-spacing:-18.216000px;}
.ws17{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws45{word-spacing:-17.929499px;}
.ws43{word-spacing:-17.929200px;}
.ws22{word-spacing:-17.928000px;}
.ws1d{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws29{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.496000px;}
.ws24{word-spacing:-17.280000px;}
.ws30{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.891200px;}
.ws25{word-spacing:-16.560000px;}
.ws6b{word-spacing:-16.466400px;}
.ws55{word-spacing:-16.437000px;}
.ws57{word-spacing:-16.435050px;}
.ws2f{word-spacing:-16.344000px;}
.ws52{word-spacing:-16.295040px;}
.ws5c{word-spacing:-15.840000px;}
.ws49{word-spacing:-15.552000px;}
.ws4f{word-spacing:-15.298560px;}
.ws50{word-spacing:-15.119280px;}
.ws4e{word-spacing:-15.059520px;}
.ws59{word-spacing:-14.940900px;}
.ws35{word-spacing:-14.940000px;}
.ws34{word-spacing:-14.880240px;}
.ws67{word-spacing:-14.700960px;}
.ws76{word-spacing:-14.581440px;}
.ws51{word-spacing:-13.804560px;}
.ws63{word-spacing:-13.159152px;}
.ws74{word-spacing:-13.121280px;}
.ws3{word-spacing:-12.445920px;}
.ws7a{word-spacing:-12.291048px;}
.ws77{word-spacing:-12.193500px;}
.ws4{word-spacing:-12.060000px;}
.ws79{word-spacing:-11.071698px;}
.ws4c{word-spacing:-10.628700px;}
.ws78{word-spacing:-9.861216px;}
.ws33{word-spacing:-9.720000px;}
.ws75{word-spacing:-8.786880px;}
.ws72{word-spacing:-0.864000px;}
.wse{word-spacing:-0.861120px;}
.ws53{word-spacing:-0.794880px;}
.ws12{word-spacing:-0.728640px;}
.ws21{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.717120px;}
.ws66{word-spacing:-0.662400px;}
.ws42{word-spacing:-0.432000px;}
.ws69{word-spacing:-0.358560px;}
.ws14{word-spacing:-0.331200px;}
.wsa{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.264960px;}
.ws2a{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.179280px;}
.ws9{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.132480px;}
.ws64{word-spacing:-0.119520px;}
.ws1f{word-spacing:-0.072000px;}
.ws68{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
.ws3c{word-spacing:0.059760px;}
.ws32{word-spacing:0.072000px;}
.ws36{word-spacing:0.132480px;}
.ws6{word-spacing:0.144000px;}
.wsc{word-spacing:0.216000px;}
.ws3e{word-spacing:0.239040px;}
.ws8{word-spacing:0.288000px;}
.ws10{word-spacing:0.331200px;}
.ws3b{word-spacing:0.358560px;}
.ws71{word-spacing:0.418320px;}
.ws28{word-spacing:0.432000px;}
.ws11{word-spacing:0.463680px;}
.ws1b{word-spacing:0.504000px;}
.ws3d{word-spacing:0.537840px;}
.ws1c{word-spacing:0.576000px;}
.ws5a{word-spacing:0.648000px;}
.ws70{word-spacing:0.657360px;}
.ws1a{word-spacing:0.720000px;}
.ws13{word-spacing:0.728640px;}
.ws6f{word-spacing:0.836640px;}
.wsb{word-spacing:0.936000px;}
.ws26{word-spacing:1.008000px;}
.ws41{word-spacing:1.224000px;}
.ws3a{word-spacing:1.254960px;}
.ws3f{word-spacing:1.374480px;}
.ws1e{word-spacing:1.440000px;}
.ws39{word-spacing:1.494000px;}
.ws47{word-spacing:1.656000px;}
.ws38{word-spacing:1.673280px;}
.ws37{word-spacing:1.972080px;}
.ws5b{word-spacing:2.160000px;}
.ws73{word-spacing:2.376000px;}
.ws2d{word-spacing:3.816000px;}
.ws62{word-spacing:4.123440px;}
.ws2e{word-spacing:4.536000px;}
.ws6d{word-spacing:49.304551px;}
.ws6c{word-spacing:49.305150px;}
.ws4d{word-spacing:70.601708px;}
.ws4b{word-spacing:70.602306px;}
.ws56{word-spacing:80.268676px;}
.ws44{word-spacing:176.925328px;}
.ws5e{word-spacing:176.925926px;}
.ws5f{word-spacing:254.523558px;}
.ws46{word-spacing:317.403058px;}
.ws6e{word-spacing:397.260622px;}
.ws58{word-spacing:573.568547px;}
._50{margin-left:-2931.624000px;}
._11b{margin-left:-2913.912000px;}
._ac{margin-left:-2912.616000px;}
._145{margin-left:-2911.464000px;}
._bb{margin-left:-2909.952000px;}
._a1{margin-left:-2908.656000px;}
._c6{margin-left:-2907.144000px;}
._81{margin-left:-2905.632000px;}
._3d{margin-left:-2904.336000px;}
._52{margin-left:-2902.752000px;}
._40{margin-left:-2900.808000px;}
._13{margin-left:-2898.532800px;}
._130{margin-left:-2896.848000px;}
._8f{margin-left:-2895.840000px;}
._f{margin-left:-2893.824000px;}
._ab{margin-left:-2891.808000px;}
._7f{margin-left:-2890.368000px;}
._24{margin-left:-2888.928000px;}
._10{margin-left:-2887.603200px;}
._7d{margin-left:-2885.472000px;}
._77{margin-left:-2884.104000px;}
._125{margin-left:-2882.592000px;}
._47{margin-left:-2881.008000px;}
._a3{margin-left:-2879.712000px;}
._2c{margin-left:-2878.632000px;}
._8e{margin-left:-2876.616000px;}
._2d{margin-left:-2874.744000px;}
._20{margin-left:-2872.584000px;}
._6b{margin-left:-2871.504000px;}
._9c{margin-left:-2870.280000px;}
._d8{margin-left:-2869.272000px;}
._78{margin-left:-2868.192000px;}
._11e{margin-left:-2866.968000px;}
._95{margin-left:-2865.384000px;}
._e8{margin-left:-2864.304000px;}
._2f{margin-left:-2863.224000px;}
._46{margin-left:-2861.784000px;}
._e4{margin-left:-2860.776000px;}
._8c{margin-left:-2859.624000px;}
._1f{margin-left:-2858.472000px;}
._41{margin-left:-2857.392000px;}
._2b{margin-left:-2855.592000px;}
._cf{margin-left:-2853.936000px;}
._6d{margin-left:-2852.416800px;}
._149{margin-left:-2850.984000px;}
._45{margin-left:-2849.904000px;}
._16b{margin-left:-2848.896000px;}
._1a{margin-left:-2847.888000px;}
._82{margin-left:-2846.808000px;}
._36{margin-left:-2845.440000px;}
._6c{margin-left:-2844.216000px;}
._4a{margin-left:-2842.128000px;}
._1c{margin-left:-2840.616000px;}
._3a{margin-left:-2839.104000px;}
._64{margin-left:-2838.024000px;}
._7e{margin-left:-2836.872000px;}
._c4{margin-left:-2834.856000px;}
._4b{margin-left:-2833.704000px;}
._a6{margin-left:-2832.552000px;}
._de{margin-left:-2831.112000px;}
._af{margin-left:-2830.032000px;}
._26{margin-left:-2828.736000px;}
._57{margin-left:-2827.296000px;}
._5c{margin-left:-2825.352000px;}
._2a{margin-left:-2824.344000px;}
._1b{margin-left:-2822.832000px;}
._98{margin-left:-2820.528000px;}
._148{margin-left:-2818.872000px;}
._b9{margin-left:-2817.568800px;}
._31{margin-left:-2816.424000px;}
._a0{margin-left:-2814.336000px;}
._56{margin-left:-2813.256000px;}
._6a{margin-left:-2811.672000px;}
._b7{margin-left:-2810.304000px;}
._151{margin-left:-2809.224000px;}
._12{margin-left:-2807.236800px;}
._174{margin-left:-2806.128000px;}
._86{margin-left:-2804.760000px;}
._124{margin-left:-2803.528800px;}
._61{margin-left:-2802.312000px;}
._b1{margin-left:-2801.160000px;}
._5b{margin-left:-2799.864000px;}
._3f{margin-left:-2798.784000px;}
._69{margin-left:-2796.480000px;}
._54{margin-left:-2794.824000px;}
._21{margin-left:-2793.240000px;}
._18{margin-left:-2791.224000px;}
._59{margin-left:-2789.856000px;}
._cd{margin-left:-2788.344000px;}
._42{margin-left:-2787.336000px;}
._119{margin-left:-2785.824000px;}
._79{margin-left:-2784.600000px;}
._74{margin-left:-2782.872000px;}
._fc{margin-left:-2781.532800px;}
._48{margin-left:-2780.208000px;}
._ec{margin-left:-2779.200000px;}
._5e{margin-left:-2777.760000px;}
._51{margin-left:-2776.687200px;}
._94{margin-left:-2775.240000px;}
._23{margin-left:-2774.160000px;}
._1d{margin-left:-2773.080000px;}
._7a{margin-left:-2771.640000px;}
._30{margin-left:-2770.560000px;}
._b3{margin-left:-2768.904000px;}
._10c{margin-left:-2767.896000px;}
._118{margin-left:-2766.816000px;}
._5f{margin-left:-2765.808000px;}
._11{margin-left:-2764.293120px;}
._14f{margin-left:-2762.784000px;}
._38{margin-left:-2761.776000px;}
._63{margin-left:-2760.696000px;}
._137{margin-left:-2759.688000px;}
._dc{margin-left:-2758.608000px;}
._113{margin-left:-2756.952000px;}
._6e{margin-left:-2755.728000px;}
._71{margin-left:-2754.432000px;}
._4c{margin-left:-2752.920000px;}
._ca{margin-left:-2751.768000px;}
._34{margin-left:-2750.256000px;}
._4e{margin-left:-2748.888000px;}
._144{margin-left:-2747.592000px;}
._93{margin-left:-2746.497600px;}
._49{margin-left:-2744.784000px;}
._fe{margin-left:-2742.840000px;}
._13e{margin-left:-2740.968000px;}
._65{margin-left:-2739.816000px;}
._105{margin-left:-2738.304000px;}
._76{margin-left:-2736.792000px;}
._2e{margin-left:-2734.560000px;}
._db{margin-left:-2732.400000px;}
._138{margin-left:-2730.888000px;}
._90{margin-left:-2729.376000px;}
._4d{margin-left:-2727.648000px;}
._8b{margin-left:-2726.352000px;}
._43{margin-left:-2724.624000px;}
._17{margin-left:-2722.176000px;}
._68{margin-left:-2720.512800px;}
._1e{margin-left:-2719.512000px;}
._e6{margin-left:-2718.201600px;}
._80{margin-left:-2716.920000px;}
._10e{margin-left:-2715.120000px;}
._ff{margin-left:-2713.536000px;}
._13f{margin-left:-2712.024000px;}
._89{margin-left:-2710.080000px;}
._25{margin-left:-2708.784000px;}
._d3{margin-left:-2707.344000px;}
._70{margin-left:-2706.264000px;}
._104{margin-left:-2704.104000px;}
._164{margin-left:-2702.736000px;}
._c1{margin-left:-2701.152000px;}
._62{margin-left:-2700.072000px;}
._114{margin-left:-2698.488000px;}
._91{margin-left:-2696.400000px;}
._b8{margin-left:-2695.176000px;}
._198{margin-left:-2694.168000px;}
._14{margin-left:-2692.728000px;}
._67{margin-left:-2691.000000px;}
._92{margin-left:-2688.336000px;}
._160{margin-left:-2686.104000px;}
._58{margin-left:-2684.512800px;}
._55{margin-left:-2682.360000px;}
._179{margin-left:-2680.992000px;}
._22{margin-left:-2679.624000px;}
._9d{margin-left:-2678.544000px;}
._15b{margin-left:-2677.248000px;}
._60{margin-left:-2675.808000px;}
._9b{margin-left:-2673.936000px;}
._37{margin-left:-2670.192000px;}
._3{margin-left:-2669.097600px;}
._df{margin-left:-2665.728000px;}
._4f{margin-left:-2664.360000px;}
._19{margin-left:-2662.128000px;}
._d0{margin-left:-2659.464000px;}
._39{margin-left:-2657.736000px;}
._c0{margin-left:-2656.368000px;}
._7{margin-left:-2654.496000px;}
._15e{margin-left:-2652.264000px;}
._f3{margin-left:-2648.448000px;}
._14a{margin-left:-2647.368000px;}
._88{margin-left:-2645.136000px;}
._7c{margin-left:-2640.952800px;}
._73{margin-left:-2639.448000px;}
._1b7{margin-left:-2636.064000px;}
._44{margin-left:-2633.832000px;}
._8d{margin-left:-2631.384000px;}
._d1{margin-left:-2630.016000px;}
._6f{margin-left:-2627.208000px;}
._6{margin-left:-2625.639840px;}
._1b4{margin-left:-2624.328000px;}
._ce{margin-left:-2623.320000px;}
._96{margin-left:-2621.088000px;}
._84{margin-left:-2618.352000px;}
._ed{margin-left:-2617.128000px;}
._168{margin-left:-2613.024000px;}
._c8{margin-left:-2611.368000px;}
._5a{margin-left:-2609.496000px;}
._190{margin-left:-2607.768000px;}
._1ad{margin-left:-2604.816000px;}
._dd{margin-left:-2603.088000px;}
._110{margin-left:-2598.408000px;}
._f6{margin-left:-2595.744000px;}
._182{margin-left:-2593.584000px;}
._ef{margin-left:-2592.576000px;}
._99{margin-left:-2590.560000px;}
._97{margin-left:-2589.192000px;}
._f2{margin-left:-2587.536000px;}
._172{margin-left:-2584.008000px;}
._14d{margin-left:-2582.640000px;}
._143{margin-left:-2581.416000px;}
._e5{margin-left:-2579.904000px;}
._12a{margin-left:-2569.680000px;}
._72{margin-left:-2564.712000px;}
._e0{margin-left:-2561.544000px;}
._3b{margin-left:-2557.008000px;}
._83{margin-left:-2555.064000px;}
._b6{margin-left:-2552.328000px;}
._d2{margin-left:-2547.072000px;}
._cb{margin-left:-2543.760000px;}
._9a{margin-left:-2541.528000px;}
._b2{margin-left:-2539.584000px;}
._154{margin-left:-2537.568000px;}
._13b{margin-left:-2535.840000px;}
._1a7{margin-left:-2532.888000px;}
._d6{margin-left:-2526.768000px;}
._111{margin-left:-2525.760000px;}
._150{margin-left:-2523.960000px;}
._75{margin-left:-2521.944000px;}
._1a6{margin-left:-2519.136000px;}
._180{margin-left:-2517.696000px;}
._166{margin-left:-2512.872000px;}
._10d{margin-left:-2502.792000px;}
._19a{margin-left:-2498.976000px;}
._1a8{margin-left:-2492.280000px;}
._197{margin-left:-2484.000000px;}
._194{margin-left:-2464.560000px;}
._f1{margin-left:-2456.881560px;}
._19f{margin-left:-2450.520000px;}
._181{margin-left:-2448.144000px;}
._9e{margin-left:-2445.912000px;}
._189{margin-left:-2438.712000px;}
._106{margin-left:-2433.816000px;}
._c7{margin-left:-2427.696000px;}
._da{margin-left:-2424.312000px;}
._121{margin-left:-2422.224000px;}
._1a0{margin-left:-2399.112000px;}
._18c{margin-left:-2396.160000px;}
._16a{margin-left:-2388.168000px;}
._199{margin-left:-2386.656000px;}
._11a{margin-left:-2381.328000px;}
._12e{margin-left:-2375.496000px;}
._85{margin-left:-2370.960000px;}
._170{margin-left:-2360.808000px;}
._1a9{margin-left:-2346.624000px;}
._159{margin-left:-2339.568000px;}
._4{margin-left:-2336.328000px;}
._12b{margin-left:-2318.256000px;}
._101{margin-left:-2289.744000px;}
._193{margin-left:-2285.136000px;}
._8{margin-left:-2275.992000px;}
._c{margin-left:-2268.144000px;}
._e{margin-left:-2266.709760px;}
._17a{margin-left:-2227.896000px;}
._1ae{margin-left:-2214.144000px;}
._109{margin-left:-2209.392000px;}
._1a1{margin-left:-2207.736000px;}
._1b6{margin-left:-2205.576000px;}
._13c{margin-left:-2175.552000px;}
._b{margin-left:-2164.311360px;}
._146{margin-left:-2142.432000px;}
._1ac{margin-left:-2129.328000px;}
._e2{margin-left:-2125.224000px;}
._175{margin-left:-2121.408000px;}
._185{margin-left:-2115.792000px;}
._16c{margin-left:-2108.016000px;}
._141{margin-left:-2092.392000px;}
._1a2{margin-left:-2084.544000px;}
._18a{margin-left:-2082.456000px;}
._1a5{margin-left:-2080.584000px;}
._191{margin-left:-2070.648000px;}
._177{margin-left:-2064.168000px;}
._147{margin-left:-2018.376000px;}
._19c{margin-left:-2003.760000px;}
._5d{margin-left:-2001.528000px;}
._1b1{margin-left:-1998.360000px;}
._1b3{margin-left:-1991.808000px;}
._29{margin-left:-1977.984000px;}
._27{margin-left:-1973.232000px;}
._15c{margin-left:-1964.304000px;}
._167{margin-left:-1948.176000px;}
._186{margin-left:-1942.200000px;}
._f8{margin-left:-1926.000000px;}
._19b{margin-left:-1921.536000px;}
._17e{margin-left:-1910.520000px;}
._126{margin-left:-1908.864000px;}
._1ab{margin-left:-1906.200000px;}
._157{margin-left:-1904.256000px;}
._1b2{margin-left:-1900.008000px;}
._14b{margin-left:-1897.128000px;}
._19e{margin-left:-1870.128000px;}
._17f{margin-left:-1859.544000px;}
._17d{margin-left:-1849.608000px;}
._13a{margin-left:-1841.832000px;}
._103{margin-left:-1831.392000px;}
._142{margin-left:-1814.904000px;}
._16e{margin-left:-1810.008000px;}
._bf{margin-left:-1805.040000px;}
._a4{margin-left:-1802.592000px;}
._17c{margin-left:-1788.336000px;}
._14e{margin-left:-1772.064000px;}
._8a{margin-left:-1766.448000px;}
._184{margin-left:-1764.288000px;}
._131{margin-left:-1741.824000px;}
._18b{margin-left:-1740.744000px;}
._a5{margin-left:-1728.936000px;}
._196{margin-left:-1722.096000px;}
._1aa{margin-left:-1720.152000px;}
._16d{margin-left:-1704.168000px;}
._165{margin-left:-1700.352000px;}
._17b{margin-left:-1697.616000px;}
._bc{margin-left:-1691.640000px;}
._162{margin-left:-1690.344000px;}
._15a{margin-left:-1688.112000px;}
._19d{margin-left:-1686.384000px;}
._107{margin-left:-1674.720000px;}
._14c{margin-left:-1671.984000px;}
._102{margin-left:-1664.784000px;}
._15d{margin-left:-1656.504000px;}
._15f{margin-left:-1654.344000px;}
._16{margin-left:-1653.120000px;}
._1af{margin-left:-1650.096000px;}
._171{margin-left:-1648.296000px;}
._12d{margin-left:-1631.088000px;}
._1a3{margin-left:-1624.320000px;}
._178{margin-left:-1622.160000px;}
._1a4{margin-left:-1614.168000px;}
._188{margin-left:-1612.152000px;}
._1b0{margin-left:-1608.696000px;}
._16f{margin-left:-1606.176000px;}
._18d{margin-left:-1576.224000px;}
._163{margin-left:-1554.192000px;}
._192{margin-left:-1550.160000px;}
._ba{margin-left:-1544.976000px;}
._18f{margin-left:-1524.240000px;}
._2{margin-left:-1519.920000px;}
._108{margin-left:-1518.480000px;}
._173{margin-left:-1516.320000px;}
._115{margin-left:-1512.792000px;}
._f4{margin-left:-1494.072000px;}
._c5{margin-left:-1491.048000px;}
._12c{margin-left:-1481.616000px;}
._15{margin-left:-1470.075840px;}
._187{margin-left:-1462.248000px;}
._33{margin-left:-1455.840000px;}
._161{margin-left:-1446.192000px;}
._176{margin-left:-1442.160000px;}
._a7{margin-left:-1429.416000px;}
._e1{margin-left:-1425.024000px;}
._e9{margin-left:-1421.496000px;}
._183{margin-left:-1408.176000px;}
._134{margin-left:-1393.200000px;}
._18e{margin-left:-1376.424000px;}
._169{margin-left:-1370.160000px;}
._156{margin-left:-1359.720000px;}
._f5{margin-left:-1358.640000px;}
._129{margin-left:-1351.368000px;}
._a2{margin-left:-1339.696800px;}
._7b{margin-left:-1295.280000px;}
._aa{margin-left:-1221.840000px;}
._ad{margin-left:-1215.288000px;}
._11c{margin-left:-1199.232000px;}
._c9{margin-left:-1117.872000px;}
._155{margin-left:-1107.864000px;}
._153{margin-left:-1100.448000px;}
._b5{margin-left:-1091.520000px;}
._fd{margin-left:-1088.576640px;}
._bd{margin-left:-1058.328000px;}
._d7{margin-left:-1049.616000px;}
._a9{margin-left:-1007.424000px;}
._139{margin-left:-1002.024000px;}
._b4{margin-left:-941.616000px;}
._135{margin-left:-854.928000px;}
._12f{margin-left:-839.401920px;}
._fb{margin-left:-825.624000px;}
._132{margin-left:-808.488000px;}
._195{margin-left:-802.224000px;}
._cc{margin-left:-798.120000px;}
._66{margin-left:-790.344000px;}
._120{margin-left:-780.120000px;}
._11f{margin-left:-777.744000px;}
._136{margin-left:-757.944000px;}
._3e{margin-left:-737.784000px;}
._9f{margin-left:-728.424000px;}
._100{margin-left:-697.824000px;}
._127{margin-left:-632.448000px;}
._122{margin-left:-575.928000px;}
._ae{margin-left:-572.184000px;}
._d{margin-left:-562.034880px;}
._d4{margin-left:-555.624000px;}
._116{margin-left:-554.184000px;}
._35{margin-left:-552.744000px;}
._1b8{margin-left:-551.664000px;}
._158{margin-left:-537.768000px;}
._c3{margin-left:-520.056000px;}
._10a{margin-left:-518.472000px;}
._28{margin-left:-504.864000px;}
._11d{margin-left:-486.216000px;}
._13d{margin-left:-484.632000px;}
._eb{margin-left:-474.984000px;}
._133{margin-left:-469.440000px;}
._128{margin-left:-451.440000px;}
._10f{margin-left:-447.696000px;}
._1b5{margin-left:-433.296000px;}
._1bb{margin-left:-424.080000px;}
._be{margin-left:-417.312000px;}
._87{margin-left:-407.520000px;}
._c2{margin-left:-406.080000px;}
._123{margin-left:-403.416000px;}
._a8{margin-left:-399.600000px;}
._112{margin-left:-391.680000px;}
._fa{margin-left:-389.664000px;}
._ea{margin-left:-372.240000px;}
._152{margin-left:-369.720000px;}
._e3{margin-left:-351.576000px;}
._9{margin-left:-193.680000px;}
._a{margin-left:-192.228480px;}
._1b9{margin-left:-190.080000px;}
._5{margin-left:-159.840000px;}
._d9{margin-left:-11.989440px;}
._f0{margin-left:-7.056000px;}
._3c{margin-left:-2.520000px;}
._1{margin-left:-1.296000px;}
._0{width:1.512000px;}
._53{width:2.656800px;}
._d5{width:4.032000px;}
._117{width:19.656000px;}
._b0{width:21.024000px;}
._140{width:82.175250px;}
._f9{width:91.752860px;}
._e7{width:93.214080px;}
._1bc{width:100.425430px;}
._10b{width:113.138176px;}
._1bd{width:119.327766px;}
._1ba{width:194.400000px;}
._ee{width:272.455713px;}
._f7{width:845.496000px;}
._32{width:846.648000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:35.472000px;}
.fs4{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs9{font-size:42.514800px;}
.fs8{font-size:42.615600px;}
.fs2{font-size:48.240000px;}
.fsf{font-size:48.774000px;}
.fs10{font-size:48.901200px;}
.fs3{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fsc{font-size:59.763600px;}
.fsa{font-size:65.740200px;}
.fsb{font-size:65.748000px;}
.fse{font-size:65.865600px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:71.716800px;}
.fs6{font-size:71.853000px;}
.fs0{font-size:72.000000px;}
.y16{bottom:-19.980000px;}
.y0{bottom:0.000000px;}
.y16b{bottom:3.945750px;}
.y25a{bottom:3.946050px;}
.y2aa{bottom:4.792350px;}
.y2a8{bottom:5.656350px;}
.y109{bottom:5.893950px;}
.y1ee{bottom:5.895150px;}
.y153{bottom:8.416350px;}
.y22d{bottom:8.418000px;}
.y2a5{bottom:8.734950px;}
.yc8{bottom:10.756050px;}
.y1a7{bottom:10.756500px;}
.y110{bottom:20.340000px;}
.y10e{bottom:20.520000px;}
.y112{bottom:20.880000px;}
.ye{bottom:21.420000px;}
.y100{bottom:24.830850px;}
.y1e5{bottom:24.832050px;}
.y2ac{bottom:27.193950px;}
.y2a4{bottom:27.194100px;}
.y149{bottom:27.359250px;}
.y231{bottom:27.360750px;}
.y223{bottom:27.360900px;}
.y2a3{bottom:40.366050px;}
.yc9{bottom:43.030800px;}
.y1a8{bottom:43.031250px;}
.y16d{bottom:43.387650px;}
.y25c{bottom:43.387800px;}
.y101{bottom:50.883600px;}
.y1e6{bottom:50.884800px;}
.y14a{bottom:53.318400px;}
.y224{bottom:53.320050px;}
.y3{bottom:57.780000px;}
.y29c{bottom:59.496300px;}
.y2af{bottom:63.540300px;}
.yca{bottom:75.819150px;}
.y1a9{bottom:75.819750px;}
.y2{bottom:77.220000px;}
.y14b{bottom:77.300400px;}
.y225{bottom:77.302200px;}
.y102{bottom:79.256100px;}
.y1e7{bottom:79.257450px;}
.y2a6{bottom:79.466700px;}
.y25d{bottom:81.119550px;}
.y29d{bottom:83.268300px;}
.y2ae{bottom:83.716350px;}
.y16e{bottom:90.247350px;}
.yc7{bottom:94.647300px;}
.y28d{bottom:97.140780px;}
.y277{bottom:97.188840px;}
.y87{bottom:97.194420px;}
.y1c9{bottom:97.375140px;}
.y1a6{bottom:98.137800px;}
.y242{bottom:99.183780px;}
.y6e{bottom:100.800000px;}
.y157{bottom:101.287650px;}
.y14c{bottom:101.287800px;}
.y226{bottom:101.289300px;}
.y232{bottom:101.289450px;}
.y4c{bottom:101.880000px;}
.y93{bottom:102.420000px;}
.y243{bottom:104.764320px;}
.y51{bottom:104.940000px;}
.y29e{bottom:107.036250px;}
.y103{bottom:107.628750px;}
.y1e8{bottom:107.630100px;}
.ycb{bottom:107.913150px;}
.y1aa{bottom:107.913600px;}
.y146{bottom:111.420000px;}
.y27d{bottom:111.960000px;}
.y28c{bottom:114.426360px;}
.y276{bottom:114.474420px;}
.y92{bottom:115.740000px;}
.y12b{bottom:116.280000px;}
.y258{bottom:118.772820px;}
.y240{bottom:118.779840px;}
.yff{bottom:119.170800px;}
.y1e4{bottom:119.171850px;}
.y86{bottom:119.700000px;}
.y1c8{bottom:120.060000px;}
.y148{bottom:120.438000px;}
.y156{bottom:120.438150px;}
.y230{bottom:120.439650px;}
.y222{bottom:120.439800px;}
.yc4{bottom:121.680000px;}
.yf0{bottom:124.200000px;}
.y82{bottom:124.380000px;}
.y241{bottom:124.384320px;}
.y14d{bottom:125.274900px;}
.y227{bottom:125.276550px;}
.y25e{bottom:126.771300px;}
.yc5{bottom:128.342340px;}
.y2ad{bottom:129.518100px;}
.y29f{bottom:130.808250px;}
.y28b{bottom:131.711940px;}
.y85{bottom:131.754420px;}
.y275{bottom:131.760000px;}
.y18d{bottom:132.480000px;}
.y24{bottom:133.233120px;}
.y1c7{bottom:133.380000px;}
.y169{bottom:134.640000px;}
.y16f{bottom:135.898950px;}
.y104{bottom:136.001400px;}
.y1e9{bottom:136.002600px;}
.y257{bottom:136.416960px;}
.y23f{bottom:136.603260px;}
.y210{bottom:138.600000px;}
.y220{bottom:138.780000px;}
.y185{bottom:139.140000px;}
.y18e{bottom:139.142340px;}
.ycc{bottom:140.007000px;}
.y1ab{bottom:140.007600px;}
.y6d{bottom:142.200000px;}
.y4b{bottom:143.280000px;}
.y211{bottom:145.262340px;}
.y50{bottom:146.340000px;}
.y28a{bottom:148.997520px;}
.y14e{bottom:149.256900px;}
.y158{bottom:149.257050px;}
.y228{bottom:149.258550px;}
.y274{bottom:150.300000px;}
.y145{bottom:152.820000px;}
.y27c{bottom:153.360000px;}
.y256{bottom:153.702540px;}
.y23e{bottom:154.068120px;}
.y84{bottom:154.260000px;}
.y2a0{bottom:154.580250px;}
.y2ab{bottom:154.580400px;}
.y1e1{bottom:155.340000px;}
.y12a{bottom:157.680000px;}
.y1e2{bottom:162.002340px;}
.y105{bottom:164.374050px;}
.y1ea{bottom:164.375250px;}
.y81{bottom:165.780000px;}
.y289{bottom:166.283100px;}
.yc2{bottom:166.320000px;}
.y16c{bottom:166.451700px;}
.y25b{bottom:166.452000px;}
.y83{bottom:167.580000px;}
.yee{bottom:168.660000px;}
.y280{bottom:169.740000px;}
.y255{bottom:170.988120px;}
.y23{bottom:171.205200px;}
.y23d{bottom:171.353700px;}
.ycd{bottom:172.101000px;}
.y1ac{bottom:172.101450px;}
.y25f{bottom:172.422900px;}
.yc3{bottom:172.982340px;}
.y14f{bottom:173.244150px;}
.y229{bottom:173.245800px;}
.y18c{bottom:174.600000px;}
.yef{bottom:175.322340px;}
.y1a4{bottom:175.500000px;}
.y168{bottom:176.040000px;}
.y2a1{bottom:178.352850px;}
.y21f{bottom:180.180000px;}
.y184{bottom:180.540000px;}
.y20f{bottom:180.720000px;}
.y170{bottom:181.556400px;}
.y288{bottom:183.568680px;}
.y6c{bottom:183.600000px;}
.y91{bottom:183.780000px;}
.y4a{bottom:184.680000px;}
.y4f{bottom:187.740000px;}
.y254{bottom:188.273700px;}
.y106{bottom:192.747300px;}
.y1eb{bottom:192.748500px;}
.y23c{bottom:193.680000px;}
.y144{bottom:194.220000px;}
.y27b{bottom:194.760000px;}
.y10b{bottom:195.865350px;}
.y1f0{bottom:195.866550px;}
.y155{bottom:195.959250px;}
.y22f{bottom:195.960900px;}
.y150{bottom:197.226900px;}
.y22a{bottom:197.228550px;}
.yaf{bottom:199.080000px;}
.y1a3{bottom:199.440000px;}
.y1df{bottom:200.160000px;}
.y287{bottom:200.674980px;}
.y21e{bottom:200.880000px;}
.y2a2{bottom:202.124550px;}
.yd2{bottom:203.833650px;}
.y1b1{bottom:203.834100px;}
.yce{bottom:204.194850px;}
.y1ad{bottom:204.195450px;}
.y1e0{bottom:206.822340px;}
.y23b{bottom:207.000000px;}
.y80{bottom:207.180000px;}
.yc1{bottom:208.440000px;}
.y10a{bottom:208.492050px;}
.y1ef{bottom:208.493250px;}
.y154{bottom:208.585950px;}
.y22e{bottom:208.587600px;}
.y22{bottom:209.011680px;}
.y253{bottom:210.600000px;}
.y27f{bottom:211.140000px;}
.yec{bottom:213.300000px;}
.y167{bottom:217.440000px;}
.y286{bottom:217.960560px;}
.y260{bottom:218.074500px;}
.y18a{bottom:218.700000px;}
.y1a2{bottom:218.880000px;}
.y1a5{bottom:219.009000px;}
.yed{bottom:219.962340px;}
.y10c{bottom:221.119050px;}
.y107{bottom:221.119200px;}
.y1ec{bottom:221.120400px;}
.y151{bottom:221.213100px;}
.y22b{bottom:221.214750px;}
.y183{bottom:221.940000px;}
.y252{bottom:223.920000px;}
.y20d{bottom:224.640000px;}
.y6b{bottom:225.000000px;}
.y90{bottom:225.180000px;}
.yd1{bottom:225.352050px;}
.y1b0{bottom:225.352650px;}
.y18b{bottom:225.362340px;}
.y49{bottom:226.080000px;}
.y171{bottom:227.208000px;}
.y263{bottom:227.826750px;}
.y4e{bottom:229.140000px;}
.y20e{bottom:231.302340px;}
.y285{bottom:235.246140px;}
.y143{bottom:235.620000px;}
.y27a{bottom:236.160000px;}
.ycf{bottom:236.289450px;}
.y1ae{bottom:236.290050px;}
.y108{bottom:238.987050px;}
.y152{bottom:238.987950px;}
.y1ed{bottom:238.988400px;}
.y22c{bottom:238.989600px;}
.y174{bottom:239.032200px;}
.y129{bottom:240.480000px;}
.y1de{bottom:242.280000px;}
.yad{bottom:243.000000px;}
.y262{bottom:245.574900px;}
.y21{bottom:246.983760px;}
.y21d{bottom:248.400000px;}
.y7f{bottom:248.580000px;}
.yae{bottom:249.662340px;}
.y284{bottom:252.531720px;}
.ybf{bottom:252.540000px;}
.y173{bottom:256.780350px;}
.yea{bottom:258.120000px;}
.y33{bottom:258.484320px;}
.y166{bottom:258.840000px;}
.yc0{bottom:259.202340px;}
.y182{bottom:263.340000px;}
.y261{bottom:263.732550px;}
.y29a{bottom:264.780000px;}
.yeb{bottom:264.782340px;}
.y6a{bottom:266.400000px;}
.y8f{bottom:266.580000px;}
.y48{bottom:267.480000px;}
.y21c{bottom:268.020000px;}
.yd0{bottom:268.382700px;}
.y1af{bottom:268.383300px;}
.y221{bottom:268.453500px;}
.y20b{bottom:269.460000px;}
.y283{bottom:269.817300px;}
.y189{bottom:270.002340px;}
.y4d{bottom:270.540000px;}
.y172{bottom:272.860200px;}
.y20c{bottom:276.122340px;}
.y142{bottom:277.020000px;}
.y279{bottom:277.560000px;}
.y251{bottom:278.460000px;}
.y1dd{bottom:283.680000px;}
.y127{bottom:284.400000px;}
.y20{bottom:284.955840px;}
.yab{bottom:287.820000px;}
.y299{bottom:288.540000px;}
.y7e{bottom:289.980000px;}
.y128{bottom:291.062340px;}
.y282{bottom:293.040000px;}
.y273{bottom:293.940000px;}
.yac{bottom:294.482340px;}
.ybe{bottom:294.660000px;}
.y165{bottom:300.240000px;}
.ye8{bottom:302.940000px;}
.y181{bottom:304.740000px;}
.y281{bottom:306.540000px;}
.y69{bottom:307.800000px;}
.y187{bottom:308.160000px;}
.y47{bottom:308.880000px;}
.ye9{bottom:309.602340px;}
.y8e{bottom:311.040000px;}
.y20a{bottom:311.580000px;}
.y32{bottom:311.940000px;}
.y298{bottom:312.300000px;}
.y188{bottom:314.822340px;}
.y278{bottom:318.960000px;}
.y250{bottom:319.860000px;}
.y140{bottom:320.940000px;}
.y1f{bottom:322.927920px;}
.y1dc{bottom:325.080000px;}
.y126{bottom:326.520000px;}
.y141{bottom:327.602340px;}
.yaa{bottom:329.940000px;}
.y7d{bottom:331.200000px;}
.y272{bottom:335.340000px;}
.ybd{bottom:336.060000px;}
.y297{bottom:336.240000px;}
.y164{bottom:341.640000px;}
.y180{bottom:346.140000px;}
.ye6{bottom:347.580000px;}
.y68{bottom:349.200000px;}
.y46{bottom:350.280000px;}
.y177{bottom:351.720000px;}
.y8d{bottom:352.440000px;}
.y31{bottom:353.340000px;}
.ye7{bottom:354.242340px;}
.y208{bottom:355.500000px;}
.y178{bottom:358.382340px;}
.y296{bottom:360.000000px;}
.y1e{bottom:360.900000px;}
.y24f{bottom:361.260000px;}
.y209{bottom:362.162340px;}
.y13e{bottom:365.760000px;}
.y1da{bottom:369.000000px;}
.y124{bottom:370.620000px;}
.ya9{bottom:371.340000px;}
.y13f{bottom:372.422340px;}
.y7c{bottom:372.600000px;}
.y1db{bottom:375.662340px;}
.y271{bottom:376.740000px;}
.y125{bottom:377.282340px;}
.ybb{bottom:379.980000px;}
.y163{bottom:383.040000px;}
.y295{bottom:383.760000px;}
.ybc{bottom:386.642340px;}
.y17f{bottom:387.540000px;}
.ye5{bottom:389.700000px;}
.y67{bottom:390.420000px;}
.y45{bottom:391.680000px;}
.y8c{bottom:393.840000px;}
.y30{bottom:394.740000px;}
.y1d{bottom:398.872080px;}
.y206{bottom:400.320000px;}
.y24e{bottom:402.660000px;}
.y207{bottom:406.982340px;}
.y294{bottom:407.520000px;}
.y13c{bottom:410.400000px;}
.y1d8{bottom:413.820000px;}
.y7b{bottom:414.000000px;}
.ya7{bottom:415.260000px;}
.y13d{bottom:417.062340px;}
.y270{bottom:417.960000px;}
.y1d9{bottom:420.482340px;}
.ya8{bottom:421.922340px;}
.yba{bottom:422.100000px;}
.y162{bottom:424.440000px;}
.y17e{bottom:428.940000px;}
.ye4{bottom:431.100000px;}
.y293{bottom:431.280000px;}
.y66{bottom:431.820000px;}
.y44{bottom:433.080000px;}
.y8b{bottom:435.240000px;}
.y2f{bottom:435.960000px;}
.y1c{bottom:436.678560px;}
.yfc{bottom:441.180000px;}
.y205{bottom:442.440000px;}
.y24d{bottom:444.060000px;}
.yfd{bottom:447.842340px;}
.y13b{bottom:452.520000px;}
.y23a{bottom:453.784320px;}
.y1c6{bottom:454.140000px;}
.y292{bottom:455.220000px;}
.y7a{bottom:455.400000px;}
.ya6{bottom:457.380000px;}
.y1d6{bottom:458.460000px;}
.y26f{bottom:459.360000px;}
.y122{bottom:460.080000px;}
.y1d7{bottom:465.122340px;}
.y161{bottom:465.840000px;}
.yb8{bottom:466.200000px;}
.y123{bottom:466.742340px;}
.y17d{bottom:470.340000px;}
.ye3{bottom:472.500000px;}
.yb9{bottom:472.862340px;}
.y65{bottom:473.220000px;}
.y43{bottom:474.480000px;}
.y8a{bottom:476.640000px;}
.y1b{bottom:476.820000px;}
.y2e{bottom:477.360000px;}
.y291{bottom:478.980000px;}
.yfb{bottom:483.300000px;}
.y24c{bottom:485.460000px;}
.y203{bottom:486.360000px;}
.y204{bottom:493.022340px;}
.y13a{bottom:493.920000px;}
.y1c5{bottom:495.540000px;}
.y79{bottom:496.800000px;}
.ya5{bottom:498.780000px;}
.y26e{bottom:500.760000px;}
.y160{bottom:501.480000px;}
.y121{bottom:502.200000px;}
.y290{bottom:502.740000px;}
.y1d4{bottom:503.280000px;}
.y239{bottom:507.240000px;}
.yb7{bottom:508.320000px;}
.y1d5{bottom:509.942340px;}
.y17c{bottom:511.740000px;}
.ye2{bottom:513.900000px;}
.y64{bottom:514.620000px;}
.y42{bottom:515.880000px;}
.y1a{bottom:516.074400px;}
.y139{bottom:517.860000px;}
.y89{bottom:518.040000px;}
.y2d{bottom:518.760000px;}
.y78{bottom:520.740000px;}
.y15f{bottom:525.420000px;}
.y28f{bottom:526.500000px;}
.y24b{bottom:526.860000px;}
.yf9{bottom:527.220000px;}
.y202{bottom:528.480000px;}
.yfa{bottom:533.882340px;}
.y1c3{bottom:539.460000px;}
.y21b{bottom:540.180000px;}
.y1a1{bottom:540.540000px;}
.y138{bottom:541.620000px;}
.y26d{bottom:542.160000px;}
.ya3{bottom:542.880000px;}
.y77{bottom:544.500000px;}
.y11f{bottom:546.120000px;}
.y1c4{bottom:546.122340px;}
.y1d2{bottom:547.920000px;}
.y238{bottom:548.640000px;}
.ya4{bottom:549.542340px;}
.yb5{bottom:552.240000px;}
.y120{bottom:552.782340px;}
.y17b{bottom:553.140000px;}
.y19{bottom:554.046480px;}
.y1d3{bottom:554.582340px;}
.ye1{bottom:555.300000px;}
.y63{bottom:556.020000px;}
.y15e{bottom:556.920000px;}
.y16a{bottom:556.993500px;}
.y41{bottom:557.280000px;}
.yb6{bottom:558.902340px;}
.y176{bottom:559.440000px;}
.y88{bottom:559.800000px;}
.y2c{bottom:560.160000px;}
.y137{bottom:561.240000px;}
.y147{bottom:561.565500px;}
.y28e{bottom:563.400000px;}
.y29b{bottom:563.646000px;}
.y76{bottom:568.260000px;}
.yf8{bottom:569.340000px;}
.y201{bottom:569.880000px;}
.y1c2{bottom:581.580000px;}
.y1a0{bottom:581.940000px;}
.y26c{bottom:583.560000px;}
.ya2{bottom:585.000000px;}
.y237{bottom:590.400000px;}
.y200{bottom:590.405040px;}
.y11d{bottom:590.940000px;}
.y18{bottom:592.018560px;}
.y75{bottom:592.020000px;}
.y1d0{bottom:592.740000px;}
.yb4{bottom:594.360000px;}
.ye0{bottom:596.700000px;}
.y179{bottom:597.060000px;}
.y62{bottom:597.420000px;}
.y11e{bottom:597.602340px;}
.y40{bottom:598.680000px;}
.y1d1{bottom:599.402340px;}
.y175{bottom:601.200000px;}
.y2b{bottom:601.560000px;}
.y17a{bottom:603.722340px;}
.y1ff{bottom:609.300000px;}
.y24a{bottom:609.660000px;}
.yf6{bottom:613.440000px;}
.y74{bottom:615.960000px;}
.y19f{bottom:616.320000px;}
.yf7{bottom:620.102340px;}
.y21a{bottom:622.980000px;}
.y26b{bottom:624.960000px;}
.y1fe{bottom:625.320000px;}
.y1c0{bottom:625.680000px;}
.ya0{bottom:628.920000px;}
.y17{bottom:632.160000px;}
.y1c1{bottom:632.342340px;}
.y11c{bottom:633.060000px;}
.y2a7{bottom:633.481500px;}
.y1cf{bottom:634.860000px;}
.ya1{bottom:635.582340px;}
.yb3{bottom:635.760000px;}
.ydf{bottom:638.100000px;}
.y61{bottom:638.820000px;}
.y73{bottom:639.720000px;}
.y186{bottom:639.900000px;}
.y3f{bottom:640.080000px;}
.y2a{bottom:642.960000px;}
.y249{bottom:645.480000px;}
.y14{bottom:648.900000px;}
.y2a9{bottom:651.774000px;}
.yf5{bottom:655.560000px;}
.y1fd{bottom:659.880000px;}
.y19d{bottom:660.420000px;}
.y72{bottom:663.480000px;}
.y219{bottom:664.380000px;}
.y15{bottom:666.360000px;}
.y19e{bottom:667.082340px;}
.y1bf{bottom:667.800000px;}
.y248{bottom:669.240000px;}
.y9f{bottom:671.040000px;}
.y236{bottom:673.560000px;}
.y1ce{bottom:676.260000px;}
.y11a{bottom:676.980000px;}
.yb2{bottom:677.160000px;}
.yde{bottom:679.500000px;}
.y60{bottom:680.220000px;}
.y3e{bottom:681.480000px;}
.y11b{bottom:683.642340px;}
.y29{bottom:684.360000px;}
.y12{bottom:687.060000px;}
.y71{bottom:687.240000px;}
.y1fc{bottom:694.440000px;}
.yf4{bottom:696.960000px;}
.yb1{bottom:697.860000px;}
.y247{bottom:700.920000px;}
.y259{bottom:701.050500px;}
.y13{bottom:704.520000px;}
.y19b{bottom:705.060000px;}
.y218{bottom:705.780000px;}
.y26a{bottom:707.760000px;}
.y1be{bottom:709.200000px;}
.y70{bottom:711.180000px;}
.y19c{bottom:711.722340px;}
.y9e{bottom:712.440000px;}
.y235{bottom:715.500000px;}
.y1cd{bottom:717.660000px;}
.y119{bottom:719.100000px;}
.yf3{bottom:720.720000px;}
.ydd{bottom:720.900000px;}
.y5f{bottom:721.620000px;}
.y3d{bottom:722.880000px;}
.y10{bottom:725.220000px;}
.y28{bottom:725.760000px;}
.y1fb{bottom:729.720000px;}
.y6f{bottom:730.620000px;}
.yb0{bottom:735.298560px;}
.yc6{bottom:735.388500px;}
.y1cc{bottom:741.420000px;}
.y11{bottom:742.680000px;}
.yf2{bottom:744.480000px;}
.y269{bottom:749.160000px;}
.y199{bottom:749.880000px;}
.y1bc{bottom:753.120000px;}
.y9c{bottom:756.540000px;}
.y19a{bottom:756.542340px;}
.y234{bottom:757.260000px;}
.y1bd{bottom:759.782340px;}
.y118{bottom:760.500000px;}
.ydc{bottom:762.660000px;}
.y5e{bottom:763.020000px;}
.y9d{bottom:763.202340px;}
.yd{bottom:763.380000px;}
.yf1{bottom:764.100000px;}
.y3c{bottom:764.280000px;}
.yfe{bottom:764.526000px;}
.y1cb{bottom:765.180000px;}
.y1fa{bottom:765.540000px;}
.y27{bottom:767.160000px;}
.yf{bottom:780.840000px;}
.y117{bottom:783.723600px;}
.y1ca{bottom:784.800000px;}
.y1e3{bottom:785.223000px;}
.y268{bottom:790.560000px;}
.y197{bottom:794.520000px;}
.y1ba{bottom:797.940000px;}
.y233{bottom:798.660000px;}
.y1f9{bottom:800.820000px;}
.y9a{bottom:801.180000px;}
.y198{bottom:801.182340px;}
.y5d{bottom:804.420000px;}
.y1bb{bottom:804.602340px;}
.ydb{bottom:804.960000px;}
.y116{bottom:805.500000px;}
.y3b{bottom:805.680000px;}
.y9b{bottom:807.842340px;}
.yc{bottom:808.560000px;}
.y115{bottom:821.700000px;}
.y267{bottom:831.960000px;}
.y136{bottom:833.400000px;}
.y196{bottom:836.640000px;}
.y216{bottom:839.340000px;}
.y1b9{bottom:840.060000px;}
.y99{bottom:843.300000px;}
.y5c{bottom:845.820000px;}
.y217{bottom:846.002340px;}
.yda{bottom:846.720000px;}
.y53{bottom:846.900000px;}
.y3a{bottom:847.080000px;}
.yb{bottom:849.960000px;}
.y114{bottom:856.260000px;}
.y1f8{bottom:860.760000px;}
.y266{bottom:873.360000px;}
.y135{bottom:874.800000px;}
.y195{bottom:878.040000px;}
.y15d{bottom:878.580000px;}
.y215{bottom:881.460000px;}
.y1b7{bottom:883.980000px;}
.y98{bottom:884.700000px;}
.y5b{bottom:887.220000px;}
.yd9{bottom:888.120000px;}
.y39{bottom:888.480000px;}
.y113{bottom:890.640000px;}
.y1b8{bottom:890.642340px;}
.y26{bottom:891.360000px;}
.ya{bottom:898.200000px;}
.y1f7{bottom:902.160000px;}
.y265{bottom:914.760000px;}
.y134{bottom:916.200000px;}
.y15c{bottom:919.980000px;}
.y193{bottom:922.140000px;}
.y214{bottom:922.860000px;}
.y111{bottom:925.920000px;}
.y1b6{bottom:926.100000px;}
.y5a{bottom:928.620000px;}
.y96{bottom:928.800000px;}
.y194{bottom:928.802340px;}
.yd8{bottom:929.520000px;}
.y38{bottom:929.880000px;}
.y25{bottom:932.760000px;}
.y97{bottom:935.462340px;}
.y9{bottom:939.600000px;}
.y1f6{bottom:943.560000px;}
.y264{bottom:956.160000px;}
.y132{bottom:960.120000px;}
.y15b{bottom:961.380000px;}
.y10f{bottom:961.920000px;}
.y1f5{bottom:964.260000px;}
.y191{bottom:966.780000px;}
.y133{bottom:966.782340px;}
.y59{bottom:970.020000px;}
.y1b4{bottom:970.200000px;}
.yd7{bottom:970.920000px;}
.y37{bottom:971.280000px;}
.y94{bottom:973.440000px;}
.y192{bottom:973.442340px;}
.y8{bottom:974.160000px;}
.y1b5{bottom:976.862340px;}
.y95{bottom:980.102340px;}
.y10d{bottom:997.020000px;}
.y27e{bottom:997.740000px;}
.y130{bottom:1004.940000px;}
.y1f3{bottom:1008.180000px;}
.y190{bottom:1008.900000px;}
.y58{bottom:1011.420000px;}
.y212{bottom:1011.600000px;}
.y131{bottom:1011.602340px;}
.yd6{bottom:1012.320000px;}
.y52{bottom:1012.500000px;}
.y36{bottom:1012.680000px;}
.y15a{bottom:1014.840000px;}
.y1f4{bottom:1014.842340px;}
.y7{bottom:1015.560000px;}
.y213{bottom:1018.262340px;}
.y246{bottom:1022.580000px;}
.y12e{bottom:1049.580000px;}
.y18f{bottom:1050.300000px;}
.y1f1{bottom:1053.000000px;}
.y57{bottom:1053.360000px;}
.yd5{bottom:1053.720000px;}
.y35{bottom:1053.900000px;}
.y1b2{bottom:1056.240000px;}
.y12f{bottom:1056.242340px;}
.y159{bottom:1056.600000px;}
.y6{bottom:1056.960000px;}
.y1f2{bottom:1059.662340px;}
.y1b3{bottom:1062.902340px;}
.y245{bottom:1063.980000px;}
.y12c{bottom:1094.400000px;}
.y56{bottom:1095.120000px;}
.yd3{bottom:1097.640000px;}
.y5{bottom:1098.360000px;}
.y12d{bottom:1101.062340px;}
.yd4{bottom:1104.302340px;}
.y244{bottom:1105.380000px;}
.y54{bottom:1139.040000px;}
.y4{bottom:1139.760000px;}
.y34{bottom:1139.940000px;}
.y55{bottom:1145.702340px;}
.y1{bottom:1193.040000px;}
.h2f{height:15.796500px;}
.h2d{height:17.460000px;}
.h1e{height:34.378500px;}
.h1c{height:34.380000px;}
.h1b{height:34.560000px;}
.h1d{height:35.100000px;}
.h26{height:36.313892px;}
.h2e{height:36.996188px;}
.h28{height:37.771172px;}
.h7{height:38.158500px;}
.hd{height:38.158594px;}
.h8{height:38.160000px;}
.h17{height:41.725951px;}
.h19{height:41.726551px;}
.h16{height:41.824881px;}
.h1a{height:42.846947px;}
.h18{height:42.847547px;}
.hc{height:44.014703px;}
.h3{height:44.149219px;}
.h14{height:45.913140px;}
.h6{height:47.344922px;}
.h2a{height:47.869014px;}
.h30{height:47.869614px;}
.h2c{height:47.993854px;}
.h24{height:48.055562px;}
.hf{height:50.484375px;}
.he{height:58.651172px;}
.h22{height:58.654705px;}
.h25{height:58.670612px;}
.h1f{height:64.520411px;}
.h20{height:64.528066px;}
.h27{height:64.643484px;}
.ha{height:65.010937px;}
.h21{height:65.328505px;}
.h9{height:66.757500px;}
.h13{height:70.386117px;}
.h23{height:70.386717px;}
.h12{height:70.519790px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h10{height:70.669823px;}
.h4{height:72.562500px;}
.h5{height:74.704922px;}
.h2b{height:100.556814px;}
.h31{height:100.558014px;}
.h29{height:219.484500px;}
.h15{height:246.121500px;}
.h11{height:295.831500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.418500px;}
.w10{width:32.509500px;}
.wb{width:42.478500px;}
.w8{width:42.480000px;}
.wd{width:110.520000px;}
.wc{width:110.700000px;}
.w6{width:127.080000px;}
.w2{width:177.120000px;}
.wa{width:221.041500px;}
.w7{width:221.220000px;}
.w3{width:330.660000px;}
.we{width:337.332000px;}
.w4{width:592.791000px;}
.w5{width:679.183500px;}
.wf{width:679.339500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x92{left:5.382450px;}
.xa{left:8.100000px;}
.x37{left:10.122900px;}
.x53{left:11.880000px;}
.x91{left:14.182650px;}
.x4d{left:15.660000px;}
.x26{left:17.244600px;}
.x4f{left:20.160000px;}
.x39{left:22.150050px;}
.x8d{left:25.704750px;}
.x51{left:27.000000px;}
.x2b{left:28.740600px;}
.x8c{left:31.817400px;}
.x63{left:34.520250px;}
.x2a{left:37.722300px;}
.x54{left:43.200000px;}
.x52{left:45.900000px;}
.x62{left:50.957250px;}
.x38{left:53.560200px;}
.x29{left:55.685700px;}
.xf{left:62.460000px;}
.x45{left:63.540000px;}
.x4c{left:68.760000px;}
.x3c{left:75.185100px;}
.x83{left:81.507900px;}
.x61{left:82.914900px;}
.x3b{left:84.850650px;}
.x47{left:90.180000px;}
.x82{left:94.775700px;}
.x3a{left:96.414900px;}
.x90{left:104.482800px;}
.x1{left:106.380000px;}
.x60{left:107.470500px;}
.x25{left:111.597000px;}
.x17{left:116.100000px;}
.x28{left:118.013400px;}
.x11{left:134.280000px;}
.x2c{left:148.659750px;}
.x8e{left:152.186400px;}
.x9{left:157.320000px;}
.x4{left:158.940000px;}
.x7{left:167.220000px;}
.x6{left:169.920000px;}
.xe{left:171.000000px;}
.x33{left:184.680000px;}
.x64{left:206.694150px;}
.x24{left:225.180000px;}
.x8f{left:230.140500px;}
.x46{left:233.460000px;}
.x66{left:234.540000px;}
.x3d{left:236.517600px;}
.x72{left:239.940000px;}
.x5{left:242.460000px;}
.x3f{left:248.544450px;}
.x12{left:259.560000px;}
.x8{left:261.720000px;}
.x36{left:268.380000px;}
.x7f{left:270.540000px;}
.x65{left:271.620000px;}
.x3e{left:279.954600px;}
.x6f{left:286.380000px;}
.x27{left:294.997050px;}
.x68{left:303.480000px;}
.x40{left:311.239650px;}
.x2f{left:312.480000px;}
.x32{left:321.480000px;}
.x94{left:324.669450px;}
.x93{left:330.782100px;}
.x10{left:331.920000px;}
.x86{left:333.725850px;}
.x87{left:339.210750px;}
.x4e{left:344.160000px;}
.x8b{left:351.720000px;}
.xb{left:357.120000px;}
.xc{left:366.480000px;}
.x89{left:372.600000px;}
.x85{left:377.902050px;}
.x7a{left:379.260000px;}
.x5a{left:386.280000px;}
.x84{left:391.170900px;}
.x14{left:394.200000px;}
.x8a{left:404.460000px;}
.x6a{left:405.720000px;}
.x76{left:408.780000px;}
.xd{left:412.920000px;}
.x96{left:415.117950px;}
.x2d{left:417.420000px;}
.x56{left:419.400000px;}
.x1d{left:421.380000px;}
.x21{left:426.420000px;}
.x78{left:428.400000px;}
.x6d{left:432.540000px;}
.x7c{left:442.800000px;}
.x15{left:444.060000px;}
.x3{left:446.400000px;}
.x19{left:448.380000px;}
.x48{left:454.680000px;}
.x88{left:459.298350px;}
.x5f{left:460.800000px;}
.x1c{left:462.420000px;}
.x43{left:469.663650px;}
.x42{left:474.938550px;}
.x57{left:478.260000px;}
.x2e{left:484.920000px;}
.x58{left:489.780000px;}
.x49{left:497.160000px;}
.x55{left:504.360000px;}
.x41{left:506.348700px;}
.x74{left:511.020000px;}
.x31{left:516.600000px;}
.x4a{left:518.580000px;}
.x1e{left:523.440000px;}
.x22{left:532.260000px;}
.x44{left:537.639000px;}
.x95{left:540.775200px;}
.x70{left:549.180000px;}
.x1f{left:562.860000px;}
.x81{left:569.700000px;}
.x5c{left:577.260000px;}
.x97{left:589.443300px;}
.x79{left:592.380000px;}
.x67{left:601.380000px;}
.x18{left:603.360000px;}
.x1a{left:613.980000px;}
.x30{left:620.460000px;}
.x71{left:624.240000px;}
.x7b{left:625.860000px;}
.x50{left:629.100000px;}
.x5e{left:645.840000px;}
.x69{left:650.700000px;}
.x34{left:652.140000px;}
.x80{left:661.320000px;}
.x7e{left:664.020000px;}
.x20{left:670.860000px;}
.x5d{left:677.880000px;}
.x75{left:679.140000px;}
.x1b{left:684.180000px;}
.x73{left:692.460000px;}
.x6b{left:696.420000px;}
.x6e{left:700.380000px;}
.x23{left:704.880000px;}
.x5b{left:708.660000px;}
.x77{left:725.220000px;}
.x59{left:734.040000px;}
.x4b{left:739.620000px;}
.x7d{left:759.780000px;}
.x35{left:763.740000px;}
.x13{left:768.600000px;}
.x6c{left:773.820000px;}
.x2{left:777.600000px;}
.x16{left:786.600000px;}
@media print{
.v6{vertical-align:-76.508800pt;}
.v5{vertical-align:-59.520000pt;}
.v2{vertical-align:-24.320000pt;}
.vb{vertical-align:-19.855360pt;}
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-12.800000pt;}
.v9{vertical-align:-10.862720pt;}
.vc{vertical-align:-1.455467pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.932267pt;}
.va{vertical-align:10.880000pt;}
.v7{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.vd{vertical-align:46.833600pt;}
.ls42{letter-spacing:-1.920000pt;}
.ls25{letter-spacing:-1.472000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.009280pt;}
.ls5c{letter-spacing:-0.997157pt;}
.ls7{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.647680pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls56{letter-spacing:-0.584320pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls57{letter-spacing:-0.478080pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.424960pt;}
.lsd{letter-spacing:-0.412160pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls59{letter-spacing:-0.371840pt;}
.ls2e{letter-spacing:-0.318720pt;}
.lsc{letter-spacing:-0.294400pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.235520pt;}
.ls31{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.117760pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.053120pt;}
.ls3a{letter-spacing:-0.045440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000266pt;}
.ls47{letter-spacing:0.010624pt;}
.ls55{letter-spacing:0.013440pt;}
.ls3b{letter-spacing:0.017920pt;}
.ls4e{letter-spacing:0.018624pt;}
.ls0{letter-spacing:0.051200pt;}
.ls5b{letter-spacing:0.053120pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.070400pt;}
.ls5d{letter-spacing:0.086709pt;}
.ls53{letter-spacing:0.092800pt;}
.ls30{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.159360pt;}
.ls54{letter-spacing:0.169984pt;}
.ls20{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.212480pt;}
.ls50{letter-spacing:0.223104pt;}
.lsa{letter-spacing:0.235520pt;}
.ls4b{letter-spacing:0.239040pt;}
.ls6{letter-spacing:0.256000pt;}
.ls52{letter-spacing:0.260288pt;}
.lse{letter-spacing:0.294400pt;}
.ls48{letter-spacing:0.296960pt;}
.ls2b{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.324032pt;}
.ls3c{letter-spacing:0.340480pt;}
.ls8{letter-spacing:0.343040pt;}
.ls58{letter-spacing:0.355904pt;}
.ls16{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.390400pt;}
.ls17{letter-spacing:0.441600pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.454400pt;}
.ls4c{letter-spacing:0.483392pt;}
.ls11{letter-spacing:0.512000pt;}
.ls38{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.582400pt;}
.ls10{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls19{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.796800pt;}
.ls26{letter-spacing:0.832000pt;}
.ls5a{letter-spacing:0.943360pt;}
.ls41{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.434240pt;}
.ls2a{letter-spacing:2.146048pt;}
.ls40{letter-spacing:2.176000pt;}
.ls28{letter-spacing:2.560000pt;}
.ls51{letter-spacing:3.200000pt;}
.ls4f{letter-spacing:4.107520pt;}
.ls34{letter-spacing:5.050240pt;}
.ls44{letter-spacing:8.960000pt;}
.ls43{letter-spacing:14.010240pt;}
.ls23{letter-spacing:14.464000pt;}
.ls45{letter-spacing:17.344000pt;}
.ls39{letter-spacing:17.472000pt;}
.ls24{letter-spacing:17.664000pt;}
.ls22{letter-spacing:17.984000pt;}
.ls21{letter-spacing:22.970240pt;}
.ls4a{letter-spacing:81.558097pt;}
.ls3f{letter-spacing:172.800000pt;}
.ls46{letter-spacing:752.000000pt;}
.ls36{letter-spacing:2112.010240pt;}
.ws2b{word-spacing:-64.000000pt;}
.ws60{word-spacing:-53.120000pt;}
.ws2c{word-spacing:-50.368000pt;}
.ws5d{word-spacing:-49.728000pt;}
.ws48{word-spacing:-24.940480pt;}
.ws4a{word-spacing:-24.300480pt;}
.ws61{word-spacing:-20.806144pt;}
.ws54{word-spacing:-17.280000pt;}
.ws23{word-spacing:-16.768000pt;}
.ws15{word-spacing:-16.640000pt;}
.ws65{word-spacing:-16.512000pt;}
.ws27{word-spacing:-16.448000pt;}
.ws20{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws31{word-spacing:-16.192000pt;}
.ws17{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws45{word-spacing:-15.937333pt;}
.ws43{word-spacing:-15.937067pt;}
.ws22{word-spacing:-15.936000pt;}
.ws1d{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws29{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.552000pt;}
.ws24{word-spacing:-15.360000pt;}
.ws30{word-spacing:-15.168000pt;}
.ws5{word-spacing:-15.014400pt;}
.ws25{word-spacing:-14.720000pt;}
.ws6b{word-spacing:-14.636800pt;}
.ws55{word-spacing:-14.610667pt;}
.ws57{word-spacing:-14.608933pt;}
.ws2f{word-spacing:-14.528000pt;}
.ws52{word-spacing:-14.484480pt;}
.ws5c{word-spacing:-14.080000pt;}
.ws49{word-spacing:-13.824000pt;}
.ws4f{word-spacing:-13.598720pt;}
.ws50{word-spacing:-13.439360pt;}
.ws4e{word-spacing:-13.386240pt;}
.ws59{word-spacing:-13.280800pt;}
.ws35{word-spacing:-13.280000pt;}
.ws34{word-spacing:-13.226880pt;}
.ws67{word-spacing:-13.067520pt;}
.ws76{word-spacing:-12.961280pt;}
.ws51{word-spacing:-12.270720pt;}
.ws63{word-spacing:-11.697024pt;}
.ws74{word-spacing:-11.663360pt;}
.ws3{word-spacing:-11.063040pt;}
.ws7a{word-spacing:-10.925376pt;}
.ws77{word-spacing:-10.838667pt;}
.ws4{word-spacing:-10.720000pt;}
.ws79{word-spacing:-9.841509pt;}
.ws4c{word-spacing:-9.447733pt;}
.ws78{word-spacing:-8.765525pt;}
.ws33{word-spacing:-8.640000pt;}
.ws75{word-spacing:-7.810560pt;}
.ws72{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.765440pt;}
.ws53{word-spacing:-0.706560pt;}
.ws12{word-spacing:-0.647680pt;}
.ws21{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.637440pt;}
.ws66{word-spacing:-0.588800pt;}
.ws42{word-spacing:-0.384000pt;}
.ws69{word-spacing:-0.318720pt;}
.ws14{word-spacing:-0.294400pt;}
.wsa{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.235520pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.159360pt;}
.ws9{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.117760pt;}
.ws64{word-spacing:-0.106240pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws68{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.053120pt;}
.ws32{word-spacing:0.064000pt;}
.ws36{word-spacing:0.117760pt;}
.ws6{word-spacing:0.128000pt;}
.wsc{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.212480pt;}
.ws8{word-spacing:0.256000pt;}
.ws10{word-spacing:0.294400pt;}
.ws3b{word-spacing:0.318720pt;}
.ws71{word-spacing:0.371840pt;}
.ws28{word-spacing:0.384000pt;}
.ws11{word-spacing:0.412160pt;}
.ws1b{word-spacing:0.448000pt;}
.ws3d{word-spacing:0.478080pt;}
.ws1c{word-spacing:0.512000pt;}
.ws5a{word-spacing:0.576000pt;}
.ws70{word-spacing:0.584320pt;}
.ws1a{word-spacing:0.640000pt;}
.ws13{word-spacing:0.647680pt;}
.ws6f{word-spacing:0.743680pt;}
.wsb{word-spacing:0.832000pt;}
.ws26{word-spacing:0.896000pt;}
.ws41{word-spacing:1.088000pt;}
.ws3a{word-spacing:1.115520pt;}
.ws3f{word-spacing:1.221760pt;}
.ws1e{word-spacing:1.280000pt;}
.ws39{word-spacing:1.328000pt;}
.ws47{word-spacing:1.472000pt;}
.ws38{word-spacing:1.487360pt;}
.ws37{word-spacing:1.752960pt;}
.ws5b{word-spacing:1.920000pt;}
.ws73{word-spacing:2.112000pt;}
.ws2d{word-spacing:3.392000pt;}
.ws62{word-spacing:3.665280pt;}
.ws2e{word-spacing:4.032000pt;}
.ws6d{word-spacing:43.826268pt;}
.ws6c{word-spacing:43.826800pt;}
.ws4d{word-spacing:62.757073pt;}
.ws4b{word-spacing:62.757606pt;}
.ws56{word-spacing:71.349934pt;}
.ws44{word-spacing:157.266958pt;}
.ws5e{word-spacing:157.267490pt;}
.ws5f{word-spacing:226.243163pt;}
.ws46{word-spacing:282.136052pt;}
.ws6e{word-spacing:353.120553pt;}
.ws58{word-spacing:509.838708pt;}
._50{margin-left:-2605.888000pt;}
._11b{margin-left:-2590.144000pt;}
._ac{margin-left:-2588.992000pt;}
._145{margin-left:-2587.968000pt;}
._bb{margin-left:-2586.624000pt;}
._a1{margin-left:-2585.472000pt;}
._c6{margin-left:-2584.128000pt;}
._81{margin-left:-2582.784000pt;}
._3d{margin-left:-2581.632000pt;}
._52{margin-left:-2580.224000pt;}
._40{margin-left:-2578.496000pt;}
._13{margin-left:-2576.473600pt;}
._130{margin-left:-2574.976000pt;}
._8f{margin-left:-2574.080000pt;}
._f{margin-left:-2572.288000pt;}
._ab{margin-left:-2570.496000pt;}
._7f{margin-left:-2569.216000pt;}
._24{margin-left:-2567.936000pt;}
._10{margin-left:-2566.758400pt;}
._7d{margin-left:-2564.864000pt;}
._77{margin-left:-2563.648000pt;}
._125{margin-left:-2562.304000pt;}
._47{margin-left:-2560.896000pt;}
._a3{margin-left:-2559.744000pt;}
._2c{margin-left:-2558.784000pt;}
._8e{margin-left:-2556.992000pt;}
._2d{margin-left:-2555.328000pt;}
._20{margin-left:-2553.408000pt;}
._6b{margin-left:-2552.448000pt;}
._9c{margin-left:-2551.360000pt;}
._d8{margin-left:-2550.464000pt;}
._78{margin-left:-2549.504000pt;}
._11e{margin-left:-2548.416000pt;}
._95{margin-left:-2547.008000pt;}
._e8{margin-left:-2546.048000pt;}
._2f{margin-left:-2545.088000pt;}
._46{margin-left:-2543.808000pt;}
._e4{margin-left:-2542.912000pt;}
._8c{margin-left:-2541.888000pt;}
._1f{margin-left:-2540.864000pt;}
._41{margin-left:-2539.904000pt;}
._2b{margin-left:-2538.304000pt;}
._cf{margin-left:-2536.832000pt;}
._6d{margin-left:-2535.481600pt;}
._149{margin-left:-2534.208000pt;}
._45{margin-left:-2533.248000pt;}
._16b{margin-left:-2532.352000pt;}
._1a{margin-left:-2531.456000pt;}
._82{margin-left:-2530.496000pt;}
._36{margin-left:-2529.280000pt;}
._6c{margin-left:-2528.192000pt;}
._4a{margin-left:-2526.336000pt;}
._1c{margin-left:-2524.992000pt;}
._3a{margin-left:-2523.648000pt;}
._64{margin-left:-2522.688000pt;}
._7e{margin-left:-2521.664000pt;}
._c4{margin-left:-2519.872000pt;}
._4b{margin-left:-2518.848000pt;}
._a6{margin-left:-2517.824000pt;}
._de{margin-left:-2516.544000pt;}
._af{margin-left:-2515.584000pt;}
._26{margin-left:-2514.432000pt;}
._57{margin-left:-2513.152000pt;}
._5c{margin-left:-2511.424000pt;}
._2a{margin-left:-2510.528000pt;}
._1b{margin-left:-2509.184000pt;}
._98{margin-left:-2507.136000pt;}
._148{margin-left:-2505.664000pt;}
._b9{margin-left:-2504.505600pt;}
._31{margin-left:-2503.488000pt;}
._a0{margin-left:-2501.632000pt;}
._56{margin-left:-2500.672000pt;}
._6a{margin-left:-2499.264000pt;}
._b7{margin-left:-2498.048000pt;}
._151{margin-left:-2497.088000pt;}
._12{margin-left:-2495.321600pt;}
._174{margin-left:-2494.336000pt;}
._86{margin-left:-2493.120000pt;}
._124{margin-left:-2492.025600pt;}
._61{margin-left:-2490.944000pt;}
._b1{margin-left:-2489.920000pt;}
._5b{margin-left:-2488.768000pt;}
._3f{margin-left:-2487.808000pt;}
._69{margin-left:-2485.760000pt;}
._54{margin-left:-2484.288000pt;}
._21{margin-left:-2482.880000pt;}
._18{margin-left:-2481.088000pt;}
._59{margin-left:-2479.872000pt;}
._cd{margin-left:-2478.528000pt;}
._42{margin-left:-2477.632000pt;}
._119{margin-left:-2476.288000pt;}
._79{margin-left:-2475.200000pt;}
._74{margin-left:-2473.664000pt;}
._fc{margin-left:-2472.473600pt;}
._48{margin-left:-2471.296000pt;}
._ec{margin-left:-2470.400000pt;}
._5e{margin-left:-2469.120000pt;}
._51{margin-left:-2468.166400pt;}
._94{margin-left:-2466.880000pt;}
._23{margin-left:-2465.920000pt;}
._1d{margin-left:-2464.960000pt;}
._7a{margin-left:-2463.680000pt;}
._30{margin-left:-2462.720000pt;}
._b3{margin-left:-2461.248000pt;}
._10c{margin-left:-2460.352000pt;}
._118{margin-left:-2459.392000pt;}
._5f{margin-left:-2458.496000pt;}
._11{margin-left:-2457.149440pt;}
._14f{margin-left:-2455.808000pt;}
._38{margin-left:-2454.912000pt;}
._63{margin-left:-2453.952000pt;}
._137{margin-left:-2453.056000pt;}
._dc{margin-left:-2452.096000pt;}
._113{margin-left:-2450.624000pt;}
._6e{margin-left:-2449.536000pt;}
._71{margin-left:-2448.384000pt;}
._4c{margin-left:-2447.040000pt;}
._ca{margin-left:-2446.016000pt;}
._34{margin-left:-2444.672000pt;}
._4e{margin-left:-2443.456000pt;}
._144{margin-left:-2442.304000pt;}
._93{margin-left:-2441.331200pt;}
._49{margin-left:-2439.808000pt;}
._fe{margin-left:-2438.080000pt;}
._13e{margin-left:-2436.416000pt;}
._65{margin-left:-2435.392000pt;}
._105{margin-left:-2434.048000pt;}
._76{margin-left:-2432.704000pt;}
._2e{margin-left:-2430.720000pt;}
._db{margin-left:-2428.800000pt;}
._138{margin-left:-2427.456000pt;}
._90{margin-left:-2426.112000pt;}
._4d{margin-left:-2424.576000pt;}
._8b{margin-left:-2423.424000pt;}
._43{margin-left:-2421.888000pt;}
._17{margin-left:-2419.712000pt;}
._68{margin-left:-2418.233600pt;}
._1e{margin-left:-2417.344000pt;}
._e6{margin-left:-2416.179200pt;}
._80{margin-left:-2415.040000pt;}
._10e{margin-left:-2413.440000pt;}
._ff{margin-left:-2412.032000pt;}
._13f{margin-left:-2410.688000pt;}
._89{margin-left:-2408.960000pt;}
._25{margin-left:-2407.808000pt;}
._d3{margin-left:-2406.528000pt;}
._70{margin-left:-2405.568000pt;}
._104{margin-left:-2403.648000pt;}
._164{margin-left:-2402.432000pt;}
._c1{margin-left:-2401.024000pt;}
._62{margin-left:-2400.064000pt;}
._114{margin-left:-2398.656000pt;}
._91{margin-left:-2396.800000pt;}
._b8{margin-left:-2395.712000pt;}
._198{margin-left:-2394.816000pt;}
._14{margin-left:-2393.536000pt;}
._67{margin-left:-2392.000000pt;}
._92{margin-left:-2389.632000pt;}
._160{margin-left:-2387.648000pt;}
._58{margin-left:-2386.233600pt;}
._55{margin-left:-2384.320000pt;}
._179{margin-left:-2383.104000pt;}
._22{margin-left:-2381.888000pt;}
._9d{margin-left:-2380.928000pt;}
._15b{margin-left:-2379.776000pt;}
._60{margin-left:-2378.496000pt;}
._9b{margin-left:-2376.832000pt;}
._37{margin-left:-2373.504000pt;}
._3{margin-left:-2372.531200pt;}
._df{margin-left:-2369.536000pt;}
._4f{margin-left:-2368.320000pt;}
._19{margin-left:-2366.336000pt;}
._d0{margin-left:-2363.968000pt;}
._39{margin-left:-2362.432000pt;}
._c0{margin-left:-2361.216000pt;}
._7{margin-left:-2359.552000pt;}
._15e{margin-left:-2357.568000pt;}
._f3{margin-left:-2354.176000pt;}
._14a{margin-left:-2353.216000pt;}
._88{margin-left:-2351.232000pt;}
._7c{margin-left:-2347.513600pt;}
._73{margin-left:-2346.176000pt;}
._1b7{margin-left:-2343.168000pt;}
._44{margin-left:-2341.184000pt;}
._8d{margin-left:-2339.008000pt;}
._d1{margin-left:-2337.792000pt;}
._6f{margin-left:-2335.296000pt;}
._6{margin-left:-2333.902080pt;}
._1b4{margin-left:-2332.736000pt;}
._ce{margin-left:-2331.840000pt;}
._96{margin-left:-2329.856000pt;}
._84{margin-left:-2327.424000pt;}
._ed{margin-left:-2326.336000pt;}
._168{margin-left:-2322.688000pt;}
._c8{margin-left:-2321.216000pt;}
._5a{margin-left:-2319.552000pt;}
._190{margin-left:-2318.016000pt;}
._1ad{margin-left:-2315.392000pt;}
._dd{margin-left:-2313.856000pt;}
._110{margin-left:-2309.696000pt;}
._f6{margin-left:-2307.328000pt;}
._182{margin-left:-2305.408000pt;}
._ef{margin-left:-2304.512000pt;}
._99{margin-left:-2302.720000pt;}
._97{margin-left:-2301.504000pt;}
._f2{margin-left:-2300.032000pt;}
._172{margin-left:-2296.896000pt;}
._14d{margin-left:-2295.680000pt;}
._143{margin-left:-2294.592000pt;}
._e5{margin-left:-2293.248000pt;}
._12a{margin-left:-2284.160000pt;}
._72{margin-left:-2279.744000pt;}
._e0{margin-left:-2276.928000pt;}
._3b{margin-left:-2272.896000pt;}
._83{margin-left:-2271.168000pt;}
._b6{margin-left:-2268.736000pt;}
._d2{margin-left:-2264.064000pt;}
._cb{margin-left:-2261.120000pt;}
._9a{margin-left:-2259.136000pt;}
._b2{margin-left:-2257.408000pt;}
._154{margin-left:-2255.616000pt;}
._13b{margin-left:-2254.080000pt;}
._1a7{margin-left:-2251.456000pt;}
._d6{margin-left:-2246.016000pt;}
._111{margin-left:-2245.120000pt;}
._150{margin-left:-2243.520000pt;}
._75{margin-left:-2241.728000pt;}
._1a6{margin-left:-2239.232000pt;}
._180{margin-left:-2237.952000pt;}
._166{margin-left:-2233.664000pt;}
._10d{margin-left:-2224.704000pt;}
._19a{margin-left:-2221.312000pt;}
._1a8{margin-left:-2215.360000pt;}
._197{margin-left:-2208.000000pt;}
._194{margin-left:-2190.720000pt;}
._f1{margin-left:-2183.894720pt;}
._19f{margin-left:-2178.240000pt;}
._181{margin-left:-2176.128000pt;}
._9e{margin-left:-2174.144000pt;}
._189{margin-left:-2167.744000pt;}
._106{margin-left:-2163.392000pt;}
._c7{margin-left:-2157.952000pt;}
._da{margin-left:-2154.944000pt;}
._121{margin-left:-2153.088000pt;}
._1a0{margin-left:-2132.544000pt;}
._18c{margin-left:-2129.920000pt;}
._16a{margin-left:-2122.816000pt;}
._199{margin-left:-2121.472000pt;}
._11a{margin-left:-2116.736000pt;}
._12e{margin-left:-2111.552000pt;}
._85{margin-left:-2107.520000pt;}
._170{margin-left:-2098.496000pt;}
._1a9{margin-left:-2085.888000pt;}
._159{margin-left:-2079.616000pt;}
._4{margin-left:-2076.736000pt;}
._12b{margin-left:-2060.672000pt;}
._101{margin-left:-2035.328000pt;}
._193{margin-left:-2031.232000pt;}
._8{margin-left:-2023.104000pt;}
._c{margin-left:-2016.128000pt;}
._e{margin-left:-2014.853120pt;}
._17a{margin-left:-1980.352000pt;}
._1ae{margin-left:-1968.128000pt;}
._109{margin-left:-1963.904000pt;}
._1a1{margin-left:-1962.432000pt;}
._1b6{margin-left:-1960.512000pt;}
._13c{margin-left:-1933.824000pt;}
._b{margin-left:-1923.832320pt;}
._146{margin-left:-1904.384000pt;}
._1ac{margin-left:-1892.736000pt;}
._e2{margin-left:-1889.088000pt;}
._175{margin-left:-1885.696000pt;}
._185{margin-left:-1880.704000pt;}
._16c{margin-left:-1873.792000pt;}
._141{margin-left:-1859.904000pt;}
._1a2{margin-left:-1852.928000pt;}
._18a{margin-left:-1851.072000pt;}
._1a5{margin-left:-1849.408000pt;}
._191{margin-left:-1840.576000pt;}
._177{margin-left:-1834.816000pt;}
._147{margin-left:-1794.112000pt;}
._19c{margin-left:-1781.120000pt;}
._5d{margin-left:-1779.136000pt;}
._1b1{margin-left:-1776.320000pt;}
._1b3{margin-left:-1770.496000pt;}
._29{margin-left:-1758.208000pt;}
._27{margin-left:-1753.984000pt;}
._15c{margin-left:-1746.048000pt;}
._167{margin-left:-1731.712000pt;}
._186{margin-left:-1726.400000pt;}
._f8{margin-left:-1712.000000pt;}
._19b{margin-left:-1708.032000pt;}
._17e{margin-left:-1698.240000pt;}
._126{margin-left:-1696.768000pt;}
._1ab{margin-left:-1694.400000pt;}
._157{margin-left:-1692.672000pt;}
._1b2{margin-left:-1688.896000pt;}
._14b{margin-left:-1686.336000pt;}
._19e{margin-left:-1662.336000pt;}
._17f{margin-left:-1652.928000pt;}
._17d{margin-left:-1644.096000pt;}
._13a{margin-left:-1637.184000pt;}
._103{margin-left:-1627.904000pt;}
._142{margin-left:-1613.248000pt;}
._16e{margin-left:-1608.896000pt;}
._bf{margin-left:-1604.480000pt;}
._a4{margin-left:-1602.304000pt;}
._17c{margin-left:-1589.632000pt;}
._14e{margin-left:-1575.168000pt;}
._8a{margin-left:-1570.176000pt;}
._184{margin-left:-1568.256000pt;}
._131{margin-left:-1548.288000pt;}
._18b{margin-left:-1547.328000pt;}
._a5{margin-left:-1536.832000pt;}
._196{margin-left:-1530.752000pt;}
._1aa{margin-left:-1529.024000pt;}
._16d{margin-left:-1514.816000pt;}
._165{margin-left:-1511.424000pt;}
._17b{margin-left:-1508.992000pt;}
._bc{margin-left:-1503.680000pt;}
._162{margin-left:-1502.528000pt;}
._15a{margin-left:-1500.544000pt;}
._19d{margin-left:-1499.008000pt;}
._107{margin-left:-1488.640000pt;}
._14c{margin-left:-1486.208000pt;}
._102{margin-left:-1479.808000pt;}
._15d{margin-left:-1472.448000pt;}
._15f{margin-left:-1470.528000pt;}
._16{margin-left:-1469.440000pt;}
._1af{margin-left:-1466.752000pt;}
._171{margin-left:-1465.152000pt;}
._12d{margin-left:-1449.856000pt;}
._1a3{margin-left:-1443.840000pt;}
._178{margin-left:-1441.920000pt;}
._1a4{margin-left:-1434.816000pt;}
._188{margin-left:-1433.024000pt;}
._1b0{margin-left:-1429.952000pt;}
._16f{margin-left:-1427.712000pt;}
._18d{margin-left:-1401.088000pt;}
._163{margin-left:-1381.504000pt;}
._192{margin-left:-1377.920000pt;}
._ba{margin-left:-1373.312000pt;}
._18f{margin-left:-1354.880000pt;}
._2{margin-left:-1351.040000pt;}
._108{margin-left:-1349.760000pt;}
._173{margin-left:-1347.840000pt;}
._115{margin-left:-1344.704000pt;}
._f4{margin-left:-1328.064000pt;}
._c5{margin-left:-1325.376000pt;}
._12c{margin-left:-1316.992000pt;}
._15{margin-left:-1306.734080pt;}
._187{margin-left:-1299.776000pt;}
._33{margin-left:-1294.080000pt;}
._161{margin-left:-1285.504000pt;}
._176{margin-left:-1281.920000pt;}
._a7{margin-left:-1270.592000pt;}
._e1{margin-left:-1266.688000pt;}
._e9{margin-left:-1263.552000pt;}
._183{margin-left:-1251.712000pt;}
._134{margin-left:-1238.400000pt;}
._18e{margin-left:-1223.488000pt;}
._169{margin-left:-1217.920000pt;}
._156{margin-left:-1208.640000pt;}
._f5{margin-left:-1207.680000pt;}
._129{margin-left:-1201.216000pt;}
._a2{margin-left:-1190.841600pt;}
._7b{margin-left:-1151.360000pt;}
._aa{margin-left:-1086.080000pt;}
._ad{margin-left:-1080.256000pt;}
._11c{margin-left:-1065.984000pt;}
._c9{margin-left:-993.664000pt;}
._155{margin-left:-984.768000pt;}
._153{margin-left:-978.176000pt;}
._b5{margin-left:-970.240000pt;}
._fd{margin-left:-967.623680pt;}
._bd{margin-left:-940.736000pt;}
._d7{margin-left:-932.992000pt;}
._a9{margin-left:-895.488000pt;}
._139{margin-left:-890.688000pt;}
._b4{margin-left:-836.992000pt;}
._135{margin-left:-759.936000pt;}
._12f{margin-left:-746.135040pt;}
._fb{margin-left:-733.888000pt;}
._132{margin-left:-718.656000pt;}
._195{margin-left:-713.088000pt;}
._cc{margin-left:-709.440000pt;}
._66{margin-left:-702.528000pt;}
._120{margin-left:-693.440000pt;}
._11f{margin-left:-691.328000pt;}
._136{margin-left:-673.728000pt;}
._3e{margin-left:-655.808000pt;}
._9f{margin-left:-647.488000pt;}
._100{margin-left:-620.288000pt;}
._127{margin-left:-562.176000pt;}
._122{margin-left:-511.936000pt;}
._ae{margin-left:-508.608000pt;}
._d{margin-left:-499.586560pt;}
._d4{margin-left:-493.888000pt;}
._116{margin-left:-492.608000pt;}
._35{margin-left:-491.328000pt;}
._1b8{margin-left:-490.368000pt;}
._158{margin-left:-478.016000pt;}
._c3{margin-left:-462.272000pt;}
._10a{margin-left:-460.864000pt;}
._28{margin-left:-448.768000pt;}
._11d{margin-left:-432.192000pt;}
._13d{margin-left:-430.784000pt;}
._eb{margin-left:-422.208000pt;}
._133{margin-left:-417.280000pt;}
._128{margin-left:-401.280000pt;}
._10f{margin-left:-397.952000pt;}
._1b5{margin-left:-385.152000pt;}
._1bb{margin-left:-376.960000pt;}
._be{margin-left:-370.944000pt;}
._87{margin-left:-362.240000pt;}
._c2{margin-left:-360.960000pt;}
._123{margin-left:-358.592000pt;}
._a8{margin-left:-355.200000pt;}
._112{margin-left:-348.160000pt;}
._fa{margin-left:-346.368000pt;}
._ea{margin-left:-330.880000pt;}
._152{margin-left:-328.640000pt;}
._e3{margin-left:-312.512000pt;}
._9{margin-left:-172.160000pt;}
._a{margin-left:-170.869760pt;}
._1b9{margin-left:-168.960000pt;}
._5{margin-left:-142.080000pt;}
._d9{margin-left:-10.657280pt;}
._f0{margin-left:-6.272000pt;}
._3c{margin-left:-2.240000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.344000pt;}
._53{width:2.361600pt;}
._d5{width:3.584000pt;}
._117{width:17.472000pt;}
._b0{width:18.688000pt;}
._140{width:73.044667pt;}
._f9{width:81.558097pt;}
._e7{width:82.856960pt;}
._1bc{width:89.267049pt;}
._10b{width:100.567268pt;}
._1bd{width:106.069126pt;}
._1ba{width:172.800000pt;}
._ee{width:242.182856pt;}
._f7{width:751.552000pt;}
._32{width:752.576000pt;}
.fs11{font-size:31.530667pt;}
.fs4{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs9{font-size:37.790933pt;}
.fs8{font-size:37.880533pt;}
.fs2{font-size:42.880000pt;}
.fsf{font-size:43.354667pt;}
.fs10{font-size:43.467733pt;}
.fs3{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fsc{font-size:53.123200pt;}
.fsa{font-size:58.435733pt;}
.fsb{font-size:58.442667pt;}
.fse{font-size:58.547200pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:63.748267pt;}
.fs6{font-size:63.869333pt;}
.fs0{font-size:64.000000pt;}
.y16{bottom:-17.760000pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:3.507333pt;}
.y25a{bottom:3.507600pt;}
.y2aa{bottom:4.259867pt;}
.y2a8{bottom:5.027867pt;}
.y109{bottom:5.239067pt;}
.y1ee{bottom:5.240133pt;}
.y153{bottom:7.481200pt;}
.y22d{bottom:7.482667pt;}
.y2a5{bottom:7.764400pt;}
.yc8{bottom:9.560933pt;}
.y1a7{bottom:9.561333pt;}
.y110{bottom:18.080000pt;}
.y10e{bottom:18.240000pt;}
.y112{bottom:18.560000pt;}
.ye{bottom:19.040000pt;}
.y100{bottom:22.071867pt;}
.y1e5{bottom:22.072933pt;}
.y2ac{bottom:24.172400pt;}
.y2a4{bottom:24.172533pt;}
.y149{bottom:24.319333pt;}
.y231{bottom:24.320667pt;}
.y223{bottom:24.320800pt;}
.y2a3{bottom:35.880933pt;}
.yc9{bottom:38.249600pt;}
.y1a8{bottom:38.250000pt;}
.y16d{bottom:38.566800pt;}
.y25c{bottom:38.566933pt;}
.y101{bottom:45.229867pt;}
.y1e6{bottom:45.230933pt;}
.y14a{bottom:47.394133pt;}
.y224{bottom:47.395600pt;}
.y3{bottom:51.360000pt;}
.y29c{bottom:52.885600pt;}
.y2af{bottom:56.480267pt;}
.yca{bottom:67.394800pt;}
.y1a9{bottom:67.395333pt;}
.y2{bottom:68.640000pt;}
.y14b{bottom:68.711467pt;}
.y225{bottom:68.713067pt;}
.y102{bottom:70.449867pt;}
.y1e7{bottom:70.451067pt;}
.y2a6{bottom:70.637067pt;}
.y25d{bottom:72.106267pt;}
.y29d{bottom:74.016267pt;}
.y2ae{bottom:74.414533pt;}
.y16e{bottom:80.219867pt;}
.yc7{bottom:84.130933pt;}
.y28d{bottom:86.347360pt;}
.y277{bottom:86.390080pt;}
.y87{bottom:86.395040pt;}
.y1c9{bottom:86.555680pt;}
.y1a6{bottom:87.233600pt;}
.y242{bottom:88.163360pt;}
.y6e{bottom:89.600000pt;}
.y157{bottom:90.033467pt;}
.y14c{bottom:90.033600pt;}
.y226{bottom:90.034933pt;}
.y232{bottom:90.035067pt;}
.y4c{bottom:90.560000pt;}
.y93{bottom:91.040000pt;}
.y243{bottom:93.123840pt;}
.y51{bottom:93.280000pt;}
.y29e{bottom:95.143333pt;}
.y103{bottom:95.670000pt;}
.y1e8{bottom:95.671200pt;}
.ycb{bottom:95.922800pt;}
.y1aa{bottom:95.923200pt;}
.y146{bottom:99.040000pt;}
.y27d{bottom:99.520000pt;}
.y28c{bottom:101.712320pt;}
.y276{bottom:101.755040pt;}
.y92{bottom:102.880000pt;}
.y12b{bottom:103.360000pt;}
.y258{bottom:105.575840pt;}
.y240{bottom:105.582080pt;}
.yff{bottom:105.929600pt;}
.y1e4{bottom:105.930533pt;}
.y86{bottom:106.400000pt;}
.y1c8{bottom:106.720000pt;}
.y148{bottom:107.056000pt;}
.y156{bottom:107.056133pt;}
.y230{bottom:107.057467pt;}
.y222{bottom:107.057600pt;}
.yc4{bottom:108.160000pt;}
.yf0{bottom:110.400000pt;}
.y82{bottom:110.560000pt;}
.y241{bottom:110.563840pt;}
.y14d{bottom:111.355467pt;}
.y227{bottom:111.356933pt;}
.y25e{bottom:112.685600pt;}
.yc5{bottom:114.082080pt;}
.y2ad{bottom:115.127200pt;}
.y29f{bottom:116.274000pt;}
.y28b{bottom:117.077280pt;}
.y85{bottom:117.115040pt;}
.y275{bottom:117.120000pt;}
.y18d{bottom:117.760000pt;}
.y24{bottom:118.429440pt;}
.y1c7{bottom:118.560000pt;}
.y169{bottom:119.680000pt;}
.y16f{bottom:120.799067pt;}
.y104{bottom:120.890133pt;}
.y1e9{bottom:120.891200pt;}
.y257{bottom:121.259520pt;}
.y23f{bottom:121.425120pt;}
.y210{bottom:123.200000pt;}
.y220{bottom:123.360000pt;}
.y185{bottom:123.680000pt;}
.y18e{bottom:123.682080pt;}
.ycc{bottom:124.450667pt;}
.y1ab{bottom:124.451200pt;}
.y6d{bottom:126.400000pt;}
.y4b{bottom:127.360000pt;}
.y211{bottom:129.122080pt;}
.y50{bottom:130.080000pt;}
.y28a{bottom:132.442240pt;}
.y14e{bottom:132.672800pt;}
.y158{bottom:132.672933pt;}
.y228{bottom:132.674267pt;}
.y274{bottom:133.600000pt;}
.y145{bottom:135.840000pt;}
.y27c{bottom:136.320000pt;}
.y256{bottom:136.624480pt;}
.y23e{bottom:136.949440pt;}
.y84{bottom:137.120000pt;}
.y2a0{bottom:137.404667pt;}
.y2ab{bottom:137.404800pt;}
.y1e1{bottom:138.080000pt;}
.y12a{bottom:140.160000pt;}
.y1e2{bottom:144.002080pt;}
.y105{bottom:146.110267pt;}
.y1ea{bottom:146.111333pt;}
.y81{bottom:147.360000pt;}
.y289{bottom:147.807200pt;}
.yc2{bottom:147.840000pt;}
.y16c{bottom:147.957067pt;}
.y25b{bottom:147.957333pt;}
.y83{bottom:148.960000pt;}
.yee{bottom:149.920000pt;}
.y280{bottom:150.880000pt;}
.y255{bottom:151.989440pt;}
.y23{bottom:152.182400pt;}
.y23d{bottom:152.314400pt;}
.ycd{bottom:152.978667pt;}
.y1ac{bottom:152.979067pt;}
.y25f{bottom:153.264800pt;}
.yc3{bottom:153.762080pt;}
.y14f{bottom:153.994800pt;}
.y229{bottom:153.996267pt;}
.y18c{bottom:155.200000pt;}
.yef{bottom:155.842080pt;}
.y1a4{bottom:156.000000pt;}
.y168{bottom:156.480000pt;}
.y2a1{bottom:158.535867pt;}
.y21f{bottom:160.160000pt;}
.y184{bottom:160.480000pt;}
.y20f{bottom:160.640000pt;}
.y170{bottom:161.383467pt;}
.y288{bottom:163.172160pt;}
.y6c{bottom:163.200000pt;}
.y91{bottom:163.360000pt;}
.y4a{bottom:164.160000pt;}
.y4f{bottom:166.880000pt;}
.y254{bottom:167.354400pt;}
.y106{bottom:171.330933pt;}
.y1eb{bottom:171.332000pt;}
.y23c{bottom:172.160000pt;}
.y144{bottom:172.640000pt;}
.y27b{bottom:173.120000pt;}
.y10b{bottom:174.102533pt;}
.y1f0{bottom:174.103600pt;}
.y155{bottom:174.186000pt;}
.y22f{bottom:174.187467pt;}
.y150{bottom:175.312800pt;}
.y22a{bottom:175.314267pt;}
.yaf{bottom:176.960000pt;}
.y1a3{bottom:177.280000pt;}
.y1df{bottom:177.920000pt;}
.y287{bottom:178.377760pt;}
.y21e{bottom:178.560000pt;}
.y2a2{bottom:179.666267pt;}
.yd2{bottom:181.185467pt;}
.y1b1{bottom:181.185867pt;}
.yce{bottom:181.506533pt;}
.y1ad{bottom:181.507067pt;}
.y1e0{bottom:183.842080pt;}
.y23b{bottom:184.000000pt;}
.y80{bottom:184.160000pt;}
.yc1{bottom:185.280000pt;}
.y10a{bottom:185.326267pt;}
.y1ef{bottom:185.327333pt;}
.y154{bottom:185.409733pt;}
.y22e{bottom:185.411200pt;}
.y22{bottom:185.788160pt;}
.y253{bottom:187.200000pt;}
.y27f{bottom:187.680000pt;}
.yec{bottom:189.600000pt;}
.y167{bottom:193.280000pt;}
.y286{bottom:193.742720pt;}
.y260{bottom:193.844000pt;}
.y18a{bottom:194.400000pt;}
.y1a2{bottom:194.560000pt;}
.y1a5{bottom:194.674667pt;}
.yed{bottom:195.522080pt;}
.y10c{bottom:196.550267pt;}
.y107{bottom:196.550400pt;}
.y1ec{bottom:196.551467pt;}
.y151{bottom:196.633867pt;}
.y22b{bottom:196.635333pt;}
.y183{bottom:197.280000pt;}
.y252{bottom:199.040000pt;}
.y20d{bottom:199.680000pt;}
.y6b{bottom:200.000000pt;}
.y90{bottom:200.160000pt;}
.yd1{bottom:200.312933pt;}
.y1b0{bottom:200.313467pt;}
.y18b{bottom:200.322080pt;}
.y49{bottom:200.960000pt;}
.y171{bottom:201.962667pt;}
.y263{bottom:202.512667pt;}
.y4e{bottom:203.680000pt;}
.y20e{bottom:205.602080pt;}
.y285{bottom:209.107680pt;}
.y143{bottom:209.440000pt;}
.y27a{bottom:209.920000pt;}
.ycf{bottom:210.035067pt;}
.y1ae{bottom:210.035600pt;}
.y108{bottom:212.432933pt;}
.y152{bottom:212.433733pt;}
.y1ed{bottom:212.434133pt;}
.y22c{bottom:212.435200pt;}
.y174{bottom:212.473067pt;}
.y129{bottom:213.760000pt;}
.y1de{bottom:215.360000pt;}
.yad{bottom:216.000000pt;}
.y262{bottom:218.288800pt;}
.y21{bottom:219.541120pt;}
.y21d{bottom:220.800000pt;}
.y7f{bottom:220.960000pt;}
.yae{bottom:221.922080pt;}
.y284{bottom:224.472640pt;}
.ybf{bottom:224.480000pt;}
.y173{bottom:228.249200pt;}
.yea{bottom:229.440000pt;}
.y33{bottom:229.763840pt;}
.y166{bottom:230.080000pt;}
.yc0{bottom:230.402080pt;}
.y182{bottom:234.080000pt;}
.y261{bottom:234.428933pt;}
.y29a{bottom:235.360000pt;}
.yeb{bottom:235.362080pt;}
.y6a{bottom:236.800000pt;}
.y8f{bottom:236.960000pt;}
.y48{bottom:237.760000pt;}
.y21c{bottom:238.240000pt;}
.yd0{bottom:238.562400pt;}
.y1af{bottom:238.562933pt;}
.y221{bottom:238.625333pt;}
.y20b{bottom:239.520000pt;}
.y283{bottom:239.837600pt;}
.y189{bottom:240.002080pt;}
.y4d{bottom:240.480000pt;}
.y172{bottom:242.542400pt;}
.y20c{bottom:245.442080pt;}
.y142{bottom:246.240000pt;}
.y279{bottom:246.720000pt;}
.y251{bottom:247.520000pt;}
.y1dd{bottom:252.160000pt;}
.y127{bottom:252.800000pt;}
.y20{bottom:253.294080pt;}
.yab{bottom:255.840000pt;}
.y299{bottom:256.480000pt;}
.y7e{bottom:257.760000pt;}
.y128{bottom:258.722080pt;}
.y282{bottom:260.480000pt;}
.y273{bottom:261.280000pt;}
.yac{bottom:261.762080pt;}
.ybe{bottom:261.920000pt;}
.y165{bottom:266.880000pt;}
.ye8{bottom:269.280000pt;}
.y181{bottom:270.880000pt;}
.y281{bottom:272.480000pt;}
.y69{bottom:273.600000pt;}
.y187{bottom:273.920000pt;}
.y47{bottom:274.560000pt;}
.ye9{bottom:275.202080pt;}
.y8e{bottom:276.480000pt;}
.y20a{bottom:276.960000pt;}
.y32{bottom:277.280000pt;}
.y298{bottom:277.600000pt;}
.y188{bottom:279.842080pt;}
.y278{bottom:283.520000pt;}
.y250{bottom:284.320000pt;}
.y140{bottom:285.280000pt;}
.y1f{bottom:287.047040pt;}
.y1dc{bottom:288.960000pt;}
.y126{bottom:290.240000pt;}
.y141{bottom:291.202080pt;}
.yaa{bottom:293.280000pt;}
.y7d{bottom:294.400000pt;}
.y272{bottom:298.080000pt;}
.ybd{bottom:298.720000pt;}
.y297{bottom:298.880000pt;}
.y164{bottom:303.680000pt;}
.y180{bottom:307.680000pt;}
.ye6{bottom:308.960000pt;}
.y68{bottom:310.400000pt;}
.y46{bottom:311.360000pt;}
.y177{bottom:312.640000pt;}
.y8d{bottom:313.280000pt;}
.y31{bottom:314.080000pt;}
.ye7{bottom:314.882080pt;}
.y208{bottom:316.000000pt;}
.y178{bottom:318.562080pt;}
.y296{bottom:320.000000pt;}
.y1e{bottom:320.800000pt;}
.y24f{bottom:321.120000pt;}
.y209{bottom:321.922080pt;}
.y13e{bottom:325.120000pt;}
.y1da{bottom:328.000000pt;}
.y124{bottom:329.440000pt;}
.ya9{bottom:330.080000pt;}
.y13f{bottom:331.042080pt;}
.y7c{bottom:331.200000pt;}
.y1db{bottom:333.922080pt;}
.y271{bottom:334.880000pt;}
.y125{bottom:335.362080pt;}
.ybb{bottom:337.760000pt;}
.y163{bottom:340.480000pt;}
.y295{bottom:341.120000pt;}
.ybc{bottom:343.682080pt;}
.y17f{bottom:344.480000pt;}
.ye5{bottom:346.400000pt;}
.y67{bottom:347.040000pt;}
.y45{bottom:348.160000pt;}
.y8c{bottom:350.080000pt;}
.y30{bottom:350.880000pt;}
.y1d{bottom:354.552960pt;}
.y206{bottom:355.840000pt;}
.y24e{bottom:357.920000pt;}
.y207{bottom:361.762080pt;}
.y294{bottom:362.240000pt;}
.y13c{bottom:364.800000pt;}
.y1d8{bottom:367.840000pt;}
.y7b{bottom:368.000000pt;}
.ya7{bottom:369.120000pt;}
.y13d{bottom:370.722080pt;}
.y270{bottom:371.520000pt;}
.y1d9{bottom:373.762080pt;}
.ya8{bottom:375.042080pt;}
.yba{bottom:375.200000pt;}
.y162{bottom:377.280000pt;}
.y17e{bottom:381.280000pt;}
.ye4{bottom:383.200000pt;}
.y293{bottom:383.360000pt;}
.y66{bottom:383.840000pt;}
.y44{bottom:384.960000pt;}
.y8b{bottom:386.880000pt;}
.y2f{bottom:387.520000pt;}
.y1c{bottom:388.158720pt;}
.yfc{bottom:392.160000pt;}
.y205{bottom:393.280000pt;}
.y24d{bottom:394.720000pt;}
.yfd{bottom:398.082080pt;}
.y13b{bottom:402.240000pt;}
.y23a{bottom:403.363840pt;}
.y1c6{bottom:403.680000pt;}
.y292{bottom:404.640000pt;}
.y7a{bottom:404.800000pt;}
.ya6{bottom:406.560000pt;}
.y1d6{bottom:407.520000pt;}
.y26f{bottom:408.320000pt;}
.y122{bottom:408.960000pt;}
.y1d7{bottom:413.442080pt;}
.y161{bottom:414.080000pt;}
.yb8{bottom:414.400000pt;}
.y123{bottom:414.882080pt;}
.y17d{bottom:418.080000pt;}
.ye3{bottom:420.000000pt;}
.yb9{bottom:420.322080pt;}
.y65{bottom:420.640000pt;}
.y43{bottom:421.760000pt;}
.y8a{bottom:423.680000pt;}
.y1b{bottom:423.840000pt;}
.y2e{bottom:424.320000pt;}
.y291{bottom:425.760000pt;}
.yfb{bottom:429.600000pt;}
.y24c{bottom:431.520000pt;}
.y203{bottom:432.320000pt;}
.y204{bottom:438.242080pt;}
.y13a{bottom:439.040000pt;}
.y1c5{bottom:440.480000pt;}
.y79{bottom:441.600000pt;}
.ya5{bottom:443.360000pt;}
.y26e{bottom:445.120000pt;}
.y160{bottom:445.760000pt;}
.y121{bottom:446.400000pt;}
.y290{bottom:446.880000pt;}
.y1d4{bottom:447.360000pt;}
.y239{bottom:450.880000pt;}
.yb7{bottom:451.840000pt;}
.y1d5{bottom:453.282080pt;}
.y17c{bottom:454.880000pt;}
.ye2{bottom:456.800000pt;}
.y64{bottom:457.440000pt;}
.y42{bottom:458.560000pt;}
.y1a{bottom:458.732800pt;}
.y139{bottom:460.320000pt;}
.y89{bottom:460.480000pt;}
.y2d{bottom:461.120000pt;}
.y78{bottom:462.880000pt;}
.y15f{bottom:467.040000pt;}
.y28f{bottom:468.000000pt;}
.y24b{bottom:468.320000pt;}
.yf9{bottom:468.640000pt;}
.y202{bottom:469.760000pt;}
.yfa{bottom:474.562080pt;}
.y1c3{bottom:479.520000pt;}
.y21b{bottom:480.160000pt;}
.y1a1{bottom:480.480000pt;}
.y138{bottom:481.440000pt;}
.y26d{bottom:481.920000pt;}
.ya3{bottom:482.560000pt;}
.y77{bottom:484.000000pt;}
.y11f{bottom:485.440000pt;}
.y1c4{bottom:485.442080pt;}
.y1d2{bottom:487.040000pt;}
.y238{bottom:487.680000pt;}
.ya4{bottom:488.482080pt;}
.yb5{bottom:490.880000pt;}
.y120{bottom:491.362080pt;}
.y17b{bottom:491.680000pt;}
.y19{bottom:492.485760pt;}
.y1d3{bottom:492.962080pt;}
.ye1{bottom:493.600000pt;}
.y63{bottom:494.240000pt;}
.y15e{bottom:495.040000pt;}
.y16a{bottom:495.105333pt;}
.y41{bottom:495.360000pt;}
.yb6{bottom:496.802080pt;}
.y176{bottom:497.280000pt;}
.y88{bottom:497.600000pt;}
.y2c{bottom:497.920000pt;}
.y137{bottom:498.880000pt;}
.y147{bottom:499.169333pt;}
.y28e{bottom:500.800000pt;}
.y29b{bottom:501.018667pt;}
.y76{bottom:505.120000pt;}
.yf8{bottom:506.080000pt;}
.y201{bottom:506.560000pt;}
.y1c2{bottom:516.960000pt;}
.y1a0{bottom:517.280000pt;}
.y26c{bottom:518.720000pt;}
.ya2{bottom:520.000000pt;}
.y237{bottom:524.800000pt;}
.y200{bottom:524.804480pt;}
.y11d{bottom:525.280000pt;}
.y18{bottom:526.238720pt;}
.y75{bottom:526.240000pt;}
.y1d0{bottom:526.880000pt;}
.yb4{bottom:528.320000pt;}
.ye0{bottom:530.400000pt;}
.y179{bottom:530.720000pt;}
.y62{bottom:531.040000pt;}
.y11e{bottom:531.202080pt;}
.y40{bottom:532.160000pt;}
.y1d1{bottom:532.802080pt;}
.y175{bottom:534.400000pt;}
.y2b{bottom:534.720000pt;}
.y17a{bottom:536.642080pt;}
.y1ff{bottom:541.600000pt;}
.y24a{bottom:541.920000pt;}
.yf6{bottom:545.280000pt;}
.y74{bottom:547.520000pt;}
.y19f{bottom:547.840000pt;}
.yf7{bottom:551.202080pt;}
.y21a{bottom:553.760000pt;}
.y26b{bottom:555.520000pt;}
.y1fe{bottom:555.840000pt;}
.y1c0{bottom:556.160000pt;}
.ya0{bottom:559.040000pt;}
.y17{bottom:561.920000pt;}
.y1c1{bottom:562.082080pt;}
.y11c{bottom:562.720000pt;}
.y2a7{bottom:563.094667pt;}
.y1cf{bottom:564.320000pt;}
.ya1{bottom:564.962080pt;}
.yb3{bottom:565.120000pt;}
.ydf{bottom:567.200000pt;}
.y61{bottom:567.840000pt;}
.y73{bottom:568.640000pt;}
.y186{bottom:568.800000pt;}
.y3f{bottom:568.960000pt;}
.y2a{bottom:571.520000pt;}
.y249{bottom:573.760000pt;}
.y14{bottom:576.800000pt;}
.y2a9{bottom:579.354667pt;}
.yf5{bottom:582.720000pt;}
.y1fd{bottom:586.560000pt;}
.y19d{bottom:587.040000pt;}
.y72{bottom:589.760000pt;}
.y219{bottom:590.560000pt;}
.y15{bottom:592.320000pt;}
.y19e{bottom:592.962080pt;}
.y1bf{bottom:593.600000pt;}
.y248{bottom:594.880000pt;}
.y9f{bottom:596.480000pt;}
.y236{bottom:598.720000pt;}
.y1ce{bottom:601.120000pt;}
.y11a{bottom:601.760000pt;}
.yb2{bottom:601.920000pt;}
.yde{bottom:604.000000pt;}
.y60{bottom:604.640000pt;}
.y3e{bottom:605.760000pt;}
.y11b{bottom:607.682080pt;}
.y29{bottom:608.320000pt;}
.y12{bottom:610.720000pt;}
.y71{bottom:610.880000pt;}
.y1fc{bottom:617.280000pt;}
.yf4{bottom:619.520000pt;}
.yb1{bottom:620.320000pt;}
.y247{bottom:623.040000pt;}
.y259{bottom:623.156000pt;}
.y13{bottom:626.240000pt;}
.y19b{bottom:626.720000pt;}
.y218{bottom:627.360000pt;}
.y26a{bottom:629.120000pt;}
.y1be{bottom:630.400000pt;}
.y70{bottom:632.160000pt;}
.y19c{bottom:632.642080pt;}
.y9e{bottom:633.280000pt;}
.y235{bottom:636.000000pt;}
.y1cd{bottom:637.920000pt;}
.y119{bottom:639.200000pt;}
.yf3{bottom:640.640000pt;}
.ydd{bottom:640.800000pt;}
.y5f{bottom:641.440000pt;}
.y3d{bottom:642.560000pt;}
.y10{bottom:644.640000pt;}
.y28{bottom:645.120000pt;}
.y1fb{bottom:648.640000pt;}
.y6f{bottom:649.440000pt;}
.yb0{bottom:653.598720pt;}
.yc6{bottom:653.678667pt;}
.y1cc{bottom:659.040000pt;}
.y11{bottom:660.160000pt;}
.yf2{bottom:661.760000pt;}
.y269{bottom:665.920000pt;}
.y199{bottom:666.560000pt;}
.y1bc{bottom:669.440000pt;}
.y9c{bottom:672.480000pt;}
.y19a{bottom:672.482080pt;}
.y234{bottom:673.120000pt;}
.y1bd{bottom:675.362080pt;}
.y118{bottom:676.000000pt;}
.ydc{bottom:677.920000pt;}
.y5e{bottom:678.240000pt;}
.y9d{bottom:678.402080pt;}
.yd{bottom:678.560000pt;}
.yf1{bottom:679.200000pt;}
.y3c{bottom:679.360000pt;}
.yfe{bottom:679.578667pt;}
.y1cb{bottom:680.160000pt;}
.y1fa{bottom:680.480000pt;}
.y27{bottom:681.920000pt;}
.yf{bottom:694.080000pt;}
.y117{bottom:696.643200pt;}
.y1ca{bottom:697.600000pt;}
.y1e3{bottom:697.976000pt;}
.y268{bottom:702.720000pt;}
.y197{bottom:706.240000pt;}
.y1ba{bottom:709.280000pt;}
.y233{bottom:709.920000pt;}
.y1f9{bottom:711.840000pt;}
.y9a{bottom:712.160000pt;}
.y198{bottom:712.162080pt;}
.y5d{bottom:715.040000pt;}
.y1bb{bottom:715.202080pt;}
.ydb{bottom:715.520000pt;}
.y116{bottom:716.000000pt;}
.y3b{bottom:716.160000pt;}
.y9b{bottom:718.082080pt;}
.yc{bottom:718.720000pt;}
.y115{bottom:730.400000pt;}
.y267{bottom:739.520000pt;}
.y136{bottom:740.800000pt;}
.y196{bottom:743.680000pt;}
.y216{bottom:746.080000pt;}
.y1b9{bottom:746.720000pt;}
.y99{bottom:749.600000pt;}
.y5c{bottom:751.840000pt;}
.y217{bottom:752.002080pt;}
.yda{bottom:752.640000pt;}
.y53{bottom:752.800000pt;}
.y3a{bottom:752.960000pt;}
.yb{bottom:755.520000pt;}
.y114{bottom:761.120000pt;}
.y1f8{bottom:765.120000pt;}
.y266{bottom:776.320000pt;}
.y135{bottom:777.600000pt;}
.y195{bottom:780.480000pt;}
.y15d{bottom:780.960000pt;}
.y215{bottom:783.520000pt;}
.y1b7{bottom:785.760000pt;}
.y98{bottom:786.400000pt;}
.y5b{bottom:788.640000pt;}
.yd9{bottom:789.440000pt;}
.y39{bottom:789.760000pt;}
.y113{bottom:791.680000pt;}
.y1b8{bottom:791.682080pt;}
.y26{bottom:792.320000pt;}
.ya{bottom:798.400000pt;}
.y1f7{bottom:801.920000pt;}
.y265{bottom:813.120000pt;}
.y134{bottom:814.400000pt;}
.y15c{bottom:817.760000pt;}
.y193{bottom:819.680000pt;}
.y214{bottom:820.320000pt;}
.y111{bottom:823.040000pt;}
.y1b6{bottom:823.200000pt;}
.y5a{bottom:825.440000pt;}
.y96{bottom:825.600000pt;}
.y194{bottom:825.602080pt;}
.yd8{bottom:826.240000pt;}
.y38{bottom:826.560000pt;}
.y25{bottom:829.120000pt;}
.y97{bottom:831.522080pt;}
.y9{bottom:835.200000pt;}
.y1f6{bottom:838.720000pt;}
.y264{bottom:849.920000pt;}
.y132{bottom:853.440000pt;}
.y15b{bottom:854.560000pt;}
.y10f{bottom:855.040000pt;}
.y1f5{bottom:857.120000pt;}
.y191{bottom:859.360000pt;}
.y133{bottom:859.362080pt;}
.y59{bottom:862.240000pt;}
.y1b4{bottom:862.400000pt;}
.yd7{bottom:863.040000pt;}
.y37{bottom:863.360000pt;}
.y94{bottom:865.280000pt;}
.y192{bottom:865.282080pt;}
.y8{bottom:865.920000pt;}
.y1b5{bottom:868.322080pt;}
.y95{bottom:871.202080pt;}
.y10d{bottom:886.240000pt;}
.y27e{bottom:886.880000pt;}
.y130{bottom:893.280000pt;}
.y1f3{bottom:896.160000pt;}
.y190{bottom:896.800000pt;}
.y58{bottom:899.040000pt;}
.y212{bottom:899.200000pt;}
.y131{bottom:899.202080pt;}
.yd6{bottom:899.840000pt;}
.y52{bottom:900.000000pt;}
.y36{bottom:900.160000pt;}
.y15a{bottom:902.080000pt;}
.y1f4{bottom:902.082080pt;}
.y7{bottom:902.720000pt;}
.y213{bottom:905.122080pt;}
.y246{bottom:908.960000pt;}
.y12e{bottom:932.960000pt;}
.y18f{bottom:933.600000pt;}
.y1f1{bottom:936.000000pt;}
.y57{bottom:936.320000pt;}
.yd5{bottom:936.640000pt;}
.y35{bottom:936.800000pt;}
.y1b2{bottom:938.880000pt;}
.y12f{bottom:938.882080pt;}
.y159{bottom:939.200000pt;}
.y6{bottom:939.520000pt;}
.y1f2{bottom:941.922080pt;}
.y1b3{bottom:944.802080pt;}
.y245{bottom:945.760000pt;}
.y12c{bottom:972.800000pt;}
.y56{bottom:973.440000pt;}
.yd3{bottom:975.680000pt;}
.y5{bottom:976.320000pt;}
.y12d{bottom:978.722080pt;}
.yd4{bottom:981.602080pt;}
.y244{bottom:982.560000pt;}
.y54{bottom:1012.480000pt;}
.y4{bottom:1013.120000pt;}
.y34{bottom:1013.280000pt;}
.y55{bottom:1018.402080pt;}
.y1{bottom:1060.480000pt;}
.h2f{height:14.041333pt;}
.h2d{height:15.520000pt;}
.h1e{height:30.558667pt;}
.h1c{height:30.560000pt;}
.h1b{height:30.720000pt;}
.h1d{height:31.200000pt;}
.h26{height:32.279015pt;}
.h2e{height:32.885500pt;}
.h28{height:33.574375pt;}
.h7{height:33.918667pt;}
.hd{height:33.918750pt;}
.h8{height:33.920000pt;}
.h17{height:37.089734pt;}
.h19{height:37.090268pt;}
.h16{height:37.177672pt;}
.h1a{height:38.086175pt;}
.h18{height:38.086708pt;}
.hc{height:39.124180pt;}
.h3{height:39.243750pt;}
.h14{height:40.811680pt;}
.h6{height:42.084375pt;}
.h2a{height:42.550234pt;}
.h30{height:42.550768pt;}
.h2c{height:42.661203pt;}
.h24{height:42.716055pt;}
.hf{height:44.875000pt;}
.he{height:52.134375pt;}
.h22{height:52.137516pt;}
.h25{height:52.151655pt;}
.h1f{height:57.351477pt;}
.h20{height:57.358281pt;}
.h27{height:57.460875pt;}
.ha{height:57.787500pt;}
.h21{height:58.069782pt;}
.h9{height:59.340000pt;}
.h13{height:62.565438pt;}
.h23{height:62.565971pt;}
.h12{height:62.684258pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h10{height:62.817620pt;}
.h4{height:64.500000pt;}
.h5{height:66.404375pt;}
.h2b{height:89.383834pt;}
.h31{height:89.384901pt;}
.h29{height:195.097333pt;}
.h15{height:218.774667pt;}
.h11{height:262.961333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:19.038667pt;}
.w10{width:28.897333pt;}
.wb{width:37.758667pt;}
.w8{width:37.760000pt;}
.wd{width:98.240000pt;}
.wc{width:98.400000pt;}
.w6{width:112.960000pt;}
.w2{width:157.440000pt;}
.wa{width:196.481333pt;}
.w7{width:196.640000pt;}
.w3{width:293.920000pt;}
.we{width:299.850667pt;}
.w4{width:526.925333pt;}
.w5{width:603.718667pt;}
.wf{width:603.857333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x92{left:4.784400pt;}
.xa{left:7.200000pt;}
.x37{left:8.998133pt;}
.x53{left:10.560000pt;}
.x91{left:12.606800pt;}
.x4d{left:13.920000pt;}
.x26{left:15.328533pt;}
.x4f{left:17.920000pt;}
.x39{left:19.688933pt;}
.x8d{left:22.848667pt;}
.x51{left:24.000000pt;}
.x2b{left:25.547200pt;}
.x8c{left:28.282133pt;}
.x63{left:30.684667pt;}
.x2a{left:33.530933pt;}
.x54{left:38.400000pt;}
.x52{left:40.800000pt;}
.x62{left:45.295333pt;}
.x38{left:47.609067pt;}
.x29{left:49.498400pt;}
.xf{left:55.520000pt;}
.x45{left:56.480000pt;}
.x4c{left:61.120000pt;}
.x3c{left:66.831200pt;}
.x83{left:72.451467pt;}
.x61{left:73.702133pt;}
.x3b{left:75.422800pt;}
.x47{left:80.160000pt;}
.x82{left:84.245067pt;}
.x3a{left:85.702133pt;}
.x90{left:92.873600pt;}
.x1{left:94.560000pt;}
.x60{left:95.529333pt;}
.x25{left:99.197333pt;}
.x17{left:103.200000pt;}
.x28{left:104.900800pt;}
.x11{left:119.360000pt;}
.x2c{left:132.142000pt;}
.x8e{left:135.276800pt;}
.x9{left:139.840000pt;}
.x4{left:141.280000pt;}
.x7{left:148.640000pt;}
.x6{left:151.040000pt;}
.xe{left:152.000000pt;}
.x33{left:164.160000pt;}
.x64{left:183.728133pt;}
.x24{left:200.160000pt;}
.x8f{left:204.569333pt;}
.x46{left:207.520000pt;}
.x66{left:208.480000pt;}
.x3d{left:210.237867pt;}
.x72{left:213.280000pt;}
.x5{left:215.520000pt;}
.x3f{left:220.928400pt;}
.x12{left:230.720000pt;}
.x8{left:232.640000pt;}
.x36{left:238.560000pt;}
.x7f{left:240.480000pt;}
.x65{left:241.440000pt;}
.x3e{left:248.848533pt;}
.x6f{left:254.560000pt;}
.x27{left:262.219600pt;}
.x68{left:269.760000pt;}
.x40{left:276.657467pt;}
.x2f{left:277.760000pt;}
.x32{left:285.760000pt;}
.x94{left:288.595067pt;}
.x93{left:294.028533pt;}
.x10{left:295.040000pt;}
.x86{left:296.645200pt;}
.x87{left:301.520667pt;}
.x4e{left:305.920000pt;}
.x8b{left:312.640000pt;}
.xb{left:317.440000pt;}
.xc{left:325.760000pt;}
.x89{left:331.200000pt;}
.x85{left:335.912933pt;}
.x7a{left:337.120000pt;}
.x5a{left:343.360000pt;}
.x84{left:347.707467pt;}
.x14{left:350.400000pt;}
.x8a{left:359.520000pt;}
.x6a{left:360.640000pt;}
.x76{left:363.360000pt;}
.xd{left:367.040000pt;}
.x96{left:368.993733pt;}
.x2d{left:371.040000pt;}
.x56{left:372.800000pt;}
.x1d{left:374.560000pt;}
.x21{left:379.040000pt;}
.x78{left:380.800000pt;}
.x6d{left:384.480000pt;}
.x7c{left:393.600000pt;}
.x15{left:394.720000pt;}
.x3{left:396.800000pt;}
.x19{left:398.560000pt;}
.x48{left:404.160000pt;}
.x88{left:408.265200pt;}
.x5f{left:409.600000pt;}
.x1c{left:411.040000pt;}
.x43{left:417.478800pt;}
.x42{left:422.167600pt;}
.x57{left:425.120000pt;}
.x2e{left:431.040000pt;}
.x58{left:435.360000pt;}
.x49{left:441.920000pt;}
.x55{left:448.320000pt;}
.x41{left:450.087733pt;}
.x74{left:454.240000pt;}
.x31{left:459.200000pt;}
.x4a{left:460.960000pt;}
.x1e{left:465.280000pt;}
.x22{left:473.120000pt;}
.x44{left:477.901333pt;}
.x95{left:480.689067pt;}
.x70{left:488.160000pt;}
.x1f{left:500.320000pt;}
.x81{left:506.400000pt;}
.x5c{left:513.120000pt;}
.x97{left:523.949600pt;}
.x79{left:526.560000pt;}
.x67{left:534.560000pt;}
.x18{left:536.320000pt;}
.x1a{left:545.760000pt;}
.x30{left:551.520000pt;}
.x71{left:554.880000pt;}
.x7b{left:556.320000pt;}
.x50{left:559.200000pt;}
.x5e{left:574.080000pt;}
.x69{left:578.400000pt;}
.x34{left:579.680000pt;}
.x80{left:587.840000pt;}
.x7e{left:590.240000pt;}
.x20{left:596.320000pt;}
.x5d{left:602.560000pt;}
.x75{left:603.680000pt;}
.x1b{left:608.160000pt;}
.x73{left:615.520000pt;}
.x6b{left:619.040000pt;}
.x6e{left:622.560000pt;}
.x23{left:626.560000pt;}
.x5b{left:629.920000pt;}
.x77{left:644.640000pt;}
.x59{left:652.480000pt;}
.x4b{left:657.440000pt;}
.x7d{left:675.360000pt;}
.x35{left:678.880000pt;}
.x13{left:683.200000pt;}
.x6c{left:687.840000pt;}
.x2{left:691.200000pt;}
.x16{left:699.200000pt;}
}


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