/**
*	file:  sidebar.css
*	Styles that apply to all pages with sidebar navigation
**/

#pagebodyleft {
	width:25%;
	float: left;
	height:100%;
}

#pagebodyright {
	width:74%;
	float: right;
}

#sidebar {
	background-color: #DFC580; /* Gold color */
	margin:10px;
  	padding:10px;
	text-align: left;
	font-weight: bold;
	line-height: 150%;
	/*height:100%;*/
}

#sidebar h2 {
	margin:10px;
}

#sidebar p {
	margin: 10px 20px;
	text-align: left;
	background-color: #DFC580;
}

#sidebar a:link {
	text-decoration: none;
	color: #005074;
}

#sidebar a:visited {
	text-decoration: none;
	color: #005074;
}

#sidebar a:active {
	text-decoration: none;
	color: #005074;
}

#sidebar a:hover {
	text-decoration: underline;
	color: #985035;  <!-- FFFDDO -->
}