
/* 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_ce722dd0d01a.woff")format("woff");}.ff1{font-family:ff1;line-height:1.581543;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_7d110ef97267.woff")format("woff");}.ff2{font-family:ff2;line-height:1.589369;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_0c4a4850bd88.woff")format("woff");}.ff3{font-family:ff3;line-height:1.417969;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_434ec53165a4.woff")format("woff");}.ff4{font-family:ff4;line-height:1.186000;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_23e5c8f961e2.woff")format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_ae0dff02f844.woff")format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_766acde59189.woff")format("woff");}.ff7{font-family:ff7;line-height:0.906000;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_b796709897d8.woff")format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_fd9e60147459.woff")format("woff");}.ff9{font-family:ff9;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_190692abd294.woff")format("woff");}.ffa{font-family:ffa;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_1fc083b4ecfe.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_6090f799d8f2.woff")format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_2fd49328b0f8.woff")format("woff");}.ffd{font-family:ffd;line-height:3.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_997044c4c99d.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_9356c1949740.woff")format("woff");}.fff{font-family:fff;line-height:0.910000;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:ff10;src:url("fonts/font_0015_3aa29798d52c.woff")format("woff");}.ff10{font-family:ff10;line-height:0.930000;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:ff11;src:url("fonts/font_0016_7355b4020ef2.woff")format("woff");}.ff11{font-family:ff11;line-height:0.804000;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:ff12;src:url("fonts/font_0017_cc0eed254de5.woff")format("woff");}.ff12{font-family:ff12;line-height:0.521000;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:ff13;src:url("fonts/font_0018_ec197394de3f.woff")format("woff");}.ff13{font-family:ff13;line-height:0.668000;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:ff14;src:url("fonts/font_0019_5d185f576ab5.woff")format("woff");}.ff14{font-family:ff14;line-height:0.658000;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:ff15;src:url("fonts/font_0020_b20d5b62e18c.woff")format("woff");}.ff15{font-family:ff15;line-height:0.688000;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:ff16;src:url("fonts/font_0021_247e5665fd41.woff")format("woff");}.ff16{font-family:ff16;line-height:0.731445;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:ff17;src:url("fonts/font_0022_754e36b05942.woff")format("woff");}.ff17{font-family:ff17;line-height:0.727539;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:ff18;src:url("fonts/font_0023_5d0998ca7f7a.woff")format("woff");}.ff18{font-family:ff18;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.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);}
.v24{vertical-align:-59.598000px;}
.v26{vertical-align:-43.458000px;}
.v16{vertical-align:-29.856000px;}
.v20{vertical-align:-21.822000px;}
.v2{vertical-align:-16.878000px;}
.v11{vertical-align:-14.196000px;}
.v9{vertical-align:-8.370000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:1.926000px;}
.v22{vertical-align:9.084000px;}
.v27{vertical-align:12.480000px;}
.v6{vertical-align:13.596000px;}
.v21{vertical-align:15.462000px;}
.vc{vertical-align:17.502000px;}
.v1f{vertical-align:18.528000px;}
.v1{vertical-align:22.854000px;}
.vb{vertical-align:25.572000px;}
.v1b{vertical-align:26.604000px;}
.v13{vertical-align:28.818000px;}
.vd{vertical-align:30.036000px;}
.v19{vertical-align:32.190000px;}
.v12{vertical-align:34.794000px;}
.v14{vertical-align:36.486000px;}
.v7{vertical-align:39.000000px;}
.va{vertical-align:40.350000px;}
.v17{vertical-align:43.458000px;}
.v5{vertical-align:45.792000px;}
.vf{vertical-align:46.956000px;}
.v1d{vertical-align:49.434000px;}
.v8{vertical-align:52.338000px;}
.v1a{vertical-align:55.044000px;}
.v1c{vertical-align:57.504000px;}
.v10{vertical-align:60.552000px;}
.v1e{vertical-align:61.674000px;}
.v4{vertical-align:75.738000px;}
.v15{vertical-align:79.944000px;}
.v25{vertical-align:91.878000px;}
.ve{vertical-align:106.548000px;}
.v23{vertical-align:120.666000px;}
.ls0{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000078px;}
.ls7f{letter-spacing:0.000160px;}
.ls36{letter-spacing:0.000230px;}
.ls6e{letter-spacing:0.000575px;}
.ls34{letter-spacing:0.000704px;}
.ls74{letter-spacing:0.000962px;}
.ls20{letter-spacing:0.002009px;}
.ls24{letter-spacing:0.003206px;}
.ls73{letter-spacing:0.004304px;}
.ls5b{letter-spacing:0.004553px;}
.ls33{letter-spacing:0.004678px;}
.ls90{letter-spacing:0.004684px;}
.ls81{letter-spacing:0.006160px;}
.ls2d{letter-spacing:0.006230px;}
.ls26{letter-spacing:0.894767px;}
.ls86{letter-spacing:1.288500px;}
.ls76{letter-spacing:1.538744px;}
.ls84{letter-spacing:1.579760px;}
.ls30{letter-spacing:2.024404px;}
.ls2a{letter-spacing:2.073931px;}
.ls32{letter-spacing:2.079931px;}
.ls1f{letter-spacing:2.109478px;}
.ls43{letter-spacing:2.235478px;}
.ls12{letter-spacing:2.807357px;}
.ls54{letter-spacing:2.979658px;}
.ls3f{letter-spacing:2.981310px;}
.ls5c{letter-spacing:2.984274px;}
.ls56{letter-spacing:2.985658px;}
.ls2{letter-spacing:2.988000px;}
.ls1b{letter-spacing:2.988938px;}
.ls2b{letter-spacing:2.989219px;}
.ls53{letter-spacing:2.990274px;}
.ls9b{letter-spacing:3.069229px;}
.ls67{letter-spacing:3.074236px;}
.ls1a{letter-spacing:3.075478px;}
.ls1e{letter-spacing:3.076015px;}
.ls83{letter-spacing:3.086300px;}
.ls2c{letter-spacing:3.088039px;}
.ls9{letter-spacing:5.061931px;}
.ls8{letter-spacing:5.067931px;}
.ls99{letter-spacing:6.141478px;}
.ls98{letter-spacing:6.149298px;}
.ls31{letter-spacing:6.906704px;}
.ls9c{letter-spacing:7.172236px;}
.ls1c{letter-spacing:8.139931px;}
.ls42{letter-spacing:8.259931px;}
.ls58{letter-spacing:9.131072px;}
.ls9e{letter-spacing:9.213478px;}
.ls89{letter-spacing:9.214015px;}
.ls48{letter-spacing:9.217242px;}
.ls13{letter-spacing:9.217739px;}
.ls5e{letter-spacing:9.231953px;}
.ls68{letter-spacing:10.245478px;}
.lsa1{letter-spacing:10.815229px;}
.ls60{letter-spacing:10.839726px;}
.ls97{letter-spacing:10.985298px;}
.ls45{letter-spacing:11.064962px;}
.ls4{letter-spacing:11.123298px;}
.ls18{letter-spacing:11.211931px;}
.ls96{letter-spacing:11.364230px;}
.ls41{letter-spacing:11.442230px;}
.ls44{letter-spacing:11.541000px;}
.ls15{letter-spacing:12.023357px;}
.ls2f{letter-spacing:12.285478px;}
.ls11{letter-spacing:12.291478px;}
.lsa{letter-spacing:12.386424px;}
.lsb{letter-spacing:12.408631px;}
.lsc{letter-spacing:12.424291px;}
.ls87{letter-spacing:12.945085px;}
.ls4f{letter-spacing:13.176767px;}
.lsa5{letter-spacing:13.447471px;}
.ls3b{letter-spacing:13.448236px;}
.ls95{letter-spacing:13.451298px;}
.ls7a{letter-spacing:13.451713px;}
.lsa6{letter-spacing:13.453471px;}
.ls1d{letter-spacing:13.671478px;}
.ls27{letter-spacing:13.871713px;}
.ls6f{letter-spacing:13.962767px;}
.ls82{letter-spacing:14.081065px;}
.ls23{letter-spacing:14.151046px;}
.ls3{letter-spacing:14.261298px;}
.ls46{letter-spacing:14.264236px;}
.ls6{letter-spacing:14.447298px;}
.lsa2{letter-spacing:14.479890px;}
.ls79{letter-spacing:14.984744px;}
.ls47{letter-spacing:15.244478px;}
.ls49{letter-spacing:15.250514px;}
.ls5d{letter-spacing:15.273658px;}
.ls80{letter-spacing:15.275065px;}
.lse{letter-spacing:15.357478px;}
.ls3e{letter-spacing:15.363478px;}
.ls3d{letter-spacing:15.738230px;}
.ls6d{letter-spacing:16.051411px;}
.ls3a{letter-spacing:16.220236px;}
.ls9f{letter-spacing:16.389478px;}
.ls70{letter-spacing:16.441411px;}
.ls6b{letter-spacing:16.524767px;}
.lsa4{letter-spacing:16.529298px;}
.ls16{letter-spacing:17.001931px;}
.ls25{letter-spacing:17.134912px;}
.ls77{letter-spacing:17.247325px;}
.ls14{letter-spacing:17.349931px;}
.ls22{letter-spacing:17.555713px;}
.ls4e{letter-spacing:17.756192px;}
.ls4d{letter-spacing:18.316478px;}
.ls7c{letter-spacing:18.349411px;}
.ls39{letter-spacing:18.386404px;}
.ls63{letter-spacing:18.513931px;}
.ls17{letter-spacing:18.519931px;}
.ls5{letter-spacing:18.842538px;}
.ls62{letter-spacing:18.914192px;}
.ls28{letter-spacing:18.945931px;}
.ls3c{letter-spacing:19.155931px;}
.lsa3{letter-spacing:19.187298px;}
.ls8d{letter-spacing:19.247713px;}
.ls7b{letter-spacing:19.879411px;}
.ls8c{letter-spacing:20.104711px;}
.ls8f{letter-spacing:20.133931px;}
.ls64{letter-spacing:20.421931px;}
.lsd{letter-spacing:20.427931px;}
.ls78{letter-spacing:20.487931px;}
.ls61{letter-spacing:20.667931px;}
.ls51{letter-spacing:20.750192px;}
.ls6a{letter-spacing:21.309931px;}
.ls71{letter-spacing:21.730618px;}
.ls38{letter-spacing:22.216555px;}
.ls8e{letter-spacing:22.230181px;}
.ls1{letter-spacing:22.550425px;}
.ls88{letter-spacing:22.893478px;}
.ls7{letter-spacing:23.210300px;}
.ls4c{letter-spacing:23.298767px;}
.ls8b{letter-spacing:23.440711px;}
.ls52{letter-spacing:25.071931px;}
.ls37{letter-spacing:25.160905px;}
.ls4b{letter-spacing:25.397065px;}
.ls29{letter-spacing:25.803931px;}
.ls65{letter-spacing:29.886043px;}
.ls55{letter-spacing:29.892043px;}
.ls75{letter-spacing:30.837931px;}
.ls21{letter-spacing:45.805242px;}
.ls5a{letter-spacing:46.407931px;}
.ls2e{letter-spacing:47.404555px;}
.ls4a{letter-spacing:56.923242px;}
.ls9d{letter-spacing:59.153588px;}
.ls57{letter-spacing:59.773242px;}
.ls66{letter-spacing:59.775478px;}
.ls7e{letter-spacing:59.778955px;}
.ls10{letter-spacing:59.779242px;}
.lsa0{letter-spacing:69.623065px;}
.ls85{letter-spacing:98.289478px;}
.ls92{letter-spacing:112.705542px;}
.ls91{letter-spacing:112.711542px;}
.ls93{letter-spacing:124.276907px;}
.ls50{letter-spacing:145.321242px;}
.ls5f{letter-spacing:156.841242px;}
.ls94{letter-spacing:162.388907px;}
.lsa7{letter-spacing:162.531288px;}
.lsa8{letter-spacing:164.014068px;}
.lsa9{letter-spacing:220.042068px;}
.ls59{letter-spacing:231.621000px;}
.ls69{letter-spacing:264.813000px;}
.ls7d{letter-spacing:271.992043px;}
.ls8a{letter-spacing:277.771242px;}
.ls19{letter-spacing:311.829478px;}
.lsf{letter-spacing:368.526043px;}
.ls72{letter-spacing:371.268043px;}
.ls35{letter-spacing:388.693242px;}
.ls40{letter-spacing:593.095242px;}
.ls9a{letter-spacing:613.434292px;}
.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;}
}
.wsa4{word-spacing:-55.291529px;}
.wsb1{word-spacing:-46.092359px;}
.ws6f{word-spacing:-43.768426px;}
.ws63{word-spacing:-36.070218px;}
.ws6d{word-spacing:-29.390239px;}
.wsf9{word-spacing:-28.386191px;}
.ws93{word-spacing:-26.871640px;}
.wsac{word-spacing:-26.871048px;}
.wsf3{word-spacing:-23.585701px;}
.wsca{word-spacing:-23.579838px;}
.ws6e{word-spacing:-21.248505px;}
.wsa3{word-spacing:-20.670671px;}
.wsb8{word-spacing:-16.768296px;}
.ws9a{word-spacing:-16.191459px;}
.wsf2{word-spacing:-15.358758px;}
.wsda{word-spacing:-13.543482px;}
.ws3{word-spacing:-13.449000px;}
.wsd1{word-spacing:-13.368173px;}
.wsd3{word-spacing:-12.163482px;}
.wsbd{word-spacing:-12.034390px;}
.wscf{word-spacing:-10.296173px;}
.wse5{word-spacing:-9.073482px;}
.wsd0{word-spacing:-8.727821px;}
.ws71{word-spacing:-7.935277px;}
.wsd6{word-spacing:-7.380173px;}
.ws7c{word-spacing:-7.167159px;}
.wsd5{word-spacing:-6.918173px;}
.wse3{word-spacing:-6.877482px;}
.ws7a{word-spacing:-6.770046px;}
.wsde{word-spacing:-6.402173px;}
.ws9e{word-spacing:-6.159588px;}
.ws9f{word-spacing:-6.146274px;}
.wsb2{word-spacing:-6.137747px;}
.wsaf{word-spacing:-6.113210px;}
.ws9c{word-spacing:-6.105577px;}
.ws44{word-spacing:-3.174018px;}
.wsb0{word-spacing:-3.093539px;}
.ws9d{word-spacing:-3.092947px;}
.ws6a{word-spacing:-3.072784px;}
.wsbc{word-spacing:-3.066784px;}
.ws13b{word-spacing:-2.904607px;}
.wsc9{word-spacing:-2.851188px;}
.ws13c{word-spacing:-2.743219px;}
.wsb4{word-spacing:-2.635789px;}
.wsf5{word-spacing:-2.630628px;}
.wsb3{word-spacing:-2.606628px;}
.ws46{word-spacing:-2.582423px;}
.wsef{word-spacing:-2.474993px;}
.wsf0{word-spacing:-2.474401px;}
.wsee{word-spacing:-2.468424px;}
.ws91{word-spacing:-2.420981px;}
.ws90{word-spacing:-2.384628px;}
.ws4d{word-spacing:-2.367024px;}
.wsc7{word-spacing:-2.354628px;}
.wsc8{word-spacing:-2.354424px;}
.ws124{word-spacing:-2.314796px;}
.ws4c{word-spacing:-2.313013px;}
.ws102{word-spacing:-2.044194px;}
.wscd{word-spacing:-1.990183px;}
.wsce{word-spacing:-1.974691px;}
.ws139{word-spacing:-1.936817px;}
.ws128{word-spacing:-1.908325px;}
.ws103{word-spacing:-1.908287px;}
.ws138{word-spacing:-1.882806px;}
.ws132{word-spacing:-1.775429px;}
.ws131{word-spacing:-1.767000px;}
.ws3a{word-spacing:-1.721418px;}
.ws3b{word-spacing:-1.715226px;}
.ws20{word-spacing:-1.613988px;}
.ws149{word-spacing:-1.560030px;}
.ws6c{word-spacing:-1.506019px;}
.wsc0{word-spacing:-1.345223px;}
.ws66{word-spacing:-1.344631px;}
.wsdb{word-spacing:-1.340424px;}
.wsbf{word-spacing:-1.322628px;}
.ws55{word-spacing:-1.237200px;}
.ws18{word-spacing:-1.191109px;}
.ws19{word-spacing:-1.183781px;}
.ws17{word-spacing:-1.183189px;}
.ws2f{word-spacing:-1.129824px;}
.ws38{word-spacing:-1.076404px;}
.ws16{word-spacing:-1.075812px;}
.ws4f{word-spacing:-0.968382px;}
.ws14f{word-spacing:-0.861005px;}
.ws39{word-spacing:-0.806994px;}
.wsc{word-spacing:-0.752983px;}
.ws53{word-spacing:-0.592186px;}
.ws52{word-spacing:-0.591595px;}
.wsf6{word-spacing:-0.510288px;}
.ws28{word-spacing:-0.484218px;}
.ws94{word-spacing:-0.430207px;}
.wsbb{word-spacing:-0.384947px;}
.wsba{word-spacing:-0.380424px;}
.wsab{word-spacing:-0.376787px;}
.ws36{word-spacing:-0.322830px;}
.wsed{word-spacing:-0.268819px;}
.ws1a{word-spacing:-0.161388px;}
.ws73{word-spacing:-0.140046px;}
.wsfd{word-spacing:-0.107431px;}
.wse9{word-spacing:-0.053796px;}
.ws83{word-spacing:-0.035868px;}
.ws84{word-spacing:-0.026952px;}
.ws2{word-spacing:-0.000287px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.000287px;}
.ws8e{word-spacing:0.000864px;}
.wsae{word-spacing:0.001350px;}
.wsad{word-spacing:0.001644px;}
.ws136{word-spacing:0.003000px;}
.wsc2{word-spacing:0.003576px;}
.wsb6{word-spacing:0.007032px;}
.ws114{word-spacing:0.007153px;}
.ws11d{word-spacing:0.033000px;}
.wsd2{word-spacing:0.051372px;}
.wsd4{word-spacing:0.054011px;}
.ws7{word-spacing:0.107377px;}
.wsff{word-spacing:0.161388px;}
.ws11e{word-spacing:0.215399px;}
.ws10a{word-spacing:0.268819px;}
.ws3c{word-spacing:0.322776px;}
.ws100{word-spacing:0.376195px;}
.ws31{word-spacing:0.376787px;}
.ws2e{word-spacing:0.428130px;}
.ws2d{word-spacing:0.430207px;}
.ws7f{word-spacing:0.430798px;}
.ws7e{word-spacing:0.484218px;}
.ws14a{word-spacing:0.591595px;}
.ws21{word-spacing:0.645606px;}
.ws1e{word-spacing:0.698971px;}
.ws7b{word-spacing:0.699617px;}
.ws155{word-spacing:0.752983px;}
.ws153{word-spacing:0.753574px;}
.ws2b{word-spacing:0.806994px;}
.ws92{word-spacing:0.811183px;}
.ws126{word-spacing:0.861005px;}
.ws29{word-spacing:0.914371px;}
.ws51{word-spacing:0.968382px;}
.ws62{word-spacing:1.021801px;}
.ws88{word-spacing:1.022393px;}
.ws14{word-spacing:1.075812px;}
.ws156{word-spacing:1.129770px;}
.wsb{word-spacing:1.237200px;}
.ws96{word-spacing:1.291212px;}
.ws45{word-spacing:1.344577px;}
.ws67{word-spacing:1.397997px;}
.ws69{word-spacing:1.398588px;}
.ws68{word-spacing:1.426233px;}
.ws9{word-spacing:1.452600px;}
.ws12c{word-spacing:1.453204px;}
.wsdc{word-spacing:1.506019px;}
.ws108{word-spacing:1.559976px;}
.ws1d{word-spacing:1.613988px;}
.ws113{word-spacing:1.721418px;}
.wsf8{word-spacing:1.773576px;}
.wsfa{word-spacing:1.775376px;}
.wsa6{word-spacing:1.828795px;}
.ws12{word-spacing:1.829387px;}
.wsa5{word-spacing:1.833372px;}
.wse6{word-spacing:1.882806px;}
.ws4b{word-spacing:1.912800px;}
.wsc1{word-spacing:1.936817px;}
.ws43{word-spacing:2.098205px;}
.ws2c{word-spacing:2.151571px;}
.wsb5{word-spacing:2.152217px;}
.ws127{word-spacing:2.205582px;}
.ws47{word-spacing:2.259593px;}
.ws35{word-spacing:2.313605px;}
.ws9b{word-spacing:2.366378px;}
.ws99{word-spacing:2.366970px;}
.ws98{word-spacing:2.377350px;}
.ws5e{word-spacing:2.420390px;}
.ws22{word-spacing:2.420981px;}
.ws5d{word-spacing:2.437644px;}
.ws5c{word-spacing:2.450934px;}
.ws109{word-spacing:2.474401px;}
.ws10c{word-spacing:2.474993px;}
.ws14c{word-spacing:2.635789px;}
.ws1b{word-spacing:2.636381px;}
.ws1c{word-spacing:2.689800px;}
.ws8{word-spacing:2.713644px;}
.ws76{word-spacing:2.743219px;}
.ws26{word-spacing:2.743811px;}
.wsb9{word-spacing:2.797177px;}
.ws3d{word-spacing:2.797769px;}
.wsb7{word-spacing:2.805372px;}
.wscc{word-spacing:2.851188px;}
.ws41{word-spacing:2.896356px;}
.ws87{word-spacing:2.900400px;}
.ws42{word-spacing:2.904607px;}
.ws3e{word-spacing:2.905199px;}
.ws86{word-spacing:2.910288px;}
.ws4a{word-spacing:2.917211px;}
.wsfe{word-spacing:2.958619px;}
.wsfb{word-spacing:3.065995px;}
.ws89{word-spacing:3.066587px;}
.wse4{word-spacing:3.120007px;}
.ws148{word-spacing:3.173372px;}
.ws77{word-spacing:3.174018px;}
.ws82{word-spacing:3.227383px;}
.ws111{word-spacing:3.227975px;}
.ws32{word-spacing:3.281395px;}
.ws49{word-spacing:3.299389px;}
.wsd{word-spacing:3.335406px;}
.ws146{word-spacing:3.388771px;}
.ws12b{word-spacing:3.389417px;}
.wsc3{word-spacing:3.442191px;}
.wsc4{word-spacing:3.442783px;}
.ws13f{word-spacing:3.550805px;}
.wsa7{word-spacing:3.604171px;}
.ws123{word-spacing:3.658182px;}
.ws7d{word-spacing:3.711601px;}
.ws34{word-spacing:3.712193px;}
.ws25{word-spacing:3.819570px;}
.ws65{word-spacing:3.872989px;}
.ws64{word-spacing:3.873581px;}
.ws56{word-spacing:3.927000px;}
.ws95{word-spacing:3.981012px;}
.ws78{word-spacing:4.087797px;}
.ws79{word-spacing:4.088388px;}
.ws15{word-spacing:4.142400px;}
.ws107{word-spacing:4.357207px;}
.ws12d{word-spacing:4.411218px;}
.ws14b{word-spacing:4.465176px;}
.ws151{word-spacing:4.572606px;}
.ws152{word-spacing:4.573198px;}
.wsec{word-spacing:4.626617px;}
.ws142{word-spacing:4.679983px;}
.ws143{word-spacing:4.680575px;}
.ws5f{word-spacing:4.787414px;}
.ws57{word-spacing:4.788005px;}
.wsd7{word-spacing:4.842017px;}
.ws6{word-spacing:4.949393px;}
.ws33{word-spacing:4.973508px;}
.ws12a{word-spacing:5.003405px;}
.ws54{word-spacing:5.056770px;}
.wsf1{word-spacing:5.161280px;}
.ws30{word-spacing:5.164201px;}
.wsc5{word-spacing:5.170308px;}
.ws10b{word-spacing:5.218212px;}
.ws120{word-spacing:5.271578px;}
.ws2a{word-spacing:5.272169px;}
.wse2{word-spacing:5.325589px;}
.ws4e{word-spacing:5.379600px;}
.ws27{word-spacing:5.487569px;}
.ws13a{word-spacing:5.540396px;}
.ws8b{word-spacing:5.543713px;}
.ws48{word-spacing:5.594999px;}
.ws13d{word-spacing:5.649010px;}
.wse0{word-spacing:5.755795px;}
.wsf7{word-spacing:5.756387px;}
.wsdf{word-spacing:5.792837px;}
.wse1{word-spacing:5.799576px;}
.ws3f{word-spacing:5.809807px;}
.ws8f{word-spacing:5.810398px;}
.ws144{word-spacing:5.863172px;}
.wse{word-spacing:5.917775px;}
.ws11b{word-spacing:5.925576px;}
.ws50{word-spacing:5.971195px;}
.ws13{word-spacing:6.079217px;}
.ws97{word-spacing:6.132583px;}
.ws150{word-spacing:6.133174px;}
.ws1f{word-spacing:6.240605px;}
.ws24{word-spacing:6.347982px;}
.wsa9{word-spacing:6.562789px;}
.wsaa{word-spacing:6.563381px;}
.ws140{word-spacing:6.616209px;}
.ws58{word-spacing:6.617392px;}
.ws60{word-spacing:6.670166px;}
.ws61{word-spacing:6.670812px;}
.ws104{word-spacing:6.700085px;}
.ws105{word-spacing:6.711991px;}
.wsa2{word-spacing:6.724177px;}
.ws106{word-spacing:6.724769px;}
.ws37{word-spacing:6.778780px;}
.wscb{word-spacing:6.832200px;}
.ws40{word-spacing:6.886211px;}
.ws11{word-spacing:6.992996px;}
.ws4{word-spacing:7.047007px;}
.ws5{word-spacing:7.047599px;}
.ws80{word-spacing:7.101018px;}
.ws137{word-spacing:7.154976px;}
.ws81{word-spacing:7.262998px;}
.wsa{word-spacing:7.316417px;}
.ws8a{word-spacing:7.423794px;}
.ws8d{word-spacing:7.424386px;}
.ws8c{word-spacing:7.452864px;}
.ws23{word-spacing:7.587858px;}
.ws101{word-spacing:7.746570px;}
.wsa8{word-spacing:8.205767px;}
.ws125{word-spacing:8.230788px;}
.ws75{word-spacing:8.338219px;}
.wsfc{word-spacing:8.392176px;}
.ws141{word-spacing:8.822383px;}
.ws121{word-spacing:8.876394px;}
.wsa0{word-spacing:8.964288px;}
.wsa1{word-spacing:8.983771px;}
.ws119{word-spacing:9.252589px;}
.ws11f{word-spacing:9.413977px;}
.ws129{word-spacing:9.467988px;}
.ws59{word-spacing:10.436370px;}
.ws130{word-spacing:10.490381px;}
.ws74{word-spacing:10.759200px;}
.wsdd{word-spacing:10.866577px;}
.ws11c{word-spacing:11.027965px;}
.ws11a{word-spacing:11.042016px;}
.ws122{word-spacing:11.243364px;}
.ws154{word-spacing:11.451864px;}
.ws14e{word-spacing:12.050412px;}
.ws14d{word-spacing:12.103777px;}
.ws145{word-spacing:12.319176px;}
.ws5b{word-spacing:12.350220px;}
.ws5a{word-spacing:12.373188px;}
.wsf{word-spacing:13.502581px;}
.wsd8{word-spacing:14.040595px;}
.wsd9{word-spacing:14.094606px;}
.ws118{word-spacing:14.524812px;}
.ws147{word-spacing:14.739566px;}
.ws85{word-spacing:15.235444px;}
.ws13e{word-spacing:15.647544px;}
.ws157{word-spacing:15.919476px;}
.ws10{word-spacing:18.828600px;}
.wseb{word-spacing:18.834000px;}
.ws72{word-spacing:24.927372px;}
.ws70{word-spacing:48.711967px;}
.wsf4{word-spacing:54.139152px;}
.wsea{word-spacing:58.284000px;}
.ws10e{word-spacing:58.287864px;}
.ws115{word-spacing:58.291482px;}
.ws116{word-spacing:63.779712px;}
.ws117{word-spacing:76.661712px;}
.wse8{word-spacing:77.280395px;}
.ws110{word-spacing:82.108463px;}
.ws134{word-spacing:121.429209px;}
.ws12f{word-spacing:123.182973px;}
.ws10d{word-spacing:149.418288px;}
.ws135{word-spacing:153.086406px;}
.ws133{word-spacing:153.664525px;}
.ws10f{word-spacing:170.344932px;}
.wsbe{word-spacing:177.565152px;}
.ws12e{word-spacing:205.350884px;}
.wse7{word-spacing:242.104356px;}
.ws6b{word-spacing:293.911152px;}
.wsc6{word-spacing:304.603152px;}
.ws112{word-spacing:439.258932px;}
._18{margin-left:-29.757516px;}
._d{margin-left:-8.016602px;}
._0{margin-left:-6.814780px;}
._9{margin-left:-5.756979px;}
._3{margin-left:-4.664315px;}
._4{margin-left:-3.227413px;}
._1{margin-left:-2.152187px;}
._2{margin-left:-1.075233px;}
._17{width:2.280015px;}
._14{width:3.542800px;}
._16{width:5.062158px;}
._15{width:6.560937px;}
._1f{width:10.166453px;}
._c{width:11.620205px;}
._1c{width:14.040589px;}
._b{width:15.869981px;}
._5{width:16.946439px;}
._8{width:18.594157px;}
._7{width:19.850993px;}
._1d{width:20.857126px;}
._6{width:21.947907px;}
._1a{width:23.133517px;}
._a{width:24.369588px;}
._20{width:26.252394px;}
._19{width:27.524647px;}
._12{width:28.888745px;}
._1b{width:29.935735px;}
._11{width:30.986388px;}
._10{width:32.277600px;}
._f{width:33.459014px;}
._36{width:35.558182px;}
._e{width:37.172390px;}
._3b{width:38.302214px;}
._13{width:41.410231px;}
._3c{width:42.637245px;}
._39{width:47.286576px;}
._3d{width:50.167209px;}
._2a{width:53.796864px;}
._3e{width:58.977489px;}
._29{width:62.766864px;}
._2e{width:79.917527px;}
._30{width:90.110712px;}
._22{width:109.843932px;}
._35{width:113.028780px;}
._34{width:117.518712px;}
._28{width:118.794864px;}
._2d{width:129.465168px;}
._31{width:134.704356px;}
._33{width:136.187136px;}
._2f{width:139.200288px;}
._32{width:140.677068px;}
._27{width:144.933288px;}
._21{width:147.967932px;}
._26{width:153.897288px;}
._25{width:166.244712px;}
._2c{width:173.638644px;}
._3a{width:182.340582px;}
._38{width:224.807335px;}
._23{width:234.216000px;}
._37{width:244.451038px;}
._2b{width:265.741381px;}
._1e{width:267.681530px;}
._24{width:366.018288px;}
.fc2{color:transparent;}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:6.000000px;}
.fs9{font-size:29.886000px;}
.fs3{font-size:31.998000px;}
.fsc{font-size:34.826400px;}
.fsa{font-size:35.330400px;}
.fs7{font-size:35.868000px;}
.fsd{font-size:41.791680px;}
.fsb{font-size:42.396480px;}
.fs8{font-size:47.820000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:53.796000px;}
.fs5{font-size:71.730000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:1.825500px;}
.y198{bottom:2.496182px;}
.y178{bottom:3.481637px;}
.y6b{bottom:3.900000px;}
.y179{bottom:6.941190px;}
.y199{bottom:9.025958px;}
.y171{bottom:12.976682px;}
.y192{bottom:13.669362px;}
.y172{bottom:20.411081px;}
.y193{bottom:20.997707px;}
.y173{bottom:34.616552px;}
.y194{bottom:38.846237px;}
.y6a{bottom:39.426110px;}
.y174{bottom:48.822022px;}
.y195{bottom:56.621632px;}
.y175{bottom:62.954182px;}
.y196{bottom:74.470162px;}
.y176{bottom:77.160536px;}
.y177{bottom:91.292696px;}
.y197{bottom:92.246427px;}
.y10{bottom:94.551000px;}
.y17a{bottom:96.371441px;}
.y19a{bottom:96.671992px;}
.y17b{bottom:103.804957px;}
.y19b{bottom:104.000337px;}
.yf{bottom:104.551500px;}
.y45{bottom:106.299000px;}
.ye{bottom:114.552000px;}
.y17c{bottom:117.495487px;}
.y19c{bottom:119.091487px;}
.y69{bottom:119.785500px;}
.y44{bottom:121.915500px;}
.y132{bottom:123.819000px;}
.yd{bottom:124.552500px;}
.y17d{bottom:131.112707px;}
.y68{bottom:133.273500px;}
.y181{bottom:133.762487px;}
.y1a0{bottom:133.820442px;}
.y19d{bottom:134.183507px;}
.yc{bottom:134.553000px;}
.y43{bottom:137.532000px;}
.y131{bottom:139.434000px;}
.y17e{bottom:144.803237px;}
.yb{bottom:145.669500px;}
.y19e{bottom:149.274657px;}
.y67{bottom:150.979500px;}
.y42{bottom:153.148500px;}
.y1af{bottom:153.175500px;}
.y130{bottom:155.050500px;}
.ya0{bottom:155.200500px;}
.y17f{bottom:158.420456px;}
.yd1{bottom:161.107500px;}
.y19f{bottom:164.365807px;}
.y16b{bottom:165.928166px;}
.y41{bottom:168.765000px;}
.y1ae{bottom:168.792000px;}
.y12f{bottom:170.667000px;}
.y9f{bottom:170.817000px;}
.y66{bottom:171.819000px;}
.y180{bottom:172.036792px;}
.y1df{bottom:176.991000px;}
.y185{bottom:177.614466px;}
.y164{bottom:177.755898px;}
.yd0{bottom:183.225000px;}
.y40{bottom:184.381500px;}
.y1ad{bottom:184.408500px;}
.y186{bottom:184.942811px;}
.y18f{bottom:185.043982px;}
.y165{bottom:185.190298px;}
.y16e{bottom:185.285692px;}
.y12e{bottom:186.283500px;}
.y9e{bottom:186.433500px;}
.y65{bottom:187.435500px;}
.y1de{bottom:192.607500px;}
.y18d{bottom:193.823717px;}
.y16c{bottom:194.192486px;}
.y187{bottom:199.236436px;}
.y3f{bottom:199.996500px;}
.yfc{bottom:199.998000px;}
.y1ac{bottom:200.025000px;}
.y12d{bottom:201.900000px;}
.y9d{bottom:202.050000px;}
.y64{bottom:203.052000px;}
.y166{bottom:203.297128px;}
.ycf{bottom:206.800500px;}
.y1dd{bottom:208.224000px;}
.y188{bottom:213.456926px;}
.y3e{bottom:215.613000px;}
.y1ab{bottom:215.641500px;}
.y162{bottom:215.965500px;}
.y12c{bottom:217.516500px;}
.y9c{bottom:217.666500px;}
.y63{bottom:218.668500px;}
.y167{bottom:221.330647px;}
.y189{bottom:227.750551px;}
.y1dc{bottom:229.818000px;}
.yce{bottom:230.634000px;}
.y3d{bottom:231.229500px;}
.y1aa{bottom:231.258000px;}
.y161{bottom:231.582000px;}
.y12b{bottom:233.133000px;}
.y9b{bottom:233.283000px;}
.y62{bottom:234.285000px;}
.ycd{bottom:238.203000px;}
.y168{bottom:239.363283px;}
.y18a{bottom:241.971041px;}
.y191{bottom:243.451337px;}
.y170{bottom:244.464112px;}
.y1db{bottom:245.434500px;}
.y3c{bottom:246.846000px;}
.y1a9{bottom:246.874500px;}
.y160{bottom:247.198500px;}
.y12a{bottom:248.749500px;}
.y9a{bottom:248.899500px;}
.y61{bottom:249.901500px;}
.y18b{bottom:256.191531px;}
.y190{bottom:256.365837px;}
.y169{bottom:257.396803px;}
.y16f{bottom:257.566391px;}
.y1da{bottom:261.051000px;}
.y3b{bottom:262.462500px;}
.y1a8{bottom:262.491000px;}
.y18e{bottom:262.678122px;}
.y15f{bottom:262.815000px;}
.y16d{bottom:263.970026px;}
.y129{bottom:264.366000px;}
.y60{bottom:265.789500px;}
.ycc{bottom:270.070500px;}
.y98{bottom:276.060000px;}
.y1d9{bottom:276.667500px;}
.ya{bottom:277.008000px;}
.y3a{bottom:278.079000px;}
.y1a7{bottom:278.107500px;}
.y15e{bottom:278.431500px;}
.y128{bottom:279.982500px;}
.y97{bottom:280.170000px;}
.y5f{bottom:281.406000px;}
.y96{bottom:283.569000px;}
.ycb{bottom:285.687000px;}
.y94{bottom:291.907500px;}
.y99{bottom:291.909000px;}
.y9{bottom:292.008000px;}
.y1d8{bottom:292.284000px;}
.y39{bottom:293.695500px;}
.y15d{bottom:294.048000px;}
.y93{bottom:295.308000px;}
.y127{bottom:295.599000px;}
.y5e{bottom:297.022500px;}
.yca{bottom:301.303500px;}
.y95{bottom:301.591500px;}
.y8{bottom:307.008000px;}
.y1a6{bottom:307.693500px;}
.y38{bottom:309.312000px;}
.y15c{bottom:309.664500px;}
.y5d{bottom:312.639000px;}
.y1d7{bottom:313.878000px;}
.yc9{bottom:316.920000px;}
.y126{bottom:320.293500px;}
.y7{bottom:322.008000px;}
.y37{bottom:324.928500px;}
.y15b{bottom:325.281000px;}
.y5c{bottom:328.527000px;}
.y1d6{bottom:329.494500px;}
.y92{bottom:331.990500px;}
.yc8{bottom:332.536500px;}
.y1a5{bottom:336.127500px;}
.y6{bottom:337.008000px;}
.y36{bottom:340.545000px;}
.y15a{bottom:341.248500px;}
.y5b{bottom:344.143500px;}
.y1d5{bottom:345.109500px;}
.y91{bottom:347.607000px;}
.yc7{bottom:348.153000px;}
.y125{bottom:348.823500px;}
.y1a4{bottom:351.744000px;}
.y35{bottom:356.161500px;}
.y159{bottom:356.865000px;}
.y5a{bottom:359.760000px;}
.y124{bottom:364.440000px;}
.y1d4{bottom:366.703500px;}
.y1a3{bottom:367.360500px;}
.yc6{bottom:371.728500px;}
.y34{bottom:371.778000px;}
.y158{bottom:372.481500px;}
.yfb{bottom:375.177000px;}
.y59{bottom:375.376500px;}
.y90{bottom:379.453500px;}
.y123{bottom:380.056500px;}
.y1d3{bottom:382.320000px;}
.y33{bottom:387.394500px;}
.y157{bottom:388.098000px;}
.y8e{bottom:389.203500px;}
.yfa{bottom:390.096000px;}
.y58{bottom:390.993000px;}
.yc5{bottom:395.304000px;}
.y122{bottom:395.673000px;}
.y8f{bottom:397.251000px;}
.y1d2{bottom:397.936500px;}
.y32{bottom:403.011000px;}
.y156{bottom:403.714500px;}
.yf9{bottom:405.712500px;}
.y57{bottom:406.609500px;}
.yc4{bottom:410.920500px;}
.y121{bottom:411.289500px;}
.y1d1{bottom:413.553000px;}
.y1a2{bottom:415.159500px;}
.y31{bottom:418.626000px;}
.y155{bottom:419.331000px;}
.yf8{bottom:421.329000px;}
.y56{bottom:422.226000px;}
.yc3{bottom:426.537000px;}
.y120{bottom:426.906000px;}
.y8d{bottom:427.324500px;}
.y1d0{bottom:429.169500px;}
.y1a1{bottom:430.776000px;}
.y30{bottom:434.242500px;}
.y154{bottom:434.947500px;}
.y55{bottom:437.842500px;}
.yf7{bottom:439.519500px;}
.y11f{bottom:442.522500px;}
.y2f{bottom:449.859000px;}
.yc2{bottom:450.112500px;}
.y153{bottom:450.564000px;}
.y1cf{bottom:450.763500px;}
.y8c{bottom:452.019000px;}
.y54{bottom:453.459000px;}
.yf6{bottom:453.472500px;}
.yf5{bottom:454.786500px;}
.y11e{bottom:458.137500px;}
.y18c{bottom:462.032038px;}
.y184{bottom:462.060944px;}
.y2e{bottom:465.475500px;}
.y152{bottom:466.179000px;}
.y1ce{bottom:466.380000px;}
.y53{bottom:469.075500px;}
.yc1{bottom:473.688000px;}
.y11d{bottom:473.754000px;}
.y2d{bottom:481.092000px;}
.y151{bottom:481.795500px;}
.y1cd{bottom:481.996500px;}
.yf4{bottom:482.610000px;}
.y8b{bottom:483.022500px;}
.y52{bottom:484.692000px;}
.yc0{bottom:489.304500px;}
.y11c{bottom:489.370500px;}
.y2c{bottom:496.708500px;}
.y150{bottom:497.764500px;}
.yf3{bottom:498.225000px;}
.y8a{bottom:498.639000px;}
.y51{bottom:500.580000px;}
.y1cc{bottom:503.590500px;}
.ybf{bottom:504.921000px;}
.y11b{bottom:504.987000px;}
.y2b{bottom:512.325000px;}
.y14f{bottom:513.381000px;}
.yf2{bottom:513.841500px;}
.y89{bottom:514.255500px;}
.y50{bottom:516.196500px;}
.y1cb{bottom:519.207000px;}
.ybe{bottom:520.537500px;}
.y11a{bottom:520.603500px;}
.y2a{bottom:527.941500px;}
.y14e{bottom:528.997500px;}
.yf1{bottom:529.458000px;}
.y88{bottom:529.872000px;}
.y4f{bottom:531.813000px;}
.y1ca{bottom:534.823500px;}
.ybd{bottom:536.152500px;}
.y119{bottom:536.220000px;}
.y29{bottom:543.558000px;}
.y14d{bottom:544.614000px;}
.y87{bottom:545.488500px;}
.y4e{bottom:547.429500px;}
.ybc{bottom:551.769000px;}
.yf0{bottom:554.154000px;}
.y1c9{bottom:556.417500px;}
.y28{bottom:559.174500px;}
.y14c{bottom:560.230500px;}
.y118{bottom:560.914500px;}
.y4d{bottom:563.044500px;}
.ybb{bottom:567.385500px;}
.y86{bottom:570.183000px;}
.y1c8{bottom:572.034000px;}
.y27{bottom:574.791000px;}
.y14b{bottom:575.845500px;}
.y4c{bottom:578.661000px;}
.y117{bottom:586.200000px;}
.y1c7{bottom:587.650500px;}
.yef{bottom:588.391500px;}
.y26{bottom:590.407500px;}
.y14a{bottom:591.462000px;}
.yba{bottom:592.081500px;}
.y4b{bottom:594.277500px;}
.y85{bottom:601.186500px;}
.y1c6{bottom:603.267000px;}
.yee{bottom:604.006500px;}
.y25{bottom:606.024000px;}
.y149{bottom:607.078500px;}
.y4a{bottom:609.894000px;}
.y84{bottom:616.803000px;}
.y116{bottom:618.367500px;}
.yed{bottom:619.623000px;}
.y24{bottom:621.640500px;}
.y148{bottom:622.695000px;}
.y1c5{bottom:624.861000px;}
.y49{bottom:625.510500px;}
.yb9{bottom:626.406000px;}
.y83{bottom:632.419500px;}
.y115{bottom:633.984000px;}
.y23{bottom:637.257000px;}
.yec{bottom:639.831000px;}
.y1c4{bottom:640.477500px;}
.y48{bottom:641.127000px;}
.yb8{bottom:642.022500px;}
.yea{bottom:644.395500px;}
.y82{bottom:648.036000px;}
.y114{bottom:649.600500px;}
.yeb{bottom:651.954000px;}
.ye9{bottom:652.087500px;}
.y1c3{bottom:656.092500px;}
.y47{bottom:656.743500px;}
.yb7{bottom:657.639000px;}
.y81{bottom:663.652500px;}
.y113{bottom:665.217000px;}
.y22{bottom:666.793500px;}
.y1c2{bottom:671.709000px;}
.yb6{bottom:673.255500px;}
.y112{bottom:680.833500px;}
.ye8{bottom:682.257000px;}
.y1c1{bottom:687.325500px;}
.y80{bottom:688.347000px;}
.y147{bottom:688.458000px;}
.yb5{bottom:688.872000px;}
.y111{bottom:696.450000px;}
.ye7{bottom:697.873500px;}
.y21{bottom:702.402000px;}
.y146{bottom:704.671500px;}
.y46{bottom:705.031500px;}
.y1c0{bottom:708.919500px;}
.y110{bottom:712.066500px;}
.ye6{bottom:713.490000px;}
.yb4{bottom:714.204000px;}
.y20{bottom:718.018500px;}
.y7f{bottom:719.350500px;}
.y145{bottom:720.885000px;}
.y1bf{bottom:724.536000px;}
.y10f{bottom:727.683000px;}
.ye5{bottom:729.106500px;}
.y7e{bottom:734.967000px;}
.y144{bottom:737.100000px;}
.yb3{bottom:737.779500px;}
.y1be{bottom:740.152500px;}
.y1f{bottom:740.361000px;}
.ye4{bottom:744.723000px;}
.y10d{bottom:749.655000px;}
.y7d{bottom:750.583500px;}
.y143{bottom:753.313500px;}
.yb2{bottom:753.396000px;}
.y10c{bottom:754.219500px;}
.y1bd{bottom:755.769000px;}
.y1e{bottom:755.976000px;}
.y10e{bottom:756.082500px;}
.y183{bottom:757.365000px;}
.ye3{bottom:760.339500px;}
.y5{bottom:762.205500px;}
.y10a{bottom:766.012500px;}
.y7c{bottom:766.200000px;}
.y142{bottom:769.528500px;}
.y1d{bottom:771.592500px;}
.y182{bottom:772.981500px;}
.y10b{bottom:775.935000px;}
.ye2{bottom:775.954500px;}
.y1bc{bottom:777.363000px;}
.yb1{bottom:778.090500px;}
.y4{bottom:779.214000px;}
.y7b{bottom:781.816500px;}
.y141{bottom:785.742000px;}
.y1c{bottom:787.209000px;}
.y1bb{bottom:792.979500px;}
.ye1{bottom:795.906000px;}
.ye0{bottom:799.486500px;}
.y140{bottom:801.358500px;}
.y1b{bottom:802.825500px;}
.y16a{bottom:804.256359px;}
.y163{bottom:804.278443px;}
.y109{bottom:804.787500px;}
.yde{bottom:807.055500px;}
.y1ba{bottom:808.596000px;}
.y7a{bottom:811.353000px;}
.ydf{bottom:812.161500px;}
.yb0{bottom:812.416500px;}
.y13f{bottom:816.696000px;}
.y1a{bottom:818.442000px;}
.y108{bottom:820.404000px;}
.yaf{bottom:828.033000px;}
.y1b9{bottom:830.190000px;}
.y13e{bottom:832.312500px;}
.y19{bottom:834.058500px;}
.y107{bottom:836.020500px;}
.ydd{bottom:838.600500px;}
.yae{bottom:843.649500px;}
.y1b8{bottom:845.806500px;}
.y13d{bottom:847.929000px;}
.y79{bottom:848.122500px;}
.y18{bottom:849.675000px;}
.y106{bottom:851.637000px;}
.ydc{bottom:854.217000px;}
.yad{bottom:859.266000px;}
.y78{bottom:863.739000px;}
.y17{bottom:865.291500px;}
.y105{bottom:867.253500px;}
.y1b7{bottom:867.400500px;}
.ydb{bottom:869.833500px;}
.yac{bottom:874.882500px;}
.y77{bottom:879.355500px;}
.y16{bottom:880.908000px;}
.y1b6{bottom:883.017000px;}
.yda{bottom:885.450000px;}
.y13c{bottom:889.743000px;}
.yab{bottom:890.499000px;}
.y76{bottom:894.972000px;}
.y104{bottom:896.790000px;}
.y15{bottom:897.400500px;}
.y1b5{bottom:898.633500px;}
.yaa{bottom:906.114000px;}
.y13b{bottom:908.946000px;}
.yd9{bottom:910.144500px;}
.y75{bottom:910.588500px;}
.y1b4{bottom:914.250000px;}
.ya9{bottom:921.730500px;}
.y74{bottom:926.205000px;}
.y3{bottom:926.520000px;}
.y13a{bottom:928.149000px;}
.y1b3{bottom:935.844000px;}
.ya8{bottom:937.347000px;}
.y73{bottom:941.821500px;}
.y139{bottom:944.362500px;}
.yd8{bottom:944.382000px;}
.y1b2{bottom:951.460500px;}
.y14{bottom:953.425500px;}
.y72{bottom:957.438000px;}
.ya7{bottom:958.756500px;}
.y103{bottom:959.979000px;}
.yd7{bottom:959.998500px;}
.y138{bottom:960.576000px;}
.y1b1{bottom:967.075500px;}
.ya6{bottom:967.878000px;}
.ya5{bottom:971.278500px;}
.y2{bottom:971.520000px;}
.y71{bottom:973.054500px;}
.y102{bottom:976.192500px;}
.y137{bottom:976.791000px;}
.y1b0{bottom:982.692000px;}
.yd6{bottom:982.891500px;}
.y70{bottom:988.669500px;}
.yd4{bottom:991.986000px;}
.y101{bottom:992.407500px;}
.y136{bottom:993.004500px;}
.y13{bottom:993.175500px;}
.yd5{bottom:995.566500px;}
.ya4{bottom:998.458500px;}
.y6f{bottom:1004.286000px;}
.y100{bottom:1008.621000px;}
.y135{bottom:1009.219500px;}
.y1{bottom:1011.498000px;}
.ya3{bottom:1016.304000px;}
.y6e{bottom:1019.902500px;}
.yd3{bottom:1024.744500px;}
.yff{bottom:1024.836000px;}
.ya2{bottom:1031.920500px;}
.y12{bottom:1033.225500px;}
.y6d{bottom:1035.519000px;}
.y134{bottom:1040.173500px;}
.yd2{bottom:1040.361000px;}
.yfe{bottom:1040.452500px;}
.ya1{bottom:1049.439000px;}
.yfd{bottom:1055.788500px;}
.y133{bottom:1055.790000px;}
.y6c{bottom:1065.055500px;}
.h7{height:5.796000px;}
.h13{height:15.971985px;}
.h11{height:24.677184px;}
.h3b{height:25.031475px;}
.h36{height:25.393725px;}
.h28{height:26.901000px;}
.h3d{height:28.323658px;}
.h39{height:28.733552px;}
.h38{height:30.348262px;}
.h32{height:30.844752px;}
.h12{height:32.900160px;}
.h15{height:36.904056px;}
.hd{height:37.011648px;}
.hc{height:37.226832px;}
.h3e{height:37.275648px;}
.h3f{height:37.281648px;}
.h6{height:37.325792px;}
.he{height:37.603404px;}
.h10{height:38.302752px;}
.h1a{height:40.347000px;}
.hf{height:47.531184px;}
.h14{height:48.281250px;}
.h25{height:48.499620px;}
.ha{height:49.206780px;}
.hb{height:49.350240px;}
.h40{height:49.491648px;}
.h9{height:49.637160px;}
.h2b{height:52.618752px;}
.h24{height:52.743000px;}
.h2c{height:53.829000px;}
.h17{height:53.943000px;}
.h19{height:53.949000px;}
.h20{height:54.543000px;}
.h5{height:55.992188px;}
.h4{height:56.367839px;}
.h26{height:67.287648px;}
.h1d{height:70.383000px;}
.h21{height:73.096752px;}
.h29{height:73.389648px;}
.h18{height:76.011648px;}
.h34{height:76.731648px;}
.h1c{height:80.697000px;}
.h2d{height:81.609648px;}
.h27{height:83.799000px;}
.h23{height:83.805000px;}
.h2{height:83.988281px;}
.h2e{height:86.037648px;}
.h1b{height:92.685000px;}
.h1f{height:99.939000px;}
.h30{height:99.945000px;}
.h33{height:102.063000px;}
.h2a{height:116.079000px;}
.h16{height:116.085000px;}
.h22{height:120.291000px;}
.h31{height:132.225000px;}
.h1e{height:146.895000px;}
.h2f{height:161.013000px;}
.h3{height:167.976562px;}
.h3a{height:274.403300px;}
.h3c{height:274.432032px;}
.h35{height:275.724624px;}
.h37{height:275.746532px;}
.h8{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:6.672004px;}
.w4{width:365.669640px;}
.w5{width:365.677200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:4.252500px;}
.x51{left:10.302694px;}
.x4e{left:12.144825px;}
.x46{left:13.322387px;}
.x4c{left:14.721294px;}
.x50{left:16.542540px;}
.x44{left:19.652535px;}
.x54{left:22.056430px;}
.x4b{left:24.583776px;}
.x4f{left:26.337465px;}
.x52{left:27.498229px;}
.x43{left:29.589210px;}
.x48{left:30.766772px;}
.x47{left:39.599372px;}
.x1{left:68.032500px;}
.x8{left:81.637500px;}
.x17{left:83.490000px;}
.x3{left:85.092000px;}
.x57{left:88.362000px;}
.x3f{left:90.121500px;}
.x3c{left:93.019500px;}
.x3e{left:98.319000px;}
.x10{left:100.812000px;}
.x9{left:104.053500px;}
.x2c{left:111.526500px;}
.x19{left:113.025000px;}
.x3d{left:115.063500px;}
.x18{left:116.572500px;}
.x11{left:118.753500px;}
.x1c{left:120.540000px;}
.x42{left:125.566500px;}
.x41{left:126.688500px;}
.x40{left:129.117000px;}
.x29{left:131.095500px;}
.x12{left:133.888500px;}
.x2e{left:143.286000px;}
.x53{left:148.302130px;}
.x4a{left:149.639259px;}
.x16{left:155.589000px;}
.x45{left:156.926154px;}
.x55{left:158.605520px;}
.x4d{left:160.826631px;}
.x58{left:182.847000px;}
.x14{left:184.077000px;}
.x31{left:186.676500px;}
.x2b{left:192.946500px;}
.x1a{left:199.785000px;}
.xa{left:201.798000px;}
.x56{left:210.183000px;}
.x5d{left:216.607500px;}
.x5b{left:219.541500px;}
.x6{left:225.934500px;}
.x15{left:227.127000px;}
.x7{left:228.226500px;}
.x30{left:235.873500px;}
.x2f{left:247.587000px;}
.x5a{left:251.982000px;}
.x59{left:259.776000px;}
.x13{left:266.431500px;}
.x2d{left:290.415000px;}
.x32{left:307.146000px;}
.x4{left:317.571000px;}
.x2a{left:331.096500px;}
.x1b{left:338.656500px;}
.x49{left:359.707812px;}
.x5c{left:418.551000px;}
.x5{left:443.923500px;}
.xc{left:472.819500px;}
.xb{left:475.114500px;}
.xe{left:489.108000px;}
.xd{left:495.235500px;}
.x33{left:497.542500px;}
.x25{left:507.253500px;}
.x38{left:508.854000px;}
.x27{left:527.710500px;}
.x3a{left:549.301500px;}
.x1e{left:551.170500px;}
.x21{left:555.786000px;}
.x20{left:558.090000px;}
.x35{left:568.735500px;}
.x26{left:571.794000px;}
.x28{left:584.716500px;}
.x36{left:590.178000px;}
.x24{left:606.888000px;}
.x22{left:611.511000px;}
.x39{left:612.655500px;}
.x34{left:630.924000px;}
.x23{left:656.866500px;}
.x1f{left:662.563500px;}
.x1d{left:673.398000px;}
.x37{left:704.874000px;}
.x3b{left:793.507500px;}
.xf{left:803.327683px;}
@media print{
.v24{vertical-align:-52.976000pt;}
.v26{vertical-align:-38.629333pt;}
.v16{vertical-align:-26.538667pt;}
.v20{vertical-align:-19.397333pt;}
.v2{vertical-align:-15.002667pt;}
.v11{vertical-align:-12.618667pt;}
.v9{vertical-align:-7.440000pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.712000pt;}
.v22{vertical-align:8.074667pt;}
.v27{vertical-align:11.093333pt;}
.v6{vertical-align:12.085333pt;}
.v21{vertical-align:13.744000pt;}
.vc{vertical-align:15.557333pt;}
.v1f{vertical-align:16.469333pt;}
.v1{vertical-align:20.314667pt;}
.vb{vertical-align:22.730667pt;}
.v1b{vertical-align:23.648000pt;}
.v13{vertical-align:25.616000pt;}
.vd{vertical-align:26.698667pt;}
.v19{vertical-align:28.613333pt;}
.v12{vertical-align:30.928000pt;}
.v14{vertical-align:32.432000pt;}
.v7{vertical-align:34.666667pt;}
.va{vertical-align:35.866667pt;}
.v17{vertical-align:38.629333pt;}
.v5{vertical-align:40.704000pt;}
.vf{vertical-align:41.738667pt;}
.v1d{vertical-align:43.941333pt;}
.v8{vertical-align:46.522667pt;}
.v1a{vertical-align:48.928000pt;}
.v1c{vertical-align:51.114667pt;}
.v10{vertical-align:53.824000pt;}
.v1e{vertical-align:54.821333pt;}
.v4{vertical-align:67.322667pt;}
.v15{vertical-align:71.061333pt;}
.v25{vertical-align:81.669333pt;}
.ve{vertical-align:94.709333pt;}
.v23{vertical-align:107.258667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000069pt;}
.ls7f{letter-spacing:0.000142pt;}
.ls36{letter-spacing:0.000205pt;}
.ls6e{letter-spacing:0.000511pt;}
.ls34{letter-spacing:0.000626pt;}
.ls74{letter-spacing:0.000855pt;}
.ls20{letter-spacing:0.001786pt;}
.ls24{letter-spacing:0.002850pt;}
.ls73{letter-spacing:0.003826pt;}
.ls5b{letter-spacing:0.004047pt;}
.ls33{letter-spacing:0.004158pt;}
.ls90{letter-spacing:0.004163pt;}
.ls81{letter-spacing:0.005475pt;}
.ls2d{letter-spacing:0.005538pt;}
.ls26{letter-spacing:0.795348pt;}
.ls86{letter-spacing:1.145333pt;}
.ls76{letter-spacing:1.367773pt;}
.ls84{letter-spacing:1.404231pt;}
.ls30{letter-spacing:1.799470pt;}
.ls2a{letter-spacing:1.843494pt;}
.ls32{letter-spacing:1.848828pt;}
.ls1f{letter-spacing:1.875091pt;}
.ls43{letter-spacing:1.987091pt;}
.ls12{letter-spacing:2.495428pt;}
.ls54{letter-spacing:2.648585pt;}
.ls3f{letter-spacing:2.650053pt;}
.ls5c{letter-spacing:2.652688pt;}
.ls56{letter-spacing:2.653918pt;}
.ls2{letter-spacing:2.656000pt;}
.ls1b{letter-spacing:2.656834pt;}
.ls2b{letter-spacing:2.657084pt;}
.ls53{letter-spacing:2.658021pt;}
.ls9b{letter-spacing:2.728204pt;}
.ls67{letter-spacing:2.732654pt;}
.ls1a{letter-spacing:2.733758pt;}
.ls1e{letter-spacing:2.734236pt;}
.ls83{letter-spacing:2.743378pt;}
.ls2c{letter-spacing:2.744924pt;}
.ls9{letter-spacing:4.499494pt;}
.ls8{letter-spacing:4.504828pt;}
.ls99{letter-spacing:5.459091pt;}
.ls98{letter-spacing:5.466043pt;}
.ls31{letter-spacing:6.139293pt;}
.ls9c{letter-spacing:6.375321pt;}
.ls1c{letter-spacing:7.235494pt;}
.ls42{letter-spacing:7.342161pt;}
.ls58{letter-spacing:8.116509pt;}
.ls9e{letter-spacing:8.189758pt;}
.ls89{letter-spacing:8.190236pt;}
.ls48{letter-spacing:8.193104pt;}
.ls13{letter-spacing:8.193546pt;}
.ls5e{letter-spacing:8.206180pt;}
.ls68{letter-spacing:9.107091pt;}
.lsa1{letter-spacing:9.613537pt;}
.ls60{letter-spacing:9.635312pt;}
.ls97{letter-spacing:9.764709pt;}
.ls45{letter-spacing:9.835522pt;}
.ls4{letter-spacing:9.887376pt;}
.ls18{letter-spacing:9.966161pt;}
.ls96{letter-spacing:10.101538pt;}
.ls41{letter-spacing:10.170871pt;}
.ls44{letter-spacing:10.258667pt;}
.ls15{letter-spacing:10.687428pt;}
.ls2f{letter-spacing:10.920425pt;}
.ls11{letter-spacing:10.925758pt;}
.lsa{letter-spacing:11.010155pt;}
.lsb{letter-spacing:11.029894pt;}
.lsc{letter-spacing:11.043814pt;}
.ls87{letter-spacing:11.506742pt;}
.ls4f{letter-spacing:11.712682pt;}
.lsa5{letter-spacing:11.953308pt;}
.ls3b{letter-spacing:11.953987pt;}
.ls95{letter-spacing:11.956709pt;}
.ls7a{letter-spacing:11.957078pt;}
.lsa6{letter-spacing:11.958641pt;}
.ls1d{letter-spacing:12.152425pt;}
.ls27{letter-spacing:12.330412pt;}
.ls6f{letter-spacing:12.411348pt;}
.ls82{letter-spacing:12.516502pt;}
.ls23{letter-spacing:12.578707pt;}
.ls3{letter-spacing:12.676709pt;}
.ls46{letter-spacing:12.679321pt;}
.ls6{letter-spacing:12.842043pt;}
.lsa2{letter-spacing:12.871013pt;}
.ls79{letter-spacing:13.319773pt;}
.ls47{letter-spacing:13.550647pt;}
.ls49{letter-spacing:13.556012pt;}
.ls5d{letter-spacing:13.576585pt;}
.ls80{letter-spacing:13.577836pt;}
.lse{letter-spacing:13.651091pt;}
.ls3e{letter-spacing:13.656425pt;}
.ls3d{letter-spacing:13.989538pt;}
.ls6d{letter-spacing:14.267921pt;}
.ls3a{letter-spacing:14.417987pt;}
.ls9f{letter-spacing:14.568425pt;}
.ls70{letter-spacing:14.614588pt;}
.ls6b{letter-spacing:14.688682pt;}
.lsa4{letter-spacing:14.692709pt;}
.ls16{letter-spacing:15.112828pt;}
.ls25{letter-spacing:15.231033pt;}
.ls77{letter-spacing:15.330956pt;}
.ls14{letter-spacing:15.422161pt;}
.ls22{letter-spacing:15.605078pt;}
.ls4e{letter-spacing:15.783282pt;}
.ls4d{letter-spacing:16.281314pt;}
.ls7c{letter-spacing:16.310588pt;}
.ls39{letter-spacing:16.343470pt;}
.ls63{letter-spacing:16.456828pt;}
.ls17{letter-spacing:16.462161pt;}
.ls5{letter-spacing:16.748923pt;}
.ls62{letter-spacing:16.812615pt;}
.ls28{letter-spacing:16.840828pt;}
.ls3c{letter-spacing:17.027494pt;}
.lsa3{letter-spacing:17.055376pt;}
.ls8d{letter-spacing:17.109078pt;}
.ls7b{letter-spacing:17.670588pt;}
.ls8c{letter-spacing:17.870854pt;}
.ls8f{letter-spacing:17.896828pt;}
.ls64{letter-spacing:18.152828pt;}
.lsd{letter-spacing:18.158161pt;}
.ls78{letter-spacing:18.211494pt;}
.ls61{letter-spacing:18.371494pt;}
.ls51{letter-spacing:18.444615pt;}
.ls6a{letter-spacing:18.942161pt;}
.ls71{letter-spacing:19.316105pt;}
.ls38{letter-spacing:19.748049pt;}
.ls8e{letter-spacing:19.760161pt;}
.ls1{letter-spacing:20.044822pt;}
.ls88{letter-spacing:20.349758pt;}
.ls7{letter-spacing:20.631378pt;}
.ls4c{letter-spacing:20.710015pt;}
.ls8b{letter-spacing:20.836188pt;}
.ls52{letter-spacing:22.286161pt;}
.ls37{letter-spacing:22.365249pt;}
.ls4b{letter-spacing:22.575169pt;}
.ls29{letter-spacing:22.936828pt;}
.ls65{letter-spacing:26.565372pt;}
.ls55{letter-spacing:26.570705pt;}
.ls75{letter-spacing:27.411494pt;}
.ls21{letter-spacing:40.715771pt;}
.ls5a{letter-spacing:41.251494pt;}
.ls2e{letter-spacing:42.137382pt;}
.ls4a{letter-spacing:50.598437pt;}
.ls9d{letter-spacing:52.580967pt;}
.ls57{letter-spacing:53.131771pt;}
.ls66{letter-spacing:53.133758pt;}
.ls7e{letter-spacing:53.136849pt;}
.ls10{letter-spacing:53.137104pt;}
.lsa0{letter-spacing:61.887169pt;}
.ls85{letter-spacing:87.368425pt;}
.ls92{letter-spacing:100.182704pt;}
.ls91{letter-spacing:100.188037pt;}
.ls93{letter-spacing:110.468362pt;}
.ls50{letter-spacing:129.174437pt;}
.ls5f{letter-spacing:139.414437pt;}
.ls94{letter-spacing:144.345695pt;}
.lsa7{letter-spacing:144.472256pt;}
.lsa8{letter-spacing:145.790283pt;}
.lsa9{letter-spacing:195.592949pt;}
.ls59{letter-spacing:205.885333pt;}
.ls69{letter-spacing:235.389333pt;}
.ls7d{letter-spacing:241.770705pt;}
.ls8a{letter-spacing:246.907771pt;}
.ls19{letter-spacing:277.181758pt;}
.lsf{letter-spacing:327.578705pt;}
.ls72{letter-spacing:330.016038pt;}
.ls35{letter-spacing:345.505104pt;}
.ls40{letter-spacing:527.195771pt;}
.ls9a{letter-spacing:545.274926pt;}
.wsa4{word-spacing:-49.148026pt;}
.wsb1{word-spacing:-40.970986pt;}
.ws6f{word-spacing:-38.905267pt;}
.ws63{word-spacing:-32.062416pt;}
.ws6d{word-spacing:-26.124657pt;}
.wsf9{word-spacing:-25.232170pt;}
.ws93{word-spacing:-23.885902pt;}
.wsac{word-spacing:-23.885376pt;}
.wsf3{word-spacing:-20.965068pt;}
.wsca{word-spacing:-20.959856pt;}
.ws6e{word-spacing:-18.887560pt;}
.wsa3{word-spacing:-18.373929pt;}
.wsb8{word-spacing:-14.905152pt;}
.ws9a{word-spacing:-14.392408pt;}
.wsf2{word-spacing:-13.652229pt;}
.wsda{word-spacing:-12.038651pt;}
.ws3{word-spacing:-11.954667pt;}
.wsd1{word-spacing:-11.882820pt;}
.wsd3{word-spacing:-10.811984pt;}
.wsbd{word-spacing:-10.697235pt;}
.wscf{word-spacing:-9.152154pt;}
.wse5{word-spacing:-8.065317pt;}
.wsd0{word-spacing:-7.758063pt;}
.ws71{word-spacing:-7.053580pt;}
.wsd6{word-spacing:-6.560154pt;}
.ws7c{word-spacing:-6.370808pt;}
.wsd5{word-spacing:-6.149487pt;}
.wse3{word-spacing:-6.113317pt;}
.ws7a{word-spacing:-6.017819pt;}
.wsde{word-spacing:-5.690820pt;}
.ws9e{word-spacing:-5.475190pt;}
.ws9f{word-spacing:-5.463355pt;}
.wsb2{word-spacing:-5.455775pt;}
.wsaf{word-spacing:-5.433965pt;}
.ws9c{word-spacing:-5.427180pt;}
.ws44{word-spacing:-2.821349pt;}
.wsb0{word-spacing:-2.749812pt;}
.ws9d{word-spacing:-2.749286pt;}
.ws6a{word-spacing:-2.731363pt;}
.wsbc{word-spacing:-2.726030pt;}
.ws13b{word-spacing:-2.581873pt;}
.wsc9{word-spacing:-2.534389pt;}
.ws13c{word-spacing:-2.438417pt;}
.wsb4{word-spacing:-2.342923pt;}
.wsf5{word-spacing:-2.338336pt;}
.wsb3{word-spacing:-2.317003pt;}
.ws46{word-spacing:-2.295487pt;}
.wsef{word-spacing:-2.199993pt;}
.wsf0{word-spacing:-2.199467pt;}
.wsee{word-spacing:-2.194155pt;}
.ws91{word-spacing:-2.151983pt;}
.ws90{word-spacing:-2.119669pt;}
.ws4d{word-spacing:-2.104021pt;}
.wsc7{word-spacing:-2.093003pt;}
.wsc8{word-spacing:-2.092821pt;}
.ws124{word-spacing:-2.057597pt;}
.ws4c{word-spacing:-2.056011pt;}
.ws102{word-spacing:-1.817062pt;}
.wscd{word-spacing:-1.769052pt;}
.wsce{word-spacing:-1.755281pt;}
.ws139{word-spacing:-1.721615pt;}
.ws128{word-spacing:-1.696289pt;}
.ws103{word-spacing:-1.696255pt;}
.ws138{word-spacing:-1.673606pt;}
.ws132{word-spacing:-1.578159pt;}
.ws131{word-spacing:-1.570667pt;}
.ws3a{word-spacing:-1.530150pt;}
.ws3b{word-spacing:-1.524646pt;}
.ws20{word-spacing:-1.434656pt;}
.ws149{word-spacing:-1.386694pt;}
.ws6c{word-spacing:-1.338684pt;}
.wsc0{word-spacing:-1.195754pt;}
.ws66{word-spacing:-1.195228pt;}
.wsdb{word-spacing:-1.191488pt;}
.wsbf{word-spacing:-1.175669pt;}
.ws55{word-spacing:-1.099734pt;}
.ws18{word-spacing:-1.058764pt;}
.ws19{word-spacing:-1.052250pt;}
.ws17{word-spacing:-1.051724pt;}
.ws2f{word-spacing:-1.004288pt;}
.ws38{word-spacing:-0.956804pt;}
.ws16{word-spacing:-0.956278pt;}
.ws4f{word-spacing:-0.860784pt;}
.ws14f{word-spacing:-0.765338pt;}
.ws39{word-spacing:-0.717328pt;}
.wsc{word-spacing:-0.669318pt;}
.ws53{word-spacing:-0.526388pt;}
.ws52{word-spacing:-0.525862pt;}
.wsf6{word-spacing:-0.453589pt;}
.ws28{word-spacing:-0.430416pt;}
.ws94{word-spacing:-0.382406pt;}
.wsbb{word-spacing:-0.342175pt;}
.wsba{word-spacing:-0.338155pt;}
.wsab{word-spacing:-0.334922pt;}
.ws36{word-spacing:-0.286960pt;}
.wsed{word-spacing:-0.238950pt;}
.ws1a{word-spacing:-0.143456pt;}
.ws73{word-spacing:-0.124485pt;}
.wsfd{word-spacing:-0.095494pt;}
.wse9{word-spacing:-0.047819pt;}
.ws83{word-spacing:-0.031883pt;}
.ws84{word-spacing:-0.023957pt;}
.ws2{word-spacing:-0.000255pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000255pt;}
.ws8e{word-spacing:0.000768pt;}
.wsae{word-spacing:0.001200pt;}
.wsad{word-spacing:0.001461pt;}
.ws136{word-spacing:0.002667pt;}
.wsc2{word-spacing:0.003179pt;}
.wsb6{word-spacing:0.006251pt;}
.ws114{word-spacing:0.006358pt;}
.ws11d{word-spacing:0.029333pt;}
.wsd2{word-spacing:0.045664pt;}
.wsd4{word-spacing:0.048010pt;}
.ws7{word-spacing:0.095446pt;}
.wsff{word-spacing:0.143456pt;}
.ws11e{word-spacing:0.191466pt;}
.ws10a{word-spacing:0.238950pt;}
.ws3c{word-spacing:0.286912pt;}
.ws100{word-spacing:0.334396pt;}
.ws31{word-spacing:0.334922pt;}
.ws2e{word-spacing:0.380560pt;}
.ws2d{word-spacing:0.382406pt;}
.ws7f{word-spacing:0.382932pt;}
.ws7e{word-spacing:0.430416pt;}
.ws14a{word-spacing:0.525862pt;}
.ws21{word-spacing:0.573872pt;}
.ws1e{word-spacing:0.621308pt;}
.ws7b{word-spacing:0.621882pt;}
.ws155{word-spacing:0.669318pt;}
.ws153{word-spacing:0.669844pt;}
.ws2b{word-spacing:0.717328pt;}
.ws92{word-spacing:0.721052pt;}
.ws126{word-spacing:0.765338pt;}
.ws29{word-spacing:0.812774pt;}
.ws51{word-spacing:0.860784pt;}
.ws62{word-spacing:0.908268pt;}
.ws88{word-spacing:0.908794pt;}
.ws14{word-spacing:0.956278pt;}
.ws156{word-spacing:1.004240pt;}
.wsb{word-spacing:1.099734pt;}
.ws96{word-spacing:1.147744pt;}
.ws45{word-spacing:1.195180pt;}
.ws67{word-spacing:1.242664pt;}
.ws69{word-spacing:1.243190pt;}
.ws68{word-spacing:1.267763pt;}
.ws9{word-spacing:1.291200pt;}
.ws12c{word-spacing:1.291737pt;}
.wsdc{word-spacing:1.338684pt;}
.ws108{word-spacing:1.386646pt;}
.ws1d{word-spacing:1.434656pt;}
.ws113{word-spacing:1.530150pt;}
.wsf8{word-spacing:1.576512pt;}
.wsfa{word-spacing:1.578112pt;}
.wsa6{word-spacing:1.625596pt;}
.ws12{word-spacing:1.626122pt;}
.wsa5{word-spacing:1.629664pt;}
.wse6{word-spacing:1.673606pt;}
.ws4b{word-spacing:1.700267pt;}
.wsc1{word-spacing:1.721615pt;}
.ws43{word-spacing:1.865071pt;}
.ws2c{word-spacing:1.912508pt;}
.wsb5{word-spacing:1.913081pt;}
.ws127{word-spacing:1.960518pt;}
.ws47{word-spacing:2.008527pt;}
.ws35{word-spacing:2.056537pt;}
.ws9b{word-spacing:2.103448pt;}
.ws99{word-spacing:2.103974pt;}
.ws98{word-spacing:2.113200pt;}
.ws5e{word-spacing:2.151457pt;}
.ws22{word-spacing:2.151983pt;}
.ws5d{word-spacing:2.166795pt;}
.ws5c{word-spacing:2.178608pt;}
.ws109{word-spacing:2.199467pt;}
.ws10c{word-spacing:2.199993pt;}
.ws14c{word-spacing:2.342923pt;}
.ws1b{word-spacing:2.343449pt;}
.ws1c{word-spacing:2.390933pt;}
.ws8{word-spacing:2.412128pt;}
.ws76{word-spacing:2.438417pt;}
.ws26{word-spacing:2.438943pt;}
.wsb9{word-spacing:2.486379pt;}
.ws3d{word-spacing:2.486905pt;}
.wsb7{word-spacing:2.493664pt;}
.wscc{word-spacing:2.534389pt;}
.ws41{word-spacing:2.574539pt;}
.ws87{word-spacing:2.578133pt;}
.ws42{word-spacing:2.581873pt;}
.ws3e{word-spacing:2.582399pt;}
.ws86{word-spacing:2.586923pt;}
.ws4a{word-spacing:2.593077pt;}
.wsfe{word-spacing:2.629883pt;}
.wsfb{word-spacing:2.725329pt;}
.ws89{word-spacing:2.725855pt;}
.wse4{word-spacing:2.773339pt;}
.ws148{word-spacing:2.820775pt;}
.ws77{word-spacing:2.821349pt;}
.ws82{word-spacing:2.868785pt;}
.ws111{word-spacing:2.869311pt;}
.ws32{word-spacing:2.916795pt;}
.ws49{word-spacing:2.932790pt;}
.wsd{word-spacing:2.964805pt;}
.ws146{word-spacing:3.012241pt;}
.ws12b{word-spacing:3.012815pt;}
.wsc3{word-spacing:3.059725pt;}
.wsc4{word-spacing:3.060251pt;}
.ws13f{word-spacing:3.156271pt;}
.wsa7{word-spacing:3.203707pt;}
.ws123{word-spacing:3.251717pt;}
.ws7d{word-spacing:3.299201pt;}
.ws34{word-spacing:3.299727pt;}
.ws25{word-spacing:3.395173pt;}
.ws65{word-spacing:3.442657pt;}
.ws64{word-spacing:3.443183pt;}
.ws56{word-spacing:3.490667pt;}
.ws95{word-spacing:3.538677pt;}
.ws78{word-spacing:3.633597pt;}
.ws79{word-spacing:3.634123pt;}
.ws15{word-spacing:3.682133pt;}
.ws107{word-spacing:3.873073pt;}
.ws12d{word-spacing:3.921083pt;}
.ws14b{word-spacing:3.969045pt;}
.ws151{word-spacing:4.064539pt;}
.ws152{word-spacing:4.065065pt;}
.wsec{word-spacing:4.112549pt;}
.ws142{word-spacing:4.159985pt;}
.ws143{word-spacing:4.160511pt;}
.ws5f{word-spacing:4.255479pt;}
.ws57{word-spacing:4.256005pt;}
.wsd7{word-spacing:4.304015pt;}
.ws6{word-spacing:4.399461pt;}
.ws33{word-spacing:4.420896pt;}
.ws12a{word-spacing:4.447471pt;}
.ws54{word-spacing:4.494907pt;}
.wsf1{word-spacing:4.587805pt;}
.ws30{word-spacing:4.590401pt;}
.wsc5{word-spacing:4.595829pt;}
.ws10b{word-spacing:4.638411pt;}
.ws120{word-spacing:4.685847pt;}
.ws2a{word-spacing:4.686373pt;}
.wse2{word-spacing:4.733857pt;}
.ws4e{word-spacing:4.781867pt;}
.ws27{word-spacing:4.877839pt;}
.ws13a{word-spacing:4.924797pt;}
.ws8b{word-spacing:4.927745pt;}
.ws48{word-spacing:4.973333pt;}
.ws13d{word-spacing:5.021343pt;}
.wse0{word-spacing:5.116263pt;}
.wsf7{word-spacing:5.116789pt;}
.wsdf{word-spacing:5.149189pt;}
.wse1{word-spacing:5.155179pt;}
.ws3f{word-spacing:5.164273pt;}
.ws8f{word-spacing:5.164799pt;}
.ws144{word-spacing:5.211709pt;}
.wse{word-spacing:5.260245pt;}
.ws11b{word-spacing:5.267179pt;}
.ws50{word-spacing:5.307729pt;}
.ws13{word-spacing:5.403748pt;}
.ws97{word-spacing:5.451185pt;}
.ws150{word-spacing:5.451711pt;}
.ws1f{word-spacing:5.547204pt;}
.ws24{word-spacing:5.642650pt;}
.wsa9{word-spacing:5.833590pt;}
.wsaa{word-spacing:5.834116pt;}
.ws140{word-spacing:5.881074pt;}
.ws58{word-spacing:5.882126pt;}
.ws60{word-spacing:5.929036pt;}
.ws61{word-spacing:5.929610pt;}
.ws104{word-spacing:5.955631pt;}
.ws105{word-spacing:5.966215pt;}
.wsa2{word-spacing:5.977046pt;}
.ws106{word-spacing:5.977572pt;}
.ws37{word-spacing:6.025582pt;}
.wscb{word-spacing:6.073066pt;}
.ws40{word-spacing:6.121076pt;}
.ws11{word-spacing:6.215996pt;}
.ws4{word-spacing:6.264006pt;}
.ws5{word-spacing:6.264532pt;}
.ws80{word-spacing:6.312016pt;}
.ws137{word-spacing:6.359978pt;}
.ws81{word-spacing:6.455998pt;}
.wsa{word-spacing:6.503482pt;}
.ws8a{word-spacing:6.598928pt;}
.ws8d{word-spacing:6.599454pt;}
.ws8c{word-spacing:6.624768pt;}
.ws23{word-spacing:6.744762pt;}
.ws101{word-spacing:6.885840pt;}
.wsa8{word-spacing:7.294015pt;}
.ws125{word-spacing:7.316256pt;}
.ws75{word-spacing:7.411750pt;}
.wsfc{word-spacing:7.459712pt;}
.ws141{word-spacing:7.842118pt;}
.ws121{word-spacing:7.890128pt;}
.wsa0{word-spacing:7.968256pt;}
.wsa1{word-spacing:7.985574pt;}
.ws119{word-spacing:8.224524pt;}
.ws11f{word-spacing:8.367980pt;}
.ws129{word-spacing:8.415990pt;}
.ws59{word-spacing:9.276774pt;}
.ws130{word-spacing:9.324783pt;}
.ws74{word-spacing:9.563733pt;}
.wsdd{word-spacing:9.659179pt;}
.ws11c{word-spacing:9.802635pt;}
.ws11a{word-spacing:9.815125pt;}
.ws122{word-spacing:9.994101pt;}
.ws154{word-spacing:10.179435pt;}
.ws14e{word-spacing:10.711477pt;}
.ws14d{word-spacing:10.758913pt;}
.ws145{word-spacing:10.950379pt;}
.ws5b{word-spacing:10.977973pt;}
.ws5a{word-spacing:10.998389pt;}
.wsf{word-spacing:12.002294pt;}
.wsd8{word-spacing:12.480529pt;}
.wsd9{word-spacing:12.528538pt;}
.ws118{word-spacing:12.910944pt;}
.ws147{word-spacing:13.101836pt;}
.ws85{word-spacing:13.542617pt;}
.ws13e{word-spacing:13.908928pt;}
.ws157{word-spacing:14.150646pt;}
.ws10{word-spacing:16.736533pt;}
.wseb{word-spacing:16.741333pt;}
.ws72{word-spacing:22.157664pt;}
.ws70{word-spacing:43.299526pt;}
.wsf4{word-spacing:48.123691pt;}
.wsea{word-spacing:51.808000pt;}
.ws10e{word-spacing:51.811435pt;}
.ws115{word-spacing:51.814650pt;}
.ws116{word-spacing:56.693077pt;}
.ws117{word-spacing:68.143744pt;}
.wse8{word-spacing:68.693685pt;}
.ws110{word-spacing:72.985301pt;}
.ws134{word-spacing:107.937075pt;}
.ws12f{word-spacing:109.495976pt;}
.ws10d{word-spacing:132.816256pt;}
.ws135{word-spacing:136.076806pt;}
.ws133{word-spacing:136.590689pt;}
.ws10f{word-spacing:151.417717pt;}
.wsbe{word-spacing:157.835691pt;}
.ws12e{word-spacing:182.534119pt;}
.wse7{word-spacing:215.203872pt;}
.ws6b{word-spacing:261.254357pt;}
.wsc6{word-spacing:270.758357pt;}
.ws112{word-spacing:390.452384pt;}
._18{margin-left:-26.451125pt;}
._d{margin-left:-7.125868pt;}
._0{margin-left:-6.057583pt;}
._9{margin-left:-5.117315pt;}
._3{margin-left:-4.146058pt;}
._4{margin-left:-2.868812pt;}
._1{margin-left:-1.913055pt;}
._2{margin-left:-0.955762pt;}
._17{width:2.026680pt;}
._14{width:3.149156pt;}
._16{width:4.499696pt;}
._15{width:5.831944pt;}
._1f{width:9.036847pt;}
._c{width:10.329071pt;}
._1c{width:12.480524pt;}
._b{width:14.106650pt;}
._5{width:15.063502pt;}
._8{width:16.528139pt;}
._7{width:17.645327pt;}
._1d{width:18.539668pt;}
._6{width:19.509251pt;}
._1a{width:20.563126pt;}
._a{width:21.661856pt;}
._20{width:23.335462pt;}
._19{width:24.466353pt;}
._12{width:25.678885pt;}
._1b{width:26.609542pt;}
._11{width:27.543456pt;}
._10{width:28.691200pt;}
._f{width:29.741346pt;}
._36{width:31.607273pt;}
._e{width:33.042125pt;}
._3b{width:34.046412pt;}
._13{width:36.809095pt;}
._3c{width:37.899774pt;}
._39{width:42.032512pt;}
._3d{width:44.593074pt;}
._2a{width:47.819435pt;}
._3e{width:52.424434pt;}
._29{width:55.792768pt;}
._2e{width:71.037802pt;}
._30{width:80.098411pt;}
._22{width:97.639051pt;}
._35{width:100.470027pt;}
._34{width:104.461077pt;}
._28{width:105.595435pt;}
._2d{width:115.080149pt;}
._31{width:119.737205pt;}
._33{width:121.055232pt;}
._2f{width:123.733589pt;}
._32{width:125.046283pt;}
._27{width:128.829589pt;}
._21{width:131.527051pt;}
._26{width:136.797589pt;}
._25{width:147.773077pt;}
._2c{width:154.345461pt;}
._3a{width:162.080518pt;}
._38{width:199.828742pt;}
._23{width:208.192000pt;}
._37{width:217.289811pt;}
._2b{width:236.214561pt;}
._1e{width:237.939138pt;}
._24{width:325.349589pt;}
.fs4{font-size:5.333333pt;}
.fs9{font-size:26.565333pt;}
.fs3{font-size:28.442667pt;}
.fsc{font-size:30.956800pt;}
.fsa{font-size:31.404800pt;}
.fs7{font-size:31.882667pt;}
.fsd{font-size:37.148160pt;}
.fsb{font-size:37.685760pt;}
.fs8{font-size:42.506667pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:47.818667pt;}
.fs5{font-size:63.760000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:1.622667pt;}
.y198{bottom:2.218829pt;}
.y178{bottom:3.094788pt;}
.y6b{bottom:3.466667pt;}
.y179{bottom:6.169946pt;}
.y199{bottom:8.023074pt;}
.y171{bottom:11.534828pt;}
.y192{bottom:12.150544pt;}
.y172{bottom:18.143183pt;}
.y193{bottom:18.664629pt;}
.y173{bottom:30.770268pt;}
.y194{bottom:34.529989pt;}
.y6a{bottom:35.045431pt;}
.y174{bottom:43.397353pt;}
.y195{bottom:50.330339pt;}
.y175{bottom:55.959273pt;}
.y196{bottom:66.195699pt;}
.y176{bottom:68.587143pt;}
.y177{bottom:81.149063pt;}
.y197{bottom:81.996824pt;}
.y10{bottom:84.045333pt;}
.y17a{bottom:85.663503pt;}
.y19a{bottom:85.930659pt;}
.y17b{bottom:92.271073pt;}
.y19b{bottom:92.444744pt;}
.yf{bottom:92.934667pt;}
.y45{bottom:94.488000pt;}
.ye{bottom:101.824000pt;}
.y17c{bottom:104.440433pt;}
.y19c{bottom:105.859099pt;}
.y69{bottom:106.476000pt;}
.y44{bottom:108.369333pt;}
.y132{bottom:110.061333pt;}
.yd{bottom:110.713333pt;}
.y17d{bottom:116.544628pt;}
.y68{bottom:118.465333pt;}
.y181{bottom:118.899988pt;}
.y1a0{bottom:118.951504pt;}
.y19d{bottom:119.274229pt;}
.yc{bottom:119.602667pt;}
.y43{bottom:122.250667pt;}
.y131{bottom:123.941333pt;}
.y17e{bottom:128.713988pt;}
.yb{bottom:129.484000pt;}
.y19e{bottom:132.688584pt;}
.y67{bottom:134.204000pt;}
.y42{bottom:136.132000pt;}
.y1af{bottom:136.156000pt;}
.y130{bottom:137.822667pt;}
.ya0{bottom:137.956000pt;}
.y17f{bottom:140.818183pt;}
.yd1{bottom:143.206667pt;}
.y19f{bottom:146.102939pt;}
.y16b{bottom:147.491703pt;}
.y41{bottom:150.013333pt;}
.y1ae{bottom:150.037333pt;}
.y12f{bottom:151.704000pt;}
.y9f{bottom:151.837333pt;}
.y66{bottom:152.728000pt;}
.y180{bottom:152.921593pt;}
.y1df{bottom:157.325333pt;}
.y185{bottom:157.879525pt;}
.y164{bottom:158.005243pt;}
.yd0{bottom:162.866667pt;}
.y40{bottom:163.894667pt;}
.y1ad{bottom:163.918667pt;}
.y186{bottom:164.393610pt;}
.y18f{bottom:164.483539pt;}
.y165{bottom:164.613598pt;}
.y16e{bottom:164.698393pt;}
.y12e{bottom:165.585333pt;}
.y9e{bottom:165.718667pt;}
.y65{bottom:166.609333pt;}
.y1de{bottom:171.206667pt;}
.y18d{bottom:172.287749pt;}
.y16c{bottom:172.615543pt;}
.y187{bottom:177.099054pt;}
.y3f{bottom:177.774667pt;}
.yfc{bottom:177.776000pt;}
.y1ac{bottom:177.800000pt;}
.y12d{bottom:179.466667pt;}
.y9d{bottom:179.600000pt;}
.y64{bottom:180.490667pt;}
.y166{bottom:180.708558pt;}
.ycf{bottom:183.822667pt;}
.y1dd{bottom:185.088000pt;}
.y188{bottom:189.739490pt;}
.y3e{bottom:191.656000pt;}
.y1ab{bottom:191.681333pt;}
.y162{bottom:191.969333pt;}
.y12c{bottom:193.348000pt;}
.y9c{bottom:193.481333pt;}
.y63{bottom:194.372000pt;}
.y167{bottom:196.738353pt;}
.y189{bottom:202.444934pt;}
.y1dc{bottom:204.282667pt;}
.yce{bottom:205.008000pt;}
.y3d{bottom:205.537333pt;}
.y1aa{bottom:205.562667pt;}
.y161{bottom:205.850667pt;}
.y12b{bottom:207.229333pt;}
.y9b{bottom:207.362667pt;}
.y62{bottom:208.253333pt;}
.ycd{bottom:211.736000pt;}
.y168{bottom:212.767363pt;}
.y18a{bottom:215.085370pt;}
.y191{bottom:216.401189pt;}
.y170{bottom:217.301433pt;}
.y1db{bottom:218.164000pt;}
.y3c{bottom:219.418667pt;}
.y1a9{bottom:219.444000pt;}
.y160{bottom:219.732000pt;}
.y12a{bottom:221.110667pt;}
.y9a{bottom:221.244000pt;}
.y61{bottom:222.134667pt;}
.y18b{bottom:227.725805pt;}
.y190{bottom:227.880744pt;}
.y169{bottom:228.797158pt;}
.y16f{bottom:228.947903pt;}
.y1da{bottom:232.045333pt;}
.y3b{bottom:233.300000pt;}
.y1a8{bottom:233.325333pt;}
.y18e{bottom:233.491664pt;}
.y15f{bottom:233.613333pt;}
.y16d{bottom:234.640023pt;}
.y129{bottom:234.992000pt;}
.y60{bottom:236.257333pt;}
.ycc{bottom:240.062667pt;}
.y98{bottom:245.386667pt;}
.y1d9{bottom:245.926667pt;}
.ya{bottom:246.229333pt;}
.y3a{bottom:247.181333pt;}
.y1a7{bottom:247.206667pt;}
.y15e{bottom:247.494667pt;}
.y128{bottom:248.873333pt;}
.y97{bottom:249.040000pt;}
.y5f{bottom:250.138667pt;}
.y96{bottom:252.061333pt;}
.ycb{bottom:253.944000pt;}
.y94{bottom:259.473333pt;}
.y99{bottom:259.474667pt;}
.y9{bottom:259.562667pt;}
.y1d8{bottom:259.808000pt;}
.y39{bottom:261.062667pt;}
.y15d{bottom:261.376000pt;}
.y93{bottom:262.496000pt;}
.y127{bottom:262.754667pt;}
.y5e{bottom:264.020000pt;}
.yca{bottom:267.825333pt;}
.y95{bottom:268.081333pt;}
.y8{bottom:272.896000pt;}
.y1a6{bottom:273.505333pt;}
.y38{bottom:274.944000pt;}
.y15c{bottom:275.257333pt;}
.y5d{bottom:277.901333pt;}
.y1d7{bottom:279.002667pt;}
.yc9{bottom:281.706667pt;}
.y126{bottom:284.705333pt;}
.y7{bottom:286.229333pt;}
.y37{bottom:288.825333pt;}
.y15b{bottom:289.138667pt;}
.y5c{bottom:292.024000pt;}
.y1d6{bottom:292.884000pt;}
.y92{bottom:295.102667pt;}
.yc8{bottom:295.588000pt;}
.y1a5{bottom:298.780000pt;}
.y6{bottom:299.562667pt;}
.y36{bottom:302.706667pt;}
.y15a{bottom:303.332000pt;}
.y5b{bottom:305.905333pt;}
.y1d5{bottom:306.764000pt;}
.y91{bottom:308.984000pt;}
.yc7{bottom:309.469333pt;}
.y125{bottom:310.065333pt;}
.y1a4{bottom:312.661333pt;}
.y35{bottom:316.588000pt;}
.y159{bottom:317.213333pt;}
.y5a{bottom:319.786667pt;}
.y124{bottom:323.946667pt;}
.y1d4{bottom:325.958667pt;}
.y1a3{bottom:326.542667pt;}
.yc6{bottom:330.425333pt;}
.y34{bottom:330.469333pt;}
.y158{bottom:331.094667pt;}
.yfb{bottom:333.490667pt;}
.y59{bottom:333.668000pt;}
.y90{bottom:337.292000pt;}
.y123{bottom:337.828000pt;}
.y1d3{bottom:339.840000pt;}
.y33{bottom:344.350667pt;}
.y157{bottom:344.976000pt;}
.y8e{bottom:345.958667pt;}
.yfa{bottom:346.752000pt;}
.y58{bottom:347.549333pt;}
.yc5{bottom:351.381333pt;}
.y122{bottom:351.709333pt;}
.y8f{bottom:353.112000pt;}
.y1d2{bottom:353.721333pt;}
.y32{bottom:358.232000pt;}
.y156{bottom:358.857333pt;}
.yf9{bottom:360.633333pt;}
.y57{bottom:361.430667pt;}
.yc4{bottom:365.262667pt;}
.y121{bottom:365.590667pt;}
.y1d1{bottom:367.602667pt;}
.y1a2{bottom:369.030667pt;}
.y31{bottom:372.112000pt;}
.y155{bottom:372.738667pt;}
.yf8{bottom:374.514667pt;}
.y56{bottom:375.312000pt;}
.yc3{bottom:379.144000pt;}
.y120{bottom:379.472000pt;}
.y8d{bottom:379.844000pt;}
.y1d0{bottom:381.484000pt;}
.y1a1{bottom:382.912000pt;}
.y30{bottom:385.993333pt;}
.y154{bottom:386.620000pt;}
.y55{bottom:389.193333pt;}
.yf7{bottom:390.684000pt;}
.y11f{bottom:393.353333pt;}
.y2f{bottom:399.874667pt;}
.yc2{bottom:400.100000pt;}
.y153{bottom:400.501333pt;}
.y1cf{bottom:400.678667pt;}
.y8c{bottom:401.794667pt;}
.y54{bottom:403.074667pt;}
.yf6{bottom:403.086667pt;}
.yf5{bottom:404.254667pt;}
.y11e{bottom:407.233333pt;}
.y18c{bottom:410.695145pt;}
.y184{bottom:410.720839pt;}
.y2e{bottom:413.756000pt;}
.y152{bottom:414.381333pt;}
.y1ce{bottom:414.560000pt;}
.y53{bottom:416.956000pt;}
.yc1{bottom:421.056000pt;}
.y11d{bottom:421.114667pt;}
.y2d{bottom:427.637333pt;}
.y151{bottom:428.262667pt;}
.y1cd{bottom:428.441333pt;}
.yf4{bottom:428.986667pt;}
.y8b{bottom:429.353333pt;}
.y52{bottom:430.837333pt;}
.yc0{bottom:434.937333pt;}
.y11c{bottom:434.996000pt;}
.y2c{bottom:441.518667pt;}
.y150{bottom:442.457333pt;}
.yf3{bottom:442.866667pt;}
.y8a{bottom:443.234667pt;}
.y51{bottom:444.960000pt;}
.y1cc{bottom:447.636000pt;}
.ybf{bottom:448.818667pt;}
.y11b{bottom:448.877333pt;}
.y2b{bottom:455.400000pt;}
.y14f{bottom:456.338667pt;}
.yf2{bottom:456.748000pt;}
.y89{bottom:457.116000pt;}
.y50{bottom:458.841333pt;}
.y1cb{bottom:461.517333pt;}
.ybe{bottom:462.700000pt;}
.y11a{bottom:462.758667pt;}
.y2a{bottom:469.281333pt;}
.y14e{bottom:470.220000pt;}
.yf1{bottom:470.629333pt;}
.y88{bottom:470.997333pt;}
.y4f{bottom:472.722667pt;}
.y1ca{bottom:475.398667pt;}
.ybd{bottom:476.580000pt;}
.y119{bottom:476.640000pt;}
.y29{bottom:483.162667pt;}
.y14d{bottom:484.101333pt;}
.y87{bottom:484.878667pt;}
.y4e{bottom:486.604000pt;}
.ybc{bottom:490.461333pt;}
.yf0{bottom:492.581333pt;}
.y1c9{bottom:494.593333pt;}
.y28{bottom:497.044000pt;}
.y14c{bottom:497.982667pt;}
.y118{bottom:498.590667pt;}
.y4d{bottom:500.484000pt;}
.ybb{bottom:504.342667pt;}
.y86{bottom:506.829333pt;}
.y1c8{bottom:508.474667pt;}
.y27{bottom:510.925333pt;}
.y14b{bottom:511.862667pt;}
.y4c{bottom:514.365333pt;}
.y117{bottom:521.066667pt;}
.y1c7{bottom:522.356000pt;}
.yef{bottom:523.014667pt;}
.y26{bottom:524.806667pt;}
.y14a{bottom:525.744000pt;}
.yba{bottom:526.294667pt;}
.y4b{bottom:528.246667pt;}
.y85{bottom:534.388000pt;}
.y1c6{bottom:536.237333pt;}
.yee{bottom:536.894667pt;}
.y25{bottom:538.688000pt;}
.y149{bottom:539.625333pt;}
.y4a{bottom:542.128000pt;}
.y84{bottom:548.269333pt;}
.y116{bottom:549.660000pt;}
.yed{bottom:550.776000pt;}
.y24{bottom:552.569333pt;}
.y148{bottom:553.506667pt;}
.y1c5{bottom:555.432000pt;}
.y49{bottom:556.009333pt;}
.yb9{bottom:556.805333pt;}
.y83{bottom:562.150667pt;}
.y115{bottom:563.541333pt;}
.y23{bottom:566.450667pt;}
.yec{bottom:568.738667pt;}
.y1c4{bottom:569.313333pt;}
.y48{bottom:569.890667pt;}
.yb8{bottom:570.686667pt;}
.yea{bottom:572.796000pt;}
.y82{bottom:576.032000pt;}
.y114{bottom:577.422667pt;}
.yeb{bottom:579.514667pt;}
.ye9{bottom:579.633333pt;}
.y1c3{bottom:583.193333pt;}
.y47{bottom:583.772000pt;}
.yb7{bottom:584.568000pt;}
.y81{bottom:589.913333pt;}
.y113{bottom:591.304000pt;}
.y22{bottom:592.705333pt;}
.y1c2{bottom:597.074667pt;}
.yb6{bottom:598.449333pt;}
.y112{bottom:605.185333pt;}
.ye8{bottom:606.450667pt;}
.y1c1{bottom:610.956000pt;}
.y80{bottom:611.864000pt;}
.y147{bottom:611.962667pt;}
.yb5{bottom:612.330667pt;}
.y111{bottom:619.066667pt;}
.ye7{bottom:620.332000pt;}
.y21{bottom:624.357333pt;}
.y146{bottom:626.374667pt;}
.y46{bottom:626.694667pt;}
.y1c0{bottom:630.150667pt;}
.y110{bottom:632.948000pt;}
.ye6{bottom:634.213333pt;}
.yb4{bottom:634.848000pt;}
.y20{bottom:638.238667pt;}
.y7f{bottom:639.422667pt;}
.y145{bottom:640.786667pt;}
.y1bf{bottom:644.032000pt;}
.y10f{bottom:646.829333pt;}
.ye5{bottom:648.094667pt;}
.y7e{bottom:653.304000pt;}
.y144{bottom:655.200000pt;}
.yb3{bottom:655.804000pt;}
.y1be{bottom:657.913333pt;}
.y1f{bottom:658.098667pt;}
.ye4{bottom:661.976000pt;}
.y10d{bottom:666.360000pt;}
.y7d{bottom:667.185333pt;}
.y143{bottom:669.612000pt;}
.yb2{bottom:669.685333pt;}
.y10c{bottom:670.417333pt;}
.y1bd{bottom:671.794667pt;}
.y1e{bottom:671.978667pt;}
.y10e{bottom:672.073333pt;}
.y183{bottom:673.213333pt;}
.ye3{bottom:675.857333pt;}
.y5{bottom:677.516000pt;}
.y10a{bottom:680.900000pt;}
.y7c{bottom:681.066667pt;}
.y142{bottom:684.025333pt;}
.y1d{bottom:685.860000pt;}
.y182{bottom:687.094667pt;}
.y10b{bottom:689.720000pt;}
.ye2{bottom:689.737333pt;}
.y1bc{bottom:690.989333pt;}
.yb1{bottom:691.636000pt;}
.y4{bottom:692.634667pt;}
.y7b{bottom:694.948000pt;}
.y141{bottom:698.437333pt;}
.y1c{bottom:699.741333pt;}
.y1bb{bottom:704.870667pt;}
.ye1{bottom:707.472000pt;}
.ye0{bottom:710.654667pt;}
.y140{bottom:712.318667pt;}
.y1b{bottom:713.622667pt;}
.y16a{bottom:714.894541pt;}
.y163{bottom:714.914172pt;}
.y109{bottom:715.366667pt;}
.yde{bottom:717.382667pt;}
.y1ba{bottom:718.752000pt;}
.y7a{bottom:721.202667pt;}
.ydf{bottom:721.921333pt;}
.yb0{bottom:722.148000pt;}
.y13f{bottom:725.952000pt;}
.y1a{bottom:727.504000pt;}
.y108{bottom:729.248000pt;}
.yaf{bottom:736.029333pt;}
.y1b9{bottom:737.946667pt;}
.y13e{bottom:739.833333pt;}
.y19{bottom:741.385333pt;}
.y107{bottom:743.129333pt;}
.ydd{bottom:745.422667pt;}
.yae{bottom:749.910667pt;}
.y1b8{bottom:751.828000pt;}
.y13d{bottom:753.714667pt;}
.y79{bottom:753.886667pt;}
.y18{bottom:755.266667pt;}
.y106{bottom:757.010667pt;}
.ydc{bottom:759.304000pt;}
.yad{bottom:763.792000pt;}
.y78{bottom:767.768000pt;}
.y17{bottom:769.148000pt;}
.y105{bottom:770.892000pt;}
.y1b7{bottom:771.022667pt;}
.ydb{bottom:773.185333pt;}
.yac{bottom:777.673333pt;}
.y77{bottom:781.649333pt;}
.y16{bottom:783.029333pt;}
.y1b6{bottom:784.904000pt;}
.yda{bottom:787.066667pt;}
.y13c{bottom:790.882667pt;}
.yab{bottom:791.554667pt;}
.y76{bottom:795.530667pt;}
.y104{bottom:797.146667pt;}
.y15{bottom:797.689333pt;}
.y1b5{bottom:798.785333pt;}
.yaa{bottom:805.434667pt;}
.y13b{bottom:807.952000pt;}
.yd9{bottom:809.017333pt;}
.y75{bottom:809.412000pt;}
.y1b4{bottom:812.666667pt;}
.ya9{bottom:819.316000pt;}
.y74{bottom:823.293333pt;}
.y3{bottom:823.573333pt;}
.y13a{bottom:825.021333pt;}
.y1b3{bottom:831.861333pt;}
.ya8{bottom:833.197333pt;}
.y73{bottom:837.174667pt;}
.y139{bottom:839.433333pt;}
.yd8{bottom:839.450667pt;}
.y1b2{bottom:845.742667pt;}
.y14{bottom:847.489333pt;}
.y72{bottom:851.056000pt;}
.ya7{bottom:852.228000pt;}
.y103{bottom:853.314667pt;}
.yd7{bottom:853.332000pt;}
.y138{bottom:853.845333pt;}
.y1b1{bottom:859.622667pt;}
.ya6{bottom:860.336000pt;}
.ya5{bottom:863.358667pt;}
.y2{bottom:863.573333pt;}
.y71{bottom:864.937333pt;}
.y102{bottom:867.726667pt;}
.y137{bottom:868.258667pt;}
.y1b0{bottom:873.504000pt;}
.yd6{bottom:873.681333pt;}
.y70{bottom:878.817333pt;}
.yd4{bottom:881.765333pt;}
.y101{bottom:882.140000pt;}
.y136{bottom:882.670667pt;}
.y13{bottom:882.822667pt;}
.yd5{bottom:884.948000pt;}
.ya4{bottom:887.518667pt;}
.y6f{bottom:892.698667pt;}
.y100{bottom:896.552000pt;}
.y135{bottom:897.084000pt;}
.y1{bottom:899.109333pt;}
.ya3{bottom:903.381333pt;}
.y6e{bottom:906.580000pt;}
.yd3{bottom:910.884000pt;}
.yff{bottom:910.965333pt;}
.ya2{bottom:917.262667pt;}
.y12{bottom:918.422667pt;}
.y6d{bottom:920.461333pt;}
.y134{bottom:924.598667pt;}
.yd2{bottom:924.765333pt;}
.yfe{bottom:924.846667pt;}
.ya1{bottom:932.834667pt;}
.yfd{bottom:938.478667pt;}
.y133{bottom:938.480000pt;}
.y6c{bottom:946.716000pt;}
.h7{height:5.152000pt;}
.h13{height:14.197320pt;}
.h11{height:21.935275pt;}
.h3b{height:22.250200pt;}
.h36{height:22.572200pt;}
.h28{height:23.912000pt;}
.h3d{height:25.176585pt;}
.h39{height:25.540935pt;}
.h38{height:26.976233pt;}
.h32{height:27.417557pt;}
.h12{height:29.244587pt;}
.h15{height:32.803605pt;}
.hd{height:32.899243pt;}
.hc{height:33.090517pt;}
.h3e{height:33.133909pt;}
.h3f{height:33.139243pt;}
.h6{height:33.178482pt;}
.he{height:33.425248pt;}
.h10{height:34.046891pt;}
.h1a{height:35.864000pt;}
.hf{height:42.249941pt;}
.h14{height:42.916667pt;}
.h25{height:43.110773pt;}
.ha{height:43.739360pt;}
.hb{height:43.866880pt;}
.h40{height:43.992576pt;}
.h9{height:44.121920pt;}
.h2b{height:46.772224pt;}
.h24{height:46.882667pt;}
.h2c{height:47.848000pt;}
.h17{height:47.949333pt;}
.h19{height:47.954667pt;}
.h20{height:48.482667pt;}
.h5{height:49.770833pt;}
.h4{height:50.104745pt;}
.h26{height:59.811243pt;}
.h1d{height:62.562667pt;}
.h21{height:64.974891pt;}
.h29{height:65.235243pt;}
.h18{height:67.565909pt;}
.h34{height:68.205909pt;}
.h1c{height:71.730667pt;}
.h2d{height:72.541909pt;}
.h27{height:74.488000pt;}
.h23{height:74.493333pt;}
.h2{height:74.656250pt;}
.h2e{height:76.477909pt;}
.h1b{height:82.386667pt;}
.h1f{height:88.834667pt;}
.h30{height:88.840000pt;}
.h33{height:90.722667pt;}
.h2a{height:103.181333pt;}
.h16{height:103.186667pt;}
.h22{height:106.925333pt;}
.h31{height:117.533333pt;}
.h1e{height:130.573333pt;}
.h2f{height:143.122667pt;}
.h3{height:149.312500pt;}
.h3a{height:243.914045pt;}
.h3c{height:243.939584pt;}
.h35{height:245.088555pt;}
.h37{height:245.108028pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.930671pt;}
.w4{width:325.039680pt;}
.w5{width:325.046400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.780000pt;}
.x51{left:9.157950pt;}
.x4e{left:10.795400pt;}
.x46{left:11.842122pt;}
.x4c{left:13.085595pt;}
.x50{left:14.704480pt;}
.x44{left:17.468920pt;}
.x54{left:19.605715pt;}
.x4b{left:21.852245pt;}
.x4f{left:23.411080pt;}
.x52{left:24.442870pt;}
.x43{left:26.301520pt;}
.x48{left:27.348242pt;}
.x47{left:35.199442pt;}
.x1{left:60.473333pt;}
.x8{left:72.566667pt;}
.x17{left:74.213333pt;}
.x3{left:75.637333pt;}
.x57{left:78.544000pt;}
.x3f{left:80.108000pt;}
.x3c{left:82.684000pt;}
.x3e{left:87.394667pt;}
.x10{left:89.610667pt;}
.x9{left:92.492000pt;}
.x2c{left:99.134667pt;}
.x19{left:100.466667pt;}
.x3d{left:102.278667pt;}
.x18{left:103.620000pt;}
.x11{left:105.558667pt;}
.x1c{left:107.146667pt;}
.x42{left:111.614667pt;}
.x41{left:112.612000pt;}
.x40{left:114.770667pt;}
.x29{left:116.529333pt;}
.x12{left:119.012000pt;}
.x2e{left:127.365333pt;}
.x53{left:131.824115pt;}
.x4a{left:133.012675pt;}
.x16{left:138.301333pt;}
.x45{left:139.489915pt;}
.x55{left:140.982685pt;}
.x4d{left:142.957005pt;}
.x58{left:162.530667pt;}
.x14{left:163.624000pt;}
.x31{left:165.934667pt;}
.x2b{left:171.508000pt;}
.x1a{left:177.586667pt;}
.xa{left:179.376000pt;}
.x56{left:186.829333pt;}
.x5d{left:192.540000pt;}
.x5b{left:195.148000pt;}
.x6{left:200.830667pt;}
.x15{left:201.890667pt;}
.x7{left:202.868000pt;}
.x30{left:209.665333pt;}
.x2f{left:220.077333pt;}
.x5a{left:223.984000pt;}
.x59{left:230.912000pt;}
.x13{left:236.828000pt;}
.x2d{left:258.146667pt;}
.x32{left:273.018667pt;}
.x4{left:282.285333pt;}
.x2a{left:294.308000pt;}
.x1b{left:301.028000pt;}
.x49{left:319.740277pt;}
.x5c{left:372.045333pt;}
.x5{left:394.598667pt;}
.xc{left:420.284000pt;}
.xb{left:422.324000pt;}
.xe{left:434.762667pt;}
.xd{left:440.209333pt;}
.x33{left:442.260000pt;}
.x25{left:450.892000pt;}
.x38{left:452.314667pt;}
.x27{left:469.076000pt;}
.x3a{left:488.268000pt;}
.x1e{left:489.929333pt;}
.x21{left:494.032000pt;}
.x20{left:496.080000pt;}
.x35{left:505.542667pt;}
.x26{left:508.261333pt;}
.x28{left:519.748000pt;}
.x36{left:524.602667pt;}
.x24{left:539.456000pt;}
.x22{left:543.565333pt;}
.x39{left:544.582667pt;}
.x34{left:560.821333pt;}
.x23{left:583.881333pt;}
.x1f{left:588.945333pt;}
.x1d{left:598.576000pt;}
.x37{left:626.554667pt;}
.x3b{left:705.340000pt;}
.xf{left:714.069051pt;}
}


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