/** * leftSidebar.css * * Copyright (c) 2000-2008 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.4 2008/05/21 20:59:58 asmecher Exp $ *//** * Common HTML elements */#headerTitle {	width: 100%;}#body {	vertical-align: top;	height: 100%;}#leftSidebar {	float: left;	width: 14%;	padding: 1em 0em 1em 0em;	font-size: 0.65em;	height: 100%;	margin-left: 10%;	margin-right: 2%;	display: inline;	overflow: hidden;}#main {	float: right;	width: 53%;	margin-right: 10%;	overflow: hidden;	border-top: 10px #CCCC00;}/* hack to set width for non-IE browsers to to a percentage    width of container (like it should be), not the window */html>body #main {	width: 63%;} 