
/* 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_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_c1e278c631c5.woff")format("woff");}.ff2{font-family:ff2;line-height:1.004000;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_e88926e3d324.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_fdc1796ba2fb.woff")format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_26aaee98074a.woff")format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_f675250e155a.woff")format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_8748e99757e8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v4{vertical-align:-82.080000px;}
.v2{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320000px;}
.v3{vertical-align:22.320000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.358560px;}
.ls7{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.288000px;}
.lse{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.416160px;}
.lsa{letter-spacing:0.717120px;}
.ls1{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.799280px;}
.ls17{letter-spacing:2.304000px;}
.ls11{letter-spacing:6.624000px;}
.ls20{letter-spacing:8.064000px;}
.ls1a{letter-spacing:8.784000px;}
.ls1f{letter-spacing:12.384000px;}
.ls12{letter-spacing:18.864000px;}
.ls14{letter-spacing:28.224000px;}
.ls16{letter-spacing:35.424000px;}
.ls18{letter-spacing:54.864000px;}
.ls15{letter-spacing:91.584000px;}
.ls21{letter-spacing:195.984000px;}
.ls19{letter-spacing:1011.744000px;}
.ls13{letter-spacing:1229.544000px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws8{word-spacing:-26.892000px;}
.ws7{word-spacing:-26.784000px;}
.ws1{word-spacing:-26.676000px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws17{word-spacing:-16.704000px;}
.ws16{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.416000px;}
.ws14{word-spacing:-16.344000px;}
.ws19{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.200000px;}
.ws1a{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.657120px;}
.ws9{word-spacing:-15.298560px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.581440px;}
.wsb{word-spacing:-1.080000px;}
.ws1d{word-spacing:-0.864000px;}
.ws34{word-spacing:-0.576000px;}
.ws12{word-spacing:-0.432000px;}
.ws13{word-spacing:-0.331200px;}
.wsf{word-spacing:-0.324000px;}
.ws20{word-spacing:-0.288000px;}
.ws1b{word-spacing:-0.144000px;}
.wse{word-spacing:-0.108000px;}
.wsa{word-spacing:0.000000px;}
.ws32{word-spacing:0.072000px;}
.ws10{word-spacing:0.108000px;}
.wsc{word-spacing:0.144000px;}
.wsd{word-spacing:0.216000px;}
.ws36{word-spacing:0.288000px;}
.ws11{word-spacing:0.324000px;}
.ws31{word-spacing:0.360000px;}
.ws1c{word-spacing:0.576000px;}
.ws23{word-spacing:1.296000px;}
.ws25{word-spacing:2.016000px;}
.ws26{word-spacing:2.304000px;}
.ws2c{word-spacing:2.448000px;}
.ws29{word-spacing:2.736000px;}
.ws2a{word-spacing:3.816000px;}
.ws1f{word-spacing:6.336000px;}
.ws1e{word-spacing:7.056000px;}
.ws35{word-spacing:7.776000px;}
.ws2f{word-spacing:8.496000px;}
.ws30{word-spacing:8.784000px;}
.ws2d{word-spacing:9.216000px;}
.ws27{word-spacing:9.936000px;}
.ws33{word-spacing:11.376000px;}
.ws2e{word-spacing:12.096000px;}
.ws28{word-spacing:13.536000px;}
.ws2b{word-spacing:17.856000px;}
.ws21{word-spacing:18.576000px;}
.ws22{word-spacing:19.296000px;}
.ws24{word-spacing:27.936000px;}
._e{margin-left:-195.840000px;}
._7{margin-left:-28.224000px;}
._2{margin-left:-16.416000px;}
._a{margin-left:-8.928000px;}
._8{margin-left:-2.664000px;}
._1{margin-left:-1.152000px;}
._0{width:1.188000px;}
._5{width:2.736000px;}
._3{width:6.192000px;}
._d{width:7.200000px;}
._b{width:8.352000px;}
._9{width:9.540000px;}
._c{width:12.528000px;}
._4{width:18.000000px;}
._6{width:28.296000px;}
.fc1{color:rgb(13,27,67);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:49.140000px;}
.y1e{bottom:69.660000px;}
.y4f{bottom:74.880000px;}
.y1d{bottom:90.000000px;}
.y4e{bottom:95.580000px;}
.y1c{bottom:110.520000px;}
.y4d{bottom:116.100000px;}
.y1b{bottom:130.860000px;}
.y4c{bottom:136.800000px;}
.y1a{bottom:151.200000px;}
.y4b{bottom:157.500000px;}
.y19{bottom:171.720000px;}
.y4a{bottom:178.200000px;}
.y18{bottom:192.060000px;}
.y49{bottom:198.720000px;}
.y17{bottom:212.400000px;}
.y16{bottom:232.740000px;}
.y15{bottom:253.260000px;}
.y48{bottom:260.820000px;}
.y14{bottom:273.600000px;}
.y47{bottom:281.340000px;}
.y13{bottom:293.940000px;}
.y46{bottom:303.300000px;}
.y12{bottom:314.460000px;}
.y45{bottom:325.080000px;}
.y11{bottom:334.800000px;}
.y44{bottom:347.040000px;}
.y10{bottom:355.140000px;}
.y43{bottom:369.000000px;}
.ye{bottom:374.760000px;}
.yf{bottom:380.700000px;}
.y42{bottom:389.520000px;}
.yd{bottom:403.740000px;}
.y41{bottom:410.220000px;}
.y40{bottom:430.920000px;}
.yc{bottom:441.540000px;}
.y3f{bottom:451.620000px;}
.y3e{bottom:472.140000px;}
.yb{bottom:479.340000px;}
.y3d{bottom:492.840000px;}
.y3c{bottom:513.540000px;}
.ya{bottom:517.140000px;}
.y3b{bottom:534.240000px;}
.y3a{bottom:554.760000px;}
.y9{bottom:554.940000px;}
.y39{bottom:575.460000px;}
.y8{bottom:592.740000px;}
.y38{bottom:596.160000px;}
.y37{bottom:616.860000px;}
.y7{bottom:626.580000px;}
.y36{bottom:637.380000px;}
.y6{bottom:651.780000px;}
.y35{bottom:658.080000px;}
.y5{bottom:676.980000px;}
.y34{bottom:678.780000px;}
.y33{bottom:700.560000px;}
.y4{bottom:702.180000px;}
.y32{bottom:722.520000px;}
.y3{bottom:727.380000px;}
.y31{bottom:744.300000px;}
.y2{bottom:756.540000px;}
.y30{bottom:766.260000px;}
.y55{bottom:768.420000px;}
.y2f{bottom:786.960000px;}
.y2e{bottom:807.660000px;}
.y54{bottom:830.340000px;}
.y2d{bottom:848.880000px;}
.y53{bottom:851.040000px;}
.y2c{bottom:869.580000px;}
.y2b{bottom:890.280000px;}
.y2a{bottom:910.800000px;}
.y52{bottom:912.960000px;}
.y51{bottom:933.660000px;}
.y29{bottom:951.840000px;}
.y50{bottom:954.360000px;}
.y28{bottom:973.620000px;}
.y27{bottom:995.580000px;}
.y26{bottom:1016.280000px;}
.y25{bottom:1036.980000px;}
.y24{bottom:1078.200000px;}
.y23{bottom:1098.900000px;}
.y22{bottom:1119.600000px;}
.y21{bottom:1140.300000px;}
.y20{bottom:1196.100000px;}
.y1{bottom:1247.400000px;}
.h6{height:30.960000px;}
.h7{height:56.966400px;}
.h5{height:61.920000px;}
.h8{height:63.763920px;}
.h3{height:70.628906px;}
.h9{height:76.824000px;}
.h4{height:92.880000px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x8{left:106.200000px;}
.xc{left:133.200000px;}
.x5{left:149.040000px;}
.x7{left:157.860000px;}
.x9{left:160.200000px;}
.xa{left:174.960000px;}
.xb{left:201.960000px;}
.x6{left:208.800000px;}
.x3{left:237.780000px;}
.x10{left:327.060000px;}
.xd{left:355.320000px;}
.xf{left:415.260000px;}
.x4{left:442.980000px;}
.xe{left:446.400000px;}
.x11{left:531.000000px;}
@media print{
.v4{vertical-align:-72.960000pt;}
.v2{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840000pt;}
.v3{vertical-align:19.840000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.318720pt;}
.ls7{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.369920pt;}
.lsa{letter-spacing:0.637440pt;}
.ls1{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.599360pt;}
.ls17{letter-spacing:2.048000pt;}
.ls11{letter-spacing:5.888000pt;}
.ls20{letter-spacing:7.168000pt;}
.ls1a{letter-spacing:7.808000pt;}
.ls1f{letter-spacing:11.008000pt;}
.ls12{letter-spacing:16.768000pt;}
.ls14{letter-spacing:25.088000pt;}
.ls16{letter-spacing:31.488000pt;}
.ls18{letter-spacing:48.768000pt;}
.ls15{letter-spacing:81.408000pt;}
.ls21{letter-spacing:174.208000pt;}
.ls19{letter-spacing:899.328000pt;}
.ls13{letter-spacing:1092.928000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws8{word-spacing:-23.904000pt;}
.ws7{word-spacing:-23.808000pt;}
.ws1{word-spacing:-23.712000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws17{word-spacing:-14.848000pt;}
.ws16{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.592000pt;}
.ws14{word-spacing:-14.528000pt;}
.ws19{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.400000pt;}
.ws1a{word-spacing:-14.208000pt;}
.ws3{word-spacing:-13.917440pt;}
.ws9{word-spacing:-13.598720pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.961280pt;}
.wsb{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.768000pt;}
.ws34{word-spacing:-0.512000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws13{word-spacing:-0.294400pt;}
.wsf{word-spacing:-0.288000pt;}
.ws20{word-spacing:-0.256000pt;}
.ws1b{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.096000pt;}
.wsa{word-spacing:0.000000pt;}
.ws32{word-spacing:0.064000pt;}
.ws10{word-spacing:0.096000pt;}
.wsc{word-spacing:0.128000pt;}
.wsd{word-spacing:0.192000pt;}
.ws36{word-spacing:0.256000pt;}
.ws11{word-spacing:0.288000pt;}
.ws31{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.512000pt;}
.ws23{word-spacing:1.152000pt;}
.ws25{word-spacing:1.792000pt;}
.ws26{word-spacing:2.048000pt;}
.ws2c{word-spacing:2.176000pt;}
.ws29{word-spacing:2.432000pt;}
.ws2a{word-spacing:3.392000pt;}
.ws1f{word-spacing:5.632000pt;}
.ws1e{word-spacing:6.272000pt;}
.ws35{word-spacing:6.912000pt;}
.ws2f{word-spacing:7.552000pt;}
.ws30{word-spacing:7.808000pt;}
.ws2d{word-spacing:8.192000pt;}
.ws27{word-spacing:8.832000pt;}
.ws33{word-spacing:10.112000pt;}
.ws2e{word-spacing:10.752000pt;}
.ws28{word-spacing:12.032000pt;}
.ws2b{word-spacing:15.872000pt;}
.ws21{word-spacing:16.512000pt;}
.ws22{word-spacing:17.152000pt;}
.ws24{word-spacing:24.832000pt;}
._e{margin-left:-174.080000pt;}
._7{margin-left:-25.088000pt;}
._2{margin-left:-14.592000pt;}
._a{margin-left:-7.936000pt;}
._8{margin-left:-2.368000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.056000pt;}
._5{width:2.432000pt;}
._3{width:5.504000pt;}
._d{width:6.400000pt;}
._b{width:7.424000pt;}
._9{width:8.480000pt;}
._c{width:11.136000pt;}
._4{width:16.000000pt;}
._6{width:25.152000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:43.680000pt;}
.y1e{bottom:61.920000pt;}
.y4f{bottom:66.560000pt;}
.y1d{bottom:80.000000pt;}
.y4e{bottom:84.960000pt;}
.y1c{bottom:98.240000pt;}
.y4d{bottom:103.200000pt;}
.y1b{bottom:116.320000pt;}
.y4c{bottom:121.600000pt;}
.y1a{bottom:134.400000pt;}
.y4b{bottom:140.000000pt;}
.y19{bottom:152.640000pt;}
.y4a{bottom:158.400000pt;}
.y18{bottom:170.720000pt;}
.y49{bottom:176.640000pt;}
.y17{bottom:188.800000pt;}
.y16{bottom:206.880000pt;}
.y15{bottom:225.120000pt;}
.y48{bottom:231.840000pt;}
.y14{bottom:243.200000pt;}
.y47{bottom:250.080000pt;}
.y13{bottom:261.280000pt;}
.y46{bottom:269.600000pt;}
.y12{bottom:279.520000pt;}
.y45{bottom:288.960000pt;}
.y11{bottom:297.600000pt;}
.y44{bottom:308.480000pt;}
.y10{bottom:315.680000pt;}
.y43{bottom:328.000000pt;}
.ye{bottom:333.120000pt;}
.yf{bottom:338.400000pt;}
.y42{bottom:346.240000pt;}
.yd{bottom:358.880000pt;}
.y41{bottom:364.640000pt;}
.y40{bottom:383.040000pt;}
.yc{bottom:392.480000pt;}
.y3f{bottom:401.440000pt;}
.y3e{bottom:419.680000pt;}
.yb{bottom:426.080000pt;}
.y3d{bottom:438.080000pt;}
.y3c{bottom:456.480000pt;}
.ya{bottom:459.680000pt;}
.y3b{bottom:474.880000pt;}
.y3a{bottom:493.120000pt;}
.y9{bottom:493.280000pt;}
.y39{bottom:511.520000pt;}
.y8{bottom:526.880000pt;}
.y38{bottom:529.920000pt;}
.y37{bottom:548.320000pt;}
.y7{bottom:556.960000pt;}
.y36{bottom:566.560000pt;}
.y6{bottom:579.360000pt;}
.y35{bottom:584.960000pt;}
.y5{bottom:601.760000pt;}
.y34{bottom:603.360000pt;}
.y33{bottom:622.720000pt;}
.y4{bottom:624.160000pt;}
.y32{bottom:642.240000pt;}
.y3{bottom:646.560000pt;}
.y31{bottom:661.600000pt;}
.y2{bottom:672.480000pt;}
.y30{bottom:681.120000pt;}
.y55{bottom:683.040000pt;}
.y2f{bottom:699.520000pt;}
.y2e{bottom:717.920000pt;}
.y54{bottom:738.080000pt;}
.y2d{bottom:754.560000pt;}
.y53{bottom:756.480000pt;}
.y2c{bottom:772.960000pt;}
.y2b{bottom:791.360000pt;}
.y2a{bottom:809.600000pt;}
.y52{bottom:811.520000pt;}
.y51{bottom:829.920000pt;}
.y29{bottom:846.080000pt;}
.y50{bottom:848.320000pt;}
.y28{bottom:865.440000pt;}
.y27{bottom:884.960000pt;}
.y26{bottom:903.360000pt;}
.y25{bottom:921.760000pt;}
.y24{bottom:958.400000pt;}
.y23{bottom:976.800000pt;}
.y22{bottom:995.200000pt;}
.y21{bottom:1013.600000pt;}
.y20{bottom:1063.200000pt;}
.y1{bottom:1108.800000pt;}
.h6{height:27.520000pt;}
.h7{height:50.636800pt;}
.h5{height:55.040000pt;}
.h8{height:56.679040pt;}
.h3{height:62.781250pt;}
.h9{height:68.288000pt;}
.h4{height:82.560000pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x8{left:94.400000pt;}
.xc{left:118.400000pt;}
.x5{left:132.480000pt;}
.x7{left:140.320000pt;}
.x9{left:142.400000pt;}
.xa{left:155.520000pt;}
.xb{left:179.520000pt;}
.x6{left:185.600000pt;}
.x3{left:211.360000pt;}
.x10{left:290.720000pt;}
.xd{left:315.840000pt;}
.xf{left:369.120000pt;}
.x4{left:393.760000pt;}
.xe{left:396.800000pt;}
.x11{left:472.000000pt;}
}


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