
/* 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_ca9a4c53b618.woff")format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_f688fa912b59.woff")format("woff");}.ff2{font-family:ff2;line-height:0.930664;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_ebf877272514.woff")format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_877f069e71e5.woff")format("woff");}.ff4{font-family:ff4;line-height:0.707031;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_898ad5f799c1.woff")format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_5137cb3e7d95.woff")format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_81edf9d63dbf.woff")format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_b487ec25c91b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.740723;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;}
.m1{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);}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.794880px;}
.ls22{letter-spacing:-0.723600px;}
.ls25{letter-spacing:-0.633600px;}
.ls20{letter-spacing:-0.627120px;}
.ls24{letter-spacing:-0.570240px;}
.ls11{letter-spacing:-0.397440px;}
.ls1e{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.316800px;}
.ls21{letter-spacing:-0.289440px;}
.ls1d{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.264960px;}
.ls3{letter-spacing:-0.252720px;}
.ls4{letter-spacing:-0.241200px;}
.ls1c{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.192960px;}
.ls2{letter-spacing:-0.168480px;}
.ls1{letter-spacing:-0.156240px;}
.ls5{letter-spacing:-0.144720px;}
.ls2a{letter-spacing:-0.131760px;}
.ls1a{letter-spacing:-0.126720px;}
.lsf{letter-spacing:-0.066240px;}
.ls18{letter-spacing:-0.063360px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.084240px;}
.ls29{letter-spacing:0.131760px;}
.ls6{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.168480px;}
.ls27{letter-spacing:0.198720px;}
.ls13{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.253440px;}
.ls26{letter-spacing:0.289440px;}
.ls1f{letter-spacing:0.324000px;}
.lsa{letter-spacing:2.318400px;}
.lsb{letter-spacing:3.775680px;}
.ls8{letter-spacing:4.438080px;}
.lsc{letter-spacing:8.081280px;}
.ls7{letter-spacing:8.809920px;}
.ls14{letter-spacing:25.470720px;}
.ls9{letter-spacing:33.318643px;}
.ls28{letter-spacing:295.537668px;}
.ls16{letter-spacing:309.170150px;}
.ls15{letter-spacing:317.560310px;}
.ls12{letter-spacing:320.814000px;}
.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;}
}
.ws25{word-spacing:-48.240000px;}
.ws39{word-spacing:-46.511278px;}
.ws3b{word-spacing:-46.379518px;}
.ws3c{word-spacing:-46.247758px;}
.ws0{word-spacing:-43.278480px;}
.ws3a{word-spacing:-36.497518px;}
.ws1f{word-spacing:-22.176000px;}
.ws20{word-spacing:-21.985920px;}
.ws2a{word-spacing:-21.732480px;}
.ws24{word-spacing:-19.332000px;}
.ws22{word-spacing:-19.008000px;}
.ws21{word-spacing:-18.738000px;}
.ws1e{word-spacing:-18.701280px;}
.ws23{word-spacing:-18.684000px;}
.ws2c{word-spacing:-15.168960px;}
.wsb{word-spacing:-15.102720px;}
.ws2d{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.904000px;}
.wsa{word-spacing:-14.175360px;}
.ws2b{word-spacing:-13.700160px;}
.ws26{word-spacing:-13.410720px;}
.ws29{word-spacing:-13.217760px;}
.ws27{word-spacing:-13.121280px;}
.ws28{word-spacing:-12.687120px;}
.ws2{word-spacing:-10.757520px;}
.ws1{word-spacing:-10.661040px;}
.ws4{word-spacing:-3.593520px;}
.ws2e{word-spacing:-0.950400px;}
.ws6{word-spacing:-0.842400px;}
.wsd{word-spacing:-0.529920px;}
.ws30{word-spacing:-0.486000px;}
.ws37{word-spacing:-0.289440px;}
.ws32{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.190080px;}
.ws14{word-spacing:-0.132480px;}
.ws7{word-spacing:-0.084240px;}
.ws36{word-spacing:-0.063360px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.048240px;}
.ws5{word-spacing:0.084240px;}
.ws8{word-spacing:0.168480px;}
.ws35{word-spacing:0.192960px;}
.ws1d{word-spacing:0.198720px;}
.ws31{word-spacing:0.216000px;}
.wsf{word-spacing:0.264960px;}
.wse{word-spacing:0.397440px;}
.ws34{word-spacing:0.482400px;}
.ws33{word-spacing:0.627120px;}
.ws18{word-spacing:3.113280px;}
.ws19{word-spacing:3.312000px;}
.ws1a{word-spacing:3.841920px;}
.ws16{word-spacing:4.040640px;}
.ws15{word-spacing:4.504320px;}
.ws38{word-spacing:6.160320px;}
.ws1b{word-spacing:8.147520px;}
.ws11{word-spacing:8.876160px;}
.ws10{word-spacing:9.074880px;}
.ws13{word-spacing:15.500160px;}
.ws1c{word-spacing:17.288640px;}
.ws12{word-spacing:20.600640px;}
.ws17{word-spacing:33.517440px;}
.ws3d{word-spacing:64.352160px;}
._2{margin-left:-1.418400px;}
._0{width:1.249920px;}
._1{width:3.749760px;}
._6{width:4.851360px;}
._5{width:9.074880px;}
._8{width:10.082160px;}
._a{width:41.727512px;}
._9{width:71.298720px;}
._4{width:834.312923px;}
._7{width:848.998080px;}
._3{width:866.226240px;}
.fc5{color:transparent;}
.fc1{color:rgb(197,14,31);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(242,242,242);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:131.759995px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y14{bottom:4.679993px;}
.y52{bottom:5.040000px;}
.y51{bottom:18.900000px;}
.y12{bottom:19.259995px;}
.y30{bottom:22.680000px;}
.y11{bottom:33.839996px;}
.y2e{bottom:36.180000px;}
.y2f{bottom:38.339999px;}
.y31{bottom:76.139997px;}
.y32{bottom:76.679998px;}
.y10{bottom:112.140003px;}
.y15{bottom:116.819996px;}
.y2d{bottom:123.839996px;}
.y13{bottom:131.399998px;}
.yf{bottom:200.887370px;}
.ye{bottom:243.723410px;}
.y54{bottom:243.900009px;}
.yd{bottom:273.059990px;}
.yc{bottom:311.580002px;}
.yb{bottom:370.487523px;}
.y34{bottom:400.858572px;}
.ya{bottom:408.641763px;}
.y33{bottom:434.525052px;}
.y9{bottom:446.796003px;}
.y53{bottom:464.039978px;}
.y2c{bottom:471.335077px;}
.y8{bottom:484.950243px;}
.y2b{bottom:509.489317px;}
.y7{bottom:523.104483px;}
.y2a{bottom:547.643557px;}
.y29{bottom:585.797797px;}
.y28{bottom:609.197077px;}
.y27{bottom:632.232037px;}
.y45{bottom:654.854420px;}
.y26{bottom:670.204117px;}
.y44{bottom:693.008660px;}
.y25{bottom:708.358357px;}
.y43{bottom:716.407940px;}
.y24{bottom:746.512597px;}
.y42{bottom:754.380020px;}
.y23{bottom:769.911877px;}
.y41{bottom:775.796084px;}
.y50{bottom:804.059967px;}
.y40{bottom:805.861664px;}
.y22{bottom:807.883957px;}
.y3f{bottom:822.420044px;}
.y21{bottom:831.283237px;}
.y4f{bottom:838.620026px;}
.y3e{bottom:853.025771px;}
.y20{bottom:854.318197px;}
.y4e{bottom:873.920905px;}
.y3d{bottom:874.980011px;}
.y1f{bottom:877.535317px;}
.y1e{bottom:900.752437px;}
.y3c{bottom:909.901642px;}
.y4d{bottom:917.467583px;}
.y1d{bottom:923.787397px;}
.y3b{bottom:926.460022px;}
.y3a{bottom:945.715467px;}
.y1c{bottom:947.004517px;}
.y4c{bottom:963.715342px;}
.y39{bottom:966.059967px;}
.y1b{bottom:970.221637px;}
.y38{bottom:999.344204px;}
.y1a{bottom:1008.193717px;}
.y4b{bottom:1018.791019px;}
.y37{bottom:1021.488524px;}
.y6{bottom:1024.408793px;}
.y19{bottom:1031.410837px;}
.y18{bottom:1054.627957px;}
.y36{bottom:1056.954284px;}
.y5{bottom:1062.563033px;}
.y4a{bottom:1073.866697px;}
.y35{bottom:1092.420044px;}
.y17{bottom:1092.600037px;}
.y4{bottom:1100.717273px;}
.y49{bottom:1129.140015px;}
.y16{bottom:1134.719971px;}
.y3{bottom:1138.871513px;}
.y48{bottom:1176.471004px;}
.y2{bottom:1177.025753px;}
.y47{bottom:1196.815504px;}
.y1{bottom:1215.179993px;}
.y46{bottom:1217.160004px;}
.h6{height:34.625391px;}
.hc{height:34.743164px;}
.h11{height:35.120039px;}
.hb{height:35.167148px;}
.ha{height:41.291016px;}
.h5{height:45.178499px;}
.hf{height:47.339999px;}
.h2{height:47.545312px;}
.h8{height:48.138750px;}
.h9{height:48.448125px;}
.h7{height:58.902187px;}
.h4{height:64.413984px;}
.he{height:100.106715px;}
.hd{height:100.750074px;}
.h3{height:112.526367px;}
.h10{height:331.019989px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:-2.355011px;}
.w2{width:117.180004px;}
.w3{width:877.320007px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.280000px;}
.x1{left:84.959999px;}
.xd{left:89.274787px;}
.x10{left:106.559996px;}
.xe{left:127.439999px;}
.xa{left:167.232959px;}
.xb{left:169.919998px;}
.xc{left:191.326498px;}
.x8{left:536.534636px;}
.x6{left:629.055353px;}
.x7{left:666.315349px;}
.x2{left:719.099991px;}
.x3{left:756.179993px;}
.x5{left:786.557507px;}
.x4{left:810.539978px;}
.x9{left:850.140015px;}
.x11{left:895.320007px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.706560pt;}
.ls22{letter-spacing:-0.643200pt;}
.ls25{letter-spacing:-0.563200pt;}
.ls20{letter-spacing:-0.557440pt;}
.ls24{letter-spacing:-0.506880pt;}
.ls11{letter-spacing:-0.353280pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.281600pt;}
.ls21{letter-spacing:-0.257280pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.235520pt;}
.ls3{letter-spacing:-0.224640pt;}
.ls4{letter-spacing:-0.214400pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.171520pt;}
.ls2{letter-spacing:-0.149760pt;}
.ls1{letter-spacing:-0.138880pt;}
.ls5{letter-spacing:-0.128640pt;}
.ls2a{letter-spacing:-0.117120pt;}
.ls1a{letter-spacing:-0.112640pt;}
.lsf{letter-spacing:-0.058880pt;}
.ls18{letter-spacing:-0.056320pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.074880pt;}
.ls29{letter-spacing:0.117120pt;}
.ls6{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.149760pt;}
.ls27{letter-spacing:0.176640pt;}
.ls13{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.225280pt;}
.ls26{letter-spacing:0.257280pt;}
.ls1f{letter-spacing:0.288000pt;}
.lsa{letter-spacing:2.060800pt;}
.lsb{letter-spacing:3.356160pt;}
.ls8{letter-spacing:3.944960pt;}
.lsc{letter-spacing:7.183360pt;}
.ls7{letter-spacing:7.831040pt;}
.ls14{letter-spacing:22.640640pt;}
.ls9{letter-spacing:29.616572pt;}
.ls28{letter-spacing:262.700149pt;}
.ls16{letter-spacing:274.817911pt;}
.ls15{letter-spacing:282.275831pt;}
.ls12{letter-spacing:285.168000pt;}
.ws25{word-spacing:-42.880000pt;}
.ws39{word-spacing:-41.343358pt;}
.ws3b{word-spacing:-41.226238pt;}
.ws3c{word-spacing:-41.109118pt;}
.ws0{word-spacing:-38.469760pt;}
.ws3a{word-spacing:-32.442239pt;}
.ws1f{word-spacing:-19.712000pt;}
.ws20{word-spacing:-19.543040pt;}
.ws2a{word-spacing:-19.317760pt;}
.ws24{word-spacing:-17.184000pt;}
.ws22{word-spacing:-16.896000pt;}
.ws21{word-spacing:-16.656000pt;}
.ws1e{word-spacing:-16.623360pt;}
.ws23{word-spacing:-16.608000pt;}
.ws2c{word-spacing:-13.483520pt;}
.wsb{word-spacing:-13.424640pt;}
.ws2d{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.248000pt;}
.wsa{word-spacing:-12.600320pt;}
.ws2b{word-spacing:-12.177920pt;}
.ws26{word-spacing:-11.920640pt;}
.ws29{word-spacing:-11.749120pt;}
.ws27{word-spacing:-11.663360pt;}
.ws28{word-spacing:-11.277440pt;}
.ws2{word-spacing:-9.562240pt;}
.ws1{word-spacing:-9.476480pt;}
.ws4{word-spacing:-3.194240pt;}
.ws2e{word-spacing:-0.844800pt;}
.ws6{word-spacing:-0.748800pt;}
.wsd{word-spacing:-0.471040pt;}
.ws30{word-spacing:-0.432000pt;}
.ws37{word-spacing:-0.257280pt;}
.ws32{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.168960pt;}
.ws14{word-spacing:-0.117760pt;}
.ws7{word-spacing:-0.074880pt;}
.ws36{word-spacing:-0.056320pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.042880pt;}
.ws5{word-spacing:0.074880pt;}
.ws8{word-spacing:0.149760pt;}
.ws35{word-spacing:0.171520pt;}
.ws1d{word-spacing:0.176640pt;}
.ws31{word-spacing:0.192000pt;}
.wsf{word-spacing:0.235520pt;}
.wse{word-spacing:0.353280pt;}
.ws34{word-spacing:0.428800pt;}
.ws33{word-spacing:0.557440pt;}
.ws18{word-spacing:2.767360pt;}
.ws19{word-spacing:2.944000pt;}
.ws1a{word-spacing:3.415040pt;}
.ws16{word-spacing:3.591680pt;}
.ws15{word-spacing:4.003840pt;}
.ws38{word-spacing:5.475840pt;}
.ws1b{word-spacing:7.242240pt;}
.ws11{word-spacing:7.889920pt;}
.ws10{word-spacing:8.066560pt;}
.ws13{word-spacing:13.777920pt;}
.ws1c{word-spacing:15.367680pt;}
.ws12{word-spacing:18.311680pt;}
.ws17{word-spacing:29.793280pt;}
.ws3d{word-spacing:57.201920pt;}
._2{margin-left:-1.260800pt;}
._0{width:1.111040pt;}
._1{width:3.333120pt;}
._6{width:4.312320pt;}
._5{width:8.066560pt;}
._8{width:8.961920pt;}
._a{width:37.091122pt;}
._9{width:63.376640pt;}
._4{width:741.611487pt;}
._7{width:754.664960pt;}
._3{width:769.978880pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:117.119995pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:4.159993pt;}
.y52{bottom:4.480000pt;}
.y51{bottom:16.800000pt;}
.y12{bottom:17.119995pt;}
.y30{bottom:20.160000pt;}
.y11{bottom:30.079997pt;}
.y2e{bottom:32.160000pt;}
.y2f{bottom:34.079999pt;}
.y31{bottom:67.679998pt;}
.y32{bottom:68.159999pt;}
.y10{bottom:99.680003pt;}
.y15{bottom:103.839996pt;}
.y2d{bottom:110.079997pt;}
.y13{bottom:116.799998pt;}
.yf{bottom:178.566551pt;}
.ye{bottom:216.643031pt;}
.y54{bottom:216.800008pt;}
.yd{bottom:242.719991pt;}
.yc{bottom:276.960002pt;}
.yb{bottom:329.322243pt;}
.y34{bottom:356.318731pt;}
.ya{bottom:363.237123pt;}
.y33{bottom:386.244491pt;}
.y9{bottom:397.152003pt;}
.y53{bottom:412.479980pt;}
.y2c{bottom:418.964513pt;}
.y8{bottom:431.066883pt;}
.y2b{bottom:452.879393pt;}
.y7{bottom:464.981763pt;}
.y2a{bottom:486.794273pt;}
.y29{bottom:520.709153pt;}
.y28{bottom:541.508513pt;}
.y27{bottom:561.984033pt;}
.y45{bottom:582.092818pt;}
.y26{bottom:595.736993pt;}
.y44{bottom:616.007698pt;}
.y25{bottom:629.651873pt;}
.y43{bottom:636.807058pt;}
.y24{bottom:663.566753pt;}
.y42{bottom:670.560018pt;}
.y23{bottom:684.366113pt;}
.y41{bottom:689.596519pt;}
.y50{bottom:714.719971pt;}
.y40{bottom:716.321479pt;}
.y22{bottom:718.119073pt;}
.y3f{bottom:731.040039pt;}
.y21{bottom:738.918433pt;}
.y4f{bottom:745.440023pt;}
.y3e{bottom:758.245130pt;}
.y20{bottom:759.393953pt;}
.y4e{bottom:776.818582pt;}
.y3d{bottom:777.760010pt;}
.y1f{bottom:780.031393pt;}
.y1e{bottom:800.668833pt;}
.y3c{bottom:808.801460pt;}
.y4d{bottom:815.526741pt;}
.y1d{bottom:821.144353pt;}
.y3b{bottom:823.520020pt;}
.y3a{bottom:840.635971pt;}
.y1c{bottom:841.781793pt;}
.y4c{bottom:856.635859pt;}
.y39{bottom:858.719971pt;}
.y1b{bottom:862.419233pt;}
.y38{bottom:888.305959pt;}
.y1a{bottom:896.172193pt;}
.y4b{bottom:905.592017pt;}
.y37{bottom:907.989799pt;}
.y6{bottom:910.585593pt;}
.y19{bottom:916.809633pt;}
.y18{bottom:937.447073pt;}
.y36{bottom:939.514919pt;}
.y5{bottom:944.500473pt;}
.y4a{bottom:954.548175pt;}
.y35{bottom:971.040039pt;}
.y17{bottom:971.200033pt;}
.y4{bottom:978.415353pt;}
.y49{bottom:1003.680013pt;}
.y16{bottom:1008.639974pt;}
.y3{bottom:1012.330233pt;}
.y48{bottom:1045.752003pt;}
.y2{bottom:1046.245113pt;}
.y47{bottom:1063.836003pt;}
.y1{bottom:1080.159993pt;}
.y46{bottom:1081.920003pt;}
.h6{height:30.778125pt;}
.hc{height:30.882812pt;}
.h11{height:31.217812pt;}
.hb{height:31.259687pt;}
.ha{height:36.703125pt;}
.h5{height:40.158666pt;}
.hf{height:42.079999pt;}
.h2{height:42.262500pt;}
.h8{height:42.790000pt;}
.h9{height:43.065000pt;}
.h7{height:52.357500pt;}
.h4{height:57.256875pt;}
.he{height:88.983746pt;}
.hd{height:89.555621pt;}
.h3{height:100.023438pt;}
.h10{height:294.239990pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:-2.093343pt;}
.w2{width:104.160004pt;}
.w3{width:779.840007pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.360000pt;}
.x1{left:75.519999pt;}
.xd{left:79.355366pt;}
.x10{left:94.719997pt;}
.xe{left:113.279999pt;}
.xa{left:148.651519pt;}
.xb{left:151.039998pt;}
.xc{left:170.067998pt;}
.x8{left:476.919676pt;}
.x6{left:559.160313pt;}
.x7{left:592.280310pt;}
.x2{left:639.199992pt;}
.x3{left:672.159993pt;}
.x5{left:699.162229pt;}
.x4{left:720.479980pt;}
.x9{left:755.680013pt;}
.x11{left:795.840007pt;}
}


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