
/* 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_a43d20262c4d.woff")format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_e6e5ed393036.woff")format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_6d531410978a.woff")format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_a729e0f8c48e.woff")format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url("fonts/font_0004_fa4ee75ac3e1.woff")format("woff");}.ff5{font-family:ff5;line-height:0.684000;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_30ce4fbab03b.woff")format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_31a5104a6bec.woff")format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_4fda8f875b40.woff")format("woff");}.ff8{font-family:ff8;line-height:0.625000;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_061c29a305e1.woff")format("woff");}.ff9{font-family:ff9;line-height:0.876000;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);}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls27{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000312px;}
.ls20{letter-spacing:0.002338px;}
.ls18{letter-spacing:0.003031px;}
.ls12{letter-spacing:0.003788px;}
.ls22{letter-spacing:0.004200px;}
.ls1e{letter-spacing:0.004648px;}
.ls26{letter-spacing:2.143908px;}
.ls1{letter-spacing:2.984525px;}
.ls1b{letter-spacing:2.990525px;}
.ls1a{letter-spacing:3.441652px;}
.ls6{letter-spacing:3.447652px;}
.ls21{letter-spacing:9.956338px;}
.ls17{letter-spacing:9.962338px;}
.lsb{letter-spacing:13.278538px;}
.ls10{letter-spacing:13.284538px;}
.ls9{letter-spacing:16.602538px;}
.ls25{letter-spacing:16.606896px;}
.ls2{letter-spacing:17.318400px;}
.ls3{letter-spacing:17.324400px;}
.ls0{letter-spacing:18.116316px;}
.ls23{letter-spacing:19.414200px;}
.ls15{letter-spacing:19.418316px;}
.ls1f{letter-spacing:19.592525px;}
.ls7{letter-spacing:19.917269px;}
.ls14{letter-spacing:20.283788px;}
.ls11{letter-spacing:20.372316px;}
.ls13{letter-spacing:20.378316px;}
.lsf{letter-spacing:22.703732px;}
.lsa{letter-spacing:22.709732px;}
.lsd{letter-spacing:22.904525px;}
.ls1d{letter-spacing:22.910525px;}
.lse{letter-spacing:24.900312px;}
.ls16{letter-spacing:24.905139px;}
.ls8{letter-spacing:24.906312px;}
.ls1c{letter-spacing:25.916316px;}
.ls4{letter-spacing:26.432316px;}
.ls19{letter-spacing:28.538525px;}
.ls5{letter-spacing:29.884178px;}
.ls24{letter-spacing:29.890178px;}
.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;}
}
.wsb{word-spacing:-38.937826px;}
.ws37{word-spacing:-28.977501px;}
.ws19{word-spacing:-28.955301px;}
.ws13{word-spacing:-22.335995px;}
.ws2e{word-spacing:-22.329995px;}
.wsf{word-spacing:-12.569770px;}
.ws10{word-spacing:-12.546898px;}
.ws6{word-spacing:-12.248020px;}
.ws3{word-spacing:-12.188245px;}
.ws2c{word-spacing:-11.889367px;}
.ws22{word-spacing:-10.604524px;}
.ws26{word-spacing:-10.589770px;}
.ws21{word-spacing:-10.574304px;}
.ws31{word-spacing:-10.454752px;}
.ws12{word-spacing:-10.335201px;}
.ws16{word-spacing:-9.976548px;}
.ws30{word-spacing:-9.965770px;}
.ws33{word-spacing:-9.963216px;}
.ws1b{word-spacing:-9.959770px;}
.ws35{word-spacing:-9.916772px;}
.ws0{word-spacing:-9.677670px;}
.ws1f{word-spacing:-9.617894px;}
.ws20{word-spacing:-9.610934px;}
.ws1d{word-spacing:-9.498343px;}
.wsc{word-spacing:-6.129666px;}
.ws9{word-spacing:-6.113770px;}
.ws7{word-spacing:-6.091134px;}
.ws27{word-spacing:-6.031358px;}
.ws2a{word-spacing:-4.357641px;}
.ws29{word-spacing:-4.297866px;}
.wsd{word-spacing:-4.169334px;}
.ws24{word-spacing:-3.530260px;}
.ws4{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.041843px;}
.ws39{word-spacing:0.000000px;}
.ws14{word-spacing:16.557841px;}
.ws11{word-spacing:17.255587px;}
.wse{word-spacing:17.257800px;}
.ws5{word-spacing:17.583675px;}
.ws2b{word-spacing:17.909888px;}
.ws2d{word-spacing:17.921587px;}
.ws25{word-spacing:19.225800px;}
.ws23{word-spacing:19.231800px;}
.ws15{word-spacing:19.463587px;}
.ws38{word-spacing:19.832400px;}
.ws34{word-spacing:19.839675px;}
.ws36{word-spacing:19.844737px;}
.ws1c{word-spacing:19.846312px;}
.ws17{word-spacing:19.850737px;}
.ws32{word-spacing:19.851375px;}
.ws1a{word-spacing:19.852950px;}
.ws2f{word-spacing:19.857375px;}
.ws1e{word-spacing:20.201250px;}
.ws2{word-spacing:22.834279px;}
.ws1{word-spacing:23.192933px;}
.wsa{word-spacing:23.707800px;}
.ws8{word-spacing:23.713800px;}
.ws28{word-spacing:23.811375px;}
._9{margin-left:-4.961375px;}
._8{margin-left:-3.100785px;}
._1{margin-left:-1.673717px;}
._0{width:1.673717px;}
._5{width:3.024522px;}
._6{width:4.668459px;}
._4{width:25.647387px;}
._7{width:27.541305px;}
._2{width:29.887800px;}
._3{width:38.073957px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.842800px;}
.fs0{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y1a{bottom:543.495000px;}
.y19{bottom:573.382500px;}
.y18{bottom:603.270000px;}
.y17{bottom:627.181500px;}
.y16{bottom:651.091500px;}
.y15{bottom:675.001500px;}
.y14{bottom:692.934000px;}
.y13{bottom:710.866500px;}
.y12{bottom:740.755500px;}
.y11{bottom:758.688000px;}
.y10{bottom:776.620500px;}
.yf{bottom:794.553000px;}
.ye{bottom:812.485500px;}
.yd{bottom:830.418000px;}
.yc{bottom:848.352000px;}
.yb{bottom:878.239500px;}
.ya{bottom:902.149500px;}
.y9{bottom:926.059500px;}
.y8{bottom:949.971000px;}
.y7{bottom:979.858500px;}
.y6{bottom:997.791000px;}
.y5{bottom:1015.723500px;}
.y4{bottom:1033.656000px;}
.y3{bottom:1051.590000px;}
.y2{bottom:1102.399500px;}
.y1{bottom:1120.332000px;}
.h2{height:44.891476px;}
.h4{height:47.465165px;}
.h3{height:49.479619px;}
.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:103.306500px;}
.x3{left:122.400000px;}
.x4{left:140.334000px;}
.x5{left:155.275500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls27{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000277pt;}
.ls20{letter-spacing:0.002079pt;}
.ls18{letter-spacing:0.002694pt;}
.ls12{letter-spacing:0.003367pt;}
.ls22{letter-spacing:0.003733pt;}
.ls1e{letter-spacing:0.004132pt;}
.ls26{letter-spacing:1.905696pt;}
.ls1{letter-spacing:2.652911pt;}
.ls1b{letter-spacing:2.658245pt;}
.ls1a{letter-spacing:3.059246pt;}
.ls6{letter-spacing:3.064580pt;}
.ls21{letter-spacing:8.850079pt;}
.ls17{letter-spacing:8.855412pt;}
.lsb{letter-spacing:11.803145pt;}
.ls10{letter-spacing:11.808479pt;}
.ls9{letter-spacing:14.757812pt;}
.ls25{letter-spacing:14.761685pt;}
.ls2{letter-spacing:15.394133pt;}
.ls3{letter-spacing:15.399467pt;}
.ls0{letter-spacing:16.103392pt;}
.ls23{letter-spacing:17.257067pt;}
.ls15{letter-spacing:17.260725pt;}
.ls1f{letter-spacing:17.415578pt;}
.ls7{letter-spacing:17.704239pt;}
.ls14{letter-spacing:18.030033pt;}
.ls11{letter-spacing:18.108725pt;}
.ls13{letter-spacing:18.114059pt;}
.lsf{letter-spacing:20.181095pt;}
.lsa{letter-spacing:20.186428pt;}
.lsd{letter-spacing:20.359578pt;}
.ls1d{letter-spacing:20.364911pt;}
.lse{letter-spacing:22.133610pt;}
.ls16{letter-spacing:22.137902pt;}
.ls8{letter-spacing:22.138944pt;}
.ls1c{letter-spacing:23.036725pt;}
.ls4{letter-spacing:23.495392pt;}
.ls19{letter-spacing:25.367578pt;}
.ls5{letter-spacing:26.563713pt;}
.ls24{letter-spacing:26.569047pt;}
.wsb{word-spacing:-34.611401pt;}
.ws37{word-spacing:-25.757779pt;}
.ws19{word-spacing:-25.738045pt;}
.ws13{word-spacing:-19.854218pt;}
.ws2e{word-spacing:-19.848884pt;}
.wsf{word-spacing:-11.173129pt;}
.ws10{word-spacing:-11.152799pt;}
.ws6{word-spacing:-10.887129pt;}
.ws3{word-spacing:-10.833995pt;}
.ws2c{word-spacing:-10.568326pt;}
.ws22{word-spacing:-9.426244pt;}
.ws26{word-spacing:-9.413129pt;}
.ws21{word-spacing:-9.399381pt;}
.ws31{word-spacing:-9.293113pt;}
.ws12{word-spacing:-9.186846pt;}
.ws16{word-spacing:-8.868042pt;}
.ws30{word-spacing:-8.858462pt;}
.ws33{word-spacing:-8.856192pt;}
.ws1b{word-spacing:-8.853129pt;}
.ws35{word-spacing:-8.814908pt;}
.ws0{word-spacing:-8.602373pt;}
.ws1f{word-spacing:-8.549239pt;}
.ws20{word-spacing:-8.543052pt;}
.ws1d{word-spacing:-8.442971pt;}
.wsc{word-spacing:-5.448592pt;}
.ws9{word-spacing:-5.434462pt;}
.ws7{word-spacing:-5.414341pt;}
.ws27{word-spacing:-5.361207pt;}
.ws2a{word-spacing:-3.873459pt;}
.ws29{word-spacing:-3.820325pt;}
.wsd{word-spacing:-3.706075pt;}
.ws24{word-spacing:-3.138009pt;}
.ws4{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.037194pt;}
.ws39{word-spacing:0.000000pt;}
.ws14{word-spacing:14.718081pt;}
.ws11{word-spacing:15.338300pt;}
.wse{word-spacing:15.340266pt;}
.ws5{word-spacing:15.629933pt;}
.ws2b{word-spacing:15.919900pt;}
.ws2d{word-spacing:15.930300pt;}
.ws25{word-spacing:17.089600pt;}
.ws23{word-spacing:17.094933pt;}
.ws15{word-spacing:17.300966pt;}
.ws38{word-spacing:17.628800pt;}
.ws34{word-spacing:17.635267pt;}
.ws36{word-spacing:17.639767pt;}
.ws1c{word-spacing:17.641167pt;}
.ws17{word-spacing:17.645100pt;}
.ws32{word-spacing:17.645666pt;}
.ws1a{word-spacing:17.647066pt;}
.ws2f{word-spacing:17.651000pt;}
.ws1e{word-spacing:17.956667pt;}
.ws2{word-spacing:20.297137pt;}
.ws1{word-spacing:20.615940pt;}
.wsa{word-spacing:21.073600pt;}
.ws8{word-spacing:21.078933pt;}
.ws28{word-spacing:21.165666pt;}
._9{margin-left:-4.410111pt;}
._8{margin-left:-2.756253pt;}
._1{margin-left:-1.487748pt;}
._0{width:1.487748pt;}
._5{width:2.688464pt;}
._6{width:4.149742pt;}
._4{width:22.797678pt;}
._7{width:24.481160pt;}
._2{width:26.566933pt;}
._3{width:33.843518pt;}
.fs1{font-size:37.193600pt;}
.fs0{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:483.106667pt;}
.y19{bottom:509.673333pt;}
.y18{bottom:536.240000pt;}
.y17{bottom:557.494667pt;}
.y16{bottom:578.748000pt;}
.y15{bottom:600.001333pt;}
.y14{bottom:615.941333pt;}
.y13{bottom:631.881333pt;}
.y12{bottom:658.449333pt;}
.y11{bottom:674.389333pt;}
.y10{bottom:690.329333pt;}
.yf{bottom:706.269333pt;}
.ye{bottom:722.209333pt;}
.yd{bottom:738.149333pt;}
.yc{bottom:754.090667pt;}
.yb{bottom:780.657333pt;}
.ya{bottom:801.910667pt;}
.y9{bottom:823.164000pt;}
.y8{bottom:844.418667pt;}
.y7{bottom:870.985333pt;}
.y6{bottom:886.925333pt;}
.y5{bottom:902.865333pt;}
.y4{bottom:918.805333pt;}
.y3{bottom:934.746667pt;}
.y2{bottom:979.910667pt;}
.y1{bottom:995.850667pt;}
.h2{height:39.903534pt;}
.h4{height:42.191258pt;}
.h3{height:43.981884pt;}
.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:91.828000pt;}
.x3{left:108.800000pt;}
.x4{left:124.741333pt;}
.x5{left:138.022667pt;}
}


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