
/* 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_363ce571a89f.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_a24f05565e24.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_d6be1e110f34.woff")format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_811f06516fa2.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_8dfffb8516c6.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_3ea5d4e57648.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_21968a214bdb.woff")format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_0727772e98ee.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_c8fb8abe2304.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_540278403e48.woff")format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_9c0b7cd64265.woff")format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_6a3a6fd010ab.woff")format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_030bf7399d03.woff")format("woff");}.ffd{font-family:ffd;line-height:0.873535;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;}
.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);}
.m2{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001002px;}
.ls0{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.990525px;}
.ls7{letter-spacing:17.576338px;}
.ls6{letter-spacing:18.470338px;}
.lsb{letter-spacing:18.674338px;}
.lsa{letter-spacing:19.406338px;}
.ls9{letter-spacing:21.824338px;}
.ls8{letter-spacing:21.974685px;}
.ls2{letter-spacing:30.630532px;}
.ls3{letter-spacing:30.636532px;}
.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:-16.605662px;}
.ws6{word-spacing:-15.359443px;}
.ws2a{word-spacing:-15.278643px;}
.wsf8{word-spacing:-12.733893px;}
.wsf7{word-spacing:-9.932436px;}
.wsf9{word-spacing:-7.046087px;}
.ws9c{word-spacing:-3.215927px;}
.ws9e{word-spacing:-3.156152px;}
.ws1a{word-spacing:-3.093408px;}
.wsca{word-spacing:-2.976825px;}
.ws29{word-spacing:-2.438844px;}
.ws2b{word-spacing:-2.379069px;}
.ws110{word-spacing:-2.199742px;}
.wsdb{word-spacing:-2.139966px;}
.ws117{word-spacing:-2.017440px;}
.ws58{word-spacing:-1.845993px;}
.ws5c{word-spacing:-1.844108px;}
.ws5a{word-spacing:-1.841088px;}
.wsb5{word-spacing:-1.482435px;}
.wsb3{word-spacing:-1.448108px;}
.wsc{word-spacing:-1.371859px;}
.ws60{word-spacing:-1.368058px;}
.ws62{word-spacing:-1.362884px;}
.ws37{word-spacing:-1.303108px;}
.wsf4{word-spacing:-1.243332px;}
.ws4d{word-spacing:-1.183557px;}
.wsfd{word-spacing:-1.064006px;}
.ws50{word-spacing:-1.004230px;}
.ws12{word-spacing:-0.833875px;}
.ws55{word-spacing:-0.705352px;}
.wsf5{word-spacing:-0.526025px;}
.ws107{word-spacing:-0.406474px;}
.ws10{word-spacing:-0.403488px;}
.ws8{word-spacing:-0.349690px;}
.ws1f{word-spacing:-0.346698px;}
.wsb6{word-spacing:-0.227147px;}
.wsea{word-spacing:-0.173343px;}
.wsec{word-spacing:-0.167372px;}
.ws57{word-spacing:-0.107596px;}
.wsf{word-spacing:-0.080698px;}
.ws81{word-spacing:-0.059776px;}
.wse0{word-spacing:-0.047820px;}
.ws23{word-spacing:0.000000px;}
.wsfc{word-spacing:0.011955px;}
.ws6c{word-spacing:0.071731px;}
.ws9d{word-spacing:0.143461px;}
.ws14{word-spacing:0.188294px;}
.ws6a{word-spacing:0.191282px;}
.wse6{word-spacing:0.251058px;}
.ws115{word-spacing:0.295891px;}
.ws5e{word-spacing:0.310833px;}
.wsfb{word-spacing:0.430384px;}
.wsb0{word-spacing:0.490160px;}
.wsfa{word-spacing:0.549936px;}
.wscd{word-spacing:0.669487px;}
.ws129{word-spacing:0.726278px;}
.ws106{word-spacing:0.729262px;}
.ws104{word-spacing:0.735892px;}
.ws27{word-spacing:0.789038px;}
.wscc{word-spacing:0.848814px;}
.ws45{word-spacing:0.908589px;}
.ws63{word-spacing:0.951669px;}
.ws64{word-spacing:0.968365px;}
.wsc8{word-spacing:0.981892px;}
.wsb9{word-spacing:1.028140px;}
.ws78{word-spacing:1.147692px;}
.wsce{word-spacing:1.207467px;}
.ws59{word-spacing:1.338973px;}
.ws44{word-spacing:1.386794px;}
.ws83{word-spacing:1.566121px;}
.ws85{word-spacing:1.599892px;}
.wsc9{word-spacing:1.625896px;}
.ws5d{word-spacing:1.685672px;}
.wsb4{word-spacing:1.697627px;}
.ws100{word-spacing:1.745448px;}
.ws127{word-spacing:1.802246px;}
.ws1e{word-spacing:1.805223px;}
.ws52{word-spacing:1.857570px;}
.ws51{word-spacing:1.864999px;}
.ws92{word-spacing:1.924774px;}
.ws4e{word-spacing:1.936729px;}
.ws94{word-spacing:1.953892px;}
.ws11e{word-spacing:1.963642px;}
.ws96{word-spacing:1.984550px;}
.ws91{word-spacing:2.044326px;}
.ws12c{word-spacing:2.125037px;}
.ws75{word-spacing:2.163877px;}
.ws11a{word-spacing:2.232634px;}
.ws46{word-spacing:2.283428px;}
.ws3f{word-spacing:2.397892px;}
.ws33{word-spacing:2.402979px;}
.ws90{word-spacing:2.462755px;}
.ws10b{word-spacing:2.505892px;}
.ws109{word-spacing:2.506228px;}
.ws108{word-spacing:2.522530px;}
.wsf6{word-spacing:2.594261px;}
.ws124{word-spacing:2.663021px;}
.wsb8{word-spacing:2.701857px;}
.ws20{word-spacing:2.713812px;}
.ws126{word-spacing:2.716819px;}
.ws47{word-spacing:2.761633px;}
.ws89{word-spacing:2.767160px;}
.ws31{word-spacing:2.821408px;}
.ws8e{word-spacing:2.940960px;}
.ws5{word-spacing:3.039610px;}
.ws2f{word-spacing:3.060511px;}
.ws4{word-spacing:3.093408px;}
.ws4f{word-spacing:3.120286px;}
.wsd2{word-spacing:3.180062px;}
.ws80{word-spacing:3.239838px;}
.wse7{word-spacing:3.251793px;}
.ws1{word-spacing:3.299613px;}
.ws35{word-spacing:3.309892px;}
.ws3{word-spacing:3.359389px;}
.ws5f{word-spacing:3.371344px;}
.wse{word-spacing:3.416198px;}
.wse9{word-spacing:3.419164px;}
.ws118{word-spacing:3.469997px;}
.wsb1{word-spacing:3.490895px;}
.wse1{word-spacing:3.538716px;}
.wsc4{word-spacing:3.598491px;}
.ws15{word-spacing:3.685190px;}
.ws105{word-spacing:3.729997px;}
.ws7d{word-spacing:3.777818px;}
.ws7f{word-spacing:3.813892px;}
.wsd0{word-spacing:3.837594px;}
.ws65{word-spacing:3.909324px;}
.wscf{word-spacing:3.957145px;}
.wsba{word-spacing:3.969100px;}
.wsab{word-spacing:3.995215px;}
.wsad{word-spacing:4.016920px;}
.ws18{word-spacing:4.061779px;}
.ws6e{word-spacing:4.076696px;}
.ws11{word-spacing:4.115578px;}
.ws10c{word-spacing:4.136472px;}
.ws79{word-spacing:4.148427px;}
.ws11c{word-spacing:4.169376px;}
.ws22{word-spacing:4.196247px;}
.ws119{word-spacing:4.276973px;}
.ws3c{word-spacing:4.315798px;}
.wsed{word-spacing:4.375574px;}
.wsd{word-spacing:4.384570px;}
.ws5b{word-spacing:4.388279px;}
.ws103{word-spacing:4.435350px;}
.ws48{word-spacing:4.483200px;}
.ws42{word-spacing:4.495125px;}
.ws86{word-spacing:4.507080px;}
.wsc6{word-spacing:4.674452px;}
.wsaa{word-spacing:4.746183px;}
.wsb2{word-spacing:4.776578px;}
.wsa9{word-spacing:4.794003px;}
.wsfe{word-spacing:4.853779px;}
.ws61{word-spacing:4.861982px;}
.ws95{word-spacing:4.865734px;}
.ws112{word-spacing:4.922554px;}
.ws13{word-spacing:4.976352px;}
.wsc5{word-spacing:4.985285px;}
.ws41{word-spacing:5.092881px;}
.wsb{word-spacing:5.137747px;}
.ws12a{word-spacing:5.191546px;}
.ws2d{word-spacing:5.212432px;}
.ws40{word-spacing:5.224387px;}
.ws116{word-spacing:5.299142px;}
.wsf2{word-spacing:5.343939px;}
.ws0{word-spacing:5.379825px;}
.ws6b{word-spacing:5.391759px;}
.ws11d{word-spacing:5.406739px;}
.wsd4{word-spacing:5.511310px;}
.wsb7{word-spacing:5.523265px;}
.ws56{word-spacing:5.571086px;}
.ws8a{word-spacing:5.583041px;}
.wsef{word-spacing:5.630862px;}
.ws32{word-spacing:5.642817px;}
.wsf0{word-spacing:5.690637px;}
.wseb{word-spacing:5.738215px;}
.ws8f{word-spacing:5.762368px;}
.ws73{word-spacing:5.810188px;}
.ws30{word-spacing:5.822143px;}
.wsbe{word-spacing:5.869964px;}
.wse5{word-spacing:5.881919px;}
.wsbb{word-spacing:5.915042px;}
.wsbd{word-spacing:5.929740px;}
.ws120{word-spacing:5.944723px;}
.ws122{word-spacing:5.998522px;}
.wsd3{word-spacing:6.001470px;}
.ws54{word-spacing:6.049291px;}
.ws25{word-spacing:6.061246px;}
.wsdd{word-spacing:6.064436px;}
.wsae{word-spacing:6.109066px;}
.ws97{word-spacing:6.121021px;}
.ws67{word-spacing:6.168842px;}
.wse8{word-spacing:6.180797px;}
.wsdf{word-spacing:6.205051px;}
.ws11f{word-spacing:6.213715px;}
.ws26{word-spacing:6.288393px;}
.ws10f{word-spacing:6.300348px;}
.ws82{word-spacing:6.348169px;}
.ws17{word-spacing:6.375110px;}
.ws71{word-spacing:6.396740px;}
.ws6f{word-spacing:6.397913px;}
.ws6d{word-spacing:6.407944px;}
.ws12b{word-spacing:6.428909px;}
.ws21{word-spacing:6.527496px;}
.ws7e{word-spacing:6.539451px;}
.wsf3{word-spacing:6.587271px;}
.wsd1{word-spacing:6.599226px;}
.wsac{word-spacing:6.718777px;}
.ws128{word-spacing:6.805498px;}
.ws10d{word-spacing:6.838329px;}
.ws10e{word-spacing:6.886149px;}
.wsde{word-spacing:6.893294px;}
.ws7b{word-spacing:6.945925px;}
.wsf1{word-spacing:7.005700px;}
.ws3d{word-spacing:7.017655px;}
.wsee{word-spacing:7.077431px;}
.ws99{word-spacing:7.185027px;}
.ws28{word-spacing:7.244803px;}
.ws9{word-spacing:7.289683px;}
.wsc7{word-spacing:7.376309px;}
.wse3{word-spacing:7.424130px;}
.ws12d{word-spacing:7.451078px;}
.ws84{word-spacing:7.515499px;}
.ws69{word-spacing:7.603456px;}
.wsc1{word-spacing:7.647892px;}
.wsc3{word-spacing:7.663232px;}
.ws43{word-spacing:7.723008px;}
.ws8c{word-spacing:7.737892px;}
.ws2c{word-spacing:7.782783px;}
.ws2e{word-spacing:7.794738px;}
.ws38{word-spacing:7.842559px;}
.ws74{word-spacing:7.854514px;}
.ws3a{word-spacing:7.863892px;}
.ws93{word-spacing:7.871676px;}
.ws123{word-spacing:7.881466px;}
.wsd6{word-spacing:8.093616px;}
.wsda{word-spacing:8.145974px;}
.ws111{word-spacing:8.201212px;}
.ws7c{word-spacing:8.260988px;}
.ws3e{word-spacing:8.313574px;}
.ws72{word-spacing:8.392494px;}
.wsbf{word-spacing:8.452270px;}
.wsbc{word-spacing:8.512045px;}
.wsaf{word-spacing:8.631597px;}
.ws34{word-spacing:8.636279px;}
.ws9a{word-spacing:8.679417px;}
.ws10a{word-spacing:8.744279px;}
.ws102{word-spacing:8.858744px;}
.ws70{word-spacing:8.930475px;}
.ws66{word-spacing:9.336949px;}
.ws7a{word-spacing:9.468455px;}
.ws36{word-spacing:9.541727px;}
.wsd8{word-spacing:9.576051px;}
.ws24{word-spacing:9.755378px;}
.wse2{word-spacing:9.789974px;}
.wse4{word-spacing:9.886884px;}
.ws121{word-spacing:9.979603px;}
.ws4b{word-spacing:10.054256px;}
.wsc2{word-spacing:10.066211px;}
.ws49{word-spacing:10.069450px;}
.ws8d{word-spacing:10.185762px;}
.ws1d{word-spacing:10.353134px;}
.ws4c{word-spacing:10.412910px;}
.ws101{word-spacing:10.443974px;}
.ws98{word-spacing:10.652012px;}
.ws77{word-spacing:10.891114px;}
.ws9b{word-spacing:11.082396px;}
.wsa{word-spacing:11.109370px;}
.ws16{word-spacing:11.432160px;}
.ws87{word-spacing:11.548646px;}
.ws113{word-spacing:11.701152px;}
.wsd5{word-spacing:11.733974px;}
.ws125{word-spacing:11.754950px;}
.wsd9{word-spacing:11.859479px;}
.ws53{word-spacing:11.976904px;}
.wsff{word-spacing:12.026851px;}
.ws11b{word-spacing:12.077741px;}
.ws114{word-spacing:12.131539px;}
.wsdc{word-spacing:12.301051px;}
.ws1c{word-spacing:12.576786px;}
.ws76{word-spacing:13.054991px;}
.wsc0{word-spacing:13.566522px;}
.ws88{word-spacing:13.652747px;}
.ws8b{word-spacing:13.656522px;}
.ws3b{word-spacing:14.088083px;}
.ws39{word-spacing:14.089013px;}
.wsd7{word-spacing:15.828083px;}
.ws4a{word-spacing:15.995943px;}
.wsa8{word-spacing:16.067635px;}
.wsa7{word-spacing:16.695277px;}
.wsa6{word-spacing:18.117932px;}
.ws68{word-spacing:22.834279px;}
.ws19{word-spacing:27.592038px;}
.ws7{word-spacing:29.829450px;}
.wsa1{word-spacing:47.167666px;}
.ws1b{word-spacing:58.281600px;}
.wsa3{word-spacing:63.201827px;}
.wsa4{word-spacing:64.354226px;}
.wsa0{word-spacing:64.981868px;}
.wscb{word-spacing:68.682164px;}
.wsa5{word-spacing:74.817388px;}
.wsa2{word-spacing:88.162780px;}
.ws9f{word-spacing:252.200747px;}
._5{margin-left:-30.967816px;}
._22{margin-left:-27.156949px;}
._1{margin-left:-8.091257px;}
._20{margin-left:-6.742733px;}
._6{margin-left:-5.186173px;}
._8{margin-left:-3.873479px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.054452px;}
._3{width:1.054452px;}
._2{width:2.668393px;}
._d{width:4.755677px;}
._14{width:6.270059px;}
._1d{width:9.199526px;}
._26{width:15.741903px;}
._7{width:17.441426px;}
._b{width:19.465337px;}
._16{width:20.601073px;}
._9{width:21.637712px;}
._21{width:22.639992px;}
._10{width:23.996977px;}
._e{width:25.442897px;}
._15{width:26.472311px;}
._f{width:28.146334px;}
._a{width:29.308885px;}
._17{width:30.407135px;}
._25{width:31.913694px;}
._13{width:33.829029px;}
._2a{width:35.559581px;}
._2b{width:37.153178px;}
._28{width:39.208273px;}
._1c{width:43.464414px;}
._27{width:46.051424px;}
._23{width:49.978714px;}
._29{width:51.227309px;}
._24{width:52.464184px;}
._12{width:68.741940px;}
._11{width:80.697600px;}
._1b{width:90.610406px;}
._19{width:110.963049px;}
._1a{width:123.268711px;}
._c{width:170.648525px;}
._18{width:317.348171px;}
._1f{width:324.348816px;}
._1e{width:330.562627px;}
.fc2{color:rgb(49,133,155);}
.fc1{color:rgb(192,80,70);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.177377px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs7{font-size:43.948833px;}
.fs4{font-size:53.798400px;}
.fs8{font-size:56.344657px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:112.690880px;}
.y0{bottom:0.000000px;}
.yb9{bottom:18.311861px;}
.yb8{bottom:29.299069px;}
.yad{bottom:46.014651px;}
.yb5{bottom:64.420572px;}
.yac{bottom:65.735281px;}
.yb4{bottom:75.407780px;}
.yab{bottom:112.970885px;}
.ya9{bottom:113.252609px;}
.yaa{bottom:126.024064px;}
.ya8{bottom:126.399695px;}
.ya7{bottom:147.716758px;}
.yb3{bottom:147.998481px;}
.yb2{bottom:158.891781px;}
.yb7{bottom:181.147921px;}
.yb6{bottom:192.041221px;}
.yb1{bottom:194.107192px;}
.yb0{bottom:205.094400px;}
.ybb{bottom:214.672992px;}
.yba{bottom:225.566293px;}
.yaf{bottom:235.144884px;}
.yae{bottom:246.132093px;}
.y26{bottom:266.956500px;}
.ya5{bottom:271.888500px;}
.y10c{bottom:278.866500px;}
.yda{bottom:283.395000px;}
.y25{bottom:284.889000px;}
.y10b{bottom:295.305000px;}
.yd9{bottom:299.833500px;}
.y4d{bottom:302.821500px;}
.y24{bottom:302.823000px;}
.y10a{bottom:311.743500px;}
.yd8{bottom:315.286500px;}
.y4c{bottom:320.754000px;}
.y23{bottom:320.755500px;}
.y109{bottom:326.902500px;}
.yd7{bottom:331.725000px;}
.y22{bottom:338.688000px;}
.y88{bottom:338.800500px;}
.y108{bottom:343.341000px;}
.y4b{bottom:356.620500px;}
.y107{bottom:359.779500px;}
.yd6{bottom:361.173000px;}
.y4a{bottom:374.553000px;}
.y106{bottom:374.938500px;}
.y21{bottom:375.537000px;}
.y105{bottom:391.377000px;}
.y49{bottom:392.485500px;}
.ybd{bottom:396.553500px;}
.yd5{bottom:405.054000px;}
.y104{bottom:406.536000px;}
.y48{bottom:410.418000px;}
.y103{bottom:422.974500px;}
.yd4{bottom:422.986500px;}
.y20{bottom:427.071000px;}
.y47{bottom:428.350500px;}
.y66{bottom:428.352000px;}
.y102{bottom:438.133500px;}
.yd3{bottom:440.919000px;}
.y1f{bottom:443.509500px;}
.y46{bottom:446.284500px;}
.y101{bottom:454.572000px;}
.yd2{bottom:458.851500px;}
.ybc{bottom:464.037000px;}
.y45{bottom:464.217000px;}
.y100{bottom:469.731000px;}
.ya4{bottom:469.779000px;}
.y1e{bottom:476.583000px;}
.yd1{bottom:476.785500px;}
.y44{bottom:482.149500px;}
.yff{bottom:486.169500px;}
.ya3{bottom:487.711500px;}
.ya6{bottom:490.488000px;}
.y1d{bottom:493.020000px;}
.yd0{bottom:494.718000px;}
.y43{bottom:500.082000px;}
.yfe{bottom:501.328500px;}
.ya2{bottom:505.644000px;}
.y1c{bottom:509.458500px;}
.ycf{bottom:512.650500px;}
.yfd{bottom:517.767000px;}
.y42{bottom:518.014500px;}
.y65{bottom:518.440500px;}
.ya1{bottom:523.578000px;}
.y1b{bottom:525.897000px;}
.yce{bottom:530.583000px;}
.yfc{bottom:534.205500px;}
.ya0{bottom:541.510500px;}
.y1a{bottom:542.335500px;}
.y87{bottom:547.995000px;}
.ycd{bottom:548.515500px;}
.yfb{bottom:549.364500px;}
.y41{bottom:556.225500px;}
.y19{bottom:558.774000px;}
.y9f{bottom:559.443000px;}
.yfa{bottom:565.803000px;}
.y86{bottom:565.927500px;}
.ycc{bottom:566.448000px;}
.y64{bottom:566.686500px;}
.y18{bottom:575.212500px;}
.y9e{bottom:577.375500px;}
.yf9{bottom:580.962000px;}
.y85{bottom:583.860000px;}
.ycb{bottom:584.382000px;}
.y63{bottom:584.619000px;}
.y17{bottom:591.651000px;}
.y9d{bottom:595.308000px;}
.yf8{bottom:597.400500px;}
.y84{bottom:601.792500px;}
.yca{bottom:602.314500px;}
.y62{bottom:602.551500px;}
.y40{bottom:606.391500px;}
.y16{bottom:608.089500px;}
.y9c{bottom:613.240500px;}
.yf7{bottom:613.839000px;}
.y83{bottom:619.726500px;}
.yc9{bottom:620.247000px;}
.y61{bottom:620.484000px;}
.y3f{bottom:624.324000px;}
.y15{bottom:624.528000px;}
.yf6{bottom:628.998000px;}
.y9b{bottom:631.174500px;}
.y82{bottom:637.659000px;}
.yc8{bottom:638.179500px;}
.y60{bottom:638.418000px;}
.y14{bottom:640.966500px;}
.y3e{bottom:642.256500px;}
.yf5{bottom:645.436500px;}
.y9a{bottom:649.107000px;}
.y81{bottom:655.591500px;}
.yc7{bottom:656.112000px;}
.y5f{bottom:656.350500px;}
.y13{bottom:657.403500px;}
.y3d{bottom:660.189000px;}
.yf4{bottom:660.595500px;}
.y99{bottom:667.039500px;}
.y80{bottom:673.524000px;}
.y12{bottom:673.842000px;}
.yc6{bottom:674.044500px;}
.y5e{bottom:674.283000px;}
.yf3{bottom:677.034000px;}
.y3c{bottom:678.121500px;}
.y98{bottom:685.708500px;}
.y11{bottom:690.280500px;}
.y7f{bottom:691.456500px;}
.yc5{bottom:691.978500px;}
.y5d{bottom:692.215500px;}
.yf2{bottom:693.472500px;}
.y3b{bottom:696.055500px;}
.y97{bottom:703.641000px;}
.y10{bottom:706.719000px;}
.yf1{bottom:708.631500px;}
.y7e{bottom:709.389000px;}
.yc4{bottom:709.911000px;}
.y5c{bottom:710.148000px;}
.y3a{bottom:713.988000px;}
.y96{bottom:721.573500px;}
.yf{bottom:723.157500px;}
.yf0{bottom:725.070000px;}
.y7d{bottom:727.323000px;}
.yc3{bottom:727.843500px;}
.y5b{bottom:728.080500px;}
.y39{bottom:731.920500px;}
.y95{bottom:739.506000px;}
.ye{bottom:739.596000px;}
.yef{bottom:740.229000px;}
.y7c{bottom:745.255500px;}
.yc2{bottom:745.776000px;}
.y5a{bottom:746.014500px;}
.y38{bottom:749.853000px;}
.yd{bottom:756.034500px;}
.yee{bottom:756.667500px;}
.y94{bottom:757.438500px;}
.y7b{bottom:763.188000px;}
.yc1{bottom:763.708500px;}
.y59{bottom:763.947000px;}
.y37{bottom:767.785500px;}
.yed{bottom:771.826500px;}
.y93{bottom:775.372500px;}
.y7a{bottom:781.120500px;}
.yc0{bottom:781.642500px;}
.y58{bottom:781.879500px;}
.y36{bottom:785.718000px;}
.yec{bottom:788.265000px;}
.y92{bottom:793.305000px;}
.y79{bottom:799.053000px;}
.ybf{bottom:799.575000px;}
.y57{bottom:799.812000px;}
.yeb{bottom:803.424000px;}
.y35{bottom:803.652000px;}
.y91{bottom:811.237500px;}
.y78{bottom:816.987000px;}
.y56{bottom:817.744500px;}
.yc{bottom:818.815500px;}
.yea{bottom:819.862500px;}
.y34{bottom:821.584500px;}
.y90{bottom:829.170000px;}
.ybe{bottom:831.501000px;}
.y77{bottom:834.919500px;}
.ye9{bottom:835.021500px;}
.yb{bottom:835.254000px;}
.y55{bottom:835.677000px;}
.y33{bottom:839.517000px;}
.y8f{bottom:847.102500px;}
.ye8{bottom:851.460000px;}
.ya{bottom:851.692500px;}
.y54{bottom:853.611000px;}
.y32{bottom:857.449500px;}
.y8e{bottom:865.035000px;}
.ye7{bottom:866.619000px;}
.y53{bottom:871.543500px;}
.y9{bottom:873.844500px;}
.y31{bottom:875.382000px;}
.y8d{bottom:882.969000px;}
.ye6{bottom:883.057500px;}
.y52{bottom:889.476000px;}
.y8{bottom:890.283000px;}
.y30{bottom:893.314500px;}
.ye5{bottom:898.216500px;}
.y8c{bottom:900.901500px;}
.y76{bottom:902.281500px;}
.y7{bottom:906.721500px;}
.y51{bottom:907.408500px;}
.y2f{bottom:911.248500px;}
.ye4{bottom:914.655000px;}
.y75{bottom:914.835000px;}
.y8b{bottom:918.834000px;}
.y6{bottom:923.160000px;}
.y50{bottom:925.341000px;}
.y71{bottom:926.050500px;}
.y74{bottom:926.790000px;}
.y2e{bottom:929.181000px;}
.ye3{bottom:929.814000px;}
.y8a{bottom:936.766500px;}
.y73{bottom:938.745000px;}
.y4f{bottom:943.273500px;}
.ye2{bottom:946.252500px;}
.y2d{bottom:947.113500px;}
.y5{bottom:948.766500px;}
.y72{bottom:950.700000px;}
.ye1{bottom:961.411500px;}
.y6c{bottom:962.112000px;}
.y2c{bottom:965.046000px;}
.y4{bottom:966.699000px;}
.y70{bottom:966.840000px;}
.y89{bottom:970.333500px;}
.y4e{bottom:973.587000px;}
.ye0{bottom:977.850000px;}
.y6f{bottom:978.795000px;}
.y2b{bottom:982.978500px;}
.y6e{bottom:990.750000px;}
.ydf{bottom:993.009000px;}
.y2a{bottom:1000.912500px;}
.y6d{bottom:1002.705000px;}
.yde{bottom:1009.447500px;}
.y3{bottom:1018.845000px;}
.ydd{bottom:1024.606500px;}
.y6b{bottom:1030.800000px;}
.y69{bottom:1031.094000px;}
.y29{bottom:1036.777500px;}
.ydc{bottom:1041.045000px;}
.y6a{bottom:1042.755000px;}
.y2{bottom:1045.743000px;}
.y28{bottom:1054.710000px;}
.ydb{bottom:1056.204000px;}
.y68{bottom:1067.263500px;}
.y1{bottom:1072.642500px;}
.y67{bottom:1079.218500px;}
.y27{bottom:1111.497000px;}
.hf{height:21.678020px;}
.h5{height:24.209280px;}
.hd{height:30.558173px;}
.ha{height:31.382100px;}
.he{height:39.177145px;}
.h6{height:40.348800px;}
.h9{height:41.663593px;}
.h8{height:44.831700px;}
.h7{height:50.211840px;}
.h4{height:53.072100px;}
.h3{height:53.078100px;}
.h2{height:60.254040px;}
.hc{height:75.604135px;}
.hb{height:256.681320px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:363.110160px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.792637px;}
.x18{left:25.949821px;}
.x1a{left:31.396471px;}
.x17{left:37.970015px;}
.x14{left:49.708485px;}
.x1d{left:95.723288px;}
.x1c{left:106.334866px;}
.x1b{left:108.494744px;}
.x1f{left:110.936346px;}
.x1e{left:115.725642px;}
.x16{left:147.466466px;}
.x15{left:154.979087px;}
.x23{left:156.012072px;}
.x22{left:161.176999px;}
.x25{left:182.118430px;}
.x26{left:185.780833px;}
.xd{left:202.147500px;}
.x8{left:207.198000px;}
.x4{left:208.642500px;}
.xe{left:211.611000px;}
.x9{left:212.926500px;}
.x2{left:216.490500px;}
.x11{left:224.563500px;}
.x6{left:228.166500px;}
.x20{left:234.143330px;}
.x21{left:237.524010px;}
.x12{left:239.545500px;}
.x1{left:241.158000px;}
.x7{left:244.723500px;}
.x24{left:257.995902px;}
.x28{left:259.122795px;}
.xb{left:269.380500px;}
.x27{left:271.706435px;}
.xa{left:273.580500px;}
.x10{left:275.619000px;}
.x13{left:279.958500px;}
.x5{left:297.538500px;}
.x3{left:329.874000px;}
.xf{left:340.783500px;}
.xc{left:366.034500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000891pt;}
.ls0{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.658245pt;}
.ls7{letter-spacing:15.623412pt;}
.ls6{letter-spacing:16.418079pt;}
.lsb{letter-spacing:16.599412pt;}
.lsa{letter-spacing:17.250079pt;}
.ls9{letter-spacing:19.399412pt;}
.ls8{letter-spacing:19.533053pt;}
.ls2{letter-spacing:27.227139pt;}
.ls3{letter-spacing:27.232473pt;}
.ws2{word-spacing:-14.760588pt;}
.ws6{word-spacing:-13.652838pt;}
.ws2a{word-spacing:-13.581016pt;}
.wsf8{word-spacing:-11.319016pt;}
.wsf7{word-spacing:-8.828832pt;}
.wsf9{word-spacing:-6.263189pt;}
.ws9c{word-spacing:-2.858602pt;}
.ws9e{word-spacing:-2.805468pt;}
.ws1a{word-spacing:-2.749696pt;}
.wsca{word-spacing:-2.646067pt;}
.ws29{word-spacing:-2.167862pt;}
.ws2b{word-spacing:-2.114728pt;}
.ws110{word-spacing:-1.955326pt;}
.wsdb{word-spacing:-1.902192pt;}
.ws117{word-spacing:-1.793280pt;}
.ws58{word-spacing:-1.640882pt;}
.ws5c{word-spacing:-1.639207pt;}
.ws5a{word-spacing:-1.636523pt;}
.wsb5{word-spacing:-1.317720pt;}
.wsb3{word-spacing:-1.287207pt;}
.wsc{word-spacing:-1.219430pt;}
.ws60{word-spacing:-1.216052pt;}
.ws62{word-spacing:-1.211452pt;}
.ws37{word-spacing:-1.158318pt;}
.wsf4{word-spacing:-1.105184pt;}
.ws4d{word-spacing:-1.052051pt;}
.wsfd{word-spacing:-0.945783pt;}
.ws50{word-spacing:-0.892649pt;}
.ws12{word-spacing:-0.741222pt;}
.ws55{word-spacing:-0.626980pt;}
.wsf5{word-spacing:-0.467578pt;}
.ws107{word-spacing:-0.361310pt;}
.ws10{word-spacing:-0.358656pt;}
.ws8{word-spacing:-0.310835pt;}
.ws1f{word-spacing:-0.308176pt;}
.wsb6{word-spacing:-0.201909pt;}
.wsea{word-spacing:-0.154083pt;}
.wsec{word-spacing:-0.148775pt;}
.ws57{word-spacing:-0.095641pt;}
.wsf{word-spacing:-0.071731pt;}
.ws81{word-spacing:-0.053134pt;}
.wse0{word-spacing:-0.042507pt;}
.ws23{word-spacing:0.000000pt;}
.wsfc{word-spacing:0.010627pt;}
.ws6c{word-spacing:0.063761pt;}
.ws9d{word-spacing:0.127521pt;}
.ws14{word-spacing:0.167373pt;}
.ws6a{word-spacing:0.170028pt;}
.wse6{word-spacing:0.223162pt;}
.ws115{word-spacing:0.263014pt;}
.ws5e{word-spacing:0.276296pt;}
.wsfb{word-spacing:0.382564pt;}
.wsb0{word-spacing:0.435698pt;}
.wsfa{word-spacing:0.488832pt;}
.wscd{word-spacing:0.595099pt;}
.ws129{word-spacing:0.645581pt;}
.ws106{word-spacing:0.648233pt;}
.ws104{word-spacing:0.654126pt;}
.ws27{word-spacing:0.701367pt;}
.wscc{word-spacing:0.754501pt;}
.ws45{word-spacing:0.807635pt;}
.ws63{word-spacing:0.845928pt;}
.ws64{word-spacing:0.860769pt;}
.wsc8{word-spacing:0.872793pt;}
.wsb9{word-spacing:0.913903pt;}
.ws78{word-spacing:1.020170pt;}
.wsce{word-spacing:1.073304pt;}
.ws59{word-spacing:1.190199pt;}
.ws44{word-spacing:1.232706pt;}
.ws83{word-spacing:1.392107pt;}
.ws85{word-spacing:1.422126pt;}
.wsc9{word-spacing:1.445241pt;}
.ws5d{word-spacing:1.498375pt;}
.wsb4{word-spacing:1.509002pt;}
.ws100{word-spacing:1.551509pt;}
.ws127{word-spacing:1.601997pt;}
.ws1e{word-spacing:1.604643pt;}
.ws52{word-spacing:1.651173pt;}
.ws51{word-spacing:1.657777pt;}
.ws92{word-spacing:1.710911pt;}
.ws4e{word-spacing:1.721537pt;}
.ws94{word-spacing:1.736793pt;}
.ws11e{word-spacing:1.745459pt;}
.ws96{word-spacing:1.764044pt;}
.ws91{word-spacing:1.817178pt;}
.ws12c{word-spacing:1.888922pt;}
.ws75{word-spacing:1.923446pt;}
.ws11a{word-spacing:1.984563pt;}
.ws46{word-spacing:2.029714pt;}
.ws3f{word-spacing:2.131459pt;}
.ws33{word-spacing:2.135981pt;}
.ws90{word-spacing:2.189115pt;}
.ws10b{word-spacing:2.227459pt;}
.ws109{word-spacing:2.227758pt;}
.ws108{word-spacing:2.242249pt;}
.wsf6{word-spacing:2.306010pt;}
.ws124{word-spacing:2.367130pt;}
.wsb8{word-spacing:2.401651pt;}
.ws20{word-spacing:2.412278pt;}
.ws126{word-spacing:2.414950pt;}
.ws47{word-spacing:2.454785pt;}
.ws89{word-spacing:2.459698pt;}
.ws31{word-spacing:2.507919pt;}
.ws8e{word-spacing:2.614186pt;}
.ws5{word-spacing:2.701875pt;}
.ws2f{word-spacing:2.720454pt;}
.ws4{word-spacing:2.749696pt;}
.ws4f{word-spacing:2.773588pt;}
.wsd2{word-spacing:2.826722pt;}
.ws80{word-spacing:2.879856pt;}
.wse7{word-spacing:2.890482pt;}
.ws1{word-spacing:2.932989pt;}
.ws35{word-spacing:2.942126pt;}
.ws3{word-spacing:2.986123pt;}
.ws5f{word-spacing:2.996750pt;}
.wse{word-spacing:3.036621pt;}
.wse9{word-spacing:3.039257pt;}
.ws118{word-spacing:3.084442pt;}
.wsb1{word-spacing:3.103018pt;}
.wse1{word-spacing:3.145525pt;}
.wsc4{word-spacing:3.198659pt;}
.ws15{word-spacing:3.275725pt;}
.ws105{word-spacing:3.315553pt;}
.ws7d{word-spacing:3.358060pt;}
.ws7f{word-spacing:3.390126pt;}
.wsd0{word-spacing:3.411194pt;}
.ws65{word-spacing:3.474955pt;}
.wscf{word-spacing:3.517462pt;}
.wsba{word-spacing:3.528089pt;}
.wsab{word-spacing:3.551302pt;}
.wsad{word-spacing:3.570596pt;}
.ws18{word-spacing:3.610470pt;}
.ws6e{word-spacing:3.623730pt;}
.ws11{word-spacing:3.658291pt;}
.ws10c{word-spacing:3.676864pt;}
.ws79{word-spacing:3.687490pt;}
.ws11c{word-spacing:3.706112pt;}
.ws22{word-spacing:3.729997pt;}
.ws119{word-spacing:3.801754pt;}
.ws3c{word-spacing:3.836265pt;}
.wsed{word-spacing:3.889399pt;}
.wsd{word-spacing:3.897395pt;}
.ws5b{word-spacing:3.900693pt;}
.ws103{word-spacing:3.942533pt;}
.ws48{word-spacing:3.985067pt;}
.ws42{word-spacing:3.995667pt;}
.ws86{word-spacing:4.006294pt;}
.wsc6{word-spacing:4.155068pt;}
.wsaa{word-spacing:4.218829pt;}
.wsb2{word-spacing:4.245847pt;}
.wsa9{word-spacing:4.261336pt;}
.wsfe{word-spacing:4.314470pt;}
.ws61{word-spacing:4.321762pt;}
.ws95{word-spacing:4.325097pt;}
.ws112{word-spacing:4.375603pt;}
.ws13{word-spacing:4.423424pt;}
.wsc5{word-spacing:4.431364pt;}
.ws41{word-spacing:4.527005pt;}
.wsb{word-spacing:4.566886pt;}
.ws12a{word-spacing:4.614707pt;}
.ws2d{word-spacing:4.633273pt;}
.ws40{word-spacing:4.643900pt;}
.ws116{word-spacing:4.710349pt;}
.wsf2{word-spacing:4.750168pt;}
.ws0{word-spacing:4.782067pt;}
.ws6b{word-spacing:4.792675pt;}
.ws11d{word-spacing:4.805990pt;}
.wsd4{word-spacing:4.898943pt;}
.wsb7{word-spacing:4.909569pt;}
.ws56{word-spacing:4.952076pt;}
.ws8a{word-spacing:4.962703pt;}
.wsef{word-spacing:5.005210pt;}
.ws32{word-spacing:5.015837pt;}
.wsf0{word-spacing:5.058344pt;}
.wseb{word-spacing:5.100636pt;}
.ws8f{word-spacing:5.122105pt;}
.ws73{word-spacing:5.164612pt;}
.ws30{word-spacing:5.175239pt;}
.wsbe{word-spacing:5.217746pt;}
.wse5{word-spacing:5.228372pt;}
.wsbb{word-spacing:5.257815pt;}
.wsbd{word-spacing:5.270880pt;}
.ws120{word-spacing:5.284198pt;}
.ws122{word-spacing:5.332019pt;}
.wsd3{word-spacing:5.334640pt;}
.ws54{word-spacing:5.377147pt;}
.ws25{word-spacing:5.387774pt;}
.wsdd{word-spacing:5.390610pt;}
.wsae{word-spacing:5.430281pt;}
.ws97{word-spacing:5.440908pt;}
.ws67{word-spacing:5.483415pt;}
.wse8{word-spacing:5.494042pt;}
.wsdf{word-spacing:5.515601pt;}
.ws11f{word-spacing:5.523302pt;}
.ws26{word-spacing:5.589683pt;}
.ws10f{word-spacing:5.600310pt;}
.ws82{word-spacing:5.642817pt;}
.ws17{word-spacing:5.666765pt;}
.ws71{word-spacing:5.685991pt;}
.ws6f{word-spacing:5.687034pt;}
.ws6d{word-spacing:5.695951pt;}
.ws12b{word-spacing:5.714586pt;}
.ws21{word-spacing:5.802218pt;}
.ws7e{word-spacing:5.812845pt;}
.wsf3{word-spacing:5.855352pt;}
.wsd1{word-spacing:5.865979pt;}
.wsac{word-spacing:5.972247pt;}
.ws128{word-spacing:6.049331pt;}
.ws10d{word-spacing:6.078514pt;}
.ws10e{word-spacing:6.121021pt;}
.wsde{word-spacing:6.127372pt;}
.ws7b{word-spacing:6.174155pt;}
.wsf1{word-spacing:6.227289pt;}
.ws3d{word-spacing:6.237916pt;}
.wsee{word-spacing:6.291050pt;}
.ws99{word-spacing:6.386691pt;}
.ws28{word-spacing:6.439825pt;}
.ws9{word-spacing:6.479718pt;}
.wsc7{word-spacing:6.556719pt;}
.wse3{word-spacing:6.599226pt;}
.ws12d{word-spacing:6.623181pt;}
.ws84{word-spacing:6.680444pt;}
.ws69{word-spacing:6.758628pt;}
.wsc1{word-spacing:6.798126pt;}
.wsc3{word-spacing:6.811762pt;}
.ws43{word-spacing:6.864896pt;}
.ws8c{word-spacing:6.878126pt;}
.ws2c{word-spacing:6.918029pt;}
.ws2e{word-spacing:6.928656pt;}
.ws38{word-spacing:6.971163pt;}
.ws74{word-spacing:6.981790pt;}
.ws3a{word-spacing:6.990126pt;}
.ws93{word-spacing:6.997045pt;}
.ws123{word-spacing:7.005747pt;}
.wsd6{word-spacing:7.194326pt;}
.wsda{word-spacing:7.240866pt;}
.ws111{word-spacing:7.289967pt;}
.ws7c{word-spacing:7.343100pt;}
.ws3e{word-spacing:7.389844pt;}
.ws72{word-spacing:7.459995pt;}
.wsbf{word-spacing:7.513129pt;}
.wsbc{word-spacing:7.566263pt;}
.wsaf{word-spacing:7.672530pt;}
.ws34{word-spacing:7.676693pt;}
.ws9a{word-spacing:7.715037pt;}
.ws10a{word-spacing:7.772693pt;}
.ws102{word-spacing:7.874439pt;}
.ws70{word-spacing:7.938200pt;}
.ws66{word-spacing:8.299510pt;}
.ws7a{word-spacing:8.416404pt;}
.ws36{word-spacing:8.481535pt;}
.wsd8{word-spacing:8.512045pt;}
.ws24{word-spacing:8.671447pt;}
.wse2{word-spacing:8.702199pt;}
.wse4{word-spacing:8.788342pt;}
.ws121{word-spacing:8.870758pt;}
.ws4b{word-spacing:8.937116pt;}
.wsc2{word-spacing:8.947743pt;}
.ws49{word-spacing:8.950622pt;}
.ws8d{word-spacing:9.054011pt;}
.ws1d{word-spacing:9.202786pt;}
.ws4c{word-spacing:9.255920pt;}
.ws101{word-spacing:9.283532pt;}
.ws98{word-spacing:9.468455pt;}
.ws77{word-spacing:9.680991pt;}
.ws9b{word-spacing:9.851019pt;}
.wsa{word-spacing:9.874995pt;}
.ws16{word-spacing:10.161920pt;}
.ws87{word-spacing:10.265463pt;}
.ws113{word-spacing:10.401024pt;}
.wsd5{word-spacing:10.430199pt;}
.ws125{word-spacing:10.448845pt;}
.wsd9{word-spacing:10.541759pt;}
.ws53{word-spacing:10.646137pt;}
.wsff{word-spacing:10.690534pt;}
.ws11b{word-spacing:10.735770pt;}
.ws114{word-spacing:10.783590pt;}
.wsdc{word-spacing:10.934268pt;}
.ws1c{word-spacing:11.179366pt;}
.ws76{word-spacing:11.604436pt;}
.wsc0{word-spacing:12.059131pt;}
.ws88{word-spacing:12.135775pt;}
.ws8b{word-spacing:12.139131pt;}
.ws3b{word-spacing:12.522740pt;}
.ws39{word-spacing:12.523567pt;}
.wsd7{word-spacing:14.069407pt;}
.ws4a{word-spacing:14.218616pt;}
.wsa8{word-spacing:14.282342pt;}
.wsa7{word-spacing:14.840246pt;}
.wsa6{word-spacing:16.104829pt;}
.ws68{word-spacing:20.297137pt;}
.ws19{word-spacing:24.526256pt;}
.ws7{word-spacing:26.515067pt;}
.wsa1{word-spacing:41.926814pt;}
.ws1b{word-spacing:51.805867pt;}
.wsa3{word-spacing:56.179402pt;}
.wsa4{word-spacing:57.203757pt;}
.wsa0{word-spacing:57.761661pt;}
.wscb{word-spacing:61.050813pt;}
.wsa5{word-spacing:66.504345pt;}
.wsa2{word-spacing:78.366915pt;}
.ws9f{word-spacing:224.178441pt;}
._5{margin-left:-27.526948pt;}
._22{margin-left:-24.139510pt;}
._1{margin-left:-7.192228pt;}
._20{margin-left:-5.993540pt;}
._6{margin-left:-4.609932pt;}
._8{margin-left:-3.443092pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-0.937291pt;}
._3{width:0.937291pt;}
._2{width:2.371905pt;}
._d{width:4.227269pt;}
._14{width:5.573385pt;}
._1d{width:8.177357pt;}
._26{width:13.992802pt;}
._7{width:15.503490pt;}
._b{width:17.302522pt;}
._16{width:18.312065pt;}
._9{width:19.233522pt;}
._21{width:20.124437pt;}
._10{width:21.330647pt;}
._e{width:22.615908pt;}
._15{width:23.530943pt;}
._f{width:25.018964pt;}
._a{width:26.052342pt;}
._17{width:27.028564pt;}
._25{width:28.367728pt;}
._13{width:30.070248pt;}
._2a{width:31.608517pt;}
._2b{width:33.025047pt;}
._28{width:34.851798pt;}
._1c{width:38.635035pt;}
._27{width:40.934599pt;}
._23{width:44.425523pt;}
._29{width:45.535386pt;}
._24{width:46.634830pt;}
._12{width:61.103947pt;}
._11{width:71.731200pt;}
._1b{width:80.542583pt;}
._19{width:98.633821pt;}
._1a{width:109.572188pt;}
._c{width:151.687578pt;}
._18{width:282.087263pt;}
._1f{width:288.310058pt;}
._1e{width:293.833446pt;}
.fs9{font-size:27.713224pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs7{font-size:39.065629pt;}
.fs4{font-size:47.820800pt;}
.fs8{font-size:50.084140pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:100.169671pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:16.277210pt;}
.yb8{bottom:26.043617pt;}
.yad{bottom:40.901912pt;}
.yb5{bottom:57.262731pt;}
.yac{bottom:58.431361pt;}
.yb4{bottom:67.029138pt;}
.yab{bottom:100.418565pt;}
.ya9{bottom:100.668986pt;}
.yaa{bottom:112.021391pt;}
.ya8{bottom:112.355285pt;}
.ya7{bottom:131.303784pt;}
.yb3{bottom:131.554205pt;}
.yb2{bottom:141.237139pt;}
.yb7{bottom:161.020374pt;}
.yb6{bottom:170.703308pt;}
.yb1{bottom:172.539726pt;}
.yb0{bottom:182.306134pt;}
.ybb{bottom:190.820437pt;}
.yba{bottom:200.503371pt;}
.yaf{bottom:209.017675pt;}
.yae{bottom:218.784082pt;}
.y26{bottom:237.294667pt;}
.ya5{bottom:241.678667pt;}
.y10c{bottom:247.881333pt;}
.yda{bottom:251.906667pt;}
.y25{bottom:253.234667pt;}
.y10b{bottom:262.493333pt;}
.yd9{bottom:266.518667pt;}
.y4d{bottom:269.174667pt;}
.y24{bottom:269.176000pt;}
.y10a{bottom:277.105333pt;}
.yd8{bottom:280.254667pt;}
.y4c{bottom:285.114667pt;}
.y23{bottom:285.116000pt;}
.y109{bottom:290.580000pt;}
.yd7{bottom:294.866667pt;}
.y22{bottom:301.056000pt;}
.y88{bottom:301.156000pt;}
.y108{bottom:305.192000pt;}
.y4b{bottom:316.996000pt;}
.y107{bottom:319.804000pt;}
.yd6{bottom:321.042667pt;}
.y4a{bottom:332.936000pt;}
.y106{bottom:333.278667pt;}
.y21{bottom:333.810667pt;}
.y105{bottom:347.890667pt;}
.y49{bottom:348.876000pt;}
.ybd{bottom:352.492000pt;}
.yd5{bottom:360.048000pt;}
.y104{bottom:361.365333pt;}
.y48{bottom:364.816000pt;}
.y103{bottom:375.977333pt;}
.yd4{bottom:375.988000pt;}
.y20{bottom:379.618667pt;}
.y47{bottom:380.756000pt;}
.y66{bottom:380.757333pt;}
.y102{bottom:389.452000pt;}
.yd3{bottom:391.928000pt;}
.y1f{bottom:394.230667pt;}
.y46{bottom:396.697333pt;}
.y101{bottom:404.064000pt;}
.yd2{bottom:407.868000pt;}
.ybc{bottom:412.477333pt;}
.y45{bottom:412.637333pt;}
.y100{bottom:417.538667pt;}
.ya4{bottom:417.581333pt;}
.y1e{bottom:423.629333pt;}
.yd1{bottom:423.809333pt;}
.y44{bottom:428.577333pt;}
.yff{bottom:432.150667pt;}
.ya3{bottom:433.521333pt;}
.ya6{bottom:435.989333pt;}
.y1d{bottom:438.240000pt;}
.yd0{bottom:439.749333pt;}
.y43{bottom:444.517333pt;}
.yfe{bottom:445.625333pt;}
.ya2{bottom:449.461333pt;}
.y1c{bottom:452.852000pt;}
.ycf{bottom:455.689333pt;}
.yfd{bottom:460.237333pt;}
.y42{bottom:460.457333pt;}
.y65{bottom:460.836000pt;}
.ya1{bottom:465.402667pt;}
.y1b{bottom:467.464000pt;}
.yce{bottom:471.629333pt;}
.yfc{bottom:474.849333pt;}
.ya0{bottom:481.342667pt;}
.y1a{bottom:482.076000pt;}
.y87{bottom:487.106667pt;}
.ycd{bottom:487.569333pt;}
.yfb{bottom:488.324000pt;}
.y41{bottom:494.422667pt;}
.y19{bottom:496.688000pt;}
.y9f{bottom:497.282667pt;}
.yfa{bottom:502.936000pt;}
.y86{bottom:503.046667pt;}
.ycc{bottom:503.509333pt;}
.y64{bottom:503.721333pt;}
.y18{bottom:511.300000pt;}
.y9e{bottom:513.222667pt;}
.yf9{bottom:516.410667pt;}
.y85{bottom:518.986667pt;}
.ycb{bottom:519.450667pt;}
.y63{bottom:519.661333pt;}
.y17{bottom:525.912000pt;}
.y9d{bottom:529.162667pt;}
.yf8{bottom:531.022667pt;}
.y84{bottom:534.926667pt;}
.yca{bottom:535.390667pt;}
.y62{bottom:535.601333pt;}
.y40{bottom:539.014667pt;}
.y16{bottom:540.524000pt;}
.y9c{bottom:545.102667pt;}
.yf7{bottom:545.634667pt;}
.y83{bottom:550.868000pt;}
.yc9{bottom:551.330667pt;}
.y61{bottom:551.541333pt;}
.y3f{bottom:554.954667pt;}
.y15{bottom:555.136000pt;}
.yf6{bottom:559.109333pt;}
.y9b{bottom:561.044000pt;}
.y82{bottom:566.808000pt;}
.yc8{bottom:567.270667pt;}
.y60{bottom:567.482667pt;}
.y14{bottom:569.748000pt;}
.y3e{bottom:570.894667pt;}
.yf5{bottom:573.721333pt;}
.y9a{bottom:576.984000pt;}
.y81{bottom:582.748000pt;}
.yc7{bottom:583.210667pt;}
.y5f{bottom:583.422667pt;}
.y13{bottom:584.358667pt;}
.y3d{bottom:586.834667pt;}
.yf4{bottom:587.196000pt;}
.y99{bottom:592.924000pt;}
.y80{bottom:598.688000pt;}
.y12{bottom:598.970667pt;}
.yc6{bottom:599.150667pt;}
.y5e{bottom:599.362667pt;}
.yf3{bottom:601.808000pt;}
.y3c{bottom:602.774667pt;}
.y98{bottom:609.518667pt;}
.y11{bottom:613.582667pt;}
.y7f{bottom:614.628000pt;}
.yc5{bottom:615.092000pt;}
.y5d{bottom:615.302667pt;}
.yf2{bottom:616.420000pt;}
.y3b{bottom:618.716000pt;}
.y97{bottom:625.458667pt;}
.y10{bottom:628.194667pt;}
.yf1{bottom:629.894667pt;}
.y7e{bottom:630.568000pt;}
.yc4{bottom:631.032000pt;}
.y5c{bottom:631.242667pt;}
.y3a{bottom:634.656000pt;}
.y96{bottom:641.398667pt;}
.yf{bottom:642.806667pt;}
.yf0{bottom:644.506667pt;}
.y7d{bottom:646.509333pt;}
.yc3{bottom:646.972000pt;}
.y5b{bottom:647.182667pt;}
.y39{bottom:650.596000pt;}
.y95{bottom:657.338667pt;}
.ye{bottom:657.418667pt;}
.yef{bottom:657.981333pt;}
.y7c{bottom:662.449333pt;}
.yc2{bottom:662.912000pt;}
.y5a{bottom:663.124000pt;}
.y38{bottom:666.536000pt;}
.yd{bottom:672.030667pt;}
.yee{bottom:672.593333pt;}
.y94{bottom:673.278667pt;}
.y7b{bottom:678.389333pt;}
.yc1{bottom:678.852000pt;}
.y59{bottom:679.064000pt;}
.y37{bottom:682.476000pt;}
.yed{bottom:686.068000pt;}
.y93{bottom:689.220000pt;}
.y7a{bottom:694.329333pt;}
.yc0{bottom:694.793333pt;}
.y58{bottom:695.004000pt;}
.y36{bottom:698.416000pt;}
.yec{bottom:700.680000pt;}
.y92{bottom:705.160000pt;}
.y79{bottom:710.269333pt;}
.ybf{bottom:710.733333pt;}
.y57{bottom:710.944000pt;}
.yeb{bottom:714.154667pt;}
.y35{bottom:714.357333pt;}
.y91{bottom:721.100000pt;}
.y78{bottom:726.210667pt;}
.y56{bottom:726.884000pt;}
.yc{bottom:727.836000pt;}
.yea{bottom:728.766667pt;}
.y34{bottom:730.297333pt;}
.y90{bottom:737.040000pt;}
.ybe{bottom:739.112000pt;}
.y77{bottom:742.150667pt;}
.ye9{bottom:742.241333pt;}
.yb{bottom:742.448000pt;}
.y55{bottom:742.824000pt;}
.y33{bottom:746.237333pt;}
.y8f{bottom:752.980000pt;}
.ye8{bottom:756.853333pt;}
.ya{bottom:757.060000pt;}
.y54{bottom:758.765333pt;}
.y32{bottom:762.177333pt;}
.y8e{bottom:768.920000pt;}
.ye7{bottom:770.328000pt;}
.y53{bottom:774.705333pt;}
.y9{bottom:776.750667pt;}
.y31{bottom:778.117333pt;}
.y8d{bottom:784.861333pt;}
.ye6{bottom:784.940000pt;}
.y52{bottom:790.645333pt;}
.y8{bottom:791.362667pt;}
.y30{bottom:794.057333pt;}
.ye5{bottom:798.414667pt;}
.y8c{bottom:800.801333pt;}
.y76{bottom:802.028000pt;}
.y7{bottom:805.974667pt;}
.y51{bottom:806.585333pt;}
.y2f{bottom:809.998667pt;}
.ye4{bottom:813.026667pt;}
.y75{bottom:813.186667pt;}
.y8b{bottom:816.741333pt;}
.y6{bottom:820.586667pt;}
.y50{bottom:822.525333pt;}
.y71{bottom:823.156000pt;}
.y74{bottom:823.813333pt;}
.y2e{bottom:825.938667pt;}
.ye3{bottom:826.501333pt;}
.y8a{bottom:832.681333pt;}
.y73{bottom:834.440000pt;}
.y4f{bottom:838.465333pt;}
.ye2{bottom:841.113333pt;}
.y2d{bottom:841.878667pt;}
.y5{bottom:843.348000pt;}
.y72{bottom:845.066667pt;}
.ye1{bottom:854.588000pt;}
.y6c{bottom:855.210667pt;}
.y2c{bottom:857.818667pt;}
.y4{bottom:859.288000pt;}
.y70{bottom:859.413333pt;}
.y89{bottom:862.518667pt;}
.y4e{bottom:865.410667pt;}
.ye0{bottom:869.200000pt;}
.y6f{bottom:870.040000pt;}
.y2b{bottom:873.758667pt;}
.y6e{bottom:880.666667pt;}
.ydf{bottom:882.674667pt;}
.y2a{bottom:889.700000pt;}
.y6d{bottom:891.293333pt;}
.yde{bottom:897.286667pt;}
.y3{bottom:905.640000pt;}
.ydd{bottom:910.761333pt;}
.y6b{bottom:916.266667pt;}
.y69{bottom:916.528000pt;}
.y29{bottom:921.580000pt;}
.ydc{bottom:925.373333pt;}
.y6a{bottom:926.893333pt;}
.y2{bottom:929.549333pt;}
.y28{bottom:937.520000pt;}
.ydb{bottom:938.848000pt;}
.y68{bottom:948.678667pt;}
.y1{bottom:953.460000pt;}
.y67{bottom:959.305333pt;}
.y27{bottom:987.997333pt;}
.hf{height:19.269351pt;}
.h5{height:21.519360pt;}
.hd{height:27.162820pt;}
.ha{height:27.895200pt;}
.he{height:34.824129pt;}
.h6{height:35.865600pt;}
.h9{height:37.034305pt;}
.h8{height:39.850400pt;}
.h7{height:44.632747pt;}
.h4{height:47.175200pt;}
.h3{height:47.180533pt;}
.h2{height:53.559147pt;}
.hc{height:67.203676pt;}
.hb{height:228.161173pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:322.764587pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.037900pt;}
.x18{left:23.066507pt;}
.x1a{left:27.907974pt;}
.x17{left:33.751124pt;}
.x14{left:44.185320pt;}
.x1d{left:85.087367pt;}
.x1c{left:94.519881pt;}
.x1b{left:96.439773pt;}
.x1f{left:98.610085pt;}
.x1e{left:102.867237pt;}
.x16{left:131.081303pt;}
.x15{left:137.759188pt;}
.x23{left:138.677397pt;}
.x22{left:143.268443pt;}
.x25{left:161.883049pt;}
.x26{left:165.138518pt;}
.xd{left:179.686667pt;}
.x8{left:184.176000pt;}
.x4{left:185.460000pt;}
.xe{left:188.098667pt;}
.x9{left:189.268000pt;}
.x2{left:192.436000pt;}
.x11{left:199.612000pt;}
.x6{left:202.814667pt;}
.x20{left:208.127405pt;}
.x21{left:211.132453pt;}
.x12{left:212.929333pt;}
.x1{left:214.362667pt;}
.x7{left:217.532000pt;}
.x24{left:229.329691pt;}
.x28{left:230.331373pt;}
.xb{left:239.449333pt;}
.x27{left:241.516831pt;}
.xa{left:243.182667pt;}
.x10{left:244.994667pt;}
.x13{left:248.852000pt;}
.x5{left:264.478667pt;}
.x3{left:293.221333pt;}
.xf{left:302.918667pt;}
.xc{left:325.364000pt;}
}


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