
/* 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_0d968e852ef5.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_c399260ff16d.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_bd111a5fca8d.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_a439acc22dbd.woff")format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_eddce96cd029.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_b69db176d4fa.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_d1f8372d5a1e.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_f640d79adf29.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_7e1b5d2004b8.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_4879cdb12c21.woff")format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_361016211c10.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_18e0ae8f62b3.woff")format("woff");}.ffc{font-family:ffc;line-height:1.799000;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_64ff668059eb.woff")format("woff");}.ffd{font-family:ffd;line-height:0.655000;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_3d0fbf9936c2.woff")format("woff");}.ffe{font-family:ffe;line-height:0.854000;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_dfdf640a8f3b.woff")format("woff");}.fff{font-family:fff;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.028000px;}
.v16{vertical-align:-16.872000px;}
.v15{vertical-align:-14.778000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:3.618000px;}
.v13{vertical-align:8.964000px;}
.v5{vertical-align:15.558000px;}
.v7{vertical-align:16.662000px;}
.vc{vertical-align:17.934000px;}
.v4{vertical-align:21.696000px;}
.v11{vertical-align:23.532000px;}
.v1{vertical-align:26.028000px;}
.va{vertical-align:28.722000px;}
.vb{vertical-align:30.054000px;}
.v10{vertical-align:35.862000px;}
.v9{vertical-align:37.248000px;}
.v8{vertical-align:38.352000px;}
.ve{vertical-align:39.624000px;}
.v6{vertical-align:44.280000px;}
.v12{vertical-align:50.670000px;}
.vf{vertical-align:53.796000px;}
.vd{vertical-align:66.348000px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000312px;}
.ls6a{letter-spacing:0.000564px;}
.ls59{letter-spacing:0.000767px;}
.ls6b{letter-spacing:0.000921px;}
.ls37{letter-spacing:0.001140px;}
.ls38{letter-spacing:0.002012px;}
.lsb{letter-spacing:0.002023px;}
.ls5b{letter-spacing:0.002338px;}
.ls4a{letter-spacing:0.003030px;}
.ls28{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.004200px;}
.ls44{letter-spacing:0.004769px;}
.ls4f{letter-spacing:0.004893px;}
.ls3e{letter-spacing:0.221549px;}
.ls29{letter-spacing:2.141039px;}
.ls60{letter-spacing:2.142767px;}
.ls3a{letter-spacing:2.147039px;}
.ls23{letter-spacing:2.983140px;}
.ls68{letter-spacing:2.983200px;}
.ls7{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.987700px;}
.ls1d{letter-spacing:2.989140px;}
.ls70{letter-spacing:2.989409px;}
.ls18{letter-spacing:2.990525px;}
.ls2{letter-spacing:2.993700px;}
.ls6e{letter-spacing:3.281675px;}
.ls43{letter-spacing:3.287675px;}
.ls56{letter-spacing:4.276583px;}
.ls1c{letter-spacing:4.412186px;}
.ls62{letter-spacing:4.491110px;}
.ls52{letter-spacing:4.691915px;}
.ls64{letter-spacing:5.408908px;}
.ls12{letter-spacing:5.921096px;}
.ls39{letter-spacing:6.433866px;}
.ls34{letter-spacing:6.517690px;}
.ls8{letter-spacing:9.425732px;}
.ls11{letter-spacing:9.962338px;}
.ls2b{letter-spacing:12.865140px;}
.ls5e{letter-spacing:12.921269px;}
.ls49{letter-spacing:13.278538px;}
.ls3b{letter-spacing:13.281269px;}
.ls3c{letter-spacing:13.284538px;}
.ls48{letter-spacing:13.287269px;}
.ls63{letter-spacing:13.977269px;}
.ls2a{letter-spacing:14.149140px;}
.ls65{letter-spacing:14.520538px;}
.ls4c{letter-spacing:14.949030px;}
.ls66{letter-spacing:15.036538px;}
.ls35{letter-spacing:15.194208px;}
.ls5f{letter-spacing:15.912615px;}
.ls3d{letter-spacing:16.268525px;}
.ls5a{letter-spacing:16.272615px;}
.ls53{letter-spacing:16.602312px;}
.ls45{letter-spacing:16.602538px;}
.ls55{letter-spacing:16.604685px;}
.ls54{letter-spacing:16.606200px;}
.ls4e{letter-spacing:16.606769px;}
.ls46{letter-spacing:16.806538px;}
.ls2e{letter-spacing:17.756100px;}
.ls2c{letter-spacing:17.773140px;}
.lse{letter-spacing:17.896200px;}
.ls6c{letter-spacing:17.930525px;}
.ls1f{letter-spacing:17.935140px;}
.ls27{letter-spacing:17.946538px;}
.ls69{letter-spacing:18.144562px;}
.ls72{letter-spacing:18.227675px;}
.ls73{letter-spacing:18.233675px;}
.ls32{letter-spacing:18.480538px;}
.ls1e{letter-spacing:18.530383px;}
.ls5d{letter-spacing:18.750767px;}
.ls67{letter-spacing:19.374600px;}
.ls6f{letter-spacing:19.505675px;}
.ls58{letter-spacing:19.590615px;}
.ls13{letter-spacing:19.768583px;}
.ls47{letter-spacing:20.069096px;}
.ls25{letter-spacing:20.149496px;}
.ls71{letter-spacing:20.365409px;}
.ls19{letter-spacing:20.630100px;}
.ls40{letter-spacing:20.885549px;}
.ls3{letter-spacing:20.921700px;}
.ls61{letter-spacing:20.936908px;}
.ls6d{letter-spacing:21.155675px;}
.ls24{letter-spacing:21.289140px;}
.ls20{letter-spacing:22.153140px;}
.ls41{letter-spacing:22.192583px;}
.ls42{letter-spacing:23.878583px;}
.ls31{letter-spacing:23.888908px;}
.ls22{letter-spacing:24.254400px;}
.ls1b{letter-spacing:25.025607px;}
.ls17{letter-spacing:25.026538px;}
.ls14{letter-spacing:25.725110px;}
.lsa{letter-spacing:26.551140px;}
.ls9{letter-spacing:26.986200px;}
.lsf{letter-spacing:27.555299px;}
.ls10{letter-spacing:27.560338px;}
.ls1a{letter-spacing:28.021140px;}
.ls51{letter-spacing:28.514525px;}
.ls16{letter-spacing:28.573496px;}
.ls15{letter-spacing:28.886186px;}
.ls2d{letter-spacing:29.821140px;}
.ls2f{letter-spacing:30.055140px;}
.ls21{letter-spacing:30.691866px;}
.ls30{letter-spacing:30.997140px;}
.ls33{letter-spacing:31.154208px;}
.ls26{letter-spacing:33.146208px;}
.ls4{letter-spacing:35.210400px;}
.lsc{letter-spacing:35.557140px;}
.ls6{letter-spacing:38.898538px;}
.ls5{letter-spacing:43.316186px;}
.ls36{letter-spacing:59.772538px;}
.ls4d{letter-spacing:132.014338px;}
.ls50{letter-spacing:143.894338px;}
.ls4b{letter-spacing:196.022338px;}
.ls3f{letter-spacing:228.026338px;}
.ls5c{letter-spacing:293.486338px;}
.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;}
}
.ws55{word-spacing:-59.775600px;}
.ws87{word-spacing:-47.324343px;}
.ws56{word-spacing:-38.937826px;}
.ws5d{word-spacing:-32.219048px;}
.ws57{word-spacing:-29.015076px;}
.ws5b{word-spacing:-28.955301px;}
.ws5a{word-spacing:-27.197898px;}
.wsa9{word-spacing:-14.943900px;}
.wsbf{word-spacing:-3.586536px;}
.wsf0{word-spacing:-3.526760px;}
.ws81{word-spacing:-3.407209px;}
.ws20{word-spacing:-3.287658px;}
.ws7{word-spacing:-3.168107px;}
.ws43{word-spacing:-3.108331px;}
.ws3b{word-spacing:-2.988780px;}
.wscb{word-spacing:-2.929004px;}
.ws8{word-spacing:-2.869229px;}
.ws1a{word-spacing:-2.809453px;}
.ws4c{word-spacing:-2.689902px;}
.ws45{word-spacing:-2.570351px;}
.wsd6{word-spacing:-2.331248px;}
.ws9d{word-spacing:-2.211697px;}
.wsb5{word-spacing:-2.032370px;}
.wsb4{word-spacing:-2.025866px;}
.wsb3{word-spacing:-2.023691px;}
.ws26{word-spacing:-1.972595px;}
.wsad{word-spacing:-1.858412px;}
.wsae{word-spacing:-1.853044px;}
.ws82{word-spacing:-1.733492px;}
.wsdb{word-spacing:-1.673717px;}
.ws52{word-spacing:-1.613941px;}
.ws47{word-spacing:-1.554166px;}
.wsaf{word-spacing:-1.494390px;}
.ws34{word-spacing:-1.434614px;}
.wsca{word-spacing:-1.195512px;}
.ws53{word-spacing:-1.075961px;}
.ws10{word-spacing:-1.016185px;}
.wsb6{word-spacing:-0.967466px;}
.ws27{word-spacing:-0.956410px;}
.ws3{word-spacing:-0.836858px;}
.wsa1{word-spacing:-0.811691px;}
.wsbc{word-spacing:-0.717307px;}
.wsd{word-spacing:-0.597756px;}
.ws9{word-spacing:-0.537980px;}
.ws33{word-spacing:-0.478205px;}
.wsba{word-spacing:-0.427829px;}
.wsbb{word-spacing:-0.418429px;}
.ws16{word-spacing:-0.358654px;}
.ws76{word-spacing:-0.298878px;}
.wsa{word-spacing:-0.179327px;}
.ws2{word-spacing:-0.059776px;}
.ws67{word-spacing:-0.041843px;}
.ws9c{word-spacing:-0.003908px;}
.wsc0{word-spacing:-0.003817px;}
.wsf2{word-spacing:-0.001849px;}
.ws9b{word-spacing:-0.001691px;}
.wsb0{word-spacing:-0.001049px;}
.ws0{word-spacing:0.000000px;}
.ws70{word-spacing:0.000334px;}
.wsc1{word-spacing:0.002134px;}
.ws94{word-spacing:0.003042px;}
.ws44{word-spacing:0.059776px;}
.ws1b{word-spacing:0.119551px;}
.ws3a{word-spacing:0.179327px;}
.wsc9{word-spacing:0.239102px;}
.ws7a{word-spacing:0.298878px;}
.ws50{word-spacing:0.358654px;}
.ws1e{word-spacing:0.418429px;}
.ws29{word-spacing:0.478205px;}
.ws5e{word-spacing:0.537980px;}
.ws30{word-spacing:0.597756px;}
.wsc{word-spacing:0.657532px;}
.ws2d{word-spacing:0.717307px;}
.ws7e{word-spacing:0.726692px;}
.ws7d{word-spacing:0.737875px;}
.ws22{word-spacing:0.777083px;}
.ws9e{word-spacing:0.956410px;}
.ws84{word-spacing:1.008025px;}
.ws69{word-spacing:1.016185px;}
.ws4d{word-spacing:1.075961px;}
.ws48{word-spacing:1.195512px;}
.ws85{word-spacing:1.207859px;}
.wsce{word-spacing:1.255288px;}
.ws25{word-spacing:1.315063px;}
.ws4b{word-spacing:1.374839px;}
.wsbd{word-spacing:1.434614px;}
.wsf{word-spacing:1.494390px;}
.ws2a{word-spacing:1.613941px;}
.ws77{word-spacing:1.651825px;}
.ws1f{word-spacing:1.673717px;}
.ws11{word-spacing:1.733492px;}
.wsda{word-spacing:1.793268px;}
.ws35{word-spacing:1.853044px;}
.wsd9{word-spacing:1.912819px;}
.wse{word-spacing:1.972595px;}
.ws5{word-spacing:2.032370px;}
.ws2b{word-spacing:2.092146px;}
.ws2c{word-spacing:2.151922px;}
.ws7f{word-spacing:2.218036px;}
.ws21{word-spacing:2.271473px;}
.ws7c{word-spacing:2.331248px;}
.wsc5{word-spacing:2.391024px;}
.wsd7{word-spacing:2.450800px;}
.wsdf{word-spacing:2.630126px;}
.ws5f{word-spacing:2.689902px;}
.ws79{word-spacing:2.749678px;}
.wscf{word-spacing:2.809453px;}
.wsc6{word-spacing:2.929004px;}
.ws8b{word-spacing:2.988780px;}
.wsd8{word-spacing:3.048556px;}
.ws2f{word-spacing:3.108331px;}
.ws23{word-spacing:3.227882px;}
.ws31{word-spacing:3.287658px;}
.ws6a{word-spacing:3.347434px;}
.wsc4{word-spacing:3.407209px;}
.wse5{word-spacing:3.466985px;}
.ws46{word-spacing:3.526760px;}
.ws39{word-spacing:3.586536px;}
.wsd3{word-spacing:3.646312px;}
.ws51{word-spacing:3.706087px;}
.wsd2{word-spacing:3.765863px;}
.wsdc{word-spacing:3.825638px;}
.ws15{word-spacing:3.885414px;}
.wsea{word-spacing:3.945190px;}
.wsee{word-spacing:4.054850px;}
.ws28{word-spacing:4.064741px;}
.ws73{word-spacing:4.124516px;}
.ws72{word-spacing:4.244068px;}
.ws4f{word-spacing:4.483170px;}
.ws68{word-spacing:4.542946px;}
.ws8c{word-spacing:4.660309px;}
.ws8d{word-spacing:4.662497px;}
.wsb{word-spacing:4.722272px;}
.ws24{word-spacing:4.782048px;}
.wsa4{word-spacing:4.817083px;}
.wsa7{word-spacing:4.820134px;}
.wsc7{word-spacing:4.841824px;}
.ws6c{word-spacing:4.961375px;}
.wsdd{word-spacing:5.021150px;}
.ws66{word-spacing:5.080926px;}
.wse0{word-spacing:5.140702px;}
.wse3{word-spacing:5.320028px;}
.ws49{word-spacing:5.379804px;}
.ws1c{word-spacing:5.439580px;}
.ws6{word-spacing:5.559131px;}
.wse1{word-spacing:5.678682px;}
.ws89{word-spacing:5.722309px;}
.ws38{word-spacing:5.738458px;}
.ws1d{word-spacing:5.798233px;}
.ws13{word-spacing:5.858009px;}
.ws5c{word-spacing:5.917784px;}
.ws3c{word-spacing:5.977560px;}
.wscd{word-spacing:6.037336px;}
.ws40{word-spacing:6.156887px;}
.ws61{word-spacing:6.276438px;}
.ws65{word-spacing:6.336214px;}
.ws9a{word-spacing:6.401948px;}
.ws3f{word-spacing:6.455765px;}
.wsed{word-spacing:6.575316px;}
.wsc2{word-spacing:6.635092px;}
.wsd4{word-spacing:6.694867px;}
.ws32{word-spacing:6.874194px;}
.ws14{word-spacing:6.933970px;}
.ws41{word-spacing:6.993745px;}
.wsb9{word-spacing:7.113296px;}
.wsc8{word-spacing:7.173072px;}
.ws12{word-spacing:7.232848px;}
.ws3d{word-spacing:7.292623px;}
.ws62{word-spacing:7.352399px;}
.wsac{word-spacing:7.711052px;}
.wsc3{word-spacing:7.770828px;}
.wscc{word-spacing:7.950155px;}
.wsd5{word-spacing:8.009930px;}
.wsd1{word-spacing:8.069706px;}
.ws8a{word-spacing:8.129482px;}
.ws3e{word-spacing:8.189257px;}
.ws4{word-spacing:8.547911px;}
.ws59{word-spacing:8.607686px;}
.wsd0{word-spacing:8.667462px;}
.ws6d{word-spacing:8.760895px;}
.ws6f{word-spacing:8.787013px;}
.wseb{word-spacing:8.846789px;}
.wsaa{word-spacing:8.906564px;}
.ws8e{word-spacing:9.444545px;}
.ws64{word-spacing:9.504320px;}
.ws63{word-spacing:9.530683px;}
.ws71{word-spacing:9.623872px;}
.ws6b{word-spacing:9.743423px;}
.wse2{word-spacing:9.922750px;}
.ws18{word-spacing:10.281403px;}
.ws60{word-spacing:10.580281px;}
.ws80{word-spacing:11.508258px;}
.ws37{word-spacing:11.596466px;}
.ws58{word-spacing:12.014896px;}
.ws54{word-spacing:12.043225px;}
.ws36{word-spacing:12.074671px;}
.ws88{word-spacing:12.908547px;}
.wsf3{word-spacing:13.031081px;}
.ws83{word-spacing:13.165516px;}
.wsb2{word-spacing:13.210408px;}
.wsa0{word-spacing:13.224763px;}
.wsf1{word-spacing:13.329959px;}
.wsef{word-spacing:13.628837px;}
.wsa2{word-spacing:14.070763px;}
.ws92{word-spacing:14.878598px;}
.ws42{word-spacing:14.884124px;}
.wse7{word-spacing:14.886858px;}
.wsb7{word-spacing:15.063451px;}
.wsde{word-spacing:15.183002px;}
.ws4a{word-spacing:15.661207px;}
.wsa3{word-spacing:16.229124px;}
.wsab{word-spacing:16.248763px;}
.ws2e{word-spacing:16.258963px;}
.wsb1{word-spacing:16.557841px;}
.wsb8{word-spacing:17.275148px;}
.ws78{word-spacing:17.633802px;}
.ws1{word-spacing:17.861069px;}
.ws7b{word-spacing:18.171782px;}
.wsbe{word-spacing:18.171828px;}
.wse4{word-spacing:18.351109px;}
.ws4e{word-spacing:19.367294px;}
.ws86{word-spacing:19.553124px;}
.wsa6{word-spacing:19.704824px;}
.wsa8{word-spacing:19.708782px;}
.ws9f{word-spacing:21.068799px;}
.wsec{word-spacing:21.638767px;}
.ws6e{word-spacing:23.657008px;}
.ws74{word-spacing:24.209118px;}
.ws17{word-spacing:25.165528px;}
.wsa5{word-spacing:25.464406px;}
.ws75{word-spacing:27.196259px;}
.ws19{word-spacing:35.805584px;}
.wse9{word-spacing:90.080350px;}
.wse8{word-spacing:91.215000px;}
.wse6{word-spacing:123.079500px;}
.ws95{word-spacing:131.354350px;}
.ws99{word-spacing:161.896800px;}
.ws93{word-spacing:161.901000px;}
.ws98{word-spacing:161.902800px;}
.ws90{word-spacing:176.160841px;}
.ws97{word-spacing:176.785124px;}
.ws96{word-spacing:204.250825px;}
.ws91{word-spacing:261.544825px;}
.ws8f{word-spacing:441.203062px;}
._0{margin-left:-1447.886400px;}
._3{margin-left:-9.683712px;}
._1{margin-left:-6.599270px;}
._4{margin-left:-4.662528px;}
._5{margin-left:-3.592723px;}
._2{margin-left:-2.151936px;}
._8{margin-left:-1.075968px;}
._1e{width:1.297127px;}
._1c{width:2.744586px;}
._1d{width:4.475948px;}
._6{width:5.857632px;}
._b{width:11.058500px;}
._f{width:13.150646px;}
._18{width:14.465738px;}
._15{width:16.139443px;}
._11{width:17.394752px;}
._9{width:18.530436px;}
._10{width:20.210383px;}
._2d{width:21.220352px;}
._7{width:22.236672px;}
._c{width:24.029791px;}
._13{width:26.002400px;}
._e{width:27.032654px;}
._1a{width:28.034756px;}
._14{width:29.349827px;}
._12{width:31.209050px;}
._1b{width:32.751724px;}
._a{width:34.311209px;}
._17{width:35.865360px;}
._16{width:37.658671px;}
._d{width:39.392120px;}
._2b{width:41.365411px;}
._2c{width:43.038461px;}
._2a{width:44.174154px;}
._1f{width:46.744519px;}
._19{width:50.211504px;}
._29{width:70.057018px;}
._2e{width:74.123062px;}
._22{width:79.925366px;}
._31{width:96.716914px;}
._30{width:106.158900px;}
._2f{width:128.337650px;}
._21{width:143.819400px;}
._26{width:157.929650px;}
._24{width:176.844900px;}
._28{width:219.194725px;}
._25{width:234.140700px;}
._23{width:265.187753px;}
._27{width:276.494725px;}
._20{width:833.625143px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs1{font-size:31.968000px;}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:7.435200px;}
.y3c{bottom:106.299000px;}
.y5{bottom:106.617752px;}
.y104{bottom:109.600500px;}
.y4{bottom:116.208952px;}
.y3b{bottom:124.231500px;}
.yd8{bottom:124.714500px;}
.y3{bottom:125.800151px;}
.y103{bottom:127.534500px;}
.y2{bottom:135.391350px;}
.y63{bottom:137.742000px;}
.y3a{bottom:142.164000px;}
.y102{bottom:145.467000px;}
.y6{bottom:146.054700px;}
.yd7{bottom:147.532500px;}
.y62{bottom:155.676000px;}
.y39{bottom:160.096500px;}
.yab{bottom:160.098000px;}
.y101{bottom:163.399500px;}
.yd6{bottom:165.465000px;}
.y61{bottom:173.608500px;}
.y38{bottom:178.030500px;}
.y14f{bottom:178.159500px;}
.y125{bottom:178.782000px;}
.y100{bottom:181.332000px;}
.yd5{bottom:186.615000px;}
.y60{bottom:191.541000px;}
.y37{bottom:195.963000px;}
.y14e{bottom:196.092000px;}
.yff{bottom:199.264500px;}
.yd4{bottom:204.547500px;}
.y5f{bottom:209.473500px;}
.y124{bottom:210.528000px;}
.y36{bottom:213.895500px;}
.y14d{bottom:214.024500px;}
.yfe{bottom:217.197000px;}
.yd3{bottom:222.480000px;}
.y5e{bottom:227.406000px;}
.y123{bottom:228.460500px;}
.y35{bottom:231.828000px;}
.y14c{bottom:232.087500px;}
.yfd{bottom:235.131000px;}
.yd2{bottom:240.414000px;}
.y5d{bottom:245.338500px;}
.y122{bottom:246.393000px;}
.y34{bottom:249.760500px;}
.yaa{bottom:249.762000px;}
.y14b{bottom:250.020000px;}
.yfc{bottom:253.063500px;}
.yd1{bottom:258.346500px;}
.y121{bottom:264.327000px;}
.y5c{bottom:266.488500px;}
.y33{bottom:267.694500px;}
.y14a{bottom:267.952500px;}
.yfb{bottom:274.213500px;}
.yd0{bottom:276.279000px;}
.y120{bottom:282.259500px;}
.y5b{bottom:284.421000px;}
.y32{bottom:285.627000px;}
.y149{bottom:285.885000px;}
.ya9{bottom:288.844500px;}
.y9{bottom:291.234300px;}
.yfa{bottom:292.146000px;}
.ycf{bottom:294.211500px;}
.y11f{bottom:300.192000px;}
.y5a{bottom:302.355000px;}
.y8d{bottom:303.559500px;}
.y148{bottom:303.948000px;}
.y8{bottom:305.634300px;}
.ya8{bottom:306.777000px;}
.yf9{bottom:310.078500px;}
.yce{bottom:312.144000px;}
.y11e{bottom:318.124500px;}
.y7{bottom:320.034300px;}
.y59{bottom:320.287500px;}
.y147{bottom:321.880500px;}
.y31{bottom:322.986000px;}
.y8c{bottom:324.709500px;}
.yf8{bottom:328.011000px;}
.ycd{bottom:330.078000px;}
.y11d{bottom:336.057000px;}
.ya6{bottom:338.173500px;}
.y58{bottom:338.220000px;}
.ya7{bottom:338.353500px;}
.y146{bottom:339.813000px;}
.ya5{bottom:342.063000px;}
.y8b{bottom:342.642000px;}
.yf7{bottom:345.943500px;}
.y11c{bottom:353.989500px;}
.y57{bottom:356.152500px;}
.y145{bottom:357.876000px;}
.y8a{bottom:360.574500px;}
.yf6{bottom:363.877500px;}
.ya1{bottom:364.479000px;}
.ya3{bottom:364.797000px;}
.ya2{bottom:365.073000px;}
.ya4{bottom:365.253000px;}
.ycc{bottom:366.697500px;}
.ya0{bottom:368.962500px;}
.y30{bottom:371.383500px;}
.y11b{bottom:371.923500px;}
.y56{bottom:374.085000px;}
.y144{bottom:375.808500px;}
.y89{bottom:378.507000px;}
.yf5{bottom:381.810000px;}
.y2f{bottom:389.316000px;}
.y11a{bottom:389.856000px;}
.y55{bottom:392.019000px;}
.y143{bottom:393.741000px;}
.y9f{bottom:394.269000px;}
.y88{bottom:396.439500px;}
.yf4{bottom:399.742500px;}
.ycb{bottom:402.900000px;}
.y54{bottom:409.951500px;}
.y142{bottom:411.673500px;}
.y9e{bottom:412.201500px;}
.y87{bottom:414.373500px;}
.yf3{bottom:417.675000px;}
.y2e{bottom:417.937500px;}
.yca{bottom:420.834000px;}
.y53{bottom:427.884000px;}
.y141{bottom:429.736500px;}
.y9d{bottom:430.134000px;}
.y119{bottom:431.764500px;}
.y86{bottom:432.306000px;}
.yf2{bottom:435.607500px;}
.y2d{bottom:435.870000px;}
.yc9{bottom:438.766500px;}
.y9c{bottom:444.177000px;}
.y52{bottom:445.816500px;}
.y140{bottom:447.669000px;}
.y9b{bottom:448.066500px;}
.y118{bottom:449.697000px;}
.y85{bottom:450.238500px;}
.yf1{bottom:453.540000px;}
.y2c{bottom:453.804000px;}
.yc8{bottom:456.699000px;}
.y51{bottom:463.749000px;}
.y13f{bottom:465.601500px;}
.y9a{bottom:465.999000px;}
.y84{bottom:468.171000px;}
.yf0{bottom:471.474000px;}
.y2b{bottom:471.736500px;}
.y99{bottom:479.767500px;}
.yc7{bottom:480.837000px;}
.y50{bottom:481.681500px;}
.y13e{bottom:483.534000px;}
.y98{bottom:483.933000px;}
.y83{bottom:486.103500px;}
.y2a{bottom:489.669000px;}
.yef{bottom:492.622500px;}
.y97{bottom:497.700000px;}
.y96{bottom:497.976000px;}
.y4f{bottom:499.615500px;}
.y95{bottom:501.865500px;}
.y82{bottom:504.036000px;}
.yc6{bottom:505.900500px;}
.y29{bottom:507.601500px;}
.yee{bottom:510.556500px;}
.y13d{bottom:517.020000px;}
.y4e{bottom:520.764000px;}
.y81{bottom:521.970000px;}
.yc5{bottom:523.834500px;}
.y28{bottom:525.534000px;}
.yed{bottom:528.489000px;}
.y4d{bottom:538.698000px;}
.yc4{bottom:541.767000px;}
.y80{bottom:543.120000px;}
.y27{bottom:543.466500px;}
.yec{bottom:546.421500px;}
.y94{bottom:546.513000px;}
.y4c{bottom:556.630500px;}
.yc3{bottom:559.699500px;}
.y7f{bottom:561.052500px;}
.y26{bottom:561.400500px;}
.y13c{bottom:562.138500px;}
.yeb{bottom:564.354000px;}
.y93{bottom:564.445500px;}
.y4b{bottom:574.563000px;}
.yc2{bottom:577.632000px;}
.y7e{bottom:578.985000px;}
.y25{bottom:579.333000px;}
.y13b{bottom:580.071000px;}
.yea{bottom:582.286500px;}
.y92{bottom:582.378000px;}
.y4a{bottom:592.495500px;}
.y7d{bottom:596.917500px;}
.y24{bottom:597.265500px;}
.y13a{bottom:598.005000px;}
.yc1{bottom:598.782000px;}
.ye9{bottom:600.219000px;}
.y49{bottom:610.428000px;}
.y7c{bottom:614.850000px;}
.y23{bottom:615.198000px;}
.y139{bottom:615.937500px;}
.yc0{bottom:616.714500px;}
.ye8{bottom:618.153000px;}
.y48{bottom:628.360500px;}
.y7b{bottom:632.782500px;}
.y22{bottom:633.130500px;}
.ye7{bottom:636.085500px;}
.y47{bottom:646.294500px;}
.y7a{bottom:650.716500px;}
.y21{bottom:651.064500px;}
.y138{bottom:652.639500px;}
.ybf{bottom:652.966500px;}
.ye6{bottom:654.018000px;}
.y46{bottom:664.227000px;}
.y79{bottom:668.649000px;}
.y20{bottom:668.997000px;}
.ye5{bottom:671.950500px;}
.ybe{bottom:681.451500px;}
.y45{bottom:682.159500px;}
.y78{bottom:686.581500px;}
.y1f{bottom:686.929500px;}
.y137{bottom:689.254500px;}
.ye4{bottom:689.883000px;}
.y44{bottom:700.092000px;}
.ybd{bottom:702.601500px;}
.y1e{bottom:704.862000px;}
.y136{bottom:707.187000px;}
.y77{bottom:707.731500px;}
.ye3{bottom:707.817000px;}
.y43{bottom:718.024500px;}
.ybc{bottom:720.534000px;}
.y117{bottom:721.116000px;}
.y1d{bottom:722.794500px;}
.y135{bottom:725.119500px;}
.y76{bottom:725.664000px;}
.ye2{bottom:725.749500px;}
.y91{bottom:729.015000px;}
.y42{bottom:735.958500px;}
.y116{bottom:739.048500px;}
.y1c{bottom:740.727000px;}
.y134{bottom:743.053500px;}
.y75{bottom:743.596500px;}
.ye1{bottom:743.682000px;}
.y90{bottom:746.947500px;}
.ybb{bottom:751.248000px;}
.y41{bottom:753.891000px;}
.yba{bottom:755.731500px;}
.y115{bottom:756.982500px;}
.y1b{bottom:758.661000px;}
.y133{bottom:760.986000px;}
.y74{bottom:761.529000px;}
.ye0{bottom:761.614500px;}
.y8f{bottom:764.880000px;}
.y1{bottom:767.491050px;}
.y40{bottom:771.823500px;}
.y114{bottom:774.915000px;}
.y1a{bottom:776.593500px;}
.y132{bottom:778.918500px;}
.y73{bottom:779.461500px;}
.ydf{bottom:779.547000px;}
.y8e{bottom:782.814000px;}
.y11{bottom:784.040550px;}
.yb9{bottom:785.269500px;}
.y3f{bottom:789.756000px;}
.y113{bottom:792.847500px;}
.y19{bottom:794.526000px;}
.y131{bottom:796.851000px;}
.y72{bottom:797.395500px;}
.yde{bottom:797.479500px;}
.yb8{bottom:803.203500px;}
.y3e{bottom:807.688500px;}
.y112{bottom:810.780000px;}
.y18{bottom:812.458500px;}
.y130{bottom:814.783500px;}
.y71{bottom:815.328000px;}
.ydd{bottom:818.629500px;}
.yb7{bottom:821.136000px;}
.y3d{bottom:825.621000px;}
.y111{bottom:828.712500px;}
.y12f{bottom:832.716000px;}
.y70{bottom:833.260500px;}
.ydc{bottom:836.562000px;}
.yb6{bottom:842.286000px;}
.y17{bottom:843.555000px;}
.y110{bottom:846.646500px;}
.y12e{bottom:850.650000px;}
.y6f{bottom:851.193000px;}
.ydb{bottom:854.496000px;}
.y10f{bottom:864.579000px;}
.yb4{bottom:866.356500px;}
.yb5{bottom:867.027000px;}
.y12d{bottom:868.582500px;}
.y6e{bottom:869.125500px;}
.yb3{bottom:871.510500px;}
.yda{bottom:872.428500px;}
.y10e{bottom:882.511500px;}
.y12c{bottom:886.515000px;}
.y6d{bottom:887.059500px;}
.yd9{bottom:890.361000px;}
.ye{bottom:898.156500px;}
.y10d{bottom:900.444000px;}
.y12b{bottom:904.447500px;}
.y6c{bottom:904.992000px;}
.y10{bottom:905.591700px;}
.yd{bottom:905.591850px;}
.y16{bottom:908.643000px;}
.y10c{bottom:918.376500px;}
.y6b{bottom:922.924500px;}
.y15{bottom:929.580000px;}
.y10b{bottom:936.309000px;}
.y6a{bottom:940.857000px;}
.yb2{bottom:941.170500px;}
.yc{bottom:948.791850px;}
.y10a{bottom:954.243000px;}
.y12a{bottom:955.449000px;}
.y69{bottom:958.789500px;}
.yb1{bottom:959.701500px;}
.y14{bottom:964.932000px;}
.y109{bottom:972.175500px;}
.y129{bottom:973.980000px;}
.y68{bottom:976.722000px;}
.yb0{bottom:978.231000px;}
.y108{bottom:990.108000px;}
.yb{bottom:991.991850px;}
.y128{bottom:992.509500px;}
.y67{bottom:994.656000px;}
.yaf{bottom:996.762000px;}
.yae{bottom:1005.729000px;}
.y107{bottom:1008.040500px;}
.y13{bottom:1008.268500px;}
.y127{bottom:1011.040500px;}
.y66{bottom:1012.588500px;}
.y106{bottom:1025.973000px;}
.y12{bottom:1029.190500px;}
.y65{bottom:1030.521000px;}
.yad{bottom:1033.225500px;}
.y126{bottom:1036.827000px;}
.ya{bottom:1037.031000px;}
.y105{bottom:1043.905500px;}
.yac{bottom:1054.759500px;}
.y64{bottom:1065.055500px;}
.h2{height:24.444281px;}
.h24{height:24.675533px;}
.h25{height:31.944161px;}
.h9{height:32.900573px;}
.h1{height:36.703125px;}
.hb{height:41.125613px;}
.h27{height:41.146902px;}
.ha{height:41.364715px;}
.hc{height:41.783144px;}
.hd{height:44.831700px;}
.h7{height:49.637990px;}
.h26{height:49.898047px;}
.h23{height:50.483846px;}
.h12{height:50.728903px;}
.he{height:50.734903px;}
.h20{height:51.734047px;}
.hf{height:54.272047px;}
.h3{height:55.054688px;}
.h10{height:55.102903px;}
.h11{height:55.108903px;}
.h16{height:56.683613px;}
.h17{height:57.760903px;}
.h18{height:57.787613px;}
.h8{height:58.689470px;}
.h19{height:59.092903px;}
.h1c{height:59.669700px;}
.h1d{height:65.450047px;}
.h15{height:66.286903px;}
.h1b{height:66.554047px;}
.h14{height:67.390903px;}
.h22{height:67.826047px;}
.h13{height:73.318903px;}
.h1f{height:76.987613px;}
.h21{height:79.708903px;}
.h1a{height:86.673024px;}
.h1e{height:109.759613px;}
.h4{height:110.109375px;}
.h5{height:122.400000px;}
.h6{height:1188.000000px;}
.h0{height:1263.000000px;}
.w2{width:778.350000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:64.701150px;}
.xe{left:81.637500px;}
.x2d{left:97.927500px;}
.xf{left:104.053500px;}
.x13{left:116.364000px;}
.x2{left:120.252300px;}
.xb{left:125.700000px;}
.x22{left:127.548000px;}
.x29{left:132.066000px;}
.x24{left:135.646500px;}
.x26{left:145.195500px;}
.xc{left:148.431000px;}
.x2c{left:158.803500px;}
.x2b{left:172.434000px;}
.x8{left:193.450500px;}
.x10{left:194.833500px;}
.x2e{left:203.740500px;}
.x6{left:205.824450px;}
.x3{left:207.383100px;}
.x9{left:219.720000px;}
.x27{left:221.383500px;}
.xd{left:224.199000px;}
.x4{left:227.127450px;}
.x2a{left:235.711500px;}
.x23{left:241.435500px;}
.x7{left:247.113000px;}
.x28{left:252.216000px;}
.x5{left:314.258250px;}
.x25{left:372.103500px;}
.x12{left:472.819500px;}
.x11{left:495.235500px;}
.x34{left:497.715000px;}
.x19{left:499.621500px;}
.xa{left:506.661000px;}
.x14{left:525.766500px;}
.x15{left:547.300500px;}
.x32{left:551.494500px;}
.x33{left:558.339000px;}
.x31{left:561.043500px;}
.x30{left:567.469500px;}
.x16{left:568.513500px;}
.x1a{left:595.308000px;}
.x1e{left:609.739500px;}
.x1f{left:639.906000px;}
.x17{left:645.720000px;}
.x2f{left:663.342000px;}
.x20{left:693.612000px;}
.x1b{left:700.671000px;}
.x21{left:716.397000px;}
.x1c{left:754.377000px;}
.x18{left:771.661500px;}
.x1d{left:775.935000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v16{vertical-align:-14.997333pt;}
.v15{vertical-align:-13.136000pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:3.216000pt;}
.v13{vertical-align:7.968000pt;}
.v5{vertical-align:13.829333pt;}
.v7{vertical-align:14.810667pt;}
.vc{vertical-align:15.941333pt;}
.v4{vertical-align:19.285333pt;}
.v11{vertical-align:20.917333pt;}
.v1{vertical-align:23.136000pt;}
.va{vertical-align:25.530667pt;}
.vb{vertical-align:26.714667pt;}
.v10{vertical-align:31.877333pt;}
.v9{vertical-align:33.109333pt;}
.v8{vertical-align:34.090667pt;}
.ve{vertical-align:35.221333pt;}
.v6{vertical-align:39.360000pt;}
.v12{vertical-align:45.040000pt;}
.vf{vertical-align:47.818667pt;}
.vd{vertical-align:58.976000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000278pt;}
.ls6a{letter-spacing:0.000501pt;}
.ls59{letter-spacing:0.000681pt;}
.ls6b{letter-spacing:0.000818pt;}
.ls37{letter-spacing:0.001014pt;}
.ls38{letter-spacing:0.001788pt;}
.lsb{letter-spacing:0.001799pt;}
.ls5b{letter-spacing:0.002079pt;}
.ls4a{letter-spacing:0.002693pt;}
.ls28{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003733pt;}
.ls44{letter-spacing:0.004239pt;}
.ls4f{letter-spacing:0.004349pt;}
.ls3e{letter-spacing:0.196932pt;}
.ls29{letter-spacing:1.903146pt;}
.ls60{letter-spacing:1.904681pt;}
.ls3a{letter-spacing:1.908479pt;}
.ls23{letter-spacing:2.651680pt;}
.ls68{letter-spacing:2.651733pt;}
.ls7{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.655733pt;}
.ls1d{letter-spacing:2.657014pt;}
.ls70{letter-spacing:2.657253pt;}
.ls18{letter-spacing:2.658245pt;}
.ls2{letter-spacing:2.661067pt;}
.ls6e{letter-spacing:2.917044pt;}
.ls43{letter-spacing:2.922378pt;}
.ls56{letter-spacing:3.801407pt;}
.ls1c{letter-spacing:3.921943pt;}
.ls62{letter-spacing:3.992098pt;}
.ls52{letter-spacing:4.170591pt;}
.ls64{letter-spacing:4.807919pt;}
.ls12{letter-spacing:5.263197pt;}
.ls39{letter-spacing:5.718992pt;}
.ls34{letter-spacing:5.793503pt;}
.ls8{letter-spacing:8.378428pt;}
.ls11{letter-spacing:8.855412pt;}
.ls2b{letter-spacing:11.435680pt;}
.ls5e{letter-spacing:11.485573pt;}
.ls49{letter-spacing:11.803145pt;}
.ls3b{letter-spacing:11.805573pt;}
.ls3c{letter-spacing:11.808479pt;}
.ls48{letter-spacing:11.810906pt;}
.ls63{letter-spacing:12.424239pt;}
.ls2a{letter-spacing:12.577014pt;}
.ls65{letter-spacing:12.907145pt;}
.ls4c{letter-spacing:13.288027pt;}
.ls66{letter-spacing:13.365812pt;}
.ls35{letter-spacing:13.505963pt;}
.ls5f{letter-spacing:14.144546pt;}
.ls3d{letter-spacing:14.460911pt;}
.ls5a{letter-spacing:14.464546pt;}
.ls53{letter-spacing:14.757611pt;}
.ls45{letter-spacing:14.757812pt;}
.ls55{letter-spacing:14.759720pt;}
.ls54{letter-spacing:14.761067pt;}
.ls4e{letter-spacing:14.761572pt;}
.ls46{letter-spacing:14.939145pt;}
.ls2e{letter-spacing:15.783200pt;}
.ls2c{letter-spacing:15.798347pt;}
.lse{letter-spacing:15.907733pt;}
.ls6c{letter-spacing:15.938245pt;}
.ls1f{letter-spacing:15.942347pt;}
.ls27{letter-spacing:15.952479pt;}
.ls69{letter-spacing:16.128499pt;}
.ls72{letter-spacing:16.202378pt;}
.ls73{letter-spacing:16.207711pt;}
.ls32{letter-spacing:16.427145pt;}
.ls1e{letter-spacing:16.471452pt;}
.ls5d{letter-spacing:16.667348pt;}
.ls67{letter-spacing:17.221867pt;}
.ls6f{letter-spacing:17.338378pt;}
.ls58{letter-spacing:17.413880pt;}
.ls13{letter-spacing:17.572074pt;}
.ls47{letter-spacing:17.839197pt;}
.ls25{letter-spacing:17.910663pt;}
.ls71{letter-spacing:18.102586pt;}
.ls19{letter-spacing:18.337867pt;}
.ls40{letter-spacing:18.564932pt;}
.ls3{letter-spacing:18.597067pt;}
.ls61{letter-spacing:18.610585pt;}
.ls6d{letter-spacing:18.805044pt;}
.ls24{letter-spacing:18.923680pt;}
.ls20{letter-spacing:19.691680pt;}
.ls41{letter-spacing:19.726740pt;}
.ls42{letter-spacing:21.225407pt;}
.ls31{letter-spacing:21.234585pt;}
.ls22{letter-spacing:21.559467pt;}
.ls1b{letter-spacing:22.244984pt;}
.ls17{letter-spacing:22.245812pt;}
.ls14{letter-spacing:22.866764pt;}
.lsa{letter-spacing:23.601014pt;}
.ls9{letter-spacing:23.987733pt;}
.lsf{letter-spacing:24.493599pt;}
.ls10{letter-spacing:24.498079pt;}
.ls1a{letter-spacing:24.907680pt;}
.ls51{letter-spacing:25.346245pt;}
.ls16{letter-spacing:25.398663pt;}
.ls15{letter-spacing:25.676610pt;}
.ls2d{letter-spacing:26.507680pt;}
.ls2f{letter-spacing:26.715680pt;}
.ls21{letter-spacing:27.281659pt;}
.ls30{letter-spacing:27.553014pt;}
.ls33{letter-spacing:27.692630pt;}
.ls26{letter-spacing:29.463296pt;}
.ls4{letter-spacing:31.298133pt;}
.lsc{letter-spacing:31.606347pt;}
.ls6{letter-spacing:34.576479pt;}
.ls5{letter-spacing:38.503276pt;}
.ls36{letter-spacing:53.131145pt;}
.ls4d{letter-spacing:117.346079pt;}
.ls50{letter-spacing:127.906079pt;}
.ls4b{letter-spacing:174.242079pt;}
.ls3f{letter-spacing:202.690079pt;}
.ls5c{letter-spacing:260.876745pt;}
.ws55{word-spacing:-53.133867pt;}
.ws87{word-spacing:-42.066082pt;}
.ws56{word-spacing:-34.611401pt;}
.ws5d{word-spacing:-28.639154pt;}
.ws57{word-spacing:-25.791179pt;}
.ws5b{word-spacing:-25.738045pt;}
.ws5a{word-spacing:-24.175909pt;}
.wsa9{word-spacing:-13.283467pt;}
.wsbf{word-spacing:-3.188032pt;}
.wsf0{word-spacing:-3.134898pt;}
.ws81{word-spacing:-3.028630pt;}
.ws20{word-spacing:-2.922363pt;}
.ws7{word-spacing:-2.816095pt;}
.ws43{word-spacing:-2.762961pt;}
.ws3b{word-spacing:-2.656693pt;}
.wscb{word-spacing:-2.603559pt;}
.ws8{word-spacing:-2.550426pt;}
.ws1a{word-spacing:-2.497292pt;}
.ws4c{word-spacing:-2.391024pt;}
.ws45{word-spacing:-2.284756pt;}
.wsd6{word-spacing:-2.072221pt;}
.ws9d{word-spacing:-1.965953pt;}
.wsb5{word-spacing:-1.806551pt;}
.wsb4{word-spacing:-1.800770pt;}
.wsb3{word-spacing:-1.798836pt;}
.ws26{word-spacing:-1.753418pt;}
.wsad{word-spacing:-1.651922pt;}
.wsae{word-spacing:-1.647150pt;}
.ws82{word-spacing:-1.540882pt;}
.wsdb{word-spacing:-1.487748pt;}
.ws52{word-spacing:-1.434614pt;}
.ws47{word-spacing:-1.381481pt;}
.wsaf{word-spacing:-1.328347pt;}
.ws34{word-spacing:-1.275213pt;}
.wsca{word-spacing:-1.062677pt;}
.ws53{word-spacing:-0.956410pt;}
.ws10{word-spacing:-0.903276pt;}
.wsb6{word-spacing:-0.859970pt;}
.ws27{word-spacing:-0.850142pt;}
.ws3{word-spacing:-0.743874pt;}
.wsa1{word-spacing:-0.721503pt;}
.wsbc{word-spacing:-0.637606pt;}
.wsd{word-spacing:-0.531339pt;}
.ws9{word-spacing:-0.478205pt;}
.ws33{word-spacing:-0.425071pt;}
.wsba{word-spacing:-0.380292pt;}
.wsbb{word-spacing:-0.371937pt;}
.ws16{word-spacing:-0.318803pt;}
.ws76{word-spacing:-0.265669pt;}
.wsa{word-spacing:-0.159402pt;}
.ws2{word-spacing:-0.053134pt;}
.ws67{word-spacing:-0.037194pt;}
.ws9c{word-spacing:-0.003474pt;}
.wsc0{word-spacing:-0.003393pt;}
.wsf2{word-spacing:-0.001644pt;}
.ws9b{word-spacing:-0.001503pt;}
.wsb0{word-spacing:-0.000932pt;}
.ws0{word-spacing:0.000000pt;}
.ws70{word-spacing:0.000297pt;}
.wsc1{word-spacing:0.001897pt;}
.ws94{word-spacing:0.002704pt;}
.ws44{word-spacing:0.053134pt;}
.ws1b{word-spacing:0.106268pt;}
.ws3a{word-spacing:0.159402pt;}
.wsc9{word-spacing:0.212535pt;}
.ws7a{word-spacing:0.265669pt;}
.ws50{word-spacing:0.318803pt;}
.ws1e{word-spacing:0.371937pt;}
.ws29{word-spacing:0.425071pt;}
.ws5e{word-spacing:0.478205pt;}
.ws30{word-spacing:0.531339pt;}
.wsc{word-spacing:0.584473pt;}
.ws2d{word-spacing:0.637606pt;}
.ws7e{word-spacing:0.645949pt;}
.ws7d{word-spacing:0.655889pt;}
.ws22{word-spacing:0.690740pt;}
.ws9e{word-spacing:0.850142pt;}
.ws84{word-spacing:0.896022pt;}
.ws69{word-spacing:0.903276pt;}
.ws4d{word-spacing:0.956410pt;}
.ws48{word-spacing:1.062677pt;}
.ws85{word-spacing:1.073652pt;}
.wsce{word-spacing:1.115811pt;}
.ws25{word-spacing:1.168945pt;}
.ws4b{word-spacing:1.222079pt;}
.wsbd{word-spacing:1.275213pt;}
.wsf{word-spacing:1.328347pt;}
.ws2a{word-spacing:1.434614pt;}
.ws77{word-spacing:1.468289pt;}
.ws1f{word-spacing:1.487748pt;}
.ws11{word-spacing:1.540882pt;}
.wsda{word-spacing:1.594016pt;}
.ws35{word-spacing:1.647150pt;}
.wsd9{word-spacing:1.700284pt;}
.wse{word-spacing:1.753418pt;}
.ws5{word-spacing:1.806551pt;}
.ws2b{word-spacing:1.859685pt;}
.ws2c{word-spacing:1.912819pt;}
.ws7f{word-spacing:1.971587pt;}
.ws21{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.072221pt;}
.wsc5{word-spacing:2.125355pt;}
.wsd7{word-spacing:2.178489pt;}
.wsdf{word-spacing:2.337890pt;}
.ws5f{word-spacing:2.391024pt;}
.ws79{word-spacing:2.444158pt;}
.wscf{word-spacing:2.497292pt;}
.wsc6{word-spacing:2.603559pt;}
.ws8b{word-spacing:2.656693pt;}
.wsd8{word-spacing:2.709827pt;}
.ws2f{word-spacing:2.762961pt;}
.ws23{word-spacing:2.869229pt;}
.ws31{word-spacing:2.922363pt;}
.ws6a{word-spacing:2.975497pt;}
.wsc4{word-spacing:3.028630pt;}
.wse5{word-spacing:3.081764pt;}
.ws46{word-spacing:3.134898pt;}
.ws39{word-spacing:3.188032pt;}
.wsd3{word-spacing:3.241166pt;}
.ws51{word-spacing:3.294300pt;}
.wsd2{word-spacing:3.347434pt;}
.wsdc{word-spacing:3.400567pt;}
.ws15{word-spacing:3.453701pt;}
.wsea{word-spacing:3.506835pt;}
.wsee{word-spacing:3.604311pt;}
.ws28{word-spacing:3.613103pt;}
.ws73{word-spacing:3.666237pt;}
.ws72{word-spacing:3.772505pt;}
.ws4f{word-spacing:3.985040pt;}
.ws68{word-spacing:4.038174pt;}
.ws8c{word-spacing:4.142497pt;}
.ws8d{word-spacing:4.144442pt;}
.wsb{word-spacing:4.197575pt;}
.ws24{word-spacing:4.250709pt;}
.wsa4{word-spacing:4.281852pt;}
.wsa7{word-spacing:4.284563pt;}
.wsc7{word-spacing:4.303843pt;}
.ws6c{word-spacing:4.410111pt;}
.wsdd{word-spacing:4.463245pt;}
.ws66{word-spacing:4.516379pt;}
.wse0{word-spacing:4.569513pt;}
.wse3{word-spacing:4.728914pt;}
.ws49{word-spacing:4.782048pt;}
.ws1c{word-spacing:4.835182pt;}
.ws6{word-spacing:4.941450pt;}
.wse1{word-spacing:5.047717pt;}
.ws89{word-spacing:5.086497pt;}
.ws38{word-spacing:5.100851pt;}
.ws1d{word-spacing:5.153985pt;}
.ws13{word-spacing:5.207119pt;}
.ws5c{word-spacing:5.260253pt;}
.ws3c{word-spacing:5.313387pt;}
.wscd{word-spacing:5.366521pt;}
.ws40{word-spacing:5.472788pt;}
.ws61{word-spacing:5.579056pt;}
.ws65{word-spacing:5.632190pt;}
.ws9a{word-spacing:5.690621pt;}
.ws3f{word-spacing:5.738458pt;}
.wsed{word-spacing:5.844725pt;}
.wsc2{word-spacing:5.897859pt;}
.wsd4{word-spacing:5.950993pt;}
.ws32{word-spacing:6.110395pt;}
.ws14{word-spacing:6.163529pt;}
.ws41{word-spacing:6.216662pt;}
.wsb9{word-spacing:6.322930pt;}
.wsc8{word-spacing:6.376064pt;}
.ws12{word-spacing:6.429198pt;}
.ws3d{word-spacing:6.482332pt;}
.ws62{word-spacing:6.535466pt;}
.wsac{word-spacing:6.854269pt;}
.wsc3{word-spacing:6.907403pt;}
.wscc{word-spacing:7.066804pt;}
.wsd5{word-spacing:7.119938pt;}
.wsd1{word-spacing:7.173072pt;}
.ws8a{word-spacing:7.226206pt;}
.ws3e{word-spacing:7.279340pt;}
.ws4{word-spacing:7.598143pt;}
.ws59{word-spacing:7.651277pt;}
.wsd0{word-spacing:7.704411pt;}
.ws6d{word-spacing:7.787462pt;}
.ws6f{word-spacing:7.810678pt;}
.wseb{word-spacing:7.863812pt;}
.wsaa{word-spacing:7.916946pt;}
.ws8e{word-spacing:8.395151pt;}
.ws64{word-spacing:8.448285pt;}
.ws63{word-spacing:8.471718pt;}
.ws71{word-spacing:8.554553pt;}
.ws6b{word-spacing:8.660820pt;}
.wse2{word-spacing:8.820222pt;}
.ws18{word-spacing:9.139025pt;}
.ws60{word-spacing:9.404694pt;}
.ws80{word-spacing:10.229563pt;}
.ws37{word-spacing:10.307970pt;}
.ws58{word-spacing:10.679907pt;}
.ws54{word-spacing:10.705089pt;}
.ws36{word-spacing:10.733041pt;}
.ws88{word-spacing:11.474264pt;}
.wsf3{word-spacing:11.583183pt;}
.ws83{word-spacing:11.702681pt;}
.wsb2{word-spacing:11.742585pt;}
.wsa0{word-spacing:11.755345pt;}
.wsf1{word-spacing:11.848852pt;}
.wsef{word-spacing:12.114522pt;}
.wsa2{word-spacing:12.507345pt;}
.ws92{word-spacing:13.225421pt;}
.ws42{word-spacing:13.230333pt;}
.wse7{word-spacing:13.232763pt;}
.wsb7{word-spacing:13.389734pt;}
.wsde{word-spacing:13.496002pt;}
.ws4a{word-spacing:13.921073pt;}
.wsa3{word-spacing:14.425888pt;}
.wsab{word-spacing:14.443345pt;}
.ws2e{word-spacing:14.452412pt;}
.wsb1{word-spacing:14.718081pt;}
.wsb8{word-spacing:15.355687pt;}
.ws78{word-spacing:15.674491pt;}
.ws1{word-spacing:15.876506pt;}
.ws7b{word-spacing:16.152695pt;}
.wsbe{word-spacing:16.152736pt;}
.wse4{word-spacing:16.312097pt;}
.ws4e{word-spacing:17.215373pt;}
.ws86{word-spacing:17.380555pt;}
.wsa6{word-spacing:17.515399pt;}
.wsa8{word-spacing:17.518917pt;}
.ws9f{word-spacing:18.727821pt;}
.wsec{word-spacing:19.234460pt;}
.ws6e{word-spacing:21.028451pt;}
.ws74{word-spacing:21.519216pt;}
.ws17{word-spacing:22.369358pt;}
.wsa5{word-spacing:22.635027pt;}
.ws75{word-spacing:24.174452pt;}
.ws19{word-spacing:31.827186pt;}
.wse9{word-spacing:80.071422pt;}
.wse8{word-spacing:81.080000pt;}
.wse6{word-spacing:109.404000pt;}
.ws95{word-spacing:116.759422pt;}
.ws99{word-spacing:143.908267pt;}
.ws93{word-spacing:143.912000pt;}
.ws98{word-spacing:143.913600pt;}
.ws90{word-spacing:156.587414pt;}
.ws97{word-spacing:157.142333pt;}
.ws96{word-spacing:181.556289pt;}
.ws91{word-spacing:232.484289pt;}
.ws8f{word-spacing:392.180499pt;}
._0{margin-left:-1287.010133pt;}
._3{margin-left:-8.607744pt;}
._1{margin-left:-5.866018pt;}
._4{margin-left:-4.144469pt;}
._5{margin-left:-3.193532pt;}
._2{margin-left:-1.912832pt;}
._8{margin-left:-0.956416pt;}
._1e{width:1.153002pt;}
._1c{width:2.439632pt;}
._1d{width:3.978621pt;}
._6{width:5.206784pt;}
._b{width:9.829778pt;}
._f{width:11.689463pt;}
._18{width:12.858434pt;}
._15{width:14.346172pt;}
._11{width:15.462002pt;}
._9{width:16.471499pt;}
._10{width:17.964785pt;}
._2d{width:18.862535pt;}
._7{width:19.765931pt;}
._c{width:21.359814pt;}
._13{width:23.113245pt;}
._e{width:24.029026pt;}
._1a{width:24.919783pt;}
._14{width:26.088735pt;}
._12{width:27.741378pt;}
._1b{width:29.112644pt;}
._a{width:30.498852pt;}
._17{width:31.880320pt;}
._16{width:33.474374pt;}
._d{width:35.015218pt;}
._2b{width:36.769254pt;}
._2c{width:38.256410pt;}
._2a{width:39.265915pt;}
._1f{width:41.550684pt;}
._19{width:44.632448pt;}
._29{width:62.272905pt;}
._2e{width:65.887166pt;}
._22{width:71.044770pt;}
._31{width:85.970590pt;}
._30{width:94.363467pt;}
._2f{width:114.077911pt;}
._21{width:127.839467pt;}
._26{width:140.381911pt;}
._24{width:157.195467pt;}
._28{width:194.839756pt;}
._25{width:208.125067pt;}
._23{width:235.722447pt;}
._27{width:245.773089pt;}
._20{width:741.000127pt;}
.fs1{font-size:28.416000pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:6.609067pt;}
.y3c{bottom:94.488000pt;}
.y5{bottom:94.771335pt;}
.y104{bottom:97.422667pt;}
.y4{bottom:103.296846pt;}
.y3b{bottom:110.428000pt;}
.yd8{bottom:110.857333pt;}
.y3{bottom:111.822356pt;}
.y103{bottom:113.364000pt;}
.y2{bottom:120.347867pt;}
.y63{bottom:122.437333pt;}
.y3a{bottom:126.368000pt;}
.y102{bottom:129.304000pt;}
.y6{bottom:129.826400pt;}
.yd7{bottom:131.140000pt;}
.y62{bottom:138.378667pt;}
.y39{bottom:142.308000pt;}
.yab{bottom:142.309333pt;}
.y101{bottom:145.244000pt;}
.yd6{bottom:147.080000pt;}
.y61{bottom:154.318667pt;}
.y38{bottom:158.249333pt;}
.y14f{bottom:158.364000pt;}
.y125{bottom:158.917333pt;}
.y100{bottom:161.184000pt;}
.yd5{bottom:165.880000pt;}
.y60{bottom:170.258667pt;}
.y37{bottom:174.189333pt;}
.y14e{bottom:174.304000pt;}
.yff{bottom:177.124000pt;}
.yd4{bottom:181.820000pt;}
.y5f{bottom:186.198667pt;}
.y124{bottom:187.136000pt;}
.y36{bottom:190.129333pt;}
.y14d{bottom:190.244000pt;}
.yfe{bottom:193.064000pt;}
.yd3{bottom:197.760000pt;}
.y5e{bottom:202.138667pt;}
.y123{bottom:203.076000pt;}
.y35{bottom:206.069333pt;}
.y14c{bottom:206.300000pt;}
.yfd{bottom:209.005333pt;}
.yd2{bottom:213.701333pt;}
.y5d{bottom:218.078667pt;}
.y122{bottom:219.016000pt;}
.y34{bottom:222.009333pt;}
.yaa{bottom:222.010667pt;}
.y14b{bottom:222.240000pt;}
.yfc{bottom:224.945333pt;}
.yd1{bottom:229.641333pt;}
.y121{bottom:234.957333pt;}
.y5c{bottom:236.878667pt;}
.y33{bottom:237.950667pt;}
.y14a{bottom:238.180000pt;}
.yfb{bottom:243.745333pt;}
.yd0{bottom:245.581333pt;}
.y120{bottom:250.897333pt;}
.y5b{bottom:252.818667pt;}
.y32{bottom:253.890667pt;}
.y149{bottom:254.120000pt;}
.ya9{bottom:256.750667pt;}
.y9{bottom:258.874933pt;}
.yfa{bottom:259.685333pt;}
.ycf{bottom:261.521333pt;}
.y11f{bottom:266.837333pt;}
.y5a{bottom:268.760000pt;}
.y8d{bottom:269.830667pt;}
.y148{bottom:270.176000pt;}
.y8{bottom:271.674933pt;}
.ya8{bottom:272.690667pt;}
.yf9{bottom:275.625333pt;}
.yce{bottom:277.461333pt;}
.y11e{bottom:282.777333pt;}
.y7{bottom:284.474933pt;}
.y59{bottom:284.700000pt;}
.y147{bottom:286.116000pt;}
.y31{bottom:287.098667pt;}
.y8c{bottom:288.630667pt;}
.yf8{bottom:291.565333pt;}
.ycd{bottom:293.402667pt;}
.y11d{bottom:298.717333pt;}
.ya6{bottom:300.598667pt;}
.y58{bottom:300.640000pt;}
.ya7{bottom:300.758667pt;}
.y146{bottom:302.056000pt;}
.ya5{bottom:304.056000pt;}
.y8b{bottom:304.570667pt;}
.yf7{bottom:307.505333pt;}
.y11c{bottom:314.657333pt;}
.y57{bottom:316.580000pt;}
.y145{bottom:318.112000pt;}
.y8a{bottom:320.510667pt;}
.yf6{bottom:323.446667pt;}
.ya1{bottom:323.981333pt;}
.ya3{bottom:324.264000pt;}
.ya2{bottom:324.509333pt;}
.ya4{bottom:324.669333pt;}
.ycc{bottom:325.953333pt;}
.ya0{bottom:327.966667pt;}
.y30{bottom:330.118667pt;}
.y11b{bottom:330.598667pt;}
.y56{bottom:332.520000pt;}
.y144{bottom:334.052000pt;}
.y89{bottom:336.450667pt;}
.yf5{bottom:339.386667pt;}
.y2f{bottom:346.058667pt;}
.y11a{bottom:346.538667pt;}
.y55{bottom:348.461333pt;}
.y143{bottom:349.992000pt;}
.y9f{bottom:350.461333pt;}
.y88{bottom:352.390667pt;}
.yf4{bottom:355.326667pt;}
.ycb{bottom:358.133333pt;}
.y54{bottom:364.401333pt;}
.y142{bottom:365.932000pt;}
.y9e{bottom:366.401333pt;}
.y87{bottom:368.332000pt;}
.yf3{bottom:371.266667pt;}
.y2e{bottom:371.500000pt;}
.yca{bottom:374.074667pt;}
.y53{bottom:380.341333pt;}
.y141{bottom:381.988000pt;}
.y9d{bottom:382.341333pt;}
.y119{bottom:383.790667pt;}
.y86{bottom:384.272000pt;}
.yf2{bottom:387.206667pt;}
.y2d{bottom:387.440000pt;}
.yc9{bottom:390.014667pt;}
.y9c{bottom:394.824000pt;}
.y52{bottom:396.281333pt;}
.y140{bottom:397.928000pt;}
.y9b{bottom:398.281333pt;}
.y118{bottom:399.730667pt;}
.y85{bottom:400.212000pt;}
.yf1{bottom:403.146667pt;}
.y2c{bottom:403.381333pt;}
.yc8{bottom:405.954667pt;}
.y51{bottom:412.221333pt;}
.y13f{bottom:413.868000pt;}
.y9a{bottom:414.221333pt;}
.y84{bottom:416.152000pt;}
.yf0{bottom:419.088000pt;}
.y2b{bottom:419.321333pt;}
.y99{bottom:426.460000pt;}
.yc7{bottom:427.410667pt;}
.y50{bottom:428.161333pt;}
.y13e{bottom:429.808000pt;}
.y98{bottom:430.162667pt;}
.y83{bottom:432.092000pt;}
.y2a{bottom:435.261333pt;}
.yef{bottom:437.886667pt;}
.y97{bottom:442.400000pt;}
.y96{bottom:442.645333pt;}
.y4f{bottom:444.102667pt;}
.y95{bottom:446.102667pt;}
.y82{bottom:448.032000pt;}
.yc6{bottom:449.689333pt;}
.y29{bottom:451.201333pt;}
.yee{bottom:453.828000pt;}
.y13d{bottom:459.573333pt;}
.y4e{bottom:462.901333pt;}
.y81{bottom:463.973333pt;}
.yc5{bottom:465.630667pt;}
.y28{bottom:467.141333pt;}
.yed{bottom:469.768000pt;}
.y4d{bottom:478.842667pt;}
.yc4{bottom:481.570667pt;}
.y80{bottom:482.773333pt;}
.y27{bottom:483.081333pt;}
.yec{bottom:485.708000pt;}
.y94{bottom:485.789333pt;}
.y4c{bottom:494.782667pt;}
.yc3{bottom:497.510667pt;}
.y7f{bottom:498.713333pt;}
.y26{bottom:499.022667pt;}
.y13c{bottom:499.678667pt;}
.yeb{bottom:501.648000pt;}
.y93{bottom:501.729333pt;}
.y4b{bottom:510.722667pt;}
.yc2{bottom:513.450667pt;}
.y7e{bottom:514.653333pt;}
.y25{bottom:514.962667pt;}
.y13b{bottom:515.618667pt;}
.yea{bottom:517.588000pt;}
.y92{bottom:517.669333pt;}
.y4a{bottom:526.662667pt;}
.y7d{bottom:530.593333pt;}
.y24{bottom:530.902667pt;}
.y13a{bottom:531.560000pt;}
.yc1{bottom:532.250667pt;}
.ye9{bottom:533.528000pt;}
.y49{bottom:542.602667pt;}
.y7c{bottom:546.533333pt;}
.y23{bottom:546.842667pt;}
.y139{bottom:547.500000pt;}
.yc0{bottom:548.190667pt;}
.ye8{bottom:549.469333pt;}
.y48{bottom:558.542667pt;}
.y7b{bottom:562.473333pt;}
.y22{bottom:562.782667pt;}
.ye7{bottom:565.409333pt;}
.y47{bottom:574.484000pt;}
.y7a{bottom:578.414667pt;}
.y21{bottom:578.724000pt;}
.y138{bottom:580.124000pt;}
.ybf{bottom:580.414667pt;}
.ye6{bottom:581.349333pt;}
.y46{bottom:590.424000pt;}
.y79{bottom:594.354667pt;}
.y20{bottom:594.664000pt;}
.ye5{bottom:597.289333pt;}
.ybe{bottom:605.734667pt;}
.y45{bottom:606.364000pt;}
.y78{bottom:610.294667pt;}
.y1f{bottom:610.604000pt;}
.y137{bottom:612.670667pt;}
.ye4{bottom:613.229333pt;}
.y44{bottom:622.304000pt;}
.ybd{bottom:624.534667pt;}
.y1e{bottom:626.544000pt;}
.y136{bottom:628.610667pt;}
.y77{bottom:629.094667pt;}
.ye3{bottom:629.170667pt;}
.y43{bottom:638.244000pt;}
.ybc{bottom:640.474667pt;}
.y117{bottom:640.992000pt;}
.y1d{bottom:642.484000pt;}
.y135{bottom:644.550667pt;}
.y76{bottom:645.034667pt;}
.ye2{bottom:645.110667pt;}
.y91{bottom:648.013333pt;}
.y42{bottom:654.185333pt;}
.y116{bottom:656.932000pt;}
.y1c{bottom:658.424000pt;}
.y134{bottom:660.492000pt;}
.y75{bottom:660.974667pt;}
.ye1{bottom:661.050667pt;}
.y90{bottom:663.953333pt;}
.ybb{bottom:667.776000pt;}
.y41{bottom:670.125333pt;}
.yba{bottom:671.761333pt;}
.y115{bottom:672.873333pt;}
.y1b{bottom:674.365333pt;}
.y133{bottom:676.432000pt;}
.y74{bottom:676.914667pt;}
.ye0{bottom:676.990667pt;}
.y8f{bottom:679.893333pt;}
.y1{bottom:682.214267pt;}
.y40{bottom:686.065333pt;}
.y114{bottom:688.813333pt;}
.y1a{bottom:690.305333pt;}
.y132{bottom:692.372000pt;}
.y73{bottom:692.854667pt;}
.ydf{bottom:692.930667pt;}
.y8e{bottom:695.834667pt;}
.y11{bottom:696.924933pt;}
.yb9{bottom:698.017333pt;}
.y3f{bottom:702.005333pt;}
.y113{bottom:704.753333pt;}
.y19{bottom:706.245333pt;}
.y131{bottom:708.312000pt;}
.y72{bottom:708.796000pt;}
.yde{bottom:708.870667pt;}
.yb8{bottom:713.958667pt;}
.y3e{bottom:717.945333pt;}
.y112{bottom:720.693333pt;}
.y18{bottom:722.185333pt;}
.y130{bottom:724.252000pt;}
.y71{bottom:724.736000pt;}
.ydd{bottom:727.670667pt;}
.yb7{bottom:729.898667pt;}
.y3d{bottom:733.885333pt;}
.y111{bottom:736.633333pt;}
.y12f{bottom:740.192000pt;}
.y70{bottom:740.676000pt;}
.ydc{bottom:743.610667pt;}
.yb6{bottom:748.698667pt;}
.y17{bottom:749.826667pt;}
.y110{bottom:752.574667pt;}
.y12e{bottom:756.133333pt;}
.y6f{bottom:756.616000pt;}
.ydb{bottom:759.552000pt;}
.y10f{bottom:768.514667pt;}
.yb4{bottom:770.094667pt;}
.yb5{bottom:770.690667pt;}
.y12d{bottom:772.073333pt;}
.y6e{bottom:772.556000pt;}
.yb3{bottom:774.676000pt;}
.yda{bottom:775.492000pt;}
.y10e{bottom:784.454667pt;}
.y12c{bottom:788.013333pt;}
.y6d{bottom:788.497333pt;}
.yd9{bottom:791.432000pt;}
.ye{bottom:798.361333pt;}
.y10d{bottom:800.394667pt;}
.y12b{bottom:803.953333pt;}
.y6c{bottom:804.437333pt;}
.y10{bottom:804.970400pt;}
.yd{bottom:804.970533pt;}
.y16{bottom:807.682667pt;}
.y10c{bottom:816.334667pt;}
.y6b{bottom:820.377333pt;}
.y15{bottom:826.293333pt;}
.y10b{bottom:832.274667pt;}
.y6a{bottom:836.317333pt;}
.yb2{bottom:836.596000pt;}
.yc{bottom:843.370533pt;}
.y10a{bottom:848.216000pt;}
.y12a{bottom:849.288000pt;}
.y69{bottom:852.257333pt;}
.yb1{bottom:853.068000pt;}
.y14{bottom:857.717333pt;}
.y109{bottom:864.156000pt;}
.y129{bottom:865.760000pt;}
.y68{bottom:868.197333pt;}
.yb0{bottom:869.538667pt;}
.y108{bottom:880.096000pt;}
.yb{bottom:881.770533pt;}
.y128{bottom:882.230667pt;}
.y67{bottom:884.138667pt;}
.yaf{bottom:886.010667pt;}
.yae{bottom:893.981333pt;}
.y107{bottom:896.036000pt;}
.y13{bottom:896.238667pt;}
.y127{bottom:898.702667pt;}
.y66{bottom:900.078667pt;}
.y106{bottom:911.976000pt;}
.y12{bottom:914.836000pt;}
.y65{bottom:916.018667pt;}
.yad{bottom:918.422667pt;}
.y126{bottom:921.624000pt;}
.ya{bottom:921.805333pt;}
.y105{bottom:927.916000pt;}
.yac{bottom:937.564000pt;}
.y64{bottom:946.716000pt;}
.h2{height:21.728250pt;}
.h24{height:21.933807pt;}
.h25{height:28.394810pt;}
.h9{height:29.244954pt;}
.h1{height:32.625000pt;}
.hb{height:36.556100pt;}
.h27{height:36.575024pt;}
.ha{height:36.768636pt;}
.hc{height:37.140573pt;}
.hd{height:39.850400pt;}
.h7{height:44.122658pt;}
.h26{height:44.353820pt;}
.h23{height:44.874530pt;}
.h12{height:45.092358pt;}
.he{height:45.097692pt;}
.h20{height:45.985820pt;}
.hf{height:48.241820pt;}
.h3{height:48.937500pt;}
.h10{height:48.980358pt;}
.h11{height:48.985692pt;}
.h16{height:50.385434pt;}
.h17{height:51.343025pt;}
.h18{height:51.366767pt;}
.h8{height:52.168418pt;}
.h19{height:52.527025pt;}
.h1c{height:53.039733pt;}
.h1d{height:58.177820pt;}
.h15{height:58.921692pt;}
.h1b{height:59.159153pt;}
.h14{height:59.903025pt;}
.h22{height:60.289820pt;}
.h13{height:65.172358pt;}
.h1f{height:68.433434pt;}
.h21{height:70.852358pt;}
.h1a{height:77.042688pt;}
.h1e{height:97.564100pt;}
.h4{height:97.875000pt;}
.h5{height:108.800000pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:691.866667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:57.512133pt;}
.xe{left:72.566667pt;}
.x2d{left:87.046667pt;}
.xf{left:92.492000pt;}
.x13{left:103.434667pt;}
.x2{left:106.890933pt;}
.xb{left:111.733333pt;}
.x22{left:113.376000pt;}
.x29{left:117.392000pt;}
.x24{left:120.574667pt;}
.x26{left:129.062667pt;}
.xc{left:131.938667pt;}
.x2c{left:141.158667pt;}
.x2b{left:153.274667pt;}
.x8{left:171.956000pt;}
.x10{left:173.185333pt;}
.x2e{left:181.102667pt;}
.x6{left:182.955067pt;}
.x3{left:184.340533pt;}
.x9{left:195.306667pt;}
.x27{left:196.785333pt;}
.xd{left:199.288000pt;}
.x4{left:201.891067pt;}
.x2a{left:209.521333pt;}
.x23{left:214.609333pt;}
.x7{left:219.656000pt;}
.x28{left:224.192000pt;}
.x5{left:279.340667pt;}
.x25{left:330.758667pt;}
.x12{left:420.284000pt;}
.x11{left:440.209333pt;}
.x34{left:442.413333pt;}
.x19{left:444.108000pt;}
.xa{left:450.365333pt;}
.x14{left:467.348000pt;}
.x15{left:486.489333pt;}
.x32{left:490.217333pt;}
.x33{left:496.301333pt;}
.x31{left:498.705333pt;}
.x30{left:504.417333pt;}
.x16{left:505.345333pt;}
.x1a{left:529.162667pt;}
.x1e{left:541.990667pt;}
.x1f{left:568.805333pt;}
.x17{left:573.973333pt;}
.x2f{left:589.637333pt;}
.x20{left:616.544000pt;}
.x1b{left:622.818667pt;}
.x21{left:636.797333pt;}
.x1c{left:670.557333pt;}
.x18{left:685.921333pt;}
.x1d{left:689.720000pt;}
}


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