
/* 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_1db3ee9ee3ab.woff")format("woff");}.ff1{font-family:ff1;line-height:1.116000;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_b470dd0363f3.woff")format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_d7ba2af26d55.woff")format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_c4a78c9d1a29.woff")format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_37e57c292cfb.woff")format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_c0fa19489b12.woff")format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_13a06c9f050c.woff")format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_e35966589666.woff")format("woff");}.ff8{font-family:ff8;line-height:0.838000;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_d8a5cfe463bd.woff")format("woff");}.ff9{font-family:ff9;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_c1ce40e5fa83.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_c75502895584.woff")format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_eed97eb942ac.woff")format("woff");}.ffc{font-family:ffc;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_4f6d967c64e6.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_f8bcb50443b3.woff")format("woff");}.ffe{font-family:ffe;line-height:0.414000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_f4bc554e6068.woff")format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_6da51159a14e.woff")format("woff");}.ff10{font-family:ff10;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_3a09e9f95a9f.woff")format("woff");}.ff11{font-family:ff11;line-height:0.844238;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:ff12;src:url("fonts/font_0017_e43eef1e29dc.woff")format("woff");}.ff12{font-family:ff12;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v7{vertical-align:-34.962312px;}
.v1{vertical-align:-10.662000px;}
.v6{vertical-align:-3.377041px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.959485px;}
.v3{vertical-align:16.548000px;}
.v2{vertical-align:23.754000px;}
.v5{vertical-align:34.032000px;}
.v4{vertical-align:44.694000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.001059px;}
.ls15{letter-spacing:0.001593px;}
.lse{letter-spacing:0.002147px;}
.ls1d{letter-spacing:0.002682px;}
.ls10{letter-spacing:0.002706px;}
.ls25{letter-spacing:0.002712px;}
.ls1f{letter-spacing:0.003056px;}
.ls19{letter-spacing:0.003791px;}
.lsa{letter-spacing:0.004861px;}
.ls33{letter-spacing:0.015892px;}
.ls1{letter-spacing:2.984915px;}
.ls12{letter-spacing:2.990915px;}
.ls20{letter-spacing:4.679408px;}
.ls22{letter-spacing:4.681597px;}
.ls1e{letter-spacing:4.685408px;}
.ls24{letter-spacing:4.687597px;}
.ls27{letter-spacing:11.480712px;}
.ls26{letter-spacing:14.462915px;}
.ls13{letter-spacing:14.540706px;}
.ls3{letter-spacing:14.540712px;}
.ls7{letter-spacing:14.543412px;}
.ls8{letter-spacing:14.546706px;}
.ls5{letter-spacing:14.546712px;}
.ls11{letter-spacing:17.528915px;}
.ls6{letter-spacing:17.534915px;}
.ls4{letter-spacing:17.535543px;}
.ls1b{letter-spacing:18.179412px;}
.lsd{letter-spacing:20.636915px;}
.lsf{letter-spacing:20.911460px;}
.ls21{letter-spacing:21.164915px;}
.ls28{letter-spacing:23.270915px;}
.ls2{letter-spacing:24.592177px;}
.ls18{letter-spacing:24.626915px;}
.ls17{letter-spacing:24.627543px;}
.ls1a{letter-spacing:25.349412px;}
.ls16{letter-spacing:28.009460px;}
.ls23{letter-spacing:33.146712px;}
.lsc{letter-spacing:33.705543px;}
.ls9{letter-spacing:36.779412px;}
.ls14{letter-spacing:36.785412px;}
.lsb{letter-spacing:40.756177px;}
.ls2b{letter-spacing:71.728861px;}
.ls29{letter-spacing:75.297543px;}
.ls2e{letter-spacing:77.449593px;}
.ls2c{letter-spacing:87.176147px;}
.ls30{letter-spacing:90.946332px;}
.ls2a{letter-spacing:91.483059px;}
.ls2d{letter-spacing:96.267791px;}
.ls31{letter-spacing:96.699791px;}
.ls2f{letter-spacing:99.979067px;}
.ls32{letter-spacing:174.660581px;}
.ls34{letter-spacing:1321.781961px;}
.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:-60.000000px;}
.ws1f{word-spacing:-42.637126px;}
.ws94{word-spacing:-33.576663px;}
.ws93{word-spacing:-33.511208px;}
.ws8e{word-spacing:-25.711728px;}
.ws49{word-spacing:-18.183288px;}
.wsd9{word-spacing:-15.359443px;}
.wsc5{word-spacing:-10.797196px;}
.wsc0{word-spacing:-10.774749px;}
.wsc3{word-spacing:-7.430087px;}
.wsbb{word-spacing:-7.407640px;}
.wsc6{word-spacing:-5.409822px;}
.wsc4{word-spacing:-5.387374px;}
.wsc7{word-spacing:-3.367109px;}
.ws51{word-spacing:-3.325094px;}
.ws3d{word-spacing:-2.932366px;}
.ws3c{word-spacing:-2.670548px;}
.wsa7{word-spacing:-2.474184px;}
.wsa3{word-spacing:-2.408729px;}
.ws97{word-spacing:-2.146911px;}
.ws79{word-spacing:-2.081456px;}
.ws70{word-spacing:-2.016002px;}
.wsa6{word-spacing:-1.950547px;}
.wsb6{word-spacing:-1.688729px;}
.ws54{word-spacing:-1.426910px;}
.ws9d{word-spacing:-1.296001px;}
.ws84{word-spacing:-1.165092px;}
.ws9c{word-spacing:-1.099637px;}
.ws65{word-spacing:-1.034183px;}
.ws2e{word-spacing:-0.641455px;}
.ws4f{word-spacing:-0.576000px;}
.ws43{word-spacing:-0.510546px;}
.ws7e{word-spacing:-0.065455px;}
.ws20{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.013091px;}
.wsc1{word-spacing:0.039730px;}
.wsce{word-spacing:0.188294px;}
.wsb2{word-spacing:0.209455px;}
.ws87{word-spacing:0.274909px;}
.ws61{word-spacing:0.602182px;}
.ws41{word-spacing:0.667637px;}
.ws42{word-spacing:0.864001px;}
.wsbd{word-spacing:1.119682px;}
.ws27{word-spacing:1.125819px;}
.wsbc{word-spacing:1.156134px;}
.wsbe{word-spacing:1.159418px;}
.ws1a{word-spacing:1.191274px;}
.ws66{word-spacing:1.256728px;}
.wsa5{word-spacing:1.322183px;}
.ws3e{word-spacing:1.518547px;}
.wsd7{word-spacing:1.587053px;}
.ws53{word-spacing:1.714911px;}
.wsab{word-spacing:1.780365px;}
.ws73{word-spacing:1.911274px;}
.ws18{word-spacing:1.976729px;}
.ws2c{word-spacing:2.107638px;}
.ws5f{word-spacing:2.565820px;}
.ws74{word-spacing:2.696730px;}
.ws9e{word-spacing:2.762184px;}
.ws32{word-spacing:2.893093px;}
.ws71{word-spacing:2.958548px;}
.wscf{word-spacing:2.996571px;}
.ws4{word-spacing:3.039610px;}
.ws12{word-spacing:3.093408px;}
.ws7d{word-spacing:3.220366px;}
.wsa1{word-spacing:3.351276px;}
.ws59{word-spacing:3.416730px;}
.ws5a{word-spacing:3.454261px;}
.ws58{word-spacing:3.482185px;}
.ws5b{word-spacing:3.547639px;}
.ws2a{word-spacing:3.613094px;}
.ws46{word-spacing:3.678549px;}
.ws44{word-spacing:3.744003px;}
.ws26{word-spacing:3.809458px;}
.wsae{word-spacing:3.874912px;}
.ws34{word-spacing:4.005822px;}
.wsca{word-spacing:4.007981px;}
.ws3b{word-spacing:4.071276px;}
.wsa4{word-spacing:4.136731px;}
.ws19{word-spacing:4.202185px;}
.wsd6{word-spacing:4.233934px;}
.ws2f{word-spacing:4.267640px;}
.ws9b{word-spacing:4.333095px;}
.ws1b{word-spacing:4.398549px;}
.ws88{word-spacing:4.464004px;}
.wsd{word-spacing:4.492166px;}
.ws89{word-spacing:4.660368px;}
.ws45{word-spacing:4.791277px;}
.ws11{word-spacing:4.814957px;}
.ws25{word-spacing:4.922186px;}
.ws10{word-spacing:4.922554px;}
.ws82{word-spacing:4.987641px;}
.ws9f{word-spacing:5.118550px;}
.ws7c{word-spacing:5.184004px;}
.ws6f{word-spacing:5.314914px;}
.ws7{word-spacing:5.568134px;}
.wsb3{word-spacing:5.576732px;}
.wsc9{word-spacing:5.632692px;}
.wsad{word-spacing:5.642187px;}
.ws39{word-spacing:5.773096px;}
.ws8b{word-spacing:5.904005px;}
.ws8a{word-spacing:6.034914px;}
.ws60{word-spacing:6.100369px;}
.ws9a{word-spacing:6.165823px;}
.ws16{word-spacing:6.231278px;}
.ws7f{word-spacing:6.296733px;}
.ws14{word-spacing:6.427642px;}
.ws2{word-spacing:6.455775px;}
.wscb{word-spacing:6.493467px;}
.ws8f{word-spacing:6.605088px;}
.ws72{word-spacing:6.624006px;}
.wsaa{word-spacing:6.885824px;}
.ws8{word-spacing:7.020691px;}
.ws4a{word-spacing:7.029628px;}
.wsa0{word-spacing:7.082188px;}
.wsd1{word-spacing:7.128288px;}
.ws68{word-spacing:7.147642px;}
.wsd3{word-spacing:7.192846px;}
.ws85{word-spacing:7.213097px;}
.wsa8{word-spacing:7.278552px;}
.ws52{word-spacing:7.344006px;}
.ws99{word-spacing:7.409461px;}
.ws98{word-spacing:7.474915px;}
.wsf{word-spacing:7.504877px;}
.ws24{word-spacing:7.540370px;}
.ws22{word-spacing:7.605825px;}
.wscd{word-spacing:7.720070px;}
.wsaf{word-spacing:7.736734px;}
.ws83{word-spacing:7.802188px;}
.ws80{word-spacing:8.064007px;}
.ws86{word-spacing:8.129461px;}
.ws5d{word-spacing:8.194916px;}
.ws29{word-spacing:8.325825px;}
.ws91{word-spacing:8.391280px;}
.ws67{word-spacing:8.456734px;}
.ws5e{word-spacing:8.587644px;}
.wsd0{word-spacing:8.676735px;}
.wsa9{word-spacing:8.718553px;}
.ws1c{word-spacing:8.784007px;}
.ws2d{word-spacing:8.849462px;}
.ws6b{word-spacing:8.914917px;}
.ws37{word-spacing:8.980371px;}
.wsb0{word-spacing:9.176735px;}
.ws5{word-spacing:9.208967px;}
.wsd2{word-spacing:9.344782px;}
.ws81{word-spacing:9.373099px;}
.ws8c{word-spacing:9.634917px;}
.wsa2{word-spacing:9.700372px;}
.ws9{word-spacing:9.818208px;}
.ws31{word-spacing:9.831281px;}
.wsa{word-spacing:9.925805px;}
.wscc{word-spacing:9.936564px;}
.wsac{word-spacing:10.027645px;}
.ws75{word-spacing:10.158554px;}
.ws1e{word-spacing:10.420372px;}
.wsb1{word-spacing:10.551282px;}
.wsda{word-spacing:10.571386px;}
.ws40{word-spacing:10.747645px;}
.ws3a{word-spacing:10.944009px;}
.ws69{word-spacing:11.074918px;}
.ws33{word-spacing:11.205828px;}
.ws17{word-spacing:11.533101px;}
.ws6e{word-spacing:11.598555px;}
.wsb4{word-spacing:11.794919px;}
.ws38{word-spacing:11.925828px;}
.ws77{word-spacing:11.991283px;}
.ws1d{word-spacing:12.056737px;}
.ws15{word-spacing:12.318556px;}
.ws30{word-spacing:12.449465px;}
.ws4c{word-spacing:12.514920px;}
.wsc{word-spacing:12.561926px;}
.wsdb{word-spacing:12.572686px;}
.wse{word-spacing:12.723322px;}
.ws36{word-spacing:13.038556px;}
.ws28{word-spacing:13.169466px;}
.ws35{word-spacing:13.234920px;}
.ws6a{word-spacing:13.496739px;}
.wsb5{word-spacing:13.562193px;}
.ws6d{word-spacing:13.824012px;}
.ws3f{word-spacing:14.674921px;}
.wsb{word-spacing:14.875258px;}
.ws7a{word-spacing:17.484304px;}
.ws63{word-spacing:17.514105px;}
.wsd8{word-spacing:18.373175px;}
.ws96{word-spacing:18.392743px;}
.ws78{word-spacing:18.458197px;}
.ws50{word-spacing:18.667652px;}
.ws48{word-spacing:19.649471px;}
.ws55{word-spacing:21.103753px;}
.ws62{word-spacing:21.107492px;}
.ws47{word-spacing:21.108284px;}
.ws57{word-spacing:23.118565px;}
.ws2b{word-spacing:23.236383px;}
.ws3{word-spacing:25.003657px;}
.ws6c{word-spacing:25.069112px;}
.ws5c{word-spacing:26.130315px;}
.wsd4{word-spacing:28.647648px;}
.ws23{word-spacing:28.678141px;}
.wsd5{word-spacing:29.142593px;}
.ws90{word-spacing:30.501844px;}
.ws21{word-spacing:31.564141px;}
.ws4b{word-spacing:32.151300px;}
.ws4e{word-spacing:32.282209px;}
.ws13{word-spacing:33.381846px;}
.ws8d{word-spacing:39.580812px;}
.ws95{word-spacing:52.814112px;}
.ws6{word-spacing:55.233450px;}
.ws4d{word-spacing:57.927321px;}
.ws92{word-spacing:85.541412px;}
.wsba{word-spacing:272.631500px;}
.wsb7{word-spacing:279.896961px;}
.wsc8{word-spacing:290.632059px;}
.wsb8{word-spacing:319.889721px;}
.wsb9{word-spacing:323.162451px;}
.wsbf{word-spacing:345.451469px;}
.wsc2{word-spacing:531.530423px;}
.ws56{word-spacing:605.076315px;}
.ws7b{word-spacing:729.111880px;}
.ws64{word-spacing:826.939753px;}
._21{margin-left:-37.836635px;}
._1c{margin-left:-34.184633px;}
._35{margin-left:-32.255541px;}
._8{margin-left:-28.432735px;}
._4{margin-left:-6.000000px;}
._1b{margin-left:-4.438349px;}
._6{margin-left:-3.202064px;}
._28{margin-left:-2.201012px;}
._1{margin-left:-1.195515px;}
._18{width:1.081938px;}
._7{width:2.094547px;}
._5{width:3.202064px;}
._20{width:4.252180px;}
._2a{width:5.806999px;}
._0{width:7.476098px;}
._2{width:16.561579px;}
._13{width:18.844981px;}
._17{width:20.421835px;}
._15{width:21.660157px;}
._26{width:23.289262px;}
._9{width:24.585869px;}
._d{width:26.438915px;}
._b{width:27.588280px;}
._f{width:29.228072px;}
._12{width:30.342298px;}
._10{width:32.240782px;}
._19{width:33.558086px;}
._2e{width:34.772958px;}
._a{width:35.853635px;}
._27{width:37.238456px;}
._14{width:38.724549px;}
._25{width:40.742215px;}
._1a{width:42.641735px;}
._c{width:44.225875px;}
._e{width:46.202527px;}
._29{width:48.755798px;}
._2f{width:50.298904px;}
._1f{width:51.393982px;}
._11{width:52.564627px;}
._1e{width:53.667561px;}
._16{width:55.779440px;}
._1d{width:57.827202px;}
._2c{width:70.997400px;}
._24{width:74.940306px;}
._2b{width:87.362700px;}
._2d{width:103.724700px;}
._23{width:114.923725px;}
._31{width:247.222024px;}
._32{width:288.982059px;}
._34{width:310.624507px;}
._3{width:316.920000px;}
._30{width:352.669385px;}
._33{width:359.658887px;}
._22{width:654.277284px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:14.898713px;}
.fs9{font-size:23.837940px;}
.fsc{font-size:23.937265px;}
.fs6{font-size:32.777168px;}
.fs8{font-size:32.876492px;}
.fsa{font-size:47.675880px;}
.fs7{font-size:47.775205px;}
.fs0{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:65.454600px;}
.fs3{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.289325px;}
.y147{bottom:17.706259px;}
.y3{bottom:19.233262px;}
.y12e{bottom:23.889224px;}
.y128{bottom:25.081121px;}
.y2{bottom:34.177200px;}
.y146{bottom:34.765284px;}
.y12d{bottom:40.501287px;}
.y12f{bottom:56.219429px;}
.y1{bottom:61.708950px;}
.y7{bottom:64.500000px;}
.y14b{bottom:82.768935px;}
.y50{bottom:114.802500px;}
.y95{bottom:114.882000px;}
.ybd{bottom:117.985500px;}
.y93{bottom:118.065000px;}
.y75{bottom:124.372500px;}
.y13b{bottom:127.663720px;}
.y13f{bottom:128.080884px;}
.y103{bottom:132.208500px;}
.y94{bottom:134.308500px;}
.yc9{bottom:135.822000px;}
.y2c{bottom:136.212000px;}
.y126{bottom:136.665000px;}
.ybc{bottom:137.412000px;}
.y92{bottom:137.493000px;}
.y141{bottom:143.724532px;}
.y74{bottom:143.800500px;}
.y13c{bottom:145.542175px;}
.y140{bottom:145.929542px;}
.y4f{bottom:148.338000px;}
.y102{bottom:151.635000px;}
.yc8{bottom:155.248500px;}
.y2b{bottom:155.640000px;}
.y125{bottom:156.093000px;}
.ybb{bottom:156.840000px;}
.y73{bottom:163.227000px;}
.y101{bottom:171.063000px;}
.y150{bottom:171.696000px;}
.y131{bottom:173.869592px;}
.y2a{bottom:175.066500px;}
.y124{bottom:175.519500px;}
.y4e{bottom:181.873500px;}
.y72{bottom:182.655000px;}
.y100{bottom:190.489500px;}
.y29{bottom:194.494500px;}
.y123{bottom:194.947500px;}
.y13a{bottom:196.396446px;}
.y13d{bottom:198.800105px;}
.yc4{bottom:199.165500px;}
.yb6{bottom:200.755500px;}
.y4d{bottom:201.301500px;}
.y71{bottom:202.081500px;}
.yff{bottom:209.916000px;}
.y119{bottom:213.640500px;}
.y28{bottom:213.921000px;}
.y122{bottom:214.374000px;}
.y139{bottom:215.536325px;}
.y13e{bottom:216.678560px;}
.y4c{bottom:220.728000px;}
.y70{bottom:221.508000px;}
.ybe{bottom:224.014500px;}
.yb2{bottom:225.604500px;}
.yfe{bottom:229.344000px;}
.y118{bottom:233.068500px;}
.y27{bottom:233.347500px;}
.y121{bottom:233.800500px;}
.ybf{bottom:235.039500px;}
.y4b{bottom:240.156000px;}
.yfd{bottom:248.770500px;}
.y6f{bottom:250.650000px;}
.y117{bottom:252.495000px;}
.y26{bottom:252.775500px;}
.yc7{bottom:253.227000px;}
.y120{bottom:253.228500px;}
.y127{bottom:253.791938px;}
.yba{bottom:254.817000px;}
.yb3{bottom:255.642000px;}
.y4a{bottom:259.582500px;}
.y14d{bottom:260.927734px;}
.yfc{bottom:268.198500px;}
.y116{bottom:271.923000px;}
.y25{bottom:272.202000px;}
.y11f{bottom:272.655000px;}
.y135{bottom:272.946029px;}
.yc6{bottom:273.022500px;}
.y136{bottom:273.244003px;}
.yb9{bottom:274.647000px;}
.y115{bottom:276.058500px;}
.y6e{bottom:278.988000px;}
.y49{bottom:279.009000px;}
.yc0{bottom:287.322000px;}
.yfb{bottom:287.625000px;}
.y6d{bottom:290.212500px;}
.y138{bottom:291.072796px;}
.y24{bottom:291.630000px;}
.y11e{bottom:292.083000px;}
.y114{bottom:292.815000px;}
.yb8{bottom:294.475500px;}
.y48{bottom:298.437000px;}
.yb7{bottom:306.750000px;}
.yfa{bottom:307.053000px;}
.y23{bottom:311.056500px;}
.y137{bottom:311.166192px;}
.y11d{bottom:311.509500px;}
.y113{bottom:312.243000px;}
.yc5{bottom:317.385000px;}
.y47{bottom:317.863500px;}
.yf9{bottom:326.479500px;}
.y148{bottom:327.952074px;}
.y22{bottom:330.484500px;}
.y11c{bottom:330.937500px;}
.y112{bottom:331.669500px;}
.y6c{bottom:333.489000px;}
.y46{bottom:337.291500px;}
.yc1{bottom:339.604500px;}
.y14e{bottom:344.857147px;}
.yf8{bottom:345.906000px;}
.y21{bottom:349.911000px;}
.y11b{bottom:350.364000px;}
.yb4{bottom:350.700000px;}
.y111{bottom:351.097500px;}
.y6b{bottom:352.917000px;}
.y45{bottom:356.718000px;}
.yf7{bottom:365.334000px;}
.y20{bottom:369.339000px;}
.y11a{bottom:369.790500px;}
.y110{bottom:370.524000px;}
.y6a{bottom:372.343500px;}
.y149{bottom:373.194496px;}
.y44{bottom:376.146000px;}
.yf6{bottom:384.760500px;}
.y1f{bottom:388.765500px;}
.y69{bottom:391.770000px;}
.yc2{bottom:391.885500px;}
.y43{bottom:395.572500px;}
.y133{bottom:395.641890px;}
.yf5{bottom:404.188500px;}
.y10f{bottom:406.878000px;}
.y1e{bottom:408.192000px;}
.y68{bottom:411.198000px;}
.y42{bottom:414.999000px;}
.y134{bottom:417.413875px;}
.y132{bottom:417.463538px;}
.y14c{bottom:420.939904px;}
.yf4{bottom:423.615000px;}
.y1d{bottom:427.620000px;}
.y67{bottom:430.624500px;}
.y41{bottom:434.427000px;}
.y142{bottom:442.672158px;}
.yf3{bottom:443.043000px;}
.yc3{bottom:444.168000px;}
.yb5{bottom:445.759500px;}
.y1c{bottom:447.046500px;}
.y10e{bottom:449.202000px;}
.y14a{bottom:449.277254px;}
.y66{bottom:450.052500px;}
.y40{bottom:453.853500px;}
.yf2{bottom:462.469500px;}
.y143{bottom:464.672590px;}
.y1b{bottom:466.474500px;}
.y10d{bottom:468.630000px;}
.y65{bottom:469.479000px;}
.y3f{bottom:473.281500px;}
.yf1{bottom:481.896000px;}
.y1a{bottom:485.901000px;}
.y10c{bottom:488.056500px;}
.y64{bottom:488.907000px;}
.y3e{bottom:492.708000px;}
.y130{bottom:493.625753px;}
.y144{bottom:494.837515px;}
.yb1{bottom:499.477500px;}
.yf0{bottom:501.324000px;}
.y10b{bottom:507.483000px;}
.y63{bottom:508.333500px;}
.y3d{bottom:512.136000px;}
.yb0{bottom:518.905500px;}
.yef{bottom:520.750500px;}
.y10a{bottom:526.911000px;}
.y62{bottom:529.672500px;}
.y91{bottom:530.382000px;}
.y3c{bottom:531.562500px;}
.yaf{bottom:538.332000px;}
.yee{bottom:540.178500px;}
.y90{bottom:549.808500px;}
.y3b{bottom:550.989000px;}
.yae{bottom:557.758500px;}
.y61{bottom:558.813000px;}
.yed{bottom:559.605000px;}
.y8f{bottom:569.235000px;}
.y3a{bottom:570.417000px;}
.y19{bottom:570.745500px;}
.yad{bottom:577.186500px;}
.y60{bottom:578.239500px;}
.yec{bottom:579.033000px;}
.y18{bottom:587.184000px;}
.y8e{bottom:588.663000px;}
.y39{bottom:589.843500px;}
.yac{bottom:596.613000px;}
.y5f{bottom:597.667500px;}
.yeb{bottom:598.459500px;}
.y17{bottom:603.622500px;}
.y8d{bottom:608.089500px;}
.y38{bottom:609.271500px;}
.yab{bottom:616.041000px;}
.y5e{bottom:617.094000px;}
.yea{bottom:617.887500px;}
.y16{bottom:620.061000px;}
.y12c{bottom:623.115427px;}
.y8c{bottom:627.517500px;}
.y37{bottom:628.698000px;}
.yaa{bottom:635.467500px;}
.y15{bottom:636.499500px;}
.y5d{bottom:636.520500px;}
.ye9{bottom:637.314000px;}
.y8b{bottom:646.944000px;}
.y36{bottom:648.126000px;}
.y14{bottom:652.938000px;}
.ya9{bottom:654.895500px;}
.y5c{bottom:655.948500px;}
.y145{bottom:656.071379px;}
.ye8{bottom:656.740500px;}
.y8a{bottom:666.372000px;}
.y35{bottom:667.552500px;}
.y13{bottom:669.375000px;}
.y12a{bottom:670.493333px;}
.ya8{bottom:674.322000px;}
.y5b{bottom:675.375000px;}
.ye7{bottom:676.168500px;}
.y89{bottom:685.798500px;}
.y12{bottom:685.813500px;}
.y34{bottom:686.979000px;}
.y12b{bottom:690.854905px;}
.y129{bottom:691.967342px;}
.y5a{bottom:694.803000px;}
.ye6{bottom:695.595000px;}
.y11{bottom:702.252000px;}
.y88{bottom:705.225000px;}
.y33{bottom:706.407000px;}
.y59{bottom:714.229500px;}
.ye5{bottom:715.023000px;}
.ya7{bottom:716.334000px;}
.y10{bottom:718.690500px;}
.y87{bottom:724.653000px;}
.y14f{bottom:725.300728px;}
.y32{bottom:725.833500px;}
.y58{bottom:733.657500px;}
.yf{bottom:735.129000px;}
.ya6{bottom:735.760500px;}
.y86{bottom:744.079500px;}
.ye{bottom:751.567500px;}
.y57{bottom:753.084000px;}
.ya5{bottom:755.188500px;}
.y85{bottom:763.507500px;}
.ye4{bottom:769.014000px;}
.yd6{bottom:769.015500px;}
.y56{bottom:772.510500px;}
.ya4{bottom:774.615000px;}
.y2f{bottom:777.639000px;}
.y84{bottom:782.934000px;}
.ye3{bottom:788.440500px;}
.yd5{bottom:788.443500px;}
.yd{bottom:791.916000px;}
.y55{bottom:791.938500px;}
.ya3{bottom:794.043000px;}
.y31{bottom:795.832500px;}
.y2e{bottom:797.067000px;}
.y83{bottom:802.362000px;}
.ya2{bottom:813.469500px;}
.y30{bottom:815.259000px;}
.yc{bottom:815.826000px;}
.y2d{bottom:816.493500px;}
.y82{bottom:821.788500px;}
.y15f{bottom:831.237000px;}
.yb{bottom:832.264500px;}
.ya1{bottom:832.896000px;}
.ydd{bottom:833.124000px;}
.ycf{bottom:833.125500px;}
.y81{bottom:841.215000px;}
.y52{bottom:846.838500px;}
.y54{bottom:846.858000px;}
.y15e{bottom:847.675500px;}
.ya0{bottom:852.324000px;}
.ya{bottom:853.186500px;}
.yd7{bottom:856.603500px;}
.yca{bottom:856.605000px;}
.y80{bottom:860.643000px;}
.y15d{bottom:864.114000px;}
.y51{bottom:866.266500px;}
.y53{bottom:866.286000px;}
.yd8{bottom:867.628500px;}
.ycb{bottom:867.631500px;}
.y9f{bottom:871.750500px;}
.y7f{bottom:880.069500px;}
.y15c{bottom:880.551000px;}
.ye2{bottom:885.816000px;}
.y9e{bottom:891.178500px;}
.y15b{bottom:896.989500px;}
.y7e{bottom:899.497500px;}
.y9{bottom:899.512500px;}
.ye1{bottom:905.644500px;}
.y9d{bottom:910.605000px;}
.y15a{bottom:913.428000px;}
.y7d{bottom:918.924000px;}
.yd0{bottom:919.111500px;}
.yd9{bottom:919.911000px;}
.y109{bottom:922.395000px;}
.ye0{bottom:925.473000px;}
.y159{bottom:929.866500px;}
.y9c{bottom:930.033000px;}
.y8{bottom:935.512500px;}
.ycc{bottom:937.339500px;}
.y7c{bottom:938.352000px;}
.y108{bottom:941.821500px;}
.ydf{bottom:943.168500px;}
.y158{bottom:946.305000px;}
.yde{bottom:948.727500px;}
.y9b{bottom:949.459500px;}
.y7b{bottom:957.778500px;}
.y107{bottom:961.249500px;}
.y157{bottom:962.743500px;}
.yd1{bottom:967.228500px;}
.y9a{bottom:968.886000px;}
.yda{bottom:972.192000px;}
.y7a{bottom:977.205000px;}
.y156{bottom:979.182000px;}
.y106{bottom:980.676000px;}
.y99{bottom:988.314000px;}
.y155{bottom:995.620500px;}
.y79{bottom:996.633000px;}
.y105{bottom:1000.104000px;}
.ycd{bottom:1007.046000px;}
.y98{bottom:1007.740500px;}
.y154{bottom:1012.059000px;}
.y104{bottom:1019.530500px;}
.ydb{bottom:1024.474500px;}
.y153{bottom:1028.497500px;}
.yd4{bottom:1038.477000px;}
.y78{bottom:1038.957000px;}
.yd3{bottom:1042.614000px;}
.y97{bottom:1042.776000px;}
.y152{bottom:1044.934500px;}
.y96{bottom:1046.913000px;}
.y77{bottom:1058.385000px;}
.y151{bottom:1061.373000px;}
.yd2{bottom:1061.974500px;}
.yce{bottom:1076.754000px;}
.ydc{bottom:1076.757000px;}
.y76{bottom:1077.811500px;}
.y6{bottom:1144.500000px;}
.y5{bottom:1165.500000px;}
.h16{height:15.888080px;}
.h14{height:16.213989px;}
.h17{height:16.281548px;}
.h11{height:22.294236px;}
.h13{height:22.361794px;}
.h18{height:28.321279px;}
.h15{height:32.427979px;}
.h12{height:32.495537px;}
.h8{height:40.348800px;}
.h4{height:41.660156px;}
.h3{height:42.942899px;}
.h7{height:45.818220px;}
.hd{height:46.145493px;}
.h2{height:46.538700px;}
.h9{height:49.090950px;}
.h5{height:49.336436px;}
.hf{height:56.026905px;}
.he{height:56.032905px;}
.hb{height:65.632950px;}
.ha{height:65.638950px;}
.h6{height:72.304680px;}
.hc{height:90.839493px;}
.h10{height:759.540620px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:487.717158px;}
.w2{width:683.273100px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.337034px;}
.x3b{left:10.027025px;}
.x33{left:19.686357px;}
.x4d{left:27.830985px;}
.x4a{left:30.165117px;}
.x4c{left:31.307351px;}
.x3f{left:72.795299px;}
.x2{left:76.052700px;}
.x45{left:80.741279px;}
.x3e{left:93.037682px;}
.x49{left:96.017425px;}
.x1{left:103.466400px;}
.x4{left:105.000000px;}
.x8{left:106.299000px;}
.x46{left:108.035719px;}
.x48{left:109.177954px;}
.x2f{left:115.266000px;}
.x30{left:120.177000px;}
.x1a{left:124.026000px;}
.x47{left:125.348023px;}
.xa{left:127.558500px;}
.x18{left:139.323000px;}
.x24{left:143.016000px;}
.x17{left:147.505500px;}
.x23{left:151.197000px;}
.x16{left:157.348500px;}
.x22{left:161.041500px;}
.x50{left:162.576000px;}
.x43{left:166.220156px;}
.x34{left:175.824860px;}
.x35{left:190.246813px;}
.x44{left:194.676697px;}
.x32{left:202.344282px;}
.x4f{left:208.900001px;}
.x26{left:212.037000px;}
.x9{left:213.895500px;}
.x27{left:217.596000px;}
.x38{left:221.414919px;}
.x19{left:248.076000px;}
.x3c{left:261.740767px;}
.x25{left:266.572500px;}
.x3a{left:272.865139px;}
.x36{left:285.052284px;}
.x40{left:304.430543px;}
.x4e{left:306.387241px;}
.x4b{left:309.267659px;}
.x3d{left:310.409893px;}
.x42{left:311.999089px;}
.xd{left:319.906500px;}
.xb{left:332.475000px;}
.xf{left:355.507500px;}
.x15{left:356.556000px;}
.x14{left:362.115000px;}
.x13{left:375.732000px;}
.x37{left:378.079844px;}
.x1b{left:385.830000px;}
.x41{left:389.690907px;}
.x10{left:419.065500px;}
.x39{left:431.109327px;}
.x7{left:447.000000px;}
.x21{left:450.093000px;}
.x31{left:455.422500px;}
.x2c{left:466.474500px;}
.x1f{left:467.820000px;}
.x2d{left:470.611500px;}
.x11{left:477.435000px;}
.x1d{left:483.117000px;}
.x2a{left:485.910000px;}
.x29{left:498.637500px;}
.x1c{left:501.142500px;}
.x28{left:508.480500px;}
.xe{left:532.225500px;}
.xc{left:543.318000px;}
.x6{left:551.325000px;}
.x1e{left:591.870000px;}
.x2b{left:614.013000px;}
.x5{left:695.145000px;}
.x20{left:704.176500px;}
.x2e{left:728.785500px;}
.x12{left:765.705000px;}
@media print{
.v7{vertical-align:-31.077611pt;}
.v1{vertical-align:-9.477333pt;}
.v6{vertical-align:-3.001815pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.297320pt;}
.v3{vertical-align:14.709333pt;}
.v2{vertical-align:21.114667pt;}
.v5{vertical-align:30.250667pt;}
.v4{vertical-align:39.728000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000942pt;}
.ls15{letter-spacing:0.001416pt;}
.lse{letter-spacing:0.001908pt;}
.ls1d{letter-spacing:0.002384pt;}
.ls10{letter-spacing:0.002405pt;}
.ls25{letter-spacing:0.002411pt;}
.ls1f{letter-spacing:0.002717pt;}
.ls19{letter-spacing:0.003370pt;}
.lsa{letter-spacing:0.004321pt;}
.ls33{letter-spacing:0.014126pt;}
.ls1{letter-spacing:2.653258pt;}
.ls12{letter-spacing:2.658591pt;}
.ls20{letter-spacing:4.159474pt;}
.ls22{letter-spacing:4.161420pt;}
.ls1e{letter-spacing:4.164807pt;}
.ls24{letter-spacing:4.166753pt;}
.ls27{letter-spacing:10.205077pt;}
.ls26{letter-spacing:12.855925pt;}
.ls13{letter-spacing:12.925072pt;}
.ls3{letter-spacing:12.925077pt;}
.ls7{letter-spacing:12.927477pt;}
.ls8{letter-spacing:12.930405pt;}
.ls5{letter-spacing:12.930411pt;}
.ls11{letter-spacing:15.581258pt;}
.ls6{letter-spacing:15.586591pt;}
.ls4{letter-spacing:15.587149pt;}
.ls1b{letter-spacing:16.159477pt;}
.lsd{letter-spacing:18.343925pt;}
.lsf{letter-spacing:18.587964pt;}
.ls21{letter-spacing:18.813258pt;}
.ls28{letter-spacing:20.685258pt;}
.ls2{letter-spacing:21.859713pt;}
.ls18{letter-spacing:21.890591pt;}
.ls17{letter-spacing:21.891149pt;}
.ls1a{letter-spacing:22.532811pt;}
.ls16{letter-spacing:24.897297pt;}
.ls23{letter-spacing:29.463744pt;}
.lsc{letter-spacing:29.960483pt;}
.ls9{letter-spacing:32.692811pt;}
.ls14{letter-spacing:32.698144pt;}
.lsb{letter-spacing:36.227713pt;}
.ls2b{letter-spacing:63.758988pt;}
.ls29{letter-spacing:66.931149pt;}
.ls2e{letter-spacing:68.844083pt;}
.ls2c{letter-spacing:77.489908pt;}
.ls30{letter-spacing:80.841184pt;}
.ls2a{letter-spacing:81.318275pt;}
.ls2d{letter-spacing:85.571370pt;}
.ls31{letter-spacing:85.955370pt;}
.ls2f{letter-spacing:88.870281pt;}
.ls32{letter-spacing:155.253850pt;}
.ls34{letter-spacing:1174.917298pt;}
.ws1{word-spacing:-53.333333pt;}
.ws1f{word-spacing:-37.899668pt;}
.ws94{word-spacing:-29.845922pt;}
.ws93{word-spacing:-29.787740pt;}
.ws8e{word-spacing:-22.854869pt;}
.ws49{word-spacing:-16.162923pt;}
.wsd9{word-spacing:-13.652838pt;}
.wsc5{word-spacing:-9.597508pt;}
.wsc0{word-spacing:-9.577555pt;}
.wsc3{word-spacing:-6.604522pt;}
.wsbb{word-spacing:-6.584569pt;}
.wsc6{word-spacing:-4.808731pt;}
.wsc4{word-spacing:-4.788777pt;}
.wsc7{word-spacing:-2.992986pt;}
.ws51{word-spacing:-2.955639pt;}
.ws3d{word-spacing:-2.606548pt;}
.ws3c{word-spacing:-2.373820pt;}
.wsa7{word-spacing:-2.199275pt;}
.wsa3{word-spacing:-2.141093pt;}
.ws97{word-spacing:-1.908365pt;}
.ws79{word-spacing:-1.850183pt;}
.ws70{word-spacing:-1.792001pt;}
.wsa6{word-spacing:-1.733820pt;}
.wsb6{word-spacing:-1.501092pt;}
.ws54{word-spacing:-1.268365pt;}
.ws9d{word-spacing:-1.152001pt;}
.ws84{word-spacing:-1.035637pt;}
.ws9c{word-spacing:-0.977455pt;}
.ws65{word-spacing:-0.919273pt;}
.ws2e{word-spacing:-0.570182pt;}
.ws4f{word-spacing:-0.512000pt;}
.ws43{word-spacing:-0.453819pt;}
.ws7e{word-spacing:-0.058182pt;}
.ws20{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.011636pt;}
.wsc1{word-spacing:0.035315pt;}
.wsce{word-spacing:0.167373pt;}
.wsb2{word-spacing:0.186182pt;}
.ws87{word-spacing:0.244364pt;}
.ws61{word-spacing:0.535273pt;}
.ws41{word-spacing:0.593455pt;}
.ws42{word-spacing:0.768001pt;}
.wsbd{word-spacing:0.995273pt;}
.ws27{word-spacing:1.000728pt;}
.wsbc{word-spacing:1.027675pt;}
.wsbe{word-spacing:1.030594pt;}
.ws1a{word-spacing:1.058910pt;}
.ws66{word-spacing:1.117092pt;}
.wsa5{word-spacing:1.175274pt;}
.ws3e{word-spacing:1.349819pt;}
.wsd7{word-spacing:1.410714pt;}
.ws53{word-spacing:1.524365pt;}
.wsab{word-spacing:1.582547pt;}
.ws73{word-spacing:1.698911pt;}
.ws18{word-spacing:1.757092pt;}
.ws2c{word-spacing:1.873456pt;}
.ws5f{word-spacing:2.280729pt;}
.ws74{word-spacing:2.397093pt;}
.ws9e{word-spacing:2.455275pt;}
.ws32{word-spacing:2.571639pt;}
.ws71{word-spacing:2.629820pt;}
.wscf{word-spacing:2.663619pt;}
.ws4{word-spacing:2.701875pt;}
.ws12{word-spacing:2.749696pt;}
.ws7d{word-spacing:2.862548pt;}
.wsa1{word-spacing:2.978912pt;}
.ws59{word-spacing:3.037093pt;}
.ws5a{word-spacing:3.070454pt;}
.ws58{word-spacing:3.095275pt;}
.ws5b{word-spacing:3.153457pt;}
.ws2a{word-spacing:3.211639pt;}
.ws46{word-spacing:3.269821pt;}
.ws44{word-spacing:3.328003pt;}
.ws26{word-spacing:3.386185pt;}
.wsae{word-spacing:3.444367pt;}
.ws34{word-spacing:3.560730pt;}
.wsca{word-spacing:3.562650pt;}
.ws3b{word-spacing:3.618912pt;}
.wsa4{word-spacing:3.677094pt;}
.ws19{word-spacing:3.735276pt;}
.wsd6{word-spacing:3.763497pt;}
.ws2f{word-spacing:3.793458pt;}
.ws9b{word-spacing:3.851640pt;}
.ws1b{word-spacing:3.909821pt;}
.ws88{word-spacing:3.968003pt;}
.wsd{word-spacing:3.993037pt;}
.ws89{word-spacing:4.142549pt;}
.ws45{word-spacing:4.258913pt;}
.ws11{word-spacing:4.279962pt;}
.ws25{word-spacing:4.375276pt;}
.ws10{word-spacing:4.375603pt;}
.ws82{word-spacing:4.433458pt;}
.ws9f{word-spacing:4.549822pt;}
.ws7c{word-spacing:4.608004pt;}
.ws6f{word-spacing:4.724368pt;}
.ws7{word-spacing:4.949453pt;}
.wsb3{word-spacing:4.957095pt;}
.wsc9{word-spacing:5.006838pt;}
.wsad{word-spacing:5.015277pt;}
.ws39{word-spacing:5.131641pt;}
.ws8b{word-spacing:5.248004pt;}
.ws8a{word-spacing:5.364368pt;}
.ws60{word-spacing:5.422550pt;}
.ws9a{word-spacing:5.480732pt;}
.ws16{word-spacing:5.538914pt;}
.ws7f{word-spacing:5.597096pt;}
.ws14{word-spacing:5.713459pt;}
.ws2{word-spacing:5.738467pt;}
.wscb{word-spacing:5.771971pt;}
.ws8f{word-spacing:5.871189pt;}
.ws72{word-spacing:5.888005pt;}
.wsaa{word-spacing:6.120732pt;}
.ws8{word-spacing:6.240614pt;}
.ws4a{word-spacing:6.248558pt;}
.wsa0{word-spacing:6.295278pt;}
.wsd1{word-spacing:6.336256pt;}
.ws68{word-spacing:6.353460pt;}
.wsd3{word-spacing:6.393641pt;}
.ws85{word-spacing:6.411642pt;}
.wsa8{word-spacing:6.469824pt;}
.ws52{word-spacing:6.528005pt;}
.ws99{word-spacing:6.586187pt;}
.ws98{word-spacing:6.644369pt;}
.wsf{word-spacing:6.671002pt;}
.ws24{word-spacing:6.702551pt;}
.ws22{word-spacing:6.760733pt;}
.wscd{word-spacing:6.862285pt;}
.wsaf{word-spacing:6.877097pt;}
.ws83{word-spacing:6.935279pt;}
.ws80{word-spacing:7.168006pt;}
.ws86{word-spacing:7.226188pt;}
.ws5d{word-spacing:7.284370pt;}
.ws29{word-spacing:7.400733pt;}
.ws91{word-spacing:7.458915pt;}
.ws67{word-spacing:7.517097pt;}
.ws5e{word-spacing:7.633461pt;}
.wsd0{word-spacing:7.712654pt;}
.wsa9{word-spacing:7.749825pt;}
.ws1c{word-spacing:7.808007pt;}
.ws2d{word-spacing:7.866188pt;}
.ws6b{word-spacing:7.924370pt;}
.ws37{word-spacing:7.982552pt;}
.wsb0{word-spacing:8.157098pt;}
.ws5{word-spacing:8.185748pt;}
.wsd2{word-spacing:8.306473pt;}
.ws81{word-spacing:8.331643pt;}
.ws8c{word-spacing:8.564371pt;}
.wsa2{word-spacing:8.622553pt;}
.ws9{word-spacing:8.727296pt;}
.ws31{word-spacing:8.738916pt;}
.wsa{word-spacing:8.822938pt;}
.wscc{word-spacing:8.832502pt;}
.wsac{word-spacing:8.913462pt;}
.ws75{word-spacing:9.029826pt;}
.ws1e{word-spacing:9.262553pt;}
.wsb1{word-spacing:9.378917pt;}
.wsda{word-spacing:9.396787pt;}
.ws40{word-spacing:9.553463pt;}
.ws3a{word-spacing:9.728008pt;}
.ws69{word-spacing:9.844372pt;}
.ws33{word-spacing:9.960736pt;}
.ws17{word-spacing:10.251645pt;}
.ws6e{word-spacing:10.309827pt;}
.wsb4{word-spacing:10.484372pt;}
.ws38{word-spacing:10.600736pt;}
.ws77{word-spacing:10.658918pt;}
.ws1d{word-spacing:10.717100pt;}
.ws15{word-spacing:10.949827pt;}
.ws30{word-spacing:11.066191pt;}
.ws4c{word-spacing:11.124373pt;}
.wsc{word-spacing:11.166157pt;}
.wsdb{word-spacing:11.175721pt;}
.wse{word-spacing:11.309619pt;}
.ws36{word-spacing:11.589828pt;}
.ws28{word-spacing:11.706192pt;}
.ws35{word-spacing:11.764373pt;}
.ws6a{word-spacing:11.997101pt;}
.wsb5{word-spacing:12.055283pt;}
.ws6d{word-spacing:12.288010pt;}
.ws3f{word-spacing:13.044375pt;}
.wsb{word-spacing:13.222451pt;}
.ws7a{word-spacing:15.541604pt;}
.ws63{word-spacing:15.568093pt;}
.wsd8{word-spacing:16.331711pt;}
.ws96{word-spacing:16.349105pt;}
.ws78{word-spacing:16.407286pt;}
.ws50{word-spacing:16.593468pt;}
.ws48{word-spacing:17.466196pt;}
.ws55{word-spacing:18.758892pt;}
.ws62{word-spacing:18.762215pt;}
.ws47{word-spacing:18.762919pt;}
.ws57{word-spacing:20.549835pt;}
.ws2b{word-spacing:20.654563pt;}
.ws3{word-spacing:22.225473pt;}
.ws6c{word-spacing:22.283655pt;}
.ws5c{word-spacing:23.226947pt;}
.wsd4{word-spacing:25.464576pt;}
.ws23{word-spacing:25.491681pt;}
.wsd5{word-spacing:25.904527pt;}
.ws90{word-spacing:27.112750pt;}
.ws21{word-spacing:28.057014pt;}
.ws4b{word-spacing:28.578933pt;}
.ws4e{word-spacing:28.695297pt;}
.ws13{word-spacing:29.672752pt;}
.ws8d{word-spacing:35.182944pt;}
.ws95{word-spacing:46.945877pt;}
.ws6{word-spacing:49.096400pt;}
.ws4d{word-spacing:51.490952pt;}
.ws92{word-spacing:76.036811pt;}
.wsba{word-spacing:242.339111pt;}
.wsb7{word-spacing:248.797298pt;}
.wsc8{word-spacing:258.339608pt;}
.wsb8{word-spacing:284.346419pt;}
.wsb9{word-spacing:287.255512pt;}
.wsbf{word-spacing:307.067973pt;}
.wsc2{word-spacing:472.471487pt;}
.ws56{word-spacing:537.845614pt;}
.ws7b{word-spacing:648.099449pt;}
.ws64{word-spacing:735.057558pt;}
._21{margin-left:-33.632564pt;}
._1c{margin-left:-30.386341pt;}
._35{margin-left:-28.671592pt;}
._8{margin-left:-25.273542pt;}
._4{margin-left:-5.333333pt;}
._1b{margin-left:-3.945199pt;}
._6{margin-left:-2.846279pt;}
._28{margin-left:-1.956455pt;}
._1{margin-left:-1.062680pt;}
._18{width:0.961723pt;}
._7{width:1.861820pt;}
._5{width:2.846279pt;}
._20{width:3.779716pt;}
._2a{width:5.161777pt;}
._0{width:6.645421pt;}
._2{width:14.721403pt;}
._13{width:16.751094pt;}
._17{width:18.152742pt;}
._15{width:19.253473pt;}
._26{width:20.701566pt;}
._9{width:21.854106pt;}
._d{width:23.501258pt;}
._b{width:24.522916pt;}
._f{width:25.980508pt;}
._12{width:26.970931pt;}
._10{width:28.658473pt;}
._19{width:29.829410pt;}
._2e{width:30.909296pt;}
._a{width:31.869898pt;}
._27{width:33.100850pt;}
._14{width:34.421821pt;}
._25{width:36.215302pt;}
._1a{width:37.903764pt;}
._c{width:39.311889pt;}
._e{width:41.068913pt;}
._29{width:43.338487pt;}
._2f{width:44.710137pt;}
._1f{width:45.683540pt;}
._11{width:46.724113pt;}
._1e{width:47.704499pt;}
._16{width:49.581725pt;}
._1d{width:51.401957pt;}
._2c{width:63.108800pt;}
._24{width:66.613605pt;}
._2b{width:77.655733pt;}
._2d{width:92.199733pt;}
._23{width:102.154422pt;}
._31{width:219.752910pt;}
._32{width:256.872941pt;}
._34{width:276.110673pt;}
._3{width:281.706667pt;}
._30{width:313.483898pt;}
._33{width:319.696789pt;}
._22{width:581.579808pt;}
.fsb{font-size:13.243300pt;}
.fs9{font-size:21.189280pt;}
.fsc{font-size:21.277569pt;}
.fs6{font-size:29.135260pt;}
.fs8{font-size:29.223549pt;}
.fsa{font-size:42.378560pt;}
.fs7{font-size:42.466849pt;}
.fs0{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.812733pt;}
.y147{bottom:15.738896pt;}
.y3{bottom:17.096233pt;}
.y12e{bottom:21.234866pt;}
.y128{bottom:22.294330pt;}
.y2{bottom:30.379733pt;}
.y146{bottom:30.902475pt;}
.y12d{bottom:36.001144pt;}
.y12f{bottom:49.972826pt;}
.y1{bottom:54.852400pt;}
.y7{bottom:57.333333pt;}
.y14b{bottom:73.572386pt;}
.y50{bottom:102.046667pt;}
.y95{bottom:102.117333pt;}
.ybd{bottom:104.876000pt;}
.y93{bottom:104.946667pt;}
.y75{bottom:110.553333pt;}
.y13b{bottom:113.478862pt;}
.y13f{bottom:113.849675pt;}
.y103{bottom:117.518667pt;}
.y94{bottom:119.385333pt;}
.yc9{bottom:120.730667pt;}
.y2c{bottom:121.077333pt;}
.y126{bottom:121.480000pt;}
.ybc{bottom:122.144000pt;}
.y92{bottom:122.216000pt;}
.y141{bottom:127.755140pt;}
.y74{bottom:127.822667pt;}
.y13c{bottom:129.370822pt;}
.y140{bottom:129.715148pt;}
.y4f{bottom:131.856000pt;}
.y102{bottom:134.786667pt;}
.yc8{bottom:137.998667pt;}
.y2b{bottom:138.346667pt;}
.y125{bottom:138.749333pt;}
.ybb{bottom:139.413333pt;}
.y73{bottom:145.090667pt;}
.y101{bottom:152.056000pt;}
.y150{bottom:152.618667pt;}
.y131{bottom:154.550749pt;}
.y2a{bottom:155.614667pt;}
.y124{bottom:156.017333pt;}
.y4e{bottom:161.665333pt;}
.y72{bottom:162.360000pt;}
.y100{bottom:169.324000pt;}
.y29{bottom:172.884000pt;}
.y123{bottom:173.286667pt;}
.y13a{bottom:174.574618pt;}
.y13d{bottom:176.711204pt;}
.yc4{bottom:177.036000pt;}
.yb6{bottom:178.449333pt;}
.y4d{bottom:178.934667pt;}
.y71{bottom:179.628000pt;}
.yff{bottom:186.592000pt;}
.y119{bottom:189.902667pt;}
.y28{bottom:190.152000pt;}
.y122{bottom:190.554667pt;}
.y139{bottom:191.587845pt;}
.y13e{bottom:192.603164pt;}
.y4c{bottom:196.202667pt;}
.y70{bottom:196.896000pt;}
.ybe{bottom:199.124000pt;}
.yb2{bottom:200.537333pt;}
.yfe{bottom:203.861333pt;}
.y118{bottom:207.172000pt;}
.y27{bottom:207.420000pt;}
.y121{bottom:207.822667pt;}
.ybf{bottom:208.924000pt;}
.y4b{bottom:213.472000pt;}
.yfd{bottom:221.129333pt;}
.y6f{bottom:222.800000pt;}
.y117{bottom:224.440000pt;}
.y26{bottom:224.689333pt;}
.yc7{bottom:225.090667pt;}
.y120{bottom:225.092000pt;}
.y127{bottom:225.592834pt;}
.yba{bottom:226.504000pt;}
.yb3{bottom:227.237333pt;}
.y4a{bottom:230.740000pt;}
.y14d{bottom:231.935764pt;}
.yfc{bottom:238.398667pt;}
.y116{bottom:241.709333pt;}
.y25{bottom:241.957333pt;}
.y11f{bottom:242.360000pt;}
.y135{bottom:242.618693pt;}
.yc6{bottom:242.686667pt;}
.y136{bottom:242.883559pt;}
.yb9{bottom:244.130667pt;}
.y115{bottom:245.385333pt;}
.y6e{bottom:247.989333pt;}
.y49{bottom:248.008000pt;}
.yc0{bottom:255.397333pt;}
.yfb{bottom:255.666667pt;}
.y6d{bottom:257.966667pt;}
.y138{bottom:258.731374pt;}
.y24{bottom:259.226667pt;}
.y11e{bottom:259.629333pt;}
.y114{bottom:260.280000pt;}
.yb8{bottom:261.756000pt;}
.y48{bottom:265.277333pt;}
.yb7{bottom:272.666667pt;}
.yfa{bottom:272.936000pt;}
.y23{bottom:276.494667pt;}
.y137{bottom:276.592170pt;}
.y11d{bottom:276.897333pt;}
.y113{bottom:277.549333pt;}
.yc5{bottom:282.120000pt;}
.y47{bottom:282.545333pt;}
.yf9{bottom:290.204000pt;}
.y148{bottom:291.512955pt;}
.y22{bottom:293.764000pt;}
.y11c{bottom:294.166667pt;}
.y112{bottom:294.817333pt;}
.y6c{bottom:296.434667pt;}
.y46{bottom:299.814667pt;}
.yc1{bottom:301.870667pt;}
.y14e{bottom:306.539686pt;}
.yf8{bottom:307.472000pt;}
.y21{bottom:311.032000pt;}
.y11b{bottom:311.434667pt;}
.yb4{bottom:311.733333pt;}
.y111{bottom:312.086667pt;}
.y6b{bottom:313.704000pt;}
.y45{bottom:317.082667pt;}
.yf7{bottom:324.741333pt;}
.y20{bottom:328.301333pt;}
.y11a{bottom:328.702667pt;}
.y110{bottom:329.354667pt;}
.y6a{bottom:330.972000pt;}
.y149{bottom:331.728441pt;}
.y44{bottom:334.352000pt;}
.yf6{bottom:342.009333pt;}
.y1f{bottom:345.569333pt;}
.y69{bottom:348.240000pt;}
.yc2{bottom:348.342667pt;}
.y43{bottom:351.620000pt;}
.y133{bottom:351.681680pt;}
.yf5{bottom:359.278667pt;}
.y10f{bottom:361.669333pt;}
.y1e{bottom:362.837333pt;}
.y68{bottom:365.509333pt;}
.y42{bottom:368.888000pt;}
.y134{bottom:371.034556pt;}
.y132{bottom:371.078700pt;}
.y14c{bottom:374.168803pt;}
.yf4{bottom:376.546667pt;}
.y1d{bottom:380.106667pt;}
.y67{bottom:382.777333pt;}
.y41{bottom:386.157333pt;}
.y142{bottom:393.486362pt;}
.yf3{bottom:393.816000pt;}
.yc3{bottom:394.816000pt;}
.yb5{bottom:396.230667pt;}
.y1c{bottom:397.374667pt;}
.y10e{bottom:399.290667pt;}
.y14a{bottom:399.357559pt;}
.y66{bottom:400.046667pt;}
.y40{bottom:403.425333pt;}
.yf2{bottom:411.084000pt;}
.y143{bottom:413.042302pt;}
.y1b{bottom:414.644000pt;}
.y10d{bottom:416.560000pt;}
.y65{bottom:417.314667pt;}
.y3f{bottom:420.694667pt;}
.yf1{bottom:428.352000pt;}
.y1a{bottom:431.912000pt;}
.y10c{bottom:433.828000pt;}
.y64{bottom:434.584000pt;}
.y3e{bottom:437.962667pt;}
.y130{bottom:438.778447pt;}
.y144{bottom:439.855569pt;}
.yb1{bottom:443.980000pt;}
.yf0{bottom:445.621333pt;}
.y10b{bottom:451.096000pt;}
.y63{bottom:451.852000pt;}
.y3d{bottom:455.232000pt;}
.yb0{bottom:461.249333pt;}
.yef{bottom:462.889333pt;}
.y10a{bottom:468.365333pt;}
.y62{bottom:470.820000pt;}
.y91{bottom:471.450667pt;}
.y3c{bottom:472.500000pt;}
.yaf{bottom:478.517333pt;}
.yee{bottom:480.158667pt;}
.y90{bottom:488.718667pt;}
.y3b{bottom:489.768000pt;}
.yae{bottom:495.785333pt;}
.y61{bottom:496.722667pt;}
.yed{bottom:497.426667pt;}
.y8f{bottom:505.986667pt;}
.y3a{bottom:507.037333pt;}
.y19{bottom:507.329333pt;}
.yad{bottom:513.054667pt;}
.y60{bottom:513.990667pt;}
.yec{bottom:514.696000pt;}
.y18{bottom:521.941333pt;}
.y8e{bottom:523.256000pt;}
.y39{bottom:524.305333pt;}
.yac{bottom:530.322667pt;}
.y5f{bottom:531.260000pt;}
.yeb{bottom:531.964000pt;}
.y17{bottom:536.553333pt;}
.y8d{bottom:540.524000pt;}
.y38{bottom:541.574667pt;}
.yab{bottom:547.592000pt;}
.y5e{bottom:548.528000pt;}
.yea{bottom:549.233333pt;}
.y16{bottom:551.165333pt;}
.y12c{bottom:553.880379pt;}
.y8c{bottom:557.793333pt;}
.y37{bottom:558.842667pt;}
.yaa{bottom:564.860000pt;}
.y15{bottom:565.777333pt;}
.y5d{bottom:565.796000pt;}
.ye9{bottom:566.501333pt;}
.y8b{bottom:575.061333pt;}
.y36{bottom:576.112000pt;}
.y14{bottom:580.389333pt;}
.ya9{bottom:582.129333pt;}
.y5c{bottom:583.065333pt;}
.y145{bottom:583.174559pt;}
.ye8{bottom:583.769333pt;}
.y8a{bottom:592.330667pt;}
.y35{bottom:593.380000pt;}
.y13{bottom:595.000000pt;}
.y12a{bottom:595.994073pt;}
.ya8{bottom:599.397333pt;}
.y5b{bottom:600.333333pt;}
.ye7{bottom:601.038667pt;}
.y89{bottom:609.598667pt;}
.y12{bottom:609.612000pt;}
.y34{bottom:610.648000pt;}
.y12b{bottom:614.093249pt;}
.y129{bottom:615.082082pt;}
.y5a{bottom:617.602667pt;}
.ye6{bottom:618.306667pt;}
.y11{bottom:624.224000pt;}
.y88{bottom:626.866667pt;}
.y33{bottom:627.917333pt;}
.y59{bottom:634.870667pt;}
.ye5{bottom:635.576000pt;}
.ya7{bottom:636.741333pt;}
.y10{bottom:638.836000pt;}
.y87{bottom:644.136000pt;}
.y14f{bottom:644.711758pt;}
.y32{bottom:645.185333pt;}
.y58{bottom:652.140000pt;}
.yf{bottom:653.448000pt;}
.ya6{bottom:654.009333pt;}
.y86{bottom:661.404000pt;}
.ye{bottom:668.060000pt;}
.y57{bottom:669.408000pt;}
.ya5{bottom:671.278667pt;}
.y85{bottom:678.673333pt;}
.ye4{bottom:683.568000pt;}
.yd6{bottom:683.569333pt;}
.y56{bottom:686.676000pt;}
.ya4{bottom:688.546667pt;}
.y2f{bottom:691.234667pt;}
.y84{bottom:695.941333pt;}
.ye3{bottom:700.836000pt;}
.yd5{bottom:700.838667pt;}
.yd{bottom:703.925333pt;}
.y55{bottom:703.945333pt;}
.ya3{bottom:705.816000pt;}
.y31{bottom:707.406667pt;}
.y2e{bottom:708.504000pt;}
.y83{bottom:713.210667pt;}
.ya2{bottom:723.084000pt;}
.y30{bottom:724.674667pt;}
.yc{bottom:725.178667pt;}
.y2d{bottom:725.772000pt;}
.y82{bottom:730.478667pt;}
.y15f{bottom:738.877333pt;}
.yb{bottom:739.790667pt;}
.ya1{bottom:740.352000pt;}
.ydd{bottom:740.554667pt;}
.ycf{bottom:740.556000pt;}
.y81{bottom:747.746667pt;}
.y52{bottom:752.745333pt;}
.y54{bottom:752.762667pt;}
.y15e{bottom:753.489333pt;}
.ya0{bottom:757.621333pt;}
.ya{bottom:758.388000pt;}
.yd7{bottom:761.425333pt;}
.yca{bottom:761.426667pt;}
.y80{bottom:765.016000pt;}
.y15d{bottom:768.101333pt;}
.y51{bottom:770.014667pt;}
.y53{bottom:770.032000pt;}
.yd8{bottom:771.225333pt;}
.ycb{bottom:771.228000pt;}
.y9f{bottom:774.889333pt;}
.y7f{bottom:782.284000pt;}
.y15c{bottom:782.712000pt;}
.ye2{bottom:787.392000pt;}
.y9e{bottom:792.158667pt;}
.y15b{bottom:797.324000pt;}
.y7e{bottom:799.553333pt;}
.y9{bottom:799.566667pt;}
.ye1{bottom:805.017333pt;}
.y9d{bottom:809.426667pt;}
.y15a{bottom:811.936000pt;}
.y7d{bottom:816.821333pt;}
.yd0{bottom:816.988000pt;}
.yd9{bottom:817.698667pt;}
.y109{bottom:819.906667pt;}
.ye0{bottom:822.642667pt;}
.y159{bottom:826.548000pt;}
.y9c{bottom:826.696000pt;}
.y8{bottom:831.566667pt;}
.ycc{bottom:833.190667pt;}
.y7c{bottom:834.090667pt;}
.y108{bottom:837.174667pt;}
.ydf{bottom:838.372000pt;}
.y158{bottom:841.160000pt;}
.yde{bottom:843.313333pt;}
.y9b{bottom:843.964000pt;}
.y7b{bottom:851.358667pt;}
.y107{bottom:854.444000pt;}
.y157{bottom:855.772000pt;}
.yd1{bottom:859.758667pt;}
.y9a{bottom:861.232000pt;}
.yda{bottom:864.170667pt;}
.y7a{bottom:868.626667pt;}
.y156{bottom:870.384000pt;}
.y106{bottom:871.712000pt;}
.y99{bottom:878.501333pt;}
.y155{bottom:884.996000pt;}
.y79{bottom:885.896000pt;}
.y105{bottom:888.981333pt;}
.ycd{bottom:895.152000pt;}
.y98{bottom:895.769333pt;}
.y154{bottom:899.608000pt;}
.y104{bottom:906.249333pt;}
.ydb{bottom:910.644000pt;}
.y153{bottom:914.220000pt;}
.yd4{bottom:923.090667pt;}
.y78{bottom:923.517333pt;}
.yd3{bottom:926.768000pt;}
.y97{bottom:926.912000pt;}
.y152{bottom:928.830667pt;}
.y96{bottom:930.589333pt;}
.y77{bottom:940.786667pt;}
.y151{bottom:943.442667pt;}
.yd2{bottom:943.977333pt;}
.yce{bottom:957.114667pt;}
.ydc{bottom:957.117333pt;}
.y76{bottom:958.054667pt;}
.y6{bottom:1017.333333pt;}
.y5{bottom:1036.000000pt;}
.h16{height:14.122738pt;}
.h14{height:14.412435pt;}
.h17{height:14.472487pt;}
.h11{height:19.817098pt;}
.h13{height:19.877150pt;}
.h18{height:25.174470pt;}
.h15{height:28.824870pt;}
.h12{height:28.884922pt;}
.h8{height:35.865600pt;}
.h4{height:37.031250pt;}
.h3{height:38.171466pt;}
.h7{height:40.727307pt;}
.hd{height:41.018216pt;}
.h2{height:41.367733pt;}
.h9{height:43.636400pt;}
.h5{height:43.854610pt;}
.hf{height:49.801693pt;}
.he{height:49.807027pt;}
.hb{height:58.340400pt;}
.ha{height:58.345733pt;}
.h6{height:64.270827pt;}
.hc{height:80.746216pt;}
.h10{height:675.147218pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:433.526362pt;}
.w2{width:607.353867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.188474pt;}
.x3b{left:8.912911pt;}
.x33{left:17.498984pt;}
.x4d{left:24.738653pt;}
.x4a{left:26.813437pt;}
.x4c{left:27.828757pt;}
.x3f{left:64.706933pt;}
.x2{left:67.602400pt;}
.x45{left:71.770026pt;}
.x3e{left:82.700162pt;}
.x49{left:85.348822pt;}
.x1{left:91.970133pt;}
.x4{left:93.333333pt;}
.x8{left:94.488000pt;}
.x46{left:96.031750pt;}
.x48{left:97.047070pt;}
.x2f{left:102.458667pt;}
.x30{left:106.824000pt;}
.x1a{left:110.245333pt;}
.x47{left:111.420465pt;}
.xa{left:113.385333pt;}
.x18{left:123.842667pt;}
.x24{left:127.125333pt;}
.x17{left:131.116000pt;}
.x23{left:134.397333pt;}
.x16{left:139.865333pt;}
.x22{left:143.148000pt;}
.x50{left:144.512000pt;}
.x43{left:147.751250pt;}
.x34{left:156.288764pt;}
.x35{left:169.108279pt;}
.x44{left:173.045953pt;}
.x32{left:179.861584pt;}
.x4f{left:185.688890pt;}
.x26{left:188.477333pt;}
.x9{left:190.129333pt;}
.x27{left:193.418667pt;}
.x38{left:196.813261pt;}
.x19{left:220.512000pt;}
.x3c{left:232.658460pt;}
.x25{left:236.953333pt;}
.x3a{left:242.546790pt;}
.x36{left:253.379808pt;}
.x40{left:270.604927pt;}
.x4e{left:272.344214pt;}
.x4b{left:274.904585pt;}
.x3d{left:275.919905pt;}
.x42{left:277.332524pt;}
.xd{left:284.361333pt;}
.xb{left:295.533333pt;}
.xf{left:316.006667pt;}
.x15{left:316.938667pt;}
.x14{left:321.880000pt;}
.x13{left:333.984000pt;}
.x37{left:336.070972pt;}
.x1b{left:342.960000pt;}
.x41{left:346.391918pt;}
.x10{left:372.502667pt;}
.x39{left:383.208290pt;}
.x7{left:397.333333pt;}
.x21{left:400.082667pt;}
.x31{left:404.820000pt;}
.x2c{left:414.644000pt;}
.x1f{left:415.840000pt;}
.x2d{left:418.321333pt;}
.x11{left:424.386667pt;}
.x1d{left:429.437333pt;}
.x2a{left:431.920000pt;}
.x29{left:443.233333pt;}
.x1c{left:445.460000pt;}
.x28{left:451.982667pt;}
.xe{left:473.089333pt;}
.xc{left:482.949333pt;}
.x6{left:490.066667pt;}
.x1e{left:526.106667pt;}
.x2b{left:545.789333pt;}
.x5{left:617.906667pt;}
.x20{left:625.934667pt;}
.x2e{left:647.809333pt;}
.x12{left:680.626667pt;}
}


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