
/* 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_3c606df277f4.woff")format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_f73630713a41.woff")format("woff");}.ff2{font-family:ff2;line-height:0.981000;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_ad71e0fd463b.woff")format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_342e6e45a56a.woff")format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_ff77be64f691.woff")format("woff");}.ff5{font-family:ff5;line-height:0.995000;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_691251b671a3.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_7403f4881d29.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_a3682890f9c6.woff")format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_f75ebdf63a24.woff")format("woff");}.ff9{font-family:ff9;line-height:1.022000;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_f6b632ad2133.woff")format("woff");}.ffa{font-family:ffa;line-height:0.878000;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_624d9a4fca21.woff")format("woff");}.ffb{font-family:ffb;line-height:0.664000;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_d81225abdf65.woff")format("woff");}.ffc{font-family:ffc;line-height:0.702000;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_a8512f148879.woff")format("woff");}.ffd{font-family:ffd;line-height:0.733000;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;}
.m5{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.199991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199991,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-ms-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-webkit-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);}
.m3{transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-ms-transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-webkit-transform:matrix(0.245667,0.000000,-0.046341,0.245667,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);}
.v12{vertical-align:-42.111600px;}
.v2{vertical-align:-25.444200px;}
.v5{vertical-align:-22.450800px;}
.v8{vertical-align:-15.511200px;}
.v10{vertical-align:-14.012704px;}
.v4{vertical-align:-12.499800px;}
.vf{vertical-align:-3.893104px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:7.193963px;}
.v11{vertical-align:12.501000px;}
.v9{vertical-align:19.694363px;}
.v3{vertical-align:22.026000px;}
.v1{vertical-align:28.437000px;}
.v7{vertical-align:31.192724px;}
.v6{vertical-align:43.506076px;}
.vb{vertical-align:50.887163px;}
.va{vertical-align:63.386029px;}
.vd{vertical-align:74.698200px;}
.vc{vertical-align:87.197742px;}
.ls6c{letter-spacing:-1.772093px;}
.ls1c{letter-spacing:-1.546390px;}
.ls6d{letter-spacing:-1.208436px;}
.ls1e{letter-spacing:-0.004789px;}
.ls0{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.000300px;}
.ls5a{letter-spacing:0.003592px;}
.ls1{letter-spacing:0.004191px;}
.ls5c{letter-spacing:0.833961px;}
.ls5b{letter-spacing:0.835218px;}
.ls57{letter-spacing:0.836456px;}
.ls52{letter-spacing:0.837056px;}
.ls38{letter-spacing:0.837113px;}
.ls55{letter-spacing:0.837769px;}
.ls1d{letter-spacing:0.838152px;}
.ls50{letter-spacing:1.180333px;}
.ls28{letter-spacing:1.182590px;}
.ls3f{letter-spacing:1.182649px;}
.ls32{letter-spacing:1.183603px;}
.ls4c{letter-spacing:1.184412px;}
.ls56{letter-spacing:1.184428px;}
.ls17{letter-spacing:1.184822px;}
.ls63{letter-spacing:1.185230px;}
.ls36{letter-spacing:1.185269px;}
.ls19{letter-spacing:1.185386px;}
.ls29{letter-spacing:1.186274px;}
.ls3b{letter-spacing:1.186804px;}
.ls33{letter-spacing:1.186874px;}
.ls61{letter-spacing:1.187030px;}
.ls4b{letter-spacing:1.187120px;}
.ls24{letter-spacing:1.187844px;}
.ls5f{letter-spacing:1.187857px;}
.ls2a{letter-spacing:1.188444px;}
.ls34{letter-spacing:1.188560px;}
.ls37{letter-spacing:1.188636px;}
.ls4d{letter-spacing:1.188707px;}
.ls3e{letter-spacing:1.188917px;}
.ls2c{letter-spacing:1.189160px;}
.ls3a{letter-spacing:1.189307px;}
.ls40{letter-spacing:1.189463px;}
.ls65{letter-spacing:1.190040px;}
.ls5d{letter-spacing:1.190092px;}
.ls2e{letter-spacing:1.190320px;}
.ls18{letter-spacing:1.191373px;}
.ls54{letter-spacing:1.191653px;}
.ls51{letter-spacing:1.192961px;}
.ls39{letter-spacing:1.193132px;}
.ls49{letter-spacing:1.667922px;}
.ls11{letter-spacing:1.873270px;}
.ls6b{letter-spacing:2.688073px;}
.ls60{letter-spacing:6.211256px;}
.ls5e{letter-spacing:6.211913px;}
.ls62{letter-spacing:6.212569px;}
.ls15{letter-spacing:6.561533px;}
.ls64{letter-spacing:10.227197px;}
.lsd{letter-spacing:11.959200px;}
.ls4e{letter-spacing:12.793313px;}
.ls26{letter-spacing:13.147013px;}
.ls14{letter-spacing:15.050815px;}
.ls68{letter-spacing:15.918901px;}
.ls48{letter-spacing:15.934467px;}
.ls47{letter-spacing:16.035045px;}
.ls46{letter-spacing:16.240991px;}
.ls43{letter-spacing:17.107880px;}
.ls16{letter-spacing:17.313826px;}
.ls23{letter-spacing:17.433562px;}
.ls10{letter-spacing:17.776200px;}
.ls3c{letter-spacing:18.458597px;}
.lsb{letter-spacing:18.507000px;}
.lsc{letter-spacing:18.507600px;}
.ls2d{letter-spacing:18.517172px;}
.ls42{letter-spacing:18.961393px;}
.ls69{letter-spacing:19.403219px;}
.lse{letter-spacing:19.900123px;}
.ls1a{letter-spacing:19.918084px;}
.ls8{letter-spacing:19.930057px;}
.ls2{letter-spacing:19.934024px;}
.ls3{letter-spacing:19.935974px;}
.ls4{letter-spacing:19.936574px;}
.ls9{letter-spacing:20.327109px;}
.ls22{letter-spacing:20.630513px;}
.ls44{letter-spacing:21.207640px;}
.ls1b{letter-spacing:21.785965px;}
.lsa{letter-spacing:22.312804px;}
.ls45{letter-spacing:22.586999px;}
.ls7{letter-spacing:22.636091px;}
.ls2f{letter-spacing:23.118084px;}
.ls66{letter-spacing:23.228784px;}
.ls1f{letter-spacing:23.570032px;}
.ls20{letter-spacing:23.881200px;}
.ls2b{letter-spacing:25.066732px;}
.ls5{letter-spacing:25.665412px;}
.ls59{letter-spacing:25.886923px;}
.ls67{letter-spacing:26.563432px;}
.ls35{letter-spacing:27.383623px;}
.lsf{letter-spacing:28.236000px;}
.ls27{letter-spacing:29.712488px;}
.ls21{letter-spacing:29.730449px;}
.ls13{letter-spacing:30.598535px;}
.ls58{letter-spacing:34.238509px;}
.ls53{letter-spacing:36.070470px;}
.ls12{letter-spacing:39.590708px;}
.ls25{letter-spacing:43.386340px;}
.ls6{letter-spacing:44.200544px;}
.ls4a{letter-spacing:45.697244px;}
.ls31{letter-spacing:48.032096px;}
.ls30{letter-spacing:344.905535px;}
.ls3d{letter-spacing:520.935415px;}
.ls41{letter-spacing:626.063623px;}
.ls4f{letter-spacing:749.930515px;}
.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;}
}
.wsb2{word-spacing:-34.298377px;}
.wsa1{word-spacing:-22.634893px;}
.ws51{word-spacing:-19.989925px;}
.ws3{word-spacing:-16.980000px;}
.wsed{word-spacing:-15.982361px;}
.ws2{word-spacing:-15.282000px;}
.ws53{word-spacing:-15.110683px;}
.ws96{word-spacing:-13.206881px;}
.ws0{word-spacing:-12.735000px;}
.wsbd{word-spacing:-1.709830px;}
.ws57{word-spacing:-0.880060px;}
.wsb9{word-spacing:-0.875869px;}
.wsa{word-spacing:-0.059868px;}
.ws75{word-spacing:-0.053881px;}
.ws78{word-spacing:-0.047894px;}
.ws7{word-spacing:-0.046098px;}
.ws77{word-spacing:-0.043105px;}
.ws13{word-spacing:-0.041908px;}
.wsb7{word-spacing:-0.039513px;}
.ws8{word-spacing:-0.038914px;}
.wsb8{word-spacing:-0.035921px;}
.ws72{word-spacing:-0.032927px;}
.ws4{word-spacing:0.000000px;}
.wsf4{word-spacing:1.175508px;}
.ws2a{word-spacing:1.504483px;}
.ws94{word-spacing:10.381111px;}
.wsfe{word-spacing:11.973600px;}
.wse2{word-spacing:12.011916px;}
.ws9b{word-spacing:12.112494px;}
.wsa6{word-spacing:12.179546px;}
.ws99{word-spacing:12.687227px;}
.wsfd{word-spacing:13.405643px;}
.wse8{word-spacing:13.846271px;}
.ws100{word-spacing:14.013901px;}
.wsaa{word-spacing:14.373109px;}
.wsf5{word-spacing:14.559898px;}
.ws5f{word-spacing:14.613779px;}
.wsff{word-spacing:14.866422px;}
.ws24{word-spacing:14.966769px;}
.ws52{word-spacing:14.990947px;}
.ws102{word-spacing:15.105894px;}
.wsa9{word-spacing:15.139420px;}
.ws17{word-spacing:15.176538px;}
.wse0{word-spacing:15.212459px;}
.ws1f{word-spacing:15.278314px;}
.ws7c{word-spacing:15.314234px;}
.wsf0{word-spacing:15.426786px;}
.ws32{word-spacing:15.433970px;}
.ws92{word-spacing:15.451931px;}
.wsc7{word-spacing:15.859033px;}
.wsea{word-spacing:15.867415px;}
.ws9e{word-spacing:15.872204px;}
.ws86{word-spacing:15.876994px;}
.wse7{word-spacing:15.881783px;}
.ws73{word-spacing:15.886572px;}
.ws79{word-spacing:15.896151px;}
.ws89{word-spacing:15.924888px;}
.wsab{word-spacing:15.934467px;}
.wsa8{word-spacing:15.972782px;}
.wsa7{word-spacing:15.987151px;}
.wsf3{word-spacing:16.006308px;}
.ws23{word-spacing:16.026664px;}
.wsb6{word-spacing:16.089935px;}
.ws103{word-spacing:16.126044px;}
.ws104{word-spacing:16.135623px;}
.wsa5{word-spacing:16.173939px;}
.ws5b{word-spacing:16.182320px;}
.wsa4{word-spacing:16.193097px;}
.wsef{word-spacing:16.226623px;}
.ws83{word-spacing:16.248175px;}
.ws106{word-spacing:16.279307px;}
.ws95{word-spacing:16.451862px;}
.wsdd{word-spacing:16.535542px;}
.wsd8{word-spacing:16.930670px;}
.wsd9{word-spacing:16.941720px;}
.wse5{word-spacing:16.973775px;}
.wse6{word-spacing:16.983354px;}
.ws9a{word-spacing:17.059985px;}
.ws4b{word-spacing:17.080340px;}
.ws67{word-spacing:17.146195px;}
.ws68{word-spacing:17.152182px;}
.wsfa{word-spacing:17.198879px;}
.ws5c{word-spacing:17.253958px;}
.ws50{word-spacing:17.271918px;}
.ws91{word-spacing:17.373694px;}
.ws5a{word-spacing:17.541324px;}
.ws28{word-spacing:17.607179px;}
.wscd{word-spacing:17.613166px;}
.ws21{word-spacing:17.708954px;}
.ws22{word-spacing:17.714941px;}
.ws74{word-spacing:17.829289px;}
.ws76{word-spacing:17.861618px;}
.ws9{word-spacing:17.872394px;}
.wse4{word-spacing:17.878980px;}
.wse1{word-spacing:17.882572px;}
.ws5d{word-spacing:17.900532px;}
.ws46{word-spacing:17.948426px;}
.ws6b{word-spacing:18.104083px;}
.wse{word-spacing:18.223819px;}
.ws66{word-spacing:18.391450px;}
.ws16{word-spacing:18.445331px;}
.ws101{word-spacing:18.606974px;}
.ws9c{word-spacing:18.726710px;}
.ws8a{word-spacing:18.852433px;}
.ws6a{word-spacing:18.888354px;}
.ws98{word-spacing:18.913499px;}
.ws97{word-spacing:18.923077px;}
.wsda{word-spacing:18.936248px;}
.wsd1{word-spacing:19.020064px;}
.wsf9{word-spacing:19.047603px;}
.wsf8{word-spacing:19.052392px;}
.ws7f{word-spacing:19.103879px;}
.wseb{word-spacing:19.133813px;}
.wsf6{word-spacing:19.152971px;}
.ws3b{word-spacing:19.241575px;}
.wsc9{word-spacing:19.343351px;}
.wsfb{word-spacing:19.425969px;}
.wse3{word-spacing:19.430758px;}
.wsc8{word-spacing:19.481047px;}
.ws44{word-spacing:19.630717px;}
.ws42{word-spacing:19.636704px;}
.ws43{word-spacing:19.645320px;}
.ws18{word-spacing:19.828282px;}
.ws19{word-spacing:19.840255px;}
.ws63{word-spacing:19.846242px;}
.ws1c{word-spacing:19.852229px;}
.ws64{word-spacing:19.858216px;}
.ws6{word-spacing:19.870189px;}
.wsf{word-spacing:19.942031px;}
.ws60{word-spacing:19.959991px;}
.ws55{word-spacing:20.091701px;}
.ws1e{word-spacing:20.109661px;}
.ws105{word-spacing:20.120437px;}
.ws61{word-spacing:20.229397px;}
.ws12{word-spacing:20.265318px;}
.ws45{word-spacing:20.385054px;}
.ws8d{word-spacing:20.414988px;}
.ws8f{word-spacing:20.558671px;}
.ws8e{word-spacing:20.570645px;}
.ws6c{word-spacing:20.588605px;}
.wsdc{word-spacing:20.600579px;}
.ws59{word-spacing:20.767350px;}
.ws36{word-spacing:20.792156px;}
.ws37{word-spacing:20.798143px;}
.ws38{word-spacing:20.810117px;}
.ws3a{word-spacing:20.875972px;}
.ws1a{word-spacing:21.097483px;}
.ws1b{word-spacing:21.115444px;}
.wsee{word-spacing:21.126220px;}
.ws9d{word-spacing:21.159746px;}
.ws87{word-spacing:21.199259px;}
.wsca{word-spacing:21.217219px;}
.ws48{word-spacing:21.336955px;}
.ws58{word-spacing:21.588401px;}
.ws25{word-spacing:21.624322px;}
.ws4a{word-spacing:21.642282px;}
.ws70{word-spacing:21.726097px;}
.ws93{word-spacing:21.881754px;}
.ws7d{word-spacing:21.941622px;}
.ws7e{word-spacing:21.947609px;}
.ws8b{word-spacing:22.115239px;}
.ws14{word-spacing:22.234975px;}
.ws15{word-spacing:22.252936px;}
.ws31{word-spacing:22.336751px;}
.ws3c{word-spacing:22.359064px;}
.ws6d{word-spacing:22.474447px;}
.wsa2{word-spacing:22.534315px;}
.wsa0{word-spacing:22.539105px;}
.ws9f{word-spacing:22.548684px;}
.ws33{word-spacing:22.558262px;}
.wsd{word-spacing:22.576223px;}
.ws84{word-spacing:22.677998px;}
.ws71{word-spacing:22.761814px;}
.ws6e{word-spacing:22.833655px;}
.wsf2{word-spacing:22.859997px;}
.wsc4{word-spacing:22.966062px;}
.wsc5{word-spacing:22.966718px;}
.wsc0{word-spacing:23.168916px;}
.wsd3{word-spacing:23.204837px;}
.wsde{word-spacing:23.270692px;}
.ws62{word-spacing:23.306612px;}
.ws41{word-spacing:23.378454px;}
.ws7b{word-spacing:23.510164px;}
.ws1d{word-spacing:23.528124px;}
.wsd4{word-spacing:23.611939px;}
.wsfc{word-spacing:23.626308px;}
.ws3e{word-spacing:23.665820px;}
.ws3f{word-spacing:23.676139px;}
.wsa3{word-spacing:23.693360px;}
.ws2f{word-spacing:23.731675px;}
.wse9{word-spacing:23.760412px;}
.ws30{word-spacing:23.767596px;}
.wsc3{word-spacing:23.785556px;}
.ws81{word-spacing:23.815490px;}
.ws10{word-spacing:24.054962px;}
.wsb3{word-spacing:24.330355px;}
.ws80{word-spacing:24.342329px;}
.wscf{word-spacing:24.515946px;}
.ws82{word-spacing:24.653642px;}
.ws54{word-spacing:24.988903px;}
.wsc2{word-spacing:25.330151px;}
.wsf1{word-spacing:25.451084px;}
.wsec{word-spacing:25.455874px;}
.wsdf{word-spacing:25.551662px;}
.wsf7{word-spacing:25.566031px;}
.wsb{word-spacing:25.605544px;}
.wsd2{word-spacing:26.048567px;}
.wsc1{word-spacing:26.503564px;}
.ws27{word-spacing:27.647042px;}
.wsd7{word-spacing:27.760792px;}
.wsd6{word-spacing:27.778029px;}
.ws26{word-spacing:27.796712px;}
.ws5{word-spacing:27.826447px;}
.ws7a{word-spacing:27.970330px;}
.ws20{word-spacing:28.173881px;}
.ws2c{word-spacing:28.407366px;}
.ws29{word-spacing:28.700719px;}
.ws2b{word-spacing:28.712420px;}
.ws3d{word-spacing:28.730653px;}
.ws85{word-spacing:29.024006px;}
.wsb4{word-spacing:29.089861px;}
.ws8c{word-spacing:29.377228px;}
.ws6f{word-spacing:29.479003px;}
.wsbf{word-spacing:29.496964px;}
.ws2e{word-spacing:29.568805px;}
.ws90{word-spacing:29.652620px;}
.ws88{word-spacing:29.658607px;}
.ws35{word-spacing:29.670581px;}
.wsd0{word-spacing:29.772356px;}
.wsba{word-spacing:30.215380px;}
.ws4e{word-spacing:30.514720px;}
.ws4f{word-spacing:30.538667px;}
.ws5e{word-spacing:31.065505px;}
.ws56{word-spacing:31.075320px;}
.ws47{word-spacing:31.077479px;}
.ws2d{word-spacing:31.251096px;}
.ws49{word-spacing:31.724053px;}
.ws69{word-spacing:32.035367px;}
.wsce{word-spacing:32.047340px;}
.wsbc{word-spacing:32.250892px;}
.ws4d{word-spacing:32.592139px;}
.ws4c{word-spacing:32.795690px;}
.wsdb{word-spacing:33.053123px;}
.ws65{word-spacing:33.154898px;}
.wsad{word-spacing:33.394370px;}
.wsac{word-spacing:33.903248px;}
.wsaf{word-spacing:34.795282px;}
.wsae{word-spacing:34.813242px;}
.wsb0{word-spacing:34.819229px;}
.wsb1{word-spacing:35.244292px;}
.ws11{word-spacing:35.908826px;}
.ws40{word-spacing:36.471586px;}
.wsc6{word-spacing:36.489546px;}
.wscb{word-spacing:37.741633px;}
.ws34{word-spacing:38.123942px;}
.wscc{word-spacing:38.560979px;}
.wsb5{word-spacing:39.381170px;}
.ws39{word-spacing:39.530840px;}
.wsd5{word-spacing:41.219118px;}
.wsc{word-spacing:44.140676px;}
.wsbe{word-spacing:47.457364px;}
.wsbb{word-spacing:80.690090px;}
.ws1{word-spacing:947.249985px;}
._12{margin-left:-1667.299853px;}
._1c{margin-left:-39.033936px;}
._19{margin-left:-22.615736px;}
._9{margin-left:-19.942031px;}
._22{margin-left:-17.711349px;}
._a{margin-left:-15.092723px;}
._2{margin-left:-7.789962px;}
._21{margin-left:-6.178378px;}
._4{margin-left:-4.951682px;}
._3{margin-left:-2.963766px;}
._1{margin-left:-1.500281px;}
._0{width:2.034000px;}
._e{width:5.358506px;}
._d{width:6.549559px;}
._17{width:10.129666px;}
._13{width:12.087349px;}
._14{width:14.302465px;}
._f{width:16.523568px;}
._10{width:17.870598px;}
._5{width:18.930262px;}
._15{width:20.528737px;}
._7{width:22.516355px;}
._c{width:23.983121px;}
._20{width:25.200537px;}
._b{width:26.240144px;}
._16{width:27.569214px;}
._18{width:28.583378px;}
._8{width:31.789908px;}
._6{width:34.068473px;}
._1d{width:38.369401px;}
._1f{width:47.536861px;}
._1e{width:80.761932px;}
._1a{width:105.960673px;}
._11{width:1386.819770px;}
._1b{width:1559.523084px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,174,239);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:32.927400px;}
.fs10{font-size:35.920800px;}
.fs7{font-size:38.914200px;}
.fs6{font-size:41.907600px;}
.fs0{font-size:45.000000px;}
.fsb{font-size:47.894400px;}
.fs8{font-size:53.881200px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.868000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.923836px;}
.fs9{font-size:62.131169px;}
.fs4{font-size:83.814600px;}
.fs1{font-size:120.000000px;}
.fsf{font-size:170.010600px;}
.fse{font-size:170.605800px;}
.fsd{font-size:174.807000px;}
.y0{bottom:0.000000px;}
.y74{bottom:35.920650px;}
.yc9{bottom:36.005700px;}
.y8d{bottom:36.006127px;}
.ycc{bottom:37.400250px;}
.yc8{bottom:39.828150px;}
.ycb{bottom:40.525500px;}
.yca{bottom:46.478409px;}
.yc7{bottom:51.402000px;}
.y8c{bottom:53.366350px;}
.y2{bottom:60.739471px;}
.y71{bottom:70.386000px;}
.y8b{bottom:70.726574px;}
.y72{bottom:75.957300px;}
.ybf{bottom:84.580200px;}
.y1{bottom:86.239471px;}
.y70{bottom:87.598050px;}
.y8a{bottom:88.086797px;}
.ybe{bottom:88.402650px;}
.yc5{bottom:88.453650px;}
.ybd{bottom:89.100000px;}
.yc0{bottom:95.052909px;}
.yc6{bottom:95.158567px;}
.yc3{bottom:97.914300px;}
.yc1{bottom:98.539350px;}
.yc2{bottom:99.976500px;}
.yc4{bottom:99.976650px;}
.y6f{bottom:104.810100px;}
.y89{bottom:105.447020px;}
.y45{bottom:110.835807px;}
.ybc{bottom:111.048750px;}
.y6e{bottom:122.022150px;}
.y88{bottom:122.807244px;}
.y44{bottom:128.344820px;}
.y6d{bottom:139.234200px;}
.y87{bottom:140.167467px;}
.y43{bottom:145.854713px;}
.y6c{bottom:156.446250px;}
.yb6{bottom:156.718950px;}
.y86{bottom:157.527690px;}
.yb5{bottom:160.541550px;}
.yb9{bottom:160.592700px;}
.y42{bottom:163.364607px;}
.yb7{bottom:167.191659px;}
.yba{bottom:167.297617px;}
.yb8{bottom:170.053200px;}
.yb4{bottom:172.115400px;}
.ybb{bottom:172.115550px;}
.y6b{bottom:173.658300px;}
.y85{bottom:174.887914px;}
.y41{bottom:180.873863px;}
.y6a{bottom:190.870350px;}
.y84{bottom:192.248137px;}
.y40{bottom:198.383757px;}
.yac{bottom:205.293600px;}
.y69{bottom:208.082400px;}
.yab{bottom:209.116050px;}
.yb0{bottom:209.167050px;}
.y83{bottom:209.608360px;}
.yb3{bottom:209.813400px;}
.yad{bottom:215.766309px;}
.yb1{bottom:215.871967px;}
.y3f{bottom:215.891160px;}
.yae{bottom:218.627700px;}
.yb2{bottom:219.252750px;}
.yaa{bottom:220.689001px;}
.yaf{bottom:220.689900px;}
.y68{bottom:225.294450px;}
.y137{bottom:226.816650px;}
.y171{bottom:226.931700px;}
.y82{bottom:226.968583px;}
.y3e{bottom:233.401054px;}
.y67{bottom:242.506500px;}
.y136{bottom:244.028700px;}
.y81{bottom:244.328807px;}
.y170{bottom:246.763050px;}
.y3d{bottom:250.910947px;}
.ya4{bottom:253.867950px;}
.y16f{bottom:255.368850px;}
.ya3{bottom:257.690550px;}
.ya8{bottom:257.741550px;}
.ya2{bottom:258.387900px;}
.y66{bottom:259.718550px;}
.y135{bottom:261.240750px;}
.y80{bottom:261.689030px;}
.ya5{bottom:264.340659px;}
.ya9{bottom:264.446467px;}
.ya6{bottom:267.202200px;}
.y3c{bottom:268.420840px;}
.ya7{bottom:269.264400px;}
.y16e{bottom:275.200200px;}
.y65{bottom:276.930600px;}
.y134{bottom:278.452800px;}
.y7f{bottom:279.049253px;}
.ya1{bottom:280.336500px;}
.y16d{bottom:283.806150px;}
.y3b{bottom:285.930734px;}
.y64{bottom:294.142650px;}
.y133{bottom:295.664700px;}
.y7e{bottom:296.409477px;}
.y3a{bottom:303.440627px;}
.y16c{bottom:303.637350px;}
.y62{bottom:311.353614px;}
.y63{bottom:311.354700px;}
.y16b{bottom:312.243150px;}
.y132{bottom:312.876750px;}
.y7d{bottom:313.769194px;}
.y39{bottom:320.950520px;}
.y9b{bottom:326.007000px;}
.y61{bottom:328.565664px;}
.y9a{bottom:329.829450px;}
.y9f{bottom:329.880450px;}
.y131{bottom:330.088650px;}
.y99{bottom:330.526800px;}
.y7c{bottom:331.129417px;}
.y16a{bottom:332.074500px;}
.y9c{bottom:336.479709px;}
.ya0{bottom:336.585367px;}
.y38{bottom:338.460413px;}
.y9d{bottom:339.341100px;}
.y169{bottom:340.680450px;}
.y9e{bottom:341.403300px;}
.y60{bottom:345.777714px;}
.y130{bottom:347.300700px;}
.y7b{bottom:348.489640px;}
.y98{bottom:352.475400px;}
.y37{bottom:355.970307px;}
.y168{bottom:360.511650px;}
.y5f{bottom:362.989764px;}
.y12f{bottom:364.512750px;}
.y7a{bottom:365.999533px;}
.y167{bottom:369.117600px;}
.y36{bottom:373.480200px;}
.y12d{bottom:377.676900px;}
.y5d{bottom:381.069600px;}
.y5e{bottom:381.069900px;}
.y12b{bottom:381.724061px;}
.y12c{bottom:381.724800px;}
.y79{bottom:383.509427px;}
.y12e{bottom:388.153800px;}
.y166{bottom:388.948800px;}
.y35{bottom:390.991234px;}
.y97{bottom:392.165349px;}
.y129{bottom:395.165250px;}
.y165{bottom:397.554750px;}
.y5c{bottom:398.281650px;}
.y127{bottom:399.212110px;}
.y128{bottom:399.213000px;}
.y78{bottom:401.019320px;}
.y12a{bottom:405.642150px;}
.y34{bottom:408.649300px;}
.y96{bottom:409.377399px;}
.y5b{bottom:415.493700px;}
.y126{bottom:416.701050px;}
.y164{bottom:417.385950px;}
.y77{bottom:418.529213px;}
.y163{bottom:425.991900px;}
.y33{bottom:426.307367px;}
.y95{bottom:426.589449px;}
.y5a{bottom:432.705750px;}
.y125{bottom:433.913100px;}
.y76{bottom:436.039107px;}
.y94{bottom:443.801499px;}
.y32{bottom:443.965433px;}
.y162{bottom:445.823100px;}
.y59{bottom:449.917650px;}
.y124{bottom:451.125150px;}
.y75{bottom:453.549000px;}
.y161{bottom:454.429050px;}
.y93{bottom:461.013549px;}
.y31{bottom:461.625267px;}
.y58{bottom:467.129700px;}
.y123{bottom:468.337200px;}
.y160{bottom:474.260250px;}
.y92{bottom:478.225599px;}
.y30{bottom:479.283334px;}
.y121{bottom:481.501350px;}
.y15f{bottom:482.866527px;}
.y57{bottom:484.341750px;}
.y56{bottom:484.349474px;}
.y120{bottom:485.549250px;}
.y122{bottom:491.978250px;}
.y91{bottom:495.437649px;}
.y2f{bottom:496.941400px;}
.yd3{bottom:501.391650px;}
.y55{bottom:501.561524px;}
.y15e{bottom:502.846350px;}
.y11f{bottom:503.037600px;}
.y15d{bottom:511.601605px;}
.y90{bottom:512.649699px;}
.y2e{bottom:514.599467px;}
.yd2{bottom:515.610300px;}
.y54{bottom:518.773574px;}
.y11e{bottom:520.249650px;}
.y15c{bottom:525.968727px;}
.yd1{bottom:529.828950px;}
.y8f{bottom:529.861749px;}
.y2d{bottom:532.257533px;}
.y11c{bottom:533.413650px;}
.y53{bottom:536.133797px;}
.y11a{bottom:537.460511px;}
.y11b{bottom:537.461550px;}
.y11d{bottom:543.890550px;}
.yd0{bottom:544.047600px;}
.y15b{bottom:545.948400px;}
.y8e{bottom:547.073799px;}
.y2c{bottom:549.915983px;}
.y52{bottom:553.494020px;}
.y15a{bottom:554.703805px;}
.y119{bottom:554.949450px;}
.ycf{bottom:558.266250px;}
.y2b{bottom:567.574283px;}
.y159{bottom:569.070927px;}
.y51{bottom:570.854244px;}
.y118{bottom:572.161500px;}
.yce{bottom:572.484900px;}
.y2a{bottom:585.234884px;}
.ycd{bottom:586.703550px;}
.y50{bottom:588.214467px;}
.y158{bottom:589.050750px;}
.y117{bottom:589.373550px;}
.yda{bottom:589.696500px;}
.y157{bottom:597.805827px;}
.y29{bottom:602.892950px;}
.yf{bottom:603.627008px;}
.yd9{bottom:603.915150px;}
.y4f{bottom:605.574690px;}
.y116{bottom:606.585600px;}
.y156{bottom:617.785500px;}
.yd8{bottom:618.133800px;}
.y28{bottom:620.551017px;}
.y4e{bottom:622.934914px;}
.y115{bottom:623.797650px;}
.ye{bottom:625.377008px;}
.y155{bottom:626.540577px;}
.yd7{bottom:632.352450px;}
.y113{bottom:636.961800px;}
.y27{bottom:638.209084px;}
.y4d{bottom:640.295137px;}
.y111{bottom:641.009110px;}
.y112{bottom:641.009700px;}
.yd{bottom:644.877008px;}
.y154{bottom:646.520250px;}
.yd6{bottom:646.571100px;}
.y114{bottom:647.438700px;}
.y10f{bottom:654.450150px;}
.y153{bottom:655.275327px;}
.y26{bottom:655.867150px;}
.y4c{bottom:657.655360px;}
.y10d{bottom:658.497010px;}
.y10e{bottom:658.498050px;}
.yd5{bottom:660.789750px;}
.y110{bottom:664.927050px;}
.y25{bottom:673.525217px;}
.yd4{bottom:675.008400px;}
.y4b{bottom:675.015584px;}
.y152{bottom:675.255150px;}
.y10c{bottom:675.985950px;}
.yc{bottom:682.377008px;}
.y151{bottom:684.010077px;}
.y24{bottom:691.183283px;}
.y4a{bottom:692.375807px;}
.y10b{bottom:693.198000px;}
.y150{bottom:703.989900px;}
.yb{bottom:704.127008px;}
.y23{bottom:708.841733px;}
.y49{bottom:709.736030px;}
.y10a{bottom:710.410050px;}
.y14f{bottom:712.744977px;}
.y22{bottom:726.500567px;}
.y48{bottom:727.096253px;}
.y109{bottom:727.622100px;}
.y14e{bottom:732.724800px;}
.y14d{bottom:741.479727px;}
.ya{bottom:741.627008px;}
.y21{bottom:744.158633px;}
.y47{bottom:744.456477px;}
.y108{bottom:744.834150px;}
.y14c{bottom:761.459400px;}
.y20{bottom:761.815650px;}
.y46{bottom:761.816700px;}
.y107{bottom:762.046200px;}
.y9{bottom:763.377008px;}
.y14b{bottom:770.214477px;}
.y104{bottom:775.210350px;}
.y103{bottom:779.258250px;}
.y105{bottom:785.687250px;}
.y106{bottom:785.737876px;}
.y14a{bottom:790.194300px;}
.y100{bottom:792.698700px;}
.y102{bottom:793.621350px;}
.yff{bottom:796.746600px;}
.y149{bottom:798.949377px;}
.y8{bottom:802.377008px;}
.y101{bottom:803.175600px;}
.y1f{bottom:812.703450px;}
.yfe{bottom:814.234800px;}
.y148{bottom:818.929200px;}
.yfc{bottom:827.347950px;}
.y147{bottom:827.684455px;}
.y1e{bottom:830.663850px;}
.yfb{bottom:831.446850px;}
.yfd{bottom:837.926476px;}
.y146{bottom:842.051577px;}
.yf9{bottom:844.781100px;}
.y1d{bottom:848.624250px;}
.yf7{bottom:848.879438px;}
.yf8{bottom:848.880000px;}
.yfa{bottom:855.359626px;}
.y145{bottom:862.031400px;}
.yf6{bottom:866.313000px;}
.y1c{bottom:866.584650px;}
.y144{bottom:870.786477px;}
.yf4{bottom:879.426150px;}
.yf3{bottom:883.525050px;}
.yf2{bottom:883.525349px;}
.y1b{bottom:884.545050px;}
.yf5{bottom:890.004676px;}
.y143{bottom:890.766150px;}
.yf1{bottom:901.824714px;}
.y1a{bottom:902.505450px;}
.y142{bottom:917.479342px;}
.yf0{bottom:919.904064px;}
.y19{bottom:920.465850px;}
.y7{bottom:934.484995px;}
.y141{bottom:934.839565px;}
.yef{bottom:937.983320px;}
.y18{bottom:938.426250px;}
.yee{bottom:955.195370px;}
.y140{bottom:964.173389px;}
.y17{bottom:965.366850px;}
.y6{bottom:972.500997px;}
.y13f{bottom:981.535109px;}
.yed{bottom:981.987900px;}
.y5{bottom:990.201002px;}
.y16{bottom:990.810750px;}
.yec{bottom:991.418700px;}
.yeb{bottom:992.758050px;}
.y13e{bottom:998.896829px;}
.y15{bottom:1012.138500px;}
.y13d{bottom:1016.258549px;}
.y14{bottom:1020.744600px;}
.ye4{bottom:1025.978700px;}
.ye3{bottom:1029.801300px;}
.ye7{bottom:1029.852300px;}
.yea{bottom:1030.498500px;}
.y13c{bottom:1033.620269px;}
.ye5{bottom:1036.451409px;}
.ye8{bottom:1036.557217px;}
.ye6{bottom:1039.312800px;}
.y4{bottom:1039.380001px;}
.ye9{bottom:1039.938000px;}
.ye2{bottom:1041.375150px;}
.y13{bottom:1042.072500px;}
.y12{bottom:1050.678450px;}
.y13b{bottom:1050.981989px;}
.y11{bottom:1067.142000px;}
.y13a{bottom:1068.343709px;}
.ydf{bottom:1074.549000px;}
.y3{bottom:1075.380001px;}
.ye1{bottom:1075.943550px;}
.yde{bottom:1078.371450px;}
.ydd{bottom:1079.068800px;}
.ye0{bottom:1085.021709px;}
.y139{bottom:1085.705428px;}
.y10{bottom:1095.579150px;}
.ydc{bottom:1101.017400px;}
.y138{bottom:1103.067149px;}
.y73{bottom:1140.479850px;}
.ydb{bottom:1140.482100px;}
.y172{bottom:1140.483854px;}
.h35{height:22.654051px;}
.h1c{height:24.991897px;}
.h9{height:26.772970px;}
.h23{height:28.748614px;}
.h26{height:28.832429px;}
.h2d{height:32.951347px;}
.h2c{height:36.351850px;}
.h1{height:36.495000px;}
.ha{height:36.962503px;}
.h1e{height:37.118160px;}
.h4{height:40.608000px;}
.h1d{height:40.895831px;}
.h21{height:41.069448px;}
.hc{height:41.189184px;}
.h32{height:41.189784px;}
.h18{height:41.503621px;}
.h3{height:43.794000px;}
.hb{height:45.439812px;}
.h1b{height:45.441012px;}
.h31{height:45.442956px;}
.h30{height:45.443332px;}
.h20{height:45.936572px;}
.h5{height:47.220000px;}
.h6{height:48.660000px;}
.h1a{height:50.857829px;}
.h19{height:50.858429px;}
.h33{height:53.690184px;}
.h10{height:57.259894px;}
.h12{height:57.262361px;}
.h13{height:57.263894px;}
.he{height:57.266962px;}
.h11{height:57.267895px;}
.hf{height:57.268495px;}
.h17{height:57.270402px;}
.h34{height:57.270629px;}
.h15{height:57.271975px;}
.h1f{height:57.272054px;}
.h16{height:57.272948px;}
.hd{height:57.273629px;}
.h14{height:57.279988px;}
.h8{height:60.915390px;}
.h7{height:60.933214px;}
.h28{height:65.134175px;}
.h2a{height:65.134775px;}
.h25{height:84.761114px;}
.h2f{height:85.479530px;}
.h2{height:94.440000px;}
.h27{height:104.455477px;}
.h29{height:104.456077px;}
.h22{height:128.267190px;}
.h2e{height:129.038045px;}
.h2b{height:129.489802px;}
.h24{height:132.678513px;}
.h0{height:1188.000000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x3{left:64.357800px;}
.x7f{left:71.300400px;}
.x6d{left:74.439900px;}
.x6e{left:81.382500px;}
.x5{left:89.798407px;}
.x51{left:91.145250px;}
.x53{left:97.939800px;}
.x52{left:98.980650px;}
.x54{left:105.775350px;}
.x7b{left:106.864650px;}
.x7c{left:113.807250px;}
.x4{left:118.238700px;}
.x76{left:126.113550px;}
.x5b{left:133.086600px;}
.x55{left:134.430150px;}
.x56{left:141.372750px;}
.x5c{left:146.157150px;}
.x5d{left:153.099750px;}
.x78{left:159.699750px;}
.x68{left:162.411150px;}
.x5e{left:171.154350px;}
.x2{left:174.000000px;}
.x1{left:180.000000px;}
.x6f{left:186.552150px;}
.x5f{left:203.439600px;}
.x69{left:204.736500px;}
.x79{left:208.781250px;}
.x60{left:213.722843px;}
.x7a{left:215.723850px;}
.x6a{left:222.982050px;}
.x57{left:224.257350px;}
.x58{left:231.199950px;}
.x61{left:233.110200px;}
.x62{left:244.557450px;}
.x70{left:255.484500px;}
.x63{left:257.613900px;}
.x71{left:262.427100px;}
.x64{left:264.556650px;}
.x77{left:279.266243px;}
.x65{left:280.285050px;}
.x66{left:288.539550px;}
.xd{left:304.309050px;}
.x59{left:316.992750px;}
.x5a{left:323.935350px;}
.x67{left:330.594300px;}
.x72{left:339.254850px;}
.x73{left:346.197300px;}
.x80{left:356.000100px;}
.x81{left:362.942700px;}
.x6b{left:365.416350px;}
.x6c{left:372.358950px;}
.x82{left:405.174900px;}
.x7d{left:411.105600px;}
.x83{left:412.117500px;}
.x74{left:415.545300px;}
.x7e{left:418.048200px;}
.x75{left:422.487900px;}
.x7{left:459.484500px;}
.x86{left:460.534950px;}
.x84{left:464.348850px;}
.x85{left:468.464850px;}
.x87{left:470.858373px;}
.x8{left:475.046550px;}
.x6{left:484.928400px;}
.xe{left:486.272100px;}
.x10{left:492.484200px;}
.xf{left:494.107650px;}
.x11{left:500.319750px;}
.x1d{left:501.484800px;}
.x4c{left:527.052750px;}
.x28{left:529.376918px;}
.x1e{left:530.722200px;}
.x3a{left:535.338900px;}
.x1f{left:537.664800px;}
.x4d{left:540.123300px;}
.x29{left:542.449050px;}
.x4e{left:547.065900px;}
.x12{left:550.055850px;}
.x3b{left:552.230400px;}
.x20{left:554.556300px;}
.x13{left:556.998450px;}
.x3c{left:560.484900px;}
.x21{left:563.014350px;}
.x2a{left:566.283150px;}
.x33{left:567.446250px;}
.x14{left:573.889950px;}
.x34{left:575.904450px;}
.x15{left:582.348150px;}
.x22{left:586.843800px;}
.x3d{left:588.863550px;}
.x23{left:597.127043px;}
.x2b{left:598.570800px;}
.x35{left:599.731650px;}
.x3e{left:602.541750px;}
.x16{left:606.177600px;}
.x2c{left:608.854043px;}
.x36{left:610.014743px;}
.x3f{left:613.785300px;}
.x17{left:616.460843px;}
.x40{left:626.850750px;}
.x24{left:627.961650px;}
.x37{left:629.402100px;}
.x41{left:633.793350px;}
.x18{left:635.848050px;}
.x4f{left:636.892950px;}
.x2d{left:639.688500px;}
.x25{left:641.018250px;}
.x19{left:647.295300px;}
.x50{left:649.073850px;}
.x42{left:650.684850px;}
.x2e{left:652.745100px;}
.x38{left:655.071000px;}
.x43{left:659.142900px;}
.x1a{left:660.351900px;}
.x39{left:662.013600px;}
.x1b{left:667.294500px;}
.x2f{left:676.579350px;}
.x26{left:680.905950px;}
.x44{left:682.972350px;}
.x30{left:684.833700px;}
.x27{left:687.848550px;}
.x45{left:693.255593px;}
.x9{left:697.329150px;}
.x1c{left:700.239600px;}
.xa{left:707.609250px;}
.x31{left:713.212350px;}
.x46{left:724.090050px;}
.x32{left:726.890550px;}
.x47{left:737.146800px;}
.x48{left:744.089400px;}
.xb{left:760.165800px;}
.x49{left:768.072300px;}
.xc{left:770.445900px;}
.x4a{left:796.448850px;}
.x4b{left:810.127050px;}
@media print{
.v12{vertical-align:-37.432533pt;}
.v2{vertical-align:-22.617067pt;}
.v5{vertical-align:-19.956267pt;}
.v8{vertical-align:-13.787733pt;}
.v10{vertical-align:-12.455737pt;}
.v4{vertical-align:-11.110933pt;}
.vf{vertical-align:-3.460537pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:6.394634pt;}
.v11{vertical-align:11.112000pt;}
.v9{vertical-align:17.506100pt;}
.v3{vertical-align:19.578667pt;}
.v1{vertical-align:25.277333pt;}
.v7{vertical-align:27.726866pt;}
.v6{vertical-align:38.672067pt;}
.vb{vertical-align:45.233034pt;}
.va{vertical-align:56.343137pt;}
.vd{vertical-align:66.398400pt;}
.vc{vertical-align:77.509104pt;}
.ls6c{letter-spacing:-1.575194pt;}
.ls1c{letter-spacing:-1.374569pt;}
.ls6d{letter-spacing:-1.074165pt;}
.ls1e{letter-spacing:-0.004257pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.000267pt;}
.ls5a{letter-spacing:0.003193pt;}
.ls1{letter-spacing:0.003725pt;}
.ls5c{letter-spacing:0.741299pt;}
.ls5b{letter-spacing:0.742416pt;}
.ls57{letter-spacing:0.743517pt;}
.ls52{letter-spacing:0.744050pt;}
.ls38{letter-spacing:0.744100pt;}
.ls55{letter-spacing:0.744684pt;}
.ls1d{letter-spacing:0.745024pt;}
.ls50{letter-spacing:1.049185pt;}
.ls28{letter-spacing:1.051191pt;}
.ls3f{letter-spacing:1.051244pt;}
.ls32{letter-spacing:1.052092pt;}
.ls4c{letter-spacing:1.052811pt;}
.ls56{letter-spacing:1.052825pt;}
.ls17{letter-spacing:1.053175pt;}
.ls63{letter-spacing:1.053538pt;}
.ls36{letter-spacing:1.053572pt;}
.ls19{letter-spacing:1.053677pt;}
.ls29{letter-spacing:1.054466pt;}
.ls3b{letter-spacing:1.054937pt;}
.ls33{letter-spacing:1.054999pt;}
.ls61{letter-spacing:1.055138pt;}
.ls4b{letter-spacing:1.055218pt;}
.ls24{letter-spacing:1.055861pt;}
.ls5f{letter-spacing:1.055873pt;}
.ls2a{letter-spacing:1.056395pt;}
.ls34{letter-spacing:1.056498pt;}
.ls37{letter-spacing:1.056565pt;}
.ls4d{letter-spacing:1.056628pt;}
.ls3e{letter-spacing:1.056815pt;}
.ls2c{letter-spacing:1.057031pt;}
.ls3a{letter-spacing:1.057162pt;}
.ls40{letter-spacing:1.057300pt;}
.ls65{letter-spacing:1.057813pt;}
.ls5d{letter-spacing:1.057859pt;}
.ls2e{letter-spacing:1.058062pt;}
.ls18{letter-spacing:1.058998pt;}
.ls54{letter-spacing:1.059247pt;}
.ls51{letter-spacing:1.060410pt;}
.ls39{letter-spacing:1.060562pt;}
.ls49{letter-spacing:1.482598pt;}
.ls11{letter-spacing:1.665129pt;}
.ls6b{letter-spacing:2.389398pt;}
.ls60{letter-spacing:5.521117pt;}
.ls5e{letter-spacing:5.521700pt;}
.ls62{letter-spacing:5.522284pt;}
.ls15{letter-spacing:5.832474pt;}
.ls64{letter-spacing:9.090842pt;}
.lsd{letter-spacing:10.630400pt;}
.ls4e{letter-spacing:11.371834pt;}
.ls26{letter-spacing:11.686234pt;}
.ls14{letter-spacing:13.378502pt;}
.ls68{letter-spacing:14.150134pt;}
.ls48{letter-spacing:14.163971pt;}
.ls47{letter-spacing:14.253373pt;}
.ls46{letter-spacing:14.436436pt;}
.ls43{letter-spacing:15.207004pt;}
.ls16{letter-spacing:15.390067pt;}
.ls23{letter-spacing:15.496499pt;}
.ls10{letter-spacing:15.801067pt;}
.ls3c{letter-spacing:16.407642pt;}
.lsb{letter-spacing:16.450667pt;}
.lsc{letter-spacing:16.451200pt;}
.ls2d{letter-spacing:16.459709pt;}
.ls42{letter-spacing:16.854572pt;}
.ls69{letter-spacing:17.247306pt;}
.lse{letter-spacing:17.688998pt;}
.ls1a{letter-spacing:17.704963pt;}
.ls8{letter-spacing:17.715606pt;}
.ls2{letter-spacing:17.719132pt;}
.ls3{letter-spacing:17.720866pt;}
.ls4{letter-spacing:17.721399pt;}
.ls9{letter-spacing:18.068542pt;}
.ls22{letter-spacing:18.338234pt;}
.ls44{letter-spacing:18.851236pt;}
.ls1b{letter-spacing:19.365302pt;}
.lsa{letter-spacing:19.833603pt;}
.ls45{letter-spacing:20.077332pt;}
.ls7{letter-spacing:20.120970pt;}
.ls2f{letter-spacing:20.549408pt;}
.ls66{letter-spacing:20.647808pt;}
.ls1f{letter-spacing:20.951139pt;}
.ls20{letter-spacing:21.227733pt;}
.ls2b{letter-spacing:22.281539pt;}
.ls5{letter-spacing:22.813699pt;}
.ls59{letter-spacing:23.010598pt;}
.ls67{letter-spacing:23.611939pt;}
.ls35{letter-spacing:24.340998pt;}
.lsf{letter-spacing:25.098667pt;}
.ls27{letter-spacing:26.411101pt;}
.ls21{letter-spacing:26.427066pt;}
.ls13{letter-spacing:27.198698pt;}
.ls58{letter-spacing:30.434230pt;}
.ls53{letter-spacing:32.062640pt;}
.ls12{letter-spacing:35.191741pt;}
.ls25{letter-spacing:38.565635pt;}
.ls6{letter-spacing:39.289373pt;}
.ls4a{letter-spacing:40.619773pt;}
.ls31{letter-spacing:42.695197pt;}
.ls30{letter-spacing:306.582698pt;}
.ls3d{letter-spacing:463.053702pt;}
.ls41{letter-spacing:556.500998pt;}
.ls4f{letter-spacing:666.604902pt;}
.wsb2{word-spacing:-30.487446pt;}
.wsa1{word-spacing:-20.119905pt;}
.ws51{word-spacing:-17.768822pt;}
.ws3{word-spacing:-15.093333pt;}
.wsed{word-spacing:-14.206543pt;}
.ws2{word-spacing:-13.584000pt;}
.ws53{word-spacing:-13.431718pt;}
.ws96{word-spacing:-11.739450pt;}
.ws0{word-spacing:-11.320000pt;}
.wsbd{word-spacing:-1.519849pt;}
.ws57{word-spacing:-0.782275pt;}
.wsb9{word-spacing:-0.778550pt;}
.wsa{word-spacing:-0.053216pt;}
.ws75{word-spacing:-0.047894pt;}
.ws78{word-spacing:-0.042573pt;}
.ws7{word-spacing:-0.040976pt;}
.ws77{word-spacing:-0.038316pt;}
.ws13{word-spacing:-0.037251pt;}
.wsb7{word-spacing:-0.035123pt;}
.ws8{word-spacing:-0.034590pt;}
.wsb8{word-spacing:-0.031930pt;}
.ws72{word-spacing:-0.029269pt;}
.ws4{word-spacing:0.000000pt;}
.wsf4{word-spacing:1.044896pt;}
.ws2a{word-spacing:1.337318pt;}
.ws94{word-spacing:9.227654pt;}
.wsfe{word-spacing:10.643200pt;}
.wse2{word-spacing:10.677258pt;}
.ws9b{word-spacing:10.766661pt;}
.wsa6{word-spacing:10.826263pt;}
.ws99{word-spacing:11.277535pt;}
.wsfd{word-spacing:11.916127pt;}
.wse8{word-spacing:12.307796pt;}
.ws100{word-spacing:12.456801pt;}
.wsaa{word-spacing:12.776097pt;}
.wsf5{word-spacing:12.942131pt;}
.ws5f{word-spacing:12.990026pt;}
.wsff{word-spacing:13.214597pt;}
.ws24{word-spacing:13.303795pt;}
.ws52{word-spacing:13.325286pt;}
.ws102{word-spacing:13.427461pt;}
.wsa9{word-spacing:13.457262pt;}
.ws17{word-spacing:13.490256pt;}
.wse0{word-spacing:13.522186pt;}
.ws1f{word-spacing:13.580723pt;}
.ws7c{word-spacing:13.612653pt;}
.wsf0{word-spacing:13.712699pt;}
.ws32{word-spacing:13.719085pt;}
.ws92{word-spacing:13.735050pt;}
.wsc7{word-spacing:14.096918pt;}
.wsea{word-spacing:14.104369pt;}
.ws9e{word-spacing:14.108626pt;}
.ws86{word-spacing:14.112883pt;}
.wse7{word-spacing:14.117140pt;}
.ws73{word-spacing:14.121398pt;}
.ws79{word-spacing:14.129912pt;}
.ws89{word-spacing:14.155456pt;}
.wsab{word-spacing:14.163971pt;}
.wsa8{word-spacing:14.198029pt;}
.wsa7{word-spacing:14.210801pt;}
.wsf3{word-spacing:14.227830pt;}
.ws23{word-spacing:14.245923pt;}
.wsb6{word-spacing:14.302164pt;}
.ws103{word-spacing:14.334262pt;}
.ws104{word-spacing:14.342776pt;}
.wsa5{word-spacing:14.376835pt;}
.ws5b{word-spacing:14.384285pt;}
.wsa4{word-spacing:14.393864pt;}
.wsef{word-spacing:14.423665pt;}
.ws83{word-spacing:14.442822pt;}
.ws106{word-spacing:14.470495pt;}
.ws95{word-spacing:14.623877pt;}
.wsdd{word-spacing:14.698259pt;}
.wsd8{word-spacing:15.049485pt;}
.wsd9{word-spacing:15.059307pt;}
.wse5{word-spacing:15.087800pt;}
.wse6{word-spacing:15.096315pt;}
.ws9a{word-spacing:15.164431pt;}
.ws4b{word-spacing:15.182525pt;}
.ws67{word-spacing:15.241062pt;}
.ws68{word-spacing:15.246384pt;}
.wsfa{word-spacing:15.287892pt;}
.ws5c{word-spacing:15.336851pt;}
.ws50{word-spacing:15.352816pt;}
.ws91{word-spacing:15.443283pt;}
.ws5a{word-spacing:15.592288pt;}
.ws28{word-spacing:15.650826pt;}
.wscd{word-spacing:15.656147pt;}
.ws21{word-spacing:15.741293pt;}
.ws22{word-spacing:15.746614pt;}
.ws74{word-spacing:15.848257pt;}
.ws76{word-spacing:15.876994pt;}
.ws9{word-spacing:15.886572pt;}
.wse4{word-spacing:15.892426pt;}
.wse1{word-spacing:15.895619pt;}
.ws5d{word-spacing:15.911584pt;}
.ws46{word-spacing:15.954157pt;}
.ws6b{word-spacing:16.092518pt;}
.wse{word-spacing:16.198950pt;}
.ws66{word-spacing:16.347955pt;}
.ws16{word-spacing:16.395850pt;}
.ws101{word-spacing:16.539533pt;}
.ws9c{word-spacing:16.645965pt;}
.ws8a{word-spacing:16.757718pt;}
.ws6a{word-spacing:16.789648pt;}
.ws98{word-spacing:16.811999pt;}
.ws97{word-spacing:16.820513pt;}
.wsda{word-spacing:16.832221pt;}
.wsd1{word-spacing:16.906723pt;}
.wsf9{word-spacing:16.931203pt;}
.wsf8{word-spacing:16.935460pt;}
.ws7f{word-spacing:16.981226pt;}
.wseb{word-spacing:17.007834pt;}
.wsf6{word-spacing:17.024863pt;}
.ws3b{word-spacing:17.103622pt;}
.wsc9{word-spacing:17.194090pt;}
.wsfb{word-spacing:17.267528pt;}
.wse3{word-spacing:17.271785pt;}
.wsc8{word-spacing:17.316486pt;}
.ws44{word-spacing:17.449526pt;}
.ws42{word-spacing:17.454848pt;}
.ws43{word-spacing:17.462507pt;}
.ws18{word-spacing:17.625139pt;}
.ws19{word-spacing:17.635782pt;}
.ws63{word-spacing:17.641104pt;}
.ws1c{word-spacing:17.646426pt;}
.ws64{word-spacing:17.651747pt;}
.ws6{word-spacing:17.662390pt;}
.wsf{word-spacing:17.726250pt;}
.ws60{word-spacing:17.742214pt;}
.ws55{word-spacing:17.859290pt;}
.ws1e{word-spacing:17.875254pt;}
.ws105{word-spacing:17.884833pt;}
.ws61{word-spacing:17.981686pt;}
.ws12{word-spacing:18.013616pt;}
.ws45{word-spacing:18.120048pt;}
.ws8d{word-spacing:18.146656pt;}
.ws8f{word-spacing:18.274374pt;}
.ws8e{word-spacing:18.285018pt;}
.ws6c{word-spacing:18.300982pt;}
.wsdc{word-spacing:18.311626pt;}
.ws59{word-spacing:18.459867pt;}
.ws36{word-spacing:18.481917pt;}
.ws37{word-spacing:18.487238pt;}
.ws38{word-spacing:18.497882pt;}
.ws3a{word-spacing:18.556419pt;}
.ws1a{word-spacing:18.753318pt;}
.ws1b{word-spacing:18.769283pt;}
.wsee{word-spacing:18.778862pt;}
.ws9d{word-spacing:18.808663pt;}
.ws87{word-spacing:18.843786pt;}
.wsca{word-spacing:18.859750pt;}
.ws48{word-spacing:18.966182pt;}
.ws58{word-spacing:19.189690pt;}
.ws25{word-spacing:19.221619pt;}
.ws4a{word-spacing:19.237584pt;}
.ws70{word-spacing:19.312086pt;}
.ws93{word-spacing:19.450448pt;}
.ws7d{word-spacing:19.503664pt;}
.ws7e{word-spacing:19.508986pt;}
.ws8b{word-spacing:19.657990pt;}
.ws14{word-spacing:19.764422pt;}
.ws15{word-spacing:19.780387pt;}
.ws31{word-spacing:19.854890pt;}
.ws3c{word-spacing:19.874723pt;}
.ws6d{word-spacing:19.977286pt;}
.wsa2{word-spacing:20.030502pt;}
.wsa0{word-spacing:20.034760pt;}
.ws9f{word-spacing:20.043274pt;}
.ws33{word-spacing:20.051789pt;}
.wsd{word-spacing:20.067754pt;}
.ws84{word-spacing:20.158221pt;}
.ws71{word-spacing:20.232723pt;}
.ws6e{word-spacing:20.296582pt;}
.wsf2{word-spacing:20.319997pt;}
.wsc4{word-spacing:20.414277pt;}
.wsc5{word-spacing:20.414861pt;}
.wsc0{word-spacing:20.594592pt;}
.wsd3{word-spacing:20.626522pt;}
.wsde{word-spacing:20.685059pt;}
.ws62{word-spacing:20.716989pt;}
.ws41{word-spacing:20.780848pt;}
.ws7b{word-spacing:20.897923pt;}
.ws1d{word-spacing:20.913888pt;}
.wsd4{word-spacing:20.988390pt;}
.wsfc{word-spacing:21.001162pt;}
.ws3e{word-spacing:21.036285pt;}
.ws3f{word-spacing:21.045457pt;}
.wsa3{word-spacing:21.060764pt;}
.ws2f{word-spacing:21.094822pt;}
.wse9{word-spacing:21.120366pt;}
.ws30{word-spacing:21.126752pt;}
.wsc3{word-spacing:21.142717pt;}
.ws81{word-spacing:21.169325pt;}
.ws10{word-spacing:21.382189pt;}
.wsb3{word-spacing:21.626982pt;}
.ws80{word-spacing:21.637626pt;}
.wscf{word-spacing:21.791952pt;}
.ws82{word-spacing:21.914349pt;}
.ws54{word-spacing:22.212358pt;}
.wsc2{word-spacing:22.515690pt;}
.wsf1{word-spacing:22.623186pt;}
.wsec{word-spacing:22.627443pt;}
.wsdf{word-spacing:22.712589pt;}
.wsf7{word-spacing:22.725361pt;}
.wsb{word-spacing:22.760483pt;}
.wsd2{word-spacing:23.154282pt;}
.wsc1{word-spacing:23.558723pt;}
.ws27{word-spacing:24.575149pt;}
.wsd7{word-spacing:24.676259pt;}
.wsd6{word-spacing:24.691582pt;}
.ws26{word-spacing:24.708189pt;}
.ws5{word-spacing:24.734620pt;}
.ws7a{word-spacing:24.862515pt;}
.ws20{word-spacing:25.043450pt;}
.ws2c{word-spacing:25.250992pt;}
.ws29{word-spacing:25.511750pt;}
.ws2b{word-spacing:25.522151pt;}
.ws3d{word-spacing:25.538358pt;}
.ws85{word-spacing:25.799117pt;}
.wsb4{word-spacing:25.857654pt;}
.ws8c{word-spacing:26.113091pt;}
.ws6f{word-spacing:26.203558pt;}
.wsbf{word-spacing:26.219523pt;}
.ws2e{word-spacing:26.283382pt;}
.ws90{word-spacing:26.357885pt;}
.ws88{word-spacing:26.363206pt;}
.ws35{word-spacing:26.373850pt;}
.wsd0{word-spacing:26.464317pt;}
.wsba{word-spacing:26.858115pt;}
.ws4e{word-spacing:27.124195pt;}
.ws4f{word-spacing:27.145482pt;}
.ws5e{word-spacing:27.613782pt;}
.ws56{word-spacing:27.622507pt;}
.ws47{word-spacing:27.624426pt;}
.ws2d{word-spacing:27.778752pt;}
.ws49{word-spacing:28.199158pt;}
.ws69{word-spacing:28.475882pt;}
.wsce{word-spacing:28.486525pt;}
.wsbc{word-spacing:28.667459pt;}
.ws4d{word-spacing:28.970790pt;}
.ws4c{word-spacing:29.151725pt;}
.wsdb{word-spacing:29.380554pt;}
.ws65{word-spacing:29.471021pt;}
.wsad{word-spacing:29.683885pt;}
.wsac{word-spacing:30.136221pt;}
.wsaf{word-spacing:30.929139pt;}
.wsae{word-spacing:30.945104pt;}
.wsb0{word-spacing:30.950426pt;}
.wsb1{word-spacing:31.328259pt;}
.ws11{word-spacing:31.918957pt;}
.ws40{word-spacing:32.419187pt;}
.wsc6{word-spacing:32.435152pt;}
.wscb{word-spacing:33.548119pt;}
.ws34{word-spacing:33.887949pt;}
.wscc{word-spacing:34.276426pt;}
.wsb5{word-spacing:35.005485pt;}
.ws39{word-spacing:35.138525pt;}
.wsd5{word-spacing:36.639216pt;}
.wsc{word-spacing:39.236157pt;}
.wsbe{word-spacing:42.184323pt;}
.wsbb{word-spacing:71.724525pt;}
.ws1{word-spacing:841.999987pt;}
._12{margin-left:-1482.044314pt;}
._1c{margin-left:-34.696832pt;}
._19{margin-left:-20.102876pt;}
._9{margin-left:-17.726250pt;}
._22{margin-left:-15.743421pt;}
._a{margin-left:-13.415754pt;}
._2{margin-left:-6.924411pt;}
._21{margin-left:-5.491891pt;}
._4{margin-left:-4.401495pt;}
._3{margin-left:-2.634459pt;}
._1{margin-left:-1.333583pt;}
._0{width:1.808000pt;}
._e{width:4.763117pt;}
._d{width:5.821830pt;}
._17{width:9.004147pt;}
._13{width:10.744310pt;}
._14{width:12.713302pt;}
._f{width:14.687616pt;}
._10{width:15.884976pt;}
._5{width:16.826899pt;}
._15{width:18.247766pt;}
._7{width:20.014538pt;}
._c{width:21.318330pt;}
._20{width:22.400478pt;}
._b{width:23.324573pt;}
._16{width:24.505968pt;}
._18{width:25.407447pt;}
._8{width:28.257696pt;}
._6{width:30.283087pt;}
._1d{width:34.106134pt;}
._1f{width:42.254988pt;}
._1e{width:71.788384pt;}
._1a{width:94.187265pt;}
._11{width:1232.728685pt;}
._1b{width:1386.242742pt;}
.fsa{font-size:29.268800pt;}
.fs10{font-size:31.929600pt;}
.fs7{font-size:34.590400pt;}
.fs6{font-size:37.251200pt;}
.fs0{font-size:40.000000pt;}
.fsb{font-size:42.572800pt;}
.fs8{font-size:47.894400pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.216000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:54.154521pt;}
.fs9{font-size:55.227706pt;}
.fs4{font-size:74.501867pt;}
.fs1{font-size:106.666667pt;}
.fsf{font-size:151.120533pt;}
.fse{font-size:151.649600pt;}
.fsd{font-size:155.384000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:31.929467pt;}
.yc9{bottom:32.005067pt;}
.y8d{bottom:32.005446pt;}
.ycc{bottom:33.244667pt;}
.yc8{bottom:35.402800pt;}
.ycb{bottom:36.022667pt;}
.yca{bottom:41.314142pt;}
.yc7{bottom:45.690667pt;}
.y8c{bottom:47.436756pt;}
.y2{bottom:53.990641pt;}
.y71{bottom:62.565333pt;}
.y8b{bottom:62.868066pt;}
.y72{bottom:67.517600pt;}
.ybf{bottom:75.182400pt;}
.y1{bottom:76.657308pt;}
.y70{bottom:77.864933pt;}
.y8a{bottom:78.299375pt;}
.ybe{bottom:78.580133pt;}
.yc5{bottom:78.625467pt;}
.ybd{bottom:79.200000pt;}
.yc0{bottom:84.491475pt;}
.yc6{bottom:84.585393pt;}
.yc3{bottom:87.034933pt;}
.yc1{bottom:87.590533pt;}
.yc2{bottom:88.868000pt;}
.yc4{bottom:88.868133pt;}
.y6f{bottom:93.164533pt;}
.y89{bottom:93.730685pt;}
.y45{bottom:98.520717pt;}
.ybc{bottom:98.710000pt;}
.y6e{bottom:108.464133pt;}
.y88{bottom:109.161994pt;}
.y44{bottom:114.084285pt;}
.y6d{bottom:123.763733pt;}
.y87{bottom:124.593304pt;}
.y43{bottom:129.648634pt;}
.y6c{bottom:139.063333pt;}
.yb6{bottom:139.305733pt;}
.y86{bottom:140.024614pt;}
.yb5{bottom:142.703600pt;}
.yb9{bottom:142.749067pt;}
.y42{bottom:145.212984pt;}
.yb7{bottom:148.614808pt;}
.yba{bottom:148.708993pt;}
.yb8{bottom:151.158400pt;}
.yb4{bottom:152.991467pt;}
.ybb{bottom:152.991600pt;}
.y6b{bottom:154.362933pt;}
.y85{bottom:155.455923pt;}
.y41{bottom:160.776767pt;}
.y6a{bottom:169.662533pt;}
.y84{bottom:170.887233pt;}
.y40{bottom:176.341117pt;}
.yac{bottom:182.483200pt;}
.y69{bottom:184.962133pt;}
.yab{bottom:185.880933pt;}
.yb0{bottom:185.926267pt;}
.y83{bottom:186.318542pt;}
.yb3{bottom:186.500800pt;}
.yad{bottom:191.792275pt;}
.yb1{bottom:191.886193pt;}
.y3f{bottom:191.903254pt;}
.yae{bottom:194.335733pt;}
.yb2{bottom:194.891333pt;}
.yaa{bottom:196.168001pt;}
.yaf{bottom:196.168800pt;}
.y68{bottom:200.261733pt;}
.y137{bottom:201.614800pt;}
.y171{bottom:201.717067pt;}
.y82{bottom:201.749852pt;}
.y3e{bottom:207.467603pt;}
.y67{bottom:215.561333pt;}
.y136{bottom:216.914400pt;}
.y81{bottom:217.181162pt;}
.y170{bottom:219.344933pt;}
.y3d{bottom:223.031953pt;}
.ya4{bottom:225.660400pt;}
.y16f{bottom:226.994533pt;}
.ya3{bottom:229.058267pt;}
.ya8{bottom:229.103600pt;}
.ya2{bottom:229.678133pt;}
.y66{bottom:230.860933pt;}
.y135{bottom:232.214000pt;}
.y80{bottom:232.612471pt;}
.ya5{bottom:234.969475pt;}
.ya9{bottom:235.063526pt;}
.ya6{bottom:237.513067pt;}
.y3c{bottom:238.596302pt;}
.ya7{bottom:239.346133pt;}
.y16e{bottom:244.622400pt;}
.y65{bottom:246.160533pt;}
.y134{bottom:247.513600pt;}
.y7f{bottom:248.043781pt;}
.ya1{bottom:249.188000pt;}
.y16d{bottom:252.272133pt;}
.y3b{bottom:254.160652pt;}
.y64{bottom:261.460133pt;}
.y133{bottom:262.813067pt;}
.y7e{bottom:263.475090pt;}
.y3a{bottom:269.725002pt;}
.y16c{bottom:269.899867pt;}
.y62{bottom:276.758768pt;}
.y63{bottom:276.759733pt;}
.y16b{bottom:277.549467pt;}
.y132{bottom:278.112667pt;}
.y7d{bottom:278.905950pt;}
.y39{bottom:285.289351pt;}
.y9b{bottom:289.784000pt;}
.y61{bottom:292.058368pt;}
.y9a{bottom:293.181733pt;}
.y9f{bottom:293.227067pt;}
.y131{bottom:293.412133pt;}
.y99{bottom:293.801600pt;}
.y7c{bottom:294.337259pt;}
.y16a{bottom:295.177333pt;}
.y9c{bottom:299.093075pt;}
.ya0{bottom:299.186993pt;}
.y38{bottom:300.853701pt;}
.y9d{bottom:301.636533pt;}
.y169{bottom:302.827067pt;}
.y9e{bottom:303.469600pt;}
.y60{bottom:307.357968pt;}
.y130{bottom:308.711733pt;}
.y7b{bottom:309.768569pt;}
.y98{bottom:313.311467pt;}
.y37{bottom:316.418050pt;}
.y168{bottom:320.454800pt;}
.y5f{bottom:322.657568pt;}
.y12f{bottom:324.011333pt;}
.y7a{bottom:325.332919pt;}
.y167{bottom:328.104533pt;}
.y36{bottom:331.982400pt;}
.y12d{bottom:335.712800pt;}
.y5d{bottom:338.728533pt;}
.y5e{bottom:338.728800pt;}
.y12b{bottom:339.310276pt;}
.y12c{bottom:339.310933pt;}
.y79{bottom:340.897268pt;}
.y12e{bottom:345.025600pt;}
.y166{bottom:345.732267pt;}
.y35{bottom:347.547763pt;}
.y97{bottom:348.591422pt;}
.y129{bottom:351.258000pt;}
.y165{bottom:353.382000pt;}
.y5c{bottom:354.028133pt;}
.y127{bottom:354.855209pt;}
.y128{bottom:354.856000pt;}
.y78{bottom:356.461618pt;}
.y12a{bottom:360.570800pt;}
.y34{bottom:363.243822pt;}
.y96{bottom:363.891022pt;}
.y5b{bottom:369.327733pt;}
.y126{bottom:370.400933pt;}
.y164{bottom:371.009733pt;}
.y77{bottom:372.025967pt;}
.y163{bottom:378.659467pt;}
.y33{bottom:378.939882pt;}
.y95{bottom:379.190622pt;}
.y5a{bottom:384.627333pt;}
.y125{bottom:385.700533pt;}
.y76{bottom:387.590317pt;}
.y94{bottom:394.490222pt;}
.y32{bottom:394.635941pt;}
.y162{bottom:396.287200pt;}
.y59{bottom:399.926800pt;}
.y124{bottom:401.000133pt;}
.y75{bottom:403.154667pt;}
.y161{bottom:403.936933pt;}
.y93{bottom:409.789822pt;}
.y31{bottom:410.333571pt;}
.y58{bottom:415.226400pt;}
.y123{bottom:416.299733pt;}
.y160{bottom:421.564667pt;}
.y92{bottom:425.089422pt;}
.y30{bottom:426.029630pt;}
.y121{bottom:428.001200pt;}
.y15f{bottom:429.214691pt;}
.y57{bottom:430.526000pt;}
.y56{bottom:430.532866pt;}
.y120{bottom:431.599333pt;}
.y122{bottom:437.314000pt;}
.y91{bottom:440.389022pt;}
.y2f{bottom:441.725689pt;}
.yd3{bottom:445.681467pt;}
.y55{bottom:445.832466pt;}
.y15e{bottom:446.974533pt;}
.y11f{bottom:447.144533pt;}
.y15d{bottom:454.756982pt;}
.y90{bottom:455.688622pt;}
.y2e{bottom:457.421748pt;}
.yd2{bottom:458.320267pt;}
.y54{bottom:461.132066pt;}
.y11e{bottom:462.444133pt;}
.y15c{bottom:467.527758pt;}
.yd1{bottom:470.959067pt;}
.y8f{bottom:470.988222pt;}
.y2d{bottom:473.117807pt;}
.y11c{bottom:474.145467pt;}
.y53{bottom:476.563375pt;}
.y11a{bottom:477.742676pt;}
.y11b{bottom:477.743600pt;}
.y11d{bottom:483.458267pt;}
.yd0{bottom:483.597867pt;}
.y15b{bottom:485.287467pt;}
.y8e{bottom:486.287822pt;}
.y2c{bottom:488.814207pt;}
.y52{bottom:491.994685pt;}
.y15a{bottom:493.070049pt;}
.y119{bottom:493.288400pt;}
.ycf{bottom:496.236667pt;}
.y2b{bottom:504.510474pt;}
.y159{bottom:505.840824pt;}
.y51{bottom:507.425994pt;}
.y118{bottom:508.588000pt;}
.yce{bottom:508.875467pt;}
.y2a{bottom:520.208786pt;}
.ycd{bottom:521.514267pt;}
.y50{bottom:522.857304pt;}
.y158{bottom:523.600667pt;}
.y117{bottom:523.887600pt;}
.yda{bottom:524.174667pt;}
.y157{bottom:531.382958pt;}
.y29{bottom:535.904845pt;}
.yf{bottom:536.557340pt;}
.yd9{bottom:536.813467pt;}
.y4f{bottom:538.288614pt;}
.y116{bottom:539.187200pt;}
.y156{bottom:549.142667pt;}
.yd8{bottom:549.452267pt;}
.y28{bottom:551.600904pt;}
.y4e{bottom:553.719923pt;}
.y115{bottom:554.486800pt;}
.ye{bottom:555.890674pt;}
.y155{bottom:556.924958pt;}
.yd7{bottom:562.091067pt;}
.y113{bottom:566.188267pt;}
.y27{bottom:567.296963pt;}
.y4d{bottom:569.151233pt;}
.y111{bottom:569.785876pt;}
.y112{bottom:569.786400pt;}
.yd{bottom:573.224007pt;}
.y154{bottom:574.684667pt;}
.yd6{bottom:574.729867pt;}
.y114{bottom:575.501067pt;}
.y10f{bottom:581.733467pt;}
.y153{bottom:582.466958pt;}
.y26{bottom:582.993022pt;}
.y4c{bottom:584.582542pt;}
.y10d{bottom:585.330676pt;}
.y10e{bottom:585.331600pt;}
.yd5{bottom:587.368667pt;}
.y110{bottom:591.046267pt;}
.y25{bottom:598.689082pt;}
.yd4{bottom:600.007467pt;}
.y4b{bottom:600.013852pt;}
.y152{bottom:600.226800pt;}
.y10c{bottom:600.876400pt;}
.yc{bottom:606.557340pt;}
.y151{bottom:608.008958pt;}
.y24{bottom:614.385141pt;}
.y4a{bottom:615.445162pt;}
.y10b{bottom:616.176000pt;}
.y150{bottom:625.768800pt;}
.yb{bottom:625.890674pt;}
.y23{bottom:630.081541pt;}
.y49{bottom:630.876471pt;}
.y10a{bottom:631.475600pt;}
.y14f{bottom:633.551091pt;}
.y22{bottom:645.778282pt;}
.y48{bottom:646.307781pt;}
.y109{bottom:646.775200pt;}
.y14e{bottom:651.310933pt;}
.y14d{bottom:659.093091pt;}
.ya{bottom:659.224007pt;}
.y21{bottom:661.474341pt;}
.y47{bottom:661.739090pt;}
.y108{bottom:662.074800pt;}
.y14c{bottom:676.852800pt;}
.y20{bottom:677.169467pt;}
.y46{bottom:677.170400pt;}
.y107{bottom:677.374400pt;}
.y9{bottom:678.557340pt;}
.y14b{bottom:684.635091pt;}
.y104{bottom:689.075867pt;}
.y103{bottom:692.674000pt;}
.y105{bottom:698.388667pt;}
.y106{bottom:698.433667pt;}
.y14a{bottom:702.394933pt;}
.y100{bottom:704.621067pt;}
.y102{bottom:705.441200pt;}
.yff{bottom:708.219200pt;}
.y149{bottom:710.177224pt;}
.y8{bottom:713.224007pt;}
.y101{bottom:713.933867pt;}
.y1f{bottom:722.403067pt;}
.yfe{bottom:723.764267pt;}
.y148{bottom:727.937067pt;}
.yfc{bottom:735.420400pt;}
.y147{bottom:735.719515pt;}
.y1e{bottom:738.367867pt;}
.yfb{bottom:739.063867pt;}
.yfd{bottom:744.823534pt;}
.y146{bottom:748.490291pt;}
.yf9{bottom:750.916533pt;}
.y1d{bottom:754.332667pt;}
.yf7{bottom:754.559501pt;}
.yf8{bottom:754.560000pt;}
.yfa{bottom:760.319667pt;}
.y145{bottom:766.250133pt;}
.yf6{bottom:770.056000pt;}
.y1c{bottom:770.297467pt;}
.y144{bottom:774.032424pt;}
.yf4{bottom:781.712133pt;}
.yf3{bottom:785.355600pt;}
.yf2{bottom:785.355866pt;}
.y1b{bottom:786.262267pt;}
.yf5{bottom:791.115267pt;}
.y143{bottom:791.792133pt;}
.yf1{bottom:801.621968pt;}
.y1a{bottom:802.227067pt;}
.y142{bottom:815.537193pt;}
.yf0{bottom:817.692501pt;}
.y19{bottom:818.191867pt;}
.y7{bottom:830.653328pt;}
.y141{bottom:830.968502pt;}
.yef{bottom:833.762951pt;}
.y18{bottom:834.156667pt;}
.yee{bottom:849.062551pt;}
.y140{bottom:857.043012pt;}
.y17{bottom:858.103867pt;}
.y6{bottom:864.445331pt;}
.y13f{bottom:872.475652pt;}
.yed{bottom:872.878133pt;}
.y5{bottom:880.178668pt;}
.y16{bottom:880.720666pt;}
.yec{bottom:881.261067pt;}
.yeb{bottom:882.451600pt;}
.y13e{bottom:887.908292pt;}
.y15{bottom:899.678667pt;}
.y13d{bottom:903.340932pt;}
.y14{bottom:907.328533pt;}
.ye4{bottom:911.981067pt;}
.ye3{bottom:915.378933pt;}
.ye7{bottom:915.424267pt;}
.yea{bottom:915.998667pt;}
.y13c{bottom:918.773572pt;}
.ye5{bottom:921.290142pt;}
.ye8{bottom:921.384193pt;}
.ye6{bottom:923.833600pt;}
.y4{bottom:923.893334pt;}
.ye9{bottom:924.389333pt;}
.ye2{bottom:925.666800pt;}
.y13{bottom:926.286667pt;}
.y12{bottom:933.936400pt;}
.y13b{bottom:934.206212pt;}
.y11{bottom:948.570667pt;}
.y13a{bottom:949.638852pt;}
.ydf{bottom:955.154667pt;}
.y3{bottom:955.893334pt;}
.ye1{bottom:956.394267pt;}
.yde{bottom:958.552400pt;}
.ydd{bottom:959.172267pt;}
.ye0{bottom:964.463742pt;}
.y139{bottom:965.071492pt;}
.y10{bottom:973.848133pt;}
.ydc{bottom:978.682133pt;}
.y138{bottom:980.504132pt;}
.y73{bottom:1013.759867pt;}
.ydb{bottom:1013.761867pt;}
.y172{bottom:1013.763426pt;}
.h35{height:20.136934pt;}
.h1c{height:22.215019pt;}
.h9{height:23.798195pt;}
.h23{height:25.554323pt;}
.h26{height:25.628826pt;}
.h2d{height:29.290086pt;}
.h2c{height:32.312755pt;}
.h1{height:32.440000pt;}
.ha{height:32.855558pt;}
.h1e{height:32.993920pt;}
.h4{height:36.096000pt;}
.h1d{height:36.351850pt;}
.h21{height:36.506176pt;}
.hc{height:36.612608pt;}
.h32{height:36.613141pt;}
.h18{height:36.892108pt;}
.h3{height:38.928000pt;}
.hb{height:40.390944pt;}
.h1b{height:40.392011pt;}
.h31{height:40.393739pt;}
.h30{height:40.394073pt;}
.h20{height:40.832509pt;}
.h5{height:41.973333pt;}
.h6{height:43.253333pt;}
.h1a{height:45.206959pt;}
.h19{height:45.207492pt;}
.h33{height:47.724608pt;}
.h10{height:50.897683pt;}
.h12{height:50.899876pt;}
.h13{height:50.901239pt;}
.he{height:50.903966pt;}
.h11{height:50.904796pt;}
.hf{height:50.905329pt;}
.h17{height:50.907024pt;}
.h34{height:50.907226pt;}
.h15{height:50.908422pt;}
.h1f{height:50.908493pt;}
.h16{height:50.909287pt;}
.hd{height:50.909892pt;}
.h14{height:50.915545pt;}
.h8{height:54.147013pt;}
.h7{height:54.162857pt;}
.h28{height:57.897044pt;}
.h2a{height:57.897578pt;}
.h25{height:75.343213pt;}
.h2f{height:75.981805pt;}
.h2{height:83.946667pt;}
.h27{height:92.849313pt;}
.h29{height:92.849847pt;}
.h22{height:114.015280pt;}
.h2e{height:114.700485pt;}
.h2b{height:115.102046pt;}
.h24{height:117.936456pt;}
.h0{height:1056.000000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x3{left:57.206933pt;}
.x7f{left:63.378133pt;}
.x6d{left:66.168800pt;}
.x6e{left:72.340000pt;}
.x5{left:79.820806pt;}
.x51{left:81.018000pt;}
.x53{left:87.057600pt;}
.x52{left:87.982800pt;}
.x54{left:94.022533pt;}
.x7b{left:94.990800pt;}
.x7c{left:101.162000pt;}
.x4{left:105.101067pt;}
.x76{left:112.100933pt;}
.x5b{left:118.299200pt;}
.x55{left:119.493467pt;}
.x56{left:125.664667pt;}
.x5c{left:129.917467pt;}
.x5d{left:136.088667pt;}
.x78{left:141.955333pt;}
.x68{left:144.365467pt;}
.x5e{left:152.137200pt;}
.x2{left:154.666667pt;}
.x1{left:160.000000pt;}
.x6f{left:165.824133pt;}
.x5f{left:180.835200pt;}
.x69{left:181.988000pt;}
.x79{left:185.583333pt;}
.x60{left:189.975861pt;}
.x7a{left:191.754533pt;}
.x6a{left:198.206267pt;}
.x57{left:199.339867pt;}
.x58{left:205.511067pt;}
.x61{left:207.209067pt;}
.x62{left:217.384400pt;}
.x70{left:227.097333pt;}
.x63{left:228.990133pt;}
.x71{left:233.268533pt;}
.x64{left:235.161467pt;}
.x77{left:248.236661pt;}
.x65{left:249.142267pt;}
.x66{left:256.479600pt;}
.xd{left:270.496933pt;}
.x59{left:281.771333pt;}
.x5a{left:287.942533pt;}
.x67{left:293.861600pt;}
.x72{left:301.559867pt;}
.x73{left:307.730933pt;}
.x80{left:316.444533pt;}
.x81{left:322.615733pt;}
.x6b{left:324.814533pt;}
.x6c{left:330.985733pt;}
.x82{left:360.155467pt;}
.x7d{left:365.427200pt;}
.x83{left:366.326667pt;}
.x74{left:369.373600pt;}
.x7e{left:371.598400pt;}
.x75{left:375.544800pt;}
.x7{left:408.430667pt;}
.x86{left:409.364400pt;}
.x84{left:412.754533pt;}
.x85{left:416.413200pt;}
.x87{left:418.540776pt;}
.x8{left:422.263600pt;}
.x6{left:431.047467pt;}
.xe{left:432.241867pt;}
.x10{left:437.763733pt;}
.xf{left:439.206800pt;}
.x11{left:444.728667pt;}
.x1d{left:445.764267pt;}
.x4c{left:468.491333pt;}
.x28{left:470.557260pt;}
.x1e{left:471.753067pt;}
.x3a{left:475.856800pt;}
.x1f{left:477.924267pt;}
.x4d{left:480.109600pt;}
.x29{left:482.176933pt;}
.x4e{left:486.280800pt;}
.x12{left:488.938533pt;}
.x3b{left:490.871467pt;}
.x20{left:492.938933pt;}
.x13{left:495.109733pt;}
.x3c{left:498.208800pt;}
.x21{left:500.457200pt;}
.x2a{left:503.362800pt;}
.x33{left:504.396667pt;}
.x14{left:510.124400pt;}
.x34{left:511.915067pt;}
.x15{left:517.642800pt;}
.x22{left:521.638933pt;}
.x3d{left:523.434267pt;}
.x23{left:530.779594pt;}
.x2b{left:532.062933pt;}
.x35{left:533.094800pt;}
.x3e{left:535.592667pt;}
.x16{left:538.824533pt;}
.x2c{left:541.203594pt;}
.x36{left:542.235327pt;}
.x3f{left:545.586933pt;}
.x17{left:547.965194pt;}
.x40{left:557.200667pt;}
.x24{left:558.188133pt;}
.x37{left:559.468533pt;}
.x41{left:563.371867pt;}
.x18{left:565.198267pt;}
.x4f{left:566.127067pt;}
.x2d{left:568.612000pt;}
.x25{left:569.794000pt;}
.x19{left:575.373600pt;}
.x50{left:576.954533pt;}
.x42{left:578.386533pt;}
.x2e{left:580.217867pt;}
.x38{left:582.285333pt;}
.x43{left:585.904800pt;}
.x1a{left:586.979467pt;}
.x39{left:588.456533pt;}
.x1b{left:593.150667pt;}
.x2f{left:601.403867pt;}
.x26{left:605.249733pt;}
.x44{left:607.086533pt;}
.x30{left:608.741067pt;}
.x27{left:611.420933pt;}
.x45{left:616.227194pt;}
.x9{left:619.848133pt;}
.x1c{left:622.435200pt;}
.xa{left:628.986000pt;}
.x31{left:633.966533pt;}
.x46{left:643.635600pt;}
.x32{left:646.124933pt;}
.x47{left:655.241600pt;}
.x48{left:661.412800pt;}
.xb{left:675.702933pt;}
.x49{left:682.730933pt;}
.xc{left:684.840800pt;}
.x4a{left:707.954533pt;}
.x4b{left:720.112933pt;}
}


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