
/* 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_f52357581d97.woff")format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_f26104826daf.woff")format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_56a1a0d9ed23.woff")format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_1e1de2c91a06.woff")format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_77936bcd4202.woff")format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_f885a77f81e4.woff")format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_d35a60d76ff7.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f003e1387a4d.woff")format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_076ab650083e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_bf90135111b9.woff")format("woff");}.ffa{font-family:ffa;line-height:1.362000;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);}
.v8{vertical-align:-18.899963px;}
.v4{vertical-align:-17.850037px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.730396px;}
.v3{vertical-align:18.677927px;}
.v2{vertical-align:21.000000px;}
.v7{vertical-align:22.512000px;}
.v6{vertical-align:44.982000px;}
.ls21{letter-spacing:-3.024000px;}
.ls8{letter-spacing:-1.275000px;}
.ls1f{letter-spacing:-0.882000px;}
.ls12{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.798000px;}
.ls10{letter-spacing:-0.756000px;}
.ls2e{letter-spacing:-0.714000px;}
.ls1b{letter-spacing:-0.672000px;}
.ls13{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.588000px;}
.ls31{letter-spacing:-0.546000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls3e{letter-spacing:-0.495000px;}
.ls16{letter-spacing:-0.486000px;}
.ls22{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.378000px;}
.ls41{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.315000px;}
.ls11{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.210000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.168000px;}
.ls18{letter-spacing:-0.162000px;}
.ls2a{letter-spacing:-0.140400px;}
.ls1c{letter-spacing:-0.126000px;}
.ls27{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.090000px;}
.ls15{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000034px;}
.ls1{letter-spacing:0.013772px;}
.ls3f{letter-spacing:0.045000px;}
.ls9{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.105300px;}
.ls3{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.126110px;}
.ls39{letter-spacing:0.135000px;}
.ls32{letter-spacing:0.140400px;}
.ls28{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.175500px;}
.ls35{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.202500px;}
.ls1a{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.225000px;}
.ls33{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.270000px;}
.ls40{letter-spacing:0.283575px;}
.ls37{letter-spacing:0.315000px;}
.lse{letter-spacing:0.324000px;}
.ls2d{letter-spacing:0.378000px;}
.ls3c{letter-spacing:0.405000px;}
.ls2b{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.486000px;}
.ls26{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.702000px;}
.ls14{letter-spacing:0.756000px;}
.ls24{letter-spacing:0.810000px;}
.ls38{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.ws4{word-spacing:-51.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws7e{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.596000px;}
.ws8f{word-spacing:-12.528000px;}
.ws15{word-spacing:-12.258000px;}
.ws56{word-spacing:-11.934000px;}
.wsa0{word-spacing:-11.718000px;}
.ws82{word-spacing:-10.710000px;}
.ws80{word-spacing:-10.620000px;}
.ws81{word-spacing:-10.530000px;}
.ws94{word-spacing:-10.440000px;}
.ws9f{word-spacing:-10.417500px;}
.ws7f{word-spacing:-10.215000px;}
.ws83{word-spacing:-9.765000px;}
.ws0{word-spacing:-9.600000px;}
.ws38{word-spacing:-9.534000px;}
.ws5a{word-spacing:-9.240000px;}
.ws31{word-spacing:-8.946000px;}
.ws5{word-spacing:-8.925000px;}
.ws58{word-spacing:-8.904000px;}
.ws30{word-spacing:-8.232000px;}
.ws13{word-spacing:-8.178300px;}
.ws3f{word-spacing:-8.143200px;}
.ws68{word-spacing:-8.108100px;}
.ws4f{word-spacing:-8.073000px;}
.ws2{word-spacing:-8.034000px;}
.ws40{word-spacing:-7.967700px;}
.ws41{word-spacing:-7.827300px;}
.ws3{word-spacing:-6.630000px;}
.ws9b{word-spacing:-6.030000px;}
.ws9d{word-spacing:-5.805000px;}
.ws67{word-spacing:-4.284000px;}
.ws71{word-spacing:-2.754000px;}
.ws76{word-spacing:-2.268000px;}
.ws6e{word-spacing:-2.214000px;}
.ws25{word-spacing:-2.106000px;}
.ws3e{word-spacing:-1.806000px;}
.ws84{word-spacing:-1.782000px;}
.ws8c{word-spacing:-1.620000px;}
.ws73{word-spacing:-1.566000px;}
.ws77{word-spacing:-1.512000px;}
.ws8b{word-spacing:-1.458000px;}
.ws16{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.242000px;}
.ws17{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.134000px;}
.wsb{word-spacing:-1.080000px;}
.ws99{word-spacing:-1.035000px;}
.ws44{word-spacing:-1.026000px;}
.ws98{word-spacing:-0.990000px;}
.ws18{word-spacing:-0.972000px;}
.ws90{word-spacing:-0.945000px;}
.ws78{word-spacing:-0.918000px;}
.ws9c{word-spacing:-0.900000px;}
.ws7a{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.810000px;}
.ws22{word-spacing:-0.756000px;}
.ws9e{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.702000px;}
.wsd{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.594000px;}
.ws91{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.486000px;}
.ws1c{word-spacing:-0.432000px;}
.ws3d{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.324000px;}
.ws66{word-spacing:-0.270000px;}
.ws8e{word-spacing:-0.264000px;}
.ws93{word-spacing:-0.225000px;}
.ws8{word-spacing:-0.216000px;}
.ws79{word-spacing:-0.210600px;}
.ws9a{word-spacing:-0.180000px;}
.ws51{word-spacing:-0.054000px;}
.ws6{word-spacing:-0.033150px;}
.ws7{word-spacing:0.000000px;}
.wsa2{word-spacing:0.045000px;}
.wsc{word-spacing:0.054000px;}
.ws4a{word-spacing:0.108000px;}
.ws2f{word-spacing:0.126000px;}
.wsa3{word-spacing:0.135000px;}
.ws53{word-spacing:0.162000px;}
.ws26{word-spacing:0.216000px;}
.wsf{word-spacing:0.255000px;}
.ws46{word-spacing:0.270000px;}
.ws23{word-spacing:0.324000px;}
.ws7b{word-spacing:0.378000px;}
.ws3c{word-spacing:0.420000px;}
.ws1b{word-spacing:0.432000px;}
.ws87{word-spacing:0.486000px;}
.wsa1{word-spacing:0.495000px;}
.ws97{word-spacing:0.540000px;}
.ws49{word-spacing:0.594000px;}
.ws4e{word-spacing:0.648000px;}
.wsa{word-spacing:0.702000px;}
.ws42{word-spacing:0.756000px;}
.ws47{word-spacing:0.864000px;}
.ws2d{word-spacing:0.918000px;}
.ws4c{word-spacing:0.972000px;}
.ws95{word-spacing:0.990000px;}
.ws54{word-spacing:1.026000px;}
.ws96{word-spacing:1.035000px;}
.ws50{word-spacing:1.134000px;}
.ws48{word-spacing:1.188000px;}
.ws19{word-spacing:1.242000px;}
.wse{word-spacing:1.275000px;}
.ws7c{word-spacing:1.404000px;}
.ws1a{word-spacing:1.458000px;}
.ws2e{word-spacing:1.512000px;}
.ws43{word-spacing:1.566000px;}
.ws4d{word-spacing:1.674000px;}
.ws4b{word-spacing:1.728000px;}
.ws89{word-spacing:1.782000px;}
.ws70{word-spacing:1.836000px;}
.ws8a{word-spacing:1.890000px;}
.ws1f{word-spacing:1.998000px;}
.ws45{word-spacing:2.052000px;}
.ws1d{word-spacing:2.106000px;}
.ws85{word-spacing:2.160000px;}
.ws74{word-spacing:2.376000px;}
.ws8d{word-spacing:2.484000px;}
.ws86{word-spacing:2.538000px;}
.ws72{word-spacing:2.808000px;}
.wsa6{word-spacing:3.024000px;}
.wsa7{word-spacing:3.132000px;}
.wsa4{word-spacing:3.186000px;}
.wsa5{word-spacing:3.348000px;}
.ws75{word-spacing:3.402000px;}
.ws6d{word-spacing:3.456000px;}
.ws12{word-spacing:3.468000px;}
.ws69{word-spacing:3.564000px;}
.ws7d{word-spacing:3.780000px;}
.ws6f{word-spacing:3.942000px;}
.ws88{word-spacing:5.022000px;}
.wsaa{word-spacing:5.670000px;}
.ws6c{word-spacing:5.994000px;}
.ws6b{word-spacing:6.102000px;}
.wsab{word-spacing:6.264000px;}
.wsa8{word-spacing:6.480000px;}
.wsa9{word-spacing:6.750000px;}
.ws24{word-spacing:8.370000px;}
.ws11{word-spacing:8.568000px;}
.ws10{word-spacing:17.748000px;}
.ws62{word-spacing:29.232000px;}
.ws3b{word-spacing:36.204000px;}
.ws60{word-spacing:48.594000px;}
.ws5c{word-spacing:65.562000px;}
.ws63{word-spacing:68.250000px;}
.ws5f{word-spacing:70.392000px;}
.ws5d{word-spacing:85.721995px;}
.ws61{word-spacing:121.296000px;}
.ws37{word-spacing:122.434191px;}
.ws35{word-spacing:170.939991px;}
.ws33{word-spacing:176.147993px;}
.ws36{word-spacing:179.633991px;}
.ws3a{word-spacing:185.891993px;}
.ws39{word-spacing:189.209993px;}
.ws32{word-spacing:197.232000px;}
.ws34{word-spacing:199.042193px;}
.ws57{word-spacing:263.050200px;}
.ws2b{word-spacing:267.128389px;}
.ws5e{word-spacing:307.020000px;}
.ws64{word-spacing:310.128000px;}
.ws28{word-spacing:324.071989px;}
.ws65{word-spacing:332.514000px;}
.ws5b{word-spacing:339.822000px;}
.ws59{word-spacing:339.826200px;}
.ws29{word-spacing:353.429989px;}
.ws2a{word-spacing:371.069989px;}
.ws2c{word-spacing:378.209989px;}
.ws27{word-spacing:460.865989px;}
._42{margin-left:-2353.469987px;}
._67{margin-left:-13.828800px;}
._6{margin-left:-12.738050px;}
._40{margin-left:-11.258400px;}
._f{margin-left:-9.265200px;}
._6a{margin-left:-7.353301px;}
._2{margin-left:-6.271200px;}
._4{margin-left:-5.218200px;}
._3{margin-left:-3.892061px;}
._0{margin-left:-1.876800px;}
._5{width:1.291200px;}
._c{width:3.172200px;}
._65{width:4.191600px;}
._a{width:5.293800px;}
._9{width:7.313400px;}
._e{width:9.372600px;}
._68{width:11.165400px;}
._69{width:13.206600px;}
._8{width:14.412595px;}
._b{width:15.463201px;}
._7{width:16.493400px;}
._6b{width:18.045000px;}
._2c{width:29.526000px;}
._2b{width:32.885993px;}
._2a{width:35.490000px;}
._56{width:38.086835px;}
._29{width:39.543600px;}
._26{width:44.572800px;}
._66{width:46.518576px;}
._d{width:48.319821px;}
._10{width:55.298376px;}
._49{width:57.350395px;}
._2f{width:58.618791px;}
._53{width:61.138800px;}
._54{width:65.157600px;}
._50{width:66.759605px;}
._4f{width:68.103600px;}
._2e{width:74.024400px;}
._25{width:75.208789px;}
._5b{width:76.395600px;}
._62{width:85.651209px;}
._1f{width:86.771989px;}
._4e{width:88.946411px;}
._51{width:92.972400px;}
._1a{width:95.799589px;}
._1c{width:106.113589px;}
._5f{width:107.436000px;}
._5a{width:111.230861px;}
._33{width:115.289991px;}
._27{width:117.568193px;}
._60{width:119.335209px;}
._3f{width:122.093991px;}
._4a{width:126.462005px;}
._47{width:128.113204px;}
._52{width:129.381600px;}
._31{width:132.257991px;}
._28{width:138.599993px;}
._38{width:140.434791px;}
._55{width:146.811616px;}
._64{width:149.541600px;}
._21{width:160.508389px;}
._2d{width:164.681991px;}
._4c{width:166.761605px;}
._4b{width:169.880400px;}
._46{width:171.150000px;}
._24{width:174.160789px;}
._48{width:179.017209px;}
._32{width:180.053991px;}
._59{width:187.032026px;}
._4d{width:189.084000px;}
._36{width:193.115993px;}
._35{width:195.720000px;}
._34{width:199.542000px;}
._63{width:205.240800px;}
._57{width:211.260000px;}
._41{width:216.943176px;}
._37{width:219.072000px;}
._30{width:220.247991px;}
._3c{width:222.390000px;}
._3a{width:225.456000px;}
._5d{width:227.876413px;}
._39{width:229.278000px;}
._61{width:234.150000px;}
._3d{width:239.693993px;}
._3b{width:243.011993px;}
._5e{width:246.855605px;}
._20{width:263.085589px;}
._1e{width:264.248389px;}
._17{width:276.520778px;}
._45{width:279.300000px;}
._3e{width:284.382000px;}
._5c{width:299.240405px;}
._19{width:307.048789px;}
._1{width:326.212800px;}
._43{width:337.554000px;}
._1d{width:347.549989px;}
._58{width:348.600000px;}
._22{width:364.055989px;}
._13{width:369.893989px;}
._15{width:435.791989px;}
._16{width:513.785976px;}
._14{width:535.457976px;}
._44{width:537.599985px;}
._12{width:634.577976px;}
._1b{width:635.753976px;}
._23{width:655.073976px;}
._18{width:675.255576px;}
._11{width:745.583976px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.199200px;}
.y30{bottom:3.199350px;}
.yb1{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y2f{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y81{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y2e{bottom:68.037452px;}
.yb0{bottom:69.090610px;}
.y53{bottom:69.545552px;}
.y1cd{bottom:70.342648px;}
.y111{bottom:71.880152px;}
.y12d{bottom:72.624152px;}
.yf3{bottom:77.002648px;}
.y18c{bottom:79.984648px;}
.y5f{bottom:82.665004px;}
.y2d{bottom:83.037452px;}
.y1cc{bottom:83.088898px;}
.yaf{bottom:84.089110px;}
.y52{bottom:84.544052px;}
.y110{bottom:86.878652px;}
.y12c{bottom:87.622652px;}
.yf2{bottom:92.001148px;}
.y18b{bottom:94.983148px;}
.y1cb{bottom:95.835148px;}
.y5e{bottom:97.663504px;}
.y2c{bottom:98.037452px;}
.yae{bottom:99.087610px;}
.y10f{bottom:101.877152px;}
.y12b{bottom:102.621152px;}
.yf1{bottom:106.999648px;}
.y1ca{bottom:108.581398px;}
.y18a{bottom:109.981648px;}
.y5d{bottom:112.662004px;}
.y2b{bottom:113.043452px;}
.yad{bottom:114.086110px;}
.y10e{bottom:116.875652px;}
.y51{bottom:117.554552px;}
.y12a{bottom:117.619652px;}
.y1c9{bottom:121.327648px;}
.yf0{bottom:121.998148px;}
.y208{bottom:124.412404px;}
.y189{bottom:124.980148px;}
.y5c{bottom:127.660504px;}
.y2a{bottom:128.037452px;}
.yac{bottom:129.084610px;}
.y10d{bottom:131.874152px;}
.y50{bottom:132.553052px;}
.y129{bottom:132.619652px;}
.y1c8{bottom:134.073898px;}
.yef{bottom:136.996648px;}
.y5b{bottom:142.659004px;}
.y29{bottom:143.037452px;}
.yab{bottom:144.083110px;}
.y1c7{bottom:146.820148px;}
.y10c{bottom:146.872652px;}
.y4f{bottom:147.551552px;}
.yee{bottom:151.995148px;}
.y207{bottom:154.409403px;}
.y188{bottom:157.984648px;}
.y28{bottom:158.037452px;}
.yaa{bottom:159.081610px;}
.y1c6{bottom:159.566398px;}
.y10b{bottom:161.871152px;}
.y4e{bottom:162.550052px;}
.y128{bottom:165.640652px;}
.yed{bottom:166.993648px;}
.y206{bottom:169.407903px;}
.y1c5{bottom:172.312648px;}
.y187{bottom:172.983148px;}
.y27{bottom:173.043441px;}
.ya9{bottom:174.080110px;}
.y10a{bottom:176.881652px;}
.y7f{bottom:177.041559px;}
.y4d{bottom:177.548552px;}
.y127{bottom:180.639152px;}
.yec{bottom:181.992148px;}
.y205{bottom:184.406403px;}
.y1c4{bottom:185.058898px;}
.y186{bottom:187.981648px;}
.y26{bottom:188.037441px;}
.ya8{bottom:189.078610px;}
.y109{bottom:191.880152px;}
.y7e{bottom:192.040059px;}
.y4c{bottom:192.547052px;}
.y126{bottom:195.637652px;}
.yeb{bottom:196.990648px;}
.y1c3{bottom:197.805148px;}
.y204{bottom:199.404903px;}
.y185{bottom:202.984648px;}
.ya7{bottom:204.077110px;}
.y108{bottom:206.878652px;}
.y7d{bottom:207.038559px;}
.y25{bottom:207.493950px;}
.y4b{bottom:207.545552px;}
.y1c2{bottom:210.551398px;}
.y125{bottom:210.636152px;}
.yea{bottom:211.989148px;}
.y203{bottom:214.403403px;}
.y184{bottom:217.983148px;}
.y107{bottom:221.877152px;}
.y7c{bottom:222.037059px;}
.y4a{bottom:222.544052px;}
.y1c1{bottom:223.297648px;}
.y124{bottom:225.634652px;}
.ye9{bottom:226.987648px;}
.y202{bottom:229.401903px;}
.y183{bottom:232.981648px;}
.y1c0{bottom:236.043898px;}
.y106{bottom:236.875652px;}
.y7b{bottom:237.035559px;}
.y49{bottom:237.544052px;}
.y123{bottom:240.633152px;}
.ye8{bottom:241.986148px;}
.y201{bottom:244.400403px;}
.y182{bottom:247.980148px;}
.y1bf{bottom:248.790148px;}
.y105{bottom:251.874152px;}
.y7a{bottom:252.034059px;}
.y23{bottom:253.624815px;}
.y122{bottom:255.631652px;}
.ye7{bottom:256.984648px;}
.y200{bottom:259.398903px;}
.y1be{bottom:261.536398px;}
.y104{bottom:266.872652px;}
.y79{bottom:267.032559px;}
.y22{bottom:268.623315px;}
.y48{bottom:270.563552px;}
.y121{bottom:270.630152px;}
.ye6{bottom:271.983148px;}
.y1bd{bottom:274.282648px;}
.y181{bottom:280.984648px;}
.y103{bottom:281.871152px;}
.y1ff{bottom:281.888243px;}
.y78{bottom:282.031059px;}
.y21{bottom:283.621815px;}
.y47{bottom:285.562052px;}
.y120{bottom:285.628652px;}
.ye5{bottom:286.981648px;}
.y1bc{bottom:287.028898px;}
.y180{bottom:295.983148px;}
.y1fe{bottom:296.886743px;}
.y102{bottom:296.890629px;}
.y20{bottom:298.620315px;}
.y1bb{bottom:299.775148px;}
.y46{bottom:300.560552px;}
.y11f{bottom:300.627152px;}
.ye4{bottom:302.019148px;}
.y17f{bottom:310.981648px;}
.y101{bottom:311.889129px;}
.y1ba{bottom:312.521398px;}
.y1f{bottom:313.618815px;}
.y45{bottom:315.559052px;}
.y11e{bottom:315.625652px;}
.ye3{bottom:317.017648px;}
.y1fd{bottom:319.391243px;}
.y1b9{bottom:325.267648px;}
.y17e{bottom:325.983148px;}
.y100{bottom:326.887629px;}
.y1e{bottom:328.617315px;}
.y44{bottom:330.557552px;}
.y11d{bottom:330.624152px;}
.ye2{bottom:332.016148px;}
.y1b8{bottom:338.013898px;}
.y17d{bottom:340.981648px;}
.yff{bottom:341.886129px;}
.y1fc{bottom:341.895743px;}
.y43{bottom:345.556052px;}
.y11c{bottom:345.622652px;}
.ye1{bottom:347.014648px;}
.y1b7{bottom:350.760148px;}
.y17c{bottom:355.992148px;}
.yfe{bottom:356.884629px;}
.y42{bottom:360.554552px;}
.y11b{bottom:360.621152px;}
.ye0{bottom:362.013148px;}
.y1b6{bottom:363.506398px;}
.y1fb{bottom:364.400243px;}
.y17b{bottom:370.990648px;}
.yfd{bottom:371.883129px;}
.y1d{bottom:373.761315px;}
.y41{bottom:375.553052px;}
.y11a{bottom:375.619652px;}
.y1b5{bottom:376.252648px;}
.ydf{bottom:377.011648px;}
.y1fa{bottom:379.398743px;}
.y17a{bottom:385.989148px;}
.yfc{bottom:386.881629px;}
.y1b4{bottom:388.998898px;}
.y1c{bottom:390.258315px;}
.y40{bottom:390.551552px;}
.yde{bottom:392.010148px;}
.y1f9{bottom:394.398743px;}
.y179{bottom:400.987648px;}
.y1b3{bottom:401.745148px;}
.yfb{bottom:401.880129px;}
.y3f{bottom:405.550052px;}
.y1b{bottom:406.755315px;}
.ydd{bottom:407.008648px;}
.y1b2{bottom:414.491398px;}
.y178{bottom:415.986148px;}
.yfa{bottom:416.878629px;}
.y3e{bottom:420.548552px;}
.ydc{bottom:422.007148px;}
.y1a{bottom:423.252315px;}
.y1f8{bottom:424.437926px;}
.y1b1{bottom:427.237648px;}
.y177{bottom:430.984648px;}
.yf9{bottom:431.877129px;}
.y3d{bottom:435.547052px;}
.y136{bottom:435.619928px;}
.ydb{bottom:437.005648px;}
.y1f7{bottom:439.436426px;}
.y19{bottom:439.749315px;}
.y1b0{bottom:439.983898px;}
.y176{bottom:445.983148px;}
.yf8{bottom:446.875629px;}
.y3c{bottom:450.545552px;}
.y135{bottom:450.618428px;}
.yda{bottom:452.004148px;}
.y1af{bottom:452.730148px;}
.y1f6{bottom:454.434926px;}
.y18{bottom:456.246315px;}
.y175{bottom:460.981648px;}
.yf7{bottom:461.874129px;}
.y1ae{bottom:465.480148px;}
.y3b{bottom:465.557552px;}
.y134{bottom:465.625928px;}
.yd9{bottom:467.002648px;}
.y1f5{bottom:469.433426px;}
.y17{bottom:472.743315px;}
.y174{bottom:475.980148px;}
.yf6{bottom:476.872629px;}
.y3a{bottom:480.556052px;}
.y133{bottom:480.624428px;}
.yd8{bottom:482.001148px;}
.y1f4{bottom:484.431926px;}
.y16{bottom:489.240315px;}
.yf5{bottom:491.871129px;}
.y39{bottom:495.554552px;}
.y132{bottom:495.622928px;}
.yd7{bottom:496.999648px;}
.y1f3{bottom:499.430426px;}
.y15{bottom:505.737315px;}
.yf4{bottom:506.869629px;}
.y173{bottom:508.993648px;}
.y38{bottom:510.553052px;}
.y131{bottom:510.621428px;}
.yd6{bottom:511.998148px;}
.y1f2{bottom:514.428926px;}
.y1ad{bottom:514.980148px;}
.y14{bottom:522.234315px;}
.y172{bottom:523.992148px;}
.y37{bottom:525.551552px;}
.y130{bottom:525.619928px;}
.yd5{bottom:526.996648px;}
.y1f1{bottom:529.427426px;}
.y13{bottom:538.731315px;}
.y171{bottom:538.990648px;}
.y36{bottom:540.550052px;}
.y12f{bottom:540.618428px;}
.yd4{bottom:541.995148px;}
.y1f0{bottom:544.425926px;}
.y1ac{bottom:544.981648px;}
.y119{bottom:550.542131px;}
.y170{bottom:553.989148px;}
.y12{bottom:555.228315px;}
.y35{bottom:555.548552px;}
.y12e{bottom:555.616928px;}
.yd3{bottom:556.993648px;}
.y1ef{bottom:559.424426px;}
.y1ab{bottom:559.980148px;}
.y118{bottom:565.540631px;}
.y16f{bottom:568.987648px;}
.y34{bottom:570.547052px;}
.y11{bottom:571.725315px;}
.yd2{bottom:571.992148px;}
.y1ee{bottom:574.422926px;}
.y1aa{bottom:574.980148px;}
.y117{bottom:580.539131px;}
.y16e{bottom:583.986148px;}
.y33{bottom:585.545552px;}
.yd1{bottom:586.990648px;}
.y158{bottom:588.004986px;}
.y10{bottom:588.222315px;}
.y1ed{bottom:589.421426px;}
.y116{bottom:595.537631px;}
.y16d{bottom:598.984648px;}
.y32{bottom:600.544052px;}
.yd0{bottom:601.989148px;}
.y1ec{bottom:604.419926px;}
.yf{bottom:604.719315px;}
.y1a9{bottom:604.992148px;}
.y157{bottom:605.539986px;}
.y115{bottom:610.536131px;}
.y16c{bottom:613.983148px;}
.y156{bottom:616.785486px;}
.ycf{bottom:616.987648px;}
.y1eb{bottom:619.418426px;}
.y1a8{bottom:619.990648px;}
.y114{bottom:625.534631px;}
.y16b{bottom:628.981648px;}
.yce{bottom:631.986148px;}
.y155{bottom:634.320486px;}
.y1ea{bottom:634.416926px;}
.ye{bottom:634.719315px;}
.y1a7{bottom:634.989148px;}
.y113{bottom:640.533131px;}
.y16a{bottom:643.980148px;}
.y59{bottom:644.978981px;}
.y154{bottom:645.565986px;}
.ycd{bottom:646.984648px;}
.y1e9{bottom:649.415426px;}
.y1a6{bottom:649.987648px;}
.yd{bottom:652.719315px;}
.y112{bottom:655.531631px;}
.y58{bottom:659.977481px;}
.ycc{bottom:661.983148px;}
.y153{bottom:663.100986px;}
.y1e8{bottom:664.413926px;}
.y1a5{bottom:664.986148px;}
.yc{bottom:670.719315px;}
.y62{bottom:673.524606px;}
.y152{bottom:674.346486px;}
.y57{bottom:674.975981px;}
.ycb{bottom:676.981648px;}
.y169{bottom:677.004194px;}
.y1e7{bottom:679.412426px;}
.y1a4{bottom:679.984648px;}
.y8b{bottom:684.628974px;}
.y61{bottom:688.523106px;}
.yb{bottom:688.719315px;}
.y56{bottom:689.974481px;}
.y151{bottom:691.881486px;}
.yca{bottom:692.001194px;}
.y168{bottom:692.002694px;}
.y1e6{bottom:694.410926px;}
.y1a3{bottom:694.983148px;}
.y8a{bottom:699.627474px;}
.y150{bottom:703.126986px;}
.y60{bottom:703.521606px;}
.y55{bottom:704.972981px;}
.yc9{bottom:706.999694px;}
.y167{bottom:707.001194px;}
.y1e5{bottom:709.409426px;}
.y1a2{bottom:709.981648px;}
.y89{bottom:714.625974px;}
.y54{bottom:719.971481px;}
.y14f{bottom:720.661986px;}
.ya{bottom:721.689269px;}
.yc8{bottom:721.998194px;}
.y166{bottom:721.999694px;}
.y1e4{bottom:724.407926px;}
.y1a1{bottom:724.990694px;}
.y88{bottom:729.624474px;}
.y77{bottom:735.506067px;}
.yc7{bottom:736.996694px;}
.y165{bottom:736.998194px;}
.y14e{bottom:738.196986px;}
.y1e3{bottom:739.406426px;}
.y1a0{bottom:739.989194px;}
.y87{bottom:744.622974px;}
.yc6{bottom:751.995194px;}
.y164{bottom:751.996694px;}
.y76{bottom:753.041067px;}
.y1e2{bottom:754.404926px;}
.y19f{bottom:754.987694px;}
.y14d{bottom:755.731986px;}
.y86{bottom:759.621474px;}
.y9{bottom:766.695269px;}
.yc5{bottom:766.993694px;}
.y163{bottom:766.995194px;}
.y1e1{bottom:769.403426px;}
.y19e{bottom:769.986194px;}
.y75{bottom:770.576067px;}
.y14c{bottom:773.266986px;}
.y85{bottom:774.619974px;}
.yc4{bottom:781.992194px;}
.y162{bottom:781.993694px;}
.y1e0{bottom:784.401926px;}
.y19d{bottom:784.984694px;}
.y74{bottom:788.111067px;}
.y84{bottom:789.618474px;}
.y14b{bottom:790.801986px;}
.yc3{bottom:796.990694px;}
.y161{bottom:796.992194px;}
.y1df{bottom:799.400426px;}
.y19c{bottom:799.983194px;}
.y83{bottom:804.616974px;}
.y73{bottom:805.646067px;}
.y14a{bottom:808.336986px;}
.y8{bottom:811.701269px;}
.yc2{bottom:811.989194px;}
.y160{bottom:811.990694px;}
.y1de{bottom:814.398926px;}
.y19b{bottom:814.981694px;}
.y149{bottom:819.582486px;}
.y72{bottom:823.181067px;}
.yc1{bottom:826.987694px;}
.y15f{bottom:826.989194px;}
.y1dd{bottom:829.398926px;}
.y19a{bottom:829.980194px;}
.y148{bottom:837.117486px;}
.ya6{bottom:837.138574px;}
.y71{bottom:840.716067px;}
.yc0{bottom:841.986194px;}
.y15e{bottom:841.987694px;}
.y147{bottom:848.362986px;}
.ya5{bottom:854.673574px;}
.y7{bottom:856.707269px;}
.ybf{bottom:856.984694px;}
.y15d{bottom:856.986194px;}
.y70{bottom:858.251067px;}
.y1dc{bottom:860.865784px;}
.y199{bottom:862.983194px;}
.y146{bottom:865.897986px;}
.ybe{bottom:871.983194px;}
.y15c{bottom:871.984694px;}
.ya4{bottom:872.208574px;}
.y6f{bottom:875.786067px;}
.y1db{bottom:875.865784px;}
.y198{bottom:877.981694px;}
.y145{bottom:883.432986px;}
.ybd{bottom:886.981694px;}
.y15b{bottom:886.983194px;}
.ya1{bottom:889.722574px;}
.ya2{bottom:889.733074px;}
.ya3{bottom:889.743574px;}
.y197{bottom:892.999694px;}
.y6e{bottom:893.321067px;}
.y144{bottom:894.678486px;}
.ya0{bottom:900.968074px;}
.y6{bottom:901.713269px;}
.ybc{bottom:901.980194px;}
.y15a{bottom:901.981694px;}
.y1da{bottom:905.873284px;}
.y196{bottom:907.998194px;}
.y6d{bottom:910.856067px;}
.y140{bottom:912.181986px;}
.y141{bottom:912.192486px;}
.y142{bottom:912.202986px;}
.y143{bottom:912.213486px;}
.ybb{bottom:916.980194px;}
.y13f{bottom:917.799486px;}
.y9f{bottom:918.503074px;}
.y1d9{bottom:920.871784px;}
.y195{bottom:922.996694px;}
.y6c{bottom:928.391067px;}
.y1d8{bottom:935.870284px;}
.y9e{bottom:936.038074px;}
.y194{bottom:937.995194px;}
.y13e{bottom:940.962486px;}
.y6b{bottom:945.926067px;}
.y5{bottom:946.719269px;}
.yba{bottom:949.987694px;}
.y1d7{bottom:950.868784px;}
.y193{bottom:952.993694px;}
.y9d{bottom:953.573074px;}
.y24{bottom:954.366760px;}
.y13d{bottom:958.497486px;}
.y6a{bottom:963.461067px;}
.yb9{bottom:964.986194px;}
.y1d6{bottom:965.867284px;}
.y192{bottom:967.992194px;}
.y9c{bottom:971.108074px;}
.y13c{bottom:976.032486px;}
.yb8{bottom:979.984694px;}
.y1d5{bottom:980.865784px;}
.y69{bottom:980.996067px;}
.y191{bottom:982.990694px;}
.y9b{bottom:988.643074px;}
.y13b{bottom:993.567486px;}
.yb7{bottom:994.983194px;}
.y1d4{bottom:995.865784px;}
.y190{bottom:997.989194px;}
.y68{bottom:998.523486px;}
.y13a{bottom:1004.812986px;}
.y9a{bottom:1006.178074px;}
.yb6{bottom:1009.981694px;}
.y18f{bottom:1012.987694px;}
.y67{bottom:1016.058486px;}
.y139{bottom:1022.347986px;}
.y99{bottom:1023.713074px;}
.yb5{bottom:1024.980194px;}
.y1d3{bottom:1025.884534px;}
.y18e{bottom:1027.986194px;}
.y66{bottom:1033.593486px;}
.y1d2{bottom:1038.630784px;}
.y137{bottom:1039.881592px;}
.y138{bottom:1039.882986px;}
.y159{bottom:1039.980194px;}
.y90{bottom:1041.216578px;}
.y95{bottom:1041.237576px;}
.y98{bottom:1041.248074px;}
.y18d{bottom:1042.984694px;}
.y65{bottom:1051.128486px;}
.y1d1{bottom:1051.377034px;}
.y8f{bottom:1052.462078px;}
.y94{bottom:1052.483076px;}
.y97{bottom:1052.493574px;}
.yb4{bottom:1057.983194px;}
.y8e{bottom:1063.707578px;}
.y93{bottom:1063.728576px;}
.y96{bottom:1063.739074px;}
.y1d0{bottom:1064.123284px;}
.y64{bottom:1068.663486px;}
.yb3{bottom:1072.981694px;}
.y8d{bottom:1074.953078px;}
.y92{bottom:1074.974076px;}
.y1cf{bottom:1076.869534px;}
.y63{bottom:1086.198486px;}
.y8c{bottom:1086.198578px;}
.y91{bottom:1086.219576px;}
.yb2{bottom:1087.980194px;}
.y1ce{bottom:1089.615784px;}
.y5a{bottom:1140.640320px;}
.y82{bottom:1140.746521px;}
.y31{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.hb{height:23.842749px;}
.h2{height:34.523438px;}
.h27{height:35.411133px;}
.hf{height:36.681152px;}
.h8{height:38.838867px;}
.h17{height:41.538000px;}
.h11{height:41.668740px;}
.h18{height:41.730096px;}
.h16{height:43.008000px;}
.h2a{height:44.505000px;}
.h28{height:45.090000px;}
.h3{height:45.679688px;}
.h29{height:46.080000px;}
.h14{height:47.469727px;}
.h10{height:48.486668px;}
.hd{height:48.486714px;}
.he{height:48.510668px;}
.hc{height:48.534668px;}
.h6{height:49.050293px;}
.h7{height:49.183594px;}
.h12{height:49.373525px;}
.h2b{height:50.439000px;}
.h9{height:53.406000px;}
.h1e{height:53.457863px;}
.h1d{height:53.529680px;}
.h1f{height:53.529955px;}
.h25{height:53.535680px;}
.h13{height:53.559863px;}
.h22{height:53.565863px;}
.h20{height:53.565909px;}
.h26{height:53.571680px;}
.h21{height:53.577314px;}
.h24{height:53.595863px;}
.h23{height:53.601863px;}
.h15{height:55.296000px;}
.h4{height:57.099609px;}
.h1c{height:64.050000px;}
.ha{height:77.677734px;}
.h1b{height:86.520000px;}
.h1a{height:86.562000px;}
.h19{height:87.990000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.228350px;}
.x3{left:61.653603px;}
.x12{left:66.360020px;}
.x6{left:141.395702px;}
.xc{left:142.526997px;}
.xd{left:220.006497px;}
.x15{left:228.741760px;}
.x5{left:233.858253px;}
.xb{left:238.571694px;}
.x8{left:251.858253px;}
.x1d{left:254.108253px;}
.x19{left:258.393762px;}
.x13{left:296.446668px;}
.x1f{left:302.498840px;}
.xa{left:361.915192px;}
.x1a{left:382.808262px;}
.x14{left:448.077166px;}
.x16{left:482.085760px;}
.xe{left:524.033993px;}
.x17{left:532.632760px;}
.x1b{left:562.274257px;}
.x4{left:586.814117px;}
.xf{left:599.906991px;}
.x10{left:674.950490px;}
.x1c{left:686.688757px;}
.x11{left:761.165990px;}
.x18{left:785.976760px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x1e{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v8{vertical-align:-16.799967pt;}
.v4{vertical-align:-15.866700pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.093685pt;}
.v3{vertical-align:16.602602pt;}
.v2{vertical-align:18.666667pt;}
.v7{vertical-align:20.010667pt;}
.v6{vertical-align:39.984000pt;}
.ls21{letter-spacing:-2.688000pt;}
.ls8{letter-spacing:-1.133333pt;}
.ls1f{letter-spacing:-0.784000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.709333pt;}
.ls10{letter-spacing:-0.672000pt;}
.ls2e{letter-spacing:-0.634667pt;}
.ls1b{letter-spacing:-0.597333pt;}
.ls13{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.522667pt;}
.ls31{letter-spacing:-0.485333pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls3e{letter-spacing:-0.440000pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls22{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls41{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.280000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.186667pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.149333pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls2a{letter-spacing:-0.124800pt;}
.ls1c{letter-spacing:-0.112000pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.080000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000031pt;}
.ls1{letter-spacing:0.012242pt;}
.ls3f{letter-spacing:0.040000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.093600pt;}
.ls3{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.112098pt;}
.ls39{letter-spacing:0.120000pt;}
.ls32{letter-spacing:0.124800pt;}
.ls28{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.156000pt;}
.ls35{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.180000pt;}
.ls1a{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.200000pt;}
.ls33{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls40{letter-spacing:0.252067pt;}
.ls37{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.288000pt;}
.ls2d{letter-spacing:0.336000pt;}
.ls3c{letter-spacing:0.360000pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.432000pt;}
.ls26{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.624000pt;}
.ls14{letter-spacing:0.672000pt;}
.ls24{letter-spacing:0.720000pt;}
.ls38{letter-spacing:0.800000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws4{word-spacing:-45.333333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7e{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.085333pt;}
.ws8f{word-spacing:-11.136000pt;}
.ws15{word-spacing:-10.896000pt;}
.ws56{word-spacing:-10.608000pt;}
.wsa0{word-spacing:-10.416000pt;}
.ws82{word-spacing:-9.520000pt;}
.ws80{word-spacing:-9.440000pt;}
.ws81{word-spacing:-9.360000pt;}
.ws94{word-spacing:-9.280000pt;}
.ws9f{word-spacing:-9.260000pt;}
.ws7f{word-spacing:-9.080000pt;}
.ws83{word-spacing:-8.680000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws38{word-spacing:-8.474667pt;}
.ws5a{word-spacing:-8.213333pt;}
.ws31{word-spacing:-7.952000pt;}
.ws5{word-spacing:-7.933333pt;}
.ws58{word-spacing:-7.914667pt;}
.ws30{word-spacing:-7.317333pt;}
.ws13{word-spacing:-7.269600pt;}
.ws3f{word-spacing:-7.238400pt;}
.ws68{word-spacing:-7.207200pt;}
.ws4f{word-spacing:-7.176000pt;}
.ws2{word-spacing:-7.141333pt;}
.ws40{word-spacing:-7.082400pt;}
.ws41{word-spacing:-6.957600pt;}
.ws3{word-spacing:-5.893333pt;}
.ws9b{word-spacing:-5.360000pt;}
.ws9d{word-spacing:-5.160000pt;}
.ws67{word-spacing:-3.808000pt;}
.ws71{word-spacing:-2.448000pt;}
.ws76{word-spacing:-2.016000pt;}
.ws6e{word-spacing:-1.968000pt;}
.ws25{word-spacing:-1.872000pt;}
.ws3e{word-spacing:-1.605333pt;}
.ws84{word-spacing:-1.584000pt;}
.ws8c{word-spacing:-1.440000pt;}
.ws73{word-spacing:-1.392000pt;}
.ws77{word-spacing:-1.344000pt;}
.ws8b{word-spacing:-1.296000pt;}
.ws16{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.104000pt;}
.ws17{word-spacing:-1.056000pt;}
.ws52{word-spacing:-1.008000pt;}
.wsb{word-spacing:-0.960000pt;}
.ws99{word-spacing:-0.920000pt;}
.ws44{word-spacing:-0.912000pt;}
.ws98{word-spacing:-0.880000pt;}
.ws18{word-spacing:-0.864000pt;}
.ws90{word-spacing:-0.840000pt;}
.ws78{word-spacing:-0.816000pt;}
.ws9c{word-spacing:-0.800000pt;}
.ws7a{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.720000pt;}
.ws22{word-spacing:-0.672000pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.624000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.528000pt;}
.ws91{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.432000pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.288000pt;}
.ws66{word-spacing:-0.240000pt;}
.ws8e{word-spacing:-0.234667pt;}
.ws93{word-spacing:-0.200000pt;}
.ws8{word-spacing:-0.192000pt;}
.ws79{word-spacing:-0.187200pt;}
.ws9a{word-spacing:-0.160000pt;}
.ws51{word-spacing:-0.048000pt;}
.ws6{word-spacing:-0.029467pt;}
.ws7{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.040000pt;}
.wsc{word-spacing:0.048000pt;}
.ws4a{word-spacing:0.096000pt;}
.ws2f{word-spacing:0.112000pt;}
.wsa3{word-spacing:0.120000pt;}
.ws53{word-spacing:0.144000pt;}
.ws26{word-spacing:0.192000pt;}
.wsf{word-spacing:0.226667pt;}
.ws46{word-spacing:0.240000pt;}
.ws23{word-spacing:0.288000pt;}
.ws7b{word-spacing:0.336000pt;}
.ws3c{word-spacing:0.373333pt;}
.ws1b{word-spacing:0.384000pt;}
.ws87{word-spacing:0.432000pt;}
.wsa1{word-spacing:0.440000pt;}
.ws97{word-spacing:0.480000pt;}
.ws49{word-spacing:0.528000pt;}
.ws4e{word-spacing:0.576000pt;}
.wsa{word-spacing:0.624000pt;}
.ws42{word-spacing:0.672000pt;}
.ws47{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.816000pt;}
.ws4c{word-spacing:0.864000pt;}
.ws95{word-spacing:0.880000pt;}
.ws54{word-spacing:0.912000pt;}
.ws96{word-spacing:0.920000pt;}
.ws50{word-spacing:1.008000pt;}
.ws48{word-spacing:1.056000pt;}
.ws19{word-spacing:1.104000pt;}
.wse{word-spacing:1.133333pt;}
.ws7c{word-spacing:1.248000pt;}
.ws1a{word-spacing:1.296000pt;}
.ws2e{word-spacing:1.344000pt;}
.ws43{word-spacing:1.392000pt;}
.ws4d{word-spacing:1.488000pt;}
.ws4b{word-spacing:1.536000pt;}
.ws89{word-spacing:1.584000pt;}
.ws70{word-spacing:1.632000pt;}
.ws8a{word-spacing:1.680000pt;}
.ws1f{word-spacing:1.776000pt;}
.ws45{word-spacing:1.824000pt;}
.ws1d{word-spacing:1.872000pt;}
.ws85{word-spacing:1.920000pt;}
.ws74{word-spacing:2.112000pt;}
.ws8d{word-spacing:2.208000pt;}
.ws86{word-spacing:2.256000pt;}
.ws72{word-spacing:2.496000pt;}
.wsa6{word-spacing:2.688000pt;}
.wsa7{word-spacing:2.784000pt;}
.wsa4{word-spacing:2.832000pt;}
.wsa5{word-spacing:2.976000pt;}
.ws75{word-spacing:3.024000pt;}
.ws6d{word-spacing:3.072000pt;}
.ws12{word-spacing:3.082667pt;}
.ws69{word-spacing:3.168000pt;}
.ws7d{word-spacing:3.360000pt;}
.ws6f{word-spacing:3.504000pt;}
.ws88{word-spacing:4.464000pt;}
.wsaa{word-spacing:5.040000pt;}
.ws6c{word-spacing:5.328000pt;}
.ws6b{word-spacing:5.424000pt;}
.wsab{word-spacing:5.568000pt;}
.wsa8{word-spacing:5.760000pt;}
.wsa9{word-spacing:6.000000pt;}
.ws24{word-spacing:7.440000pt;}
.ws11{word-spacing:7.616000pt;}
.ws10{word-spacing:15.776000pt;}
.ws62{word-spacing:25.984000pt;}
.ws3b{word-spacing:32.181333pt;}
.ws60{word-spacing:43.194667pt;}
.ws5c{word-spacing:58.277333pt;}
.ws63{word-spacing:60.666667pt;}
.ws5f{word-spacing:62.570667pt;}
.ws5d{word-spacing:76.197329pt;}
.ws61{word-spacing:107.818667pt;}
.ws37{word-spacing:108.830392pt;}
.ws35{word-spacing:151.946659pt;}
.ws33{word-spacing:156.575994pt;}
.ws36{word-spacing:159.674659pt;}
.ws3a{word-spacing:165.237327pt;}
.ws39{word-spacing:168.186660pt;}
.ws32{word-spacing:175.317333pt;}
.ws34{word-spacing:176.926394pt;}
.ws57{word-spacing:233.822400pt;}
.ws2b{word-spacing:237.447457pt;}
.ws5e{word-spacing:272.906667pt;}
.ws64{word-spacing:275.669333pt;}
.ws28{word-spacing:288.063990pt;}
.ws65{word-spacing:295.568000pt;}
.ws5b{word-spacing:302.064000pt;}
.ws59{word-spacing:302.067733pt;}
.ws29{word-spacing:314.159990pt;}
.ws2a{word-spacing:329.839990pt;}
.ws2c{word-spacing:336.186657pt;}
.ws27{word-spacing:409.658657pt;}
._42{margin-left:-2091.973322pt;}
._67{margin-left:-12.292267pt;}
._6{margin-left:-11.322712pt;}
._40{margin-left:-10.007467pt;}
._f{margin-left:-8.235734pt;}
._6a{margin-left:-6.536267pt;}
._2{margin-left:-5.574400pt;}
._4{margin-left:-4.638400pt;}
._3{margin-left:-3.459609pt;}
._0{margin-left:-1.668267pt;}
._5{width:1.147733pt;}
._c{width:2.819733pt;}
._65{width:3.725867pt;}
._a{width:4.705600pt;}
._9{width:6.500800pt;}
._e{width:8.331200pt;}
._68{width:9.924800pt;}
._69{width:11.739200pt;}
._8{width:12.811195pt;}
._b{width:13.745067pt;}
._7{width:14.660800pt;}
._6b{width:16.040000pt;}
._2c{width:26.245333pt;}
._2b{width:29.231994pt;}
._2a{width:31.546667pt;}
._56{width:33.854964pt;}
._29{width:35.149867pt;}
._26{width:39.620267pt;}
._66{width:41.349845pt;}
._d{width:42.950952pt;}
._10{width:49.154112pt;}
._49{width:50.978129pt;}
._2f{width:52.105592pt;}
._53{width:54.345600pt;}
._54{width:57.917867pt;}
._50{width:59.341871pt;}
._4f{width:60.536533pt;}
._2e{width:65.799467pt;}
._25{width:66.852257pt;}
._5b{width:67.907200pt;}
._62{width:76.134408pt;}
._1f{width:77.130657pt;}
._4e{width:79.063477pt;}
._51{width:82.642133pt;}
._1a{width:85.155190pt;}
._1c{width:94.323190pt;}
._5f{width:95.498667pt;}
._5a{width:98.871876pt;}
._33{width:102.479992pt;}
._27{width:104.505061pt;}
._60{width:106.075742pt;}
._3f{width:108.527992pt;}
._4a{width:112.410671pt;}
._47{width:113.878404pt;}
._52{width:115.005867pt;}
._31{width:117.562659pt;}
._28{width:123.199994pt;}
._38{width:124.830925pt;}
._55{width:130.499214pt;}
._64{width:132.925867pt;}
._21{width:142.674124pt;}
._2d{width:146.383992pt;}
._4c{width:148.232538pt;}
._4b{width:151.004800pt;}
._46{width:152.133333pt;}
._24{width:154.809590pt;}
._48{width:159.126408pt;}
._32{width:160.047992pt;}
._59{width:166.250689pt;}
._4d{width:168.074667pt;}
._36{width:171.658660pt;}
._35{width:173.973333pt;}
._34{width:177.370667pt;}
._63{width:182.436267pt;}
._57{width:187.786667pt;}
._41{width:192.838379pt;}
._37{width:194.730667pt;}
._30{width:195.775992pt;}
._3c{width:197.680000pt;}
._3a{width:200.405333pt;}
._5d{width:202.556812pt;}
._39{width:203.802667pt;}
._61{width:208.133333pt;}
._3d{width:213.061327pt;}
._3b{width:216.010660pt;}
._5e{width:219.427205pt;}
._20{width:233.853857pt;}
._1e{width:234.887457pt;}
._17{width:245.796247pt;}
._45{width:248.266667pt;}
._3e{width:252.784000pt;}
._5c{width:265.991471pt;}
._19{width:272.932257pt;}
._1{width:289.966933pt;}
._43{width:300.048000pt;}
._1d{width:308.933324pt;}
._58{width:309.866667pt;}
._22{width:323.605324pt;}
._13{width:328.794657pt;}
._15{width:387.370657pt;}
._16{width:456.698646pt;}
._14{width:475.962646pt;}
._44{width:477.866654pt;}
._12{width:564.069312pt;}
._1b{width:565.114646pt;}
._23{width:582.287979pt;}
._18{width:600.227179pt;}
._11{width:662.741312pt;}
.fsb{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.843733pt;}
.y30{bottom:2.843867pt;}
.yb1{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y2f{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y81{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y2e{bottom:60.477735pt;}
.yb0{bottom:61.413876pt;}
.y53{bottom:61.818269pt;}
.y1cd{bottom:62.526799pt;}
.y111{bottom:63.893468pt;}
.y12d{bottom:64.554802pt;}
.yf3{bottom:68.446799pt;}
.y18c{bottom:71.097465pt;}
.y5f{bottom:73.480004pt;}
.y2d{bottom:73.811069pt;}
.y1cc{bottom:73.856799pt;}
.yaf{bottom:74.745876pt;}
.y52{bottom:75.150269pt;}
.y110{bottom:77.225468pt;}
.y12c{bottom:77.886802pt;}
.yf2{bottom:81.778799pt;}
.y18b{bottom:84.429465pt;}
.y1cb{bottom:85.186799pt;}
.y5e{bottom:86.812004pt;}
.y2c{bottom:87.144402pt;}
.yae{bottom:88.077876pt;}
.y10f{bottom:90.557468pt;}
.y12b{bottom:91.218802pt;}
.yf1{bottom:95.110799pt;}
.y1ca{bottom:96.516799pt;}
.y18a{bottom:97.761465pt;}
.y5d{bottom:100.144004pt;}
.y2b{bottom:100.483069pt;}
.yad{bottom:101.409876pt;}
.y10e{bottom:103.889468pt;}
.y51{bottom:104.492935pt;}
.y12a{bottom:104.550802pt;}
.y1c9{bottom:107.846799pt;}
.yf0{bottom:108.442799pt;}
.y208{bottom:110.588804pt;}
.y189{bottom:111.093465pt;}
.y5c{bottom:113.476004pt;}
.y2a{bottom:113.811069pt;}
.yac{bottom:114.741876pt;}
.y10d{bottom:117.221468pt;}
.y50{bottom:117.824935pt;}
.y129{bottom:117.884135pt;}
.y1c8{bottom:119.176799pt;}
.yef{bottom:121.774799pt;}
.y5b{bottom:126.808004pt;}
.y29{bottom:127.144402pt;}
.yab{bottom:128.073876pt;}
.y1c7{bottom:130.506799pt;}
.y10c{bottom:130.553468pt;}
.y4f{bottom:131.156935pt;}
.yee{bottom:135.106799pt;}
.y207{bottom:137.252803pt;}
.y188{bottom:140.430799pt;}
.y28{bottom:140.477735pt;}
.yaa{bottom:141.405876pt;}
.y1c6{bottom:141.836799pt;}
.y10b{bottom:143.885468pt;}
.y4e{bottom:144.488935pt;}
.y128{bottom:147.236135pt;}
.yed{bottom:148.438799pt;}
.y206{bottom:150.584803pt;}
.y1c5{bottom:153.166799pt;}
.y187{bottom:153.762799pt;}
.y27{bottom:153.816392pt;}
.ya9{bottom:154.737876pt;}
.y10a{bottom:157.228135pt;}
.y7f{bottom:157.370275pt;}
.y4d{bottom:157.820935pt;}
.y127{bottom:160.568135pt;}
.yec{bottom:161.770799pt;}
.y205{bottom:163.916803pt;}
.y1c4{bottom:164.496799pt;}
.y186{bottom:167.094799pt;}
.y26{bottom:167.144392pt;}
.ya8{bottom:168.069876pt;}
.y109{bottom:170.560135pt;}
.y7e{bottom:170.702275pt;}
.y4c{bottom:171.152935pt;}
.y126{bottom:173.900135pt;}
.yeb{bottom:175.102799pt;}
.y1c3{bottom:175.826799pt;}
.y204{bottom:177.248803pt;}
.y185{bottom:180.430799pt;}
.ya7{bottom:181.401876pt;}
.y108{bottom:183.892135pt;}
.y7d{bottom:184.034275pt;}
.y25{bottom:184.439067pt;}
.y4b{bottom:184.484935pt;}
.y1c2{bottom:187.156799pt;}
.y125{bottom:187.232135pt;}
.yea{bottom:188.434799pt;}
.y203{bottom:190.580803pt;}
.y184{bottom:193.762799pt;}
.y107{bottom:197.224135pt;}
.y7c{bottom:197.366275pt;}
.y4a{bottom:197.816935pt;}
.y1c1{bottom:198.486799pt;}
.y124{bottom:200.564135pt;}
.ye9{bottom:201.766799pt;}
.y202{bottom:203.912803pt;}
.y183{bottom:207.094799pt;}
.y1c0{bottom:209.816799pt;}
.y106{bottom:210.556135pt;}
.y7b{bottom:210.698275pt;}
.y49{bottom:211.150269pt;}
.y123{bottom:213.896135pt;}
.ye8{bottom:215.098799pt;}
.y201{bottom:217.244803pt;}
.y182{bottom:220.426799pt;}
.y1bf{bottom:221.146799pt;}
.y105{bottom:223.888135pt;}
.y7a{bottom:224.030275pt;}
.y23{bottom:225.444280pt;}
.y122{bottom:227.228135pt;}
.ye7{bottom:228.430799pt;}
.y200{bottom:230.576803pt;}
.y1be{bottom:232.476799pt;}
.y104{bottom:237.220135pt;}
.y79{bottom:237.362275pt;}
.y22{bottom:238.776280pt;}
.y48{bottom:240.500935pt;}
.y121{bottom:240.560135pt;}
.ye6{bottom:241.762799pt;}
.y1bd{bottom:243.806799pt;}
.y181{bottom:249.764132pt;}
.y103{bottom:250.552135pt;}
.y1ff{bottom:250.567327pt;}
.y78{bottom:250.694275pt;}
.y21{bottom:252.108280pt;}
.y47{bottom:253.832935pt;}
.y120{bottom:253.892135pt;}
.ye5{bottom:255.094799pt;}
.y1bc{bottom:255.136799pt;}
.y180{bottom:263.096132pt;}
.y1fe{bottom:263.899327pt;}
.y102{bottom:263.902781pt;}
.y20{bottom:265.440280pt;}
.y1bb{bottom:266.466799pt;}
.y46{bottom:267.164935pt;}
.y11f{bottom:267.224135pt;}
.ye4{bottom:268.461465pt;}
.y17f{bottom:276.428132pt;}
.y101{bottom:277.234781pt;}
.y1ba{bottom:277.796799pt;}
.y1f{bottom:278.772280pt;}
.y45{bottom:280.496935pt;}
.y11e{bottom:280.556135pt;}
.ye3{bottom:281.793465pt;}
.y1fd{bottom:283.903327pt;}
.y1b9{bottom:289.126799pt;}
.y17e{bottom:289.762799pt;}
.y100{bottom:290.566781pt;}
.y1e{bottom:292.104280pt;}
.y44{bottom:293.828935pt;}
.y11d{bottom:293.888135pt;}
.ye2{bottom:295.125465pt;}
.y1b8{bottom:300.456799pt;}
.y17d{bottom:303.094799pt;}
.yff{bottom:303.898781pt;}
.y1fc{bottom:303.907327pt;}
.y43{bottom:307.160935pt;}
.y11c{bottom:307.220135pt;}
.ye1{bottom:308.457465pt;}
.y1b7{bottom:311.786799pt;}
.y17c{bottom:316.437465pt;}
.yfe{bottom:317.230781pt;}
.y42{bottom:320.492935pt;}
.y11b{bottom:320.552135pt;}
.ye0{bottom:321.789465pt;}
.y1b6{bottom:323.116799pt;}
.y1fb{bottom:323.911327pt;}
.y17b{bottom:329.769465pt;}
.yfd{bottom:330.562781pt;}
.y1d{bottom:332.232280pt;}
.y41{bottom:333.824935pt;}
.y11a{bottom:333.884135pt;}
.y1b5{bottom:334.446799pt;}
.ydf{bottom:335.121465pt;}
.y1fa{bottom:337.243327pt;}
.y17a{bottom:343.101465pt;}
.yfc{bottom:343.894781pt;}
.y1b4{bottom:345.776799pt;}
.y1c{bottom:346.896280pt;}
.y40{bottom:347.156935pt;}
.yde{bottom:348.453465pt;}
.y1f9{bottom:350.576660pt;}
.y179{bottom:356.433465pt;}
.y1b3{bottom:357.106799pt;}
.yfb{bottom:357.226781pt;}
.y3f{bottom:360.488935pt;}
.y1b{bottom:361.560280pt;}
.ydd{bottom:361.785465pt;}
.y1b2{bottom:368.436799pt;}
.y178{bottom:369.765465pt;}
.yfa{bottom:370.558781pt;}
.y3e{bottom:373.820935pt;}
.ydc{bottom:375.117465pt;}
.y1a{bottom:376.224280pt;}
.y1f8{bottom:377.278156pt;}
.y1b1{bottom:379.766799pt;}
.y177{bottom:383.097465pt;}
.yf9{bottom:383.890781pt;}
.y3d{bottom:387.152935pt;}
.y136{bottom:387.217714pt;}
.ydb{bottom:388.449465pt;}
.y1f7{bottom:390.610156pt;}
.y19{bottom:390.888280pt;}
.y1b0{bottom:391.096799pt;}
.y176{bottom:396.429465pt;}
.yf8{bottom:397.222781pt;}
.y3c{bottom:400.484935pt;}
.y135{bottom:400.549714pt;}
.yda{bottom:401.781465pt;}
.y1af{bottom:402.426799pt;}
.y1f6{bottom:403.942156pt;}
.y18{bottom:405.552280pt;}
.y175{bottom:409.761465pt;}
.yf7{bottom:410.554781pt;}
.y1ae{bottom:413.760132pt;}
.y3b{bottom:413.828935pt;}
.y134{bottom:413.889714pt;}
.yd9{bottom:415.113465pt;}
.y1f5{bottom:417.274156pt;}
.y17{bottom:420.216280pt;}
.y174{bottom:423.093465pt;}
.yf6{bottom:423.886781pt;}
.y3a{bottom:427.160935pt;}
.y133{bottom:427.221714pt;}
.yd8{bottom:428.445465pt;}
.y1f4{bottom:430.606156pt;}
.y16{bottom:434.880280pt;}
.yf5{bottom:437.218781pt;}
.y39{bottom:440.492935pt;}
.y132{bottom:440.553714pt;}
.yd7{bottom:441.777465pt;}
.y1f3{bottom:443.938156pt;}
.y15{bottom:449.544280pt;}
.yf4{bottom:450.550781pt;}
.y173{bottom:452.438799pt;}
.y38{bottom:453.824935pt;}
.y131{bottom:453.885714pt;}
.yd6{bottom:455.109465pt;}
.y1f2{bottom:457.270156pt;}
.y1ad{bottom:457.760132pt;}
.y14{bottom:464.208280pt;}
.y172{bottom:465.770799pt;}
.y37{bottom:467.156935pt;}
.y130{bottom:467.217714pt;}
.yd5{bottom:468.441465pt;}
.y1f1{bottom:470.602156pt;}
.y13{bottom:478.872280pt;}
.y171{bottom:479.102799pt;}
.y36{bottom:480.488935pt;}
.y12f{bottom:480.549714pt;}
.yd4{bottom:481.773465pt;}
.y1f0{bottom:483.934156pt;}
.y1ac{bottom:484.428132pt;}
.y119{bottom:489.370784pt;}
.y170{bottom:492.434799pt;}
.y12{bottom:493.536280pt;}
.y35{bottom:493.820935pt;}
.y12e{bottom:493.881714pt;}
.yd3{bottom:495.105465pt;}
.y1ef{bottom:497.266156pt;}
.y1ab{bottom:497.760132pt;}
.y118{bottom:502.702784pt;}
.y16f{bottom:505.766799pt;}
.y34{bottom:507.152935pt;}
.y11{bottom:508.200280pt;}
.yd2{bottom:508.437465pt;}
.y1ee{bottom:510.598156pt;}
.y1aa{bottom:511.093465pt;}
.y117{bottom:516.034784pt;}
.y16e{bottom:519.098799pt;}
.y33{bottom:520.484935pt;}
.yd1{bottom:521.769465pt;}
.y158{bottom:522.671099pt;}
.y10{bottom:522.864280pt;}
.y1ed{bottom:523.930156pt;}
.y116{bottom:529.366784pt;}
.y16d{bottom:532.430799pt;}
.y32{bottom:533.816935pt;}
.yd0{bottom:535.101465pt;}
.y1ec{bottom:537.262156pt;}
.yf{bottom:537.528280pt;}
.y1a9{bottom:537.770799pt;}
.y157{bottom:538.257766pt;}
.y115{bottom:542.698784pt;}
.y16c{bottom:545.762799pt;}
.y156{bottom:548.253766pt;}
.ycf{bottom:548.433465pt;}
.y1eb{bottom:550.594156pt;}
.y1a8{bottom:551.102799pt;}
.y114{bottom:556.030784pt;}
.y16b{bottom:559.094799pt;}
.yce{bottom:561.765465pt;}
.y155{bottom:563.840432pt;}
.y1ea{bottom:563.926156pt;}
.ye{bottom:564.194946pt;}
.y1a7{bottom:564.434799pt;}
.y113{bottom:569.362784pt;}
.y16a{bottom:572.426799pt;}
.y59{bottom:573.314650pt;}
.y154{bottom:573.836432pt;}
.ycd{bottom:575.097465pt;}
.y1e9{bottom:577.258156pt;}
.y1a6{bottom:577.766799pt;}
.yd{bottom:580.194946pt;}
.y112{bottom:582.694784pt;}
.y58{bottom:586.646650pt;}
.ycc{bottom:588.429465pt;}
.y153{bottom:589.423099pt;}
.y1e8{bottom:590.590156pt;}
.y1a5{bottom:591.098799pt;}
.yc{bottom:596.194946pt;}
.y62{bottom:598.688539pt;}
.y152{bottom:599.419099pt;}
.y57{bottom:599.978650pt;}
.ycb{bottom:601.761465pt;}
.y169{bottom:601.781506pt;}
.y1e7{bottom:603.922156pt;}
.y1a4{bottom:604.430799pt;}
.y8b{bottom:608.559088pt;}
.y61{bottom:612.020539pt;}
.yb{bottom:612.194946pt;}
.y56{bottom:613.310650pt;}
.y151{bottom:615.005766pt;}
.yca{bottom:615.112173pt;}
.y168{bottom:615.113506pt;}
.y1e6{bottom:617.254156pt;}
.y1a3{bottom:617.762799pt;}
.y8a{bottom:621.891088pt;}
.y150{bottom:625.001766pt;}
.y60{bottom:625.352539pt;}
.y55{bottom:626.642650pt;}
.yc9{bottom:628.444173pt;}
.y167{bottom:628.445506pt;}
.y1e5{bottom:630.586156pt;}
.y1a2{bottom:631.094799pt;}
.y89{bottom:635.223088pt;}
.y54{bottom:639.974650pt;}
.y14f{bottom:640.588432pt;}
.ya{bottom:641.501572pt;}
.yc8{bottom:641.776173pt;}
.y166{bottom:641.777506pt;}
.y1e4{bottom:643.918156pt;}
.y1a1{bottom:644.436173pt;}
.y88{bottom:648.555088pt;}
.y77{bottom:653.783171pt;}
.yc7{bottom:655.108173pt;}
.y165{bottom:655.109506pt;}
.y14e{bottom:656.175099pt;}
.y1e3{bottom:657.250156pt;}
.y1a0{bottom:657.768173pt;}
.y87{bottom:661.887088pt;}
.yc6{bottom:668.440173pt;}
.y164{bottom:668.441506pt;}
.y76{bottom:669.369837pt;}
.y1e2{bottom:670.582156pt;}
.y19f{bottom:671.100173pt;}
.y14d{bottom:671.761766pt;}
.y86{bottom:675.219088pt;}
.y9{bottom:681.506906pt;}
.yc5{bottom:681.772173pt;}
.y163{bottom:681.773506pt;}
.y1e1{bottom:683.914156pt;}
.y19e{bottom:684.432173pt;}
.y75{bottom:684.956504pt;}
.y14c{bottom:687.348432pt;}
.y85{bottom:688.551088pt;}
.yc4{bottom:695.104173pt;}
.y162{bottom:695.105506pt;}
.y1e0{bottom:697.246156pt;}
.y19d{bottom:697.764173pt;}
.y74{bottom:700.543171pt;}
.y84{bottom:701.883088pt;}
.y14b{bottom:702.935099pt;}
.yc3{bottom:708.436173pt;}
.y161{bottom:708.437506pt;}
.y1df{bottom:710.578156pt;}
.y19c{bottom:711.096173pt;}
.y83{bottom:715.215088pt;}
.y73{bottom:716.129837pt;}
.y14a{bottom:718.521766pt;}
.y8{bottom:721.512239pt;}
.yc2{bottom:721.768173pt;}
.y160{bottom:721.769506pt;}
.y1de{bottom:723.910156pt;}
.y19b{bottom:724.428173pt;}
.y149{bottom:728.517766pt;}
.y72{bottom:731.716504pt;}
.yc1{bottom:735.100173pt;}
.y15f{bottom:735.101506pt;}
.y1dd{bottom:737.243490pt;}
.y19a{bottom:737.760173pt;}
.y148{bottom:744.104432pt;}
.ya6{bottom:744.123177pt;}
.y71{bottom:747.303171pt;}
.yc0{bottom:748.432173pt;}
.y15e{bottom:748.433506pt;}
.y147{bottom:754.100432pt;}
.ya5{bottom:759.709844pt;}
.y7{bottom:761.517572pt;}
.ybf{bottom:761.764173pt;}
.y15d{bottom:761.765506pt;}
.y70{bottom:762.889837pt;}
.y1dc{bottom:765.214030pt;}
.y199{bottom:767.096173pt;}
.y146{bottom:769.687099pt;}
.ybe{bottom:775.096173pt;}
.y15c{bottom:775.097506pt;}
.ya4{bottom:775.296511pt;}
.y6f{bottom:778.476504pt;}
.y1db{bottom:778.547363pt;}
.y198{bottom:780.428173pt;}
.y145{bottom:785.273766pt;}
.ybd{bottom:788.428173pt;}
.y15b{bottom:788.429506pt;}
.ya1{bottom:790.864511pt;}
.ya2{bottom:790.873844pt;}
.ya3{bottom:790.883177pt;}
.y197{bottom:793.777506pt;}
.y6e{bottom:794.063171pt;}
.y144{bottom:795.269766pt;}
.ya0{bottom:800.860511pt;}
.y6{bottom:801.522906pt;}
.ybc{bottom:801.760173pt;}
.y15a{bottom:801.761506pt;}
.y1da{bottom:805.220697pt;}
.y196{bottom:807.109506pt;}
.y6d{bottom:809.649837pt;}
.y140{bottom:810.828432pt;}
.y141{bottom:810.837766pt;}
.y142{bottom:810.847099pt;}
.y143{bottom:810.856432pt;}
.ybb{bottom:815.093506pt;}
.y13f{bottom:815.821766pt;}
.y9f{bottom:816.447177pt;}
.y1d9{bottom:818.552697pt;}
.y195{bottom:820.441506pt;}
.y6c{bottom:825.236504pt;}
.y1d8{bottom:831.884697pt;}
.y9e{bottom:832.033844pt;}
.y194{bottom:833.773506pt;}
.y13e{bottom:836.411099pt;}
.y6b{bottom:840.823171pt;}
.y5{bottom:841.528239pt;}
.yba{bottom:844.433506pt;}
.y1d7{bottom:845.216697pt;}
.y193{bottom:847.105506pt;}
.y9d{bottom:847.620511pt;}
.y24{bottom:848.326009pt;}
.y13d{bottom:851.997766pt;}
.y6a{bottom:856.409837pt;}
.yb9{bottom:857.765506pt;}
.y1d6{bottom:858.548697pt;}
.y192{bottom:860.437506pt;}
.y9c{bottom:863.207177pt;}
.y13c{bottom:867.584432pt;}
.yb8{bottom:871.097506pt;}
.y1d5{bottom:871.880697pt;}
.y69{bottom:871.996504pt;}
.y191{bottom:873.769506pt;}
.y9b{bottom:878.793844pt;}
.y13b{bottom:883.171099pt;}
.yb7{bottom:884.429506pt;}
.y1d4{bottom:885.214030pt;}
.y190{bottom:887.101506pt;}
.y68{bottom:887.576432pt;}
.y13a{bottom:893.167099pt;}
.y9a{bottom:894.380511pt;}
.yb6{bottom:897.761506pt;}
.y18f{bottom:900.433506pt;}
.y67{bottom:903.163099pt;}
.y139{bottom:908.753766pt;}
.y99{bottom:909.967177pt;}
.yb5{bottom:911.093506pt;}
.y1d3{bottom:911.897363pt;}
.y18e{bottom:913.765506pt;}
.y66{bottom:918.749766pt;}
.y1d2{bottom:923.227363pt;}
.y137{bottom:924.339193pt;}
.y138{bottom:924.340432pt;}
.y159{bottom:924.426839pt;}
.y90{bottom:925.525847pt;}
.y95{bottom:925.544512pt;}
.y98{bottom:925.553844pt;}
.y18d{bottom:927.097506pt;}
.y65{bottom:934.336432pt;}
.y1d1{bottom:934.557363pt;}
.y8f{bottom:935.521847pt;}
.y94{bottom:935.540512pt;}
.y97{bottom:935.549844pt;}
.yb4{bottom:940.429506pt;}
.y8e{bottom:945.517847pt;}
.y93{bottom:945.536512pt;}
.y96{bottom:945.545844pt;}
.y1d0{bottom:945.887363pt;}
.y64{bottom:949.923099pt;}
.yb3{bottom:953.761506pt;}
.y8d{bottom:955.513847pt;}
.y92{bottom:955.532512pt;}
.y1cf{bottom:957.217363pt;}
.y63{bottom:965.509766pt;}
.y8c{bottom:965.509847pt;}
.y91{bottom:965.528512pt;}
.yb2{bottom:967.093506pt;}
.y1ce{bottom:968.547363pt;}
.y5a{bottom:1013.902507pt;}
.y82{bottom:1013.996908pt;}
.y31{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.hb{height:21.193555pt;}
.h2{height:30.687500pt;}
.h27{height:31.476562pt;}
.hf{height:32.605469pt;}
.h8{height:34.523438pt;}
.h17{height:36.922667pt;}
.h11{height:37.038880pt;}
.h18{height:37.093418pt;}
.h16{height:38.229333pt;}
.h2a{height:39.560000pt;}
.h28{height:40.080000pt;}
.h3{height:40.604167pt;}
.h29{height:40.960000pt;}
.h14{height:42.195312pt;}
.h10{height:43.099260pt;}
.hd{height:43.099301pt;}
.he{height:43.120594pt;}
.hc{height:43.141927pt;}
.h6{height:43.600260pt;}
.h7{height:43.718750pt;}
.h12{height:43.887578pt;}
.h2b{height:44.834667pt;}
.h9{height:47.472000pt;}
.h1e{height:47.518101pt;}
.h1d{height:47.581938pt;}
.h1f{height:47.582182pt;}
.h25{height:47.587271pt;}
.h13{height:47.608767pt;}
.h22{height:47.614101pt;}
.h20{height:47.614141pt;}
.h26{height:47.619271pt;}
.h21{height:47.624279pt;}
.h24{height:47.640767pt;}
.h23{height:47.646101pt;}
.h15{height:49.152000pt;}
.h4{height:50.755208pt;}
.h1c{height:56.933333pt;}
.ha{height:69.046875pt;}
.h1b{height:76.906667pt;}
.h1a{height:76.944000pt;}
.h19{height:78.213333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.425200pt;}
.x3{left:54.803202pt;}
.x12{left:58.986685pt;}
.x6{left:125.685069pt;}
.xc{left:126.690664pt;}
.xd{left:195.561330pt;}
.x15{left:203.326009pt;}
.x5{left:207.874003pt;}
.xb{left:212.063728pt;}
.x8{left:223.874003pt;}
.x1d{left:225.874003pt;}
.x19{left:229.683344pt;}
.x13{left:263.508150pt;}
.x1f{left:268.887858pt;}
.xa{left:321.702393pt;}
.x1a{left:340.274011pt;}
.x14{left:398.290815pt;}
.x16{left:428.520676pt;}
.xe{left:465.807994pt;}
.x17{left:473.451342pt;}
.x1b{left:499.799340pt;}
.x4{left:521.612549pt;}
.xf{left:533.250659pt;}
.x10{left:599.955991pt;}
.x1c{left:610.390006pt;}
.x11{left:676.591991pt;}
.x18{left:698.646009pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1e{left:727.865560pt;}
.x1{left:733.334391pt;}
}


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