/**
 * styles/bothSidebars.css
 *
 * Copyright (c) 2003-2013 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Site-wide shared elements for pages including both a left-hand sidebar and a
 * right-hand sidebar.
 *
 */

/**
 * Common HTML elements
 */


#main {
  position: relative;
  float: left;
  width: 54%;
}

#leftSidebar {
  float: left;
  width: 18%;
  padding: 1em 1em 1em 1em;
  height: 100%;
  margin-right: 2%;
  display: inline;
  overflow: hidden;
}

#rightSidebar {
  float: right;
  width: 18%;
  padding: 1em 1em 1em 1em;
  height: 100%;
  margin-left: 2%;
}