
/* 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_9a5edfcffd67.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_3a2b3f71c523.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_f52e080c4364.woff")format("woff");}.ff3{font-family:ff3;line-height:0.759766;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_8e7bcf18eb42.woff")format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_73f2e69ce3be.woff")format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_a214a84fbc9a.woff")format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_fe78336e878e.woff")format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_d68c5dd3dce8.woff")format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_99b2dd5a50e2.woff")format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_b5d143df9253.woff")format("woff");}.ffa{font-family:ffa;line-height:1.989258;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_2a89fb986b32.woff")format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_aa6b4ecab1ad.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_d740679b151d.woff")format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v6{vertical-align:-26.640000px;}
.v2{vertical-align:-20.880000px;}
.v7{vertical-align:-13.680000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.760000px;}
.va{vertical-align:13.680000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.vd{vertical-align:27.360000px;}
.v5{vertical-align:38.160000px;}
.v8{vertical-align:43.200000px;}
.vb{vertical-align:48.960000px;}
.v9{vertical-align:87.120000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.457800px;}
.ls19{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.ls2a{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls17{letter-spacing:0.010560px;}
.ls2{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.070560px;}
.ls18{letter-spacing:0.080400px;}
.ls1a{letter-spacing:0.095040px;}
.lse{letter-spacing:0.109200px;}
.ls26{letter-spacing:0.148800px;}
.ls4{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.262200px;}
.ls27{letter-spacing:0.305280px;}
.lsf{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.815040px;}
.ls5{letter-spacing:0.979920px;}
.ls6{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.532240px;}
.ls1b{letter-spacing:2.812800px;}
.ls22{letter-spacing:2.836800px;}
.ls29{letter-spacing:3.600000px;}
.ls24{letter-spacing:3.972240px;}
.ls23{letter-spacing:6.107760px;}
.ls28{letter-spacing:6.480000px;}
.ls1c{letter-spacing:6.973920px;}
.ls11{letter-spacing:8.640000px;}
.ls20{letter-spacing:13.775040px;}
.ls21{letter-spacing:14.598720px;}
.ls2c{letter-spacing:16.560000px;}
.ls1d{letter-spacing:18.095040px;}
.ls1e{letter-spacing:18.198720px;}
.ls14{letter-spacing:66.557280px;}
.ls2b{letter-spacing:78.785280px;}
.ls12{letter-spacing:87.960000px;}
.lsc{letter-spacing:129.197280px;}
.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;}
}
.ws18{word-spacing:-66.240000px;}
.ws1{word-spacing:-25.344000px;}
.ws8{word-spacing:-24.300000px;}
.wsd{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.896000px;}
.ws10{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws19{word-spacing:-16.297800px;}
.ws12{word-spacing:-16.254600px;}
.ws11{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.948000px;}
.ws17{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.572800px;}
.ws16{word-spacing:-10.761600px;}
.wsf{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:58.538880px;}
.ws14{word-spacing:59.258880px;}
._0{margin-left:-1447.886400px;}
._1a{margin-left:-31.193280px;}
._1d{margin-left:-28.193280px;}
._16{margin-left:-4.938000px;}
._c{margin-left:-3.673200px;}
._b{margin-left:-2.583360px;}
._6{margin-left:-1.135440px;}
._1{width:1.075680px;}
._9{width:2.212080px;}
._a{width:3.324960px;}
._e{width:4.703040px;}
._10{width:5.861520px;}
._4{width:6.932160px;}
._5{width:8.067600px;}
._14{width:9.251520px;}
._f{width:10.286880px;}
._d{width:11.790720px;}
._12{width:12.992400px;}
._11{width:14.374080px;}
._17{width:15.438720px;}
._2{width:18.107280px;}
._18{width:19.145040px;}
._3{width:20.211120px;}
._13{width:21.528000px;}
._34{width:22.789440px;}
._15{width:28.218240px;}
._19{width:30.612240px;}
._1f{width:33.186240px;}
._1e{width:34.444800px;}
._20{width:35.457120px;}
._35{width:36.841920px;}
._2c{width:43.004160px;}
._25{width:44.478480px;}
._24{width:45.506880px;}
._2e{width:54.316800px;}
._2d{width:55.386000px;}
._33{width:56.417760px;}
._2b{width:66.504960px;}
._2f{width:73.337040px;}
._30{width:74.435040px;}
._23{width:76.124160px;}
._8{width:78.464880px;}
._7{width:79.480800px;}
._2a{width:124.266240px;}
._29{width:125.865360px;}
._26{width:133.076160px;}
._27{width:149.437440px;}
._28{width:150.572880px;}
._1b{width:171.725040px;}
._1c{width:199.560000px;}
._31{width:203.952960px;}
._32{width:204.960480px;}
._21{width:847.596000px;}
._22{width:2441.376000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs7{font-size:38.880000px;}
.fs1{font-size:41.532000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.600000px;}
.ydd{bottom:3.780000px;}
.ydb{bottom:4.860000px;}
.ya9{bottom:5.400000px;}
.ya5{bottom:10.620000px;}
.yd0{bottom:15.510000px;}
.ya7{bottom:20.160000px;}
.yd3{bottom:25.050000px;}
.ya3{bottom:29.520000px;}
.ybd{bottom:29.745000px;}
.ya6{bottom:39.060000px;}
.ycf{bottom:46.470000px;}
.ya4{bottom:48.600000px;}
.ybe{bottom:48.645000px;}
.ycc{bottom:50.070000px;}
.yd2{bottom:56.010000px;}
.y12{bottom:57.420000px;}
.yd7{bottom:57.600000px;}
.yce{bottom:65.730000px;}
.yd1{bottom:75.090000px;}
.y11{bottom:77.040000px;}
.ycd{bottom:84.630000px;}
.y121{bottom:100.260000px;}
.y189{bottom:103.860000px;}
.y190{bottom:105.840000px;}
.y3c{bottom:108.000000px;}
.y4{bottom:108.578077px;}
.y125{bottom:112.860000px;}
.ye8{bottom:115.380000px;}
.y8a{bottom:118.260000px;}
.y57{bottom:120.060000px;}
.y3{bottom:121.036638px;}
.yd6{bottom:122.760000px;}
.y10f{bottom:123.300000px;}
.y13e{bottom:123.660000px;}
.y3b{bottom:127.080000px;}
.ybb{bottom:133.020000px;}
.y2{bottom:133.495200px;}
.ya1{bottom:137.340000px;}
.y120{bottom:138.240000px;}
.y1cd{bottom:141.480000px;}
.ydc{bottom:141.840000px;}
.y72{bottom:142.380000px;}
.y5{bottom:146.054700px;}
.y3a{bottom:146.160000px;}
.y18f{bottom:146.340000px;}
.y124{bottom:150.840000px;}
.yfb{bottom:153.000000px;}
.ye7{bottom:153.360000px;}
.y89{bottom:156.240000px;}
.y56{bottom:157.860000px;}
.y10e{bottom:161.280000px;}
.y13d{bottom:161.460000px;}
.yda{bottom:164.340000px;}
.y1e8{bottom:169.200000px;}
.y1cc{bottom:169.920000px;}
.y103{bottom:171.180000px;}
.y11f{bottom:176.220000px;}
.y39{bottom:176.940000px;}
.yba{bottom:179.460000px;}
.y188{bottom:179.820000px;}
.y71{bottom:180.360000px;}
.yd9{bottom:185.760000px;}
.y18e{bottom:186.840000px;}
.y123{bottom:188.640000px;}
.ye6{bottom:191.340000px;}
.y95{bottom:192.420000px;}
.ya0{bottom:193.320000px;}
.y55{bottom:195.840000px;}
.y1cb{bottom:198.360000px;}
.y10d{bottom:199.260000px;}
.y13c{bottom:199.440000px;}
.y1e7{bottom:201.780000px;}
.y88{bottom:206.280000px;}
.y38{bottom:207.900000px;}
.yd8{bottom:208.260000px;}
.y102{bottom:209.160000px;}
.y126{bottom:210.420000px;}
.y11e{bottom:214.200000px;}
.y187{bottom:217.800000px;}
.y70{bottom:218.160000px;}
.y1ca{bottom:226.800000px;}
.y37{bottom:226.980000px;}
.y18d{bottom:227.340000px;}
.y137{bottom:227.880000px;}
.yfa{bottom:229.320000px;}
.y1e6{bottom:230.220000px;}
.y94{bottom:230.400000px;}
.yd4{bottom:230.760000px;}
.y181{bottom:232.380000px;}
.y54{bottom:233.820000px;}
.y157{bottom:234.000000px;}
.y13b{bottom:237.420000px;}
.y122{bottom:238.680000px;}
.y10c{bottom:239.760000px;}
.ye5{bottom:241.200000px;}
.y87{bottom:244.080000px;}
.y101{bottom:247.140000px;}
.y9f{bottom:249.300000px;}
.ycb{bottom:250.380000px;}
.y11d{bottom:252.000000px;}
.y1c9{bottom:255.270000px;}
.y186{bottom:255.810000px;}
.y1a1{bottom:255.990000px;}
.y6f{bottom:256.170000px;}
.y36{bottom:257.790000px;}
.y1e5{bottom:258.690000px;}
.y136{bottom:265.890000px;}
.y18c{bottom:267.690000px;}
.y10b{bottom:268.230000px;}
.y93{bottom:268.410000px;}
.y180{bottom:270.390000px;}
.y53{bottom:271.830000px;}
.y13a{bottom:275.430000px;}
.y14a{bottom:277.770000px;}
.ye4{bottom:279.210000px;}
.y164{bottom:279.390000px;}
.yf8{bottom:279.570000px;}
.yf9{bottom:281.550000px;}
.y86{bottom:282.090000px;}
.y1c8{bottom:283.710000px;}
.y156{bottom:283.890000px;}
.y100{bottom:285.150000px;}
.y1e4{bottom:287.130000px;}
.y35{bottom:288.750000px;}
.yf6{bottom:290.370000px;}
.y8{bottom:291.234300px;}
.y185{bottom:293.610000px;}
.y6e{bottom:294.150000px;}
.y11c{bottom:302.070000px;}
.yf7{bottom:303.150000px;}
.y135{bottom:303.690000px;}
.y10a{bottom:303.870000px;}
.y9e{bottom:305.130000px;}
.y7{bottom:305.634300px;}
.y92{bottom:306.210000px;}
.y1a0{bottom:306.930000px;}
.y18b{bottom:308.190000px;}
.y17f{bottom:308.370000px;}
.y52{bottom:309.810000px;}
.y1c7{bottom:312.330000px;}
.y139{bottom:313.410000px;}
.y1e3{bottom:315.570000px;}
.y149{bottom:315.750000px;}
.ye3{bottom:317.190000px;}
.y34{bottom:319.710000px;}
.y6{bottom:320.034300px;}
.y85{bottom:320.070000px;}
.yff{bottom:323.130000px;}
.y184{bottom:331.590000px;}
.y155{bottom:333.930000px;}
.y18a{bottom:336.630000px;}
.y33{bottom:338.970000px;}
.y11b{bottom:340.050000px;}
.y1c6{bottom:340.770000px;}
.y134{bottom:341.670000px;}
.y9d{bottom:343.110000px;}
.y6d{bottom:344.010000px;}
.y91{bottom:344.190000px;}
.y19f{bottom:344.910000px;}
.y17e{bottom:346.350000px;}
.y51{bottom:347.610000px;}
.yf5{bottom:351.210000px;}
.y167{bottom:352.650000px;}
.y148{bottom:353.730000px;}
.ye2{bottom:355.170000px;}
.y32{bottom:357.870000px;}
.y84{bottom:358.050000px;}
.yfe{bottom:362.910000px;}
.y1c5{bottom:369.210000px;}
.y138{bottom:369.570000px;}
.y1e2{bottom:372.630000px;}
.y31{bottom:376.950000px;}
.y11a{bottom:377.850000px;}
.y130{bottom:378.930000px;}
.y133{bottom:379.650000px;}
.y9c{bottom:381.090000px;}
.y6c{bottom:381.990000px;}
.y90{bottom:382.170000px;}
.y19e{bottom:382.890000px;}
.y154{bottom:383.790000px;}
.y17d{bottom:384.150000px;}
.yfd{bottom:384.690000px;}
.y50{bottom:385.590000px;}
.yf4{bottom:389.190000px;}
.y147{bottom:391.710000px;}
.ye1{bottom:393.150000px;}
.y30{bottom:395.850000px;}
.y83{bottom:396.030000px;}
.y145{bottom:397.650000px;}
.y1e1{bottom:401.070000px;}
.y166{bottom:402.510000px;}
.y183{bottom:410.070000px;}
.y1b3{bottom:410.610000px;}
.y2f{bottom:414.750000px;}
.y119{bottom:415.830000px;}
.y12f{bottom:416.910000px;}
.y9b{bottom:419.070000px;}
.y6b{bottom:419.970000px;}
.y8f{bottom:420.150000px;}
.y19d{bottom:420.870000px;}
.y17c{bottom:422.130000px;}
.y4f{bottom:423.570000px;}
.y1c4{bottom:426.090000px;}
.yf3{bottom:427.170000px;}
.y1e0{bottom:429.510000px;}
.y132{bottom:429.690000px;}
.ye0{bottom:430.950000px;}
.y163{bottom:431.130000px;}
.yfc{bottom:432.210000px;}
.y2e{bottom:433.830000px;}
.y82{bottom:434.010000px;}
.yca{bottom:435.450000px;}
.y144{bottom:435.630000px;}
.y171{bottom:437.610000px;}
.y182{bottom:438.510000px;}
.y165{bottom:440.490000px;}
.y146{bottom:441.570000px;}
.y2d{bottom:452.730000px;}
.y118{bottom:453.810000px;}
.y1c3{bottom:454.530000px;}
.y12e{bottom:454.710000px;}
.y9a{bottom:457.050000px;}
.y6a{bottom:457.950000px;}
.y8e{bottom:458.130000px;}
.y19c{bottom:458.850000px;}
.y1b2{bottom:460.650000px;}
.y4e{bottom:461.550000px;}
.y17b{bottom:462.630000px;}
.yf2{bottom:465.150000px;}
.y162{bottom:469.110000px;}
.y2c{bottom:471.810000px;}
.yc9{bottom:473.430000px;}
.y143{bottom:473.610000px;}
.yb9{bottom:475.050000px;}
.y131{bottom:476.130000px;}
.ydf{bottom:481.035000px;}
.y1c2{bottom:483.015000px;}
.y153{bottom:483.735000px;}
.y1df{bottom:486.435000px;}
.y170{bottom:487.515000px;}
.y2b{bottom:490.755000px;}
.y17a{bottom:491.115000px;}
.y117{bottom:491.835000px;}
.y12d{bottom:492.735000px;}
.y69{bottom:495.975000px;}
.y8d{bottom:496.155000px;}
.y4d{bottom:499.575000px;}
.y99{bottom:503.535000px;}
.y161{bottom:506.955000px;}
.y2a{bottom:509.655000px;}
.y19b{bottom:509.835000px;}
.y1b1{bottom:510.555000px;}
.yc8{bottom:511.455000px;}
.yb8{bottom:513.075000px;}
.y1de{bottom:514.875000px;}
.yde{bottom:516.495000px;}
.yf1{bottom:521.355000px;}
.y81{bottom:521.895000px;}
.y16f{bottom:525.495000px;}
.y29{bottom:528.735000px;}
.y12c{bottom:530.715000px;}
.y98{bottom:531.975000px;}
.y116{bottom:532.335000px;}
.y152{bottom:533.775000px;}
.y68{bottom:533.955000px;}
.y4c{bottom:537.555000px;}
.y1c1{bottom:539.895000px;}
.y1dd{bottom:543.315000px;}
.y160{bottom:544.935000px;}
.y28{bottom:547.635000px;}
.y19a{bottom:547.815000px;}
.y1b0{bottom:548.535000px;}
.yc7{bottom:549.435000px;}
.yb7{bottom:551.055000px;}
.y80{bottom:559.875000px;}
.y97{bottom:560.415000px;}
.y115{bottom:560.775000px;}
.y16e{bottom:563.475000px;}
.y27{bottom:566.715000px;}
.y1c0{bottom:568.515000px;}
.y12b{bottom:568.695000px;}
.yf0{bottom:569.595000px;}
.y67{bottom:571.755000px;}
.y179{bottom:573.915000px;}
.y4b{bottom:575.355000px;}
.y15f{bottom:582.915000px;}
.y26{bottom:585.615000px;}
.y199{bottom:585.795000px;}
.y8c{bottom:586.155000px;}
.yc6{bottom:587.235000px;}
.y142{bottom:587.415000px;}
.yb6{bottom:589.035000px;}
.y96{bottom:589.575000px;}
.y1bf{bottom:596.955000px;}
.y7f{bottom:597.675000px;}
.y114{bottom:598.215000px;}
.y1af{bottom:598.575000px;}
.y1dc{bottom:600.195000px;}
.y16d{bottom:601.275000px;}
.y25{bottom:604.515000px;}
.y12a{bottom:606.675000px;}
.y151{bottom:609.555000px;}
.y66{bottom:609.735000px;}
.y178{bottom:611.895000px;}
.y15e{bottom:620.895000px;}
.y24{bottom:623.595000px;}
.yef{bottom:623.775000px;}
.yc5{bottom:625.215000px;}
.y4a{bottom:625.395000px;}
.yb5{bottom:626.835000px;}
.y1db{bottom:628.815000px;}
.y8b{bottom:631.515000px;}
.y7e{bottom:635.655000px;}
.y16c{bottom:639.255000px;}
.y129{bottom:646.995000px;}
.y150{bottom:647.535000px;}
.y65{bottom:647.715000px;}
.y1ae{bottom:648.435000px;}
.y177{bottom:649.875000px;}
.y1be{bottom:653.835000px;}
.y1da{bottom:657.255000px;}
.y15d{bottom:658.875000px;}
.yee{bottom:661.575000px;}
.y109{bottom:662.295000px;}
.yc4{bottom:663.195000px;}
.y49{bottom:663.375000px;}
.yb4{bottom:664.815000px;}
.y23{bottom:667.515000px;}
.y7d{bottom:673.635000px;}
.y198{bottom:674.895000px;}
.y128{bottom:675.615000px;}
.y16b{bottom:677.235000px;}
.y1bd{bottom:682.275000px;}
.y14f{bottom:685.515000px;}
.y64{bottom:685.695000px;}
.y1ad{bottom:686.415000px;}
.y176{bottom:687.675000px;}
.y15c{bottom:696.675000px;}
.yed{bottom:699.555000px;}
.y108{bottom:700.275000px;}
.y48{bottom:701.175000px;}
.yb3{bottom:702.795000px;}
.y1bc{bottom:710.745000px;}
.y127{bottom:711.105000px;}
.y7c{bottom:711.645000px;}
.y197{bottom:712.905000px;}
.y1d9{bottom:714.165000px;}
.y22{bottom:716.145000px;}
.y14e{bottom:723.525000px;}
.y63{bottom:723.705000px;}
.y175{bottom:725.685000px;}
.y16a{bottom:727.305000px;}
.y15b{bottom:734.685000px;}
.y21{bottom:736.125000px;}
.y1ac{bottom:736.485000px;}
.yec{bottom:737.565000px;}
.y107{bottom:738.285000px;}
.y47{bottom:739.185000px;}
.yb2{bottom:740.805000px;}
.y1d8{bottom:742.605000px;}
.y7b{bottom:749.625000px;}
.y196{bottom:750.885000px;}
.y20{bottom:755.925000px;}
.y62{bottom:761.505000px;}
.y14d{bottom:764.025000px;}
.y169{bottom:765.105000px;}
.y174{bottom:766.185000px;}
.y1{bottom:767.491050px;}
.y1bb{bottom:767.625000px;}
.y1d7{bottom:771.045000px;}
.yc3{bottom:773.385000px;}
.y1ab{bottom:774.285000px;}
.y15a{bottom:775.185000px;}
.yeb{bottom:775.545000px;}
.y1f{bottom:775.725000px;}
.y106{bottom:776.265000px;}
.y46{bottom:777.165000px;}
.yb1{bottom:778.785000px;}
.y141{bottom:779.685000px;}
.yf{bottom:784.040550px;}
.y7a{bottom:787.605000px;}
.y14c{bottom:792.465000px;}
.y173{bottom:794.625000px;}
.yc2{bottom:795.885000px;}
.y1ba{bottom:796.065000px;}
.y61{bottom:799.485000px;}
.y195{bottom:802.005000px;}
.y1e{bottom:802.365000px;}
.y168{bottom:803.085000px;}
.y159{bottom:803.625000px;}
.y140{bottom:808.125000px;}
.yea{bottom:813.525000px;}
.y45{bottom:815.145000px;}
.yb0{bottom:816.765000px;}
.yc1{bottom:818.385000px;}
.y1aa{bottom:824.325000px;}
.y1b9{bottom:824.685000px;}
.y79{bottom:825.405000px;}
.y105{bottom:826.125000px;}
.y1d6{bottom:827.925000px;}
.y14b{bottom:828.105000px;}
.y172{bottom:830.265000px;}
.y1d{bottom:835.845000px;}
.y60{bottom:837.465000px;}
.y158{bottom:839.265000px;}
.y194{bottom:839.805000px;}
.ye{bottom:840.791850px;}
.yc0{bottom:840.885000px;}
.y13f{bottom:843.765000px;}
.ye9{bottom:851.505000px;}
.y44{bottom:853.125000px;}
.y1d5{bottom:856.365000px;}
.y104{bottom:861.765000px;}
.y1a9{bottom:862.305000px;}
.y78{bottom:863.385000px;}
.y1c{bottom:865.545000px;}
.yaf{bottom:872.925000px;}
.y5f{bottom:875.445000px;}
.y193{bottom:877.785000px;}
.y1b8{bottom:881.565000px;}
.yd{bottom:883.991850px;}
.y1d4{bottom:884.985000px;}
.ybf{bottom:885.885000px;}
.y43{bottom:891.105000px;}
.y1b{bottom:895.425000px;}
.y1a8{bottom:900.105000px;}
.y77{bottom:901.365000px;}
.ybc{bottom:909.105000px;}
.y1b7{bottom:910.005000px;}
.yae{bottom:911.265000px;}
.y5e{bottom:913.425000px;}
.y192{bottom:915.765000px;}
.yc{bottom:927.191850px;}
.y42{bottom:928.905000px;}
.yad{bottom:933.810000px;}
.y1a{bottom:937.230000px;}
.y1a7{bottom:938.130000px;}
.y1b6{bottom:938.490000px;}
.y76{bottom:939.390000px;}
.y113{bottom:941.010000px;}
.y1d3{bottom:941.910000px;}
.y5d{bottom:951.450000px;}
.y191{bottom:953.790000px;}
.yac{bottom:956.310000px;}
.y41{bottom:966.930000px;}
.y1d2{bottom:970.350000px;}
.yb{bottom:970.391850px;}
.y1a6{bottom:976.110000px;}
.y75{bottom:977.370000px;}
.yab{bottom:978.810000px;}
.y19{bottom:978.990000px;}
.y5c{bottom:989.250000px;}
.y1b5{bottom:995.370000px;}
.y1d1{bottom:998.790000px;}
.yaa{bottom:1001.310000px;}
.y40{bottom:1004.910000px;}
.y18{bottom:1013.190000px;}
.y1a5{bottom:1014.090000px;}
.y74{bottom:1015.170000px;}
.ya{bottom:1015.431000px;}
.y112{bottom:1016.970000px;}
.ya8{bottom:1023.810000px;}
.y5b{bottom:1027.230000px;}
.y9{bottom:1037.031000px;}
.y17{bottom:1039.110000px;}
.y3f{bottom:1042.890000px;}
.ya2{bottom:1047.030000px;}
.y1b4{bottom:1052.250000px;}
.y73{bottom:1053.150000px;}
.y111{bottom:1054.950000px;}
.y1d0{bottom:1055.670000px;}
.y1a4{bottom:1063.950000px;}
.y16{bottom:1064.850000px;}
.y5a{bottom:1065.210000px;}
.y3e{bottom:1080.870000px;}
.y1cf{bottom:1084.110000px;}
.y15{bottom:1090.770000px;}
.y110{bottom:1092.930000px;}
.y1a3{bottom:1101.930000px;}
.y59{bottom:1103.190000px;}
.y1ce{bottom:1112.550000px;}
.y14{bottom:1116.690000px;}
.y3d{bottom:1137.030000px;}
.y1a2{bottom:1140.090000px;}
.y58{bottom:1141.170000px;}
.y13{bottom:1142.610000px;}
.y10{bottom:1194.120000px;}
.h18{height:18.900000px;}
.h1b{height:19.080000px;}
.h1a{height:21.420000px;}
.h14{height:22.500000px;}
.h15{height:22.536000px;}
.h2{height:31.757379px;}
.h1{height:36.703125px;}
.hc{height:38.158594px;}
.hf{height:47.901094px;}
.h3{height:55.054688px;}
.h8{height:58.651172px;}
.hb{height:59.038594px;}
.h9{height:60.226875px;}
.he{height:65.010937px;}
.h6{height:65.884219px;}
.h10{height:66.757500px;}
.h22{height:68.084282px;}
.h21{height:68.324766px;}
.h7{height:70.664062px;}
.h13{height:70.920000px;}
.h16{height:70.956000px;}
.h12{height:74.953125px;}
.h1d{height:84.805312px;}
.hd{height:84.898125px;}
.h11{height:87.695156px;}
.ha{height:96.508125px;}
.h17{height:99.936000px;}
.h4{height:110.109375px;}
.h1c{height:122.965312px;}
.h19{height:126.900000px;}
.h20{height:128.005312px;}
.h1f{height:158.245313px;}
.h1e{height:171.925312px;}
.h5{height:1262.880000px;}
.h0{height:1263.000000px;}
.w6{width:66.960000px;}
.wb{width:72.000000px;}
.wd{width:81.180000px;}
.w13{width:92.160000px;}
.wa{width:95.796000px;}
.w11{width:97.920000px;}
.w5{width:97.956000px;}
.we{width:102.096000px;}
.w12{width:104.256000px;}
.w8{width:104.760000px;}
.w9{width:104.796000px;}
.w7{width:106.056000px;}
.wf{width:106.596000px;}
.w14{width:109.476000px;}
.w15{width:114.336000px;}
.wc{width:229.575000px;}
.w10{width:289.875000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x12{left:9.540000px;}
.x16{left:11.700000px;}
.x13{left:14.040000px;}
.x34{left:15.480000px;}
.x19{left:16.920000px;}
.x1d{left:19.800000px;}
.x10{left:20.880000px;}
.x20{left:22.320000px;}
.x15{left:25.020000px;}
.x1e{left:26.280000px;}
.x1b{left:28.485000px;}
.x17{left:30.420000px;}
.x2c{left:31.860000px;}
.x29{left:33.120000px;}
.x27{left:34.200000px;}
.x1f{left:38.520000px;}
.x36{left:42.885000px;}
.x32{left:45.720000px;}
.x2b{left:48.285000px;}
.x2e{left:62.685000px;}
.x1{left:64.701150px;}
.x2f{left:76.005000px;}
.x2a{left:78.345000px;}
.x25{left:95.445000px;}
.x3{left:106.235987px;}
.x6{left:108.215987px;}
.x3d{left:109.835987px;}
.x2d{left:119.925000px;}
.x47{left:127.475987px;}
.x39{left:139.715987px;}
.x7{left:144.755987px;}
.x3a{left:146.915987px;}
.x48{left:148.715987px;}
.x23{left:150.870000px;}
.xf{left:158.430000px;}
.xa{left:173.189987px;}
.x9{left:178.049987px;}
.xb{left:185.069987px;}
.x3b{left:198.209987px;}
.x2{left:205.824450px;}
.xc{left:214.049987px;}
.x24{left:222.870000px;}
.x30{left:242.175000px;}
.x11{left:256.395000px;}
.x3c{left:287.354987px;}
.x14{left:323.355000px;}
.x31{left:340.095000px;}
.x8{left:362.054987px;}
.xd{left:407.444987px;}
.x18{left:429.405000px;}
.x38{left:437.504987px;}
.x4{left:442.004987px;}
.x33{left:444.345000px;}
.x5{left:446.504987px;}
.x26{left:452.445000px;}
.x1a{left:534.165000px;}
.x35{left:536.505000px;}
.x28{left:635.730000px;}
.x1c{left:638.970000px;}
.xe{left:707.909987px;}
.x22{left:730.079987px;}
.x46{left:734.039987px;}
.x3e{left:755.819987px;}
.x40{left:757.259987px;}
.x41{left:760.859987px;}
.x45{left:768.239987px;}
.x3f{left:769.319987px;}
.x37{left:770.579987px;}
.x43{left:776.879987px;}
.x42{left:786.779987px;}
.x44{left:788.039987px;}
@media print{
.v6{vertical-align:-23.680000pt;}
.v2{vertical-align:-18.560000pt;}
.v7{vertical-align:-12.160000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.120000pt;}
.va{vertical-align:12.160000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.vd{vertical-align:24.320000pt;}
.v5{vertical-align:33.920000pt;}
.v8{vertical-align:38.400000pt;}
.vb{vertical-align:43.520000pt;}
.v9{vertical-align:77.440000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls2a{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls17{letter-spacing:0.009387pt;}
.ls2{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.062720pt;}
.ls18{letter-spacing:0.071467pt;}
.ls1a{letter-spacing:0.084480pt;}
.lse{letter-spacing:0.097067pt;}
.ls26{letter-spacing:0.132267pt;}
.ls4{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.233067pt;}
.ls27{letter-spacing:0.271360pt;}
.lsf{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.724480pt;}
.ls5{letter-spacing:0.871040pt;}
.ls6{letter-spacing:1.280000pt;}
.ls25{letter-spacing:2.250880pt;}
.ls1b{letter-spacing:2.500267pt;}
.ls22{letter-spacing:2.521600pt;}
.ls29{letter-spacing:3.200000pt;}
.ls24{letter-spacing:3.530880pt;}
.ls23{letter-spacing:5.429120pt;}
.ls28{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.199040pt;}
.ls11{letter-spacing:7.680000pt;}
.ls20{letter-spacing:12.244480pt;}
.ls21{letter-spacing:12.976640pt;}
.ls2c{letter-spacing:14.720000pt;}
.ls1d{letter-spacing:16.084480pt;}
.ls1e{letter-spacing:16.176640pt;}
.ls14{letter-spacing:59.162027pt;}
.ls2b{letter-spacing:70.031360pt;}
.ls12{letter-spacing:78.186667pt;}
.lsc{letter-spacing:114.842027pt;}
.ws18{word-spacing:-58.880000pt;}
.ws1{word-spacing:-22.528000pt;}
.ws8{word-spacing:-21.600000pt;}
.wsd{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.018667pt;}
.ws10{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws19{word-spacing:-14.486933pt;}
.ws12{word-spacing:-14.448533pt;}
.ws11{word-spacing:-14.313067pt;}
.wsb{word-spacing:-14.176000pt;}
.ws17{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.953600pt;}
.ws16{word-spacing:-9.565867pt;}
.wsf{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:52.034560pt;}
.ws14{word-spacing:52.674560pt;}
._0{margin-left:-1287.010133pt;}
._1a{margin-left:-27.727360pt;}
._1d{margin-left:-25.060693pt;}
._16{margin-left:-4.389333pt;}
._c{margin-left:-3.265067pt;}
._b{margin-left:-2.296320pt;}
._6{margin-left:-1.009280pt;}
._1{width:0.956160pt;}
._9{width:1.966293pt;}
._a{width:2.955520pt;}
._e{width:4.180480pt;}
._10{width:5.210240pt;}
._4{width:6.161920pt;}
._5{width:7.171200pt;}
._14{width:8.223573pt;}
._f{width:9.143893pt;}
._d{width:10.480640pt;}
._12{width:11.548800pt;}
._11{width:12.776960pt;}
._17{width:13.723307pt;}
._2{width:16.095360pt;}
._18{width:17.017813pt;}
._3{width:17.965440pt;}
._13{width:19.136000pt;}
._34{width:20.257280pt;}
._15{width:25.082880pt;}
._19{width:27.210880pt;}
._1f{width:29.498880pt;}
._1e{width:30.617600pt;}
._20{width:31.517440pt;}
._35{width:32.748373pt;}
._2c{width:38.225920pt;}
._25{width:39.536427pt;}
._24{width:40.450560pt;}
._2e{width:48.281600pt;}
._2d{width:49.232000pt;}
._33{width:50.149120pt;}
._2b{width:59.115520pt;}
._2f{width:65.188480pt;}
._30{width:66.164480pt;}
._23{width:67.665920pt;}
._8{width:69.746560pt;}
._7{width:70.649600pt;}
._2a{width:110.458880pt;}
._29{width:111.880320pt;}
._26{width:118.289920pt;}
._27{width:132.833280pt;}
._28{width:133.842560pt;}
._1b{width:152.644480pt;}
._1c{width:177.386667pt;}
._31{width:181.291520pt;}
._32{width:182.187093pt;}
._21{width:753.418667pt;}
._22{width:2170.112000pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:36.917333pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:3.200000pt;}
.ydd{bottom:3.360000pt;}
.ydb{bottom:4.320000pt;}
.ya9{bottom:4.800000pt;}
.ya5{bottom:9.440000pt;}
.yd0{bottom:13.786667pt;}
.ya7{bottom:17.920000pt;}
.yd3{bottom:22.266667pt;}
.ya3{bottom:26.240000pt;}
.ybd{bottom:26.440000pt;}
.ya6{bottom:34.720000pt;}
.ycf{bottom:41.306667pt;}
.ya4{bottom:43.200000pt;}
.ybe{bottom:43.240000pt;}
.ycc{bottom:44.506667pt;}
.yd2{bottom:49.786667pt;}
.y12{bottom:51.040000pt;}
.yd7{bottom:51.200000pt;}
.yce{bottom:58.426667pt;}
.yd1{bottom:66.746667pt;}
.y11{bottom:68.480000pt;}
.ycd{bottom:75.226667pt;}
.y121{bottom:89.120000pt;}
.y189{bottom:92.320000pt;}
.y190{bottom:94.080000pt;}
.y3c{bottom:96.000000pt;}
.y4{bottom:96.513846pt;}
.y125{bottom:100.320000pt;}
.ye8{bottom:102.560000pt;}
.y8a{bottom:105.120000pt;}
.y57{bottom:106.720000pt;}
.y3{bottom:107.588123pt;}
.yd6{bottom:109.120000pt;}
.y10f{bottom:109.600000pt;}
.y13e{bottom:109.920000pt;}
.y3b{bottom:112.960000pt;}
.ybb{bottom:118.240000pt;}
.y2{bottom:118.662400pt;}
.ya1{bottom:122.080000pt;}
.y120{bottom:122.880000pt;}
.y1cd{bottom:125.760000pt;}
.ydc{bottom:126.080000pt;}
.y72{bottom:126.560000pt;}
.y5{bottom:129.826400pt;}
.y3a{bottom:129.920000pt;}
.y18f{bottom:130.080000pt;}
.y124{bottom:134.080000pt;}
.yfb{bottom:136.000000pt;}
.ye7{bottom:136.320000pt;}
.y89{bottom:138.880000pt;}
.y56{bottom:140.320000pt;}
.y10e{bottom:143.360000pt;}
.y13d{bottom:143.520000pt;}
.yda{bottom:146.080000pt;}
.y1e8{bottom:150.400000pt;}
.y1cc{bottom:151.040000pt;}
.y103{bottom:152.160000pt;}
.y11f{bottom:156.640000pt;}
.y39{bottom:157.280000pt;}
.yba{bottom:159.520000pt;}
.y188{bottom:159.840000pt;}
.y71{bottom:160.320000pt;}
.yd9{bottom:165.120000pt;}
.y18e{bottom:166.080000pt;}
.y123{bottom:167.680000pt;}
.ye6{bottom:170.080000pt;}
.y95{bottom:171.040000pt;}
.ya0{bottom:171.840000pt;}
.y55{bottom:174.080000pt;}
.y1cb{bottom:176.320000pt;}
.y10d{bottom:177.120000pt;}
.y13c{bottom:177.280000pt;}
.y1e7{bottom:179.360000pt;}
.y88{bottom:183.360000pt;}
.y38{bottom:184.800000pt;}
.yd8{bottom:185.120000pt;}
.y102{bottom:185.920000pt;}
.y126{bottom:187.040000pt;}
.y11e{bottom:190.400000pt;}
.y187{bottom:193.600000pt;}
.y70{bottom:193.920000pt;}
.y1ca{bottom:201.600000pt;}
.y37{bottom:201.760000pt;}
.y18d{bottom:202.080000pt;}
.y137{bottom:202.560000pt;}
.yfa{bottom:203.840000pt;}
.y1e6{bottom:204.640000pt;}
.y94{bottom:204.800000pt;}
.yd4{bottom:205.120000pt;}
.y181{bottom:206.560000pt;}
.y54{bottom:207.840000pt;}
.y157{bottom:208.000000pt;}
.y13b{bottom:211.040000pt;}
.y122{bottom:212.160000pt;}
.y10c{bottom:213.120000pt;}
.ye5{bottom:214.400000pt;}
.y87{bottom:216.960000pt;}
.y101{bottom:219.680000pt;}
.y9f{bottom:221.600000pt;}
.ycb{bottom:222.560000pt;}
.y11d{bottom:224.000000pt;}
.y1c9{bottom:226.906667pt;}
.y186{bottom:227.386667pt;}
.y1a1{bottom:227.546667pt;}
.y6f{bottom:227.706667pt;}
.y36{bottom:229.146667pt;}
.y1e5{bottom:229.946667pt;}
.y136{bottom:236.346667pt;}
.y18c{bottom:237.946667pt;}
.y10b{bottom:238.426667pt;}
.y93{bottom:238.586667pt;}
.y180{bottom:240.346667pt;}
.y53{bottom:241.626667pt;}
.y13a{bottom:244.826667pt;}
.y14a{bottom:246.906667pt;}
.ye4{bottom:248.186667pt;}
.y164{bottom:248.346667pt;}
.yf8{bottom:248.506667pt;}
.yf9{bottom:250.266667pt;}
.y86{bottom:250.746667pt;}
.y1c8{bottom:252.186667pt;}
.y156{bottom:252.346667pt;}
.y100{bottom:253.466667pt;}
.y1e4{bottom:255.226667pt;}
.y35{bottom:256.666667pt;}
.yf6{bottom:258.106667pt;}
.y8{bottom:258.874933pt;}
.y185{bottom:260.986667pt;}
.y6e{bottom:261.466667pt;}
.y11c{bottom:268.506667pt;}
.yf7{bottom:269.466667pt;}
.y135{bottom:269.946667pt;}
.y10a{bottom:270.106667pt;}
.y9e{bottom:271.226667pt;}
.y7{bottom:271.674933pt;}
.y92{bottom:272.186667pt;}
.y1a0{bottom:272.826667pt;}
.y18b{bottom:273.946667pt;}
.y17f{bottom:274.106667pt;}
.y52{bottom:275.386667pt;}
.y1c7{bottom:277.626667pt;}
.y139{bottom:278.586667pt;}
.y1e3{bottom:280.506667pt;}
.y149{bottom:280.666667pt;}
.ye3{bottom:281.946667pt;}
.y34{bottom:284.186667pt;}
.y6{bottom:284.474933pt;}
.y85{bottom:284.506667pt;}
.yff{bottom:287.226667pt;}
.y184{bottom:294.746667pt;}
.y155{bottom:296.826667pt;}
.y18a{bottom:299.226667pt;}
.y33{bottom:301.306667pt;}
.y11b{bottom:302.266667pt;}
.y1c6{bottom:302.906667pt;}
.y134{bottom:303.706667pt;}
.y9d{bottom:304.986667pt;}
.y6d{bottom:305.786667pt;}
.y91{bottom:305.946667pt;}
.y19f{bottom:306.586667pt;}
.y17e{bottom:307.866667pt;}
.y51{bottom:308.986667pt;}
.yf5{bottom:312.186667pt;}
.y167{bottom:313.466667pt;}
.y148{bottom:314.426667pt;}
.ye2{bottom:315.706667pt;}
.y32{bottom:318.106667pt;}
.y84{bottom:318.266667pt;}
.yfe{bottom:322.586667pt;}
.y1c5{bottom:328.186667pt;}
.y138{bottom:328.506667pt;}
.y1e2{bottom:331.226667pt;}
.y31{bottom:335.066667pt;}
.y11a{bottom:335.866667pt;}
.y130{bottom:336.826667pt;}
.y133{bottom:337.466667pt;}
.y9c{bottom:338.746667pt;}
.y6c{bottom:339.546667pt;}
.y90{bottom:339.706667pt;}
.y19e{bottom:340.346667pt;}
.y154{bottom:341.146667pt;}
.y17d{bottom:341.466667pt;}
.yfd{bottom:341.946667pt;}
.y50{bottom:342.746667pt;}
.yf4{bottom:345.946667pt;}
.y147{bottom:348.186667pt;}
.ye1{bottom:349.466667pt;}
.y30{bottom:351.866667pt;}
.y83{bottom:352.026667pt;}
.y145{bottom:353.466667pt;}
.y1e1{bottom:356.506667pt;}
.y166{bottom:357.786667pt;}
.y183{bottom:364.506667pt;}
.y1b3{bottom:364.986667pt;}
.y2f{bottom:368.666667pt;}
.y119{bottom:369.626667pt;}
.y12f{bottom:370.586667pt;}
.y9b{bottom:372.506667pt;}
.y6b{bottom:373.306667pt;}
.y8f{bottom:373.466667pt;}
.y19d{bottom:374.106667pt;}
.y17c{bottom:375.226667pt;}
.y4f{bottom:376.506667pt;}
.y1c4{bottom:378.746667pt;}
.yf3{bottom:379.706667pt;}
.y1e0{bottom:381.786667pt;}
.y132{bottom:381.946667pt;}
.ye0{bottom:383.066667pt;}
.y163{bottom:383.226667pt;}
.yfc{bottom:384.186667pt;}
.y2e{bottom:385.626667pt;}
.y82{bottom:385.786667pt;}
.yca{bottom:387.066667pt;}
.y144{bottom:387.226667pt;}
.y171{bottom:388.986667pt;}
.y182{bottom:389.786667pt;}
.y165{bottom:391.546667pt;}
.y146{bottom:392.506667pt;}
.y2d{bottom:402.426667pt;}
.y118{bottom:403.386667pt;}
.y1c3{bottom:404.026667pt;}
.y12e{bottom:404.186667pt;}
.y9a{bottom:406.266667pt;}
.y6a{bottom:407.066667pt;}
.y8e{bottom:407.226667pt;}
.y19c{bottom:407.866667pt;}
.y1b2{bottom:409.466667pt;}
.y4e{bottom:410.266667pt;}
.y17b{bottom:411.226667pt;}
.yf2{bottom:413.466667pt;}
.y162{bottom:416.986667pt;}
.y2c{bottom:419.386667pt;}
.yc9{bottom:420.826667pt;}
.y143{bottom:420.986667pt;}
.yb9{bottom:422.266667pt;}
.y131{bottom:423.226667pt;}
.ydf{bottom:427.586667pt;}
.y1c2{bottom:429.346667pt;}
.y153{bottom:429.986667pt;}
.y1df{bottom:432.386667pt;}
.y170{bottom:433.346667pt;}
.y2b{bottom:436.226667pt;}
.y17a{bottom:436.546667pt;}
.y117{bottom:437.186667pt;}
.y12d{bottom:437.986667pt;}
.y69{bottom:440.866667pt;}
.y8d{bottom:441.026667pt;}
.y4d{bottom:444.066667pt;}
.y99{bottom:447.586667pt;}
.y161{bottom:450.626667pt;}
.y2a{bottom:453.026667pt;}
.y19b{bottom:453.186667pt;}
.y1b1{bottom:453.826667pt;}
.yc8{bottom:454.626667pt;}
.yb8{bottom:456.066667pt;}
.y1de{bottom:457.666667pt;}
.yde{bottom:459.106667pt;}
.yf1{bottom:463.426667pt;}
.y81{bottom:463.906667pt;}
.y16f{bottom:467.106667pt;}
.y29{bottom:469.986667pt;}
.y12c{bottom:471.746667pt;}
.y98{bottom:472.866667pt;}
.y116{bottom:473.186667pt;}
.y152{bottom:474.466667pt;}
.y68{bottom:474.626667pt;}
.y4c{bottom:477.826667pt;}
.y1c1{bottom:479.906667pt;}
.y1dd{bottom:482.946667pt;}
.y160{bottom:484.386667pt;}
.y28{bottom:486.786667pt;}
.y19a{bottom:486.946667pt;}
.y1b0{bottom:487.586667pt;}
.yc7{bottom:488.386667pt;}
.yb7{bottom:489.826667pt;}
.y80{bottom:497.666667pt;}
.y97{bottom:498.146667pt;}
.y115{bottom:498.466667pt;}
.y16e{bottom:500.866667pt;}
.y27{bottom:503.746667pt;}
.y1c0{bottom:505.346667pt;}
.y12b{bottom:505.506667pt;}
.yf0{bottom:506.306667pt;}
.y67{bottom:508.226667pt;}
.y179{bottom:510.146667pt;}
.y4b{bottom:511.426667pt;}
.y15f{bottom:518.146667pt;}
.y26{bottom:520.546667pt;}
.y199{bottom:520.706667pt;}
.y8c{bottom:521.026667pt;}
.yc6{bottom:521.986667pt;}
.y142{bottom:522.146667pt;}
.yb6{bottom:523.586667pt;}
.y96{bottom:524.066667pt;}
.y1bf{bottom:530.626667pt;}
.y7f{bottom:531.266667pt;}
.y114{bottom:531.746667pt;}
.y1af{bottom:532.066667pt;}
.y1dc{bottom:533.506667pt;}
.y16d{bottom:534.466667pt;}
.y25{bottom:537.346667pt;}
.y12a{bottom:539.266667pt;}
.y151{bottom:541.826667pt;}
.y66{bottom:541.986667pt;}
.y178{bottom:543.906667pt;}
.y15e{bottom:551.906667pt;}
.y24{bottom:554.306667pt;}
.yef{bottom:554.466667pt;}
.yc5{bottom:555.746667pt;}
.y4a{bottom:555.906667pt;}
.yb5{bottom:557.186667pt;}
.y1db{bottom:558.946667pt;}
.y8b{bottom:561.346667pt;}
.y7e{bottom:565.026667pt;}
.y16c{bottom:568.226667pt;}
.y129{bottom:575.106667pt;}
.y150{bottom:575.586667pt;}
.y65{bottom:575.746667pt;}
.y1ae{bottom:576.386667pt;}
.y177{bottom:577.666667pt;}
.y1be{bottom:581.186667pt;}
.y1da{bottom:584.226667pt;}
.y15d{bottom:585.666667pt;}
.yee{bottom:588.066667pt;}
.y109{bottom:588.706667pt;}
.yc4{bottom:589.506667pt;}
.y49{bottom:589.666667pt;}
.yb4{bottom:590.946667pt;}
.y23{bottom:593.346667pt;}
.y7d{bottom:598.786667pt;}
.y198{bottom:599.906667pt;}
.y128{bottom:600.546667pt;}
.y16b{bottom:601.986667pt;}
.y1bd{bottom:606.466667pt;}
.y14f{bottom:609.346667pt;}
.y64{bottom:609.506667pt;}
.y1ad{bottom:610.146667pt;}
.y176{bottom:611.266667pt;}
.y15c{bottom:619.266667pt;}
.yed{bottom:621.826667pt;}
.y108{bottom:622.466667pt;}
.y48{bottom:623.266667pt;}
.yb3{bottom:624.706667pt;}
.y1bc{bottom:631.773333pt;}
.y127{bottom:632.093333pt;}
.y7c{bottom:632.573333pt;}
.y197{bottom:633.693333pt;}
.y1d9{bottom:634.813333pt;}
.y22{bottom:636.573333pt;}
.y14e{bottom:643.133333pt;}
.y63{bottom:643.293333pt;}
.y175{bottom:645.053333pt;}
.y16a{bottom:646.493333pt;}
.y15b{bottom:653.053333pt;}
.y21{bottom:654.333333pt;}
.y1ac{bottom:654.653333pt;}
.yec{bottom:655.613333pt;}
.y107{bottom:656.253333pt;}
.y47{bottom:657.053333pt;}
.yb2{bottom:658.493333pt;}
.y1d8{bottom:660.093333pt;}
.y7b{bottom:666.333333pt;}
.y196{bottom:667.453333pt;}
.y20{bottom:671.933333pt;}
.y62{bottom:676.893333pt;}
.y14d{bottom:679.133333pt;}
.y169{bottom:680.093333pt;}
.y174{bottom:681.053333pt;}
.y1{bottom:682.214267pt;}
.y1bb{bottom:682.333333pt;}
.y1d7{bottom:685.373333pt;}
.yc3{bottom:687.453333pt;}
.y1ab{bottom:688.253333pt;}
.y15a{bottom:689.053333pt;}
.yeb{bottom:689.373333pt;}
.y1f{bottom:689.533333pt;}
.y106{bottom:690.013333pt;}
.y46{bottom:690.813333pt;}
.yb1{bottom:692.253333pt;}
.y141{bottom:693.053333pt;}
.yf{bottom:696.924933pt;}
.y7a{bottom:700.093333pt;}
.y14c{bottom:704.413333pt;}
.y173{bottom:706.333333pt;}
.yc2{bottom:707.453333pt;}
.y1ba{bottom:707.613333pt;}
.y61{bottom:710.653333pt;}
.y195{bottom:712.893333pt;}
.y1e{bottom:713.213333pt;}
.y168{bottom:713.853333pt;}
.y159{bottom:714.333333pt;}
.y140{bottom:718.333333pt;}
.yea{bottom:723.133333pt;}
.y45{bottom:724.573333pt;}
.yb0{bottom:726.013333pt;}
.yc1{bottom:727.453333pt;}
.y1aa{bottom:732.733333pt;}
.y1b9{bottom:733.053333pt;}
.y79{bottom:733.693333pt;}
.y105{bottom:734.333333pt;}
.y1d6{bottom:735.933333pt;}
.y14b{bottom:736.093333pt;}
.y172{bottom:738.013333pt;}
.y1d{bottom:742.973333pt;}
.y60{bottom:744.413333pt;}
.y158{bottom:746.013333pt;}
.y194{bottom:746.493333pt;}
.ye{bottom:747.370533pt;}
.yc0{bottom:747.453333pt;}
.y13f{bottom:750.013333pt;}
.ye9{bottom:756.893333pt;}
.y44{bottom:758.333333pt;}
.y1d5{bottom:761.213333pt;}
.y104{bottom:766.013333pt;}
.y1a9{bottom:766.493333pt;}
.y78{bottom:767.453333pt;}
.y1c{bottom:769.373333pt;}
.yaf{bottom:775.933333pt;}
.y5f{bottom:778.173333pt;}
.y193{bottom:780.253333pt;}
.y1b8{bottom:783.613333pt;}
.yd{bottom:785.770533pt;}
.y1d4{bottom:786.653333pt;}
.ybf{bottom:787.453333pt;}
.y43{bottom:792.093333pt;}
.y1b{bottom:795.933333pt;}
.y1a8{bottom:800.093333pt;}
.y77{bottom:801.213333pt;}
.ybc{bottom:808.093333pt;}
.y1b7{bottom:808.893333pt;}
.yae{bottom:810.013333pt;}
.y5e{bottom:811.933333pt;}
.y192{bottom:814.013333pt;}
.yc{bottom:824.170533pt;}
.y42{bottom:825.693333pt;}
.yad{bottom:830.053333pt;}
.y1a{bottom:833.093333pt;}
.y1a7{bottom:833.893333pt;}
.y1b6{bottom:834.213333pt;}
.y76{bottom:835.013333pt;}
.y113{bottom:836.453333pt;}
.y1d3{bottom:837.253333pt;}
.y5d{bottom:845.733333pt;}
.y191{bottom:847.813333pt;}
.yac{bottom:850.053333pt;}
.y41{bottom:859.493333pt;}
.y1d2{bottom:862.533333pt;}
.yb{bottom:862.570533pt;}
.y1a6{bottom:867.653333pt;}
.y75{bottom:868.773333pt;}
.yab{bottom:870.053333pt;}
.y19{bottom:870.213333pt;}
.y5c{bottom:879.333333pt;}
.y1b5{bottom:884.773333pt;}
.y1d1{bottom:887.813333pt;}
.yaa{bottom:890.053333pt;}
.y40{bottom:893.253333pt;}
.y18{bottom:900.613333pt;}
.y1a5{bottom:901.413333pt;}
.y74{bottom:902.373333pt;}
.ya{bottom:902.605333pt;}
.y112{bottom:903.973333pt;}
.ya8{bottom:910.053333pt;}
.y5b{bottom:913.093333pt;}
.y9{bottom:921.805333pt;}
.y17{bottom:923.653333pt;}
.y3f{bottom:927.013333pt;}
.ya2{bottom:930.693333pt;}
.y1b4{bottom:935.333333pt;}
.y73{bottom:936.133333pt;}
.y111{bottom:937.733333pt;}
.y1d0{bottom:938.373333pt;}
.y1a4{bottom:945.733333pt;}
.y16{bottom:946.533333pt;}
.y5a{bottom:946.853333pt;}
.y3e{bottom:960.773333pt;}
.y1cf{bottom:963.653333pt;}
.y15{bottom:969.573333pt;}
.y110{bottom:971.493333pt;}
.y1a3{bottom:979.493333pt;}
.y59{bottom:980.613333pt;}
.y1ce{bottom:988.933333pt;}
.y14{bottom:992.613333pt;}
.y3d{bottom:1010.693333pt;}
.y1a2{bottom:1013.413333pt;}
.y58{bottom:1014.373333pt;}
.y13{bottom:1015.653333pt;}
.y10{bottom:1061.440000pt;}
.h18{height:16.800000pt;}
.h1b{height:16.960000pt;}
.h1a{height:19.040000pt;}
.h14{height:20.000000pt;}
.h15{height:20.032000pt;}
.h2{height:28.228781pt;}
.h1{height:32.625000pt;}
.hc{height:33.918750pt;}
.hf{height:42.578750pt;}
.h3{height:48.937500pt;}
.h8{height:52.134375pt;}
.hb{height:52.478750pt;}
.h9{height:53.535000pt;}
.he{height:57.787500pt;}
.h6{height:58.563750pt;}
.h10{height:59.340000pt;}
.h22{height:60.519362pt;}
.h21{height:60.733125pt;}
.h7{height:62.812500pt;}
.h13{height:63.040000pt;}
.h16{height:63.072000pt;}
.h12{height:66.625000pt;}
.h1d{height:75.382500pt;}
.hd{height:75.465000pt;}
.h11{height:77.951250pt;}
.ha{height:85.785000pt;}
.h17{height:88.832000pt;}
.h4{height:97.875000pt;}
.h1c{height:109.302500pt;}
.h19{height:112.800000pt;}
.h20{height:113.782500pt;}
.h1f{height:140.662500pt;}
.h1e{height:152.822500pt;}
.h5{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w6{width:59.520000pt;}
.wb{width:64.000000pt;}
.wd{width:72.160000pt;}
.w13{width:81.920000pt;}
.wa{width:85.152000pt;}
.w11{width:87.040000pt;}
.w5{width:87.072000pt;}
.we{width:90.752000pt;}
.w12{width:92.672000pt;}
.w8{width:93.120000pt;}
.w9{width:93.152000pt;}
.w7{width:94.272000pt;}
.wf{width:94.752000pt;}
.w14{width:97.312000pt;}
.w15{width:101.632000pt;}
.wc{width:204.066667pt;}
.w10{width:257.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x12{left:8.480000pt;}
.x16{left:10.400000pt;}
.x13{left:12.480000pt;}
.x34{left:13.760000pt;}
.x19{left:15.040000pt;}
.x1d{left:17.600000pt;}
.x10{left:18.560000pt;}
.x20{left:19.840000pt;}
.x15{left:22.240000pt;}
.x1e{left:23.360000pt;}
.x1b{left:25.320000pt;}
.x17{left:27.040000pt;}
.x2c{left:28.320000pt;}
.x29{left:29.440000pt;}
.x27{left:30.400000pt;}
.x1f{left:34.240000pt;}
.x36{left:38.120000pt;}
.x32{left:40.640000pt;}
.x2b{left:42.920000pt;}
.x2e{left:55.720000pt;}
.x1{left:57.512133pt;}
.x2f{left:67.560000pt;}
.x2a{left:69.640000pt;}
.x25{left:84.840000pt;}
.x3{left:94.431988pt;}
.x6{left:96.191988pt;}
.x3d{left:97.631988pt;}
.x2d{left:106.600000pt;}
.x47{left:113.311988pt;}
.x39{left:124.191988pt;}
.x7{left:128.671988pt;}
.x3a{left:130.591988pt;}
.x48{left:132.191988pt;}
.x23{left:134.106667pt;}
.xf{left:140.826667pt;}
.xa{left:153.946655pt;}
.x9{left:158.266655pt;}
.xb{left:164.506655pt;}
.x3b{left:176.186655pt;}
.x2{left:182.955067pt;}
.xc{left:190.266655pt;}
.x24{left:198.106667pt;}
.x30{left:215.266667pt;}
.x11{left:227.906667pt;}
.x3c{left:255.426655pt;}
.x14{left:287.426667pt;}
.x31{left:302.306667pt;}
.x8{left:321.826655pt;}
.xd{left:362.173322pt;}
.x18{left:381.693333pt;}
.x38{left:388.893322pt;}
.x4{left:392.893322pt;}
.x33{left:394.973333pt;}
.x5{left:396.893322pt;}
.x26{left:402.173333pt;}
.x1a{left:474.813333pt;}
.x35{left:476.893333pt;}
.x28{left:565.093333pt;}
.x1c{left:567.973333pt;}
.xe{left:629.253322pt;}
.x22{left:648.959988pt;}
.x46{left:652.479988pt;}
.x3e{left:671.839988pt;}
.x40{left:673.119988pt;}
.x41{left:676.319988pt;}
.x45{left:682.879988pt;}
.x3f{left:683.839988pt;}
.x37{left:684.959988pt;}
.x43{left:690.559988pt;}
.x42{left:699.359988pt;}
.x44{left:700.479988pt;}
}


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