/**
 * styles/leftSidebar.css
 *
 * Copyright (c) 2013-2019 Simon Fraser University
 * Copyright (c) 2003-2019 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.
 *
 */

/**
 * Common HTML elements
 */

#headerTitle {
	width: 100%;
}

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

#leftSidebar {
        float: left;
	width: 16%;
	padding: 1em 0em 1em 0em;
	font-size: 0.65em;
	height: 100%;
	margin-left: 10%;
	margin-right: 2%;
	display: inline;
	overflow: hidden;
	margin-left: 2.5em;
	margin-right: auto;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	padding-top: 0em;
	padding-bottom: 0em;
	padding: 10px 10px;
	box-shadow: 2px 2px 2px 2px #757575;
	border-radius: 1.5px 1.5px 1.5px 1.5px;
	background-color: white;
}

#main {
	float: right;
	width: 69%;
	margin-right: 7%;
	overflow: hidden;
        float: right;	
	margin-top: 1em;
	margin-bottom: 1.5em;
	padding-top: 0em;
	padding-bottom: 0em;
	padding: 10px 10px;
	box-shadow: 2px 2px 2px 2px #757575;
	border-radius: 1.5px 1.5px 1.5px 1.5px;
	background-color: white;
}

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