
/* 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_9c43f3e53fe6.woff")format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_323b4831d6bc.woff")format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_4589625ccee2.woff")format("woff");}.ff3{font-family:ff3;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.ls2{letter-spacing:-0.912000px;}
.ls3{letter-spacing:-0.504000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.368000px;}
.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;}
}
.ws1{word-spacing:-19.368000px;}
.ws91{word-spacing:-16.500000px;}
.ws0{word-spacing:-13.500000px;}
.ws6e{word-spacing:-12.000000px;}
.ws6f{word-spacing:-11.088000px;}
.ws2{word-spacing:-10.500000px;}
.wsa1{word-spacing:-9.996000px;}
.ws3{word-spacing:-8.775000px;}
.ws4{word-spacing:-7.800000px;}
.ws15{word-spacing:-3.444000px;}
.ws84{word-spacing:-2.808000px;}
.ws7f{word-spacing:-2.753995px;}
.ws4e{word-spacing:-2.592000px;}
.ws47{word-spacing:-2.538000px;}
.wsbc{word-spacing:-2.436000px;}
.ws95{word-spacing:-2.430000px;}
.wsb9{word-spacing:-2.394000px;}
.ws51{word-spacing:-2.376000px;}
.ws80{word-spacing:-2.268000px;}
.ws83{word-spacing:-2.214000px;}
.ws2b{word-spacing:-2.106000px;}
.wsc1{word-spacing:-2.058000px;}
.ws56{word-spacing:-2.052000px;}
.ws7d{word-spacing:-1.998000px;}
.ws5f{word-spacing:-1.890000px;}
.ws9c{word-spacing:-1.782000px;}
.wsc0{word-spacing:-1.764000px;}
.ws87{word-spacing:-1.728000px;}
.wsbb{word-spacing:-1.722000px;}
.ws82{word-spacing:-1.674000px;}
.ws34{word-spacing:-1.566000px;}
.ws2e{word-spacing:-1.458000px;}
.ws3a{word-spacing:-1.404000px;}
.ws7{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.302000px;}
.ws1f{word-spacing:-1.242000px;}
.ws96{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.134000px;}
.ws9a{word-spacing:-1.080000px;}
.wsab{word-spacing:-1.050000px;}
.ws2a{word-spacing:-1.026000px;}
.wsad{word-spacing:-0.924000px;}
.wsd{word-spacing:-0.918000px;}
.wsc6{word-spacing:-0.840000px;}
.ws3c{word-spacing:-0.810000px;}
.wsbf{word-spacing:-0.798000px;}
.ws35{word-spacing:-0.756000px;}
.wsb0{word-spacing:-0.714000px;}
.ws17{word-spacing:-0.702000px;}
.ws81{word-spacing:-0.648000px;}
.wsb3{word-spacing:-0.630000px;}
.ws3d{word-spacing:-0.594000px;}
.ws52{word-spacing:-0.540000px;}
.ws50{word-spacing:-0.486000px;}
.wsba{word-spacing:-0.462000px;}
.ws2c{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.324000px;}
.wsaf{word-spacing:-0.294000px;}
.ws59{word-spacing:-0.270000px;}
.wsa9{word-spacing:-0.252000px;}
.ws6d{word-spacing:-0.162000px;}
.ws99{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.054000px;}
.wsae{word-spacing:-0.042000px;}
.ws8{word-spacing:0.000000px;}
.ws55{word-spacing:0.054000px;}
.ws4f{word-spacing:0.108000px;}
.ws90{word-spacing:0.162000px;}
.wsb5{word-spacing:0.168000px;}
.wse{word-spacing:0.216000px;}
.ws8d{word-spacing:0.270000px;}
.ws8b{word-spacing:0.324000px;}
.ws33{word-spacing:0.378000px;}
.ws70{word-spacing:0.486000px;}
.ws27{word-spacing:0.540000px;}
.ws6a{word-spacing:0.594000px;}
.ws25{word-spacing:0.648000px;}
.ws69{word-spacing:0.756000px;}
.ws4d{word-spacing:0.810000px;}
.ws45{word-spacing:0.864000px;}
.wsaa{word-spacing:0.882000px;}
.ws5a{word-spacing:0.918000px;}
.wsb7{word-spacing:0.924000px;}
.wsb6{word-spacing:0.966000px;}
.ws64{word-spacing:0.972000px;}
.ws4c{word-spacing:1.026000px;}
.ws5b{word-spacing:1.080000px;}
.ws48{word-spacing:1.134000px;}
.ws2f{word-spacing:1.188000px;}
.ws23{word-spacing:1.242000px;}
.ws3b{word-spacing:1.296000px;}
.wsb1{word-spacing:1.302000px;}
.ws71{word-spacing:1.350000px;}
.ws13{word-spacing:1.404000px;}
.wsc5{word-spacing:1.428000px;}
.ws9e{word-spacing:1.470000px;}
.ws22{word-spacing:1.512000px;}
.ws54{word-spacing:1.566000px;}
.ws21{word-spacing:1.620000px;}
.ws2d{word-spacing:1.674000px;}
.wsc3{word-spacing:1.680000px;}
.ws12{word-spacing:1.890000px;}
.wsa7{word-spacing:1.932000px;}
.ws6c{word-spacing:1.944000px;}
.ws20{word-spacing:1.998000px;}
.ws42{word-spacing:2.052000px;}
.wsa2{word-spacing:2.058000px;}
.wsbd{word-spacing:2.100000px;}
.ws46{word-spacing:2.106000px;}
.ws77{word-spacing:2.160000px;}
.ws14{word-spacing:2.268000px;}
.ws9f{word-spacing:2.310000px;}
.ws8e{word-spacing:2.376000px;}
.ws30{word-spacing:2.430000px;}
.ws44{word-spacing:2.484000px;}
.ws31{word-spacing:2.538000px;}
.ws1d{word-spacing:2.592000px;}
.wsa0{word-spacing:2.646000px;}
.wsb2{word-spacing:2.688000px;}
.ws67{word-spacing:2.700000px;}
.ws1e{word-spacing:2.753995px;}
.ws6b{word-spacing:2.808000px;}
.wsbe{word-spacing:2.856000px;}
.ws29{word-spacing:2.862000px;}
.wsa{word-spacing:2.916000px;}
.ws9d{word-spacing:2.940000px;}
.ws11{word-spacing:3.024000px;}
.ws16{word-spacing:3.078000px;}
.ws8a{word-spacing:3.132000px;}
.wsc{word-spacing:3.186000px;}
.ws7c{word-spacing:3.240000px;}
.wsa4{word-spacing:3.276000px;}
.wsb{word-spacing:3.294000px;}
.ws7a{word-spacing:3.348000px;}
.ws57{word-spacing:3.402000px;}
.ws9b{word-spacing:3.456000px;}
.ws92{word-spacing:3.510000px;}
.ws5e{word-spacing:3.564000px;}
.wsc2{word-spacing:3.570000px;}
.ws61{word-spacing:3.618000px;}
.ws97{word-spacing:3.672000px;}
.ws86{word-spacing:3.726000px;}
.ws53{word-spacing:3.780000px;}
.ws10{word-spacing:3.833995px;}
.ws78{word-spacing:3.888000px;}
.ws36{word-spacing:3.942000px;}
.ws18{word-spacing:3.996000px;}
.ws85{word-spacing:4.158000px;}
.ws4a{word-spacing:4.212000px;}
.ws7b{word-spacing:4.266000px;}
.ws63{word-spacing:4.320000px;}
.ws66{word-spacing:4.374000px;}
.ws60{word-spacing:4.428000px;}
.wsc4{word-spacing:4.452000px;}
.ws68{word-spacing:4.482000px;}
.ws73{word-spacing:4.697995px;}
.wsa3{word-spacing:4.746000px;}
.ws26{word-spacing:4.806000px;}
.ws4b{word-spacing:4.860000px;}
.ws5d{word-spacing:4.968000px;}
.ws98{word-spacing:5.076000px;}
.ws3e{word-spacing:5.130000px;}
.ws39{word-spacing:5.184000px;}
.ws8c{word-spacing:5.238000px;}
.ws49{word-spacing:5.346000px;}
.ws93{word-spacing:5.400000px;}
.ws75{word-spacing:5.454000px;}
.wsb8{word-spacing:5.544000px;}
.ws6{word-spacing:5.616000px;}
.ws58{word-spacing:5.670000px;}
.ws74{word-spacing:5.724000px;}
.ws43{word-spacing:5.886000px;}
.wsac{word-spacing:5.922000px;}
.ws8f{word-spacing:6.102000px;}
.ws76{word-spacing:6.156000px;}
.ws1a{word-spacing:6.210000px;}
.ws9{word-spacing:6.318000px;}
.ws32{word-spacing:6.588000px;}
.ws37{word-spacing:6.642000px;}
.ws1c{word-spacing:6.696000px;}
.ws88{word-spacing:6.858000px;}
.wsf{word-spacing:6.966000px;}
.ws19{word-spacing:7.074000px;}
.ws5c{word-spacing:7.128000px;}
.ws40{word-spacing:7.182000px;}
.ws62{word-spacing:7.344000px;}
.ws79{word-spacing:7.398000px;}
.ws89{word-spacing:7.560000px;}
.wsa6{word-spacing:7.602000px;}
.ws65{word-spacing:7.722000px;}
.ws3f{word-spacing:8.640000px;}
.ws41{word-spacing:8.694000px;}
.ws1b{word-spacing:9.396000px;}
.ws72{word-spacing:9.828000px;}
.wsa8{word-spacing:14.322000px;}
.ws5{word-spacing:16.500000px;}
.ws94{word-spacing:17.604000px;}
.wsa5{word-spacing:19.068000px;}
._c{margin-left:-16.362000px;}
._b{margin-left:-13.446000px;}
._7{margin-left:-10.500000px;}
._d{margin-left:-7.938092px;}
._4{margin-left:-4.179600px;}
._0{margin-left:-3.132000px;}
._1{margin-left:-1.296000px;}
._2{width:1.458000px;}
._3{width:2.959200px;}
._8{width:4.168800px;}
._9{width:5.778000px;}
._a{width:17.982000px;}
._6{width:27.552000px;}
._5{width:51.097200px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fs6{font-size:31.200000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:30.698550px;}
.y27{bottom:30.737700px;}
.y18e{bottom:74.895150px;}
.y184{bottom:74.926650px;}
.ye7{bottom:76.534650px;}
.yfb{bottom:76.585050px;}
.y112{bottom:76.598550px;}
.y94{bottom:76.600650px;}
.yc0{bottom:76.608150px;}
.y12c{bottom:76.612050px;}
.y168{bottom:76.674150px;}
.y18d{bottom:88.398150px;}
.y183{bottom:88.429650px;}
.ye6{bottom:94.530150px;}
.yfa{bottom:94.580550px;}
.y111{bottom:94.594050px;}
.y93{bottom:94.596150px;}
.ybf{bottom:94.603650px;}
.y12b{bottom:94.607550px;}
.y167{bottom:94.669650px;}
.y1d3{bottom:95.437650px;}
.y18c{bottom:101.901150px;}
.y182{bottom:101.932650px;}
.y2f{bottom:106.226700px;}
.y1d2{bottom:108.940650px;}
.yf9{bottom:112.576050px;}
.y110{bottom:112.589550px;}
.y92{bottom:112.591650px;}
.ybe{bottom:112.599150px;}
.y12a{bottom:112.603050px;}
.y166{bottom:112.665150px;}
.y12{bottom:113.486700px;}
.y18b{bottom:115.404150px;}
.y181{bottom:115.435650px;}
.y2e{bottom:119.729700px;}
.ye5{bottom:121.530150px;}
.y1d1{bottom:122.443650px;}
.y18a{bottom:128.907150px;}
.y180{bottom:128.938650px;}
.yf8{bottom:130.571550px;}
.y10f{bottom:130.585050px;}
.y91{bottom:130.587150px;}
.ybd{bottom:130.594650px;}
.y129{bottom:130.598550px;}
.y165{bottom:130.660650px;}
.y11{bottom:131.482200px;}
.y2d{bottom:133.232700px;}
.y1d0{bottom:135.946650px;}
.y189{bottom:142.410150px;}
.y17f{bottom:142.441650px;}
.y2c{bottom:146.735700px;}
.yf7{bottom:148.567050px;}
.y10e{bottom:148.580550px;}
.y90{bottom:148.582650px;}
.ybc{bottom:148.590150px;}
.y128{bottom:148.594050px;}
.y164{bottom:148.656150px;}
.y1cf{bottom:149.449650px;}
.y10{bottom:149.477700px;}
.y188{bottom:155.913150px;}
.y17e{bottom:155.944650px;}
.y2b{bottom:160.238700px;}
.y1ce{bottom:162.952650px;}
.ye4{bottom:166.161150px;}
.y10d{bottom:166.576050px;}
.y8f{bottom:166.578150px;}
.ybb{bottom:166.585650px;}
.y127{bottom:166.589550px;}
.y163{bottom:166.651650px;}
.yf{bottom:167.473200px;}
.y187{bottom:169.416150px;}
.y17d{bottom:169.447650px;}
.y2a{bottom:173.741700px;}
.yf6{bottom:175.567050px;}
.y1cd{bottom:176.455650px;}
.y186{bottom:182.919150px;}
.ye3{bottom:184.156650px;}
.y8e{bottom:184.573650px;}
.yba{bottom:184.581150px;}
.y126{bottom:184.585050px;}
.y162{bottom:184.647150px;}
.ye{bottom:185.468700px;}
.y29{bottom:187.244700px;}
.y1cc{bottom:189.958650px;}
.y17c{bottom:191.947650px;}
.y10c{bottom:193.576050px;}
.y185{bottom:196.422150px;}
.y28{bottom:200.747700px;}
.ye2{bottom:202.152150px;}
.y8d{bottom:202.569150px;}
.yb9{bottom:202.576650px;}
.y125{bottom:202.580550px;}
.y161{bottom:202.642650px;}
.y1cb{bottom:203.461650px;}
.yd{bottom:203.464200px;}
.y1ca{bottom:216.964650px;}
.yf5{bottom:219.064050px;}
.ye0{bottom:220.152150px;}
.y8c{bottom:220.564650px;}
.yb8{bottom:220.572150px;}
.y124{bottom:220.576050px;}
.y160{bottom:220.638150px;}
.yc{bottom:221.459700px;}
.ye1{bottom:224.643150px;}
.y1c9{bottom:230.467650px;}
.y17b{bottom:236.956650px;}
.yf4{bottom:237.059550px;}
.y10b{bottom:237.073050px;}
.yde{bottom:238.179150px;}
.y8b{bottom:238.560150px;}
.yb7{bottom:238.567650px;}
.y123{bottom:238.571550px;}
.yb{bottom:239.455200px;}
.ydf{bottom:242.643150px;}
.y1c8{bottom:243.970650px;}
.y15f{bottom:248.259150px;}
.y5f{bottom:248.650200px;}
.y17a{bottom:254.952150px;}
.yf3{bottom:255.055050px;}
.y10a{bottom:255.068550px;}
.ydd{bottom:256.174650px;}
.yb6{bottom:256.563150px;}
.y122{bottom:256.567050px;}
.y1c7{bottom:257.473650px;}
.y5e{bottom:262.153200px;}
.y8a{bottom:265.560150px;}
.y15e{bottom:266.254650px;}
.ya{bottom:266.455200px;}
.y1c6{bottom:270.976650px;}
.y179{bottom:272.947650px;}
.y109{bottom:273.064050px;}
.ydc{bottom:274.170150px;}
.yb5{bottom:274.558650px;}
.y121{bottom:274.562550px;}
.y5d{bottom:275.656200px;}
.yf2{bottom:282.055050px;}
.y89{bottom:283.555650px;}
.y15d{bottom:284.250150px;}
.y9{bottom:284.450700px;}
.y1c5{bottom:284.479650px;}
.y5c{bottom:289.159200px;}
.y108{bottom:291.059550px;}
.ydb{bottom:292.165650px;}
.y120{bottom:292.558050px;}
.y1c4{bottom:297.982650px;}
.y178{bottom:298.147650px;}
.yf1{bottom:300.050550px;}
.y88{bottom:301.551150px;}
.yb4{bottom:301.558650px;}
.y15c{bottom:302.245650px;}
.y8{bottom:302.446200px;}
.y5b{bottom:302.662200px;}
.y107{bottom:309.055050px;}
.yda{bottom:310.161150px;}
.y11f{bottom:310.553550px;}
.y1c3{bottom:311.485650px;}
.y5a{bottom:316.165200px;}
.yf0{bottom:318.046050px;}
.y87{bottom:319.546650px;}
.y15b{bottom:320.241150px;}
.y7{bottom:320.441700px;}
.y1c2{bottom:324.988650px;}
.y106{bottom:327.050550px;}
.yd9{bottom:328.156650px;}
.y11e{bottom:328.549050px;}
.y59{bottom:329.668200px;}
.yef{bottom:336.041550px;}
.y86{bottom:337.542150px;}
.y15a{bottom:338.236650px;}
.y6{bottom:338.437200px;}
.y1c1{bottom:338.491650px;}
.y58{bottom:343.171200px;}
.y105{bottom:345.046050px;}
.y177{bottom:345.545550px;}
.yb3{bottom:346.000650px;}
.yd8{bottom:346.152150px;}
.y11d{bottom:346.544550px;}
.y1c0{bottom:351.994650px;}
.y159{bottom:356.232150px;}
.y5{bottom:356.432700px;}
.y57{bottom:356.674200px;}
.yee{bottom:363.041550px;}
.y176{bottom:363.541050px;}
.yb2{bottom:363.996150px;}
.yd6{bottom:364.161150px;}
.y11c{bottom:364.540050px;}
.y85{bottom:364.542150px;}
.y1bf{bottom:365.497650px;}
.yd7{bottom:368.643150px;}
.y56{bottom:370.177200px;}
.y158{bottom:374.227650px;}
.y1be{bottom:379.000650px;}
.yed{bottom:381.037050px;}
.y175{bottom:381.536550px;}
.yb1{bottom:381.991650px;}
.yd5{bottom:382.156650px;}
.y11b{bottom:382.535550px;}
.y4{bottom:383.432700px;}
.y55{bottom:383.680200px;}
.y157{bottom:392.223150px;}
.y1bd{bottom:392.503650px;}
.y54{bottom:397.183200px;}
.yec{bottom:399.032550px;}
.y174{bottom:399.532050px;}
.yb0{bottom:399.987150px;}
.yd4{bottom:400.152150px;}
.y11a{bottom:400.531050px;}
.y3{bottom:401.428200px;}
.y1bc{bottom:406.006650px;}
.y156{bottom:410.218650px;}
.y53{bottom:410.686200px;}
.y84{bottom:412.723650px;}
.yeb{bottom:417.028050px;}
.y173{bottom:417.527550px;}
.yaf{bottom:417.982650px;}
.yd3{bottom:418.147650px;}
.y119{bottom:418.526550px;}
.y2{bottom:419.423700px;}
.y1bb{bottom:419.509650px;}
.y52{bottom:424.189200px;}
.y155{bottom:428.214150px;}
.y83{bottom:430.719150px;}
.y1ba{bottom:433.012650px;}
.y172{bottom:435.523050px;}
.yae{bottom:435.978150px;}
.y51{bottom:437.692200px;}
.yea{bottom:444.028050px;}
.yd2{bottom:445.147650px;}
.y154{bottom:446.209650px;}
.y1{bottom:446.423700px;}
.y1b9{bottom:446.515650px;}
.y82{bottom:448.714650px;}
.y50{bottom:451.195200px;}
.y171{bottom:453.518550px;}
.yad{bottom:453.973650px;}
.y1b8{bottom:460.018650px;}
.y138{bottom:460.462650px;}
.ye9{bottom:462.023550px;}
.y118{bottom:462.622650px;}
.y81{bottom:466.710150px;}
.y4f{bottom:467.690700px;}
.yd1{bottom:470.647650px;}
.y170{bottom:471.514050px;}
.y1b7{bottom:473.521650px;}
.y153{bottom:473.830650px;}
.y137{bottom:475.462650px;}
.y117{bottom:477.622650px;}
.ye8{bottom:480.019050px;}
.yac{bottom:480.973650px;}
.y1b6{bottom:487.024650px;}
.y16f{bottom:489.509550px;}
.y136{bottom:490.462650px;}
.y152{bottom:491.826150px;}
.y116{bottom:492.622650px;}
.y80{bottom:493.710150px;}
.y26{bottom:494.084700px;}
.yab{bottom:498.969150px;}
.y1b5{bottom:500.527650px;}
.y4e{bottom:505.186200px;}
.y135{bottom:505.462650px;}
.y115{bottom:507.622650px;}
.y151{bottom:509.821650px;}
.y25{bottom:512.080200px;}
.y1b4{bottom:514.030650px;}
.y16e{bottom:516.509550px;}
.yd0{bottom:516.874050px;}
.yaa{bottom:516.964650px;}
.y4d{bottom:518.689200px;}
.y134{bottom:520.462650px;}
.y114{bottom:522.622650px;}
.y1b3{bottom:527.533650px;}
.y150{bottom:527.817150px;}
.y24{bottom:530.075700px;}
.y104{bottom:530.569050px;}
.y16d{bottom:534.505050px;}
.ycf{bottom:534.869550px;}
.ya8{bottom:535.058550px;}
.y133{bottom:535.462650px;}
.y113{bottom:537.622650px;}
.ya9{bottom:539.455650px;}
.y1b2{bottom:541.036650px;}
.y7f{bottom:543.496050px;}
.y103{bottom:545.569050px;}
.y14f{bottom:545.812650px;}
.y23{bottom:548.071200px;}
.y4c{bottom:549.443700px;}
.y132{bottom:550.462650px;}
.y16c{bottom:552.500550px;}
.yce{bottom:552.865050px;}
.ya7{bottom:553.054050px;}
.y1b1{bottom:554.539650px;}
.y101{bottom:560.569050px;}
.y7e{bottom:561.491550px;}
.y4b{bottom:562.946700px;}
.y14e{bottom:563.808150px;}
.y102{bottom:564.565050px;}
.y131{bottom:565.462650px;}
.y22{bottom:566.066700px;}
.y1b0{bottom:568.042650px;}
.y16b{bottom:570.496050px;}
.ycd{bottom:570.860550px;}
.ya6{bottom:571.049550px;}
.y100{bottom:575.569050px;}
.y4a{bottom:576.449700px;}
.y7d{bottom:579.487050px;}
.y130{bottom:580.462650px;}
.y1af{bottom:581.545650px;}
.y14d{bottom:581.803650px;}
.y21{bottom:584.062200px;}
.y16a{bottom:588.491550px;}
.ycc{bottom:588.856050px;}
.ya5{bottom:589.045050px;}
.y49{bottom:589.952700px;}
.yff{bottom:590.569050px;}
.y1ae{bottom:595.048650px;}
.y12f{bottom:595.462650px;}
.y7c{bottom:597.482550px;}
.y14c{bottom:599.799150px;}
.y20{bottom:602.057700px;}
.y48{bottom:603.455700px;}
.yfe{bottom:605.569050px;}
.y169{bottom:606.487050px;}
.ycb{bottom:606.851550px;}
.ya4{bottom:607.040550px;}
.y1ad{bottom:608.551650px;}
.y12e{bottom:610.462650px;}
.y47{bottom:616.958700px;}
.y14b{bottom:617.794650px;}
.y1f{bottom:620.053200px;}
.yfd{bottom:620.569050px;}
.y1ac{bottom:622.054650px;}
.y7b{bottom:624.482550px;}
.yca{bottom:624.847050px;}
.ya3{bottom:625.036050px;}
.y12d{bottom:625.462650px;}
.y46{bottom:633.454200px;}
.y1ab{bottom:635.557650px;}
.yfc{bottom:635.569050px;}
.y1e{bottom:638.048700px;}
.y7a{bottom:642.478050px;}
.yc9{bottom:642.842550px;}
.ya2{bottom:643.031550px;}
.y14a{bottom:645.415650px;}
.y1aa{bottom:649.060650px;}
.y79{bottom:660.473550px;}
.yc8{bottom:660.838050px;}
.ya1{bottom:661.027050px;}
.y1a9{bottom:662.563650px;}
.y149{bottom:663.411150px;}
.y1d{bottom:670.793700px;}
.y45{bottom:670.949700px;}
.y1a8{bottom:676.066650px;}
.y78{bottom:678.469050px;}
.yc7{bottom:678.833550px;}
.ya0{bottom:679.022550px;}
.y148{bottom:681.406650px;}
.y44{bottom:684.452700px;}
.y1c{bottom:688.789200px;}
.y1a7{bottom:689.569650px;}
.y77{bottom:696.464550px;}
.yc6{bottom:696.829050px;}
.y9f{bottom:697.018050px;}
.y147{bottom:699.402150px;}
.y43{bottom:700.948200px;}
.y1a6{bottom:703.072650px;}
.y1b{bottom:706.784700px;}
.yc5{bottom:714.824550px;}
.y9e{bottom:715.013550px;}
.y1a5{bottom:716.575650px;}
.y146{bottom:717.397650px;}
.y76{bottom:723.464550px;}
.y1a{bottom:724.780200px;}
.y1a4{bottom:730.078650px;}
.yc4{bottom:732.820050px;}
.y9d{bottom:733.009050px;}
.y42{bottom:738.443700px;}
.y75{bottom:741.460050px;}
.y19{bottom:742.775700px;}
.y1a3{bottom:743.581650px;}
.y145{bottom:744.397650px;}
.yc3{bottom:750.815550px;}
.y9c{bottom:751.004550px;}
.y41{bottom:751.946700px;}
.y1a2{bottom:757.084650px;}
.y74{bottom:759.455550px;}
.y18{bottom:760.771200px;}
.y40{bottom:768.442200px;}
.yc2{bottom:768.811050px;}
.y9b{bottom:769.000050px;}
.y1a1{bottom:770.587650px;}
.y73{bottom:777.451050px;}
.y17{bottom:778.766700px;}
.y1a0{bottom:784.090650px;}
.y9a{bottom:786.995550px;}
.y72{bottom:795.446550px;}
.yc1{bottom:795.811050px;}
.y16{bottom:796.762200px;}
.y19f{bottom:797.593650px;}
.y99{bottom:804.991050px;}
.y3f{bottom:808.195200px;}
.y19e{bottom:811.096650px;}
.y144{bottom:813.442050px;}
.y15{bottom:814.757700px;}
.y3e{bottom:821.698200px;}
.y71{bottom:822.446550px;}
.y98{bottom:822.986550px;}
.y19d{bottom:824.599650px;}
.y1e3{bottom:824.605650px;}
.y143{bottom:831.437550px;}
.y14{bottom:832.753200px;}
.y3d{bottom:835.201200px;}
.y19c{bottom:838.102650px;}
.y1e2{bottom:838.108650px;}
.y70{bottom:840.442050px;}
.y3c{bottom:848.704200px;}
.y142{bottom:849.433050px;}
.y97{bottom:849.986550px;}
.y13{bottom:850.748700px;}
.y19b{bottom:851.605650px;}
.y1e1{bottom:851.611650px;}
.y6f{bottom:858.437550px;}
.y3b{bottom:862.207200px;}
.y19a{bottom:865.108650px;}
.y1e0{bottom:865.114650px;}
.y141{bottom:867.428550px;}
.y3a{bottom:875.710200px;}
.y6e{bottom:876.433050px;}
.y199{bottom:878.611650px;}
.y1df{bottom:878.617650px;}
.y140{bottom:885.424050px;}
.y39{bottom:889.213200px;}
.y198{bottom:892.114650px;}
.y1de{bottom:892.120650px;}
.y6d{bottom:894.428550px;}
.y34{bottom:895.298550px;}
.y38{bottom:902.716200px;}
.y13f{bottom:903.419550px;}
.y197{bottom:905.617650px;}
.y1dd{bottom:905.623650px;}
.y6c{bottom:912.424050px;}
.y33{bottom:915.794550px;}
.y37{bottom:916.219200px;}
.y196{bottom:919.120650px;}
.y1dc{bottom:919.126650px;}
.y13e{bottom:921.415050px;}
.y36{bottom:929.722200px;}
.y6b{bottom:930.419550px;}
.y195{bottom:932.623650px;}
.y1db{bottom:932.629650px;}
.y13d{bottom:939.410550px;}
.y32{bottom:939.698700px;}
.y194{bottom:946.126650px;}
.y1da{bottom:946.132650px;}
.y35{bottom:946.217700px;}
.y6a{bottom:948.415050px;}
.y13c{bottom:957.406050px;}
.y193{bottom:959.629650px;}
.y1d9{bottom:959.635650px;}
.y69{bottom:966.410550px;}
.y31{bottom:967.898550px;}
.y192{bottom:973.132650px;}
.y1d8{bottom:973.138650px;}
.y13b{bottom:975.401550px;}
.y60{bottom:976.592700px;}
.y68{bottom:984.406050px;}
.y191{bottom:986.635650px;}
.y1d7{bottom:986.641650px;}
.y13a{bottom:993.397050px;}
.y30{bottom:994.898550px;}
.y61{bottom:996.098550px;}
.y190{bottom:1000.138650px;}
.y1d6{bottom:1000.144650px;}
.y67{bottom:1002.401550px;}
.y139{bottom:1011.392550px;}
.y18f{bottom:1013.641650px;}
.y1d5{bottom:1013.647650px;}
.y66{bottom:1020.397050px;}
.y96{bottom:1027.144650px;}
.y1d4{bottom:1036.147650px;}
.y65{bottom:1038.392550px;}
.y95{bottom:1040.647650px;}
.y63{bottom:1096.623600px;}
.y64{bottom:1097.773650px;}
.h8{height:22.682400px;}
.he{height:25.517700px;}
.ha{height:29.064000px;}
.h5{height:30.534000px;}
.hf{height:34.896000px;}
.hd{height:37.368000px;}
.h9{height:38.666400px;}
.h3{height:39.258000px;}
.h7{height:42.271200px;}
.hc{height:43.620000px;}
.h2{height:45.672000px;}
.h4{height:49.824000px;}
.hb{height:58.128000px;}
.h6{height:62.280000px;}
.h1{height:1182.000000px;}
.h0{height:1182.046509px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.x2{left:45.713100px;}
.x3{left:60.713250px;}
.x1{left:250.671300px;}
.xe{left:262.459200px;}
.x7{left:268.482300px;}
.x5{left:338.121150px;}
.x9{left:358.249200px;}
.xd{left:386.748150px;}
.xb{left:433.202700px;}
.xc{left:604.122450px;}
.x6{left:693.033150px;}
.x8{left:704.208750px;}
.xa{left:799.399500px;}
.xf{left:810.925800px;}
.x4{left:817.675800px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.ls2{letter-spacing:-0.810667pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.216000pt;}
.ws1{word-spacing:-17.216000pt;}
.ws91{word-spacing:-14.666667pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6e{word-spacing:-10.666667pt;}
.ws6f{word-spacing:-9.856000pt;}
.ws2{word-spacing:-9.333333pt;}
.wsa1{word-spacing:-8.885333pt;}
.ws3{word-spacing:-7.800000pt;}
.ws4{word-spacing:-6.933333pt;}
.ws15{word-spacing:-3.061333pt;}
.ws84{word-spacing:-2.496000pt;}
.ws7f{word-spacing:-2.447995pt;}
.ws4e{word-spacing:-2.304000pt;}
.ws47{word-spacing:-2.256000pt;}
.wsbc{word-spacing:-2.165333pt;}
.ws95{word-spacing:-2.160000pt;}
.wsb9{word-spacing:-2.128000pt;}
.ws51{word-spacing:-2.112000pt;}
.ws80{word-spacing:-2.016000pt;}
.ws83{word-spacing:-1.968000pt;}
.ws2b{word-spacing:-1.872000pt;}
.wsc1{word-spacing:-1.829333pt;}
.ws56{word-spacing:-1.824000pt;}
.ws7d{word-spacing:-1.776000pt;}
.ws5f{word-spacing:-1.680000pt;}
.ws9c{word-spacing:-1.584000pt;}
.wsc0{word-spacing:-1.568000pt;}
.ws87{word-spacing:-1.536000pt;}
.wsbb{word-spacing:-1.530667pt;}
.ws82{word-spacing:-1.488000pt;}
.ws34{word-spacing:-1.392000pt;}
.ws2e{word-spacing:-1.296000pt;}
.ws3a{word-spacing:-1.248000pt;}
.ws7{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.157333pt;}
.ws1f{word-spacing:-1.104000pt;}
.ws96{word-spacing:-1.056000pt;}
.ws38{word-spacing:-1.008000pt;}
.ws9a{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.933333pt;}
.ws2a{word-spacing:-0.912000pt;}
.wsad{word-spacing:-0.821333pt;}
.wsd{word-spacing:-0.816000pt;}
.wsc6{word-spacing:-0.746667pt;}
.ws3c{word-spacing:-0.720000pt;}
.wsbf{word-spacing:-0.709333pt;}
.ws35{word-spacing:-0.672000pt;}
.wsb0{word-spacing:-0.634667pt;}
.ws17{word-spacing:-0.624000pt;}
.ws81{word-spacing:-0.576000pt;}
.wsb3{word-spacing:-0.560000pt;}
.ws3d{word-spacing:-0.528000pt;}
.ws52{word-spacing:-0.480000pt;}
.ws50{word-spacing:-0.432000pt;}
.wsba{word-spacing:-0.410667pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.288000pt;}
.wsaf{word-spacing:-0.261333pt;}
.ws59{word-spacing:-0.240000pt;}
.wsa9{word-spacing:-0.224000pt;}
.ws6d{word-spacing:-0.144000pt;}
.ws99{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.048000pt;}
.wsae{word-spacing:-0.037333pt;}
.ws8{word-spacing:0.000000pt;}
.ws55{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.096000pt;}
.ws90{word-spacing:0.144000pt;}
.wsb5{word-spacing:0.149333pt;}
.wse{word-spacing:0.192000pt;}
.ws8d{word-spacing:0.240000pt;}
.ws8b{word-spacing:0.288000pt;}
.ws33{word-spacing:0.336000pt;}
.ws70{word-spacing:0.432000pt;}
.ws27{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.528000pt;}
.ws25{word-spacing:0.576000pt;}
.ws69{word-spacing:0.672000pt;}
.ws4d{word-spacing:0.720000pt;}
.ws45{word-spacing:0.768000pt;}
.wsaa{word-spacing:0.784000pt;}
.ws5a{word-spacing:0.816000pt;}
.wsb7{word-spacing:0.821333pt;}
.wsb6{word-spacing:0.858667pt;}
.ws64{word-spacing:0.864000pt;}
.ws4c{word-spacing:0.912000pt;}
.ws5b{word-spacing:0.960000pt;}
.ws48{word-spacing:1.008000pt;}
.ws2f{word-spacing:1.056000pt;}
.ws23{word-spacing:1.104000pt;}
.ws3b{word-spacing:1.152000pt;}
.wsb1{word-spacing:1.157333pt;}
.ws71{word-spacing:1.200000pt;}
.ws13{word-spacing:1.248000pt;}
.wsc5{word-spacing:1.269333pt;}
.ws9e{word-spacing:1.306667pt;}
.ws22{word-spacing:1.344000pt;}
.ws54{word-spacing:1.392000pt;}
.ws21{word-spacing:1.440000pt;}
.ws2d{word-spacing:1.488000pt;}
.wsc3{word-spacing:1.493333pt;}
.ws12{word-spacing:1.680000pt;}
.wsa7{word-spacing:1.717333pt;}
.ws6c{word-spacing:1.728000pt;}
.ws20{word-spacing:1.776000pt;}
.ws42{word-spacing:1.824000pt;}
.wsa2{word-spacing:1.829333pt;}
.wsbd{word-spacing:1.866667pt;}
.ws46{word-spacing:1.872000pt;}
.ws77{word-spacing:1.920000pt;}
.ws14{word-spacing:2.016000pt;}
.ws9f{word-spacing:2.053333pt;}
.ws8e{word-spacing:2.112000pt;}
.ws30{word-spacing:2.160000pt;}
.ws44{word-spacing:2.208000pt;}
.ws31{word-spacing:2.256000pt;}
.ws1d{word-spacing:2.304000pt;}
.wsa0{word-spacing:2.352000pt;}
.wsb2{word-spacing:2.389333pt;}
.ws67{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.447995pt;}
.ws6b{word-spacing:2.496000pt;}
.wsbe{word-spacing:2.538667pt;}
.ws29{word-spacing:2.544000pt;}
.wsa{word-spacing:2.592000pt;}
.ws9d{word-spacing:2.613333pt;}
.ws11{word-spacing:2.688000pt;}
.ws16{word-spacing:2.736000pt;}
.ws8a{word-spacing:2.784000pt;}
.wsc{word-spacing:2.832000pt;}
.ws7c{word-spacing:2.880000pt;}
.wsa4{word-spacing:2.912000pt;}
.wsb{word-spacing:2.928000pt;}
.ws7a{word-spacing:2.976000pt;}
.ws57{word-spacing:3.024000pt;}
.ws9b{word-spacing:3.072000pt;}
.ws92{word-spacing:3.120000pt;}
.ws5e{word-spacing:3.168000pt;}
.wsc2{word-spacing:3.173333pt;}
.ws61{word-spacing:3.216000pt;}
.ws97{word-spacing:3.264000pt;}
.ws86{word-spacing:3.312000pt;}
.ws53{word-spacing:3.360000pt;}
.ws10{word-spacing:3.407995pt;}
.ws78{word-spacing:3.456000pt;}
.ws36{word-spacing:3.504000pt;}
.ws18{word-spacing:3.552000pt;}
.ws85{word-spacing:3.696000pt;}
.ws4a{word-spacing:3.744000pt;}
.ws7b{word-spacing:3.792000pt;}
.ws63{word-spacing:3.840000pt;}
.ws66{word-spacing:3.888000pt;}
.ws60{word-spacing:3.936000pt;}
.wsc4{word-spacing:3.957333pt;}
.ws68{word-spacing:3.984000pt;}
.ws73{word-spacing:4.175995pt;}
.wsa3{word-spacing:4.218667pt;}
.ws26{word-spacing:4.272000pt;}
.ws4b{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.416000pt;}
.ws98{word-spacing:4.512000pt;}
.ws3e{word-spacing:4.560000pt;}
.ws39{word-spacing:4.608000pt;}
.ws8c{word-spacing:4.656000pt;}
.ws49{word-spacing:4.752000pt;}
.ws93{word-spacing:4.800000pt;}
.ws75{word-spacing:4.848000pt;}
.wsb8{word-spacing:4.928000pt;}
.ws6{word-spacing:4.992000pt;}
.ws58{word-spacing:5.040000pt;}
.ws74{word-spacing:5.088000pt;}
.ws43{word-spacing:5.232000pt;}
.wsac{word-spacing:5.264000pt;}
.ws8f{word-spacing:5.424000pt;}
.ws76{word-spacing:5.472000pt;}
.ws1a{word-spacing:5.520000pt;}
.ws9{word-spacing:5.616000pt;}
.ws32{word-spacing:5.856000pt;}
.ws37{word-spacing:5.904000pt;}
.ws1c{word-spacing:5.952000pt;}
.ws88{word-spacing:6.096000pt;}
.wsf{word-spacing:6.192000pt;}
.ws19{word-spacing:6.288000pt;}
.ws5c{word-spacing:6.336000pt;}
.ws40{word-spacing:6.384000pt;}
.ws62{word-spacing:6.528000pt;}
.ws79{word-spacing:6.576000pt;}
.ws89{word-spacing:6.720000pt;}
.wsa6{word-spacing:6.757333pt;}
.ws65{word-spacing:6.864000pt;}
.ws3f{word-spacing:7.680000pt;}
.ws41{word-spacing:7.728000pt;}
.ws1b{word-spacing:8.352000pt;}
.ws72{word-spacing:8.736000pt;}
.wsa8{word-spacing:12.730667pt;}
.ws5{word-spacing:14.666667pt;}
.ws94{word-spacing:15.648000pt;}
.wsa5{word-spacing:16.949333pt;}
._c{margin-left:-14.544000pt;}
._b{margin-left:-11.952000pt;}
._7{margin-left:-9.333333pt;}
._d{margin-left:-7.056082pt;}
._4{margin-left:-3.715200pt;}
._0{margin-left:-2.784000pt;}
._1{margin-left:-1.152000pt;}
._2{width:1.296000pt;}
._3{width:2.630400pt;}
._8{width:3.705600pt;}
._9{width:5.136000pt;}
._a{width:15.984000pt;}
._6{width:24.490667pt;}
._5{width:45.419733pt;}
.fs6{font-size:27.733333pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:27.287600pt;}
.y27{bottom:27.322400pt;}
.y18e{bottom:66.573467pt;}
.y184{bottom:66.601467pt;}
.ye7{bottom:68.030800pt;}
.yfb{bottom:68.075600pt;}
.y112{bottom:68.087600pt;}
.y94{bottom:68.089467pt;}
.yc0{bottom:68.096133pt;}
.y12c{bottom:68.099600pt;}
.y168{bottom:68.154800pt;}
.y18d{bottom:78.576133pt;}
.y183{bottom:78.604133pt;}
.ye6{bottom:84.026800pt;}
.yfa{bottom:84.071600pt;}
.y111{bottom:84.083600pt;}
.y93{bottom:84.085467pt;}
.ybf{bottom:84.092133pt;}
.y12b{bottom:84.095600pt;}
.y167{bottom:84.150800pt;}
.y1d3{bottom:84.833467pt;}
.y18c{bottom:90.578800pt;}
.y182{bottom:90.606800pt;}
.y2f{bottom:94.423733pt;}
.y1d2{bottom:96.836133pt;}
.yf9{bottom:100.067600pt;}
.y110{bottom:100.079600pt;}
.y92{bottom:100.081467pt;}
.ybe{bottom:100.088133pt;}
.y12a{bottom:100.091600pt;}
.y166{bottom:100.146800pt;}
.y12{bottom:100.877067pt;}
.y18b{bottom:102.581467pt;}
.y181{bottom:102.609467pt;}
.y2e{bottom:106.426400pt;}
.ye5{bottom:108.026800pt;}
.y1d1{bottom:108.838800pt;}
.y18a{bottom:114.584133pt;}
.y180{bottom:114.612133pt;}
.yf8{bottom:116.063600pt;}
.y10f{bottom:116.075600pt;}
.y91{bottom:116.077467pt;}
.ybd{bottom:116.084133pt;}
.y129{bottom:116.087600pt;}
.y165{bottom:116.142800pt;}
.y11{bottom:116.873067pt;}
.y2d{bottom:118.429067pt;}
.y1d0{bottom:120.841467pt;}
.y189{bottom:126.586800pt;}
.y17f{bottom:126.614800pt;}
.y2c{bottom:130.431733pt;}
.yf7{bottom:132.059600pt;}
.y10e{bottom:132.071600pt;}
.y90{bottom:132.073467pt;}
.ybc{bottom:132.080133pt;}
.y128{bottom:132.083600pt;}
.y164{bottom:132.138800pt;}
.y1cf{bottom:132.844133pt;}
.y10{bottom:132.869067pt;}
.y188{bottom:138.589467pt;}
.y17e{bottom:138.617467pt;}
.y2b{bottom:142.434400pt;}
.y1ce{bottom:144.846800pt;}
.ye4{bottom:147.698800pt;}
.y10d{bottom:148.067600pt;}
.y8f{bottom:148.069467pt;}
.ybb{bottom:148.076133pt;}
.y127{bottom:148.079600pt;}
.y163{bottom:148.134800pt;}
.yf{bottom:148.865067pt;}
.y187{bottom:150.592133pt;}
.y17d{bottom:150.620133pt;}
.y2a{bottom:154.437067pt;}
.yf6{bottom:156.059600pt;}
.y1cd{bottom:156.849467pt;}
.y186{bottom:162.594800pt;}
.ye3{bottom:163.694800pt;}
.y8e{bottom:164.065467pt;}
.yba{bottom:164.072133pt;}
.y126{bottom:164.075600pt;}
.y162{bottom:164.130800pt;}
.ye{bottom:164.861067pt;}
.y29{bottom:166.439733pt;}
.y1cc{bottom:168.852133pt;}
.y17c{bottom:170.620133pt;}
.y10c{bottom:172.067600pt;}
.y185{bottom:174.597467pt;}
.y28{bottom:178.442400pt;}
.ye2{bottom:179.690800pt;}
.y8d{bottom:180.061467pt;}
.yb9{bottom:180.068133pt;}
.y125{bottom:180.071600pt;}
.y161{bottom:180.126800pt;}
.y1cb{bottom:180.854800pt;}
.yd{bottom:180.857067pt;}
.y1ca{bottom:192.857467pt;}
.yf5{bottom:194.723600pt;}
.ye0{bottom:195.690800pt;}
.y8c{bottom:196.057467pt;}
.yb8{bottom:196.064133pt;}
.y124{bottom:196.067600pt;}
.y160{bottom:196.122800pt;}
.yc{bottom:196.853067pt;}
.ye1{bottom:199.682800pt;}
.y1c9{bottom:204.860133pt;}
.y17b{bottom:210.628133pt;}
.yf4{bottom:210.719600pt;}
.y10b{bottom:210.731600pt;}
.yde{bottom:211.714800pt;}
.y8b{bottom:212.053467pt;}
.yb7{bottom:212.060133pt;}
.y123{bottom:212.063600pt;}
.yb{bottom:212.849067pt;}
.ydf{bottom:215.682800pt;}
.y1c8{bottom:216.862800pt;}
.y15f{bottom:220.674800pt;}
.y5f{bottom:221.022400pt;}
.y17a{bottom:226.624133pt;}
.yf3{bottom:226.715600pt;}
.y10a{bottom:226.727600pt;}
.ydd{bottom:227.710800pt;}
.yb6{bottom:228.056133pt;}
.y122{bottom:228.059600pt;}
.y1c7{bottom:228.865467pt;}
.y5e{bottom:233.025067pt;}
.y8a{bottom:236.053467pt;}
.y15e{bottom:236.670800pt;}
.ya{bottom:236.849067pt;}
.y1c6{bottom:240.868133pt;}
.y179{bottom:242.620133pt;}
.y109{bottom:242.723600pt;}
.ydc{bottom:243.706800pt;}
.yb5{bottom:244.052133pt;}
.y121{bottom:244.055600pt;}
.y5d{bottom:245.027733pt;}
.yf2{bottom:250.715600pt;}
.y89{bottom:252.049467pt;}
.y15d{bottom:252.666800pt;}
.y9{bottom:252.845067pt;}
.y1c5{bottom:252.870800pt;}
.y5c{bottom:257.030400pt;}
.y108{bottom:258.719600pt;}
.ydb{bottom:259.702800pt;}
.y120{bottom:260.051600pt;}
.y1c4{bottom:264.873467pt;}
.y178{bottom:265.020133pt;}
.yf1{bottom:266.711600pt;}
.y88{bottom:268.045467pt;}
.yb4{bottom:268.052133pt;}
.y15c{bottom:268.662800pt;}
.y8{bottom:268.841067pt;}
.y5b{bottom:269.033067pt;}
.y107{bottom:274.715600pt;}
.yda{bottom:275.698800pt;}
.y11f{bottom:276.047600pt;}
.y1c3{bottom:276.876133pt;}
.y5a{bottom:281.035733pt;}
.yf0{bottom:282.707600pt;}
.y87{bottom:284.041467pt;}
.y15b{bottom:284.658800pt;}
.y7{bottom:284.837067pt;}
.y1c2{bottom:288.878800pt;}
.y106{bottom:290.711600pt;}
.yd9{bottom:291.694800pt;}
.y11e{bottom:292.043600pt;}
.y59{bottom:293.038400pt;}
.yef{bottom:298.703600pt;}
.y86{bottom:300.037467pt;}
.y15a{bottom:300.654800pt;}
.y6{bottom:300.833067pt;}
.y1c1{bottom:300.881467pt;}
.y58{bottom:305.041067pt;}
.y105{bottom:306.707600pt;}
.y177{bottom:307.151600pt;}
.yb3{bottom:307.556133pt;}
.yd8{bottom:307.690800pt;}
.y11d{bottom:308.039600pt;}
.y1c0{bottom:312.884133pt;}
.y159{bottom:316.650800pt;}
.y5{bottom:316.829067pt;}
.y57{bottom:317.043733pt;}
.yee{bottom:322.703600pt;}
.y176{bottom:323.147600pt;}
.yb2{bottom:323.552133pt;}
.yd6{bottom:323.698800pt;}
.y11c{bottom:324.035600pt;}
.y85{bottom:324.037467pt;}
.y1bf{bottom:324.886800pt;}
.yd7{bottom:327.682800pt;}
.y56{bottom:329.046400pt;}
.y158{bottom:332.646800pt;}
.y1be{bottom:336.889467pt;}
.yed{bottom:338.699600pt;}
.y175{bottom:339.143600pt;}
.yb1{bottom:339.548133pt;}
.yd5{bottom:339.694800pt;}
.y11b{bottom:340.031600pt;}
.y4{bottom:340.829067pt;}
.y55{bottom:341.049067pt;}
.y157{bottom:348.642800pt;}
.y1bd{bottom:348.892133pt;}
.y54{bottom:353.051733pt;}
.yec{bottom:354.695600pt;}
.y174{bottom:355.139600pt;}
.yb0{bottom:355.544133pt;}
.yd4{bottom:355.690800pt;}
.y11a{bottom:356.027600pt;}
.y3{bottom:356.825067pt;}
.y1bc{bottom:360.894800pt;}
.y156{bottom:364.638800pt;}
.y53{bottom:365.054400pt;}
.y84{bottom:366.865467pt;}
.yeb{bottom:370.691600pt;}
.y173{bottom:371.135600pt;}
.yaf{bottom:371.540133pt;}
.yd3{bottom:371.686800pt;}
.y119{bottom:372.023600pt;}
.y2{bottom:372.821067pt;}
.y1bb{bottom:372.897467pt;}
.y52{bottom:377.057067pt;}
.y155{bottom:380.634800pt;}
.y83{bottom:382.861467pt;}
.y1ba{bottom:384.900133pt;}
.y172{bottom:387.131600pt;}
.yae{bottom:387.536133pt;}
.y51{bottom:389.059733pt;}
.yea{bottom:394.691600pt;}
.yd2{bottom:395.686800pt;}
.y154{bottom:396.630800pt;}
.y1{bottom:396.821067pt;}
.y1b9{bottom:396.902800pt;}
.y82{bottom:398.857467pt;}
.y50{bottom:401.062400pt;}
.y171{bottom:403.127600pt;}
.yad{bottom:403.532133pt;}
.y1b8{bottom:408.905467pt;}
.y138{bottom:409.300133pt;}
.ye9{bottom:410.687600pt;}
.y118{bottom:411.220133pt;}
.y81{bottom:414.853467pt;}
.y4f{bottom:415.725067pt;}
.yd1{bottom:418.353467pt;}
.y170{bottom:419.123600pt;}
.y1b7{bottom:420.908133pt;}
.y153{bottom:421.182800pt;}
.y137{bottom:422.633467pt;}
.y117{bottom:424.553467pt;}
.ye8{bottom:426.683600pt;}
.yac{bottom:427.532133pt;}
.y1b6{bottom:432.910800pt;}
.y16f{bottom:435.119600pt;}
.y136{bottom:435.966800pt;}
.y152{bottom:437.178800pt;}
.y116{bottom:437.886800pt;}
.y80{bottom:438.853467pt;}
.y26{bottom:439.186400pt;}
.yab{bottom:443.528133pt;}
.y1b5{bottom:444.913467pt;}
.y4e{bottom:449.054400pt;}
.y135{bottom:449.300133pt;}
.y115{bottom:451.220133pt;}
.y151{bottom:453.174800pt;}
.y25{bottom:455.182400pt;}
.y1b4{bottom:456.916133pt;}
.y16e{bottom:459.119600pt;}
.yd0{bottom:459.443600pt;}
.yaa{bottom:459.524133pt;}
.y4d{bottom:461.057067pt;}
.y134{bottom:462.633467pt;}
.y114{bottom:464.553467pt;}
.y1b3{bottom:468.918800pt;}
.y150{bottom:469.170800pt;}
.y24{bottom:471.178400pt;}
.y104{bottom:471.616933pt;}
.y16d{bottom:475.115600pt;}
.ycf{bottom:475.439600pt;}
.ya8{bottom:475.607600pt;}
.y133{bottom:475.966800pt;}
.y113{bottom:477.886800pt;}
.ya9{bottom:479.516133pt;}
.y1b2{bottom:480.921467pt;}
.y7f{bottom:483.107600pt;}
.y103{bottom:484.950267pt;}
.y14f{bottom:485.166800pt;}
.y23{bottom:487.174400pt;}
.y4c{bottom:488.394400pt;}
.y132{bottom:489.300133pt;}
.y16c{bottom:491.111600pt;}
.yce{bottom:491.435600pt;}
.ya7{bottom:491.603600pt;}
.y1b1{bottom:492.924133pt;}
.y101{bottom:498.283600pt;}
.y7e{bottom:499.103600pt;}
.y4b{bottom:500.397067pt;}
.y14e{bottom:501.162800pt;}
.y102{bottom:501.835600pt;}
.y131{bottom:502.633467pt;}
.y22{bottom:503.170400pt;}
.y1b0{bottom:504.926800pt;}
.y16b{bottom:507.107600pt;}
.ycd{bottom:507.431600pt;}
.ya6{bottom:507.599600pt;}
.y100{bottom:511.616933pt;}
.y4a{bottom:512.399733pt;}
.y7d{bottom:515.099600pt;}
.y130{bottom:515.966800pt;}
.y1af{bottom:516.929467pt;}
.y14d{bottom:517.158800pt;}
.y21{bottom:519.166400pt;}
.y16a{bottom:523.103600pt;}
.ycc{bottom:523.427600pt;}
.ya5{bottom:523.595600pt;}
.y49{bottom:524.402400pt;}
.yff{bottom:524.950267pt;}
.y1ae{bottom:528.932133pt;}
.y12f{bottom:529.300133pt;}
.y7c{bottom:531.095600pt;}
.y14c{bottom:533.154800pt;}
.y20{bottom:535.162400pt;}
.y48{bottom:536.405067pt;}
.yfe{bottom:538.283600pt;}
.y169{bottom:539.099600pt;}
.ycb{bottom:539.423600pt;}
.ya4{bottom:539.591600pt;}
.y1ad{bottom:540.934800pt;}
.y12e{bottom:542.633467pt;}
.y47{bottom:548.407733pt;}
.y14b{bottom:549.150800pt;}
.y1f{bottom:551.158400pt;}
.yfd{bottom:551.616933pt;}
.y1ac{bottom:552.937467pt;}
.y7b{bottom:555.095600pt;}
.yca{bottom:555.419600pt;}
.ya3{bottom:555.587600pt;}
.y12d{bottom:555.966800pt;}
.y46{bottom:563.070400pt;}
.y1ab{bottom:564.940133pt;}
.yfc{bottom:564.950267pt;}
.y1e{bottom:567.154400pt;}
.y7a{bottom:571.091600pt;}
.yc9{bottom:571.415600pt;}
.ya2{bottom:571.583600pt;}
.y14a{bottom:573.702800pt;}
.y1aa{bottom:576.942800pt;}
.y79{bottom:587.087600pt;}
.yc8{bottom:587.411600pt;}
.ya1{bottom:587.579600pt;}
.y1a9{bottom:588.945467pt;}
.y149{bottom:589.698800pt;}
.y1d{bottom:596.261067pt;}
.y45{bottom:596.399733pt;}
.y1a8{bottom:600.948133pt;}
.y78{bottom:603.083600pt;}
.yc7{bottom:603.407600pt;}
.ya0{bottom:603.575600pt;}
.y148{bottom:605.694800pt;}
.y44{bottom:608.402400pt;}
.y1c{bottom:612.257067pt;}
.y1a7{bottom:612.950800pt;}
.y77{bottom:619.079600pt;}
.yc6{bottom:619.403600pt;}
.y9f{bottom:619.571600pt;}
.y147{bottom:621.690800pt;}
.y43{bottom:623.065067pt;}
.y1a6{bottom:624.953467pt;}
.y1b{bottom:628.253067pt;}
.yc5{bottom:635.399600pt;}
.y9e{bottom:635.567600pt;}
.y1a5{bottom:636.956133pt;}
.y146{bottom:637.686800pt;}
.y76{bottom:643.079600pt;}
.y1a{bottom:644.249067pt;}
.y1a4{bottom:648.958800pt;}
.yc4{bottom:651.395600pt;}
.y9d{bottom:651.563600pt;}
.y42{bottom:656.394400pt;}
.y75{bottom:659.075600pt;}
.y19{bottom:660.245067pt;}
.y1a3{bottom:660.961467pt;}
.y145{bottom:661.686800pt;}
.yc3{bottom:667.391600pt;}
.y9c{bottom:667.559600pt;}
.y41{bottom:668.397067pt;}
.y1a2{bottom:672.964133pt;}
.y74{bottom:675.071600pt;}
.y18{bottom:676.241067pt;}
.y40{bottom:683.059733pt;}
.yc2{bottom:683.387600pt;}
.y9b{bottom:683.555600pt;}
.y1a1{bottom:684.966800pt;}
.y73{bottom:691.067600pt;}
.y17{bottom:692.237067pt;}
.y1a0{bottom:696.969467pt;}
.y9a{bottom:699.551600pt;}
.y72{bottom:707.063600pt;}
.yc1{bottom:707.387600pt;}
.y16{bottom:708.233067pt;}
.y19f{bottom:708.972133pt;}
.y99{bottom:715.547600pt;}
.y3f{bottom:718.395733pt;}
.y19e{bottom:720.974800pt;}
.y144{bottom:723.059600pt;}
.y15{bottom:724.229067pt;}
.y3e{bottom:730.398400pt;}
.y71{bottom:731.063600pt;}
.y98{bottom:731.543600pt;}
.y19d{bottom:732.977467pt;}
.y1e3{bottom:732.982800pt;}
.y143{bottom:739.055600pt;}
.y14{bottom:740.225067pt;}
.y3d{bottom:742.401067pt;}
.y19c{bottom:744.980133pt;}
.y1e2{bottom:744.985467pt;}
.y70{bottom:747.059600pt;}
.y3c{bottom:754.403733pt;}
.y142{bottom:755.051600pt;}
.y97{bottom:755.543600pt;}
.y13{bottom:756.221067pt;}
.y19b{bottom:756.982800pt;}
.y1e1{bottom:756.988133pt;}
.y6f{bottom:763.055600pt;}
.y3b{bottom:766.406400pt;}
.y19a{bottom:768.985467pt;}
.y1e0{bottom:768.990800pt;}
.y141{bottom:771.047600pt;}
.y3a{bottom:778.409067pt;}
.y6e{bottom:779.051600pt;}
.y199{bottom:780.988133pt;}
.y1df{bottom:780.993467pt;}
.y140{bottom:787.043600pt;}
.y39{bottom:790.411733pt;}
.y198{bottom:792.990800pt;}
.y1de{bottom:792.996133pt;}
.y6d{bottom:795.047600pt;}
.y34{bottom:795.820933pt;}
.y38{bottom:802.414400pt;}
.y13f{bottom:803.039600pt;}
.y197{bottom:804.993467pt;}
.y1dd{bottom:804.998800pt;}
.y6c{bottom:811.043600pt;}
.y33{bottom:814.039600pt;}
.y37{bottom:814.417067pt;}
.y196{bottom:816.996133pt;}
.y1dc{bottom:817.001467pt;}
.y13e{bottom:819.035600pt;}
.y36{bottom:826.419733pt;}
.y6b{bottom:827.039600pt;}
.y195{bottom:828.998800pt;}
.y1db{bottom:829.004133pt;}
.y13d{bottom:835.031600pt;}
.y32{bottom:835.287733pt;}
.y194{bottom:841.001467pt;}
.y1da{bottom:841.006800pt;}
.y35{bottom:841.082400pt;}
.y6a{bottom:843.035600pt;}
.y13c{bottom:851.027600pt;}
.y193{bottom:853.004133pt;}
.y1d9{bottom:853.009467pt;}
.y69{bottom:859.031600pt;}
.y31{bottom:860.354267pt;}
.y192{bottom:865.006800pt;}
.y1d8{bottom:865.012133pt;}
.y13b{bottom:867.023600pt;}
.y60{bottom:868.082400pt;}
.y68{bottom:875.027600pt;}
.y191{bottom:877.009467pt;}
.y1d7{bottom:877.014800pt;}
.y13a{bottom:883.019600pt;}
.y30{bottom:884.354267pt;}
.y61{bottom:885.420933pt;}
.y190{bottom:889.012133pt;}
.y1d6{bottom:889.017467pt;}
.y67{bottom:891.023600pt;}
.y139{bottom:899.015600pt;}
.y18f{bottom:901.014800pt;}
.y1d5{bottom:901.020133pt;}
.y66{bottom:907.019600pt;}
.y96{bottom:913.017467pt;}
.y1d4{bottom:921.020133pt;}
.y65{bottom:923.015600pt;}
.y95{bottom:925.020133pt;}
.y63{bottom:974.776533pt;}
.y64{bottom:975.798800pt;}
.h8{height:20.162133pt;}
.he{height:22.682400pt;}
.ha{height:25.834667pt;}
.h5{height:27.141333pt;}
.hf{height:31.018667pt;}
.hd{height:33.216000pt;}
.h9{height:34.370133pt;}
.h3{height:34.896000pt;}
.h7{height:37.574400pt;}
.hc{height:38.773333pt;}
.h2{height:40.597333pt;}
.h4{height:44.288000pt;}
.hb{height:51.669333pt;}
.h6{height:55.360000pt;}
.h1{height:1050.666667pt;}
.h0{height:1050.708008pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.x2{left:40.633867pt;}
.x3{left:53.967333pt;}
.x1{left:222.818933pt;}
.xe{left:233.297067pt;}
.x7{left:238.650933pt;}
.x5{left:300.552133pt;}
.x9{left:318.443733pt;}
.xd{left:343.776133pt;}
.xb{left:385.069067pt;}
.xc{left:536.997733pt;}
.x6{left:616.029467pt;}
.x8{left:625.963333pt;}
.xa{left:710.577333pt;}
.xf{left:720.822933pt;}
.x4{left:726.822933pt;}
}


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