
/* 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_1746aee1989e.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_74ac5bf380a1.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_5a34ab16a95a.woff")format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_076749c1ecb5.woff")format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_30db905b018c.woff")format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_380559c326e3.woff")format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_d6eb39c1f8b3.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666000;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);}
.v2{vertical-align:-18.900000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.100000px;}
.v1{vertical-align:36.300000px;}
.ls8{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.546000px;}
.ls10{letter-spacing:-0.486000px;}
.lsf{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.438000px;}
.ls13{letter-spacing:-0.390000px;}
.ls15{letter-spacing:-0.306000px;}
.ls12{letter-spacing:-0.264000px;}
.ls14{letter-spacing:-0.246000px;}
.lse{letter-spacing:-0.234000px;}
.ls6{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.192000px;}
.ls11{letter-spacing:-0.090000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001632px;}
.ls4{letter-spacing:0.003000px;}
.ls2{letter-spacing:10.551000px;}
.ls1{letter-spacing:13.749000px;}
.ls3{letter-spacing:13.953000px;}
.lsc{letter-spacing:16.470000px;}
.lsb{letter-spacing:66.273000px;}
.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;}
}
.ws0{word-spacing:-82.308000px;}
.ws2{word-spacing:-56.723040px;}
.ws4{word-spacing:-56.722560px;}
.ws14{word-spacing:-55.572000px;}
.ws4b{word-spacing:-51.984000px;}
.ws1{word-spacing:-48.350880px;}
.ws3{word-spacing:-48.350640px;}
.ws37{word-spacing:-45.570600px;}
.ws22{word-spacing:-45.137400px;}
.ws2e{word-spacing:-44.966400px;}
.ws3b{word-spacing:-44.950800px;}
.ws39{word-spacing:-44.846400px;}
.ws19{word-spacing:-44.841600px;}
.ws15{word-spacing:-44.795400px;}
.ws1c{word-spacing:-44.747400px;}
.ws2c{word-spacing:-44.701800px;}
.ws29{word-spacing:-44.700000px;}
.ws23{word-spacing:-44.654400px;}
.ws20{word-spacing:-44.652600px;}
.ws2b{word-spacing:-44.612400px;}
.ws2a{word-spacing:-44.569200px;}
.ws4c{word-spacing:-44.566800px;}
.ws1a{word-spacing:-44.467200px;}
.ws9{word-spacing:-43.913400px;}
.ws1f{word-spacing:-43.771800px;}
.ws1d{word-spacing:-43.769400px;}
.ws30{word-spacing:-43.615800px;}
.ws2f{word-spacing:-43.615200px;}
.ws38{word-spacing:-43.592400px;}
.ws31{word-spacing:-43.428000px;}
.wsf{word-spacing:-43.411200px;}
.ws32{word-spacing:-43.404000px;}
.ws3a{word-spacing:-42.960600px;}
.ws16{word-spacing:-42.308400px;}
.ws18{word-spacing:-42.184800px;}
.ws21{word-spacing:-42.116400px;}
.wsc{word-spacing:-42.056400px;}
.wsb{word-spacing:-42.055800px;}
.ws35{word-spacing:-42.020400px;}
.ws33{word-spacing:-42.016200px;}
.ws12{word-spacing:-41.852400px;}
.ws1b{word-spacing:-41.851800px;}
.wse{word-spacing:-41.851200px;}
.ws10{word-spacing:-41.850600px;}
.wsd{word-spacing:-41.850000px;}
.ws17{word-spacing:-41.849400px;}
.ws11{word-spacing:-41.848800px;}
.ws36{word-spacing:-41.848200px;}
.wsa{word-spacing:-41.847600px;}
.ws13{word-spacing:-41.847000px;}
.ws8{word-spacing:-38.988000px;}
.ws47{word-spacing:-33.750000px;}
.ws3c{word-spacing:-33.138000px;}
.ws6{word-spacing:-32.490000px;}
.ws7{word-spacing:-32.487000px;}
.ws5{word-spacing:-27.000000px;}
.ws43{word-spacing:-26.737500px;}
.ws49{word-spacing:-26.308500px;}
.ws45{word-spacing:-26.222250px;}
.ws3f{word-spacing:-26.194500px;}
.ws4a{word-spacing:-26.175000px;}
.ws4d{word-spacing:-25.992000px;}
.ws46{word-spacing:-25.982250px;}
.ws3d{word-spacing:-24.368250px;}
.ws3e{word-spacing:-24.367500px;}
.ws44{word-spacing:-24.366750px;}
.ws40{word-spacing:-24.366000px;}
.ws41{word-spacing:-24.364500px;}
.ws42{word-spacing:-24.363000px;}
.ws1e{word-spacing:-19.347000px;}
.ws2d{word-spacing:-17.427000px;}
.ws34{word-spacing:-16.908000px;}
.ws24{word-spacing:-12.510000px;}
.ws27{word-spacing:-10.008000px;}
.ws26{word-spacing:-1.800000px;}
.ws28{word-spacing:0.000000px;}
.ws48{word-spacing:13.758000px;}
.ws25{word-spacing:974.664000px;}
._1{margin-left:-2.004000px;}
._3{width:1.488000px;}
._0{width:2.676960px;}
._2{width:18.616080px;}
._6{width:47.508000px;}
._5{width:66.273000px;}
._4{width:1267.872000px;}
.fc2{color:rgb(184,5,5);}
.fc1{color:rgb(85,134,233);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.000000px;}
.fs3{font-size:27.000000px;}
.fs7{font-size:30.690000px;}
.fsb{font-size:33.750000px;}
.fs8{font-size:36.000000px;}
.fs2{font-size:36.828000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fsd{font-size:66.000000px;}
.fs1{font-size:66.960000px;}
.fsc{font-size:72.000000px;}
.fs0{font-size:114.000000px;}
.fsa{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:25.066500px;}
.y44{bottom:50.670000px;}
.y1f{bottom:112.914000px;}
.y43{bottom:119.263500px;}
.y1e{bottom:129.414000px;}
.y42{bottom:135.763500px;}
.y1d{bottom:145.914000px;}
.y41{bottom:152.263500px;}
.y1c{bottom:162.414000px;}
.y40{bottom:168.763500px;}
.y1b{bottom:178.914000px;}
.y3f{bottom:185.263500px;}
.y1a{bottom:195.414000px;}
.y3e{bottom:201.763500px;}
.y19{bottom:211.914000px;}
.y3d{bottom:218.263500px;}
.y18{bottom:228.414000px;}
.y3c{bottom:234.763500px;}
.y17{bottom:244.914000px;}
.y3b{bottom:255.763500px;}
.y16{bottom:261.414000px;}
.y3a{bottom:272.263500px;}
.y15{bottom:282.414000px;}
.y39{bottom:288.763500px;}
.y14{bottom:298.914000px;}
.y38{bottom:305.263500px;}
.y13{bottom:315.414000px;}
.y37{bottom:321.763500px;}
.y12{bottom:331.914000px;}
.y36{bottom:342.763500px;}
.y11{bottom:348.414000px;}
.y35{bottom:359.263500px;}
.y10{bottom:364.914000px;}
.y34{bottom:375.763500px;}
.yf{bottom:381.414000px;}
.y33{bottom:392.263500px;}
.ye{bottom:397.914000px;}
.y32{bottom:408.763500px;}
.yd{bottom:414.414000px;}
.y31{bottom:425.263500px;}
.yc{bottom:430.914000px;}
.y9c{bottom:441.682500px;}
.y30{bottom:441.763500px;}
.yb{bottom:447.414000px;}
.y2f{bottom:458.263500px;}
.y9b{bottom:463.729500px;}
.ya{bottom:463.914000px;}
.y2e{bottom:474.763500px;}
.y9a{bottom:480.229500px;}
.y9{bottom:480.414000px;}
.y6f{bottom:481.504500px;}
.y2d{bottom:491.263500px;}
.y8{bottom:496.914000px;}
.y6e{bottom:498.004500px;}
.y99{bottom:502.729500px;}
.y2c{bottom:507.763500px;}
.y6d{bottom:514.504500px;}
.y98{bottom:519.229500px;}
.y2b{bottom:524.263500px;}
.y6c{bottom:531.004500px;}
.y2a{bottom:540.763500px;}
.y97{bottom:541.729500px;}
.y7{bottom:544.584000px;}
.y6b{bottom:547.504500px;}
.y96{bottom:558.229500px;}
.y29{bottom:561.763500px;}
.y6a{bottom:564.004500px;}
.y28{bottom:578.263500px;}
.y69{bottom:580.504500px;}
.y95{bottom:580.729500px;}
.y27{bottom:594.763500px;}
.y68{bottom:597.004500px;}
.y94{bottom:598.729500px;}
.y26{bottom:611.263500px;}
.y67{bottom:613.504500px;}
.y93{bottom:621.229500px;}
.y25{bottom:627.763500px;}
.y66{bottom:630.004500px;}
.y24{bottom:644.263500px;}
.y65{bottom:646.504500px;}
.y92{bottom:646.729500px;}
.y23{bottom:660.763500px;}
.y64{bottom:663.004500px;}
.y22{bottom:677.263500px;}
.y63{bottom:679.504500px;}
.y91{bottom:685.414500px;}
.y21{bottom:698.263500px;}
.y62{bottom:700.504500px;}
.y20{bottom:714.763500px;}
.y61{bottom:717.004500px;}
.y90{bottom:718.362000px;}
.y8f{bottom:729.837000px;}
.y60{bottom:733.504500px;}
.y8e{bottom:741.312000px;}
.y5f{bottom:750.004500px;}
.y8d{bottom:752.787000px;}
.y8c{bottom:764.262000px;}
.y5e{bottom:766.504500px;}
.y6{bottom:773.128500px;}
.y8b{bottom:775.737000px;}
.y5d{bottom:783.004500px;}
.y8a{bottom:787.212000px;}
.y89{bottom:798.687000px;}
.y5c{bottom:799.504500px;}
.y5{bottom:803.793000px;}
.y88{bottom:810.162000px;}
.y5b{bottom:816.004500px;}
.y87{bottom:821.637000px;}
.y4{bottom:826.369500px;}
.y5a{bottom:832.504500px;}
.y86{bottom:833.112000px;}
.y85{bottom:844.587000px;}
.y59{bottom:853.504500px;}
.y84{bottom:856.062000px;}
.y83{bottom:867.537000px;}
.y58{bottom:870.004500px;}
.y82{bottom:879.012000px;}
.y3{bottom:879.051000px;}
.y57{bottom:886.504500px;}
.y81{bottom:890.487000px;}
.y80{bottom:901.962000px;}
.y56{bottom:903.004500px;}
.y2{bottom:903.115500px;}
.y7f{bottom:913.437000px;}
.y55{bottom:919.504500px;}
.y7e{bottom:924.912000px;}
.y1{bottom:934.615500px;}
.y7d{bottom:936.387000px;}
.y54{bottom:940.504500px;}
.y7c{bottom:947.862000px;}
.y53{bottom:957.004500px;}
.y7b{bottom:959.337000px;}
.y7a{bottom:970.812000px;}
.y52{bottom:973.504500px;}
.y79{bottom:982.287000px;}
.y51{bottom:990.004500px;}
.y78{bottom:993.762000px;}
.y77{bottom:1005.237000px;}
.y50{bottom:1006.504500px;}
.y76{bottom:1016.712000px;}
.y4f{bottom:1023.004500px;}
.y75{bottom:1028.187000px;}
.y4e{bottom:1039.504500px;}
.y74{bottom:1039.662000px;}
.y48{bottom:1043.046000px;}
.y4d{bottom:1056.004500px;}
.y73{bottom:1070.476500px;}
.y4c{bottom:1072.504500px;}
.y72{bottom:1086.976500px;}
.y4b{bottom:1089.004500px;}
.y4a{bottom:1105.504500px;}
.y71{bottom:1106.476500px;}
.y47{bottom:1119.495000px;}
.y49{bottom:1122.004500px;}
.y70{bottom:1122.976500px;}
.y46{bottom:1148.830500px;}
.y9e{bottom:1200.903000px;}
.y9d{bottom:1228.738500px;}
.hd{height:8.904000px;}
.h6{height:20.034000px;}
.hf{height:25.042500px;}
.h12{height:26.712000px;}
.hc{height:33.390000px;}
.hb{height:37.546875px;}
.h8{height:38.390400px;}
.h7{height:40.068000px;}
.h9{height:44.214720px;}
.ha{height:46.933594px;}
.h11{height:48.906000px;}
.h10{height:53.352000px;}
.h5{height:63.626376px;}
.h4{height:69.837188px;}
.h3{height:84.474000px;}
.he{height:106.704000px;}
.h2{height:1262.835000px;}
.h0{height:1262.835022px;}
.h1{height:1263.000000px;}
.w2{width:892.914000px;}
.w0{width:892.914001px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.x2{left:459.957000px;}
.x5{left:477.957000px;}
.x4{left:481.216500px;}
.x6{left:486.957000px;}
.x3{left:589.858500px;}
.x7{left:724.603500px;}
@media print{
.v2{vertical-align:-16.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.533333pt;}
.v1{vertical-align:32.266667pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.485333pt;}
.ls10{letter-spacing:-0.432000pt;}
.lsf{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.389333pt;}
.ls13{letter-spacing:-0.346667pt;}
.ls15{letter-spacing:-0.272000pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls14{letter-spacing:-0.218667pt;}
.lse{letter-spacing:-0.208000pt;}
.ls6{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.170667pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001451pt;}
.ls4{letter-spacing:0.002667pt;}
.ls2{letter-spacing:9.378667pt;}
.ls1{letter-spacing:12.221333pt;}
.ls3{letter-spacing:12.402667pt;}
.lsc{letter-spacing:14.640000pt;}
.lsb{letter-spacing:58.909333pt;}
.ws0{word-spacing:-73.162667pt;}
.ws2{word-spacing:-50.420480pt;}
.ws4{word-spacing:-50.420053pt;}
.ws14{word-spacing:-49.397333pt;}
.ws4b{word-spacing:-46.208000pt;}
.ws1{word-spacing:-42.978560pt;}
.ws3{word-spacing:-42.978347pt;}
.ws37{word-spacing:-40.507200pt;}
.ws22{word-spacing:-40.122133pt;}
.ws2e{word-spacing:-39.970133pt;}
.ws3b{word-spacing:-39.956267pt;}
.ws39{word-spacing:-39.863467pt;}
.ws19{word-spacing:-39.859200pt;}
.ws15{word-spacing:-39.818133pt;}
.ws1c{word-spacing:-39.775467pt;}
.ws2c{word-spacing:-39.734933pt;}
.ws29{word-spacing:-39.733333pt;}
.ws23{word-spacing:-39.692800pt;}
.ws20{word-spacing:-39.691200pt;}
.ws2b{word-spacing:-39.655467pt;}
.ws2a{word-spacing:-39.617067pt;}
.ws4c{word-spacing:-39.614933pt;}
.ws1a{word-spacing:-39.526400pt;}
.ws9{word-spacing:-39.034133pt;}
.ws1f{word-spacing:-38.908267pt;}
.ws1d{word-spacing:-38.906133pt;}
.ws30{word-spacing:-38.769600pt;}
.ws2f{word-spacing:-38.769067pt;}
.ws38{word-spacing:-38.748800pt;}
.ws31{word-spacing:-38.602667pt;}
.wsf{word-spacing:-38.587733pt;}
.ws32{word-spacing:-38.581333pt;}
.ws3a{word-spacing:-38.187200pt;}
.ws16{word-spacing:-37.607467pt;}
.ws18{word-spacing:-37.497600pt;}
.ws21{word-spacing:-37.436800pt;}
.wsc{word-spacing:-37.383467pt;}
.wsb{word-spacing:-37.382933pt;}
.ws35{word-spacing:-37.351467pt;}
.ws33{word-spacing:-37.347733pt;}
.ws12{word-spacing:-37.202133pt;}
.ws1b{word-spacing:-37.201600pt;}
.wse{word-spacing:-37.201067pt;}
.ws10{word-spacing:-37.200533pt;}
.wsd{word-spacing:-37.200000pt;}
.ws17{word-spacing:-37.199467pt;}
.ws11{word-spacing:-37.198933pt;}
.ws36{word-spacing:-37.198400pt;}
.wsa{word-spacing:-37.197867pt;}
.ws13{word-spacing:-37.197333pt;}
.ws8{word-spacing:-34.656000pt;}
.ws47{word-spacing:-30.000000pt;}
.ws3c{word-spacing:-29.456000pt;}
.ws6{word-spacing:-28.880000pt;}
.ws7{word-spacing:-28.877333pt;}
.ws5{word-spacing:-24.000000pt;}
.ws43{word-spacing:-23.766667pt;}
.ws49{word-spacing:-23.385333pt;}
.ws45{word-spacing:-23.308667pt;}
.ws3f{word-spacing:-23.284000pt;}
.ws4a{word-spacing:-23.266667pt;}
.ws4d{word-spacing:-23.104000pt;}
.ws46{word-spacing:-23.095333pt;}
.ws3d{word-spacing:-21.660667pt;}
.ws3e{word-spacing:-21.660000pt;}
.ws44{word-spacing:-21.659333pt;}
.ws40{word-spacing:-21.658667pt;}
.ws41{word-spacing:-21.657333pt;}
.ws42{word-spacing:-21.656000pt;}
.ws1e{word-spacing:-17.197333pt;}
.ws2d{word-spacing:-15.490667pt;}
.ws34{word-spacing:-15.029333pt;}
.ws24{word-spacing:-11.120000pt;}
.ws27{word-spacing:-8.896000pt;}
.ws26{word-spacing:-1.600000pt;}
.ws28{word-spacing:0.000000pt;}
.ws48{word-spacing:12.229333pt;}
.ws25{word-spacing:866.368000pt;}
._1{margin-left:-1.781333pt;}
._3{width:1.322667pt;}
._0{width:2.379520pt;}
._2{width:16.547627pt;}
._6{width:42.229333pt;}
._5{width:58.909333pt;}
._4{width:1126.997333pt;}
.fs9{font-size:10.666667pt;}
.fs3{font-size:24.000000pt;}
.fs7{font-size:27.280000pt;}
.fsb{font-size:30.000000pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:32.736000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fsd{font-size:58.666667pt;}
.fs1{font-size:59.520000pt;}
.fsc{font-size:64.000000pt;}
.fs0{font-size:101.333333pt;}
.fsa{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:22.281333pt;}
.y44{bottom:45.040000pt;}
.y1f{bottom:100.368000pt;}
.y43{bottom:106.012000pt;}
.y1e{bottom:115.034667pt;}
.y42{bottom:120.678667pt;}
.y1d{bottom:129.701333pt;}
.y41{bottom:135.345333pt;}
.y1c{bottom:144.368000pt;}
.y40{bottom:150.012000pt;}
.y1b{bottom:159.034667pt;}
.y3f{bottom:164.678667pt;}
.y1a{bottom:173.701333pt;}
.y3e{bottom:179.345333pt;}
.y19{bottom:188.368000pt;}
.y3d{bottom:194.012000pt;}
.y18{bottom:203.034667pt;}
.y3c{bottom:208.678667pt;}
.y17{bottom:217.701333pt;}
.y3b{bottom:227.345333pt;}
.y16{bottom:232.368000pt;}
.y3a{bottom:242.012000pt;}
.y15{bottom:251.034667pt;}
.y39{bottom:256.678667pt;}
.y14{bottom:265.701333pt;}
.y38{bottom:271.345333pt;}
.y13{bottom:280.368000pt;}
.y37{bottom:286.012000pt;}
.y12{bottom:295.034667pt;}
.y36{bottom:304.678667pt;}
.y11{bottom:309.701333pt;}
.y35{bottom:319.345333pt;}
.y10{bottom:324.368000pt;}
.y34{bottom:334.012000pt;}
.yf{bottom:339.034667pt;}
.y33{bottom:348.678667pt;}
.ye{bottom:353.701333pt;}
.y32{bottom:363.345333pt;}
.yd{bottom:368.368000pt;}
.y31{bottom:378.012000pt;}
.yc{bottom:383.034667pt;}
.y9c{bottom:392.606667pt;}
.y30{bottom:392.678667pt;}
.yb{bottom:397.701333pt;}
.y2f{bottom:407.345333pt;}
.y9b{bottom:412.204000pt;}
.ya{bottom:412.368000pt;}
.y2e{bottom:422.012000pt;}
.y9a{bottom:426.870667pt;}
.y9{bottom:427.034667pt;}
.y6f{bottom:428.004000pt;}
.y2d{bottom:436.678667pt;}
.y8{bottom:441.701333pt;}
.y6e{bottom:442.670667pt;}
.y99{bottom:446.870667pt;}
.y2c{bottom:451.345333pt;}
.y6d{bottom:457.337333pt;}
.y98{bottom:461.537333pt;}
.y2b{bottom:466.012000pt;}
.y6c{bottom:472.004000pt;}
.y2a{bottom:480.678667pt;}
.y97{bottom:481.537333pt;}
.y7{bottom:484.074667pt;}
.y6b{bottom:486.670667pt;}
.y96{bottom:496.204000pt;}
.y29{bottom:499.345333pt;}
.y6a{bottom:501.337333pt;}
.y28{bottom:514.012000pt;}
.y69{bottom:516.004000pt;}
.y95{bottom:516.204000pt;}
.y27{bottom:528.678667pt;}
.y68{bottom:530.670667pt;}
.y94{bottom:532.204000pt;}
.y26{bottom:543.345333pt;}
.y67{bottom:545.337333pt;}
.y93{bottom:552.204000pt;}
.y25{bottom:558.012000pt;}
.y66{bottom:560.004000pt;}
.y24{bottom:572.678667pt;}
.y65{bottom:574.670667pt;}
.y92{bottom:574.870667pt;}
.y23{bottom:587.345333pt;}
.y64{bottom:589.337333pt;}
.y22{bottom:602.012000pt;}
.y63{bottom:604.004000pt;}
.y91{bottom:609.257333pt;}
.y21{bottom:620.678667pt;}
.y62{bottom:622.670667pt;}
.y20{bottom:635.345333pt;}
.y61{bottom:637.337333pt;}
.y90{bottom:638.544000pt;}
.y8f{bottom:648.744000pt;}
.y60{bottom:652.004000pt;}
.y8e{bottom:658.944000pt;}
.y5f{bottom:666.670667pt;}
.y8d{bottom:669.144000pt;}
.y8c{bottom:679.344000pt;}
.y5e{bottom:681.337333pt;}
.y6{bottom:687.225333pt;}
.y8b{bottom:689.544000pt;}
.y5d{bottom:696.004000pt;}
.y8a{bottom:699.744000pt;}
.y89{bottom:709.944000pt;}
.y5c{bottom:710.670667pt;}
.y5{bottom:714.482667pt;}
.y88{bottom:720.144000pt;}
.y5b{bottom:725.337333pt;}
.y87{bottom:730.344000pt;}
.y4{bottom:734.550667pt;}
.y5a{bottom:740.004000pt;}
.y86{bottom:740.544000pt;}
.y85{bottom:750.744000pt;}
.y59{bottom:758.670667pt;}
.y84{bottom:760.944000pt;}
.y83{bottom:771.144000pt;}
.y58{bottom:773.337333pt;}
.y82{bottom:781.344000pt;}
.y3{bottom:781.378667pt;}
.y57{bottom:788.004000pt;}
.y81{bottom:791.544000pt;}
.y80{bottom:801.744000pt;}
.y56{bottom:802.670667pt;}
.y2{bottom:802.769333pt;}
.y7f{bottom:811.944000pt;}
.y55{bottom:817.337333pt;}
.y7e{bottom:822.144000pt;}
.y1{bottom:830.769333pt;}
.y7d{bottom:832.344000pt;}
.y54{bottom:836.004000pt;}
.y7c{bottom:842.544000pt;}
.y53{bottom:850.670667pt;}
.y7b{bottom:852.744000pt;}
.y7a{bottom:862.944000pt;}
.y52{bottom:865.337333pt;}
.y79{bottom:873.144000pt;}
.y51{bottom:880.004000pt;}
.y78{bottom:883.344000pt;}
.y77{bottom:893.544000pt;}
.y50{bottom:894.670667pt;}
.y76{bottom:903.744000pt;}
.y4f{bottom:909.337333pt;}
.y75{bottom:913.944000pt;}
.y4e{bottom:924.004000pt;}
.y74{bottom:924.144000pt;}
.y48{bottom:927.152000pt;}
.y4d{bottom:938.670667pt;}
.y73{bottom:951.534667pt;}
.y4c{bottom:953.337333pt;}
.y72{bottom:966.201333pt;}
.y4b{bottom:968.004000pt;}
.y4a{bottom:982.670667pt;}
.y71{bottom:983.534667pt;}
.y47{bottom:995.106667pt;}
.y49{bottom:997.337333pt;}
.y70{bottom:998.201333pt;}
.y46{bottom:1021.182667pt;}
.y9e{bottom:1067.469333pt;}
.y9d{bottom:1092.212000pt;}
.hd{height:7.914667pt;}
.h6{height:17.808000pt;}
.hf{height:22.260000pt;}
.h12{height:23.744000pt;}
.hc{height:29.680000pt;}
.hb{height:33.375000pt;}
.h8{height:34.124800pt;}
.h7{height:35.616000pt;}
.h9{height:39.301973pt;}
.ha{height:41.718750pt;}
.h11{height:43.472000pt;}
.h10{height:47.424000pt;}
.h5{height:56.556779pt;}
.h4{height:62.077500pt;}
.h3{height:75.088000pt;}
.he{height:94.848000pt;}
.h2{height:1122.520000pt;}
.h0{height:1122.520020pt;}
.h1{height:1122.666667pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.x2{left:408.850667pt;}
.x5{left:424.850667pt;}
.x4{left:427.748000pt;}
.x6{left:432.850667pt;}
.x3{left:524.318667pt;}
.x7{left:644.092000pt;}
}


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