
/* 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_ff0efbc665d6.woff")format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_b286335a3ae1.woff")format("woff");}.ff2{font-family:ff2;line-height:0.884000;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_4472c9be410e.woff")format("woff");}.ff3{font-family:ff3;line-height:0.884000;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_d04267982f62.woff")format("woff");}.ff4{font-family:ff4;line-height:0.106000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:3.070080px;}
.ls0{letter-spacing:8.654400px;}
.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;}
}
.ws3e{word-spacing:-8.707680px;}
.ws65{word-spacing:-3.129120px;}
.ws6{word-spacing:-0.053280px;}
.ws66{word-spacing:0.000000px;}
.ws4e{word-spacing:8.601120px;}
.ws3c{word-spacing:11.452320px;}
.wsb{word-spacing:11.878560px;}
.ws25{word-spacing:12.186720px;}
.ws52{word-spacing:13.266720px;}
.wsd{word-spacing:13.626720px;}
.ws2b{word-spacing:13.780800px;}
.ws1f{word-spacing:15.066720px;}
.ws15{word-spacing:15.072480px;}
.ws5c{word-spacing:15.212160px;}
.ws19{word-spacing:15.220800px;}
.ws62{word-spacing:15.324480px;}
.ws32{word-spacing:15.426720px;}
.ws1c{word-spacing:15.992640px;}
.ws31{word-spacing:16.302240px;}
.ws56{word-spacing:16.403040px;}
.wse{word-spacing:16.506720px;}
.ws28{word-spacing:16.660800px;}
.ws63{word-spacing:16.833600px;}
.ws64{word-spacing:17.399520px;}
.ws17{word-spacing:17.618400px;}
.ws30{word-spacing:17.843040px;}
.ws10{word-spacing:17.936640px;}
.wsa{word-spacing:17.946720px;}
.ws11{word-spacing:17.952480px;}
.ws5f{word-spacing:18.100800px;}
.ws5e{word-spacing:18.204480px;}
.wsf{word-spacing:18.486720px;}
.ws9{word-spacing:18.829440px;}
.ws26{word-spacing:19.283040px;}
.wsc{word-spacing:19.386720px;}
.ws1a{word-spacing:19.540800px;}
.ws8{word-spacing:19.644480px;}
.ws16{word-spacing:19.746720px;}
.ws5d{word-spacing:20.312640px;}
.ws3d{word-spacing:20.723040px;}
.ws46{word-spacing:20.826720px;}
.ws39{word-spacing:20.980800px;}
.ws42{word-spacing:22.163040px;}
.ws4b{word-spacing:22.188960px;}
.ws1d{word-spacing:22.420800px;}
.ws7{word-spacing:22.626720px;}
.ws5a{word-spacing:23.088960px;}
.ws3b{word-spacing:23.603040px;}
.ws23{word-spacing:23.706720px;}
.ws60{word-spacing:24.066720px;}
.ws18{word-spacing:24.374880px;}
.ws4d{word-spacing:24.477120px;}
.ws45{word-spacing:25.043040px;}
.ws36{word-spacing:25.146720px;}
.ws44{word-spacing:25.300800px;}
.ws1b{word-spacing:25.506720px;}
.ws22{word-spacing:25.763040px;}
.ws2e{word-spacing:26.483040px;}
.ws2{word-spacing:26.586720px;}
.ws2a{word-spacing:26.844480px;}
.ws61{word-spacing:26.894880px;}
.ws4f{word-spacing:26.946720px;}
.ws3f{word-spacing:27.203040px;}
.ws1{word-spacing:28.026720px;}
.ws14{word-spacing:28.987200px;}
.ws47{word-spacing:29.363040px;}
.ws29{word-spacing:29.466720px;}
.ws2d{word-spacing:29.620800px;}
.ws2f{word-spacing:30.803040px;}
.ws33{word-spacing:30.906720px;}
.ws51{word-spacing:31.266720px;}
.ws55{word-spacing:32.243040px;}
.ws4{word-spacing:32.346720px;}
.ws12{word-spacing:32.352480px;}
.ws1e{word-spacing:32.500800px;}
.ws0{word-spacing:33.168960px;}
.ws37{word-spacing:33.683040px;}
.ws34{word-spacing:35.123040px;}
.ws58{word-spacing:35.226720px;}
.ws41{word-spacing:35.380800px;}
.ws59{word-spacing:36.563040px;}
.ws43{word-spacing:36.666720px;}
.ws54{word-spacing:36.820800px;}
.ws13{word-spacing:37.032480px;}
.ws53{word-spacing:37.539360px;}
.ws38{word-spacing:38.003040px;}
.ws3{word-spacing:38.106720px;}
.ws50{word-spacing:38.466720px;}
.ws2c{word-spacing:39.443040px;}
.ws35{word-spacing:40.883040px;}
.ws5b{word-spacing:41.244480px;}
.ws20{word-spacing:42.426720px;}
.ws21{word-spacing:42.580800px;}
.ws57{word-spacing:42.684480px;}
.ws40{word-spacing:43.763040px;}
.ws27{word-spacing:43.866720px;}
.ws3a{word-spacing:44.020800px;}
.ws24{word-spacing:44.226720px;}
.ws49{word-spacing:46.284480px;}
.ws48{word-spacing:48.186720px;}
.ws4c{word-spacing:48.444480px;}
.ws5{word-spacing:49.986720px;}
.ws4a{word-spacing:1244.535840px;}
._d{margin-left:-23.964480px;}
._27{margin-left:-8.480160px;}
._22{margin-left:-6.249600px;}
._1b{margin-left:-5.070240px;}
._5{margin-left:-3.036960px;}
._4{margin-left:-1.491840px;}
._1{width:1.491840px;}
._1a{width:2.517120px;}
._0{width:3.600000px;}
._24{width:4.605120px;}
._1e{width:5.620320px;}
._25{width:7.149600px;}
._e{width:8.228160px;}
._2c{width:10.094400px;}
._20{width:12.477600px;}
._16{width:13.524480px;}
._18{width:14.554080px;}
._17{width:16.300800px;}
._14{width:17.588160px;}
._15{width:19.031040px;}
._12{width:20.210400px;}
._13{width:21.234240px;}
._1f{width:22.720320px;}
._19{width:23.764320px;}
._7{width:25.040160px;}
._6{width:26.533440px;}
._9{width:28.444320px;}
._8{width:29.573280px;}
._1c{width:31.230720px;}
._21{width:32.381280px;}
._c{width:33.576480px;}
._3{width:34.868160px;}
._2{width:36.613440px;}
._28{width:37.781280px;}
._1d{width:38.813760px;}
._a{width:40.474080px;}
._b{width:42.167520px;}
._2a{width:43.460640px;}
._10{width:44.897760px;}
._26{width:46.134720px;}
._f{width:47.211840px;}
._23{width:48.588480px;}
._11{width:51.171840px;}
._2b{width:52.392960px;}
._29{width:53.752320px;}
._2d{width:1241.396640px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:53.280000px;}
.fs2{font-size:59.040000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:44.640000px;}
.y69{bottom:45.000000px;}
.y39{bottom:61.200000px;}
.y68{bottom:61.560000px;}
.y38{bottom:77.400000px;}
.y67{bottom:77.760000px;}
.y37{bottom:93.960000px;}
.y66{bottom:94.320000px;}
.y36{bottom:110.520000px;}
.y65{bottom:110.880000px;}
.y35{bottom:126.720000px;}
.y64{bottom:127.080000px;}
.y34{bottom:143.280000px;}
.y63{bottom:143.640000px;}
.y33{bottom:159.840000px;}
.y62{bottom:160.200000px;}
.y32{bottom:176.040000px;}
.y61{bottom:176.400000px;}
.y31{bottom:192.600000px;}
.y60{bottom:192.960000px;}
.y30{bottom:209.160000px;}
.y5f{bottom:209.520000px;}
.y2f{bottom:225.360000px;}
.y5e{bottom:225.720000px;}
.y2e{bottom:241.920000px;}
.y5d{bottom:242.280000px;}
.y2d{bottom:258.480000px;}
.y5c{bottom:258.840000px;}
.y2c{bottom:274.680000px;}
.y5b{bottom:275.040000px;}
.y2b{bottom:291.240000px;}
.y5a{bottom:291.600000px;}
.y2a{bottom:307.800000px;}
.y59{bottom:308.160000px;}
.y29{bottom:324.000000px;}
.y58{bottom:324.360000px;}
.y28{bottom:340.560000px;}
.y57{bottom:340.920000px;}
.y27{bottom:357.120000px;}
.y56{bottom:357.480000px;}
.y26{bottom:373.320000px;}
.y55{bottom:373.680000px;}
.y25{bottom:389.880000px;}
.y54{bottom:390.240000px;}
.y24{bottom:406.440000px;}
.y53{bottom:406.800000px;}
.y23{bottom:422.640000px;}
.y52{bottom:423.000000px;}
.y22{bottom:439.200000px;}
.y51{bottom:439.560000px;}
.y21{bottom:455.760000px;}
.y50{bottom:456.120000px;}
.y20{bottom:471.960000px;}
.y4f{bottom:472.320000px;}
.y1f{bottom:488.520000px;}
.y4e{bottom:488.880000px;}
.y1e{bottom:504.720000px;}
.y4d{bottom:505.440000px;}
.y1d{bottom:521.280000px;}
.y4c{bottom:521.640000px;}
.y1c{bottom:537.840000px;}
.y4b{bottom:538.200000px;}
.y1b{bottom:554.040000px;}
.y4a{bottom:554.760000px;}
.y1a{bottom:570.600000px;}
.y49{bottom:570.960000px;}
.y19{bottom:587.160000px;}
.y48{bottom:587.520000px;}
.y47{bottom:604.080000px;}
.y18{bottom:619.920000px;}
.y46{bottom:620.280000px;}
.y17{bottom:636.480000px;}
.y45{bottom:636.840000px;}
.y16{bottom:653.040000px;}
.y15{bottom:669.240000px;}
.y44{bottom:669.600000px;}
.y43{bottom:686.160000px;}
.y42{bottom:702.360000px;}
.y41{bottom:718.920000px;}
.y40{bottom:735.480000px;}
.y14{bottom:744.480000px;}
.y3f{bottom:751.680000px;}
.y13{bottom:759.240000px;}
.y3e{bottom:768.240000px;}
.y12{bottom:774.360000px;}
.y3d{bottom:784.800000px;}
.y11{bottom:789.120000px;}
.y3c{bottom:801.000000px;}
.y10{bottom:804.240000px;}
.y3b{bottom:817.560000px;}
.yf{bottom:834.120000px;}
.ye{bottom:850.320000px;}
.yd{bottom:866.880000px;}
.yc{bottom:883.440000px;}
.yb{bottom:899.640000px;}
.ya{bottom:916.200000px;}
.y9{bottom:932.760000px;}
.y8{bottom:948.960000px;}
.y7{bottom:965.520000px;}
.y6{bottom:982.080000px;}
.y5{bottom:998.640000px;}
.y4{bottom:1014.840000px;}
.y3{bottom:1031.400000px;}
.y2{bottom:1047.960000px;}
.y1{bottom:1064.160000px;}
.y6a{bottom:1094.400000px;}
.h5{height:36.352800px;}
.h4{height:36.923040px;}
.h3{height:37.082880px;}
.h2{height:40.759200px;}
.h6{height:45.165600px;}
.h0{height:1141.228500px;}
.h1{height:1141.500000px;}
.w0{width:840.613500px;}
.w1{width:840.750000px;}
.x0{left:0.000000px;}
.x1{left:42.840000px;}
.x5{left:54.720000px;}
.x2{left:59.760000px;}
.x6{left:63.000000px;}
.x7{left:163.800000px;}
.x4{left:179.640000px;}
.x3{left:302.760000px;}
.xc{left:377.280000px;}
.x8{left:433.800000px;}
.x9{left:450.720000px;}
.xb{left:588.240000px;}
.xa{left:709.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.728960pt;}
.ls0{letter-spacing:7.692800pt;}
.ws3e{word-spacing:-7.740160pt;}
.ws65{word-spacing:-2.781440pt;}
.ws6{word-spacing:-0.047360pt;}
.ws66{word-spacing:0.000000pt;}
.ws4e{word-spacing:7.645440pt;}
.ws3c{word-spacing:10.179840pt;}
.wsb{word-spacing:10.558720pt;}
.ws25{word-spacing:10.832640pt;}
.ws52{word-spacing:11.792640pt;}
.wsd{word-spacing:12.112640pt;}
.ws2b{word-spacing:12.249600pt;}
.ws1f{word-spacing:13.392640pt;}
.ws15{word-spacing:13.397760pt;}
.ws5c{word-spacing:13.521920pt;}
.ws19{word-spacing:13.529600pt;}
.ws62{word-spacing:13.621760pt;}
.ws32{word-spacing:13.712640pt;}
.ws1c{word-spacing:14.215680pt;}
.ws31{word-spacing:14.490880pt;}
.ws56{word-spacing:14.580480pt;}
.wse{word-spacing:14.672640pt;}
.ws28{word-spacing:14.809600pt;}
.ws63{word-spacing:14.963200pt;}
.ws64{word-spacing:15.466240pt;}
.ws17{word-spacing:15.660800pt;}
.ws30{word-spacing:15.860480pt;}
.ws10{word-spacing:15.943680pt;}
.wsa{word-spacing:15.952640pt;}
.ws11{word-spacing:15.957760pt;}
.ws5f{word-spacing:16.089600pt;}
.ws5e{word-spacing:16.181760pt;}
.wsf{word-spacing:16.432640pt;}
.ws9{word-spacing:16.737280pt;}
.ws26{word-spacing:17.140480pt;}
.wsc{word-spacing:17.232640pt;}
.ws1a{word-spacing:17.369600pt;}
.ws8{word-spacing:17.461760pt;}
.ws16{word-spacing:17.552640pt;}
.ws5d{word-spacing:18.055680pt;}
.ws3d{word-spacing:18.420480pt;}
.ws46{word-spacing:18.512640pt;}
.ws39{word-spacing:18.649600pt;}
.ws42{word-spacing:19.700480pt;}
.ws4b{word-spacing:19.723520pt;}
.ws1d{word-spacing:19.929600pt;}
.ws7{word-spacing:20.112640pt;}
.ws5a{word-spacing:20.523520pt;}
.ws3b{word-spacing:20.980480pt;}
.ws23{word-spacing:21.072640pt;}
.ws60{word-spacing:21.392640pt;}
.ws18{word-spacing:21.666560pt;}
.ws4d{word-spacing:21.757440pt;}
.ws45{word-spacing:22.260480pt;}
.ws36{word-spacing:22.352640pt;}
.ws44{word-spacing:22.489600pt;}
.ws1b{word-spacing:22.672640pt;}
.ws22{word-spacing:22.900480pt;}
.ws2e{word-spacing:23.540480pt;}
.ws2{word-spacing:23.632640pt;}
.ws2a{word-spacing:23.861760pt;}
.ws61{word-spacing:23.906560pt;}
.ws4f{word-spacing:23.952640pt;}
.ws3f{word-spacing:24.180480pt;}
.ws1{word-spacing:24.912640pt;}
.ws14{word-spacing:25.766400pt;}
.ws47{word-spacing:26.100480pt;}
.ws29{word-spacing:26.192640pt;}
.ws2d{word-spacing:26.329600pt;}
.ws2f{word-spacing:27.380480pt;}
.ws33{word-spacing:27.472640pt;}
.ws51{word-spacing:27.792640pt;}
.ws55{word-spacing:28.660480pt;}
.ws4{word-spacing:28.752640pt;}
.ws12{word-spacing:28.757760pt;}
.ws1e{word-spacing:28.889600pt;}
.ws0{word-spacing:29.483520pt;}
.ws37{word-spacing:29.940480pt;}
.ws34{word-spacing:31.220480pt;}
.ws58{word-spacing:31.312640pt;}
.ws41{word-spacing:31.449600pt;}
.ws59{word-spacing:32.500480pt;}
.ws43{word-spacing:32.592640pt;}
.ws54{word-spacing:32.729600pt;}
.ws13{word-spacing:32.917760pt;}
.ws53{word-spacing:33.368320pt;}
.ws38{word-spacing:33.780480pt;}
.ws3{word-spacing:33.872640pt;}
.ws50{word-spacing:34.192640pt;}
.ws2c{word-spacing:35.060480pt;}
.ws35{word-spacing:36.340480pt;}
.ws5b{word-spacing:36.661760pt;}
.ws20{word-spacing:37.712640pt;}
.ws21{word-spacing:37.849600pt;}
.ws57{word-spacing:37.941760pt;}
.ws40{word-spacing:38.900480pt;}
.ws27{word-spacing:38.992640pt;}
.ws3a{word-spacing:39.129600pt;}
.ws24{word-spacing:39.312640pt;}
.ws49{word-spacing:41.141760pt;}
.ws48{word-spacing:42.832640pt;}
.ws4c{word-spacing:43.061760pt;}
.ws5{word-spacing:44.432640pt;}
.ws4a{word-spacing:1106.254080pt;}
._d{margin-left:-21.301760pt;}
._27{margin-left:-7.537920pt;}
._22{margin-left:-5.555200pt;}
._1b{margin-left:-4.506880pt;}
._5{margin-left:-2.699520pt;}
._4{margin-left:-1.326080pt;}
._1{width:1.326080pt;}
._1a{width:2.237440pt;}
._0{width:3.200000pt;}
._24{width:4.093440pt;}
._1e{width:4.995840pt;}
._25{width:6.355200pt;}
._e{width:7.313920pt;}
._2c{width:8.972800pt;}
._20{width:11.091200pt;}
._16{width:12.021760pt;}
._18{width:12.936960pt;}
._17{width:14.489600pt;}
._14{width:15.633920pt;}
._15{width:16.916480pt;}
._12{width:17.964800pt;}
._13{width:18.874880pt;}
._1f{width:20.195840pt;}
._19{width:21.123840pt;}
._7{width:22.257920pt;}
._6{width:23.585280pt;}
._9{width:25.283840pt;}
._8{width:26.287360pt;}
._1c{width:27.760640pt;}
._21{width:28.783360pt;}
._c{width:29.845760pt;}
._3{width:30.993920pt;}
._2{width:32.545280pt;}
._28{width:33.583360pt;}
._1d{width:34.501120pt;}
._a{width:35.976960pt;}
._b{width:37.482240pt;}
._2a{width:38.631680pt;}
._10{width:39.909120pt;}
._26{width:41.008640pt;}
._f{width:41.966080pt;}
._23{width:43.189760pt;}
._11{width:45.486080pt;}
._2b{width:46.571520pt;}
._29{width:47.779840pt;}
._2d{width:1103.463680pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:47.360000pt;}
.fs2{font-size:52.480000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:39.680000pt;}
.y69{bottom:40.000000pt;}
.y39{bottom:54.400000pt;}
.y68{bottom:54.720000pt;}
.y38{bottom:68.800000pt;}
.y67{bottom:69.120000pt;}
.y37{bottom:83.520000pt;}
.y66{bottom:83.840000pt;}
.y36{bottom:98.240000pt;}
.y65{bottom:98.560000pt;}
.y35{bottom:112.640000pt;}
.y64{bottom:112.960000pt;}
.y34{bottom:127.360000pt;}
.y63{bottom:127.680000pt;}
.y33{bottom:142.080000pt;}
.y62{bottom:142.400000pt;}
.y32{bottom:156.480000pt;}
.y61{bottom:156.800000pt;}
.y31{bottom:171.200000pt;}
.y60{bottom:171.520000pt;}
.y30{bottom:185.920000pt;}
.y5f{bottom:186.240000pt;}
.y2f{bottom:200.320000pt;}
.y5e{bottom:200.640000pt;}
.y2e{bottom:215.040000pt;}
.y5d{bottom:215.360000pt;}
.y2d{bottom:229.760000pt;}
.y5c{bottom:230.080000pt;}
.y2c{bottom:244.160000pt;}
.y5b{bottom:244.480000pt;}
.y2b{bottom:258.880000pt;}
.y5a{bottom:259.200000pt;}
.y2a{bottom:273.600000pt;}
.y59{bottom:273.920000pt;}
.y29{bottom:288.000000pt;}
.y58{bottom:288.320000pt;}
.y28{bottom:302.720000pt;}
.y57{bottom:303.040000pt;}
.y27{bottom:317.440000pt;}
.y56{bottom:317.760000pt;}
.y26{bottom:331.840000pt;}
.y55{bottom:332.160000pt;}
.y25{bottom:346.560000pt;}
.y54{bottom:346.880000pt;}
.y24{bottom:361.280000pt;}
.y53{bottom:361.600000pt;}
.y23{bottom:375.680000pt;}
.y52{bottom:376.000000pt;}
.y22{bottom:390.400000pt;}
.y51{bottom:390.720000pt;}
.y21{bottom:405.120000pt;}
.y50{bottom:405.440000pt;}
.y20{bottom:419.520000pt;}
.y4f{bottom:419.840000pt;}
.y1f{bottom:434.240000pt;}
.y4e{bottom:434.560000pt;}
.y1e{bottom:448.640000pt;}
.y4d{bottom:449.280000pt;}
.y1d{bottom:463.360000pt;}
.y4c{bottom:463.680000pt;}
.y1c{bottom:478.080000pt;}
.y4b{bottom:478.400000pt;}
.y1b{bottom:492.480000pt;}
.y4a{bottom:493.120000pt;}
.y1a{bottom:507.200000pt;}
.y49{bottom:507.520000pt;}
.y19{bottom:521.920000pt;}
.y48{bottom:522.240000pt;}
.y47{bottom:536.960000pt;}
.y18{bottom:551.040000pt;}
.y46{bottom:551.360000pt;}
.y17{bottom:565.760000pt;}
.y45{bottom:566.080000pt;}
.y16{bottom:580.480000pt;}
.y15{bottom:594.880000pt;}
.y44{bottom:595.200000pt;}
.y43{bottom:609.920000pt;}
.y42{bottom:624.320000pt;}
.y41{bottom:639.040000pt;}
.y40{bottom:653.760000pt;}
.y14{bottom:661.760000pt;}
.y3f{bottom:668.160000pt;}
.y13{bottom:674.880000pt;}
.y3e{bottom:682.880000pt;}
.y12{bottom:688.320000pt;}
.y3d{bottom:697.600000pt;}
.y11{bottom:701.440000pt;}
.y3c{bottom:712.000000pt;}
.y10{bottom:714.880000pt;}
.y3b{bottom:726.720000pt;}
.yf{bottom:741.440000pt;}
.ye{bottom:755.840000pt;}
.yd{bottom:770.560000pt;}
.yc{bottom:785.280000pt;}
.yb{bottom:799.680000pt;}
.ya{bottom:814.400000pt;}
.y9{bottom:829.120000pt;}
.y8{bottom:843.520000pt;}
.y7{bottom:858.240000pt;}
.y6{bottom:872.960000pt;}
.y5{bottom:887.680000pt;}
.y4{bottom:902.080000pt;}
.y3{bottom:916.800000pt;}
.y2{bottom:931.520000pt;}
.y1{bottom:945.920000pt;}
.y6a{bottom:972.800000pt;}
.h5{height:32.313600pt;}
.h4{height:32.820480pt;}
.h3{height:32.962560pt;}
.h2{height:36.230400pt;}
.h6{height:40.147200pt;}
.h0{height:1014.425333pt;}
.h1{height:1014.666667pt;}
.w0{width:747.212000pt;}
.w1{width:747.333333pt;}
.x0{left:0.000000pt;}
.x1{left:38.080000pt;}
.x5{left:48.640000pt;}
.x2{left:53.120000pt;}
.x6{left:56.000000pt;}
.x7{left:145.600000pt;}
.x4{left:159.680000pt;}
.x3{left:269.120000pt;}
.xc{left:335.360000pt;}
.x8{left:385.600000pt;}
.x9{left:400.640000pt;}
.xb{left:522.880000pt;}
.xa{left:631.040000pt;}
}


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