/**
 * leftSidebar.css
 *
 * Copyright (c) 2003-2011 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$
 */

/**
 * Common HTML elements
 */

#headerTitle {
	width: 100%;
}

#body {
	vertical-align: top;
	height: 100%;
	
}

#leftSidebar {
	background: #fff url(left-bg.png) repeat-y;
	float: left;
	width: 200px;
	min-height:700px;
	padding: 0px 0px 0px 0px;
	font-size: 12px;
	height: 100%;
	margin-left: 0px;
	/*margin-right: 10px;*/
	display: inline;
	overflow: hidden;
	position:relative;
	top:43px;
	color:#FFF;
	font-size:13px;

}
#leftSidebar a{
	color: #fff;
	font-size:12px;
}

#leftSidebar a:link {
	color: #fff;
}

#leftSidebar a:active {
	color: #f9d142;
}

#leftSidebar a:visited {
	color: #fff;
}

#leftSidebar a:hover {
	color: #f9d142;
	
}

#main {
	float: right;
overflow: hidden;
width:874px;
position:relative;
	top:43px;
	padding:0px 10px 10px 10px;
border-right:#f9d142 solid 3px;
border-left:#f9d142 solid 3px;
border-bottom:#f9d142 solid 3px;
border-top:#f9d142 solid 3px;
}

