
/* 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_820b935a2527.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_f2c16bd8dba9.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_3b2d36a16f97.woff")format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_2a3a19443b8d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.950000;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_3c5d039c6b53.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_d6eb39c1f8b3.woff")format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url("fonts/font_0006_d672f3c31b57.woff")format("woff");}.ff7{font-family:ff7;line-height:0.888000;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:18.900000px;}
.v4{vertical-align:23.100000px;}
.v1{vertical-align:27.228000px;}
.ls12{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.672000px;}
.ls11{letter-spacing:-0.642000px;}
.ls9{letter-spacing:-0.624000px;}
.ls10{letter-spacing:-0.462000px;}
.ls14{letter-spacing:-0.450000px;}
.ls18{letter-spacing:-0.444000px;}
.lsa{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.312000px;}
.ls8{letter-spacing:-0.294000px;}
.ls13{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.246000px;}
.ls15{letter-spacing:-0.210000px;}
.lsf{letter-spacing:-0.192000px;}
.ls6{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.168000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001632px;}
.lsb{letter-spacing:0.003000px;}
.ls3{letter-spacing:10.881000px;}
.ls1{letter-spacing:10.917000px;}
.lsc{letter-spacing:13.095000px;}
.ls2{letter-spacing:13.953000px;}
.lse{letter-spacing:16.470000px;}
.lsd{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.726640px;}
.ws7{word-spacing:-56.724000px;}
.ws6{word-spacing:-56.722560px;}
.ws28{word-spacing:-55.800000px;}
.ws44{word-spacing:-51.984000px;}
.ws5{word-spacing:-48.347520px;}
.ws4{word-spacing:-48.347280px;}
.ws19{word-spacing:-45.158400px;}
.ws2c{word-spacing:-44.937600px;}
.ws21{word-spacing:-44.924400px;}
.ws22{word-spacing:-44.919600px;}
.ws1a{word-spacing:-44.783400px;}
.ws45{word-spacing:-44.667000px;}
.ws46{word-spacing:-44.666400px;}
.ws17{word-spacing:-44.654400px;}
.ws34{word-spacing:-44.653200px;}
.ws18{word-spacing:-44.650800px;}
.ws2f{word-spacing:-44.612400px;}
.ws10{word-spacing:-44.611800px;}
.ws20{word-spacing:-44.610600px;}
.ws33{word-spacing:-44.609400px;}
.ws2e{word-spacing:-44.608800px;}
.ws1d{word-spacing:-44.568600px;}
.ws12{word-spacing:-44.528400px;}
.ws13{word-spacing:-44.527800px;}
.wsd{word-spacing:-44.157600px;}
.ws1e{word-spacing:-44.103600px;}
.ws2d{word-spacing:-43.657200px;}
.ws2a{word-spacing:-43.561200px;}
.ws1c{word-spacing:-43.141800px;}
.ws1f{word-spacing:-42.955200px;}
.ws29{word-spacing:-42.707400px;}
.ws2b{word-spacing:-42.541200px;}
.ws1b{word-spacing:-42.163200px;}
.ws32{word-spacing:-41.989200px;}
.ws30{word-spacing:-41.986800px;}
.wsc{word-spacing:-41.852400px;}
.ws11{word-spacing:-41.851800px;}
.ws15{word-spacing:-41.851200px;}
.wsf{word-spacing:-41.850600px;}
.wsb{word-spacing:-41.850000px;}
.wsa{word-spacing:-41.849400px;}
.wse{word-spacing:-41.848800px;}
.ws14{word-spacing:-41.847600px;}
.ws16{word-spacing:-41.847000px;}
.ws25{word-spacing:-32.490000px;}
.ws3e{word-spacing:-24.367500px;}
.ws3{word-spacing:-20.495520px;}
.ws1{word-spacing:-20.492880px;}
.ws38{word-spacing:-19.710000px;}
.ws31{word-spacing:-16.878000px;}
.ws9{word-spacing:-16.524000px;}
.ws36{word-spacing:-16.218000px;}
.ws26{word-spacing:-13.770000px;}
.ws35{word-spacing:-13.767000px;}
.ws3a{word-spacing:-12.732000px;}
.ws23{word-spacing:-12.510000px;}
.ws39{word-spacing:-12.309000px;}
.ws41{word-spacing:-12.268500px;}
.ws37{word-spacing:-11.730000px;}
.ws3b{word-spacing:-11.413500px;}
.ws3d{word-spacing:-11.317500px;}
.ws40{word-spacing:-10.920000px;}
.ws43{word-spacing:-10.328250px;}
.ws3f{word-spacing:-10.327500px;}
.ws3c{word-spacing:-10.326000px;}
.ws42{word-spacing:-10.323750px;}
.ws8{word-spacing:-7.506000px;}
.ws24{word-spacing:-2.250000px;}
.ws27{word-spacing:0.000000px;}
._7{margin-left:-6.002280px;}
._5{margin-left:-4.989480px;}
._4{margin-left:-3.147000px;}
._1{margin-left:-2.003760px;}
._0{width:1.336080px;}
._6{width:10.688760px;}
._2{width:18.612480px;}
._3{width:28.849920px;}
._b{width:47.508000px;}
._a{width:66.273000px;}
._8{width:548.161920px;}
._9{width:1750.587000px;}
.fc2{color:rgb(184,5,5);}
.fc1{color:rgb(85,134,233);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fs3{font-size:27.000000px;}
.fs7{font-size:30.690000px;}
.fsa{font-size:33.750000px;}
.fs2{font-size:36.828000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fsc{font-size:66.000000px;}
.fs1{font-size:66.960000px;}
.fsb{font-size:72.000000px;}
.fs0{font-size:114.000000px;}
.fs9{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:18.384000px;}
.y40{bottom:50.670000px;}
.y1a{bottom:98.739000px;}
.y3f{bottom:102.748500px;}
.y19{bottom:115.239000px;}
.y3e{bottom:119.248500px;}
.y18{bottom:131.739000px;}
.y3d{bottom:135.748500px;}
.y17{bottom:148.239000px;}
.y3c{bottom:152.248500px;}
.y16{bottom:164.739000px;}
.y3b{bottom:173.248500px;}
.y15{bottom:181.239000px;}
.y3a{bottom:189.748500px;}
.y14{bottom:197.739000px;}
.y39{bottom:206.248500px;}
.y13{bottom:214.239000px;}
.y38{bottom:222.748500px;}
.y12{bottom:235.239000px;}
.y37{bottom:239.248500px;}
.y11{bottom:251.739000px;}
.y36{bottom:255.748500px;}
.y10{bottom:268.239000px;}
.y35{bottom:272.248500px;}
.yf{bottom:284.739000px;}
.y34{bottom:288.748500px;}
.ye{bottom:301.239000px;}
.y33{bottom:305.248500px;}
.yd{bottom:317.739000px;}
.y32{bottom:321.748500px;}
.yc{bottom:334.239000px;}
.y31{bottom:338.248500px;}
.yb{bottom:350.739000px;}
.y30{bottom:354.748500px;}
.ya{bottom:367.239000px;}
.y2f{bottom:371.248500px;}
.y2e{bottom:387.748500px;}
.y2d{bottom:404.248500px;}
.y9{bottom:414.909000px;}
.y2c{bottom:420.748500px;}
.y8{bottom:429.909000px;}
.y2b{bottom:437.248500px;}
.y2a{bottom:458.248500px;}
.y29{bottom:474.748500px;}
.y28{bottom:491.248500px;}
.y27{bottom:507.748500px;}
.y26{bottom:524.248500px;}
.y25{bottom:540.748500px;}
.y8c{bottom:552.079500px;}
.y66{bottom:555.976500px;}
.y24{bottom:557.248500px;}
.y8b{bottom:568.579500px;}
.y65{bottom:572.476500px;}
.y23{bottom:573.748500px;}
.y8a{bottom:585.079500px;}
.y64{bottom:588.976500px;}
.y22{bottom:594.748500px;}
.y89{bottom:601.579500px;}
.y63{bottom:605.476500px;}
.y21{bottom:611.248500px;}
.y88{bottom:618.079500px;}
.y20{bottom:627.748500px;}
.y87{bottom:634.579500px;}
.y62{bottom:639.004500px;}
.y1f{bottom:644.248500px;}
.y61{bottom:655.504500px;}
.y86{bottom:657.079500px;}
.y1e{bottom:660.748500px;}
.y60{bottom:672.004500px;}
.y1d{bottom:677.248500px;}
.y85{bottom:682.579500px;}
.y5f{bottom:688.504500px;}
.y1c{bottom:693.748500px;}
.y5e{bottom:705.004500px;}
.y1b{bottom:710.248500px;}
.y84{bottom:721.264500px;}
.y5d{bottom:721.504500px;}
.y5c{bottom:738.004500px;}
.y83{bottom:754.212000px;}
.y5b{bottom:754.504500px;}
.y7{bottom:765.277500px;}
.y82{bottom:765.687000px;}
.y5a{bottom:771.004500px;}
.y81{bottom:777.162000px;}
.y6{bottom:783.501000px;}
.y80{bottom:788.637000px;}
.y59{bottom:792.004500px;}
.y7f{bottom:800.112000px;}
.y58{bottom:808.504500px;}
.y7e{bottom:811.587000px;}
.y5{bottom:816.352500px;}
.y7d{bottom:823.062000px;}
.y57{bottom:825.004500px;}
.y7c{bottom:834.537000px;}
.y4{bottom:838.861500px;}
.y56{bottom:841.504500px;}
.y7b{bottom:846.012000px;}
.y7a{bottom:857.487000px;}
.y55{bottom:858.004500px;}
.y3{bottom:861.370500px;}
.y79{bottom:868.962000px;}
.y54{bottom:874.504500px;}
.y78{bottom:880.437000px;}
.y53{bottom:891.004500px;}
.y77{bottom:891.912000px;}
.y76{bottom:903.387000px;}
.y52{bottom:907.504500px;}
.y2{bottom:910.551000px;}
.y75{bottom:914.862000px;}
.y51{bottom:924.004500px;}
.y74{bottom:926.337000px;}
.y1{bottom:934.615500px;}
.y73{bottom:937.812000px;}
.y50{bottom:940.504500px;}
.y72{bottom:949.287000px;}
.y4f{bottom:957.004500px;}
.y71{bottom:960.762000px;}
.y70{bottom:972.237000px;}
.y4e{bottom:973.504500px;}
.y6f{bottom:983.712000px;}
.y4d{bottom:990.004500px;}
.y6e{bottom:995.187000px;}
.y4c{bottom:1006.504500px;}
.y6d{bottom:1006.662000px;}
.y4b{bottom:1023.004500px;}
.y6c{bottom:1037.476500px;}
.y4a{bottom:1039.504500px;}
.y44{bottom:1043.046000px;}
.y6b{bottom:1053.976500px;}
.y49{bottom:1056.004500px;}
.y48{bottom:1072.504500px;}
.y6a{bottom:1073.476500px;}
.y47{bottom:1089.004500px;}
.y69{bottom:1089.976500px;}
.y46{bottom:1105.504500px;}
.y68{bottom:1106.476500px;}
.y43{bottom:1119.495000px;}
.y45{bottom:1122.004500px;}
.y67{bottom:1122.976500px;}
.y42{bottom:1148.830500px;}
.y8e{bottom:1200.903000px;}
.y8d{bottom:1228.738500px;}
.hb{height:9.048000px;}
.hd{height:25.447500px;}
.h5{height:28.160156px;}
.ha{height:33.930000px;}
.h8{height:38.390400px;}
.h7{height:40.716000px;}
.h9{height:44.214720px;}
.h6{height:46.933594px;}
.hf{height:48.906000px;}
.he{height:53.352000px;}
.h4{height:54.996312px;}
.h3{height:69.837188px;}
.h2{height:84.474000px;}
.hc{height:106.704000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.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:16.800000pt;}
.v4{vertical-align:20.533333pt;}
.v1{vertical-align:24.202667pt;}
.ls12{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.597333pt;}
.ls11{letter-spacing:-0.570667pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls10{letter-spacing:-0.410667pt;}
.ls14{letter-spacing:-0.400000pt;}
.ls18{letter-spacing:-0.394667pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.277333pt;}
.ls8{letter-spacing:-0.261333pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.218667pt;}
.ls15{letter-spacing:-0.186667pt;}
.lsf{letter-spacing:-0.170667pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001451pt;}
.lsb{letter-spacing:0.002667pt;}
.ls3{letter-spacing:9.672000pt;}
.ls1{letter-spacing:9.704000pt;}
.lsc{letter-spacing:11.640000pt;}
.ls2{letter-spacing:12.402667pt;}
.lse{letter-spacing:14.640000pt;}
.lsd{letter-spacing:58.909333pt;}
.ws0{word-spacing:-73.162667pt;}
.ws2{word-spacing:-50.423680pt;}
.ws7{word-spacing:-50.421333pt;}
.ws6{word-spacing:-50.420053pt;}
.ws28{word-spacing:-49.600000pt;}
.ws44{word-spacing:-46.208000pt;}
.ws5{word-spacing:-42.975573pt;}
.ws4{word-spacing:-42.975360pt;}
.ws19{word-spacing:-40.140800pt;}
.ws2c{word-spacing:-39.944533pt;}
.ws21{word-spacing:-39.932800pt;}
.ws22{word-spacing:-39.928533pt;}
.ws1a{word-spacing:-39.807467pt;}
.ws45{word-spacing:-39.704000pt;}
.ws46{word-spacing:-39.703467pt;}
.ws17{word-spacing:-39.692800pt;}
.ws34{word-spacing:-39.691733pt;}
.ws18{word-spacing:-39.689600pt;}
.ws2f{word-spacing:-39.655467pt;}
.ws10{word-spacing:-39.654933pt;}
.ws20{word-spacing:-39.653867pt;}
.ws33{word-spacing:-39.652800pt;}
.ws2e{word-spacing:-39.652267pt;}
.ws1d{word-spacing:-39.616533pt;}
.ws12{word-spacing:-39.580800pt;}
.ws13{word-spacing:-39.580267pt;}
.wsd{word-spacing:-39.251200pt;}
.ws1e{word-spacing:-39.203200pt;}
.ws2d{word-spacing:-38.806400pt;}
.ws2a{word-spacing:-38.721067pt;}
.ws1c{word-spacing:-38.348267pt;}
.ws1f{word-spacing:-38.182400pt;}
.ws29{word-spacing:-37.962133pt;}
.ws2b{word-spacing:-37.814400pt;}
.ws1b{word-spacing:-37.478400pt;}
.ws32{word-spacing:-37.323733pt;}
.ws30{word-spacing:-37.321600pt;}
.wsc{word-spacing:-37.202133pt;}
.ws11{word-spacing:-37.201600pt;}
.ws15{word-spacing:-37.201067pt;}
.wsf{word-spacing:-37.200533pt;}
.wsb{word-spacing:-37.200000pt;}
.wsa{word-spacing:-37.199467pt;}
.wse{word-spacing:-37.198933pt;}
.ws14{word-spacing:-37.197867pt;}
.ws16{word-spacing:-37.197333pt;}
.ws25{word-spacing:-28.880000pt;}
.ws3e{word-spacing:-21.660000pt;}
.ws3{word-spacing:-18.218240pt;}
.ws1{word-spacing:-18.215893pt;}
.ws38{word-spacing:-17.520000pt;}
.ws31{word-spacing:-15.002667pt;}
.ws9{word-spacing:-14.688000pt;}
.ws36{word-spacing:-14.416000pt;}
.ws26{word-spacing:-12.240000pt;}
.ws35{word-spacing:-12.237333pt;}
.ws3a{word-spacing:-11.317333pt;}
.ws23{word-spacing:-11.120000pt;}
.ws39{word-spacing:-10.941333pt;}
.ws41{word-spacing:-10.905333pt;}
.ws37{word-spacing:-10.426667pt;}
.ws3b{word-spacing:-10.145333pt;}
.ws3d{word-spacing:-10.060000pt;}
.ws40{word-spacing:-9.706667pt;}
.ws43{word-spacing:-9.180667pt;}
.ws3f{word-spacing:-9.180000pt;}
.ws3c{word-spacing:-9.178667pt;}
.ws42{word-spacing:-9.176667pt;}
.ws8{word-spacing:-6.672000pt;}
.ws24{word-spacing:-2.000000pt;}
.ws27{word-spacing:0.000000pt;}
._7{margin-left:-5.335360pt;}
._5{margin-left:-4.435093pt;}
._4{margin-left:-2.797333pt;}
._1{margin-left:-1.781120pt;}
._0{width:1.187627pt;}
._6{width:9.501120pt;}
._2{width:16.544427pt;}
._3{width:25.644373pt;}
._b{width:42.229333pt;}
._a{width:58.909333pt;}
._8{width:487.255040pt;}
._9{width:1556.077333pt;}
.fs8{font-size:10.666667pt;}
.fs3{font-size:24.000000pt;}
.fs7{font-size:27.280000pt;}
.fsa{font-size:30.000000pt;}
.fs2{font-size:32.736000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fsc{font-size:58.666667pt;}
.fs1{font-size:59.520000pt;}
.fsb{font-size:64.000000pt;}
.fs0{font-size:101.333333pt;}
.fs9{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:16.341333pt;}
.y40{bottom:45.040000pt;}
.y1a{bottom:87.768000pt;}
.y3f{bottom:91.332000pt;}
.y19{bottom:102.434667pt;}
.y3e{bottom:105.998667pt;}
.y18{bottom:117.101333pt;}
.y3d{bottom:120.665333pt;}
.y17{bottom:131.768000pt;}
.y3c{bottom:135.332000pt;}
.y16{bottom:146.434667pt;}
.y3b{bottom:153.998667pt;}
.y15{bottom:161.101333pt;}
.y3a{bottom:168.665333pt;}
.y14{bottom:175.768000pt;}
.y39{bottom:183.332000pt;}
.y13{bottom:190.434667pt;}
.y38{bottom:197.998667pt;}
.y12{bottom:209.101333pt;}
.y37{bottom:212.665333pt;}
.y11{bottom:223.768000pt;}
.y36{bottom:227.332000pt;}
.y10{bottom:238.434667pt;}
.y35{bottom:241.998667pt;}
.yf{bottom:253.101333pt;}
.y34{bottom:256.665333pt;}
.ye{bottom:267.768000pt;}
.y33{bottom:271.332000pt;}
.yd{bottom:282.434667pt;}
.y32{bottom:285.998667pt;}
.yc{bottom:297.101333pt;}
.y31{bottom:300.665333pt;}
.yb{bottom:311.768000pt;}
.y30{bottom:315.332000pt;}
.ya{bottom:326.434667pt;}
.y2f{bottom:329.998667pt;}
.y2e{bottom:344.665333pt;}
.y2d{bottom:359.332000pt;}
.y9{bottom:368.808000pt;}
.y2c{bottom:373.998667pt;}
.y8{bottom:382.141333pt;}
.y2b{bottom:388.665333pt;}
.y2a{bottom:407.332000pt;}
.y29{bottom:421.998667pt;}
.y28{bottom:436.665333pt;}
.y27{bottom:451.332000pt;}
.y26{bottom:465.998667pt;}
.y25{bottom:480.665333pt;}
.y8c{bottom:490.737333pt;}
.y66{bottom:494.201333pt;}
.y24{bottom:495.332000pt;}
.y8b{bottom:505.404000pt;}
.y65{bottom:508.868000pt;}
.y23{bottom:509.998667pt;}
.y8a{bottom:520.070667pt;}
.y64{bottom:523.534667pt;}
.y22{bottom:528.665333pt;}
.y89{bottom:534.737333pt;}
.y63{bottom:538.201333pt;}
.y21{bottom:543.332000pt;}
.y88{bottom:549.404000pt;}
.y20{bottom:557.998667pt;}
.y87{bottom:564.070667pt;}
.y62{bottom:568.004000pt;}
.y1f{bottom:572.665333pt;}
.y61{bottom:582.670667pt;}
.y86{bottom:584.070667pt;}
.y1e{bottom:587.332000pt;}
.y60{bottom:597.337333pt;}
.y1d{bottom:601.998667pt;}
.y85{bottom:606.737333pt;}
.y5f{bottom:612.004000pt;}
.y1c{bottom:616.665333pt;}
.y5e{bottom:626.670667pt;}
.y1b{bottom:631.332000pt;}
.y84{bottom:641.124000pt;}
.y5d{bottom:641.337333pt;}
.y5c{bottom:656.004000pt;}
.y83{bottom:670.410667pt;}
.y5b{bottom:670.670667pt;}
.y7{bottom:680.246667pt;}
.y82{bottom:680.610667pt;}
.y5a{bottom:685.337333pt;}
.y81{bottom:690.810667pt;}
.y6{bottom:696.445333pt;}
.y80{bottom:701.010667pt;}
.y59{bottom:704.004000pt;}
.y7f{bottom:711.210667pt;}
.y58{bottom:718.670667pt;}
.y7e{bottom:721.410667pt;}
.y5{bottom:725.646667pt;}
.y7d{bottom:731.610667pt;}
.y57{bottom:733.337333pt;}
.y7c{bottom:741.810667pt;}
.y4{bottom:745.654667pt;}
.y56{bottom:748.004000pt;}
.y7b{bottom:752.010667pt;}
.y7a{bottom:762.210667pt;}
.y55{bottom:762.670667pt;}
.y3{bottom:765.662667pt;}
.y79{bottom:772.410667pt;}
.y54{bottom:777.337333pt;}
.y78{bottom:782.610667pt;}
.y53{bottom:792.004000pt;}
.y77{bottom:792.810667pt;}
.y76{bottom:803.010667pt;}
.y52{bottom:806.670667pt;}
.y2{bottom:809.378667pt;}
.y75{bottom:813.210667pt;}
.y51{bottom:821.337333pt;}
.y74{bottom:823.410667pt;}
.y1{bottom:830.769333pt;}
.y73{bottom:833.610667pt;}
.y50{bottom:836.004000pt;}
.y72{bottom:843.810667pt;}
.y4f{bottom:850.670667pt;}
.y71{bottom:854.010667pt;}
.y70{bottom:864.210667pt;}
.y4e{bottom:865.337333pt;}
.y6f{bottom:874.410667pt;}
.y4d{bottom:880.004000pt;}
.y6e{bottom:884.610667pt;}
.y4c{bottom:894.670667pt;}
.y6d{bottom:894.810667pt;}
.y4b{bottom:909.337333pt;}
.y6c{bottom:922.201333pt;}
.y4a{bottom:924.004000pt;}
.y44{bottom:927.152000pt;}
.y6b{bottom:936.868000pt;}
.y49{bottom:938.670667pt;}
.y48{bottom:953.337333pt;}
.y6a{bottom:954.201333pt;}
.y47{bottom:968.004000pt;}
.y69{bottom:968.868000pt;}
.y46{bottom:982.670667pt;}
.y68{bottom:983.534667pt;}
.y43{bottom:995.106667pt;}
.y45{bottom:997.337333pt;}
.y67{bottom:998.201333pt;}
.y42{bottom:1021.182667pt;}
.y8e{bottom:1067.469333pt;}
.y8d{bottom:1092.212000pt;}
.hb{height:8.042667pt;}
.hd{height:22.620000pt;}
.h5{height:25.031250pt;}
.ha{height:30.160000pt;}
.h8{height:34.124800pt;}
.h7{height:36.192000pt;}
.h9{height:39.301973pt;}
.h6{height:41.718750pt;}
.hf{height:43.472000pt;}
.he{height:47.424000pt;}
.h4{height:48.885611pt;}
.h3{height:62.077500pt;}
.h2{height:75.088000pt;}
.hc{height:94.848000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.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;
}
