
/* 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_f100ed002ef4.woff")format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_bd0f7194b932.woff")format("woff");}.ff2{font-family:ff2;line-height:0.967000;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_d49c1cf33550.woff")format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_49cd11b54279.woff")format("woff");}.ff4{font-family:ff4;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_5632d2bb6002.woff")format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_c50cf4cbd61d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_59f16758c0c3.woff")format("woff");}.ff7{font-family:ff7;line-height:0.963000;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_36b75bef6ff3.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_7aaa7158b8e2.woff")format("woff");}.ff9{font-family:ff9;line-height:0.845000;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_6d4ef98ca950.woff")format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_93d28a19aab8.woff")format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_574c793916f2.woff")format("woff");}.ffc{font-family:ffc;line-height:0.931000;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_6d4ef98ca950.woff")format("woff");}.ffd{font-family:ffd;line-height:0.957000;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_9d5a67c5b45d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.957000;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_58fe5c06984e.woff")format("woff");}.fff{font-family:fff;line-height:0.866000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_4e1bcfd9451a.woff")format("woff");}.ff10{font-family:ff10;line-height:3.016571;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_0df17e28c492.woff")format("woff");}.ff11{font-family:ff11;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.v2{vertical-align:-19.530000px;}
.ve{vertical-align:-12.492000px;}
.v4{vertical-align:-9.990000px;}
.v3{vertical-align:-8.964000px;}
.vc{vertical-align:-7.176000px;}
.v6{vertical-align:-5.976000px;}
.v9{vertical-align:-2.334000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:1.194000px;}
.vd{vertical-align:7.176000px;}
.v5{vertical-align:9.990000px;}
.va{vertical-align:12.486000px;}
.v7{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:25.074000px;}
.v8{vertical-align:54.054000px;}
.ls4{letter-spacing:-0.021949px;}
.ls3{letter-spacing:-0.010974px;}
.ls5{letter-spacing:-0.005487px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000538px;}
.ls14{letter-spacing:0.000668px;}
.ls20{letter-spacing:0.000691px;}
.ls28{letter-spacing:0.000916px;}
.ls2a{letter-spacing:0.000976px;}
.ls2b{letter-spacing:0.001194px;}
.lsa{letter-spacing:0.001721px;}
.ls24{letter-spacing:0.002437px;}
.ls8{letter-spacing:0.002891px;}
.ls23{letter-spacing:0.003145px;}
.ls1f{letter-spacing:0.004059px;}
.ls22{letter-spacing:0.004165px;}
.lse{letter-spacing:0.238307px;}
.ls10{letter-spacing:0.779995px;}
.ls9{letter-spacing:2.990074px;}
.ls1c{letter-spacing:6.215800px;}
.ls1a{letter-spacing:6.221800px;}
.ls13{letter-spacing:6.638276px;}
.ls12{letter-spacing:6.644276px;}
.ls2e{letter-spacing:7.769830px;}
.lsc{letter-spacing:8.967516px;}
.ls31{letter-spacing:9.967032px;}
.ls29{letter-spacing:10.890916px;}
.ls26{letter-spacing:11.633381px;}
.ls27{letter-spacing:11.637308px;}
.ls16{letter-spacing:11.692307px;}
.lsf{letter-spacing:13.279032px;}
.lsb{letter-spacing:13.285032px;}
.ls11{letter-spacing:13.522307px;}
.ls18{letter-spacing:13.540307px;}
.ls6{letter-spacing:13.568400px;}
.ls1d{letter-spacing:13.616496px;}
.ls1b{letter-spacing:14.624496px;}
.lsd{letter-spacing:14.903995px;}
.ls15{letter-spacing:17.406668px;}
.ls1e{letter-spacing:17.797932px;}
.ls1{letter-spacing:19.342512px;}
.ls32{letter-spacing:19.900307px;}
.ls17{letter-spacing:21.004512px;}
.ls2{letter-spacing:21.833501px;}
.ls2d{letter-spacing:21.839501px;}
.ls7{letter-spacing:23.056512px;}
.ls33{letter-spacing:23.200512px;}
.ls19{letter-spacing:33.473501px;}
.ls30{letter-spacing:105.683830px;}
.ls2f{letter-spacing:139.939200px;}
.ls25{letter-spacing:234.392437px;}
.ls2c{letter-spacing:314.816437px;}
.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;}
}
.ws61{word-spacing:-65.693384px;}
.ws81{word-spacing:-52.554839px;}
.ws60{word-spacing:-52.423201px;}
.ws5e{word-spacing:-42.082022px;}
.ws7f{word-spacing:-38.102110px;}
.ws41{word-spacing:-31.982438px;}
.ws7e{word-spacing:-24.407539px;}
.ws16{word-spacing:-15.232378px;}
.ws19{word-spacing:-13.688612px;}
.ws3a{word-spacing:-13.569061px;}
.ws82{word-spacing:-10.950917px;}
.ws40{word-spacing:-10.403378px;}
.ws7c{word-spacing:-8.213222px;}
.ws7d{word-spacing:-7.939384px;}
.ws1f{word-spacing:-4.423394px;}
.ws6f{word-spacing:-4.244068px;}
.ws92{word-spacing:-4.124516px;}
.ws3b{word-spacing:-4.064741px;}
.ws6b{word-spacing:-3.885414px;}
.wsf{word-spacing:-3.765863px;}
.ws10{word-spacing:-3.586536px;}
.ws53{word-spacing:-3.466985px;}
.wsae{word-spacing:-3.407209px;}
.wsaf{word-spacing:-3.287658px;}
.ws4{word-spacing:-3.227882px;}
.ws6a{word-spacing:-3.048556px;}
.ws68{word-spacing:-2.988780px;}
.ws98{word-spacing:-2.929004px;}
.ws33{word-spacing:-2.869229px;}
.ws3c{word-spacing:-2.689902px;}
.ws83{word-spacing:-2.677954px;}
.wsa1{word-spacing:-2.630126px;}
.ws5{word-spacing:-2.510575px;}
.ws49{word-spacing:-2.450800px;}
.ws54{word-spacing:-2.271473px;}
.ws6d{word-spacing:-2.211697px;}
.ws1b{word-spacing:-2.151922px;}
.ws76{word-spacing:-2.092146px;}
.wsb5{word-spacing:-2.056286px;}
.ws2c{word-spacing:-2.032370px;}
.ws2b{word-spacing:-1.972595px;}
.ws1c{word-spacing:-1.793268px;}
.wsa9{word-spacing:-1.733492px;}
.ws2d{word-spacing:-1.554166px;}
.ws72{word-spacing:-1.494390px;}
.ws59{word-spacing:-1.434614px;}
.ws88{word-spacing:-1.376525px;}
.wsb0{word-spacing:-1.315063px;}
.ws18{word-spacing:-1.195512px;}
.wsd{word-spacing:-1.135736px;}
.ws58{word-spacing:-1.075961px;}
.ws24{word-spacing:-1.016185px;}
.ws1d{word-spacing:-0.956410px;}
.ws1a{word-spacing:-0.896634px;}
.wsb{word-spacing:-0.836858px;}
.ws21{word-spacing:-0.777083px;}
.ws77{word-spacing:-0.717307px;}
.ws2f{word-spacing:-0.657532px;}
.wsaa{word-spacing:-0.597756px;}
.ws9b{word-spacing:-0.537980px;}
.ws45{word-spacing:-0.478205px;}
.ws78{word-spacing:-0.418429px;}
.ws9{word-spacing:-0.358654px;}
.ws86{word-spacing:-0.334744px;}
.ws85{word-spacing:-0.313320px;}
.ws17{word-spacing:-0.298878px;}
.ws84{word-spacing:-0.286924px;}
.ws5f{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.119551px;}
.ws32{word-spacing:-0.053798px;}
.ws27{word-spacing:-0.041843px;}
.ws2a{word-spacing:-0.005487px;}
.ws8a{word-spacing:-0.004966px;}
.ws56{word-spacing:-0.000971px;}
.ws1{word-spacing:0.000000px;}
.ws29{word-spacing:0.005487px;}
.ws28{word-spacing:0.010974px;}
.ws22{word-spacing:0.119551px;}
.ws9c{word-spacing:0.239102px;}
.ws9d{word-spacing:0.298878px;}
.ws55{word-spacing:0.358654px;}
.ws7b{word-spacing:0.427243px;}
.ws7a{word-spacing:0.430385px;}
.ws80{word-spacing:0.447601px;}
.wsb6{word-spacing:0.478205px;}
.ws4c{word-spacing:0.537980px;}
.ws11{word-spacing:0.597756px;}
.ws79{word-spacing:0.717307px;}
.ws39{word-spacing:0.777083px;}
.ws97{word-spacing:0.836858px;}
.ws38{word-spacing:0.896634px;}
.ws35{word-spacing:0.956410px;}
.ws42{word-spacing:1.016185px;}
.ws43{word-spacing:1.135736px;}
.ws25{word-spacing:1.195512px;}
.ws87{word-spacing:1.195515px;}
.ws7{word-spacing:1.255288px;}
.ws48{word-spacing:1.315063px;}
.ws1e{word-spacing:1.374839px;}
.ws5d{word-spacing:1.449169px;}
.ws20{word-spacing:1.494390px;}
.ws69{word-spacing:1.554166px;}
.ws5a{word-spacing:1.613941px;}
.ws64{word-spacing:1.673717px;}
.ws93{word-spacing:1.793268px;}
.ws44{word-spacing:1.972595px;}
.ws26{word-spacing:2.032370px;}
.ws95{word-spacing:2.092146px;}
.wsa5{word-spacing:2.151922px;}
.wse{word-spacing:2.211697px;}
.ws34{word-spacing:2.271473px;}
.ws70{word-spacing:2.331248px;}
.ws2e{word-spacing:2.450800px;}
.ws94{word-spacing:2.630126px;}
.ws99{word-spacing:2.689902px;}
.ws3f{word-spacing:2.749678px;}
.ws3d{word-spacing:2.809453px;}
.ws46{word-spacing:2.869229px;}
.ws6c{word-spacing:2.929004px;}
.ws65{word-spacing:3.048556px;}
.ws4a{word-spacing:3.108331px;}
.ws63{word-spacing:3.168107px;}
.wsb2{word-spacing:3.347434px;}
.wsc{word-spacing:3.407209px;}
.ws4f{word-spacing:3.466985px;}
.wsb1{word-spacing:3.526760px;}
.ws9e{word-spacing:3.586536px;}
.ws37{word-spacing:3.646312px;}
.wsac{word-spacing:3.706087px;}
.ws8c{word-spacing:3.729526px;}
.wsab{word-spacing:3.765863px;}
.ws67{word-spacing:3.825638px;}
.ws47{word-spacing:3.885414px;}
.wsa0{word-spacing:4.064741px;}
.ws36{word-spacing:4.184292px;}
.wsa{word-spacing:4.244068px;}
.ws6{word-spacing:4.303843px;}
.wsad{word-spacing:4.363619px;}
.ws96{word-spacing:4.423394px;}
.ws50{word-spacing:4.542946px;}
.wsa7{word-spacing:4.722272px;}
.ws3{word-spacing:4.782048px;}
.ws9f{word-spacing:4.841824px;}
.ws4b{word-spacing:4.961375px;}
.ws30{word-spacing:4.968871px;}
.ws8f{word-spacing:4.989344px;}
.ws62{word-spacing:5.021150px;}
.ws4d{word-spacing:5.080926px;}
.wsa6{word-spacing:5.200477px;}
.wsa2{word-spacing:5.320028px;}
.ws9a{word-spacing:5.499355px;}
.ws3e{word-spacing:5.618906px;}
.ws8{word-spacing:5.738458px;}
.ws5c{word-spacing:5.798233px;}
.ws57{word-spacing:5.865506px;}
.wsb7{word-spacing:5.917784px;}
.ws90{word-spacing:6.097111px;}
.wsb3{word-spacing:6.156887px;}
.ws66{word-spacing:6.216662px;}
.wsa8{word-spacing:6.395989px;}
.ws91{word-spacing:6.993745px;}
.ws89{word-spacing:7.314424px;}
.wsa4{word-spacing:7.950155px;}
.wsa3{word-spacing:8.069706px;}
.ws4e{word-spacing:8.189257px;}
.ws31{word-spacing:8.249033px;}
.ws52{word-spacing:8.607686px;}
.ws51{word-spacing:10.102076px;}
.ws2{word-spacing:11.058486px;}
.ws0{word-spacing:11.979110px;}
.ws5b{word-spacing:12.014896px;}
.ws6e{word-spacing:13.090856px;}
.ws12{word-spacing:17.161690px;}
.ws15{word-spacing:23.994086px;}
.ws13{word-spacing:24.035750px;}
.ws14{word-spacing:24.101683px;}
.wsb4{word-spacing:51.221899px;}
.ws8e{word-spacing:61.153499px;}
.ws8d{word-spacing:68.711227px;}
.ws73{word-spacing:74.663272px;}
.ws75{word-spacing:189.997499px;}
.ws71{word-spacing:194.357393px;}
.ws74{word-spacing:203.566950px;}
.ws8b{word-spacing:341.909272px;}
._4{margin-left:-8.607744px;}
._8{margin-left:-6.658954px;}
._9{margin-left:-5.021150px;}
._5{margin-left:-3.945190px;}
._3{margin-left:-2.474726px;}
._1{margin-left:-1.398758px;}
._2{width:1.183565px;}
._11{width:2.322228px;}
._1c{width:3.358751px;}
._1b{width:4.816037px;}
._0{width:5.953690px;}
._1d{width:7.988286px;}
._e{width:9.205507px;}
._d{width:10.568381px;}
._12{width:12.337700px;}
._10{width:13.772315px;}
._6{width:14.788500px;}
._7{width:16.486129px;}
._23{width:18.721746px;}
._f{width:20.084602px;}
._a{width:57.994675px;}
._c{width:59.775600px;}
._b{width:65.753400px;}
._1e{width:73.723705px;}
._13{width:74.956600px;}
._14{width:76.671263px;}
._1f{width:204.372768px;}
._19{width:215.344560px;}
._1a{width:217.136011px;}
._16{width:230.467397px;}
._17{width:239.729712px;}
._15{width:249.833136px;}
._22{width:256.440667px;}
._20{width:260.114299px;}
._18{width:263.402011px;}
._21{width:416.387136px;}
.fc2{color:rgb(4,6,6);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:34.669800px;}
.fs8{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fsb{font-size:42.448320px;}
.fsc{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fse{font-size:49.664277px;}
.fs4{font-size:53.798400px;}
.fsd{font-size:54.594621px;}
.fs6{font-size:54.871154px;}
.fs5{font-size:54.871680px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:65.753400px;}
.fs0{font-size:71.731200px;}
.fs2{font-size:83.686200px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y46{bottom:2.386126px;}
.yc2{bottom:2.792867px;}
.y8b{bottom:3.070623px;}
.y48{bottom:6.086293px;}
.y47{bottom:19.633675px;}
.y87{bottom:20.815036px;}
.y89{bottom:20.816743px;}
.y88{bottom:20.818449px;}
.yc0{bottom:22.392611px;}
.y22{bottom:26.406996px;}
.y23{bottom:27.501000px;}
.y25{bottom:29.572063px;}
.y43{bottom:33.180260px;}
.yb9{bottom:37.757258px;}
.y24{bottom:45.119954px;}
.y42{bottom:46.727641px;}
.y7e{bottom:63.100538px;}
.yba{bottom:82.165233px;}
.yc1{bottom:88.460438px;}
.y1a{bottom:89.005500px;}
.y19{bottom:105.444000px;}
.y52{bottom:105.556500px;}
.y7f{bottom:106.391374px;}
.y3d{bottom:110.439000px;}
.ye0{bottom:118.210500px;}
.y18{bottom:121.882500px;}
.ydf{bottom:122.454000px;}
.y51{bottom:123.489000px;}
.y90{bottom:123.714000px;}
.yfd{bottom:125.383500px;}
.ybb{bottom:126.568551px;}
.y6b{bottom:128.371500px;}
.y1f{bottom:136.113832px;}
.y44{bottom:137.206235px;}
.y4a{bottom:137.467027px;}
.y17{bottom:138.967500px;}
.yde{bottom:140.223000px;}
.y50{bottom:141.421500px;}
.y8f{bottom:141.646500px;}
.y80{bottom:149.682211px;}
.y3c{bottom:153.318000px;}
.ydd{bottom:155.167500px;}
.yb7{bottom:159.354000px;}
.y4f{bottom:159.355500px;}
.y8e{bottom:159.579000px;}
.ydc{bottom:167.460000px;}
.yfc{bottom:168.471000px;}
.ybc{bottom:170.974198px;}
.y3b{bottom:171.250500px;}
.y6a{bottom:171.459000px;}
.ydb{bottom:176.586000px;}
.y4e{bottom:177.288000px;}
.y7d{bottom:179.007000px;}
.y8a{bottom:183.366895px;}
.yfb{bottom:186.403500px;}
.y3a{bottom:189.183000px;}
.y69{bottom:189.391500px;}
.y81{bottom:192.973047px;}
.yb6{bottom:195.220500px;}
.y1d{bottom:201.776028px;}
.y1e{bottom:203.086089px;}
.yfa{bottom:204.336000px;}
.y39{bottom:207.115500px;}
.y68{bottom:207.325500px;}
.yb5{bottom:213.153000px;}
.ybd{bottom:215.323025px;}
.yf9{bottom:222.268500px;}
.y45{bottom:222.703519px;}
.y38{bottom:225.048000px;}
.y67{bottom:225.258000px;}
.yb4{bottom:231.085500px;}
.y4d{bottom:234.690000px;}
.y82{bottom:236.263884px;}
.yc6{bottom:238.741653px;}
.yf8{bottom:240.201000px;}
.yda{bottom:240.861000px;}
.y37{bottom:242.980500px;}
.y66{bottom:243.190500px;}
.yb3{bottom:249.018000px;}
.y4c{bottom:252.622500px;}
.yc5{bottom:254.104748px;}
.yd9{bottom:258.793500px;}
.ybe{bottom:259.727119px;}
.y36{bottom:260.914500px;}
.y65{bottom:261.123000px;}
.yb2{bottom:266.952000px;}
.yc4{bottom:269.468619px;}
.y4b{bottom:270.555000px;}
.yf7{bottom:274.572000px;}
.yd8{bottom:276.726000px;}
.y35{bottom:278.847000px;}
.y64{bottom:279.055500px;}
.y83{bottom:279.553867px;}
.yc3{bottom:284.831332px;}
.yb1{bottom:284.884500px;}
.y16{bottom:286.989000px;}
.y3e{bottom:294.465000px;}
.yd7{bottom:294.658500px;}
.y34{bottom:296.779500px;}
.y63{bottom:296.988000px;}
.yb0{bottom:302.817000px;}
.ybf{bottom:304.135094px;}
.y15{bottom:304.923000px;}
.y20{bottom:312.298566px;}
.yd6{bottom:312.591000px;}
.y33{bottom:314.712000px;}
.y62{bottom:314.922000px;}
.yaf{bottom:320.749500px;}
.y84{bottom:322.845216px;}
.y14{bottom:322.855500px;}
.yd5{bottom:330.525000px;}
.y21{bottom:330.718131px;}
.y32{bottom:332.644500px;}
.y61{bottom:332.854500px;}
.yae{bottom:338.682000px;}
.y13{bottom:340.788000px;}
.yd4{bottom:348.457500px;}
.y31{bottom:350.578500px;}
.y60{bottom:350.787000px;}
.yad{bottom:356.614500px;}
.y12{bottom:358.720500px;}
.y85{bottom:366.134857px;}
.yd3{bottom:366.390000px;}
.y30{bottom:368.511000px;}
.y8d{bottom:372.472221px;}
.yac{bottom:374.548500px;}
.y11{bottom:376.653000px;}
.y5f{bottom:385.158000px;}
.y2f{bottom:386.443500px;}
.y8c{bottom:391.920814px;}
.yab{bottom:392.481000px;}
.y10{bottom:394.587000px;}
.y2e{bottom:404.376000px;}
.y86{bottom:409.426035px;}
.yaa{bottom:410.413500px;}
.yf{bottom:412.519500px;}
.yd2{bottom:415.009500px;}
.y2d{bottom:422.308500px;}
.y5e{bottom:423.115500px;}
.ya9{bottom:428.346000px;}
.ye{bottom:430.452000px;}
.yd1{bottom:432.943500px;}
.y2c{bottom:440.241000px;}
.y5d{bottom:441.048000px;}
.ya8{bottom:446.278500px;}
.yd{bottom:448.384500px;}
.y5c{bottom:458.980500px;}
.yd0{bottom:461.553000px;}
.ya7{bottom:464.211000px;}
.yc{bottom:466.317000px;}
.y41{bottom:467.252403px;}
.y2b{bottom:474.612000px;}
.y5b{bottom:476.914500px;}
.ycf{bottom:480.232500px;}
.ya6{bottom:482.145000px;}
.yb{bottom:484.249500px;}
.y5a{bottom:494.847000px;}
.yce{bottom:498.913500px;}
.ya5{bottom:500.077500px;}
.ya{bottom:502.183500px;}
.y2a{bottom:508.984500px;}
.y59{bottom:512.779500px;}
.ycd{bottom:517.593000px;}
.ya4{bottom:518.010000px;}
.y9{bottom:520.116000px;}
.y58{bottom:530.712000px;}
.ya3{bottom:535.942500px;}
.ycc{bottom:536.272500px;}
.y8{bottom:538.048500px;}
.y29{bottom:547.905000px;}
.y57{bottom:548.644500px;}
.ya2{bottom:553.875000px;}
.ycb{bottom:554.953500px;}
.y7{bottom:555.981000px;}
.y28{bottom:565.837500px;}
.ya1{bottom:571.807500px;}
.y6{bottom:573.913500px;}
.y27{bottom:583.770000px;}
.ya0{bottom:589.741500px;}
.y5{bottom:591.846000px;}
.y56{bottom:594.859500px;}
.y49{bottom:601.567244px;}
.y26{bottom:601.702500px;}
.y3f{bottom:602.072512px;}
.yca{bottom:606.696000px;}
.y9f{bottom:607.674000px;}
.y4{bottom:609.780000px;}
.y55{bottom:612.792000px;}
.y54{bottom:613.273500px;}
.yc9{bottom:624.628500px;}
.y9e{bottom:625.606500px;}
.y1c{bottom:628.602000px;}
.y53{bottom:630.724500px;}
.y7c{bottom:634.990500px;}
.yc8{bottom:642.561000px;}
.y9d{bottom:643.539000px;}
.y7b{bottom:652.923000px;}
.yc7{bottom:660.495000px;}
.y9c{bottom:661.471500px;}
.y7a{bottom:670.855500px;}
.yf6{bottom:679.404000px;}
.y9b{bottom:679.405500px;}
.yb8{bottom:684.405000px;}
.y40{bottom:687.571918px;}
.y79{bottom:688.788000px;}
.y9a{bottom:697.338000px;}
.y78{bottom:706.722000px;}
.yec{bottom:715.270500px;}
.y77{bottom:724.654500px;}
.y99{bottom:731.709000px;}
.yf5{bottom:733.203000px;}
.y76{bottom:742.587000px;}
.yeb{bottom:749.641500px;}
.yf4{bottom:751.135500px;}
.y75{bottom:760.519500px;}
.yf3{bottom:769.068000px;}
.y74{bottom:778.452000px;}
.y98{bottom:780.576000px;}
.yf2{bottom:787.000500px;}
.y73{bottom:796.386000px;}
.yf1{bottom:804.934500px;}
.yea{bottom:809.236500px;}
.y97{bottom:810.612000px;}
.y72{bottom:814.318500px;}
.y3{bottom:819.049500px;}
.yf0{bottom:822.867000px;}
.ye9{bottom:827.169000px;}
.y96{bottom:830.040000px;}
.y71{bottom:832.251000px;}
.yef{bottom:840.799500px;}
.ye8{bottom:845.103000px;}
.y95{bottom:846.627000px;}
.yee{bottom:858.732000px;}
.y2{bottom:861.423000px;}
.y94{bottom:866.055000px;}
.y70{bottom:866.622000px;}
.ye7{bottom:873.712500px;}
.yed{bottom:876.664500px;}
.ye6{bottom:892.392000px;}
.y93{bottom:894.598500px;}
.y6f{bottom:900.993000px;}
.ye5{bottom:911.073000px;}
.y92{bottom:912.531000px;}
.ye4{bottom:929.752500px;}
.y91{bottom:930.463500px;}
.y6e{bottom:948.396000px;}
.ye3{bottom:948.432000px;}
.y1{bottom:952.879500px;}
.y6d{bottom:966.328500px;}
.ye2{bottom:967.113000px;}
.y6c{bottom:984.261000px;}
.ye1{bottom:985.794000px;}
.y1b{bottom:1028.047500px;}
.he{height:27.508915px;}
.h10{height:31.284412px;}
.h15{height:36.602572px;}
.h19{height:36.678400px;}
.h7{height:37.174694px;}
.h5{height:38.412058px;}
.h13{height:40.236236px;}
.h6{height:40.348800px;}
.ha{height:40.440040px;}
.h9{height:40.440428px;}
.hc{height:42.620003px;}
.h16{height:42.679778px;}
.h4{height:44.831700px;}
.h1d{height:46.025700px;}
.hb{height:47.145188px;}
.h17{height:48.007200px;}
.h11{height:48.595200px;}
.hd{height:48.601200px;}
.h1{height:49.566259px;}
.h1b{height:51.165729px;}
.h18{height:53.652400px;}
.h1c{height:54.132734px;}
.h1a{height:56.223339px;}
.h3{height:62.764650px;}
.h2{height:77.146906px;}
.h14{height:314.800615px;}
.h8{height:370.605041px;}
.h12{height:421.149876px;}
.hf{height:704.742927px;}
.h0{height:1080.000000px;}
.w1{width:462.952364px;}
.w2{width:474.516504px;}
.w4{width:572.848133px;}
.w3{width:572.876893px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x37{left:10.665521px;}
.x2f{left:11.723841px;}
.x36{left:14.851406px;}
.x23{left:16.989302px;}
.x35{left:21.754862px;}
.x22{left:24.578469px;}
.x34{left:42.465078px;}
.x1a{left:45.834900px;}
.x21{left:47.344264px;}
.x1b{left:49.848389px;}
.x24{left:69.570011px;}
.x1c{left:78.945120px;}
.x4{left:84.669000px;}
.x20{left:87.559500px;}
.x7{left:92.749500px;}
.x3c{left:94.381500px;}
.x3d{left:95.698500px;}
.x5{left:97.425000px;}
.x40{left:102.463500px;}
.x11{left:104.704500px;}
.x3f{left:105.928500px;}
.x6{left:107.085000px;}
.x1d{left:109.015500px;}
.xc{left:111.582933px;}
.x32{left:113.689500px;}
.xf{left:116.769850px;}
.x25{left:119.622022px;}
.x15{left:136.743000px;}
.x8{left:150.612000px;}
.x45{left:157.759500px;}
.x26{left:169.579132px;}
.xa{left:183.184988px;}
.x2{left:185.179500px;}
.x13{left:200.175000px;}
.x19{left:208.512780px;}
.x27{left:219.632337px;}
.x30{left:254.453784px;}
.x41{left:265.213500px;}
.x28{left:269.684007px;}
.x33{left:270.822000px;}
.x17{left:278.446388px;}
.x12{left:281.635500px;}
.xd{left:288.863386px;}
.xe{left:290.554119px;}
.x1e{left:298.917000px;}
.x3{left:300.799500px;}
.x1f{left:306.892500px;}
.x46{left:312.849000px;}
.x1{left:318.315000px;}
.x29{left:319.737383px;}
.x9{left:321.198238px;}
.xb{left:361.342359px;}
.x39{left:368.167808px;}
.x2a{left:369.693469px;}
.x3b{left:372.986628px;}
.x42{left:391.926000px;}
.x3e{left:397.941000px;}
.x38{left:411.672733px;}
.x18{left:413.906936px;}
.x3a{left:416.491075px;}
.x2b{left:419.745138px;}
.x31{left:421.068379px;}
.x10{left:423.307575px;}
.x16{left:441.124268px;}
.x14{left:449.722500px;}
.x2c{left:469.798515px;}
.x43{left:475.753500px;}
.x44{left:504.147000px;}
.x2d{left:519.752893px;}
.x2e{left:569.806270px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.ve{vertical-align:-11.104000pt;}
.v4{vertical-align:-8.880000pt;}
.v3{vertical-align:-7.968000pt;}
.vc{vertical-align:-6.378667pt;}
.v6{vertical-align:-5.312000pt;}
.v9{vertical-align:-2.074667pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.061333pt;}
.vd{vertical-align:6.378667pt;}
.v5{vertical-align:8.880000pt;}
.va{vertical-align:11.098667pt;}
.v7{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:22.288000pt;}
.v8{vertical-align:48.048000pt;}
.ls4{letter-spacing:-0.019510pt;}
.ls3{letter-spacing:-0.009755pt;}
.ls5{letter-spacing:-0.004877pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000478pt;}
.ls14{letter-spacing:0.000594pt;}
.ls20{letter-spacing:0.000614pt;}
.ls28{letter-spacing:0.000814pt;}
.ls2a{letter-spacing:0.000868pt;}
.ls2b{letter-spacing:0.001061pt;}
.lsa{letter-spacing:0.001530pt;}
.ls24{letter-spacing:0.002166pt;}
.ls8{letter-spacing:0.002570pt;}
.ls23{letter-spacing:0.002795pt;}
.ls1f{letter-spacing:0.003608pt;}
.ls22{letter-spacing:0.003702pt;}
.lse{letter-spacing:0.211828pt;}
.ls10{letter-spacing:0.693329pt;}
.ls9{letter-spacing:2.657843pt;}
.ls1c{letter-spacing:5.525155pt;}
.ls1a{letter-spacing:5.530489pt;}
.ls13{letter-spacing:5.900690pt;}
.ls12{letter-spacing:5.906023pt;}
.ls2e{letter-spacing:6.906515pt;}
.lsc{letter-spacing:7.971125pt;}
.ls31{letter-spacing:8.859584pt;}
.ls29{letter-spacing:9.680814pt;}
.ls26{letter-spacing:10.340783pt;}
.ls27{letter-spacing:10.344274pt;}
.ls16{letter-spacing:10.393162pt;}
.lsf{letter-spacing:11.803584pt;}
.lsb{letter-spacing:11.808917pt;}
.ls11{letter-spacing:12.019828pt;}
.ls18{letter-spacing:12.035828pt;}
.ls6{letter-spacing:12.060800pt;}
.ls1d{letter-spacing:12.103552pt;}
.ls1b{letter-spacing:12.999552pt;}
.lsd{letter-spacing:13.247996pt;}
.ls15{letter-spacing:15.472594pt;}
.ls1e{letter-spacing:15.820384pt;}
.ls1{letter-spacing:17.193344pt;}
.ls32{letter-spacing:17.689162pt;}
.ls17{letter-spacing:18.670677pt;}
.ls2{letter-spacing:19.407556pt;}
.ls2d{letter-spacing:19.412890pt;}
.ls7{letter-spacing:20.494677pt;}
.ls33{letter-spacing:20.622677pt;}
.ls19{letter-spacing:29.754223pt;}
.ls30{letter-spacing:93.941182pt;}
.ls2f{letter-spacing:124.390400pt;}
.ls25{letter-spacing:208.348833pt;}
.ls2c{letter-spacing:279.836833pt;}
.ws61{word-spacing:-58.394119pt;}
.ws81{word-spacing:-46.715413pt;}
.ws60{word-spacing:-46.598401pt;}
.ws5e{word-spacing:-37.406242pt;}
.ws7f{word-spacing:-33.868542pt;}
.ws41{word-spacing:-28.428834pt;}
.ws7e{word-spacing:-21.695590pt;}
.ws16{word-spacing:-13.539892pt;}
.ws19{word-spacing:-12.167655pt;}
.ws3a{word-spacing:-12.061388pt;}
.ws82{word-spacing:-9.734149pt;}
.ws40{word-spacing:-9.247447pt;}
.ws7c{word-spacing:-7.300642pt;}
.ws7d{word-spacing:-7.057230pt;}
.ws1f{word-spacing:-3.931906pt;}
.ws6f{word-spacing:-3.772505pt;}
.ws92{word-spacing:-3.666237pt;}
.ws3b{word-spacing:-3.613103pt;}
.ws6b{word-spacing:-3.453701pt;}
.wsf{word-spacing:-3.347434pt;}
.ws10{word-spacing:-3.188032pt;}
.ws53{word-spacing:-3.081764pt;}
.wsae{word-spacing:-3.028630pt;}
.wsaf{word-spacing:-2.922363pt;}
.ws4{word-spacing:-2.869229pt;}
.ws6a{word-spacing:-2.709827pt;}
.ws68{word-spacing:-2.656693pt;}
.ws98{word-spacing:-2.603559pt;}
.ws33{word-spacing:-2.550426pt;}
.ws3c{word-spacing:-2.391024pt;}
.ws83{word-spacing:-2.380403pt;}
.wsa1{word-spacing:-2.337890pt;}
.ws5{word-spacing:-2.231622pt;}
.ws49{word-spacing:-2.178489pt;}
.ws54{word-spacing:-2.019087pt;}
.ws6d{word-spacing:-1.965953pt;}
.ws1b{word-spacing:-1.912819pt;}
.ws76{word-spacing:-1.859685pt;}
.wsb5{word-spacing:-1.827810pt;}
.ws2c{word-spacing:-1.806551pt;}
.ws2b{word-spacing:-1.753418pt;}
.ws1c{word-spacing:-1.594016pt;}
.wsa9{word-spacing:-1.540882pt;}
.ws2d{word-spacing:-1.381481pt;}
.ws72{word-spacing:-1.328347pt;}
.ws59{word-spacing:-1.275213pt;}
.ws88{word-spacing:-1.223578pt;}
.wsb0{word-spacing:-1.168945pt;}
.ws18{word-spacing:-1.062677pt;}
.wsd{word-spacing:-1.009543pt;}
.ws58{word-spacing:-0.956410pt;}
.ws24{word-spacing:-0.903276pt;}
.ws1d{word-spacing:-0.850142pt;}
.ws1a{word-spacing:-0.797008pt;}
.wsb{word-spacing:-0.743874pt;}
.ws21{word-spacing:-0.690740pt;}
.ws77{word-spacing:-0.637606pt;}
.ws2f{word-spacing:-0.584473pt;}
.wsaa{word-spacing:-0.531339pt;}
.ws9b{word-spacing:-0.478205pt;}
.ws45{word-spacing:-0.425071pt;}
.ws78{word-spacing:-0.371937pt;}
.ws9{word-spacing:-0.318803pt;}
.ws86{word-spacing:-0.297550pt;}
.ws85{word-spacing:-0.278507pt;}
.ws17{word-spacing:-0.265669pt;}
.ws84{word-spacing:-0.255043pt;}
.ws5f{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.106268pt;}
.ws32{word-spacing:-0.047821pt;}
.ws27{word-spacing:-0.037194pt;}
.ws2a{word-spacing:-0.004877pt;}
.ws8a{word-spacing:-0.004415pt;}
.ws56{word-spacing:-0.000863pt;}
.ws1{word-spacing:0.000000pt;}
.ws29{word-spacing:0.004877pt;}
.ws28{word-spacing:0.009755pt;}
.ws22{word-spacing:0.106268pt;}
.ws9c{word-spacing:0.212535pt;}
.ws9d{word-spacing:0.265669pt;}
.ws55{word-spacing:0.318803pt;}
.ws7b{word-spacing:0.379772pt;}
.ws7a{word-spacing:0.382565pt;}
.ws80{word-spacing:0.397867pt;}
.wsb6{word-spacing:0.425071pt;}
.ws4c{word-spacing:0.478205pt;}
.ws11{word-spacing:0.531339pt;}
.ws79{word-spacing:0.637606pt;}
.ws39{word-spacing:0.690740pt;}
.ws97{word-spacing:0.743874pt;}
.ws38{word-spacing:0.797008pt;}
.ws35{word-spacing:0.850142pt;}
.ws42{word-spacing:0.903276pt;}
.ws43{word-spacing:1.009543pt;}
.ws25{word-spacing:1.062677pt;}
.ws87{word-spacing:1.062680pt;}
.ws7{word-spacing:1.115811pt;}
.ws48{word-spacing:1.168945pt;}
.ws1e{word-spacing:1.222079pt;}
.ws5d{word-spacing:1.288150pt;}
.ws20{word-spacing:1.328347pt;}
.ws69{word-spacing:1.381481pt;}
.ws5a{word-spacing:1.434614pt;}
.ws64{word-spacing:1.487748pt;}
.ws93{word-spacing:1.594016pt;}
.ws44{word-spacing:1.753418pt;}
.ws26{word-spacing:1.806551pt;}
.ws95{word-spacing:1.859685pt;}
.wsa5{word-spacing:1.912819pt;}
.wse{word-spacing:1.965953pt;}
.ws34{word-spacing:2.019087pt;}
.ws70{word-spacing:2.072221pt;}
.ws2e{word-spacing:2.178489pt;}
.ws94{word-spacing:2.337890pt;}
.ws99{word-spacing:2.391024pt;}
.ws3f{word-spacing:2.444158pt;}
.ws3d{word-spacing:2.497292pt;}
.ws46{word-spacing:2.550426pt;}
.ws6c{word-spacing:2.603559pt;}
.ws65{word-spacing:2.709827pt;}
.ws4a{word-spacing:2.762961pt;}
.ws63{word-spacing:2.816095pt;}
.wsb2{word-spacing:2.975497pt;}
.wsc{word-spacing:3.028630pt;}
.ws4f{word-spacing:3.081764pt;}
.wsb1{word-spacing:3.134898pt;}
.ws9e{word-spacing:3.188032pt;}
.ws37{word-spacing:3.241166pt;}
.wsac{word-spacing:3.294300pt;}
.ws8c{word-spacing:3.315134pt;}
.wsab{word-spacing:3.347434pt;}
.ws67{word-spacing:3.400567pt;}
.ws47{word-spacing:3.453701pt;}
.wsa0{word-spacing:3.613103pt;}
.ws36{word-spacing:3.719371pt;}
.wsa{word-spacing:3.772505pt;}
.ws6{word-spacing:3.825638pt;}
.wsad{word-spacing:3.878772pt;}
.ws96{word-spacing:3.931906pt;}
.ws50{word-spacing:4.038174pt;}
.wsa7{word-spacing:4.197575pt;}
.ws3{word-spacing:4.250709pt;}
.ws9f{word-spacing:4.303843pt;}
.ws4b{word-spacing:4.410111pt;}
.ws30{word-spacing:4.416774pt;}
.ws8f{word-spacing:4.434973pt;}
.ws62{word-spacing:4.463245pt;}
.ws4d{word-spacing:4.516379pt;}
.wsa6{word-spacing:4.622646pt;}
.wsa2{word-spacing:4.728914pt;}
.ws9a{word-spacing:4.888316pt;}
.ws3e{word-spacing:4.994583pt;}
.ws8{word-spacing:5.100851pt;}
.ws5c{word-spacing:5.153985pt;}
.ws57{word-spacing:5.213783pt;}
.wsb7{word-spacing:5.260253pt;}
.ws90{word-spacing:5.419654pt;}
.wsb3{word-spacing:5.472788pt;}
.ws66{word-spacing:5.525922pt;}
.wsa8{word-spacing:5.685324pt;}
.ws91{word-spacing:6.216662pt;}
.ws89{word-spacing:6.501710pt;}
.wsa4{word-spacing:7.066804pt;}
.wsa3{word-spacing:7.173072pt;}
.ws4e{word-spacing:7.279340pt;}
.ws31{word-spacing:7.332474pt;}
.ws52{word-spacing:7.651277pt;}
.ws51{word-spacing:8.979623pt;}
.ws2{word-spacing:9.829765pt;}
.ws0{word-spacing:10.648098pt;}
.ws5b{word-spacing:10.679907pt;}
.ws6e{word-spacing:11.636317pt;}
.ws12{word-spacing:15.254835pt;}
.ws15{word-spacing:21.328077pt;}
.ws13{word-spacing:21.365111pt;}
.ws14{word-spacing:21.423718pt;}
.wsb4{word-spacing:45.530577pt;}
.ws8e{word-spacing:54.358666pt;}
.ws8d{word-spacing:61.076646pt;}
.ws73{word-spacing:66.367353pt;}
.ws75{word-spacing:168.886666pt;}
.ws71{word-spacing:172.762127pt;}
.ws74{word-spacing:180.948400pt;}
.ws8b{word-spacing:303.919353pt;}
._4{margin-left:-7.651328pt;}
._8{margin-left:-5.919070pt;}
._9{margin-left:-4.463245pt;}
._5{margin-left:-3.506835pt;}
._3{margin-left:-2.199757pt;}
._1{margin-left:-1.243341pt;}
._2{width:1.052058pt;}
._11{width:2.064203pt;}
._1c{width:2.985557pt;}
._1b{width:4.280922pt;}
._0{width:5.292169pt;}
._1d{width:7.100699pt;}
._e{width:8.182673pt;}
._d{width:9.394116pt;}
._12{width:10.966845pt;}
._10{width:12.242058pt;}
._6{width:13.145333pt;}
._7{width:14.654337pt;}
._23{width:16.641552pt;}
._f{width:17.852979pt;}
._a{width:51.550822pt;}
._c{width:53.133867pt;}
._b{width:58.447467pt;}
._1e{width:65.532182pt;}
._13{width:66.628089pt;}
._14{width:68.152234pt;}
._1f{width:181.664683pt;}
._19{width:191.417387pt;}
._1a{width:193.009788pt;}
._16{width:204.859908pt;}
._17{width:213.093077pt;}
._15{width:222.073899pt;}
._22{width:227.947260pt;}
._20{width:231.212710pt;}
._18{width:234.135121pt;}
._21{width:370.121899pt;}
.fsf{font-size:30.817600pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fsb{font-size:37.731840pt;}
.fsc{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fse{font-size:44.146024pt;}
.fs4{font-size:47.820800pt;}
.fsd{font-size:48.528552pt;}
.fs6{font-size:48.774359pt;}
.fs5{font-size:48.774827pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:58.447467pt;}
.fs0{font-size:63.761067pt;}
.fs2{font-size:74.387733pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.121001pt;}
.yc2{bottom:2.482548pt;}
.y8b{bottom:2.729443pt;}
.y48{bottom:5.410038pt;}
.y47{bottom:17.452155pt;}
.y87{bottom:18.502254pt;}
.y89{bottom:18.503771pt;}
.y88{bottom:18.505288pt;}
.yc0{bottom:19.904543pt;}
.y22{bottom:23.472885pt;}
.y23{bottom:24.445333pt;}
.y25{bottom:26.286278pt;}
.y43{bottom:29.493564pt;}
.yb9{bottom:33.562007pt;}
.y24{bottom:40.106625pt;}
.y42{bottom:41.535681pt;}
.y7e{bottom:56.089367pt;}
.yba{bottom:73.035763pt;}
.yc1{bottom:78.631501pt;}
.y1a{bottom:79.116000pt;}
.y19{bottom:93.728000pt;}
.y52{bottom:93.828000pt;}
.y7f{bottom:94.570110pt;}
.y3d{bottom:98.168000pt;}
.ye0{bottom:105.076000pt;}
.y18{bottom:108.340000pt;}
.ydf{bottom:108.848000pt;}
.y51{bottom:109.768000pt;}
.y90{bottom:109.968000pt;}
.yfd{bottom:111.452000pt;}
.ybb{bottom:112.505379pt;}
.y6b{bottom:114.108000pt;}
.y1f{bottom:120.990073pt;}
.y44{bottom:121.961098pt;}
.y4a{bottom:122.192913pt;}
.y17{bottom:123.526667pt;}
.yde{bottom:124.642667pt;}
.y50{bottom:125.708000pt;}
.y8f{bottom:125.908000pt;}
.y80{bottom:133.050854pt;}
.y3c{bottom:136.282667pt;}
.ydd{bottom:137.926667pt;}
.yb7{bottom:141.648000pt;}
.y4f{bottom:141.649333pt;}
.y8e{bottom:141.848000pt;}
.ydc{bottom:148.853333pt;}
.yfc{bottom:149.752000pt;}
.ybc{bottom:151.977065pt;}
.y3b{bottom:152.222667pt;}
.y6a{bottom:152.408000pt;}
.ydb{bottom:156.965333pt;}
.y4e{bottom:157.589333pt;}
.y7d{bottom:159.117333pt;}
.y8a{bottom:162.992796pt;}
.yfb{bottom:165.692000pt;}
.y3a{bottom:168.162667pt;}
.y69{bottom:168.348000pt;}
.y81{bottom:171.531598pt;}
.yb6{bottom:173.529333pt;}
.y1d{bottom:179.356469pt;}
.y1e{bottom:180.520968pt;}
.yfa{bottom:181.632000pt;}
.y39{bottom:184.102667pt;}
.y68{bottom:184.289333pt;}
.yb5{bottom:189.469333pt;}
.ybd{bottom:191.398244pt;}
.yf9{bottom:197.572000pt;}
.y45{bottom:197.958684pt;}
.y38{bottom:200.042667pt;}
.y67{bottom:200.229333pt;}
.yb4{bottom:205.409333pt;}
.y4d{bottom:208.613333pt;}
.y82{bottom:210.012341pt;}
.yc6{bottom:212.214803pt;}
.yf8{bottom:213.512000pt;}
.yda{bottom:214.098667pt;}
.y37{bottom:215.982667pt;}
.y66{bottom:216.169333pt;}
.yb3{bottom:221.349333pt;}
.y4c{bottom:224.553333pt;}
.yc5{bottom:225.870887pt;}
.yd9{bottom:230.038667pt;}
.ybe{bottom:230.868550pt;}
.y36{bottom:231.924000pt;}
.y65{bottom:232.109333pt;}
.yb2{bottom:237.290667pt;}
.yc4{bottom:239.527661pt;}
.y4b{bottom:240.493333pt;}
.yf7{bottom:244.064000pt;}
.yd8{bottom:245.978667pt;}
.y35{bottom:247.864000pt;}
.y64{bottom:248.049333pt;}
.y83{bottom:248.492326pt;}
.yc3{bottom:253.183406pt;}
.yb1{bottom:253.230667pt;}
.y16{bottom:255.101333pt;}
.y3e{bottom:261.746667pt;}
.yd7{bottom:261.918667pt;}
.y34{bottom:263.804000pt;}
.y63{bottom:263.989333pt;}
.yb0{bottom:269.170667pt;}
.ybf{bottom:270.342306pt;}
.y15{bottom:271.042667pt;}
.y20{bottom:277.598725pt;}
.yd6{bottom:277.858667pt;}
.y33{bottom:279.744000pt;}
.y62{bottom:279.930667pt;}
.yaf{bottom:285.110667pt;}
.y84{bottom:286.973525pt;}
.y14{bottom:286.982667pt;}
.yd5{bottom:293.800000pt;}
.y21{bottom:293.971672pt;}
.y32{bottom:295.684000pt;}
.y61{bottom:295.870667pt;}
.yae{bottom:301.050667pt;}
.y13{bottom:302.922667pt;}
.yd4{bottom:309.740000pt;}
.y31{bottom:311.625333pt;}
.y60{bottom:311.810667pt;}
.yad{bottom:316.990667pt;}
.y12{bottom:318.862667pt;}
.y85{bottom:325.453207pt;}
.yd3{bottom:325.680000pt;}
.y30{bottom:327.565333pt;}
.y8d{bottom:331.086418pt;}
.yac{bottom:332.932000pt;}
.y11{bottom:334.802667pt;}
.y5f{bottom:342.362667pt;}
.y2f{bottom:343.505333pt;}
.y8c{bottom:348.374057pt;}
.yab{bottom:348.872000pt;}
.y10{bottom:350.744000pt;}
.y2e{bottom:359.445333pt;}
.y86{bottom:363.934254pt;}
.yaa{bottom:364.812000pt;}
.yf{bottom:366.684000pt;}
.yd2{bottom:368.897333pt;}
.y2d{bottom:375.385333pt;}
.y5e{bottom:376.102667pt;}
.ya9{bottom:380.752000pt;}
.ye{bottom:382.624000pt;}
.yd1{bottom:384.838667pt;}
.y2c{bottom:391.325333pt;}
.y5d{bottom:392.042667pt;}
.ya8{bottom:396.692000pt;}
.yd{bottom:398.564000pt;}
.y5c{bottom:407.982667pt;}
.yd0{bottom:410.269333pt;}
.ya7{bottom:412.632000pt;}
.yc{bottom:414.504000pt;}
.y41{bottom:415.335469pt;}
.y2b{bottom:421.877333pt;}
.y5b{bottom:423.924000pt;}
.ycf{bottom:426.873333pt;}
.ya6{bottom:428.573333pt;}
.yb{bottom:430.444000pt;}
.y5a{bottom:439.864000pt;}
.yce{bottom:443.478667pt;}
.ya5{bottom:444.513333pt;}
.ya{bottom:446.385333pt;}
.y2a{bottom:452.430667pt;}
.y59{bottom:455.804000pt;}
.ycd{bottom:460.082667pt;}
.ya4{bottom:460.453333pt;}
.y9{bottom:462.325333pt;}
.y58{bottom:471.744000pt;}
.ya3{bottom:476.393333pt;}
.ycc{bottom:476.686667pt;}
.y8{bottom:478.265333pt;}
.y29{bottom:487.026667pt;}
.y57{bottom:487.684000pt;}
.ya2{bottom:492.333333pt;}
.ycb{bottom:493.292000pt;}
.y7{bottom:494.205333pt;}
.y28{bottom:502.966667pt;}
.ya1{bottom:508.273333pt;}
.y6{bottom:510.145333pt;}
.y27{bottom:518.906667pt;}
.ya0{bottom:524.214667pt;}
.y5{bottom:526.085333pt;}
.y56{bottom:528.764000pt;}
.y49{bottom:534.726439pt;}
.y26{bottom:534.846667pt;}
.y3f{bottom:535.175566pt;}
.yca{bottom:539.285333pt;}
.y9f{bottom:540.154667pt;}
.y4{bottom:542.026667pt;}
.y55{bottom:544.704000pt;}
.y54{bottom:545.132000pt;}
.yc9{bottom:555.225333pt;}
.y9e{bottom:556.094667pt;}
.y1c{bottom:558.757333pt;}
.y53{bottom:560.644000pt;}
.y7c{bottom:564.436000pt;}
.yc8{bottom:571.165333pt;}
.y9d{bottom:572.034667pt;}
.y7b{bottom:580.376000pt;}
.yc7{bottom:587.106667pt;}
.y9c{bottom:587.974667pt;}
.y7a{bottom:596.316000pt;}
.yf6{bottom:603.914667pt;}
.y9b{bottom:603.916000pt;}
.yb8{bottom:608.360000pt;}
.y40{bottom:611.175038pt;}
.y79{bottom:612.256000pt;}
.y9a{bottom:619.856000pt;}
.y78{bottom:628.197333pt;}
.yec{bottom:635.796000pt;}
.y77{bottom:644.137333pt;}
.y99{bottom:650.408000pt;}
.yf5{bottom:651.736000pt;}
.y76{bottom:660.077333pt;}
.yeb{bottom:666.348000pt;}
.yf4{bottom:667.676000pt;}
.y75{bottom:676.017333pt;}
.yf3{bottom:683.616000pt;}
.y74{bottom:691.957333pt;}
.y98{bottom:693.845333pt;}
.yf2{bottom:699.556000pt;}
.y73{bottom:707.898667pt;}
.yf1{bottom:715.497333pt;}
.yea{bottom:719.321333pt;}
.y97{bottom:720.544000pt;}
.y72{bottom:723.838667pt;}
.y3{bottom:728.044000pt;}
.yf0{bottom:731.437333pt;}
.ye9{bottom:735.261333pt;}
.y96{bottom:737.813333pt;}
.y71{bottom:739.778667pt;}
.yef{bottom:747.377333pt;}
.ye8{bottom:751.202667pt;}
.y95{bottom:752.557333pt;}
.yee{bottom:763.317333pt;}
.y2{bottom:765.709333pt;}
.y94{bottom:769.826667pt;}
.y70{bottom:770.330667pt;}
.ye7{bottom:776.633333pt;}
.yed{bottom:779.257333pt;}
.ye6{bottom:793.237333pt;}
.y93{bottom:795.198667pt;}
.y6f{bottom:800.882667pt;}
.ye5{bottom:809.842667pt;}
.y92{bottom:811.138667pt;}
.ye4{bottom:826.446667pt;}
.y91{bottom:827.078667pt;}
.y6e{bottom:843.018667pt;}
.ye3{bottom:843.050667pt;}
.y1{bottom:847.004000pt;}
.y6d{bottom:858.958667pt;}
.ye2{bottom:859.656000pt;}
.y6c{bottom:874.898667pt;}
.ye1{bottom:876.261333pt;}
.y1b{bottom:913.820000pt;}
.he{height:24.452369pt;}
.h10{height:27.808366pt;}
.h15{height:32.535620pt;}
.h19{height:32.603022pt;}
.h7{height:33.044173pt;}
.h5{height:34.144051pt;}
.h13{height:35.765543pt;}
.h6{height:35.865600pt;}
.ha{height:35.946703pt;}
.h9{height:35.947047pt;}
.hc{height:37.884447pt;}
.h16{height:37.937581pt;}
.h4{height:39.850400pt;}
.h1d{height:40.911733pt;}
.hb{height:41.906834pt;}
.h17{height:42.673067pt;}
.h11{height:43.195733pt;}
.hd{height:43.201067pt;}
.h1{height:44.058897pt;}
.h1b{height:45.480648pt;}
.h18{height:47.691022pt;}
.h1c{height:48.117986pt;}
.h1a{height:49.976301pt;}
.h3{height:55.790800pt;}
.h2{height:68.575027pt;}
.h14{height:279.822769pt;}
.h8{height:329.426704pt;}
.h12{height:374.355445pt;}
.hf{height:626.438157pt;}
.h0{height:960.000000pt;}
.w1{width:411.513213pt;}
.w2{width:421.792448pt;}
.w4{width:509.198340pt;}
.w3{width:509.223905pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x37{left:9.480463pt;}
.x2f{left:10.421192pt;}
.x36{left:13.201249pt;}
.x23{left:15.101602pt;}
.x35{left:19.337655pt;}
.x22{left:21.847528pt;}
.x34{left:37.746736pt;}
.x1a{left:40.742133pt;}
.x21{left:42.083790pt;}
.x1b{left:44.309679pt;}
.x24{left:61.840010pt;}
.x1c{left:70.173440pt;}
.x4{left:75.261333pt;}
.x20{left:77.830667pt;}
.x7{left:82.444000pt;}
.x3c{left:83.894667pt;}
.x3d{left:85.065333pt;}
.x5{left:86.600000pt;}
.x40{left:91.078667pt;}
.x11{left:93.070667pt;}
.x3f{left:94.158667pt;}
.x6{left:95.186667pt;}
.x1d{left:96.902667pt;}
.xc{left:99.184829pt;}
.x32{left:101.057333pt;}
.xf{left:103.795422pt;}
.x25{left:106.330686pt;}
.x15{left:121.549333pt;}
.x8{left:133.877333pt;}
.x45{left:140.230667pt;}
.x26{left:150.737006pt;}
.xa{left:162.831101pt;}
.x2{left:164.604000pt;}
.x13{left:177.933333pt;}
.x19{left:185.344694pt;}
.x27{left:195.228744pt;}
.x30{left:226.181142pt;}
.x41{left:235.745333pt;}
.x28{left:239.719117pt;}
.x33{left:240.730667pt;}
.x17{left:247.507900pt;}
.x12{left:250.342667pt;}
.xd{left:256.767454pt;}
.xe{left:258.270328pt;}
.x1e{left:265.704000pt;}
.x3{left:267.377333pt;}
.x1f{left:272.793333pt;}
.x46{left:278.088000pt;}
.x1{left:282.946667pt;}
.x29{left:284.211007pt;}
.x9{left:285.509545pt;}
.xb{left:321.193208pt;}
.x39{left:327.260274pt;}
.x2a{left:328.616417pt;}
.x3b{left:331.543670pt;}
.x42{left:348.378667pt;}
.x3e{left:353.725333pt;}
.x38{left:365.931318pt;}
.x18{left:367.917276pt;}
.x3a{left:370.214289pt;}
.x2b{left:373.106790pt;}
.x31{left:374.283004pt;}
.x10{left:376.273400pt;}
.x16{left:392.110460pt;}
.x14{left:399.753333pt;}
.x2c{left:417.598680pt;}
.x43{left:422.892000pt;}
.x44{left:448.130667pt;}
.x2d{left:462.002572pt;}
.x2e{left:506.494462pt;}
}


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