
/**
 * leftSidebar.css
 *
 * Copyright (c) 2003-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.7 2008/06/13 16:22:43 asmecher Exp $
 */

/**
 * Common HTML elements
 */


#headerTitle {
    text-align : left;
    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: 10px;
    margin-right: 5px;
    display: inline;
    overflow: hidden;
  }


#main {
    float: right;
    width: 83%;
    overflow: hidden;
  }


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

