
/* 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_e3dd5b282027.woff")format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_01b2ff3111bc.woff")format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_cf4fa03d0762.woff")format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_21028d8af5fa.woff")format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_10bc1d77b932.woff")format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_4b28ffacd1b2.woff")format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_ddefb78e61d0.woff")format("woff");}.ff7{font-family:ff7;line-height:0.767578;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:-23.760132px;}
.v3{vertical-align:-5.759766px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.759766px;}
.v1{vertical-align:23.760132px;}
.ls6{letter-spacing:-0.966000px;}
.lse{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.292200px;}
.ls1d{letter-spacing:-0.276000px;}
.ls1a{letter-spacing:-0.228000px;}
.ls1b{letter-spacing:-0.226800px;}
.ls7{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.193200px;}
.ls17{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000026px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.144051px;}
.ls18{letter-spacing:0.186600px;}
.ls13{letter-spacing:0.215971px;}
.ls8{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.216154px;}
.ls12{letter-spacing:0.288059px;}
.ls19{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.360000px;}
.ls11{letter-spacing:51.239997px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws6{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.200000px;}
.wsa{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.912000px;}
.ws11{word-spacing:-15.768000px;}
.ws16{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.624000px;}
.ws18{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.336000px;}
.ws0{word-spacing:-14.777040px;}
.ws2{word-spacing:-14.004240px;}
.ws13{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.692360px;}
.ws15{word-spacing:-13.278960px;}
.ws14{word-spacing:-13.277760px;}
.ws10{word-spacing:-12.546000px;}
.ws17{word-spacing:-10.626240px;}
.ws1{word-spacing:-9.437760px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-1.116033px;}
._0{width:1.044059px;}
._2{width:2.255982px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,10);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:4.859985px;}
.y56{bottom:4.904984px;}
.y5a{bottom:5.040024px;}
.y51{bottom:15.839996px;}
.y57{bottom:15.884995px;}
.y5b{bottom:16.019989px;}
.y4c{bottom:26.819962px;}
.y60{bottom:26.819984px;}
.y53{bottom:26.820007px;}
.y55{bottom:26.865005px;}
.y59{bottom:27.000000px;}
.y50{bottom:37.799973px;}
.y5e{bottom:37.799995px;}
.y4b{bottom:48.779984px;}
.y3{bottom:56.879997px;}
.y4f{bottom:59.759995px;}
.y4a{bottom:70.739960px;}
.y5f{bottom:70.739983px;}
.y52{bottom:70.740005px;}
.y2{bottom:70.919998px;}
.ya5{bottom:106.560000px;}
.y33{bottom:108.359997px;}
.y69{bottom:109.980000px;}
.y7a{bottom:127.080002px;}
.ya4{bottom:128.520000px;}
.y32{bottom:130.500000px;}
.y68{bottom:131.939999px;}
.y79{bottom:149.040000px;}
.ya3{bottom:150.480000px;}
.y31{bottom:152.459999px;}
.y67{bottom:153.899998px;}
.y78{bottom:171.000000px;}
.ya2{bottom:172.439999px;}
.y30{bottom:174.419998px;}
.y66{bottom:175.859997px;}
.y77{bottom:192.959999px;}
.ya1{bottom:194.580002px;}
.y2f{bottom:196.379997px;}
.y65{bottom:197.820007px;}
.y76{bottom:214.919998px;}
.ya0{bottom:216.540000px;}
.y2e{bottom:218.339996px;}
.y64{bottom:219.780006px;}
.y75{bottom:236.910004px;}
.y9f{bottom:238.530006px;}
.y2d{bottom:240.330002px;}
.y63{bottom:241.769989px;}
.y74{bottom:258.870003px;}
.y9e{bottom:260.490005px;}
.y2c{bottom:262.290000px;}
.y62{bottom:263.910004px;}
.y73{bottom:280.830002px;}
.y9d{bottom:282.450005px;}
.y2b{bottom:284.250000px;}
.y61{bottom:285.870003px;}
.y72{bottom:302.790000px;}
.y5d{bottom:303.690010px;}
.y9c{bottom:304.410004px;}
.y2a{bottom:306.209999px;}
.y71{bottom:324.750000px;}
.y9b{bottom:326.370003px;}
.y29{bottom:328.169998px;}
.y70{bottom:345.809990px;}
.y9a{bottom:348.330002px;}
.y28{bottom:350.129997px;}
.y6f{bottom:364.169998px;}
.y99{bottom:370.290000px;}
.y27{bottom:372.089996px;}
.y6e{bottom:378.570007px;}
.y5c{bottom:392.250000px;}
.y26{bottom:394.050018px;}
.y98{bottom:414.210022px;}
.y58{bottom:414.929993px;}
.y25{bottom:416.009995px;}
.y97{bottom:436.169998px;}
.y24{bottom:438.150009px;}
.y96{bottom:458.130020px;}
.y54{bottom:459.750000px;}
.y23{bottom:460.109985px;}
.y95{bottom:480.134995px;}
.y22{bottom:482.115005px;}
.y94{bottom:502.275009px;}
.y21{bottom:504.074982px;}
.y4e{bottom:504.435013px;}
.y93{bottom:524.234985px;}
.y20{bottom:526.035004px;}
.y92{bottom:546.195007px;}
.y1f{bottom:547.994980px;}
.y91{bottom:568.154984px;}
.y1e{bottom:569.955002px;}
.y90{bottom:590.115005px;}
.y1d{bottom:591.914978px;}
.y49{bottom:593.175018px;}
.y8f{bottom:612.074982px;}
.y1c{bottom:613.875000px;}
.y8e{bottom:634.035004px;}
.y1b{bottom:635.835022px;}
.y8d{bottom:655.994980px;}
.y1a{bottom:657.794998px;}
.y8c{bottom:677.955002px;}
.y19{bottom:679.755020px;}
.y6d{bottom:699.224991px;}
.y8b{bottom:699.945007px;}
.y48{bottom:700.304993px;}
.y18{bottom:701.744980px;}
.y47{bottom:718.125000px;}
.y6c{bottom:720.285004px;}
.y8a{bottom:721.904984px;}
.y17{bottom:723.705002px;}
.y6b{bottom:738.644989px;}
.y46{bottom:740.085022px;}
.y89{bottom:743.865005px;}
.y16{bottom:745.664978px;}
.y6a{bottom:752.865005px;}
.y45{bottom:762.044998px;}
.y88{bottom:765.824982px;}
.y15{bottom:767.804993px;}
.y44{bottom:784.004974px;}
.y87{bottom:787.785004px;}
.y14{bottom:789.765015px;}
.y43{bottom:805.964996px;}
.y86{bottom:809.925018px;}
.y13{bottom:811.725037px;}
.y42{bottom:827.925018px;}
.y85{bottom:831.885040px;}
.y12{bottom:833.684967px;}
.y41{bottom:849.885040px;}
.y84{bottom:853.844971px;}
.y11{bottom:855.644989px;}
.y40{bottom:871.844971px;}
.y83{bottom:875.804993px;}
.y10{bottom:877.605011px;}
.y3f{bottom:893.984985px;}
.y82{bottom:897.765015px;}
.yf{bottom:899.565033px;}
.y3e{bottom:915.945007px;}
.y81{bottom:919.725037px;}
.ye{bottom:921.524963px;}
.y3d{bottom:937.949982px;}
.y80{bottom:941.730011px;}
.yd{bottom:943.530029px;}
.y3c{bottom:959.910004px;}
.y7f{bottom:963.690033px;}
.yc{bottom:965.489960px;}
.y3b{bottom:981.870026px;}
.y7e{bottom:985.649963px;}
.yb{bottom:987.089996px;}
.y3a{bottom:1004.910004px;}
.ya{bottom:1007.250000px;}
.y7d{bottom:1007.609985px;}
.y39{bottom:1027.769989px;}
.y7c{bottom:1029.570007px;}
.y9{bottom:1033.350037px;}
.y38{bottom:1050.629974px;}
.y7b{bottom:1051.530029px;}
.y8{bottom:1053.510040px;}
.y7{bottom:1067.730011px;}
.y37{bottom:1073.489960px;}
.y6{bottom:1088.250000px;}
.y36{bottom:1095.449982px;}
.y5{bottom:1110.929993px;}
.y35{bottom:1117.589996px;}
.y4{bottom:1136.670044px;}
.y34{bottom:1139.550018px;}
.y1{bottom:1192.679993px;}
.hc{height:21.960000px;}
.h7{height:42.124087px;}
.ha{height:43.956000px;}
.hb{height:44.099999px;}
.h4{height:49.992188px;}
.h8{height:53.709961px;}
.hd{height:59.439023px;}
.h6{height:65.884219px;}
.h3{height:71.613281px;}
.h5{height:83.787539px;}
.h9{height:87.840002px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:81.719999px;}
.w7{width:84.240000px;}
.w4{width:84.456000px;}
.w5{width:94.860003px;}
.w9{width:94.896000px;}
.w6{width:95.075998px;}
.wa{width:105.660004px;}
.w8{width:105.695995px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740005px;}
.xd{left:8.820007px;}
.x1f{left:10.799973px;}
.x1b{left:13.500000px;}
.xb{left:14.760006px;}
.x1e{left:16.560013px;}
.xe{left:18.540001px;}
.x15{left:20.339996px;}
.xa{left:22.140003px;}
.x22{left:23.220005px;}
.x20{left:24.299973px;}
.x19{left:25.739960px;}
.x12{left:26.820007px;}
.xf{left:28.980011px;}
.x1c{left:30.420010px;}
.x17{left:32.265015px;}
.x23{left:33.839996px;}
.x24{left:36.000000px;}
.x16{left:37.845016px;}
.x26{left:39.105011px;}
.x8{left:40.680004px;}
.x21{left:42.839996px;}
.x1d{left:44.640015px;}
.x25{left:47.339996px;}
.x7{left:98.675995px;}
.x1{left:106.235983px;}
.x4{left:133.235983px;}
.x5{left:160.229986px;}
.x9{left:181.109997px;}
.x3{left:225.929979px;}
.xc{left:266.294998px;}
.x6{left:286.454989px;}
.x10{left:361.875000px;}
.x2{left:441.824968px;}
.x13{left:457.664978px;}
.x14{left:542.625000px;}
.x18{left:649.050018px;}
.x1a{left:744.660004px;}
.x27{left:787.499987px;}
@media print{
.v2{vertical-align:-21.120117pt;}
.v3{vertical-align:-5.119792pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.119792pt;}
.v1{vertical-align:21.120117pt;}
.ls6{letter-spacing:-0.858667pt;}
.lse{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.259733pt;}
.ls1d{letter-spacing:-0.245333pt;}
.ls1a{letter-spacing:-0.202667pt;}
.ls1b{letter-spacing:-0.201600pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.171733pt;}
.ls17{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000023pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.128046pt;}
.ls18{letter-spacing:0.165867pt;}
.ls13{letter-spacing:0.191974pt;}
.ls8{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.192137pt;}
.ls12{letter-spacing:0.256052pt;}
.ls19{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls11{letter-spacing:45.546664pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws6{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.400000pt;}
.wsa{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.wsb{word-spacing:-14.144000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws16{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.888000pt;}
.ws18{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.632000pt;}
.ws0{word-spacing:-13.135147pt;}
.ws2{word-spacing:-12.448213pt;}
.ws13{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.170987pt;}
.ws15{word-spacing:-11.803520pt;}
.ws14{word-spacing:-11.802453pt;}
.ws10{word-spacing:-11.152000pt;}
.ws17{word-spacing:-9.445547pt;}
.ws1{word-spacing:-8.389120pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-0.992029pt;}
._0{width:0.928052pt;}
._2{width:2.005317pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:4.319987pt;}
.y56{bottom:4.359985pt;}
.y5a{bottom:4.480021pt;}
.y51{bottom:14.079997pt;}
.y57{bottom:14.119995pt;}
.y5b{bottom:14.239990pt;}
.y4c{bottom:23.839966pt;}
.y60{bottom:23.839986pt;}
.y53{bottom:23.840007pt;}
.y55{bottom:23.880005pt;}
.y59{bottom:24.000000pt;}
.y50{bottom:33.599976pt;}
.y5e{bottom:33.599996pt;}
.y4b{bottom:43.359985pt;}
.y3{bottom:50.559998pt;}
.y4f{bottom:53.119995pt;}
.y4a{bottom:62.879964pt;}
.y5f{bottom:62.879985pt;}
.y52{bottom:62.880005pt;}
.y2{bottom:63.039998pt;}
.ya5{bottom:94.720000pt;}
.y33{bottom:96.319997pt;}
.y69{bottom:97.760000pt;}
.y7a{bottom:112.960002pt;}
.ya4{bottom:114.240000pt;}
.y32{bottom:116.000000pt;}
.y68{bottom:117.279999pt;}
.y79{bottom:132.480000pt;}
.ya3{bottom:133.760000pt;}
.y31{bottom:135.519999pt;}
.y67{bottom:136.799998pt;}
.y78{bottom:152.000000pt;}
.ya2{bottom:153.279999pt;}
.y30{bottom:155.039998pt;}
.y66{bottom:156.319997pt;}
.y77{bottom:171.519999pt;}
.ya1{bottom:172.960002pt;}
.y2f{bottom:174.559998pt;}
.y65{bottom:175.840007pt;}
.y76{bottom:191.039998pt;}
.ya0{bottom:192.480000pt;}
.y2e{bottom:194.079997pt;}
.y64{bottom:195.360006pt;}
.y75{bottom:210.586670pt;}
.y9f{bottom:212.026672pt;}
.y2d{bottom:213.626668pt;}
.y63{bottom:214.906657pt;}
.y74{bottom:230.106669pt;}
.y9e{bottom:231.546672pt;}
.y2c{bottom:233.146667pt;}
.y62{bottom:234.586670pt;}
.y73{bottom:249.626668pt;}
.y9d{bottom:251.066671pt;}
.y2b{bottom:252.666667pt;}
.y61{bottom:254.106669pt;}
.y72{bottom:269.146667pt;}
.y5d{bottom:269.946676pt;}
.y9c{bottom:270.586670pt;}
.y2a{bottom:272.186666pt;}
.y71{bottom:288.666667pt;}
.y9b{bottom:290.106669pt;}
.y29{bottom:291.706665pt;}
.y70{bottom:307.386658pt;}
.y9a{bottom:309.626668pt;}
.y28{bottom:311.226664pt;}
.y6f{bottom:323.706665pt;}
.y99{bottom:329.146667pt;}
.y27{bottom:330.746663pt;}
.y6e{bottom:336.506673pt;}
.y5c{bottom:348.666667pt;}
.y26{bottom:350.266683pt;}
.y98{bottom:368.186686pt;}
.y58{bottom:368.826660pt;}
.y25{bottom:369.786662pt;}
.y97{bottom:387.706665pt;}
.y24{bottom:389.466675pt;}
.y96{bottom:407.226685pt;}
.y54{bottom:408.666667pt;}
.y23{bottom:408.986654pt;}
.y95{bottom:426.786662pt;}
.y22{bottom:428.546672pt;}
.y94{bottom:446.466675pt;}
.y21{bottom:448.066650pt;}
.y4e{bottom:448.386678pt;}
.y93{bottom:465.986654pt;}
.y20{bottom:467.586670pt;}
.y92{bottom:485.506673pt;}
.y1f{bottom:487.106649pt;}
.y91{bottom:505.026652pt;}
.y1e{bottom:506.626668pt;}
.y90{bottom:524.546672pt;}
.y1d{bottom:526.146647pt;}
.y49{bottom:527.266683pt;}
.y8f{bottom:544.066650pt;}
.y1c{bottom:545.666667pt;}
.y8e{bottom:563.586670pt;}
.y1b{bottom:565.186686pt;}
.y8d{bottom:583.106649pt;}
.y1a{bottom:584.706665pt;}
.y8c{bottom:602.626668pt;}
.y19{bottom:604.226685pt;}
.y6d{bottom:621.533325pt;}
.y8b{bottom:622.173340pt;}
.y48{bottom:622.493327pt;}
.y18{bottom:623.773315pt;}
.y47{bottom:638.333333pt;}
.y6c{bottom:640.253337pt;}
.y8a{bottom:641.693319pt;}
.y17{bottom:643.293335pt;}
.y6b{bottom:656.573324pt;}
.y46{bottom:657.853353pt;}
.y89{bottom:661.213338pt;}
.y16{bottom:662.813314pt;}
.y6a{bottom:669.213338pt;}
.y45{bottom:677.373332pt;}
.y88{bottom:680.733317pt;}
.y15{bottom:682.493327pt;}
.y44{bottom:696.893311pt;}
.y87{bottom:700.253337pt;}
.y14{bottom:702.013346pt;}
.y43{bottom:716.413330pt;}
.y86{bottom:719.933350pt;}
.y13{bottom:721.533366pt;}
.y42{bottom:735.933350pt;}
.y85{bottom:739.453369pt;}
.y12{bottom:741.053304pt;}
.y41{bottom:755.453369pt;}
.y84{bottom:758.973307pt;}
.y11{bottom:760.573324pt;}
.y40{bottom:774.973307pt;}
.y83{bottom:778.493327pt;}
.y10{bottom:780.093343pt;}
.y3f{bottom:794.653320pt;}
.y82{bottom:798.013346pt;}
.yf{bottom:799.613363pt;}
.y3e{bottom:814.173340pt;}
.y81{bottom:817.533366pt;}
.ye{bottom:819.133301pt;}
.y3d{bottom:833.733317pt;}
.y80{bottom:837.093343pt;}
.yd{bottom:838.693359pt;}
.y3c{bottom:853.253337pt;}
.y7f{bottom:856.613363pt;}
.yc{bottom:858.213298pt;}
.y3b{bottom:872.773356pt;}
.y7e{bottom:876.133301pt;}
.yb{bottom:877.413330pt;}
.y3a{bottom:893.253337pt;}
.ya{bottom:895.333333pt;}
.y7d{bottom:895.653320pt;}
.y39{bottom:913.573324pt;}
.y7c{bottom:915.173340pt;}
.y9{bottom:918.533366pt;}
.y38{bottom:933.893311pt;}
.y7b{bottom:934.693359pt;}
.y8{bottom:936.453369pt;}
.y7{bottom:949.093343pt;}
.y37{bottom:954.213298pt;}
.y6{bottom:967.333333pt;}
.y36{bottom:973.733317pt;}
.y5{bottom:987.493327pt;}
.y35{bottom:993.413330pt;}
.y4{bottom:1010.373372pt;}
.y34{bottom:1012.933350pt;}
.y1{bottom:1060.159993pt;}
.hc{height:19.520000pt;}
.h7{height:37.443633pt;}
.ha{height:39.072000pt;}
.hb{height:39.199999pt;}
.h4{height:44.437500pt;}
.h8{height:47.742188pt;}
.hd{height:52.834688pt;}
.h6{height:58.563750pt;}
.h3{height:63.656250pt;}
.h5{height:74.477812pt;}
.h9{height:78.080002pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:72.639999pt;}
.w7{width:74.880000pt;}
.w4{width:75.072000pt;}
.w5{width:84.320002pt;}
.w9{width:84.352000pt;}
.w6{width:84.511998pt;}
.wa{width:93.920003pt;}
.w8{width:93.951996pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880005pt;}
.xd{left:7.840007pt;}
.x1f{left:9.599976pt;}
.x1b{left:12.000000pt;}
.xb{left:13.120005pt;}
.x1e{left:14.720011pt;}
.xe{left:16.480001pt;}
.x15{left:18.079997pt;}
.xa{left:19.680003pt;}
.x22{left:20.640005pt;}
.x20{left:21.599976pt;}
.x19{left:22.879964pt;}
.x12{left:23.840007pt;}
.xf{left:25.760010pt;}
.x1c{left:27.040009pt;}
.x17{left:28.680013pt;}
.x23{left:30.079997pt;}
.x24{left:32.000000pt;}
.x16{left:33.640015pt;}
.x26{left:34.760010pt;}
.x8{left:36.160004pt;}
.x21{left:38.079997pt;}
.x1d{left:39.680013pt;}
.x25{left:42.079997pt;}
.x7{left:87.711995pt;}
.x1{left:94.431985pt;}
.x4{left:118.431985pt;}
.x5{left:142.426654pt;}
.x9{left:160.986664pt;}
.x3{left:200.826648pt;}
.xc{left:236.706665pt;}
.x6{left:254.626656pt;}
.x10{left:321.666667pt;}
.x2{left:392.733305pt;}
.x13{left:406.813314pt;}
.x14{left:482.333333pt;}
.x18{left:576.933350pt;}
.x1a{left:661.920003pt;}
.x27{left:699.999988pt;}
}


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