
/* 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_981046a10745.woff")format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_96b055e3412a.woff")format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_b00a3c8026ac.woff")format("woff");}.ff3{font-family:ff3;line-height:0.734863;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_b9b66216c577.woff")format("woff");}.ff4{font-family:ff4;line-height:0.929688;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_96dcb856b1f6.woff")format("woff");}.ff5{font-family:ff5;line-height:1.043457;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_40d9662fd8be.woff")format("woff");}.ff6{font-family:ff6;line-height:1.059082;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_22624bb69427.woff")format("woff");}.ff7{font-family:ff7;line-height:1.058594;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_0d7ddf76dfef.woff")format("woff");}.ff8{font-family:ff8;line-height:1.043945;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_96d42eb6d570.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_8da509c88282.woff")format("woff");}.ffa{font-family:ffa;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_04b34dab9f1b.woff")format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.136560px;}
.v1{vertical-align:18.000000px;}
.ls2e{letter-spacing:-1.008000px;}
.ls3b{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.360000px;}
.ls55{letter-spacing:-0.358560px;}
.ls14{letter-spacing:-0.298800px;}
.lsc{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.239040px;}
.ls23{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.179280px;}
.lsf{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.059760px;}
.ls28{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.011952px;}
.ls15{letter-spacing:0.059760px;}
.ls9{letter-spacing:0.060480px;}
.ls4a{letter-spacing:0.065736px;}
.ls56{letter-spacing:0.071712px;}
.ls4e{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.077760px;}
.ls16{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.144000px;}
.ls4f{letter-spacing:0.179280px;}
.ls18{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.241920px;}
.ls1e{letter-spacing:0.286848px;}
.ls19{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.298680px;}
.ls6{letter-spacing:0.298800px;}
.ls3c{letter-spacing:0.310752px;}
.ls37{letter-spacing:0.319680px;}
.ls52{letter-spacing:0.322704px;}
.ls3f{letter-spacing:0.334656px;}
.ls21{letter-spacing:0.340632px;}
.ls48{letter-spacing:0.346608px;}
.ls53{letter-spacing:0.352584px;}
.ls4{letter-spacing:0.358560px;}
.lse{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.376488px;}
.ls45{letter-spacing:0.388440px;}
.ls39{letter-spacing:0.400392px;}
.ls54{letter-spacing:0.418320px;}
.ls47{letter-spacing:0.424296px;}
.ls46{letter-spacing:0.429120px;}
.ls25{letter-spacing:0.460152px;}
.ls38{letter-spacing:0.466560px;}
.ls1c{letter-spacing:0.537840px;}
.ls2a{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.699192px;}
.ls2c{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.776880px;}
.ls1f{letter-spacing:1.015920px;}
.ls50{letter-spacing:1.075680px;}
.ls31{letter-spacing:1.972080px;}
.ls30{letter-spacing:2.512800px;}
.ls1a{letter-spacing:2.520000px;}
.ls3e{letter-spacing:2.689200px;}
.ls1b{letter-spacing:3.240000px;}
.ls43{letter-spacing:3.382416px;}
.ls35{letter-spacing:3.406320px;}
.ls4b{letter-spacing:3.960000px;}
.ls41{letter-spacing:4.123440px;}
.ls4d{letter-spacing:4.840560px;}
.ls32{letter-spacing:5.557680px;}
.ls34{letter-spacing:5.846400px;}
.lsa{letter-spacing:6.274800px;}
.ls42{letter-spacing:6.991920px;}
.ls26{letter-spacing:8.426160px;}
.ls24{letter-spacing:9.143280px;}
.ls33{letter-spacing:9.920160px;}
.ls20{letter-spacing:11.354400px;}
.ls4c{letter-spacing:12.071520px;}
.ls44{letter-spacing:14.222880px;}
.ls3d{letter-spacing:14.940000px;}
.ls1d{letter-spacing:17.091360px;}
.ls2d{letter-spacing:17.808480px;}
.ls40{letter-spacing:23.545440px;}
.ls2{letter-spacing:34.560000px;}
.ls2b{letter-spacing:37.584000px;}
.ls7{letter-spacing:50.544000px;}
.lsb{letter-spacing:60.297840px;}
.ls1{letter-spacing:132.000000px;}
.ls36{letter-spacing:848.160000px;}
.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;}
}
.ws2{word-spacing:-132.000000px;}
.ws3{word-spacing:-34.560000px;}
.ws0{word-spacing:-18.720000px;}
.ws47{word-spacing:-16.200000px;}
.wsf{word-spacing:-16.128000px;}
.ws4c{word-spacing:-16.056000px;}
.ws26{word-spacing:-15.984000px;}
.ws5{word-spacing:-15.840000px;}
.ws28{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.696000px;}
.ws30{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.552000px;}
.ws2f{word-spacing:-15.480000px;}
.ws35{word-spacing:-15.264000px;}
.ws5e{word-spacing:-14.976000px;}
.ws41{word-spacing:-14.832000px;}
.ws42{word-spacing:-13.924080px;}
.wsc{word-spacing:-13.505760px;}
.ws29{word-spacing:-13.386240px;}
.ws81{word-spacing:-13.326480px;}
.wsa{word-spacing:-13.266720px;}
.wsd{word-spacing:-13.206960px;}
.ws10{word-spacing:-13.159152px;}
.wsb{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.087440px;}
.ws8{word-spacing:-13.027680px;}
.ws76{word-spacing:-12.967920px;}
.wse{word-spacing:-12.908160px;}
.ws9{word-spacing:-12.848400px;}
.ws80{word-spacing:-12.788640px;}
.ws27{word-spacing:-10.612800px;}
.ws36{word-spacing:-10.564560px;}
.ws37{word-spacing:-8.631360px;}
.ws5f{word-spacing:-8.553600px;}
.ws31{word-spacing:-3.406320px;}
.ws7c{word-spacing:-2.689200px;}
.ws7d{word-spacing:-2.091600px;}
.ws52{word-spacing:-1.972080px;}
.ws55{word-spacing:-1.673280px;}
.ws46{word-spacing:-1.553760px;}
.ws43{word-spacing:-1.254960px;}
.ws45{word-spacing:-1.135440px;}
.ws1e{word-spacing:-0.864000px;}
.ws44{word-spacing:-0.836640px;}
.ws67{word-spacing:-0.657360px;}
.ws77{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.537840px;}
.ws5c{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.418320px;}
.ws13{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.358560px;}
.ws2a{word-spacing:-0.298800px;}
.ws1b{word-spacing:-0.239040px;}
.ws1d{word-spacing:-0.216000px;}
.ws78{word-spacing:-0.179280px;}
.ws11{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.119520px;}
.ws7e{word-spacing:-0.072000px;}
.ws19{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.059760px;}
.ws12{word-spacing:0.072000px;}
.ws60{word-spacing:0.119520px;}
.ws14{word-spacing:0.144000px;}
.ws15{word-spacing:0.179280px;}
.ws5d{word-spacing:0.216000px;}
.ws1a{word-spacing:0.239040px;}
.ws1f{word-spacing:0.288000px;}
.ws3a{word-spacing:0.298800px;}
.ws61{word-spacing:0.418320px;}
.ws3b{word-spacing:0.478080px;}
.ws7f{word-spacing:0.537840px;}
.ws2b{word-spacing:0.597600px;}
.ws82{word-spacing:0.717120px;}
.ws62{word-spacing:0.776880px;}
.ws79{word-spacing:0.836640px;}
.ws33{word-spacing:0.896400px;}
.ws49{word-spacing:1.008000px;}
.ws32{word-spacing:1.195200px;}
.ws48{word-spacing:1.613520px;}
.ws63{word-spacing:1.972080px;}
.ws71{word-spacing:2.031840px;}
.ws64{word-spacing:2.211120px;}
.ws2e{word-spacing:2.330640px;}
.ws6d{word-spacing:2.748960px;}
.ws7a{word-spacing:2.928240px;}
.ws54{word-spacing:3.047760px;}
.ws5a{word-spacing:3.764880px;}
.ws53{word-spacing:4.362480px;}
.ws34{word-spacing:4.482000px;}
.ws7b{word-spacing:4.900320px;}
.ws4a{word-spacing:5.199120px;}
.ws20{word-spacing:5.916240px;}
.ws22{word-spacing:6.334560px;}
.ws5b{word-spacing:6.633360px;}
.ws4f{word-spacing:7.350480px;}
.ws70{word-spacing:7.768800px;}
.ws50{word-spacing:7.948080px;}
.ws51{word-spacing:8.067600px;}
.ws3c{word-spacing:8.366400px;}
.ws4b{word-spacing:8.485920px;}
.ws68{word-spacing:8.665200px;}
.ws38{word-spacing:8.784720px;}
.ws39{word-spacing:8.904240px;}
.ws4e{word-spacing:9.501840px;}
.ws3d{word-spacing:9.621360px;}
.ws4d{word-spacing:10.099440px;}
.ws59{word-spacing:10.218960px;}
.ws2d{word-spacing:10.936080px;}
.ws6c{word-spacing:11.533680px;}
.ws6f{word-spacing:11.712960px;}
.ws3f{word-spacing:11.832480px;}
.ws58{word-spacing:12.131280px;}
.ws75{word-spacing:13.864320px;}
.ws74{word-spacing:14.282640px;}
.ws73{word-spacing:14.461920px;}
.ws6b{word-spacing:14.581440px;}
.ws6a{word-spacing:14.999760px;}
.ws69{word-spacing:15.298560px;}
.ws57{word-spacing:15.896160px;}
.ws2c{word-spacing:16.732800px;}
.ws40{word-spacing:17.868240px;}
.ws56{word-spacing:19.601280px;}
.ws3e{word-spacing:20.437920px;}
.ws23{word-spacing:22.469760px;}
.ws66{word-spacing:22.589280px;}
.ws65{word-spacing:22.888080px;}
.ws6e{word-spacing:23.186880px;}
.ws72{word-spacing:44.102880px;}
.ws25{word-spacing:60.357600px;}
.ws24{word-spacing:60.656400px;}
._6{margin-left:-3.047760px;}
._0{margin-left:-1.584000px;}
._1{width:1.008000px;}
._3{width:2.252088px;}
._2{width:3.744000px;}
._4{width:6.485040px;}
._7{width:9.047520px;}
._5{width:60.318288px;}
.fc5{color:rgb(0,0,10);}
.fc1{color:rgb(40,74,34);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:8.639850px;}
.y105{bottom:8.640000px;}
.y14c{bottom:8.820000px;}
.y102{bottom:31.500000px;}
.y15{bottom:57.060000px;}
.y14{bottom:78.300000px;}
.y9d{bottom:107.797860px;}
.y82{bottom:107.806860px;}
.yc8{bottom:107.811000px;}
.y41{bottom:107.815140px;}
.y69{bottom:107.820000px;}
.y17c{bottom:115.920000px;}
.y1e5{bottom:119.906640px;}
.y1b0{bottom:122.052420px;}
.y9c{bottom:125.262720px;}
.y81{bottom:125.271720px;}
.y68{bottom:125.275860px;}
.y40{bottom:125.280000px;}
.y143{bottom:125.460000px;}
.ybc{bottom:129.060000px;}
.y1e4{bottom:137.371500px;}
.y1af{bottom:139.517280px;}
.y9b{bottom:142.906860px;}
.y11a{bottom:142.911000px;}
.y3f{bottom:142.915860px;}
.y17b{bottom:143.280000px;}
.ya3{bottom:143.460000px;}
.y67{bottom:146.700000px;}
.yf3{bottom:152.280000px;}
.y142{bottom:152.820000px;}
.y1e3{bottom:155.015640px;}
.y1ae{bottom:157.161420px;}
.y125{bottom:160.542720px;}
.y66{bottom:160.551000px;}
.y119{bottom:160.555140px;}
.yc7{bottom:161.100000px;}
.y3e{bottom:164.340000px;}
.y17a{bottom:170.820000px;}
.ya2{bottom:174.240000px;}
.y1ad{bottom:174.805560px;}
.y1e2{bottom:177.156720px;}
.ye8{bottom:177.963300px;}
.y124{bottom:178.007580px;}
.y65{bottom:178.015860px;}
.y3d{bottom:178.740000px;}
.y141{bottom:180.180000px;}
.y118{bottom:181.800000px;}
.yf2{bottom:188.820000px;}
.ybb{bottom:192.600000px;}
.y15a{bottom:193.680000px;}
.y1e1{bottom:194.621580px;}
.ye7{bottom:195.607440px;}
.y117{bottom:195.651720px;}
.y1ac{bottom:196.767360px;}
.y179{bottom:198.180000px;}
.y64{bottom:199.440000px;}
.ya1{bottom:201.600000px;}
.ye6{bottom:213.251580px;}
.y63{bottom:213.295860px;}
.y167{bottom:213.840000px;}
.y1ab{bottom:214.411500px;}
.yd8{bottom:214.560000px;}
.yf1{bottom:216.180000px;}
.y140{bottom:216.720000px;}
.y1e0{bottom:216.762660px;}
.y9a{bottom:217.080000px;}
.yba{bottom:220.140000px;}
.y159{bottom:221.040000px;}
.y3c{bottom:224.460000px;}
.y178{bottom:225.720000px;}
.ya0{bottom:229.140000px;}
.ye5{bottom:230.895720px;}
.y99{bottom:230.935140px;}
.y62{bottom:234.720000px;}
.y1aa{bottom:236.552580px;}
.y1df{bottom:238.903740px;}
.yd7{bottom:241.920000px;}
.yf0{bottom:243.720000px;}
.y13f{bottom:244.080000px;}
.yb9{bottom:247.500000px;}
.ye4{bottom:248.360580px;}
.y123{bottom:248.369580px;}
.y158{bottom:248.580000px;}
.y61{bottom:248.940000px;}
.y3b{bottom:251.820000px;}
.y98{bottom:252.180000px;}
.y177{bottom:253.080000px;}
.y1a9{bottom:254.017440px;}
.y80{bottom:256.500000px;}
.y1de{bottom:261.044820px;}
.yc3{bottom:262.080000px;}
.ye3{bottom:266.004720px;}
.y122{bottom:266.013720px;}
.yd6{bottom:269.460000px;}
.y97{bottom:269.820000px;}
.yef{bottom:271.080000px;}
.y13e{bottom:271.620000px;}
.y113{bottom:271.980000px;}
.yb8{bottom:274.860000px;}
.y157{bottom:275.940000px;}
.y1a8{bottom:276.158520px;}
.y1dd{bottom:278.509680px;}
.y3a{bottom:279.360000px;}
.y176{bottom:280.440000px;}
.ye2{bottom:283.648860px;}
.y121{bottom:283.657860px;}
.y96{bottom:283.680000px;}
.y7f{bottom:283.860000px;}
.y60{bottom:284.940000px;}
.y9{bottom:288.178050px;}
.yc2{bottom:289.440000px;}
.y1a7{bottom:293.802660px;}
.y1dc{bottom:296.153820px;}
.yd5{bottom:296.820000px;}
.yee{bottom:298.440000px;}
.y13d{bottom:298.980000px;}
.y112{bottom:299.340000px;}
.ye1{bottom:301.113720px;}
.y120{bottom:301.122720px;}
.yb7{bottom:302.400000px;}
.y156{bottom:303.480000px;}
.y95{bottom:304.920000px;}
.y39{bottom:306.720000px;}
.y175{bottom:307.980000px;}
.y7e{bottom:311.400000px;}
.y5f{bottom:312.300000px;}
.y8{bottom:315.178050px;}
.y1a6{bottom:315.943740px;}
.yc1{bottom:316.980000px;}
.y1db{bottom:318.294900px;}
.ye0{bottom:318.757860px;}
.y11f{bottom:318.766860px;}
.y94{bottom:319.320000px;}
.yd4{bottom:324.180000px;}
.yed{bottom:325.980000px;}
.y13c{bottom:326.340000px;}
.yb6{bottom:329.760000px;}
.y155{bottom:330.840000px;}
.y1a5{bottom:333.408600px;}
.y174{bottom:335.340000px;}
.y1da{bottom:335.759760px;}
.ydf{bottom:336.402000px;}
.y11e{bottom:336.411000px;}
.y7d{bottom:338.760000px;}
.y5e{bottom:339.840000px;}
.y7{bottom:342.178050px;}
.y111{bottom:343.080900px;}
.yc0{bottom:344.340000px;}
.y38{bottom:349.200000px;}
.y1a4{bottom:351.052740px;}
.yec{bottom:353.340000px;}
.yde{bottom:353.866860px;}
.y11d{bottom:353.875860px;}
.y13b{bottom:353.880000px;}
.yb5{bottom:357.300000px;}
.y1d9{bottom:357.900840px;}
.y154{bottom:358.200000px;}
.y116{bottom:362.340000px;}
.y173{bottom:362.880000px;}
.y110{bottom:365.939100px;}
.y7c{bottom:366.300000px;}
.yd3{bottom:366.660000px;}
.y5d{bottom:367.200000px;}
.y1a3{bottom:368.696880px;}
.ydd{bottom:371.511000px;}
.y166{bottom:371.880000px;}
.y11c{bottom:375.300000px;}
.y1d8{bottom:375.544980px;}
.y93{bottom:380.880000px;}
.y13a{bottom:381.240000px;}
.yb4{bottom:384.660000px;}
.y153{bottom:385.740000px;}
.ydc{bottom:389.155140px;}
.y11b{bottom:389.700000px;}
.y115{bottom:389.880000px;}
.y1a2{bottom:390.658680px;}
.y7b{bottom:393.660000px;}
.y1d7{bottom:397.506780px;}
.y165{bottom:399.240000px;}
.y5c{bottom:403.740000px;}
.y37{bottom:405.678420px;}
.y92{bottom:408.240000px;}
.y1a1{bottom:408.302820px;}
.y139{bottom:408.780000px;}
.ydb{bottom:410.400000px;}
.y10f{bottom:410.583600px;}
.y152{bottom:413.100000px;}
.y1d6{bottom:415.150920px;}
.y114{bottom:417.240000px;}
.y200{bottom:420.489000px;}
.y7a{bottom:421.020000px;}
.yda{bottom:424.800000px;}
.y164{bottom:426.600000px;}
.y10e{bottom:429.843600px;}
.yd2{bottom:430.020000px;}
.y1a0{bottom:430.443900px;}
.y5b{bottom:431.100000px;}
.y36{bottom:432.137160px;}
.y91{bottom:435.600000px;}
.y138{bottom:436.140000px;}
.y1d5{bottom:437.292000px;}
.y151{bottom:440.640000px;}
.y1ff{bottom:443.347200px;}
.yeb{bottom:444.600000px;}
.y19f{bottom:447.908760px;}
.y79{bottom:448.560000px;}
.y35{bottom:449.781300px;}
.y10d{bottom:452.701800px;}
.y163{bottom:454.140000px;}
.y1d4{bottom:454.756860px;}
.yd1{bottom:457.560000px;}
.y5a{bottom:458.460000px;}
.y90{bottom:463.140000px;}
.y137{bottom:463.500000px;}
.y1fe{bottom:466.205400px;}
.y34{bottom:467.425440px;}
.y19e{bottom:470.049840px;}
.yea{bottom:472.140000px;}
.y10c{bottom:475.560000px;}
.y78{bottom:475.920000px;}
.y1d3{bottom:476.897940px;}
.y6{bottom:477.178050px;}
.y162{bottom:481.500000px;}
.y150{bottom:484.382700px;}
.yd0{bottom:484.920000px;}
.y33{bottom:485.069580px;}
.y59{bottom:486.000000px;}
.y19d{bottom:487.693980px;}
.y1fd{bottom:489.063600px;}
.y8f{bottom:490.500000px;}
.y136{bottom:491.040000px;}
.y1d2{bottom:494.542080px;}
.ye9{bottom:499.500000px;}
.y10b{bottom:501.480000px;}
.y32{bottom:502.713720px;}
.y77{bottom:503.460000px;}
.y5{bottom:504.178050px;}
.y161{bottom:509.040000px;}
.y19c{bottom:509.835060px;}
.y1fc{bottom:511.921800px;}
.ycf{bottom:512.460000px;}
.y58{bottom:513.360000px;}
.y1d1{bottom:516.683250px;}
.y8e{bottom:518.040000px;}
.y135{bottom:518.400000px;}
.y31{bottom:520.178580px;}
.y14f{bottom:525.243600px;}
.yd9{bottom:527.040000px;}
.y19b{bottom:527.299920px;}
.y10a{bottom:528.660000px;}
.y76{bottom:530.820000px;}
.y4{bottom:531.178050px;}
.y1fb{bottom:534.780000px;}
.y160{bottom:536.400000px;}
.y30{bottom:537.822720px;}
.y1d0{bottom:538.644960px;}
.yce{bottom:539.820000px;}
.y57{bottom:540.900000px;}
.y19a{bottom:544.944060px;}
.y8d{bottom:545.400000px;}
.yc6{bottom:545.760000px;}
.y14e{bottom:548.101800px;}
.ybf{bottom:554.400000px;}
.y134{bottom:554.940000px;}
.y2f{bottom:555.466860px;}
.y109{bottom:555.660000px;}
.y1cf{bottom:556.289100px;}
.y3{bottom:558.178050px;}
.y75{bottom:558.360000px;}
.y199{bottom:562.588200px;}
.y172{bottom:563.760000px;}
.ycd{bottom:567.360000px;}
.y56{bottom:568.260000px;}
.y14d{bottom:570.960000px;}
.y8c{bottom:572.760000px;}
.y2e{bottom:572.931720px;}
.y9f{bottom:573.300000px;}
.y1fa{bottom:574.200000px;}
.y1ce{bottom:578.430180px;}
.y198{bottom:580.053060px;}
.ybe{bottom:581.760000px;}
.y133{bottom:582.300000px;}
.y108{bottom:582.660000px;}
.y2{bottom:585.178050px;}
.yb3{bottom:585.720000px;}
.y2d{bottom:590.575860px;}
.y171{bottom:591.300000px;}
.ycc{bottom:594.720000px;}
.y55{bottom:595.620000px;}
.y1cd{bottom:595.895040px;}
.y14b{bottom:596.880000px;}
.y197{bottom:597.697200px;}
.y8b{bottom:600.300000px;}
.y74{bottom:600.660000px;}
.y2c{bottom:608.220000px;}
.ybd{bottom:609.300000px;}
.y107{bottom:609.840000px;}
.y1{bottom:612.178050px;}
.yb2{bottom:613.080000px;}
.y196{bottom:615.341340px;}
.y1cc{bottom:618.036120px;}
.ycb{bottom:622.080000px;}
.y14a{bottom:624.780000px;}
.y2b{bottom:625.609440px;}
.y8a{bottom:627.660000px;}
.y73{bottom:628.200000px;}
.y54{bottom:630.367200px;}
.y1f9{bottom:630.660420px;}
.y195{bottom:632.806200px;}
.y1cb{bottom:635.680260px;}
.y9e{bottom:636.660000px;}
.y106{bottom:636.840000px;}
.y132{bottom:637.200000px;}
.yb1{bottom:640.620000px;}
.y2a{bottom:643.253580px;}
.y1f8{bottom:648.304560px;}
.y16f{bottom:649.620000px;}
.y149{bottom:651.780000px;}
.y1ca{bottom:653.145120px;}
.y53{bottom:653.225400px;}
.y194{bottom:654.947280px;}
.y15f{bottom:655.200000px;}
.y29{bottom:660.897720px;}
.y104{bottom:663.840000px;}
.y89{bottom:664.200000px;}
.yca{bottom:664.560000px;}
.yb0{bottom:667.980000px;}
.y1f7{bottom:670.445640px;}
.y1c9{bottom:670.789260px;}
.y193{bottom:672.591420px;}
.y52{bottom:676.083600px;}
.y16e{bottom:676.980000px;}
.y148{bottom:678.960000px;}
.y15e{bottom:682.560000px;}
.y72{bottom:691.560000px;}
.y101{bottom:691.740000px;}
.y1f6{bottom:692.586720px;}
.y1c8{bottom:692.930340px;}
.y192{bottom:694.732500px;}
.yaf{bottom:695.520000px;}
.y28{bottom:696.365280px;}
.y51{bottom:698.941800px;}
.y103{bottom:700.380000px;}
.y16d{bottom:704.520000px;}
.y146{bottom:705.960000px;}
.y131{bottom:708.299100px;}
.y15d{bottom:709.920000px;}
.yc5{bottom:710.460000px;}
.y1c7{bottom:710.574450px;}
.y191{bottom:712.197360px;}
.y1f5{bottom:714.548520px;}
.y147{bottom:714.600000px;}
.y71{bottom:718.920000px;}
.y50{bottom:721.800000px;}
.yae{bottom:722.880000px;}
.y27{bottom:723.003300px;}
.yc9{bottom:727.920000px;}
.y190{bottom:729.841500px;}
.y16c{bottom:731.880000px;}
.y1c6{bottom:732.536280px;}
.y1f4{bottom:736.689600px;}
.y15c{bottom:737.460000px;}
.yc4{bottom:737.820000px;}
.y26{bottom:740.647440px;}
.y70{bottom:746.460000px;}
.y1c5{bottom:750.180450px;}
.yad{bottom:750.240000px;}
.y18f{bottom:751.982580px;}
.y130{bottom:752.938560px;}
.y4f{bottom:755.460000px;}
.y145{bottom:755.820000px;}
.y25{bottom:758.291580px;}
.y1f3{bottom:758.830680px;}
.y16b{bottom:759.240000px;}
.y15b{bottom:764.820000px;}
.y100{bottom:767.880000px;}
.y12f{bottom:772.023600px;}
.y1c4{bottom:772.321500px;}
.y6f{bottom:773.820000px;}
.y18e{bottom:773.944380px;}
.y24{bottom:775.756440px;}
.yac{bottom:777.780000px;}
.y1f2{bottom:780.792480px;}
.y4e{bottom:782.820000px;}
.y144{bottom:783.720000px;}
.y16a{bottom:786.780000px;}
.y170{bottom:792.360000px;}
.y23{bottom:793.400580px;}
.y1c3{bottom:794.283300px;}
.y12e{bottom:794.881800px;}
.yff{bottom:795.240000px;}
.y18d{bottom:796.085460px;}
.y1f1{bottom:798.436620px;}
.y6e{bottom:801.360000px;}
.yab{bottom:805.140000px;}
.y4d{bottom:810.360000px;}
.y22{bottom:811.044720px;}
.y18c{bottom:813.729600px;}
.y169{bottom:814.140000px;}
.y1c2{bottom:816.424380px;}
.y12d{bottom:817.740000px;}
.y1f0{bottom:820.577700px;}
.yfe{bottom:822.780000px;}
.y21{bottom:828.509580px;}
.y6d{bottom:828.720000px;}
.y18b{bottom:831.194460px;}
.y1c1{bottom:834.068520px;}
.y4c{bottom:837.720000px;}
.y1ef{bottom:838.042560px;}
.yaa{bottom:841.680000px;}
.y12b{bottom:843.840000px;}
.y20{bottom:846.153720px;}
.y18a{bottom:848.838600px;}
.yfd{bottom:850.140000px;}
.y1c0{bottom:851.533380px;}
.y6c{bottom:856.260000px;}
.y168{bottom:856.620000px;}
.y1ee{bottom:860.183640px;}
.y1f{bottom:863.797860px;}
.y4b{bottom:865.260000px;}
.ya9{bottom:869.040000px;}
.y1bf{bottom:869.177520px;}
.y189{bottom:870.979680px;}
.y12a{bottom:871.020000px;}
.yfc{bottom:877.680000px;}
.y1e{bottom:881.262720px;}
.y1ed{bottom:882.324720px;}
.y6b{bottom:883.620000px;}
.y1be{bottom:886.821750px;}
.y188{bottom:888.444540px;}
.y4a{bottom:892.620000px;}
.ya8{bottom:896.400000px;}
.y129{bottom:898.020000px;}
.y1d{bottom:898.906860px;}
.y1ec{bottom:904.465800px;}
.yfb{bottom:905.040000px;}
.y187{bottom:906.088680px;}
.y1bd{bottom:908.962740px;}
.y6a{bottom:910.980000px;}
.y1c{bottom:916.551000px;}
.yb{bottom:918.238500px;}
.y11{bottom:918.391500px;}
.y49{bottom:919.980000px;}
.ya7{bottom:923.940000px;}
.y127{bottom:925.020000px;}
.y1bc{bottom:926.427600px;}
.y186{bottom:928.229760px;}
.yfa{bottom:932.400000px;}
.y128{bottom:933.660000px;}
.y1b{bottom:934.195140px;}
.y88{bottom:938.520000px;}
.y185{bottom:945.873900px;}
.y48{bottom:947.520000px;}
.y1bb{bottom:948.568680px;}
.ya6{bottom:951.300000px;}
.y1a{bottom:951.660000px;}
.yf9{bottom:959.940000px;}
.y184{bottom:963.338760px;}
.y87{bottom:965.880000px;}
.y1ba{bottom:966.212820px;}
.y47{bottom:974.880000px;}
.y126{bottom:975.780000px;}
.y10{bottom:976.891500px;}
.ya5{bottom:978.840000px;}
.y183{bottom:980.982900px;}
.y1b9{bottom:983.677680px;}
.yf8{bottom:987.300000px;}
.y1eb{bottom:988.174620px;}
.y86{bottom:993.420000px;}
.y46{bottom:1002.420000px;}
.y182{bottom:1003.123980px;}
.y1b8{bottom:1005.818760px;}
.ya4{bottom:1006.200000px;}
.yf7{bottom:1014.840000px;}
.y181{bottom:1020.588840px;}
.y85{bottom:1020.780000px;}
.y19{bottom:1021.140000px;}
.y1b7{bottom:1023.462900px;}
.y1ea{bottom:1027.959840px;}
.y45{bottom:1029.780000px;}
.yf{bottom:1035.391500px;}
.yf6{bottom:1042.200000px;}
.y180{bottom:1042.729920px;}
.y1b6{bottom:1045.424700px;}
.y84{bottom:1048.140000px;}
.y18{bottom:1048.680000px;}
.y1e9{bottom:1049.921640px;}
.y44{bottom:1057.140000px;}
.y17f{bottom:1060.374060px;}
.y1b5{bottom:1063.068840px;}
.y1e8{bottom:1067.565780px;}
.yf5{bottom:1069.560000px;}
.y83{bottom:1075.680000px;}
.y17{bottom:1076.040000px;}
.y1b4{bottom:1080.712980px;}
.y17e{bottom:1082.335860px;}
.y43{bottom:1084.680000px;}
.y1e7{bottom:1085.209950px;}
.ye{bottom:1093.891500px;}
.yf4{bottom:1097.100000px;}
.y17d{bottom:1099.980000px;}
.y1b3{bottom:1102.674780px;}
.y1e6{bottom:1107.171720px;}
.y42{bottom:1112.040000px;}
.ya{bottom:1116.238500px;}
.y1b2{bottom:1124.815860px;}
.y16{bottom:1139.580000px;}
.y1b1{bottom:1142.460000px;}
.yd{bottom:1152.391500px;}
.y13{bottom:1171.620000px;}
.y12{bottom:1192.680000px;}
.yc{bottom:1210.891500px;}
.h12{height:22.860000px;}
.h11{height:22.861500px;}
.h15{height:23.040000px;}
.ha{height:34.193672px;}
.h13{height:34.208452px;}
.hc{height:34.222852px;}
.h14{height:34.228612px;}
.h10{height:45.720000px;}
.h9{height:49.313672px;}
.he{height:49.330232px;}
.h19{height:49.342492px;}
.h17{height:49.342732px;}
.hd{height:49.342852px;}
.h18{height:49.342972px;}
.h8{height:50.218242px;}
.h16{height:51.998203px;}
.h2{height:55.089844px;}
.h6{height:59.414062px;}
.hf{height:59.449219px;}
.h7{height:60.503906px;}
.hb{height:62.648438px;}
.h4{height:132.468750px;}
.h3{height:478.564453px;}
.h0{height:1262.835000px;}
.h5{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:83.341500px;}
.w9{width:87.298500px;}
.wb{width:139.501500px;}
.wa{width:142.560000px;}
.w4{width:146.880000px;}
.wd{width:148.858500px;}
.w3{width:164.340000px;}
.w6{width:182.338500px;}
.w5{width:183.420000px;}
.w7{width:227.698500px;}
.wc{width:254.880000px;}
.we{width:276.300000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x3{left:24.448800px;}
.x1{left:25.511850px;}
.x5{left:106.200000px;}
.x18{left:114.300000px;}
.x1b{left:127.444680px;}
.x8{left:136.440000px;}
.xd{left:138.600000px;}
.xe{left:149.400000px;}
.x9{left:169.200000px;}
.xc{left:170.820000px;}
.x10{left:270.540000px;}
.x11{left:278.460000px;}
.xa{left:315.900000px;}
.xb{left:322.200000px;}
.x15{left:333.900000px;}
.x19{left:361.080000px;}
.x7{left:405.900000px;}
.x12{left:417.420000px;}
.x13{left:425.520000px;}
.x6{left:436.320000px;}
.x16{left:504.540000px;}
.x1a{left:509.940000px;}
.x14{left:600.840000px;}
.x17{left:647.100000px;}
.x2{left:653.740200px;}
.x4{left:786.600000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.454720pt;}
.v1{vertical-align:16.000000pt;}
.ls2e{letter-spacing:-0.896000pt;}
.ls3b{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls55{letter-spacing:-0.318720pt;}
.ls14{letter-spacing:-0.265600pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.212480pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.159360pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.053120pt;}
.ls28{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010624pt;}
.ls15{letter-spacing:0.053120pt;}
.ls9{letter-spacing:0.053760pt;}
.ls4a{letter-spacing:0.058432pt;}
.ls56{letter-spacing:0.063744pt;}
.ls4e{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.069120pt;}
.ls16{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4f{letter-spacing:0.159360pt;}
.ls18{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.215040pt;}
.ls1e{letter-spacing:0.254976pt;}
.ls19{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.265493pt;}
.ls6{letter-spacing:0.265600pt;}
.ls3c{letter-spacing:0.276224pt;}
.ls37{letter-spacing:0.284160pt;}
.ls52{letter-spacing:0.286848pt;}
.ls3f{letter-spacing:0.297472pt;}
.ls21{letter-spacing:0.302784pt;}
.ls48{letter-spacing:0.308096pt;}
.ls53{letter-spacing:0.313408pt;}
.ls4{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.334656pt;}
.ls45{letter-spacing:0.345280pt;}
.ls39{letter-spacing:0.355904pt;}
.ls54{letter-spacing:0.371840pt;}
.ls47{letter-spacing:0.377152pt;}
.ls46{letter-spacing:0.381440pt;}
.ls25{letter-spacing:0.409024pt;}
.ls38{letter-spacing:0.414720pt;}
.ls1c{letter-spacing:0.478080pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.621504pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.690560pt;}
.ls1f{letter-spacing:0.903040pt;}
.ls50{letter-spacing:0.956160pt;}
.ls31{letter-spacing:1.752960pt;}
.ls30{letter-spacing:2.233600pt;}
.ls1a{letter-spacing:2.240000pt;}
.ls3e{letter-spacing:2.390400pt;}
.ls1b{letter-spacing:2.880000pt;}
.ls43{letter-spacing:3.006592pt;}
.ls35{letter-spacing:3.027840pt;}
.ls4b{letter-spacing:3.520000pt;}
.ls41{letter-spacing:3.665280pt;}
.ls4d{letter-spacing:4.302720pt;}
.ls32{letter-spacing:4.940160pt;}
.ls34{letter-spacing:5.196800pt;}
.lsa{letter-spacing:5.577600pt;}
.ls42{letter-spacing:6.215040pt;}
.ls26{letter-spacing:7.489920pt;}
.ls24{letter-spacing:8.127360pt;}
.ls33{letter-spacing:8.817920pt;}
.ls20{letter-spacing:10.092800pt;}
.ls4c{letter-spacing:10.730240pt;}
.ls44{letter-spacing:12.642560pt;}
.ls3d{letter-spacing:13.280000pt;}
.ls1d{letter-spacing:15.192320pt;}
.ls2d{letter-spacing:15.829760pt;}
.ls40{letter-spacing:20.929280pt;}
.ls2{letter-spacing:30.720000pt;}
.ls2b{letter-spacing:33.408000pt;}
.ls7{letter-spacing:44.928000pt;}
.lsb{letter-spacing:53.598080pt;}
.ls1{letter-spacing:117.333333pt;}
.ls36{letter-spacing:753.920000pt;}
.ws2{word-spacing:-117.333333pt;}
.ws3{word-spacing:-30.720000pt;}
.ws0{word-spacing:-16.640000pt;}
.ws47{word-spacing:-14.400000pt;}
.wsf{word-spacing:-14.336000pt;}
.ws4c{word-spacing:-14.272000pt;}
.ws26{word-spacing:-14.208000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws28{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws30{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws2f{word-spacing:-13.760000pt;}
.ws35{word-spacing:-13.568000pt;}
.ws5e{word-spacing:-13.312000pt;}
.ws41{word-spacing:-13.184000pt;}
.ws42{word-spacing:-12.376960pt;}
.wsc{word-spacing:-12.005120pt;}
.ws29{word-spacing:-11.898880pt;}
.ws81{word-spacing:-11.845760pt;}
.wsa{word-spacing:-11.792640pt;}
.wsd{word-spacing:-11.739520pt;}
.ws10{word-spacing:-11.697024pt;}
.wsb{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.633280pt;}
.ws8{word-spacing:-11.580160pt;}
.ws76{word-spacing:-11.527040pt;}
.wse{word-spacing:-11.473920pt;}
.ws9{word-spacing:-11.420800pt;}
.ws80{word-spacing:-11.367680pt;}
.ws27{word-spacing:-9.433600pt;}
.ws36{word-spacing:-9.390720pt;}
.ws37{word-spacing:-7.672320pt;}
.ws5f{word-spacing:-7.603200pt;}
.ws31{word-spacing:-3.027840pt;}
.ws7c{word-spacing:-2.390400pt;}
.ws7d{word-spacing:-1.859200pt;}
.ws52{word-spacing:-1.752960pt;}
.ws55{word-spacing:-1.487360pt;}
.ws46{word-spacing:-1.381120pt;}
.ws43{word-spacing:-1.115520pt;}
.ws45{word-spacing:-1.009280pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws44{word-spacing:-0.743680pt;}
.ws67{word-spacing:-0.584320pt;}
.ws77{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.478080pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.371840pt;}
.ws13{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.318720pt;}
.ws2a{word-spacing:-0.265600pt;}
.ws1b{word-spacing:-0.212480pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws78{word-spacing:-0.159360pt;}
.ws11{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.106240pt;}
.ws7e{word-spacing:-0.064000pt;}
.ws19{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053120pt;}
.ws12{word-spacing:0.064000pt;}
.ws60{word-spacing:0.106240pt;}
.ws14{word-spacing:0.128000pt;}
.ws15{word-spacing:0.159360pt;}
.ws5d{word-spacing:0.192000pt;}
.ws1a{word-spacing:0.212480pt;}
.ws1f{word-spacing:0.256000pt;}
.ws3a{word-spacing:0.265600pt;}
.ws61{word-spacing:0.371840pt;}
.ws3b{word-spacing:0.424960pt;}
.ws7f{word-spacing:0.478080pt;}
.ws2b{word-spacing:0.531200pt;}
.ws82{word-spacing:0.637440pt;}
.ws62{word-spacing:0.690560pt;}
.ws79{word-spacing:0.743680pt;}
.ws33{word-spacing:0.796800pt;}
.ws49{word-spacing:0.896000pt;}
.ws32{word-spacing:1.062400pt;}
.ws48{word-spacing:1.434240pt;}
.ws63{word-spacing:1.752960pt;}
.ws71{word-spacing:1.806080pt;}
.ws64{word-spacing:1.965440pt;}
.ws2e{word-spacing:2.071680pt;}
.ws6d{word-spacing:2.443520pt;}
.ws7a{word-spacing:2.602880pt;}
.ws54{word-spacing:2.709120pt;}
.ws5a{word-spacing:3.346560pt;}
.ws53{word-spacing:3.877760pt;}
.ws34{word-spacing:3.984000pt;}
.ws7b{word-spacing:4.355840pt;}
.ws4a{word-spacing:4.621440pt;}
.ws20{word-spacing:5.258880pt;}
.ws22{word-spacing:5.630720pt;}
.ws5b{word-spacing:5.896320pt;}
.ws4f{word-spacing:6.533760pt;}
.ws70{word-spacing:6.905600pt;}
.ws50{word-spacing:7.064960pt;}
.ws51{word-spacing:7.171200pt;}
.ws3c{word-spacing:7.436800pt;}
.ws4b{word-spacing:7.543040pt;}
.ws68{word-spacing:7.702400pt;}
.ws38{word-spacing:7.808640pt;}
.ws39{word-spacing:7.914880pt;}
.ws4e{word-spacing:8.446080pt;}
.ws3d{word-spacing:8.552320pt;}
.ws4d{word-spacing:8.977280pt;}
.ws59{word-spacing:9.083520pt;}
.ws2d{word-spacing:9.720960pt;}
.ws6c{word-spacing:10.252160pt;}
.ws6f{word-spacing:10.411520pt;}
.ws3f{word-spacing:10.517760pt;}
.ws58{word-spacing:10.783360pt;}
.ws75{word-spacing:12.323840pt;}
.ws74{word-spacing:12.695680pt;}
.ws73{word-spacing:12.855040pt;}
.ws6b{word-spacing:12.961280pt;}
.ws6a{word-spacing:13.333120pt;}
.ws69{word-spacing:13.598720pt;}
.ws57{word-spacing:14.129920pt;}
.ws2c{word-spacing:14.873600pt;}
.ws40{word-spacing:15.882880pt;}
.ws56{word-spacing:17.423360pt;}
.ws3e{word-spacing:18.167040pt;}
.ws23{word-spacing:19.973120pt;}
.ws66{word-spacing:20.079360pt;}
.ws65{word-spacing:20.344960pt;}
.ws6e{word-spacing:20.610560pt;}
.ws72{word-spacing:39.202560pt;}
.ws25{word-spacing:53.651200pt;}
.ws24{word-spacing:53.916800pt;}
._6{margin-left:-2.709120pt;}
._0{margin-left:-1.408000pt;}
._1{width:0.896000pt;}
._3{width:2.001856pt;}
._2{width:3.328000pt;}
._4{width:5.764480pt;}
._7{width:8.042240pt;}
._5{width:53.616256pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:7.679867pt;}
.y105{bottom:7.680000pt;}
.y14c{bottom:7.840000pt;}
.y102{bottom:28.000000pt;}
.y15{bottom:50.720000pt;}
.y14{bottom:69.600000pt;}
.y9d{bottom:95.820320pt;}
.y82{bottom:95.828320pt;}
.yc8{bottom:95.832000pt;}
.y41{bottom:95.835680pt;}
.y69{bottom:95.840000pt;}
.y17c{bottom:103.040000pt;}
.y1e5{bottom:106.583680pt;}
.y1b0{bottom:108.491040pt;}
.y9c{bottom:111.344640pt;}
.y81{bottom:111.352640pt;}
.y68{bottom:111.356320pt;}
.y40{bottom:111.360000pt;}
.y143{bottom:111.520000pt;}
.ybc{bottom:114.720000pt;}
.y1e4{bottom:122.108000pt;}
.y1af{bottom:124.015360pt;}
.y9b{bottom:127.028320pt;}
.y11a{bottom:127.032000pt;}
.y3f{bottom:127.036320pt;}
.y17b{bottom:127.360000pt;}
.ya3{bottom:127.520000pt;}
.y67{bottom:130.400000pt;}
.yf3{bottom:135.360000pt;}
.y142{bottom:135.840000pt;}
.y1e3{bottom:137.791680pt;}
.y1ae{bottom:139.699040pt;}
.y125{bottom:142.704640pt;}
.y66{bottom:142.712000pt;}
.y119{bottom:142.715680pt;}
.yc7{bottom:143.200000pt;}
.y3e{bottom:146.080000pt;}
.y17a{bottom:151.840000pt;}
.ya2{bottom:154.880000pt;}
.y1ad{bottom:155.382720pt;}
.y1e2{bottom:157.472640pt;}
.ye8{bottom:158.189600pt;}
.y124{bottom:158.228960pt;}
.y65{bottom:158.236320pt;}
.y3d{bottom:158.880000pt;}
.y141{bottom:160.160000pt;}
.y118{bottom:161.600000pt;}
.yf2{bottom:167.840000pt;}
.ybb{bottom:171.200000pt;}
.y15a{bottom:172.160000pt;}
.y1e1{bottom:172.996960pt;}
.ye7{bottom:173.873280pt;}
.y117{bottom:173.912640pt;}
.y1ac{bottom:174.904320pt;}
.y179{bottom:176.160000pt;}
.y64{bottom:177.280000pt;}
.ya1{bottom:179.200000pt;}
.ye6{bottom:189.556960pt;}
.y63{bottom:189.596320pt;}
.y167{bottom:190.080000pt;}
.y1ab{bottom:190.588000pt;}
.yd8{bottom:190.720000pt;}
.yf1{bottom:192.160000pt;}
.y140{bottom:192.640000pt;}
.y1e0{bottom:192.677920pt;}
.y9a{bottom:192.960000pt;}
.yba{bottom:195.680000pt;}
.y159{bottom:196.480000pt;}
.y3c{bottom:199.520000pt;}
.y178{bottom:200.640000pt;}
.ya0{bottom:203.680000pt;}
.ye5{bottom:205.240640pt;}
.y99{bottom:205.275680pt;}
.y62{bottom:208.640000pt;}
.y1aa{bottom:210.268960pt;}
.y1df{bottom:212.358880pt;}
.yd7{bottom:215.040000pt;}
.yf0{bottom:216.640000pt;}
.y13f{bottom:216.960000pt;}
.yb9{bottom:220.000000pt;}
.ye4{bottom:220.764960pt;}
.y123{bottom:220.772960pt;}
.y158{bottom:220.960000pt;}
.y61{bottom:221.280000pt;}
.y3b{bottom:223.840000pt;}
.y98{bottom:224.160000pt;}
.y177{bottom:224.960000pt;}
.y1a9{bottom:225.793280pt;}
.y80{bottom:228.000000pt;}
.y1de{bottom:232.039840pt;}
.yc3{bottom:232.960000pt;}
.ye3{bottom:236.448640pt;}
.y122{bottom:236.456640pt;}
.yd6{bottom:239.520000pt;}
.y97{bottom:239.840000pt;}
.yef{bottom:240.960000pt;}
.y13e{bottom:241.440000pt;}
.y113{bottom:241.760000pt;}
.yb8{bottom:244.320000pt;}
.y157{bottom:245.280000pt;}
.y1a8{bottom:245.474240pt;}
.y1dd{bottom:247.564160pt;}
.y3a{bottom:248.320000pt;}
.y176{bottom:249.280000pt;}
.ye2{bottom:252.132320pt;}
.y121{bottom:252.140320pt;}
.y96{bottom:252.160000pt;}
.y7f{bottom:252.320000pt;}
.y60{bottom:253.280000pt;}
.y9{bottom:256.158267pt;}
.yc2{bottom:257.280000pt;}
.y1a7{bottom:261.157920pt;}
.y1dc{bottom:263.247840pt;}
.yd5{bottom:263.840000pt;}
.yee{bottom:265.280000pt;}
.y13d{bottom:265.760000pt;}
.y112{bottom:266.080000pt;}
.ye1{bottom:267.656640pt;}
.y120{bottom:267.664640pt;}
.yb7{bottom:268.800000pt;}
.y156{bottom:269.760000pt;}
.y95{bottom:271.040000pt;}
.y39{bottom:272.640000pt;}
.y175{bottom:273.760000pt;}
.y7e{bottom:276.800000pt;}
.y5f{bottom:277.600000pt;}
.y8{bottom:280.158267pt;}
.y1a6{bottom:280.838880pt;}
.yc1{bottom:281.760000pt;}
.y1db{bottom:282.928800pt;}
.ye0{bottom:283.340320pt;}
.y11f{bottom:283.348320pt;}
.y94{bottom:283.840000pt;}
.yd4{bottom:288.160000pt;}
.yed{bottom:289.760000pt;}
.y13c{bottom:290.080000pt;}
.yb6{bottom:293.120000pt;}
.y155{bottom:294.080000pt;}
.y1a5{bottom:296.363200pt;}
.y174{bottom:298.080000pt;}
.y1da{bottom:298.453120pt;}
.ydf{bottom:299.024000pt;}
.y11e{bottom:299.032000pt;}
.y7d{bottom:301.120000pt;}
.y5e{bottom:302.080000pt;}
.y7{bottom:304.158267pt;}
.y111{bottom:304.960800pt;}
.yc0{bottom:306.080000pt;}
.y38{bottom:310.400000pt;}
.y1a4{bottom:312.046880pt;}
.yec{bottom:314.080000pt;}
.yde{bottom:314.548320pt;}
.y11d{bottom:314.556320pt;}
.y13b{bottom:314.560000pt;}
.yb5{bottom:317.600000pt;}
.y1d9{bottom:318.134080pt;}
.y154{bottom:318.400000pt;}
.y116{bottom:322.080000pt;}
.y173{bottom:322.560000pt;}
.y110{bottom:325.279200pt;}
.y7c{bottom:325.600000pt;}
.yd3{bottom:325.920000pt;}
.y5d{bottom:326.400000pt;}
.y1a3{bottom:327.730560pt;}
.ydd{bottom:330.232000pt;}
.y166{bottom:330.560000pt;}
.y11c{bottom:333.600000pt;}
.y1d8{bottom:333.817760pt;}
.y93{bottom:338.560000pt;}
.y13a{bottom:338.880000pt;}
.yb4{bottom:341.920000pt;}
.y153{bottom:342.880000pt;}
.ydc{bottom:345.915680pt;}
.y11b{bottom:346.400000pt;}
.y115{bottom:346.560000pt;}
.y1a2{bottom:347.252160pt;}
.y7b{bottom:349.920000pt;}
.y1d7{bottom:353.339360pt;}
.y165{bottom:354.880000pt;}
.y5c{bottom:358.880000pt;}
.y37{bottom:360.603040pt;}
.y92{bottom:362.880000pt;}
.y1a1{bottom:362.935840pt;}
.y139{bottom:363.360000pt;}
.ydb{bottom:364.800000pt;}
.y10f{bottom:364.963200pt;}
.y152{bottom:367.200000pt;}
.y1d6{bottom:369.023040pt;}
.y114{bottom:370.880000pt;}
.y200{bottom:373.768000pt;}
.y7a{bottom:374.240000pt;}
.yda{bottom:377.600000pt;}
.y164{bottom:379.200000pt;}
.y10e{bottom:382.083200pt;}
.yd2{bottom:382.240000pt;}
.y1a0{bottom:382.616800pt;}
.y5b{bottom:383.200000pt;}
.y36{bottom:384.121920pt;}
.y91{bottom:387.200000pt;}
.y138{bottom:387.680000pt;}
.y1d5{bottom:388.704000pt;}
.y151{bottom:391.680000pt;}
.y1ff{bottom:394.086400pt;}
.yeb{bottom:395.200000pt;}
.y19f{bottom:398.141120pt;}
.y79{bottom:398.720000pt;}
.y35{bottom:399.805600pt;}
.y10d{bottom:402.401600pt;}
.y163{bottom:403.680000pt;}
.y1d4{bottom:404.228320pt;}
.yd1{bottom:406.720000pt;}
.y5a{bottom:407.520000pt;}
.y90{bottom:411.680000pt;}
.y137{bottom:412.000000pt;}
.y1fe{bottom:414.404800pt;}
.y34{bottom:415.489280pt;}
.y19e{bottom:417.822080pt;}
.yea{bottom:419.680000pt;}
.y10c{bottom:422.720000pt;}
.y78{bottom:423.040000pt;}
.y1d3{bottom:423.909280pt;}
.y6{bottom:424.158267pt;}
.y162{bottom:428.000000pt;}
.y150{bottom:430.562400pt;}
.yd0{bottom:431.040000pt;}
.y33{bottom:431.172960pt;}
.y59{bottom:432.000000pt;}
.y19d{bottom:433.505760pt;}
.y1fd{bottom:434.723200pt;}
.y8f{bottom:436.000000pt;}
.y136{bottom:436.480000pt;}
.y1d2{bottom:439.592960pt;}
.ye9{bottom:444.000000pt;}
.y10b{bottom:445.760000pt;}
.y32{bottom:446.856640pt;}
.y77{bottom:447.520000pt;}
.y5{bottom:448.158267pt;}
.y161{bottom:452.480000pt;}
.y19c{bottom:453.186720pt;}
.y1fc{bottom:455.041600pt;}
.ycf{bottom:455.520000pt;}
.y58{bottom:456.320000pt;}
.y1d1{bottom:459.274000pt;}
.y8e{bottom:460.480000pt;}
.y135{bottom:460.800000pt;}
.y31{bottom:462.380960pt;}
.y14f{bottom:466.883200pt;}
.yd9{bottom:468.480000pt;}
.y19b{bottom:468.711040pt;}
.y10a{bottom:469.920000pt;}
.y76{bottom:471.840000pt;}
.y4{bottom:472.158267pt;}
.y1fb{bottom:475.360000pt;}
.y160{bottom:476.800000pt;}
.y30{bottom:478.064640pt;}
.y1d0{bottom:478.795520pt;}
.yce{bottom:479.840000pt;}
.y57{bottom:480.800000pt;}
.y19a{bottom:484.394720pt;}
.y8d{bottom:484.800000pt;}
.yc6{bottom:485.120000pt;}
.y14e{bottom:487.201600pt;}
.ybf{bottom:492.800000pt;}
.y134{bottom:493.280000pt;}
.y2f{bottom:493.748320pt;}
.y109{bottom:493.920000pt;}
.y1cf{bottom:494.479200pt;}
.y3{bottom:496.158267pt;}
.y75{bottom:496.320000pt;}
.y199{bottom:500.078400pt;}
.y172{bottom:501.120000pt;}
.ycd{bottom:504.320000pt;}
.y56{bottom:505.120000pt;}
.y14d{bottom:507.520000pt;}
.y8c{bottom:509.120000pt;}
.y2e{bottom:509.272640pt;}
.y9f{bottom:509.600000pt;}
.y1fa{bottom:510.400000pt;}
.y1ce{bottom:514.160160pt;}
.y198{bottom:515.602720pt;}
.ybe{bottom:517.120000pt;}
.y133{bottom:517.600000pt;}
.y108{bottom:517.920000pt;}
.y2{bottom:520.158267pt;}
.yb3{bottom:520.640000pt;}
.y2d{bottom:524.956320pt;}
.y171{bottom:525.600000pt;}
.ycc{bottom:528.640000pt;}
.y55{bottom:529.440000pt;}
.y1cd{bottom:529.684480pt;}
.y14b{bottom:530.560000pt;}
.y197{bottom:531.286400pt;}
.y8b{bottom:533.600000pt;}
.y74{bottom:533.920000pt;}
.y2c{bottom:540.640000pt;}
.ybd{bottom:541.600000pt;}
.y107{bottom:542.080000pt;}
.y1{bottom:544.158267pt;}
.yb2{bottom:544.960000pt;}
.y196{bottom:546.970080pt;}
.y1cc{bottom:549.365440pt;}
.ycb{bottom:552.960000pt;}
.y14a{bottom:555.360000pt;}
.y2b{bottom:556.097280pt;}
.y8a{bottom:557.920000pt;}
.y73{bottom:558.400000pt;}
.y54{bottom:560.326400pt;}
.y1f9{bottom:560.587040pt;}
.y195{bottom:562.494400pt;}
.y1cb{bottom:565.049120pt;}
.y9e{bottom:565.920000pt;}
.y106{bottom:566.080000pt;}
.y132{bottom:566.400000pt;}
.yb1{bottom:569.440000pt;}
.y2a{bottom:571.780960pt;}
.y1f8{bottom:576.270720pt;}
.y16f{bottom:577.440000pt;}
.y149{bottom:579.360000pt;}
.y1ca{bottom:580.573440pt;}
.y53{bottom:580.644800pt;}
.y194{bottom:582.175360pt;}
.y15f{bottom:582.400000pt;}
.y29{bottom:587.464640pt;}
.y104{bottom:590.080000pt;}
.y89{bottom:590.400000pt;}
.yca{bottom:590.720000pt;}
.yb0{bottom:593.760000pt;}
.y1f7{bottom:595.951680pt;}
.y1c9{bottom:596.257120pt;}
.y193{bottom:597.859040pt;}
.y52{bottom:600.963200pt;}
.y16e{bottom:601.760000pt;}
.y148{bottom:603.520000pt;}
.y15e{bottom:606.720000pt;}
.y72{bottom:614.720000pt;}
.y101{bottom:614.880000pt;}
.y1f6{bottom:615.632640pt;}
.y1c8{bottom:615.938080pt;}
.y192{bottom:617.540000pt;}
.yaf{bottom:618.240000pt;}
.y28{bottom:618.991360pt;}
.y51{bottom:621.281600pt;}
.y103{bottom:622.560000pt;}
.y16d{bottom:626.240000pt;}
.y146{bottom:627.520000pt;}
.y131{bottom:629.599200pt;}
.y15d{bottom:631.040000pt;}
.yc5{bottom:631.520000pt;}
.y1c7{bottom:631.621733pt;}
.y191{bottom:633.064320pt;}
.y1f5{bottom:635.154240pt;}
.y147{bottom:635.200000pt;}
.y71{bottom:639.040000pt;}
.y50{bottom:641.600000pt;}
.yae{bottom:642.560000pt;}
.y27{bottom:642.669600pt;}
.yc9{bottom:647.040000pt;}
.y190{bottom:648.748000pt;}
.y16c{bottom:650.560000pt;}
.y1c6{bottom:651.143360pt;}
.y1f4{bottom:654.835200pt;}
.y15c{bottom:655.520000pt;}
.yc4{bottom:655.840000pt;}
.y26{bottom:658.353280pt;}
.y70{bottom:663.520000pt;}
.y1c5{bottom:666.827067pt;}
.yad{bottom:666.880000pt;}
.y18f{bottom:668.428960pt;}
.y130{bottom:669.278720pt;}
.y4f{bottom:671.520000pt;}
.y145{bottom:671.840000pt;}
.y25{bottom:674.036960pt;}
.y1f3{bottom:674.516160pt;}
.y16b{bottom:674.880000pt;}
.y15b{bottom:679.840000pt;}
.y100{bottom:682.560000pt;}
.y12f{bottom:686.243200pt;}
.y1c4{bottom:686.508000pt;}
.y6f{bottom:687.840000pt;}
.y18e{bottom:687.950560pt;}
.y24{bottom:689.561280pt;}
.yac{bottom:691.360000pt;}
.y1f2{bottom:694.037760pt;}
.y4e{bottom:695.840000pt;}
.y144{bottom:696.640000pt;}
.y16a{bottom:699.360000pt;}
.y170{bottom:704.320000pt;}
.y23{bottom:705.244960pt;}
.y1c3{bottom:706.029600pt;}
.y12e{bottom:706.561600pt;}
.yff{bottom:706.880000pt;}
.y18d{bottom:707.631520pt;}
.y1f1{bottom:709.721440pt;}
.y6e{bottom:712.320000pt;}
.yab{bottom:715.680000pt;}
.y4d{bottom:720.320000pt;}
.y22{bottom:720.928640pt;}
.y18c{bottom:723.315200pt;}
.y169{bottom:723.680000pt;}
.y1c2{bottom:725.710560pt;}
.y12d{bottom:726.880000pt;}
.y1f0{bottom:729.402400pt;}
.yfe{bottom:731.360000pt;}
.y21{bottom:736.452960pt;}
.y6d{bottom:736.640000pt;}
.y18b{bottom:738.839520pt;}
.y1c1{bottom:741.394240pt;}
.y4c{bottom:744.640000pt;}
.y1ef{bottom:744.926720pt;}
.yaa{bottom:748.160000pt;}
.y12b{bottom:750.080000pt;}
.y20{bottom:752.136640pt;}
.y18a{bottom:754.523200pt;}
.yfd{bottom:755.680000pt;}
.y1c0{bottom:756.918560pt;}
.y6c{bottom:761.120000pt;}
.y168{bottom:761.440000pt;}
.y1ee{bottom:764.607680pt;}
.y1f{bottom:767.820320pt;}
.y4b{bottom:769.120000pt;}
.ya9{bottom:772.480000pt;}
.y1bf{bottom:772.602240pt;}
.y189{bottom:774.204160pt;}
.y12a{bottom:774.240000pt;}
.yfc{bottom:780.160000pt;}
.y1e{bottom:783.344640pt;}
.y1ed{bottom:784.288640pt;}
.y6b{bottom:785.440000pt;}
.y1be{bottom:788.286000pt;}
.y188{bottom:789.728480pt;}
.y4a{bottom:793.440000pt;}
.ya8{bottom:796.800000pt;}
.y129{bottom:798.240000pt;}
.y1d{bottom:799.028320pt;}
.y1ec{bottom:803.969600pt;}
.yfb{bottom:804.480000pt;}
.y187{bottom:805.412160pt;}
.y1bd{bottom:807.966880pt;}
.y6a{bottom:809.760000pt;}
.y1c{bottom:814.712000pt;}
.yb{bottom:816.212000pt;}
.y11{bottom:816.348000pt;}
.y49{bottom:817.760000pt;}
.ya7{bottom:821.280000pt;}
.y127{bottom:822.240000pt;}
.y1bc{bottom:823.491200pt;}
.y186{bottom:825.093120pt;}
.yfa{bottom:828.800000pt;}
.y128{bottom:829.920000pt;}
.y1b{bottom:830.395680pt;}
.y88{bottom:834.240000pt;}
.y185{bottom:840.776800pt;}
.y48{bottom:842.240000pt;}
.y1bb{bottom:843.172160pt;}
.ya6{bottom:845.600000pt;}
.y1a{bottom:845.920000pt;}
.yf9{bottom:853.280000pt;}
.y184{bottom:856.301120pt;}
.y87{bottom:858.560000pt;}
.y1ba{bottom:858.855840pt;}
.y47{bottom:866.560000pt;}
.y126{bottom:867.360000pt;}
.y10{bottom:868.348000pt;}
.ya5{bottom:870.080000pt;}
.y183{bottom:871.984800pt;}
.y1b9{bottom:874.380160pt;}
.yf8{bottom:877.600000pt;}
.y1eb{bottom:878.377440pt;}
.y86{bottom:883.040000pt;}
.y46{bottom:891.040000pt;}
.y182{bottom:891.665760pt;}
.y1b8{bottom:894.061120pt;}
.ya4{bottom:894.400000pt;}
.yf7{bottom:902.080000pt;}
.y181{bottom:907.190080pt;}
.y85{bottom:907.360000pt;}
.y19{bottom:907.680000pt;}
.y1b7{bottom:909.744800pt;}
.y1ea{bottom:913.742080pt;}
.y45{bottom:915.360000pt;}
.yf{bottom:920.348000pt;}
.yf6{bottom:926.400000pt;}
.y180{bottom:926.871040pt;}
.y1b6{bottom:929.266400pt;}
.y84{bottom:931.680000pt;}
.y18{bottom:932.160000pt;}
.y1e9{bottom:933.263680pt;}
.y44{bottom:939.680000pt;}
.y17f{bottom:942.554720pt;}
.y1b5{bottom:944.950080pt;}
.y1e8{bottom:948.947360pt;}
.yf5{bottom:950.720000pt;}
.y83{bottom:956.160000pt;}
.y17{bottom:956.480000pt;}
.y1b4{bottom:960.633760pt;}
.y17e{bottom:962.076320pt;}
.y43{bottom:964.160000pt;}
.y1e7{bottom:964.631067pt;}
.ye{bottom:972.348000pt;}
.yf4{bottom:975.200000pt;}
.y17d{bottom:977.760000pt;}
.y1b3{bottom:980.155360pt;}
.y1e6{bottom:984.152640pt;}
.y42{bottom:988.480000pt;}
.ya{bottom:992.212000pt;}
.y1b2{bottom:999.836320pt;}
.y16{bottom:1012.960000pt;}
.y1b1{bottom:1015.520000pt;}
.yd{bottom:1024.348000pt;}
.y13{bottom:1041.440000pt;}
.y12{bottom:1060.160000pt;}
.yc{bottom:1076.348000pt;}
.h12{height:20.320000pt;}
.h11{height:20.321333pt;}
.h15{height:20.480000pt;}
.ha{height:30.394375pt;}
.h13{height:30.407512pt;}
.hc{height:30.420312pt;}
.h14{height:30.425432pt;}
.h10{height:40.640000pt;}
.h9{height:43.834375pt;}
.he{height:43.849095pt;}
.h19{height:43.859993pt;}
.h17{height:43.860206pt;}
.hd{height:43.860312pt;}
.h18{height:43.860419pt;}
.h8{height:44.638438pt;}
.h16{height:46.220625pt;}
.h2{height:48.968750pt;}
.h6{height:52.812500pt;}
.hf{height:52.843750pt;}
.h7{height:53.781250pt;}
.hb{height:55.687500pt;}
.h4{height:117.750000pt;}
.h3{height:425.390625pt;}
.h0{height:1122.520000pt;}
.h5{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:74.081333pt;}
.w9{width:77.598667pt;}
.wb{width:124.001333pt;}
.wa{width:126.720000pt;}
.w4{width:130.560000pt;}
.wd{width:132.318667pt;}
.w3{width:146.080000pt;}
.w6{width:162.078667pt;}
.w5{width:163.040000pt;}
.w7{width:202.398667pt;}
.wc{width:226.560000pt;}
.we{width:245.600000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x3{left:21.732267pt;}
.x1{left:22.677200pt;}
.x5{left:94.400000pt;}
.x18{left:101.600000pt;}
.x1b{left:113.284160pt;}
.x8{left:121.280000pt;}
.xd{left:123.200000pt;}
.xe{left:132.800000pt;}
.x9{left:150.400000pt;}
.xc{left:151.840000pt;}
.x10{left:240.480000pt;}
.x11{left:247.520000pt;}
.xa{left:280.800000pt;}
.xb{left:286.400000pt;}
.x15{left:296.800000pt;}
.x19{left:320.960000pt;}
.x7{left:360.800000pt;}
.x12{left:371.040000pt;}
.x13{left:378.240000pt;}
.x6{left:387.840000pt;}
.x16{left:448.480000pt;}
.x1a{left:453.280000pt;}
.x14{left:534.080000pt;}
.x17{left:575.200000pt;}
.x2{left:581.102400pt;}
.x4{left:699.200000pt;}
}


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