
/* 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_a9acb3700d30.woff")format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_07dc8a23bf52.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_4b28ffacd1b2.woff")format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_a6c233f4d509.woff")format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_6dca4d7b5cd1.woff")format("woff");}.ff5{font-family:ff5;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_17ddfeaaeac6.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_afd310880b11.woff")format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_45a85411c2ee.woff")format("woff");}.ff8{font-family:ff8;line-height:0.858398;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_abb95bb7b77c.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_4697a74b8c49.woff")format("woff");}.ffa{font-family:ffa;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.759766px;}
.v2{vertical-align:-5.760120px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.879883px;}
.lsc{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.043920px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022331px;}
.ls8{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.lse{letter-spacing:0.216007px;}
.ls7{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.288007px;}
.lsd{letter-spacing:0.288013px;}
.ls11{letter-spacing:0.359912px;}
.ls10{letter-spacing:0.360004px;}
.ls2{letter-spacing:65.640006px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wsb{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.272000px;}
.ws1{word-spacing:-16.128000px;}
.ws2{word-spacing:-15.768000px;}
.wsa{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.461840px;}
.ws9{word-spacing:-13.447440px;}
.ws4{word-spacing:-10.902240px;}
.ws7{word-spacing:-8.786880px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-4.104000px;}
._e{margin-left:-2.603971px;}
._1{margin-left:-1.140029px;}
._0{width:1.215875px;}
._14{width:2.671086px;}
._4{width:3.744000px;}
._a{width:4.799993px;}
._f{width:6.408000px;}
._2{width:7.848000px;}
._10{width:9.008125px;}
._13{width:10.412868px;}
._12{width:11.520000px;}
._3{width:13.392000px;}
._9{width:15.060066px;}
._11{width:17.620829px;}
._d{width:18.864000px;}
._c{width:19.944000px;}
._6{width:21.168000px;}
._5{width:22.824000px;}
._1b{width:24.048000px;}
._1c{width:25.068041px;}
._1e{width:26.471912px;}
._1f{width:29.231998px;}
._b{width:33.312037px;}
._8{width:35.208000px;}
._7{width:36.648000px;}
._19{width:37.944000px;}
._1a{width:39.084037px;}
._20{width:71.424014px;}
._18{width:137.424022px;}
._17{width:142.104022px;}
._16{width:160.104022px;}
._15{width:177.960022px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.959930px;}
.y68{bottom:3.959976px;}
.y5a{bottom:3.960022px;}
.y5c{bottom:6.839996px;}
.y65{bottom:6.840088px;}
.y69{bottom:7.019989px;}
.y59{bottom:22.320007px;}
.y58{bottom:40.679993px;}
.y6{bottom:56.879997px;}
.y38{bottom:56.880000px;}
.y57{bottom:58.859985px;}
.y37{bottom:70.919955px;}
.y5{bottom:70.919998px;}
.y56{bottom:77.219971px;}
.y55{bottom:95.580048px;}
.y51{bottom:102.635940px;}
.y86{bottom:106.775997px;}
.y54{bottom:113.940033px;}
.ya9{bottom:124.235996px;}
.y32{bottom:124.775997px;}
.y50{bottom:128.015940px;}
.y85{bottom:128.735996px;}
.ya8{bottom:146.195995px;}
.y31{bottom:146.735996px;}
.y4f{bottom:149.975940px;}
.y84{bottom:150.689999px;}
.y30{bottom:168.689999px;}
.y4e{bottom:171.930000px;}
.y83{bottom:172.830002px;}
.ya7{bottom:189.029995px;}
.y2f{bottom:190.649998px;}
.y4d{bottom:193.890000px;}
.y82{bottom:194.790000px;}
.ya6{bottom:210.990005px;}
.y2e{bottom:212.610008px;}
.y4c{bottom:215.850000px;}
.y81{bottom:216.750000px;}
.ya5{bottom:233.129997px;}
.y2d{bottom:234.570007px;}
.y4b{bottom:237.810000px;}
.y80{bottom:238.709999px;}
.y2c{bottom:256.530006px;}
.y4a{bottom:259.770000px;}
.y7f{bottom:260.669998px;}
.ya4{bottom:275.969994px;}
.y2b{bottom:278.669998px;}
.y49{bottom:281.730000px;}
.y7e{bottom:282.629997px;}
.ya3{bottom:297.929993px;}
.y2a{bottom:300.629997px;}
.y48{bottom:303.690000px;}
.y7d{bottom:304.589996px;}
.ya2{bottom:319.889992px;}
.y29{bottom:322.589996px;}
.y47{bottom:325.650000px;}
.y7c{bottom:326.549995px;}
.ya1{bottom:341.894989px;}
.y28{bottom:344.594994px;}
.y7b{bottom:348.554993px;}
.y46{bottom:348.735000px;}
.y27{bottom:366.554993px;}
.y7a{bottom:370.514992px;}
.y45{bottom:370.695000px;}
.ya0{bottom:384.914978px;}
.y26{bottom:388.515015px;}
.y44{bottom:392.295000px;}
.y79{bottom:392.474991px;}
.y9f{bottom:406.875000px;}
.y43{bottom:407.954940px;}
.y25{bottom:410.474991px;}
.y78{bottom:414.435013px;}
.y9e{bottom:428.835022px;}
.y24{bottom:432.435013px;}
.y77{bottom:436.394989px;}
.y9d{bottom:450.794998px;}
.y23{bottom:454.394989px;}
.y76{bottom:458.355011px;}
.y22{bottom:476.355011px;}
.y75{bottom:479.955002px;}
.y9c{bottom:493.814987px;}
.y21{bottom:498.314987px;}
.y74{bottom:505.515015px;}
.y9b{bottom:515.775009px;}
.y20{bottom:520.275009px;}
.y73{bottom:527.474991px;}
.y1f{bottom:542.234985px;}
.y72{bottom:549.435013px;}
.y9a{bottom:558.794998px;}
.y1e{bottom:564.195007px;}
.y71{bottom:571.394989px;}
.y99{bottom:580.755020px;}
.y1d{bottom:586.335022px;}
.y70{bottom:593.355011px;}
.y98{bottom:602.714996px;}
.y1c{bottom:608.324982px;}
.y6f{bottom:615.345016px;}
.y1b{bottom:630.285004px;}
.y6e{bottom:637.304993px;}
.y97{bottom:645.765015px;}
.y1a{bottom:652.244980px;}
.y6d{bottom:659.265015px;}
.y96{bottom:667.724991px;}
.y19{bottom:674.205002px;}
.y6c{bottom:681.224991px;}
.y95{bottom:689.685013px;}
.y18{bottom:696.164978px;}
.y6b{bottom:703.185013px;}
.yb6{bottom:712.544998px;}
.y17{bottom:718.125000px;}
.y6a{bottom:725.144989px;}
.y94{bottom:732.705002px;}
.y16{bottom:740.085022px;}
.y67{bottom:747.105011px;}
.y93{bottom:754.664978px;}
.yb5{bottom:755.564987px;}
.y15{bottom:762.044998px;}
.y66{bottom:769.245026px;}
.y92{bottom:776.625000px;}
.yb4{bottom:777.524963px;}
.y14{bottom:784.004974px;}
.y64{bottom:791.204956px;}
.y91{bottom:798.585022px;}
.yb3{bottom:799.484985px;}
.y13{bottom:805.964996px;}
.y63{bottom:813.164978px;}
.y12{bottom:827.925018px;}
.y62{bottom:835.125000px;}
.y90{bottom:841.605011px;}
.yb2{bottom:842.504974px;}
.y11{bottom:852.585022px;}
.y61{bottom:857.085022px;}
.y8f{bottom:863.565033px;}
.yb1{bottom:864.464996px;}
.y10{bottom:874.589996px;}
.y60{bottom:879.089996px;}
.y8e{bottom:885.570007px;}
.yb0{bottom:886.469971px;}
.yf{bottom:896.550018px;}
.y5f{bottom:901.050018px;}
.y42{bottom:905.550000px;}
.yaf{bottom:908.429993px;}
.ye{bottom:918.510040px;}
.y5d{bottom:923.010040px;}
.y41{bottom:927.510000px;}
.y8d{bottom:928.589996px;}
.yd{bottom:940.469971px;}
.y5b{bottom:944.969971px;}
.y40{bottom:949.470000px;}
.y8c{bottom:950.550018px;}
.yae{bottom:951.449982px;}
.y53{bottom:966.929993px;}
.yc{bottom:968.370026px;}
.y3f{bottom:971.430015px;}
.yad{bottom:973.410004px;}
.yb{bottom:984.390015px;}
.y8b{bottom:993.390015px;}
.y3e{bottom:993.390030px;}
.ya{bottom:1012.289978px;}
.y3d{bottom:1015.350030px;}
.y8a{bottom:1015.350037px;}
.yac{bottom:1016.429993px;}
.y89{bottom:1037.489960px;}
.y3c{bottom:1037.490030px;}
.yab{bottom:1038.390015px;}
.y9{bottom:1038.929993px;}
.y88{bottom:1059.449982px;}
.y3b{bottom:1059.450030px;}
.yaa{bottom:1060.350037px;}
.y8{bottom:1068.269989px;}
.y87{bottom:1081.410004px;}
.y3a{bottom:1081.410030px;}
.y7{bottom:1097.609985px;}
.y52{bottom:1103.370026px;}
.y39{bottom:1103.370030px;}
.y36{bottom:1125.329895px;}
.y4{bottom:1125.329956px;}
.y35{bottom:1147.319955px;}
.y3{bottom:1147.320007px;}
.y34{bottom:1169.279955px;}
.y2{bottom:1169.280029px;}
.y33{bottom:1191.239955px;}
.y1{bottom:1191.239960px;}
.he{height:21.060000px;}
.hc{height:21.240000px;}
.hd{height:21.276000px;}
.h3{height:27.527344px;}
.h7{height:45.054844px;}
.h5{height:47.980898px;}
.h8{height:48.972656px;}
.hf{height:50.585625px;}
.h6{height:51.679688px;}
.ha{height:59.439023px;}
.hb{height:59.551055px;}
.h2{height:71.613281px;}
.h4{height:95.245664px;}
.h9{height:128.160004px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w6{width:77.040000px;}
.w7{width:77.436000px;}
.w5{width:79.416000px;}
.w4{width:103.319996px;}
.w3{width:342.615005px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:5.400009px;}
.xf{left:27.000000px;}
.xd{left:30.960022px;}
.xc{left:32.084976px;}
.xe{left:34.919998px;}
.x10{left:42.119980px;}
.xb{left:47.699982px;}
.x1{left:106.235983px;}
.x11{left:108.395987px;}
.x3{left:109.835985px;}
.x4{left:133.235983px;}
.x2{left:441.644976px;}
.x7{left:449.205002px;}
.x8{left:552.525009px;}
.x9{left:631.949982px;}
.xa{left:708.990005px;}
.x5{left:790.379985px;}
@media print{
.v1{vertical-align:-21.119792pt;}
.v2{vertical-align:-5.120107pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.559896pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.039040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019850pt;}
.ls8{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.192006pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.256007pt;}
.lsd{letter-spacing:0.256011pt;}
.ls11{letter-spacing:0.319922pt;}
.ls10{letter-spacing:0.320003pt;}
.ls2{letter-spacing:58.346672pt;}
.ws5{word-spacing:-64.000000pt;}
.wsb{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.336000pt;}
.ws2{word-spacing:-14.016000pt;}
.wsa{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.966080pt;}
.ws9{word-spacing:-11.953280pt;}
.ws4{word-spacing:-9.690880pt;}
.ws7{word-spacing:-7.810560pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-3.648000pt;}
._e{margin-left:-2.314641pt;}
._1{margin-left:-1.013359pt;}
._0{width:1.080778pt;}
._14{width:2.374299pt;}
._4{width:3.328000pt;}
._a{width:4.266660pt;}
._f{width:5.696000pt;}
._2{width:6.976000pt;}
._10{width:8.007222pt;}
._13{width:9.255882pt;}
._12{width:10.240000pt;}
._3{width:11.904000pt;}
._9{width:13.386725pt;}
._11{width:15.662959pt;}
._d{width:16.768000pt;}
._c{width:17.728000pt;}
._6{width:18.816000pt;}
._5{width:20.288000pt;}
._1b{width:21.376000pt;}
._1c{width:22.282703pt;}
._1e{width:23.530588pt;}
._1f{width:25.983998pt;}
._b{width:29.610700pt;}
._8{width:31.296000pt;}
._7{width:32.576000pt;}
._19{width:33.728000pt;}
._1a{width:34.741366pt;}
._20{width:63.488013pt;}
._18{width:122.154687pt;}
._17{width:126.314687pt;}
._16{width:142.314687pt;}
._15{width:158.186687pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:3.519938pt;}
.y68{bottom:3.519979pt;}
.y5a{bottom:3.520020pt;}
.y5c{bottom:6.079997pt;}
.y65{bottom:6.080078pt;}
.y69{bottom:6.239990pt;}
.y59{bottom:19.840007pt;}
.y58{bottom:36.159993pt;}
.y6{bottom:50.559998pt;}
.y38{bottom:50.560000pt;}
.y57{bottom:52.319987pt;}
.y37{bottom:63.039960pt;}
.y5{bottom:63.039998pt;}
.y56{bottom:68.639974pt;}
.y55{bottom:84.960042pt;}
.y51{bottom:91.231947pt;}
.y86{bottom:94.911997pt;}
.y54{bottom:101.280029pt;}
.ya9{bottom:110.431997pt;}
.y32{bottom:110.911997pt;}
.y50{bottom:113.791947pt;}
.y85{bottom:114.431997pt;}
.ya8{bottom:129.951996pt;}
.y31{bottom:130.431997pt;}
.y4f{bottom:133.311947pt;}
.y84{bottom:133.946665pt;}
.y30{bottom:149.946665pt;}
.y4e{bottom:152.826667pt;}
.y83{bottom:153.626668pt;}
.ya7{bottom:168.026662pt;}
.y2f{bottom:169.466665pt;}
.y4d{bottom:172.346667pt;}
.y82{bottom:173.146667pt;}
.ya6{bottom:187.546672pt;}
.y2e{bottom:188.986674pt;}
.y4c{bottom:191.866667pt;}
.y81{bottom:192.666667pt;}
.ya5{bottom:207.226664pt;}
.y2d{bottom:208.506673pt;}
.y4b{bottom:211.386667pt;}
.y80{bottom:212.186666pt;}
.y2c{bottom:228.026672pt;}
.y4a{bottom:230.906667pt;}
.y7f{bottom:231.706665pt;}
.ya4{bottom:245.306661pt;}
.y2b{bottom:247.706665pt;}
.y49{bottom:250.426667pt;}
.y7e{bottom:251.226664pt;}
.ya3{bottom:264.826660pt;}
.y2a{bottom:267.226664pt;}
.y48{bottom:269.946667pt;}
.y7d{bottom:270.746663pt;}
.ya2{bottom:284.346659pt;}
.y29{bottom:286.746663pt;}
.y47{bottom:289.466667pt;}
.y7c{bottom:290.266663pt;}
.ya1{bottom:303.906657pt;}
.y28{bottom:306.306661pt;}
.y7b{bottom:309.826660pt;}
.y46{bottom:309.986667pt;}
.y27{bottom:325.826660pt;}
.y7a{bottom:329.346659pt;}
.y45{bottom:329.506667pt;}
.ya0{bottom:342.146647pt;}
.y26{bottom:345.346680pt;}
.y44{bottom:348.706667pt;}
.y79{bottom:348.866659pt;}
.y9f{bottom:361.666667pt;}
.y43{bottom:362.626613pt;}
.y25{bottom:364.866659pt;}
.y78{bottom:368.386678pt;}
.y9e{bottom:381.186686pt;}
.y24{bottom:384.386678pt;}
.y77{bottom:387.906657pt;}
.y9d{bottom:400.706665pt;}
.y23{bottom:403.906657pt;}
.y76{bottom:407.426676pt;}
.y22{bottom:423.426676pt;}
.y75{bottom:426.626668pt;}
.y9c{bottom:438.946655pt;}
.y21{bottom:442.946655pt;}
.y74{bottom:449.346680pt;}
.y9b{bottom:458.466675pt;}
.y20{bottom:462.466675pt;}
.y73{bottom:468.866659pt;}
.y1f{bottom:481.986654pt;}
.y72{bottom:488.386678pt;}
.y9a{bottom:496.706665pt;}
.y1e{bottom:501.506673pt;}
.y71{bottom:507.906657pt;}
.y99{bottom:516.226685pt;}
.y1d{bottom:521.186686pt;}
.y70{bottom:527.426676pt;}
.y98{bottom:535.746663pt;}
.y1c{bottom:540.733317pt;}
.y6f{bottom:546.973348pt;}
.y1b{bottom:560.253337pt;}
.y6e{bottom:566.493327pt;}
.y97{bottom:574.013346pt;}
.y1a{bottom:579.773315pt;}
.y6d{bottom:586.013346pt;}
.y96{bottom:593.533325pt;}
.y19{bottom:599.293335pt;}
.y6c{bottom:605.533325pt;}
.y95{bottom:613.053345pt;}
.y18{bottom:618.813314pt;}
.y6b{bottom:625.053345pt;}
.yb6{bottom:633.373332pt;}
.y17{bottom:638.333333pt;}
.y6a{bottom:644.573324pt;}
.y94{bottom:651.293335pt;}
.y16{bottom:657.853353pt;}
.y67{bottom:664.093343pt;}
.y93{bottom:670.813314pt;}
.yb5{bottom:671.613322pt;}
.y15{bottom:677.373332pt;}
.y66{bottom:683.773356pt;}
.y92{bottom:690.333333pt;}
.yb4{bottom:691.133301pt;}
.y14{bottom:696.893311pt;}
.y64{bottom:703.293294pt;}
.y91{bottom:709.853353pt;}
.yb3{bottom:710.653320pt;}
.y13{bottom:716.413330pt;}
.y63{bottom:722.813314pt;}
.y12{bottom:735.933350pt;}
.y62{bottom:742.333333pt;}
.y90{bottom:748.093343pt;}
.yb2{bottom:748.893311pt;}
.y11{bottom:757.853353pt;}
.y61{bottom:761.853353pt;}
.y8f{bottom:767.613363pt;}
.yb1{bottom:768.413330pt;}
.y10{bottom:777.413330pt;}
.y60{bottom:781.413330pt;}
.y8e{bottom:787.173340pt;}
.yb0{bottom:787.973307pt;}
.yf{bottom:796.933350pt;}
.y5f{bottom:800.933350pt;}
.y42{bottom:804.933333pt;}
.yaf{bottom:807.493327pt;}
.ye{bottom:816.453369pt;}
.y5d{bottom:820.453369pt;}
.y41{bottom:824.453333pt;}
.y8d{bottom:825.413330pt;}
.yd{bottom:835.973307pt;}
.y5b{bottom:839.973307pt;}
.y40{bottom:843.973333pt;}
.y8c{bottom:844.933350pt;}
.yae{bottom:845.733317pt;}
.y53{bottom:859.493327pt;}
.yc{bottom:860.773356pt;}
.y3f{bottom:863.493347pt;}
.yad{bottom:865.253337pt;}
.yb{bottom:875.013346pt;}
.y8b{bottom:883.013346pt;}
.y3e{bottom:883.013360pt;}
.ya{bottom:899.813314pt;}
.y3d{bottom:902.533360pt;}
.y8a{bottom:902.533366pt;}
.yac{bottom:903.493327pt;}
.y89{bottom:922.213298pt;}
.y3c{bottom:922.213360pt;}
.yab{bottom:923.013346pt;}
.y9{bottom:923.493327pt;}
.y88{bottom:941.733317pt;}
.y3b{bottom:941.733360pt;}
.yaa{bottom:942.533366pt;}
.y8{bottom:949.573324pt;}
.y87{bottom:961.253337pt;}
.y3a{bottom:961.253360pt;}
.y7{bottom:975.653320pt;}
.y52{bottom:980.773356pt;}
.y39{bottom:980.773360pt;}
.y36{bottom:1000.293240pt;}
.y4{bottom:1000.293294pt;}
.y35{bottom:1019.839960pt;}
.y3{bottom:1019.840007pt;}
.y34{bottom:1039.359960pt;}
.y2{bottom:1039.360026pt;}
.y33{bottom:1058.879960pt;}
.y1{bottom:1058.879964pt;}
.he{height:18.720000pt;}
.hc{height:18.880000pt;}
.hd{height:18.912000pt;}
.h3{height:24.468750pt;}
.h7{height:40.048750pt;}
.h5{height:42.649687pt;}
.h8{height:43.531250pt;}
.hf{height:44.965000pt;}
.h6{height:45.937500pt;}
.ha{height:52.834688pt;}
.hb{height:52.934271pt;}
.h2{height:63.656250pt;}
.h4{height:84.662813pt;}
.h9{height:113.920003pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w6{width:68.480000pt;}
.w7{width:68.832000pt;}
.w5{width:70.592000pt;}
.w4{width:91.839996pt;}
.w3{width:304.546672pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:4.800008pt;}
.xf{left:24.000000pt;}
.xd{left:27.520020pt;}
.xc{left:28.519979pt;}
.xe{left:31.039998pt;}
.x10{left:37.439982pt;}
.xb{left:42.399984pt;}
.x1{left:94.431985pt;}
.x11{left:96.351988pt;}
.x3{left:97.631987pt;}
.x4{left:118.431985pt;}
.x2{left:392.573312pt;}
.x7{left:399.293335pt;}
.x8{left:491.133341pt;}
.x9{left:561.733317pt;}
.xa{left:630.213338pt;}
.x5{left:702.559987pt;}
}


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