/**
 * leftSidebar.css
 *
 * Copyright (c) 2000-2009 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Site-wide shared elements for pages including a left-hand sidebar.
 *
 * $Id: leftSidebar.css,v 1.5.2.1 2009/04/08 20:45:50 asmecher Exp $
 */

/**
 * Common HTML elements
 */

#headerTitle {
	width: 100%;
}

#body {
	vertical-align: top;
	height: 100%;
}

#leftSidebar {
	width: 220px;
	padding: 1em 0em 1em 0em;
	font-size: 0.7em;
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 100px;
	top: 125px;
}

#main {
	position: absolute;
	left: 330px;
	width: 680px;
	overflow: auto;
	top: 135px;
}

// Set main on non-IE browsers to have a 10% margin
*html #main {
	margin-right: 5%;
} 