
/* 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_4b43d01867dc.woff")format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_928399f0f48a.woff")format("woff");}.ff2{font-family:ff2;line-height:1.120000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.450000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.080000px;}
.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;}
}
.ws2{word-spacing:-4.704000px;}
.ws4{word-spacing:-4.224000px;}
.ws1a{word-spacing:-2.736000px;}
.ws3d{word-spacing:-2.400000px;}
.ws5{word-spacing:-2.304000px;}
.ws2e{word-spacing:-1.968000px;}
.ws27{word-spacing:-1.632000px;}
.ws1c{word-spacing:-1.584000px;}
.ws2c{word-spacing:-1.488000px;}
.ws7{word-spacing:-1.392000px;}
.ws16{word-spacing:-1.200000px;}
.ws2f{word-spacing:-1.104000px;}
.ws31{word-spacing:-0.816000px;}
.wsb{word-spacing:-0.450000px;}
.ws28{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.096000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.048000px;}
.ws26{word-spacing:0.096000px;}
.ws3{word-spacing:0.144000px;}
.ws1{word-spacing:0.240000px;}
.wsa{word-spacing:0.336000px;}
.ws34{word-spacing:0.528000px;}
.ws33{word-spacing:1.392000px;}
.ws20{word-spacing:2.016000px;}
.ws21{word-spacing:2.160000px;}
.ws3c{word-spacing:2.352000px;}
.ws2a{word-spacing:2.400000px;}
.ws8{word-spacing:2.640000px;}
.ws35{word-spacing:2.832000px;}
.ws3e{word-spacing:3.168000px;}
.ws39{word-spacing:3.312000px;}
.ws19{word-spacing:3.504000px;}
.ws1f{word-spacing:3.648000px;}
.ws1b{word-spacing:3.792000px;}
.ws32{word-spacing:4.128000px;}
.ws9{word-spacing:4.224000px;}
.ws29{word-spacing:4.656000px;}
.ws23{word-spacing:4.752000px;}
.ws11{word-spacing:4.848000px;}
.ws2d{word-spacing:5.232000px;}
.ws3b{word-spacing:5.376000px;}
.ws37{word-spacing:5.520000px;}
.ws2b{word-spacing:6.288000px;}
.wse{word-spacing:6.432000px;}
.wsc{word-spacing:6.480000px;}
.ws1e{word-spacing:6.528000px;}
.ws6{word-spacing:6.720000px;}
.ws18{word-spacing:6.912000px;}
.ws17{word-spacing:7.152000px;}
.ws30{word-spacing:7.488000px;}
.ws22{word-spacing:7.536000px;}
.ws10{word-spacing:7.728000px;}
.wsd{word-spacing:7.776000px;}
.ws36{word-spacing:7.824000px;}
.ws25{word-spacing:8.976000px;}
.ws13{word-spacing:9.408000px;}
.ws3a{word-spacing:9.696000px;}
.ws14{word-spacing:10.368000px;}
.ws24{word-spacing:10.944000px;}
.ws15{word-spacing:11.568000px;}
.ws38{word-spacing:12.144000px;}
.ws12{word-spacing:13.488000px;}
._9{margin-left:-19.968000px;}
._7{margin-left:-14.640000px;}
._5{margin-left:-13.200000px;}
._8{margin-left:-9.723000px;}
._2{margin-left:-6.862800px;}
._0{margin-left:-5.280000px;}
._4{margin-left:-3.745200px;}
._6{margin-left:-2.709000px;}
._1{margin-left:-1.440000px;}
._3{width:1.440000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:30.826800px;}
.y68{bottom:34.157550px;}
.y3{bottom:34.389000px;}
.y67{bottom:52.157550px;}
.y66{bottom:70.157550px;}
.y22{bottom:82.905600px;}
.y65{bottom:88.157550px;}
.y64{bottom:106.157550px;}
.y21{bottom:109.905600px;}
.y63{bottom:124.157550px;}
.y20{bottom:136.905600px;}
.y62{bottom:142.157550px;}
.y61{bottom:160.157550px;}
.y1f{bottom:163.905600px;}
.y60{bottom:178.157550px;}
.y7d{bottom:192.472350px;}
.y7c{bottom:210.472350px;}
.y5f{bottom:213.710700px;}
.y1e{bottom:226.905600px;}
.y5e{bottom:245.948700px;}
.y1d{bottom:253.905600px;}
.y5d{bottom:278.186700px;}
.y1c{bottom:280.905600px;}
.y1b{bottom:307.905600px;}
.y5c{bottom:310.424700px;}
.y5b{bottom:342.662700px;}
.y1a{bottom:370.905600px;}
.y19{bottom:397.905600px;}
.y18{bottom:424.905600px;}
.y17{bottom:487.905600px;}
.y16{bottom:514.905600px;}
.y7b{bottom:516.472350px;}
.y7a{bottom:534.472350px;}
.y15{bottom:541.905600px;}
.y79{bottom:552.472350px;}
.y14{bottom:568.905600px;}
.y78{bottom:570.472350px;}
.y77{bottom:588.472350px;}
.y76{bottom:606.472350px;}
.y75{bottom:624.472350px;}
.y13{bottom:631.905600px;}
.y74{bottom:642.472350px;}
.y5a{bottom:646.157400px;}
.y12{bottom:658.905600px;}
.y73{bottom:660.472350px;}
.y59{bottom:664.157400px;}
.y72{bottom:678.472350px;}
.y58{bottom:682.157400px;}
.y11{bottom:685.905600px;}
.y71{bottom:696.472350px;}
.y57{bottom:700.157400px;}
.y1{bottom:707.949000px;}
.y10{bottom:712.905600px;}
.y70{bottom:714.472350px;}
.y56{bottom:718.157400px;}
.y2{bottom:728.121000px;}
.y6f{bottom:732.472350px;}
.y55{bottom:736.157400px;}
.y6e{bottom:750.472350px;}
.y54{bottom:754.157400px;}
.y6d{bottom:768.472350px;}
.y53{bottom:772.157400px;}
.yf{bottom:775.905600px;}
.y6c{bottom:786.472350px;}
.y52{bottom:790.157400px;}
.ye{bottom:793.905600px;}
.y6b{bottom:804.472350px;}
.yd{bottom:811.905600px;}
.y6a{bottom:822.472350px;}
.y51{bottom:826.398750px;}
.yc{bottom:829.905600px;}
.y69{bottom:840.472350px;}
.yb{bottom:847.905600px;}
.y50{bottom:858.636750px;}
.ya{bottom:865.905600px;}
.y9{bottom:883.905600px;}
.y4f{bottom:890.874750px;}
.y8{bottom:901.905600px;}
.y7{bottom:919.905600px;}
.y4e{bottom:923.112750px;}
.y6{bottom:937.905600px;}
.y4d{bottom:955.350750px;}
.y5{bottom:955.905600px;}
.y4c{bottom:1276.157550px;}
.y4b{bottom:1294.157550px;}
.y4a{bottom:1312.157550px;}
.y49{bottom:1330.157550px;}
.y48{bottom:1348.157550px;}
.y47{bottom:1366.157550px;}
.y46{bottom:1384.157550px;}
.y45{bottom:1402.157550px;}
.y44{bottom:1420.157550px;}
.y43{bottom:1455.658200px;}
.y42{bottom:1487.896200px;}
.y41{bottom:1520.134200px;}
.y40{bottom:1552.372200px;}
.y3f{bottom:1852.157550px;}
.y3e{bottom:1870.157550px;}
.y3d{bottom:1888.157550px;}
.y3c{bottom:1906.157550px;}
.y3b{bottom:1924.157550px;}
.y3a{bottom:1942.157550px;}
.y39{bottom:1960.157550px;}
.y38{bottom:1978.157550px;}
.y37{bottom:1996.157550px;}
.y36{bottom:2032.097850px;}
.y35{bottom:2064.335850px;}
.y34{bottom:2096.573850px;}
.y33{bottom:2128.811850px;}
.y32{bottom:2161.049850px;}
.y31{bottom:2193.287850px;}
.y30{bottom:2500.157550px;}
.y2f{bottom:2518.157550px;}
.y2e{bottom:2536.157550px;}
.y2d{bottom:2554.157550px;}
.y2c{bottom:2572.157550px;}
.y2b{bottom:2590.157550px;}
.y2a{bottom:2608.157550px;}
.y29{bottom:2626.157550px;}
.y28{bottom:2644.157550px;}
.y27{bottom:2679.383100px;}
.y26{bottom:2711.621100px;}
.y25{bottom:2743.859100px;}
.y24{bottom:2776.097100px;}
.y23{bottom:2808.335100px;}
.h2{height:37.728000px;}
.ha{height:42.240000px;}
.h6{height:79.200000px;}
.h9{height:95.040000px;}
.h3{height:200.640000px;}
.h5{height:999.000000px;}
.h4{height:999.213000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.h7{height:3040.155000px;}
.h8{height:3040.500000px;}
.w1{width:603.750000px;}
.w0{width:603.780000px;}
.x0{left:0.000000px;}
.x6{left:34.016250px;}
.x1{left:43.511250px;}
.x2{left:60.011250px;}
.x3{left:415.534800px;}
.x4{left:483.934800px;}
.x5{left:552.334800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.400000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls5{letter-spacing:0.960000pt;}
.ws2{word-spacing:-4.181333pt;}
.ws4{word-spacing:-3.754667pt;}
.ws1a{word-spacing:-2.432000pt;}
.ws3d{word-spacing:-2.133333pt;}
.ws5{word-spacing:-2.048000pt;}
.ws2e{word-spacing:-1.749333pt;}
.ws27{word-spacing:-1.450667pt;}
.ws1c{word-spacing:-1.408000pt;}
.ws2c{word-spacing:-1.322667pt;}
.ws7{word-spacing:-1.237333pt;}
.ws16{word-spacing:-1.066667pt;}
.ws2f{word-spacing:-0.981333pt;}
.ws31{word-spacing:-0.725333pt;}
.wsb{word-spacing:-0.400000pt;}
.ws28{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.085333pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.042667pt;}
.ws26{word-spacing:0.085333pt;}
.ws3{word-spacing:0.128000pt;}
.ws1{word-spacing:0.213333pt;}
.wsa{word-spacing:0.298667pt;}
.ws34{word-spacing:0.469333pt;}
.ws33{word-spacing:1.237333pt;}
.ws20{word-spacing:1.792000pt;}
.ws21{word-spacing:1.920000pt;}
.ws3c{word-spacing:2.090667pt;}
.ws2a{word-spacing:2.133333pt;}
.ws8{word-spacing:2.346667pt;}
.ws35{word-spacing:2.517333pt;}
.ws3e{word-spacing:2.816000pt;}
.ws39{word-spacing:2.944000pt;}
.ws19{word-spacing:3.114667pt;}
.ws1f{word-spacing:3.242667pt;}
.ws1b{word-spacing:3.370667pt;}
.ws32{word-spacing:3.669333pt;}
.ws9{word-spacing:3.754667pt;}
.ws29{word-spacing:4.138667pt;}
.ws23{word-spacing:4.224000pt;}
.ws11{word-spacing:4.309333pt;}
.ws2d{word-spacing:4.650667pt;}
.ws3b{word-spacing:4.778667pt;}
.ws37{word-spacing:4.906667pt;}
.ws2b{word-spacing:5.589333pt;}
.wse{word-spacing:5.717333pt;}
.wsc{word-spacing:5.760000pt;}
.ws1e{word-spacing:5.802667pt;}
.ws6{word-spacing:5.973333pt;}
.ws18{word-spacing:6.144000pt;}
.ws17{word-spacing:6.357333pt;}
.ws30{word-spacing:6.656000pt;}
.ws22{word-spacing:6.698667pt;}
.ws10{word-spacing:6.869333pt;}
.wsd{word-spacing:6.912000pt;}
.ws36{word-spacing:6.954667pt;}
.ws25{word-spacing:7.978667pt;}
.ws13{word-spacing:8.362667pt;}
.ws3a{word-spacing:8.618667pt;}
.ws14{word-spacing:9.216000pt;}
.ws24{word-spacing:9.728000pt;}
.ws15{word-spacing:10.282667pt;}
.ws38{word-spacing:10.794667pt;}
.ws12{word-spacing:11.989333pt;}
._9{margin-left:-17.749333pt;}
._7{margin-left:-13.013333pt;}
._5{margin-left:-11.733333pt;}
._8{margin-left:-8.642667pt;}
._2{margin-left:-6.100267pt;}
._0{margin-left:-4.693333pt;}
._4{margin-left:-3.329067pt;}
._6{margin-left:-2.408000pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.280000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:27.401600pt;}
.y68{bottom:30.362267pt;}
.y3{bottom:30.568000pt;}
.y67{bottom:46.362267pt;}
.y66{bottom:62.362267pt;}
.y22{bottom:73.693867pt;}
.y65{bottom:78.362267pt;}
.y64{bottom:94.362267pt;}
.y21{bottom:97.693867pt;}
.y63{bottom:110.362267pt;}
.y20{bottom:121.693867pt;}
.y62{bottom:126.362267pt;}
.y61{bottom:142.362267pt;}
.y1f{bottom:145.693867pt;}
.y60{bottom:158.362267pt;}
.y7d{bottom:171.086533pt;}
.y7c{bottom:187.086533pt;}
.y5f{bottom:189.965067pt;}
.y1e{bottom:201.693867pt;}
.y5e{bottom:218.621067pt;}
.y1d{bottom:225.693867pt;}
.y5d{bottom:247.277067pt;}
.y1c{bottom:249.693867pt;}
.y1b{bottom:273.693867pt;}
.y5c{bottom:275.933067pt;}
.y5b{bottom:304.589067pt;}
.y1a{bottom:329.693867pt;}
.y19{bottom:353.693867pt;}
.y18{bottom:377.693867pt;}
.y17{bottom:433.693867pt;}
.y16{bottom:457.693867pt;}
.y7b{bottom:459.086533pt;}
.y7a{bottom:475.086533pt;}
.y15{bottom:481.693867pt;}
.y79{bottom:491.086533pt;}
.y14{bottom:505.693867pt;}
.y78{bottom:507.086533pt;}
.y77{bottom:523.086533pt;}
.y76{bottom:539.086533pt;}
.y75{bottom:555.086533pt;}
.y13{bottom:561.693867pt;}
.y74{bottom:571.086533pt;}
.y5a{bottom:574.362133pt;}
.y12{bottom:585.693867pt;}
.y73{bottom:587.086533pt;}
.y59{bottom:590.362133pt;}
.y72{bottom:603.086533pt;}
.y58{bottom:606.362133pt;}
.y11{bottom:609.693867pt;}
.y71{bottom:619.086533pt;}
.y57{bottom:622.362133pt;}
.y1{bottom:629.288000pt;}
.y10{bottom:633.693867pt;}
.y70{bottom:635.086533pt;}
.y56{bottom:638.362133pt;}
.y2{bottom:647.218667pt;}
.y6f{bottom:651.086533pt;}
.y55{bottom:654.362133pt;}
.y6e{bottom:667.086533pt;}
.y54{bottom:670.362133pt;}
.y6d{bottom:683.086533pt;}
.y53{bottom:686.362133pt;}
.yf{bottom:689.693867pt;}
.y6c{bottom:699.086533pt;}
.y52{bottom:702.362133pt;}
.ye{bottom:705.693867pt;}
.y6b{bottom:715.086533pt;}
.yd{bottom:721.693867pt;}
.y6a{bottom:731.086533pt;}
.y51{bottom:734.576667pt;}
.yc{bottom:737.693867pt;}
.y69{bottom:747.086533pt;}
.yb{bottom:753.693867pt;}
.y50{bottom:763.232667pt;}
.ya{bottom:769.693867pt;}
.y9{bottom:785.693867pt;}
.y4f{bottom:791.888667pt;}
.y8{bottom:801.693867pt;}
.y7{bottom:817.693867pt;}
.y4e{bottom:820.544667pt;}
.y6{bottom:833.693867pt;}
.y4d{bottom:849.200667pt;}
.y5{bottom:849.693867pt;}
.y4c{bottom:1134.362267pt;}
.y4b{bottom:1150.362267pt;}
.y4a{bottom:1166.362267pt;}
.y49{bottom:1182.362267pt;}
.y48{bottom:1198.362267pt;}
.y47{bottom:1214.362267pt;}
.y46{bottom:1230.362267pt;}
.y45{bottom:1246.362267pt;}
.y44{bottom:1262.362267pt;}
.y43{bottom:1293.918400pt;}
.y42{bottom:1322.574400pt;}
.y41{bottom:1351.230400pt;}
.y40{bottom:1379.886400pt;}
.y3f{bottom:1646.362267pt;}
.y3e{bottom:1662.362267pt;}
.y3d{bottom:1678.362267pt;}
.y3c{bottom:1694.362267pt;}
.y3b{bottom:1710.362267pt;}
.y3a{bottom:1726.362267pt;}
.y39{bottom:1742.362267pt;}
.y38{bottom:1758.362267pt;}
.y37{bottom:1774.362267pt;}
.y36{bottom:1806.309200pt;}
.y35{bottom:1834.965200pt;}
.y34{bottom:1863.621200pt;}
.y33{bottom:1892.277200pt;}
.y32{bottom:1920.933200pt;}
.y31{bottom:1949.589200pt;}
.y30{bottom:2222.362267pt;}
.y2f{bottom:2238.362267pt;}
.y2e{bottom:2254.362267pt;}
.y2d{bottom:2270.362267pt;}
.y2c{bottom:2286.362267pt;}
.y2b{bottom:2302.362267pt;}
.y2a{bottom:2318.362267pt;}
.y29{bottom:2334.362267pt;}
.y28{bottom:2350.362267pt;}
.y27{bottom:2381.673867pt;}
.y26{bottom:2410.329867pt;}
.y25{bottom:2438.985867pt;}
.y24{bottom:2467.641867pt;}
.y23{bottom:2496.297867pt;}
.h2{height:33.536000pt;}
.ha{height:37.546667pt;}
.h6{height:70.400000pt;}
.h9{height:84.480000pt;}
.h3{height:178.346667pt;}
.h5{height:888.000000pt;}
.h4{height:888.189333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.h7{height:2702.360000pt;}
.h8{height:2702.666667pt;}
.w1{width:536.666667pt;}
.w0{width:536.693333pt;}
.x0{left:0.000000pt;}
.x6{left:30.236667pt;}
.x1{left:38.676667pt;}
.x2{left:53.343333pt;}
.x3{left:369.364267pt;}
.x4{left:430.164267pt;}
.x5{left:490.964267pt;}
}


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