
/* 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_9a3a828ccf64.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_5f15a3074dd7.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_953a7f238591.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_78a6c7fb9a58.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_e8e7bbddfd96.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_d478b9e0dacc.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_7470d6922a9b.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_b780abb13561.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;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022331px;}
.ls8{letter-spacing:0.060600px;}
.lse{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.216007px;}
.ls7{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.288007px;}
.lsb{letter-spacing:0.288013px;}
.lsf{letter-spacing:0.359912px;}
.lsd{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;}
}
.ws4{word-spacing:-72.000000px;}
.wsa{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.272000px;}
.ws9{word-spacing:-16.128000px;}
.ws1{word-spacing:-15.768000px;}
.ws8{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws3{word-spacing:-10.902240px;}
.ws6{word-spacing:-8.786880px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-4.104000px;}
._e{margin-left:-2.711978px;}
._1{margin-left:-1.032022px;}
._0{width:1.215875px;}
._11{width:2.351429px;}
._4{width:3.744000px;}
._a{width:4.799993px;}
._f{width:6.408000px;}
._2{width:7.848000px;}
._10{width:9.008125px;}
._14{width:10.411928px;}
._13{width:11.520000px;}
._3{width:13.392000px;}
._9{width:14.952059px;}
._12{width:17.512822px;}
._d{width:18.864000px;}
._c{width:19.944000px;}
._6{width:21.168000px;}
._5{width:22.824000px;}
._1b{width:24.047995px;}
._1c{width:25.136152px;}
._1e{width:26.403811px;}
._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.352000px;}
._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;}
.y5d{bottom:3.959930px;}
.y68{bottom:3.959976px;}
.y56{bottom:3.960022px;}
.y69{bottom:6.839951px;}
.y58{bottom:6.839996px;}
.y5b{bottom:6.840088px;}
.y5e{bottom:7.019989px;}
.y6e{bottom:7.020035px;}
.y55{bottom:22.320007px;}
.y54{bottom:40.500000px;}
.y6{bottom:56.879997px;}
.y38{bottom:56.880000px;}
.y53{bottom:58.859985px;}
.y37{bottom:70.919955px;}
.y5{bottom:70.919998px;}
.y88{bottom:99.180004px;}
.yab{bottom:104.040000px;}
.y87{bottom:121.175995px;}
.y51{bottom:122.795955px;}
.y32{bottom:124.775997px;}
.yaa{bottom:126.036003px;}
.y86{bottom:143.136005px;}
.y50{bottom:144.755955px;}
.y31{bottom:146.735996px;}
.ya9{bottom:147.996002px;}
.y85{bottom:165.089996px;}
.y4f{bottom:166.710015px;}
.y30{bottom:168.689999px;}
.y84{bottom:187.049995px;}
.y4e{bottom:188.670015px;}
.y2f{bottom:190.649998px;}
.ya8{bottom:191.009995px;}
.y83{bottom:209.009995px;}
.y4d{bottom:210.630015px;}
.y2e{bottom:212.610008px;}
.y82{bottom:230.969994px;}
.y4c{bottom:232.590015px;}
.ya7{bottom:234.030006px;}
.y2d{bottom:234.570007px;}
.y81{bottom:252.929993px;}
.y4b{bottom:254.550015px;}
.ya6{bottom:255.990005px;}
.y2c{bottom:256.530006px;}
.y80{bottom:274.889992px;}
.y4a{bottom:276.510015px;}
.y2b{bottom:278.669998px;}
.y7f{bottom:296.849991px;}
.y49{bottom:298.470015px;}
.ya5{bottom:299.009995px;}
.y2a{bottom:300.629997px;}
.y7e{bottom:318.809990px;}
.y48{bottom:320.430015px;}
.ya4{bottom:320.969994px;}
.y29{bottom:322.589996px;}
.y7d{bottom:340.769989px;}
.y47{bottom:342.570015px;}
.ya3{bottom:342.929993px;}
.y28{bottom:344.549995px;}
.y7c{bottom:362.730011px;}
.y46{bottom:365.430015px;}
.y27{bottom:366.554993px;}
.y7b{bottom:384.914978px;}
.ya2{bottom:385.994980px;}
.y45{bottom:387.435015px;}
.y26{bottom:388.515015px;}
.y7a{bottom:406.875000px;}
.ya1{bottom:407.955002px;}
.y44{bottom:409.035000px;}
.y25{bottom:410.474991px;}
.y43{bottom:424.694940px;}
.y79{bottom:428.835022px;}
.ya0{bottom:429.914978px;}
.y24{bottom:432.435013px;}
.y78{bottom:450.794998px;}
.y9f{bottom:451.875000px;}
.y23{bottom:454.394989px;}
.y77{bottom:472.755020px;}
.y22{bottom:476.355011px;}
.y76{bottom:494.714996px;}
.y9e{bottom:494.894989px;}
.y21{bottom:498.314987px;}
.y75{bottom:516.675018px;}
.y9d{bottom:516.855011px;}
.y20{bottom:520.275009px;}
.y74{bottom:538.634995px;}
.y9c{bottom:538.814987px;}
.y1f{bottom:542.234985px;}
.y73{bottom:560.595016px;}
.y9b{bottom:560.775009px;}
.y1e{bottom:564.195007px;}
.y72{bottom:582.195007px;}
.y1d{bottom:586.335022px;}
.y9a{bottom:603.794998px;}
.y71{bottom:607.574982px;}
.y1c{bottom:608.294998px;}
.y99{bottom:625.785004px;}
.y70{bottom:629.564987px;}
.y1b{bottom:630.285004px;}
.y6f{bottom:651.525009px;}
.y1a{bottom:652.244980px;}
.y98{bottom:668.625000px;}
.y6d{bottom:673.484985px;}
.y19{bottom:674.205002px;}
.y97{bottom:690.585022px;}
.y6c{bottom:695.445007px;}
.y18{bottom:696.164978px;}
.y96{bottom:712.544998px;}
.y6b{bottom:717.585022px;}
.y17{bottom:718.125000px;}
.y6a{bottom:739.544998px;}
.y16{bottom:740.085022px;}
.y95{bottom:755.564987px;}
.y67{bottom:761.505020px;}
.y15{bottom:762.044998px;}
.y94{bottom:777.524963px;}
.y66{bottom:783.464996px;}
.y14{bottom:784.004974px;}
.y93{bottom:799.484985px;}
.y65{bottom:805.425018px;}
.y13{bottom:805.964996px;}
.y64{bottom:827.385040px;}
.y12{bottom:827.925018px;}
.y92{bottom:842.504974px;}
.y63{bottom:849.344971px;}
.y11{bottom:852.585022px;}
.y91{bottom:864.464996px;}
.y62{bottom:871.304993px;}
.y10{bottom:874.545044px;}
.yb2{bottom:885.570007px;}
.y90{bottom:886.469971px;}
.y61{bottom:893.309967px;}
.yf{bottom:896.550018px;}
.y42{bottom:905.550000px;}
.yb1{bottom:907.530029px;}
.y8f{bottom:908.429993px;}
.y60{bottom:915.269989px;}
.ye{bottom:918.510040px;}
.y41{bottom:927.510000px;}
.yb0{bottom:929.489960px;}
.y5f{bottom:937.230011px;}
.yd{bottom:940.469971px;}
.y40{bottom:949.470000px;}
.y8e{bottom:951.449982px;}
.y5c{bottom:959.190033px;}
.yc{bottom:968.370026px;}
.y3f{bottom:971.430015px;}
.yaf{bottom:972.510040px;}
.y8d{bottom:973.410004px;}
.y5a{bottom:981.329956px;}
.yb{bottom:984.390015px;}
.y3e{bottom:993.390030px;}
.yae{bottom:994.469971px;}
.y8c{bottom:995.370026px;}
.y59{bottom:1003.289978px;}
.ya{bottom:1012.289978px;}
.y3d{bottom:1015.350030px;}
.yad{bottom:1016.429993px;}
.y57{bottom:1025.250000px;}
.y3c{bottom:1037.490030px;}
.y8b{bottom:1038.390015px;}
.y9{bottom:1038.929993px;}
.y52{bottom:1047.210022px;}
.y3b{bottom:1059.450030px;}
.y8a{bottom:1060.350037px;}
.y8{bottom:1068.269989px;}
.yac{bottom:1081.410004px;}
.y3a{bottom:1081.410030px;}
.y7{bottom:1097.609985px;}
.y89{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;}
.hd{height:21.060000px;}
.hc{height:21.240000px;}
.he{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;}
.h9{height:73.260000px;}
.h4{height:95.245664px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w6{width:103.140003px;}
.w4{width:103.319996px;}
.w5{width:103.355999px;}
.w3{width:342.615005px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:5.400009px;}
.xc{left:42.119980px;}
.xb{left:43.919998px;}
.xd{left:45.899963px;}
.xa{left:47.699982px;}
.x1{left:106.235983px;}
.xe{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:655.890015px;}
.x5{left:789.480015px;}
@media print{
.v1{vertical-align:-21.119792pt;}
.v2{vertical-align:-5.120107pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.559896pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019850pt;}
.ls8{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.192006pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.256007pt;}
.lsb{letter-spacing:0.256011pt;}
.lsf{letter-spacing:0.319922pt;}
.lsd{letter-spacing:0.320003pt;}
.ls2{letter-spacing:58.346672pt;}
.ws4{word-spacing:-64.000000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws1{word-spacing:-14.016000pt;}
.ws8{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws3{word-spacing:-9.690880pt;}
.ws6{word-spacing:-7.810560pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-3.648000pt;}
._e{margin-left:-2.410647pt;}
._1{margin-left:-0.917353pt;}
._0{width:1.080778pt;}
._11{width:2.090159pt;}
._4{width:3.328000pt;}
._a{width:4.266660pt;}
._f{width:5.696000pt;}
._2{width:6.976000pt;}
._10{width:8.007222pt;}
._14{width:9.255047pt;}
._13{width:10.240000pt;}
._3{width:11.904000pt;}
._9{width:13.290719pt;}
._12{width:15.566953pt;}
._d{width:16.768000pt;}
._c{width:17.728000pt;}
._6{width:18.816000pt;}
._5{width:20.288000pt;}
._1b{width:21.375995pt;}
._1c{width:22.343246pt;}
._1e{width:23.470054pt;}
._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.424000pt;}
._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;}
.y5d{bottom:3.519938pt;}
.y68{bottom:3.519979pt;}
.y56{bottom:3.520020pt;}
.y69{bottom:6.079956pt;}
.y58{bottom:6.079997pt;}
.y5b{bottom:6.080078pt;}
.y5e{bottom:6.239990pt;}
.y6e{bottom:6.240031pt;}
.y55{bottom:19.840007pt;}
.y54{bottom:36.000000pt;}
.y6{bottom:50.559998pt;}
.y38{bottom:50.560000pt;}
.y53{bottom:52.319987pt;}
.y37{bottom:63.039960pt;}
.y5{bottom:63.039998pt;}
.y88{bottom:88.160004pt;}
.yab{bottom:92.480000pt;}
.y87{bottom:107.711995pt;}
.y51{bottom:109.151960pt;}
.y32{bottom:110.911997pt;}
.yaa{bottom:112.032003pt;}
.y86{bottom:127.232005pt;}
.y50{bottom:128.671960pt;}
.y31{bottom:130.431997pt;}
.ya9{bottom:131.552002pt;}
.y85{bottom:146.746663pt;}
.y4f{bottom:148.186680pt;}
.y30{bottom:149.946665pt;}
.y84{bottom:166.266663pt;}
.y4e{bottom:167.706680pt;}
.y2f{bottom:169.466665pt;}
.ya8{bottom:169.786662pt;}
.y83{bottom:185.786662pt;}
.y4d{bottom:187.226680pt;}
.y2e{bottom:188.986674pt;}
.y82{bottom:205.306661pt;}
.y4c{bottom:206.746680pt;}
.ya7{bottom:208.026672pt;}
.y2d{bottom:208.506673pt;}
.y81{bottom:224.826660pt;}
.y4b{bottom:226.266680pt;}
.ya6{bottom:227.546672pt;}
.y2c{bottom:228.026672pt;}
.y80{bottom:244.346659pt;}
.y4a{bottom:245.786680pt;}
.y2b{bottom:247.706665pt;}
.y7f{bottom:263.866659pt;}
.y49{bottom:265.306680pt;}
.ya5{bottom:265.786662pt;}
.y2a{bottom:267.226664pt;}
.y7e{bottom:283.386658pt;}
.y48{bottom:284.826680pt;}
.ya4{bottom:285.306661pt;}
.y29{bottom:286.746663pt;}
.y7d{bottom:302.906657pt;}
.y47{bottom:304.506680pt;}
.ya3{bottom:304.826660pt;}
.y28{bottom:306.266663pt;}
.y7c{bottom:322.426676pt;}
.y46{bottom:324.826680pt;}
.y27{bottom:325.826660pt;}
.y7b{bottom:342.146647pt;}
.ya2{bottom:343.106649pt;}
.y45{bottom:344.386680pt;}
.y26{bottom:345.346680pt;}
.y7a{bottom:361.666667pt;}
.ya1{bottom:362.626668pt;}
.y44{bottom:363.586667pt;}
.y25{bottom:364.866659pt;}
.y43{bottom:377.506613pt;}
.y79{bottom:381.186686pt;}
.ya0{bottom:382.146647pt;}
.y24{bottom:384.386678pt;}
.y78{bottom:400.706665pt;}
.y9f{bottom:401.666667pt;}
.y23{bottom:403.906657pt;}
.y77{bottom:420.226685pt;}
.y22{bottom:423.426676pt;}
.y76{bottom:439.746663pt;}
.y9e{bottom:439.906657pt;}
.y21{bottom:442.946655pt;}
.y75{bottom:459.266683pt;}
.y9d{bottom:459.426676pt;}
.y20{bottom:462.466675pt;}
.y74{bottom:478.786662pt;}
.y9c{bottom:478.946655pt;}
.y1f{bottom:481.986654pt;}
.y73{bottom:498.306681pt;}
.y9b{bottom:498.466675pt;}
.y1e{bottom:501.506673pt;}
.y72{bottom:517.506673pt;}
.y1d{bottom:521.186686pt;}
.y9a{bottom:536.706665pt;}
.y71{bottom:540.066650pt;}
.y1c{bottom:540.706665pt;}
.y99{bottom:556.253337pt;}
.y70{bottom:559.613322pt;}
.y1b{bottom:560.253337pt;}
.y6f{bottom:579.133341pt;}
.y1a{bottom:579.773315pt;}
.y98{bottom:594.333333pt;}
.y6d{bottom:598.653320pt;}
.y19{bottom:599.293335pt;}
.y97{bottom:613.853353pt;}
.y6c{bottom:618.173340pt;}
.y18{bottom:618.813314pt;}
.y96{bottom:633.373332pt;}
.y6b{bottom:637.853353pt;}
.y17{bottom:638.333333pt;}
.y6a{bottom:657.373332pt;}
.y16{bottom:657.853353pt;}
.y95{bottom:671.613322pt;}
.y67{bottom:676.893351pt;}
.y15{bottom:677.373332pt;}
.y94{bottom:691.133301pt;}
.y66{bottom:696.413330pt;}
.y14{bottom:696.893311pt;}
.y93{bottom:710.653320pt;}
.y65{bottom:715.933350pt;}
.y13{bottom:716.413330pt;}
.y64{bottom:735.453369pt;}
.y12{bottom:735.933350pt;}
.y92{bottom:748.893311pt;}
.y63{bottom:754.973307pt;}
.y11{bottom:757.853353pt;}
.y91{bottom:768.413330pt;}
.y62{bottom:774.493327pt;}
.y10{bottom:777.373372pt;}
.yb2{bottom:787.173340pt;}
.y90{bottom:787.973307pt;}
.y61{bottom:794.053304pt;}
.yf{bottom:796.933350pt;}
.y42{bottom:804.933333pt;}
.yb1{bottom:806.693359pt;}
.y8f{bottom:807.493327pt;}
.y60{bottom:813.573324pt;}
.ye{bottom:816.453369pt;}
.y41{bottom:824.453333pt;}
.yb0{bottom:826.213298pt;}
.y5f{bottom:833.093343pt;}
.yd{bottom:835.973307pt;}
.y40{bottom:843.973333pt;}
.y8e{bottom:845.733317pt;}
.y5c{bottom:852.613363pt;}
.yc{bottom:860.773356pt;}
.y3f{bottom:863.493347pt;}
.yaf{bottom:864.453369pt;}
.y8d{bottom:865.253337pt;}
.y5a{bottom:872.293294pt;}
.yb{bottom:875.013346pt;}
.y3e{bottom:883.013360pt;}
.yae{bottom:883.973307pt;}
.y8c{bottom:884.773356pt;}
.y59{bottom:891.813314pt;}
.ya{bottom:899.813314pt;}
.y3d{bottom:902.533360pt;}
.yad{bottom:903.493327pt;}
.y57{bottom:911.333333pt;}
.y3c{bottom:922.213360pt;}
.y8b{bottom:923.013346pt;}
.y9{bottom:923.493327pt;}
.y52{bottom:930.853353pt;}
.y3b{bottom:941.733360pt;}
.y8a{bottom:942.533366pt;}
.y8{bottom:949.573324pt;}
.yac{bottom:961.253337pt;}
.y3a{bottom:961.253360pt;}
.y7{bottom:975.653320pt;}
.y89{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;}
.hd{height:18.720000pt;}
.hc{height:18.880000pt;}
.he{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;}
.h9{height:65.120000pt;}
.h4{height:84.662813pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w6{width:91.680003pt;}
.w4{width:91.839996pt;}
.w5{width:91.871999pt;}
.w3{width:304.546672pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:4.800008pt;}
.xc{left:37.439982pt;}
.xb{left:39.039998pt;}
.xd{left:40.799967pt;}
.xa{left:42.399984pt;}
.x1{left:94.431985pt;}
.xe{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:583.013346pt;}
.x5{left:701.760013pt;}
}


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