
/* 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_a9c52905ac59.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_386a3400ccd6.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_1d8a22fb7afe.woff")format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_b1c3ee82d0d9.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3cf97da0f4d5.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_2d858bbf83c4.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_070519bb2fbf.woff")format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_6aa76228dbe1.woff")format("woff");}.ff8{font-family:ff8;line-height:0.677246;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_0d26bde97167.woff")format("woff");}.ff9{font-family:ff9;line-height:0.723145;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;}
.m5{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls11{letter-spacing:0.010620px;}
.ls4{letter-spacing:0.010641px;}
.lsb{letter-spacing:0.021238px;}
.lsa{letter-spacing:0.021282px;}
.ls12{letter-spacing:0.155880px;}
.lse{letter-spacing:0.163552px;}
.lsd{letter-spacing:0.311844px;}
.ls17{letter-spacing:0.378602px;}
.ls10{letter-spacing:0.451140px;}
.ls7{letter-spacing:3.612719px;}
.ls8{letter-spacing:5.774038px;}
.ls14{letter-spacing:7.214874px;}
.ls15{letter-spacing:7.935297px;}
.lsc{letter-spacing:9.376148px;}
.ls13{letter-spacing:11.537395px;}
.ls3{letter-spacing:28.252489px;}
.ls5{letter-spacing:34.015846px;}
.lsf{letter-spacing:54.908378px;}
.ls16{letter-spacing:64.273692px;}
.ls6{letter-spacing:64.273774px;}
.ls9{letter-spacing:137.756945px;}
.ls2{letter-spacing:846.509661px;}
.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;}
}
.ws4{word-spacing:-55.943978px;}
.ws6{word-spacing:-53.999978px;}
.ws5{word-spacing:-20.015992px;}
.ws2{word-spacing:-18.311837px;}
.ws3{word-spacing:-18.021275px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._2c{margin-left:-17.999993px;}
._5{margin-left:-16.270972px;}
._a{margin-left:-13.982673px;}
._8{margin-left:-12.102433px;}
._b{margin-left:-10.201629px;}
._d{margin-left:-9.138870px;}
._6{margin-left:-8.013811px;}
._c{margin-left:-6.076313px;}
._e{margin-left:-5.070687px;}
._9{margin-left:-3.963772px;}
._7{margin-left:-2.881943px;}
._0{margin-left:-1.243504px;}
._1{width:1.071840px;}
._11{width:2.321900px;}
._12{width:3.361249px;}
._16{width:4.667370px;}
._1e{width:5.769420px;}
._19{width:7.130132px;}
._1a{width:8.719611px;}
._17{width:9.870982px;}
._18{width:11.517131px;}
._1d{width:12.847406px;}
._1c{width:14.584286px;}
._14{width:15.603554px;}
._13{width:16.711519px;}
._1b{width:19.107952px;}
._23{width:20.159780px;}
._15{width:21.234818px;}
._20{width:22.387425px;}
._21{width:23.848527px;}
._1f{width:25.846710px;}
._22{width:27.653685px;}
._26{width:28.755847px;}
._27{width:29.865541px;}
._25{width:32.461588px;}
._28{width:34.830842px;}
._29{width:35.906034px;}
._2b{width:36.950891px;}
._f{width:38.193033px;}
._2e{width:39.577525px;}
._2a{width:44.397157px;}
._24{width:45.547475px;}
._2d{width:47.661449px;}
._10{width:54.042386px;}
._4{width:58.156838px;}
._3{width:104.431387px;}
._2{width:135.524908px;}
.fc5{color:rgb(84,141,212);}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(247,150,70);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs7{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs8{font-size:77.759969px;}
.fs4{font-size:84.239966px;}
.fs2{font-size:95.759962px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y1e{bottom:67.980273px;}
.y142{bottom:111.540255px;}
.y96{bottom:118.920252px;}
.y130{bottom:121.080252px;}
.yd7{bottom:122.879951px;}
.y102{bottom:125.579950px;}
.y6e{bottom:125.580250px;}
.y95{bottom:125.760250px;}
.yd1{bottom:131.519947px;}
.yff{bottom:133.319947px;}
.y4c{bottom:133.320247px;}
.y10e{bottom:134.039946px;}
.yfc{bottom:134.040246px;}
.ybd{bottom:141.419943px;}
.y141{bottom:142.680243px;}
.y16c{bottom:144.660242px;}
.y94{bottom:146.999941px;}
.y15f{bottom:150.059940px;}
.y16b{bottom:151.499939px;}
.y12f{bottom:152.040239px;}
.yd6{bottom:154.019938px;}
.y6d{bottom:156.539937px;}
.yb5{bottom:156.540237px;}
.yd0{bottom:162.479935px;}
.y4b{bottom:164.459934px;}
.yec{bottom:165.179934px;}
.yfa{bottom:165.180234px;}
.ybc{bottom:172.559931px;}
.y16a{bottom:172.919931px;}
.y140{bottom:177.780229px;}
.y2c{bottom:179.039928px;}
.y15e{bottom:181.019928px;}
.y12e{bottom:183.180227px;}
.yd5{bottom:184.979926px;}
.y6c{bottom:187.679925px;}
.yb4{bottom:187.680225px;}
.y93{bottom:190.559924px;}
.ycf{bottom:193.619923px;}
.y4a{bottom:195.419922px;}
.yeb{bottom:196.139922px;}
.yf9{bottom:196.140222px;}
.ybb{bottom:203.519919px;}
.y1d{bottom:208.379917px;}
.y15d{bottom:212.159915px;}
.y12d{bottom:214.140214px;}
.yd4{bottom:216.119914px;}
.y170{bottom:218.279913px;}
.y101{bottom:218.280213px;}
.y6b{bottom:218.639913px;}
.yb3{bottom:218.640213px;}
.y92{bottom:221.519911px;}
.y105{bottom:223.679911px;}
.yce{bottom:224.579910px;}
.y49{bottom:226.559909px;}
.yea{bottom:227.279909px;}
.yf8{bottom:227.280209px;}
.y10a{bottom:231.420207px;}
.yba{bottom:234.659906px;}
.y1c{bottom:239.339904px;}
.y15c{bottom:243.119903px;}
.y12c{bottom:245.280202px;}
.y167{bottom:247.079901px;}
.y73{bottom:248.159901px;}
.yd3{bottom:248.519901px;}
.yd2{bottom:248.520201px;}
.y100{bottom:249.420200px;}
.y6a{bottom:249.779900px;}
.yb2{bottom:249.780200px;}
.y91{bottom:252.659899px;}
.ycd{bottom:255.719898px;}
.y48{bottom:257.519897px;}
.ye9{bottom:258.239897px;}
.yf7{bottom:258.240197px;}
.y2b{bottom:261.479895px;}
.y162{bottom:262.380195px;}
.yb9{bottom:265.619894px;}
.y1b{bottom:270.479892px;}
.y15b{bottom:274.259890px;}
.y12b{bottom:276.240190px;}
.y166{bottom:278.219889px;}
.y16f{bottom:280.380188px;}
.y69{bottom:280.739888px;}
.yb1{bottom:280.740188px;}
.y90{bottom:283.619887px;}
.ycc{bottom:286.679885px;}
.y47{bottom:288.659885px;}
.ye8{bottom:289.379884px;}
.yf6{bottom:289.380184px;}
.y160{bottom:293.520183px;}
.y17a{bottom:296.759881px;}
.y72{bottom:296.939881px;}
.y1a{bottom:301.439879px;}
.y15a{bottom:305.219878px;}
.y12a{bottom:307.380177px;}
.y165{bottom:309.179876px;}
.y16e{bottom:310.619876px;}
.y16d{bottom:310.620176px;}
.y144{bottom:311.520175px;}
.y68{bottom:311.879875px;}
.yb0{bottom:311.880175px;}
.y8f{bottom:314.759874px;}
.yb8{bottom:316.919873px;}
.ycb{bottom:317.819873px;}
.y46{bottom:319.619872px;}
.y169{bottom:320.159872px;}
.ye7{bottom:320.339872px;}
.yf5{bottom:320.340172px;}
.y109{bottom:324.480170px;}
.y179{bottom:327.719869px;}
.y71{bottom:328.079869px;}
.y19{bottom:332.579867px;}
.y159{bottom:336.359865px;}
.y129{bottom:338.340165px;}
.y1a6{bottom:340.319864px;}
.y164{bottom:341.579863px;}
.y163{bottom:341.580163px;}
.y67{bottom:342.839863px;}
.yaf{bottom:342.840163px;}
.y2a{bottom:344.099862px;}
.y8e{bottom:345.719862px;}
.yca{bottom:348.779860px;}
.y45{bottom:350.759860px;}
.ye6{bottom:351.479859px;}
.yf4{bottom:351.480159px;}
.y1a9{bottom:355.620158px;}
.y178{bottom:358.859856px;}
.y18{bottom:363.539855px;}
.y158{bottom:367.319853px;}
.y128{bottom:369.480152px;}
.y1a5{bottom:371.279851px;}
.y66{bottom:373.979850px;}
.yae{bottom:373.980150px;}
.y8d{bottom:376.859849px;}
.yc9{bottom:379.919848px;}
.y44{bottom:381.719847px;}
.ye5{bottom:382.439847px;}
.yf3{bottom:382.440147px;}
.y108{bottom:386.580145px;}
.y177{bottom:389.819844px;}
.y17{bottom:394.679842px;}
.y157{bottom:398.459841px;}
.y127{bottom:400.440140px;}
.y1a4{bottom:402.419839px;}
.y10f{bottom:404.580138px;}
.y65{bottom:404.939838px;}
.yad{bottom:404.940138px;}
.y8c{bottom:407.819837px;}
.yc8{bottom:410.879836px;}
.y43{bottom:412.859835px;}
.y70{bottom:413.039835px;}
.ye4{bottom:413.579835px;}
.yf2{bottom:413.580135px;}
.y176{bottom:420.959832px;}
.y16{bottom:425.639830px;}
.y29{bottom:426.539829px;}
.y156{bottom:429.419828px;}
.y126{bottom:431.580127px;}
.y1a3{bottom:433.379827px;}
.y64{bottom:436.079826px;}
.yac{bottom:436.080126px;}
.y8b{bottom:438.959824px;}
.yc7{bottom:442.019823px;}
.y42{bottom:443.819822px;}
.y6f{bottom:444.179822px;}
.ye3{bottom:444.539822px;}
.yf1{bottom:444.540122px;}
.y175{bottom:451.919819px;}
.y15{bottom:456.779817px;}
.y155{bottom:460.559816px;}
.y125{bottom:462.540115px;}
.y1a2{bottom:464.519814px;}
.y63{bottom:467.039813px;}
.yab{bottom:467.040113px;}
.y8a{bottom:469.919812px;}
.yc6{bottom:472.979811px;}
.y41{bottom:474.959810px;}
.ye2{bottom:475.679810px;}
.yf0{bottom:475.680110px;}
.yfb{bottom:479.820108px;}
.y174{bottom:483.059807px;}
.y14{bottom:487.739805px;}
.y154{bottom:491.519803px;}
.y124{bottom:493.680103px;}
.y1a1{bottom:495.479802px;}
.y62{bottom:498.179801px;}
.yaa{bottom:498.180101px;}
.y89{bottom:501.059800px;}
.yc5{bottom:504.119798px;}
.y40{bottom:505.919798px;}
.ye1{bottom:506.639797px;}
.yef{bottom:506.640097px;}
.y138{bottom:510.780096px;}
.y28{bottom:512.579795px;}
.y173{bottom:514.019794px;}
.y13{bottom:518.879792px;}
.y153{bottom:522.659791px;}
.y123{bottom:524.640090px;}
.y1a0{bottom:526.619789px;}
.y61{bottom:529.139788px;}
.ya9{bottom:529.140088px;}
.y88{bottom:532.019787px;}
.yc4{bottom:536.519785px;}
.yc3{bottom:536.520085px;}
.y3f{bottom:537.059785px;}
.y1ab{bottom:537.419785px;}
.ye0{bottom:537.779785px;}
.yee{bottom:537.780085px;}
.y107{bottom:541.920083px;}
.y172{bottom:544.799782px;}
.y18c{bottom:545.159782px;}
.y12{bottom:549.839780px;}
.y152{bottom:553.619779px;}
.y122{bottom:555.780078px;}
.y19f{bottom:557.579777px;}
.y161{bottom:559.920076px;}
.y60{bottom:560.279776px;}
.ya8{bottom:560.280076px;}
.y87{bottom:563.159775px;}
.y1aa{bottom:565.139774px;}
.y3e{bottom:568.019773px;}
.ydf{bottom:568.739773px;}
.yc2{bottom:568.740073px;}
.y168{bottom:572.880071px;}
.y18b{bottom:576.119770px;}
.y11{bottom:580.979768px;}
.y151{bottom:584.759766px;}
.y121{bottom:586.740065px;}
.y19e{bottom:588.719765px;}
.y13d{bottom:590.880064px;}
.y5f{bottom:591.239764px;}
.ya7{bottom:591.240064px;}
.y86{bottom:594.119762px;}
.y171{bottom:596.279761px;}
.y3d{bottom:599.159760px;}
.yde{bottom:599.699760px;}
.yc1{bottom:599.700060px;}
.y27{bottom:602.759759px;}
.yed{bottom:603.840058px;}
.y18a{bottom:607.259757px;}
.y10{bottom:611.939755px;}
.y150{bottom:615.719754px;}
.y120{bottom:617.700053px;}
.y19d{bottom:619.679752px;}
.y5e{bottom:622.199751px;}
.ya6{bottom:622.200051px;}
.y85{bottom:625.259750px;}
.y3c{bottom:630.119748px;}
.ydd{bottom:630.839748px;}
.yc0{bottom:630.840048px;}
.y139{bottom:634.980046px;}
.y189{bottom:638.219745px;}
.yf{bottom:642.899743px;}
.y14f{bottom:646.859741px;}
.y11f{bottom:648.840040px;}
.y19c{bottom:650.819740px;}
.y5d{bottom:653.339739px;}
.ya5{bottom:653.340039px;}
.y84{bottom:656.219738px;}
.y3b{bottom:661.259735px;}
.y17b{bottom:661.619735px;}
.ydc{bottom:661.799735px;}
.ydb{bottom:661.800035px;}
.ybf{bottom:665.940034px;}
.y188{bottom:669.359732px;}
.ye{bottom:674.039730px;}
.y11e{bottom:679.800028px;}
.y19b{bottom:681.779727px;}
.y14e{bottom:681.959727px;}
.y1a7{bottom:683.939726px;}
.yb7{bottom:683.940026px;}
.y5c{bottom:684.299726px;}
.ya4{bottom:684.300026px;}
.y83{bottom:687.359725px;}
.y3a{bottom:692.219723px;}
.y184{bottom:692.939723px;}
.yda{bottom:692.940023px;}
.y26{bottom:693.299723px;}
.y187{bottom:700.319720px;}
.yd{bottom:704.999718px;}
.y11d{bottom:710.940016px;}
.y19a{bottom:712.919715px;}
.ybe{bottom:715.080014px;}
.y5b{bottom:715.439714px;}
.ya3{bottom:715.440014px;}
.y82{bottom:718.319713px;}
.y39{bottom:723.359711px;}
.y183{bottom:723.899710px;}
.yd9{bottom:723.900010px;}
.y145{bottom:728.040009px;}
.y14d{bottom:731.459707px;}
.yc{bottom:736.139706px;}
.y11c{bottom:741.900003px;}
.y199{bottom:743.879702px;}
.yfd{bottom:746.040002px;}
.y5a{bottom:746.399701px;}
.ya2{bottom:746.400001px;}
.y81{bottom:749.459700px;}
.y38{bottom:754.319698px;}
.y182{bottom:755.039698px;}
.y10d{bottom:755.039998px;}
.yd8{bottom:759.179996px;}
.y14c{bottom:762.419695px;}
.yb{bottom:767.099693px;}
.y11b{bottom:773.039991px;}
.y198{bottom:775.019690px;}
.y104{bottom:777.179989px;}
.y59{bottom:777.539689px;}
.ya1{bottom:777.539989px;}
.y80{bottom:780.419688px;}
.y25{bottom:783.659687px;}
.y37{bottom:785.459686px;}
.y181{bottom:785.999686px;}
.y10c{bottom:785.999986px;}
.y186{bottom:793.199683px;}
.y14b{bottom:793.559683px;}
.ya{bottom:798.239681px;}
.y11a{bottom:803.999978px;}
.y197{bottom:805.979678px;}
.y103{bottom:808.139977px;}
.y58{bottom:808.499677px;}
.ya0{bottom:808.499977px;}
.y7f{bottom:811.559675px;}
.y36{bottom:816.419673px;}
.y180{bottom:817.139673px;}
.y137{bottom:817.139973px;}
.y10b{bottom:821.279971px;}
.y14a{bottom:824.519670px;}
.y9{bottom:829.199668px;}
.y119{bottom:835.139966px;}
.y196{bottom:837.119665px;}
.yb6{bottom:839.279964px;}
.y57{bottom:839.639664px;}
.y9f{bottom:839.639964px;}
.y7d{bottom:842.519663px;}
.y185{bottom:844.679662px;}
.y35{bottom:847.559661px;}
.y17f{bottom:848.099661px;}
.y136{bottom:848.099961px;}
.y7e{bottom:850.799660px;}
.y13c{bottom:852.239959px;}
.y149{bottom:855.659658px;}
.y8{bottom:860.339656px;}
.y118{bottom:866.099954px;}
.y195{bottom:868.079653px;}
.y24{bottom:870.239652px;}
.y56{bottom:870.599652px;}
.y9e{bottom:870.599952px;}
.y7c{bottom:873.659651px;}
.y34{bottom:878.519649px;}
.y17e{bottom:879.239648px;}
.y135{bottom:879.239948px;}
.y146{bottom:883.379947px;}
.y148{bottom:886.259645px;}
.y1b1{bottom:886.619645px;}
.y7{bottom:895.979642px;}
.y117{bottom:897.239941px;}
.y194{bottom:899.039640px;}
.y55{bottom:901.739639px;}
.y9d{bottom:901.739939px;}
.y7b{bottom:904.619638px;}
.y33{bottom:909.659636px;}
.y17d{bottom:910.199636px;}
.y134{bottom:910.199936px;}
.y1b0{bottom:917.759633px;}
.y116{bottom:928.199929px;}
.y193{bottom:930.179628px;}
.y143{bottom:932.339927px;}
.y54{bottom:932.699627px;}
.y9c{bottom:932.699927px;}
.y7a{bottom:935.759626px;}
.y6{bottom:937.379625px;}
.y147{bottom:937.739625px;}
.y32{bottom:940.619624px;}
.y133{bottom:941.339923px;}
.y17c{bottom:945.479622px;}
.y13f{bottom:945.479922px;}
.y1af{bottom:948.719621px;}
.y23{bottom:952.679619px;}
.y115{bottom:959.339916px;}
.y192{bottom:961.139616px;}
.y1a8{bottom:963.479915px;}
.y53{bottom:963.839614px;}
.y9b{bottom:963.839914px;}
.y79{bottom:966.719613px;}
.y31{bottom:971.759611px;}
.y132{bottom:972.299911px;}
.y1ae{bottom:979.859608px;}
.y22{bottom:981.119608px;}
.y5{bottom:983.279607px;}
.y114{bottom:990.299904px;}
.y191{bottom:992.279603px;}
.y13e{bottom:994.439902px;}
.y52{bottom:994.799602px;}
.y9a{bottom:994.799902px;}
.y78{bottom:997.859601px;}
.y30{bottom:1002.719599px;}
.y13b{bottom:1003.439899px;}
.y131{bottom:1007.579897px;}
.y1ad{bottom:1010.819596px;}
.y113{bottom:1021.439891px;}
.y190{bottom:1023.239591px;}
.y4{bottom:1025.579590px;}
.y106{bottom:1025.579890px;}
.y51{bottom:1025.939590px;}
.y99{bottom:1025.939890px;}
.y77{bottom:1028.459589px;}
.y2f{bottom:1033.859586px;}
.y13a{bottom:1038.539885px;}
.y112{bottom:1052.399879px;}
.y18f{bottom:1054.379578px;}
.y3{bottom:1056.539577px;}
.y50{bottom:1056.899577px;}
.y98{bottom:1056.899877px;}
.y1ac{bottom:1061.939575px;}
.y21{bottom:1063.559575px;}
.yfe{bottom:1064.459574px;}
.y2e{bottom:1064.819574px;}
.y76{bottom:1079.939568px;}
.y111{bottom:1083.539867px;}
.y18e{bottom:1086.779565px;}
.y18d{bottom:1086.779865px;}
.y2{bottom:1087.679565px;}
.y4f{bottom:1088.039565px;}
.y97{bottom:1088.039865px;}
.y20{bottom:1091.999563px;}
.y2d{bottom:1115.939554px;}
.y1{bottom:1118.639553px;}
.y110{bottom:1118.639853px;}
.y4e{bottom:1118.999552px;}
.y4d{bottom:1118.999852px;}
.y1f{bottom:1120.439552px;}
.y75{bottom:1169.939532px;}
.y74{bottom:1169.939832px;}
.hc{height:38.158578px;}
.h9{height:44.149201px;}
.ha{height:47.344903px;}
.hd{height:58.651148px;}
.h5{height:65.010911px;}
.h8{height:66.757473px;}
.he{height:70.628878px;}
.h4{height:70.664034px;}
.h10{height:70.665234px;}
.h1{height:72.562471px;}
.h11{height:75.092520px;}
.hb{height:75.093720px;}
.hf{height:76.317157px;}
.h6{height:82.676920px;}
.h7{height:84.898091px;}
.h3{height:96.508086px;}
.h2{height:121.179327px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:136.079946px;}
.x14{left:140.939944px;}
.x17{left:157.320952px;}
.x13{left:163.081164px;}
.x1c{left:167.579977px;}
.xe{left:172.079931px;}
.x34{left:174.239930px;}
.x22{left:178.559901px;}
.x2f{left:187.019908px;}
.xf{left:190.079545px;}
.x29{left:195.659849px;}
.x23{left:199.979847px;}
.x1b{left:210.600922px;}
.x2d{left:216.179877px;}
.x11{left:221.039912px;}
.x30{left:223.559911px;}
.x12{left:227.159909px;}
.x24{left:231.842174px;}
.x26{left:238.139954px;}
.x25{left:242.459952px;}
.x27{left:244.079050px;}
.x28{left:250.379900px;}
.x31{left:251.639899px;}
.x21{left:255.959898px;}
.x3{left:262.619895px;}
.x35{left:279.179888px;}
.x2{left:304.379878px;}
.x33{left:318.599873px;}
.x10{left:352.079859px;}
.x2a{left:358.019857px;}
.x4{left:369.359966px;}
.x2b{left:395.999842px;}
.x2c{left:402.479839px;}
.x1a{left:410.399836px;}
.x1f{left:414.359834px;}
.x18{left:416.339833px;}
.x20{left:421.379831px;}
.x19{left:422.819831px;}
.x7{left:457.920169px;}
.x5{left:483.480219px;}
.x6{left:515.880129px;}
.x15{left:536.219786px;}
.x16{left:542.699783px;}
.x36{left:543.959782px;}
.x2e{left:548.819780px;}
.xa{left:600.840039px;}
.xb{left:627.840439px;}
.x8{left:665.820352px;}
.xd{left:710.279716px;}
.x1d{left:714.059714px;}
.x1e{left:719.639712px;}
.xc{left:738.359705px;}
.x32{left:741.599703px;}
.x9{left:765.360349px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls11{letter-spacing:0.009440pt;}
.ls4{letter-spacing:0.009459pt;}
.lsb{letter-spacing:0.018878pt;}
.lsa{letter-spacing:0.018917pt;}
.ls12{letter-spacing:0.138560pt;}
.lse{letter-spacing:0.145380pt;}
.lsd{letter-spacing:0.277195pt;}
.ls17{letter-spacing:0.336535pt;}
.ls10{letter-spacing:0.401013pt;}
.ls7{letter-spacing:3.211305pt;}
.ls8{letter-spacing:5.132478pt;}
.ls14{letter-spacing:6.413221pt;}
.ls15{letter-spacing:7.053597pt;}
.lsc{letter-spacing:8.334354pt;}
.ls13{letter-spacing:10.255463pt;}
.ls3{letter-spacing:25.113323pt;}
.ls5{letter-spacing:30.236308pt;}
.lsf{letter-spacing:48.807447pt;}
.ls16{letter-spacing:57.132171pt;}
.ls6{letter-spacing:57.132244pt;}
.ls9{letter-spacing:122.450618pt;}
.ls2{letter-spacing:752.453032pt;}
.ws4{word-spacing:-49.727980pt;}
.ws6{word-spacing:-47.999981pt;}
.ws5{word-spacing:-17.791993pt;}
.ws2{word-spacing:-16.277188pt;}
.ws3{word-spacing:-16.018911pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._2c{margin-left:-15.999994pt;}
._5{margin-left:-14.463086pt;}
._a{margin-left:-12.429043pt;}
._8{margin-left:-10.757718pt;}
._b{margin-left:-9.068115pt;}
._d{margin-left:-8.123440pt;}
._6{margin-left:-7.123388pt;}
._c{margin-left:-5.401167pt;}
._e{margin-left:-4.507277pt;}
._9{margin-left:-3.523353pt;}
._7{margin-left:-2.561727pt;}
._0{margin-left:-1.105337pt;}
._1{width:0.952746pt;}
._11{width:2.063911pt;}
._12{width:2.987777pt;}
._16{width:4.148773pt;}
._1e{width:5.128373pt;}
._19{width:6.337895pt;}
._1a{width:7.750765pt;}
._17{width:8.774207pt;}
._18{width:10.237450pt;}
._1d{width:11.419917pt;}
._1c{width:12.963810pt;}
._14{width:13.869826pt;}
._13{width:14.854683pt;}
._1b{width:16.984846pt;}
._23{width:17.919805pt;}
._15{width:18.875394pt;}
._20{width:19.899933pt;}
._21{width:21.198690pt;}
._1f{width:22.974853pt;}
._22{width:24.581053pt;}
._26{width:25.560753pt;}
._27{width:26.547148pt;}
._25{width:28.854745pt;}
._28{width:30.960748pt;}
._29{width:31.916475pt;}
._2b{width:32.845236pt;}
._f{width:33.949362pt;}
._2e{width:35.180022pt;}
._2a{width:39.464140pt;}
._24{width:40.486645pt;}
._2d{width:42.365732pt;}
._10{width:48.037677pt;}
._4{width:51.694967pt;}
._3{width:92.827899pt;}
._2{width:120.466585pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs7{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs8{font-size:69.119972pt;}
.fs4{font-size:74.879970pt;}
.fs2{font-size:85.119966pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:60.426909pt;}
.y142{bottom:99.146894pt;}
.y96{bottom:105.706891pt;}
.y130{bottom:107.626890pt;}
.yd7{bottom:109.226623pt;}
.y102{bottom:111.626622pt;}
.y6e{bottom:111.626889pt;}
.y95{bottom:111.786889pt;}
.yd1{bottom:116.906620pt;}
.yff{bottom:118.506619pt;}
.y4c{bottom:118.506886pt;}
.y10e{bottom:119.146619pt;}
.yfc{bottom:119.146886pt;}
.ybd{bottom:125.706616pt;}
.y141{bottom:126.826883pt;}
.y16c{bottom:128.586882pt;}
.y94{bottom:130.666614pt;}
.y15f{bottom:133.386613pt;}
.y16b{bottom:134.666613pt;}
.y12f{bottom:135.146879pt;}
.yd6{bottom:136.906612pt;}
.y6d{bottom:139.146611pt;}
.yb5{bottom:139.146878pt;}
.yd0{bottom:144.426609pt;}
.y4b{bottom:146.186608pt;}
.yec{bottom:146.826608pt;}
.yfa{bottom:146.826875pt;}
.ybc{bottom:153.386605pt;}
.y16a{bottom:153.706605pt;}
.y140{bottom:158.026870pt;}
.y2c{bottom:159.146603pt;}
.y15e{bottom:160.906602pt;}
.y12e{bottom:162.826868pt;}
.yd5{bottom:164.426601pt;}
.y6c{bottom:166.826600pt;}
.yb4{bottom:166.826867pt;}
.y93{bottom:169.386599pt;}
.ycf{bottom:172.106598pt;}
.y4a{bottom:173.706597pt;}
.yeb{bottom:174.346597pt;}
.yf9{bottom:174.346864pt;}
.ybb{bottom:180.906594pt;}
.y1d{bottom:185.226593pt;}
.y15d{bottom:188.586591pt;}
.y12d{bottom:190.346857pt;}
.yd4{bottom:192.106590pt;}
.y170{bottom:194.026589pt;}
.y101{bottom:194.026856pt;}
.y6b{bottom:194.346589pt;}
.yb3{bottom:194.346856pt;}
.y92{bottom:196.906588pt;}
.y105{bottom:198.826587pt;}
.yce{bottom:199.626587pt;}
.y49{bottom:201.386586pt;}
.yea{bottom:202.026586pt;}
.yf8{bottom:202.026853pt;}
.y10a{bottom:205.706851pt;}
.yba{bottom:208.586583pt;}
.y1c{bottom:212.746582pt;}
.y15c{bottom:216.106580pt;}
.y12c{bottom:218.026846pt;}
.y167{bottom:219.626579pt;}
.y73{bottom:220.586578pt;}
.yd3{bottom:220.906578pt;}
.yd2{bottom:220.906845pt;}
.y100{bottom:221.706845pt;}
.y6a{bottom:222.026578pt;}
.yb2{bottom:222.026845pt;}
.y91{bottom:224.586577pt;}
.ycd{bottom:227.306576pt;}
.y48{bottom:228.906575pt;}
.ye9{bottom:229.546575pt;}
.yf7{bottom:229.546842pt;}
.y2b{bottom:232.426574pt;}
.y162{bottom:233.226840pt;}
.yb9{bottom:236.106572pt;}
.y1b{bottom:240.426570pt;}
.y15b{bottom:243.786569pt;}
.y12b{bottom:245.546835pt;}
.y166{bottom:247.306568pt;}
.y16f{bottom:249.226834pt;}
.y69{bottom:249.546567pt;}
.yb1{bottom:249.546834pt;}
.y90{bottom:252.106566pt;}
.ycc{bottom:254.826565pt;}
.y47{bottom:256.586564pt;}
.ye8{bottom:257.226564pt;}
.yf6{bottom:257.226830pt;}
.y160{bottom:260.906829pt;}
.y17a{bottom:263.786561pt;}
.y72{bottom:263.946561pt;}
.y1a{bottom:267.946559pt;}
.y15a{bottom:271.306558pt;}
.y12a{bottom:273.226824pt;}
.y165{bottom:274.826557pt;}
.y16e{bottom:276.106556pt;}
.y16d{bottom:276.106823pt;}
.y144{bottom:276.906823pt;}
.y68{bottom:277.226556pt;}
.yb0{bottom:277.226822pt;}
.y8f{bottom:279.786555pt;}
.yb8{bottom:281.706554pt;}
.ycb{bottom:282.506554pt;}
.y46{bottom:284.106553pt;}
.y169{bottom:284.586553pt;}
.ye7{bottom:284.746553pt;}
.yf5{bottom:284.746819pt;}
.y109{bottom:288.426818pt;}
.y179{bottom:291.306550pt;}
.y71{bottom:291.626550pt;}
.y19{bottom:295.626548pt;}
.y159{bottom:298.986547pt;}
.y129{bottom:300.746813pt;}
.y1a6{bottom:302.506546pt;}
.y164{bottom:303.626545pt;}
.y163{bottom:303.626812pt;}
.y67{bottom:304.746545pt;}
.yaf{bottom:304.746811pt;}
.y2a{bottom:305.866544pt;}
.y8e{bottom:307.306544pt;}
.yca{bottom:310.026543pt;}
.y45{bottom:311.786542pt;}
.ye6{bottom:312.426542pt;}
.yf4{bottom:312.426808pt;}
.y1a9{bottom:316.106807pt;}
.y178{bottom:318.986539pt;}
.y18{bottom:323.146537pt;}
.y158{bottom:326.506536pt;}
.y128{bottom:328.426802pt;}
.y1a5{bottom:330.026535pt;}
.y66{bottom:332.426534pt;}
.yae{bottom:332.426800pt;}
.y8d{bottom:334.986533pt;}
.yc9{bottom:337.706532pt;}
.y44{bottom:339.306531pt;}
.ye5{bottom:339.946531pt;}
.yf3{bottom:339.946797pt;}
.y108{bottom:343.626796pt;}
.y177{bottom:346.506528pt;}
.y17{bottom:350.826526pt;}
.y157{bottom:354.186525pt;}
.y127{bottom:355.946791pt;}
.y1a4{bottom:357.706524pt;}
.y10f{bottom:359.626789pt;}
.y65{bottom:359.946523pt;}
.yad{bottom:359.946789pt;}
.y8c{bottom:362.506522pt;}
.yc8{bottom:365.226521pt;}
.y43{bottom:366.986520pt;}
.y70{bottom:367.146520pt;}
.ye4{bottom:367.626520pt;}
.yf2{bottom:367.626786pt;}
.y176{bottom:374.186517pt;}
.y16{bottom:378.346515pt;}
.y29{bottom:379.146515pt;}
.y156{bottom:381.706514pt;}
.y126{bottom:383.626780pt;}
.y1a3{bottom:385.226513pt;}
.y64{bottom:387.626512pt;}
.yac{bottom:387.626778pt;}
.y8b{bottom:390.186511pt;}
.yc7{bottom:392.906510pt;}
.y42{bottom:394.506509pt;}
.y6f{bottom:394.826509pt;}
.ye3{bottom:395.146509pt;}
.yf1{bottom:395.146775pt;}
.y175{bottom:401.706506pt;}
.y15{bottom:406.026504pt;}
.y155{bottom:409.386503pt;}
.y125{bottom:411.146769pt;}
.y1a2{bottom:412.906502pt;}
.y63{bottom:415.146501pt;}
.yab{bottom:415.146767pt;}
.y8a{bottom:417.706500pt;}
.yc6{bottom:420.426498pt;}
.y41{bottom:422.186498pt;}
.ye2{bottom:422.826498pt;}
.yf0{bottom:422.826764pt;}
.yfb{bottom:426.506763pt;}
.y174{bottom:429.386495pt;}
.y14{bottom:433.546493pt;}
.y154{bottom:436.906492pt;}
.y124{bottom:438.826758pt;}
.y1a1{bottom:440.426490pt;}
.y62{bottom:442.826490pt;}
.yaa{bottom:442.826756pt;}
.y89{bottom:445.386489pt;}
.yc5{bottom:448.106487pt;}
.y40{bottom:449.706487pt;}
.ye1{bottom:450.346487pt;}
.yef{bottom:450.346753pt;}
.y138{bottom:454.026752pt;}
.y28{bottom:455.626484pt;}
.y173{bottom:456.906484pt;}
.y13{bottom:461.226482pt;}
.y153{bottom:464.586481pt;}
.y123{bottom:466.346747pt;}
.y1a0{bottom:468.106479pt;}
.y61{bottom:470.346479pt;}
.ya9{bottom:470.346745pt;}
.y88{bottom:472.906478pt;}
.yc4{bottom:476.906476pt;}
.yc3{bottom:476.906743pt;}
.y3f{bottom:477.386476pt;}
.y1ab{bottom:477.706476pt;}
.ye0{bottom:478.026475pt;}
.yee{bottom:478.026742pt;}
.y107{bottom:481.706741pt;}
.y172{bottom:484.266473pt;}
.y18c{bottom:484.586473pt;}
.y12{bottom:488.746471pt;}
.y152{bottom:492.106470pt;}
.y122{bottom:494.026736pt;}
.y19f{bottom:495.626468pt;}
.y161{bottom:497.706734pt;}
.y60{bottom:498.026467pt;}
.ya8{bottom:498.026734pt;}
.y87{bottom:500.586466pt;}
.y1aa{bottom:502.346466pt;}
.y3e{bottom:504.906465pt;}
.ydf{bottom:505.546464pt;}
.yc2{bottom:505.546731pt;}
.y168{bottom:509.226730pt;}
.y18b{bottom:512.106462pt;}
.y11{bottom:516.426460pt;}
.y151{bottom:519.786459pt;}
.y121{bottom:521.546725pt;}
.y19e{bottom:523.306457pt;}
.y13d{bottom:525.226723pt;}
.y5f{bottom:525.546456pt;}
.ya7{bottom:525.546723pt;}
.y86{bottom:528.106455pt;}
.y171{bottom:530.026455pt;}
.y3d{bottom:532.586454pt;}
.yde{bottom:533.066453pt;}
.yc1{bottom:533.066720pt;}
.y27{bottom:535.786452pt;}
.yed{bottom:536.746719pt;}
.y18a{bottom:539.786451pt;}
.y10{bottom:543.946449pt;}
.y150{bottom:547.306448pt;}
.y120{bottom:549.066714pt;}
.y19d{bottom:550.826446pt;}
.y5e{bottom:553.066445pt;}
.ya6{bottom:553.066712pt;}
.y85{bottom:555.786444pt;}
.y3c{bottom:560.106443pt;}
.ydd{bottom:560.746442pt;}
.yc0{bottom:560.746709pt;}
.y139{bottom:564.426708pt;}
.y189{bottom:567.306440pt;}
.yf{bottom:571.466438pt;}
.y14f{bottom:574.986437pt;}
.y11f{bottom:576.746703pt;}
.y19c{bottom:578.506435pt;}
.y5d{bottom:580.746434pt;}
.ya5{bottom:580.746701pt;}
.y84{bottom:583.306433pt;}
.y3b{bottom:587.786432pt;}
.y17b{bottom:588.106431pt;}
.ydc{bottom:588.266431pt;}
.ydb{bottom:588.266698pt;}
.ybf{bottom:591.946697pt;}
.y188{bottom:594.986429pt;}
.ye{bottom:599.146427pt;}
.y11e{bottom:604.266692pt;}
.y19b{bottom:606.026424pt;}
.y14e{bottom:606.186424pt;}
.y1a7{bottom:607.946423pt;}
.yb7{bottom:607.946690pt;}
.y5c{bottom:608.266423pt;}
.ya4{bottom:608.266690pt;}
.y83{bottom:610.986422pt;}
.y3a{bottom:615.306421pt;}
.y184{bottom:615.946420pt;}
.yda{bottom:615.946687pt;}
.y26{bottom:616.266420pt;}
.y187{bottom:622.506418pt;}
.yd{bottom:626.666416pt;}
.y11d{bottom:631.946681pt;}
.y19a{bottom:633.706413pt;}
.ybe{bottom:635.626679pt;}
.y5b{bottom:635.946412pt;}
.ya3{bottom:635.946679pt;}
.y82{bottom:638.506411pt;}
.y39{bottom:642.986409pt;}
.y183{bottom:643.466409pt;}
.yd9{bottom:643.466676pt;}
.y145{bottom:647.146674pt;}
.y14d{bottom:650.186407pt;}
.yc{bottom:654.346405pt;}
.y11c{bottom:659.466670pt;}
.y199{bottom:661.226402pt;}
.yfd{bottom:663.146668pt;}
.y5a{bottom:663.466401pt;}
.ya2{bottom:663.466668pt;}
.y81{bottom:666.186400pt;}
.y38{bottom:670.506398pt;}
.y182{bottom:671.146398pt;}
.y10d{bottom:671.146665pt;}
.yd8{bottom:674.826663pt;}
.y14c{bottom:677.706396pt;}
.yb{bottom:681.866394pt;}
.y11b{bottom:687.146658pt;}
.y198{bottom:688.906391pt;}
.y104{bottom:690.826657pt;}
.y59{bottom:691.146390pt;}
.ya1{bottom:691.146657pt;}
.y80{bottom:693.706389pt;}
.y25{bottom:696.586388pt;}
.y37{bottom:698.186387pt;}
.y181{bottom:698.666387pt;}
.y10c{bottom:698.666654pt;}
.y186{bottom:705.066385pt;}
.y14b{bottom:705.386385pt;}
.ya{bottom:709.546383pt;}
.y11a{bottom:714.666647pt;}
.y197{bottom:716.426380pt;}
.y103{bottom:718.346646pt;}
.y58{bottom:718.666379pt;}
.ya0{bottom:718.666646pt;}
.y7f{bottom:721.386378pt;}
.y36{bottom:725.706376pt;}
.y180{bottom:726.346376pt;}
.y137{bottom:726.346643pt;}
.y10b{bottom:730.026641pt;}
.y14a{bottom:732.906374pt;}
.y9{bottom:737.066372pt;}
.y119{bottom:742.346636pt;}
.y196{bottom:744.106369pt;}
.yb6{bottom:746.026635pt;}
.y57{bottom:746.346368pt;}
.y9f{bottom:746.346635pt;}
.y7d{bottom:748.906367pt;}
.y185{bottom:750.826366pt;}
.y35{bottom:753.386365pt;}
.y17f{bottom:753.866365pt;}
.y136{bottom:753.866632pt;}
.y7e{bottom:756.266364pt;}
.y13c{bottom:757.546630pt;}
.y149{bottom:760.586362pt;}
.y8{bottom:764.746361pt;}
.y118{bottom:769.866625pt;}
.y195{bottom:771.626358pt;}
.y24{bottom:773.546357pt;}
.y56{bottom:773.866357pt;}
.y9e{bottom:773.866624pt;}
.y7c{bottom:776.586356pt;}
.y34{bottom:780.906354pt;}
.y17e{bottom:781.546354pt;}
.y135{bottom:781.546621pt;}
.y146{bottom:785.226619pt;}
.y148{bottom:787.786352pt;}
.y1b1{bottom:788.106351pt;}
.y7{bottom:796.426348pt;}
.y117{bottom:797.546614pt;}
.y194{bottom:799.146347pt;}
.y55{bottom:801.546346pt;}
.y9d{bottom:801.546613pt;}
.y7b{bottom:804.106345pt;}
.y33{bottom:808.586343pt;}
.y17d{bottom:809.066343pt;}
.y134{bottom:809.066610pt;}
.y1b0{bottom:815.786340pt;}
.y116{bottom:825.066603pt;}
.y193{bottom:826.826336pt;}
.y143{bottom:828.746602pt;}
.y54{bottom:829.066335pt;}
.y9c{bottom:829.066602pt;}
.y7a{bottom:831.786334pt;}
.y6{bottom:833.226333pt;}
.y147{bottom:833.546333pt;}
.y32{bottom:836.106332pt;}
.y133{bottom:836.746599pt;}
.y17c{bottom:840.426330pt;}
.y13f{bottom:840.426597pt;}
.y1af{bottom:843.306329pt;}
.y23{bottom:846.826328pt;}
.y115{bottom:852.746592pt;}
.y192{bottom:854.346325pt;}
.y1a8{bottom:856.426591pt;}
.y53{bottom:856.746324pt;}
.y9b{bottom:856.746591pt;}
.y79{bottom:859.306323pt;}
.y31{bottom:863.786321pt;}
.y132{bottom:864.266588pt;}
.y1ae{bottom:870.986318pt;}
.y22{bottom:872.106318pt;}
.y5{bottom:874.026317pt;}
.y114{bottom:880.266581pt;}
.y191{bottom:882.026314pt;}
.y13e{bottom:883.946580pt;}
.y52{bottom:884.266313pt;}
.y9a{bottom:884.266580pt;}
.y78{bottom:886.986312pt;}
.y30{bottom:891.306310pt;}
.y13b{bottom:891.946577pt;}
.y131{bottom:895.626575pt;}
.y1ad{bottom:898.506307pt;}
.y113{bottom:907.946570pt;}
.y190{bottom:909.546303pt;}
.y4{bottom:911.626302pt;}
.y106{bottom:911.626569pt;}
.y51{bottom:911.946302pt;}
.y99{bottom:911.946569pt;}
.y77{bottom:914.186301pt;}
.y2f{bottom:918.986299pt;}
.y13a{bottom:923.146564pt;}
.y112{bottom:935.466559pt;}
.y18f{bottom:937.226292pt;}
.y3{bottom:939.146291pt;}
.y50{bottom:939.466291pt;}
.y98{bottom:939.466558pt;}
.y1ac{bottom:943.946289pt;}
.y21{bottom:945.386289pt;}
.yfe{bottom:946.186288pt;}
.y2e{bottom:946.506288pt;}
.y76{bottom:959.946283pt;}
.y111{bottom:963.146548pt;}
.y18e{bottom:966.026280pt;}
.y18d{bottom:966.026547pt;}
.y2{bottom:966.826280pt;}
.y4f{bottom:967.146280pt;}
.y97{bottom:967.146546pt;}
.y20{bottom:970.666278pt;}
.y2d{bottom:991.946270pt;}
.y1{bottom:994.346269pt;}
.y110{bottom:994.346536pt;}
.y4e{bottom:994.666269pt;}
.y4d{bottom:994.666535pt;}
.y1f{bottom:995.946268pt;}
.y75{bottom:1039.946251pt;}
.y74{bottom:1039.946517pt;}
.hc{height:33.918736pt;}
.h9{height:39.243734pt;}
.ha{height:42.084358pt;}
.hd{height:52.134354pt;}
.h5{height:57.787477pt;}
.h8{height:59.339976pt;}
.he{height:62.781225pt;}
.h4{height:62.812475pt;}
.h10{height:62.813542pt;}
.h1{height:64.499974pt;}
.h11{height:66.748907pt;}
.hb{height:66.749973pt;}
.hf{height:67.837473pt;}
.h6{height:73.490596pt;}
.h7{height:75.464970pt;}
.h3{height:85.784966pt;}
.h2{height:107.714957pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:120.959952pt;}
.x14{left:125.279950pt;}
.x17{left:139.840847pt;}
.x13{left:144.961034pt;}
.x1c{left:148.959980pt;}
.xe{left:152.959939pt;}
.x34{left:154.879938pt;}
.x22{left:158.719912pt;}
.x2f{left:166.239918pt;}
.xf{left:168.959596pt;}
.x29{left:173.919866pt;}
.x23{left:177.759864pt;}
.x1b{left:187.200820pt;}
.x2d{left:192.159890pt;}
.x11{left:196.479921pt;}
.x30{left:198.719921pt;}
.x12{left:201.919919pt;}
.x24{left:206.081933pt;}
.x26{left:211.679959pt;}
.x25{left:215.519957pt;}
.x27{left:216.959156pt;}
.x28{left:222.559911pt;}
.x31{left:223.679911pt;}
.x21{left:227.519909pt;}
.x3{left:233.439907pt;}
.x35{left:248.159901pt;}
.x2{left:270.559892pt;}
.x33{left:283.199887pt;}
.x10{left:312.959875pt;}
.x2a{left:318.239873pt;}
.x4{left:328.319970pt;}
.x2b{left:351.999859pt;}
.x2c{left:357.759857pt;}
.x1a{left:364.799854pt;}
.x1f{left:368.319853pt;}
.x18{left:370.079852pt;}
.x20{left:374.559850pt;}
.x19{left:375.839850pt;}
.x7{left:407.040150pt;}
.x5{left:429.760195pt;}
.x6{left:458.560115pt;}
.x15{left:476.639809pt;}
.x16{left:482.399807pt;}
.x36{left:483.519807pt;}
.x2e{left:487.839805pt;}
.xa{left:534.080035pt;}
.xb{left:558.080390pt;}
.x8{left:591.840313pt;}
.xd{left:631.359747pt;}
.x1d{left:634.719746pt;}
.x1e{left:639.679744pt;}
.xc{left:656.319737pt;}
.x32{left:659.199736pt;}
.x9{left:680.320310pt;}
}


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