/**
 * rightSidebar.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 right-hand sidebar.
 *
 * $Id$
 */

/**
 * Common HTML elements
 */


#headerTitle {
	text-align: center;
	width: 100%;
}

#body {
	width: 100%;
}

#rightSidebar {
	float: right;
	width: 160px;
	/*width: 14%;*/
	padding: 1em 0em 1em 0em;
	font-size: 0.65em;
	height: 100%;
	/*margin-right: 10%;*/
	margin-right: 5px;
	margin-left: 2%;
	color: #E86E23;
	font-weight:bold;
	font-style: bold;
}

* html #rightSidebar { margin-right: 5%; }

#main {
	float: left;
	min-width: 600px;
	margin-left: 0px;
	display: inline;
	overflow: hidden;
}
#rightSidebar a {
	text-decoration: none;
}

#rightSidebar a:link {
	color: #F9f9f9;
}

#rightSidebar a:active {
	color: #F9f9f9;
}

#rightSidebar a:visited {
	color: #375;
}

#rightSidebar a:hover {
	color: #FFF ;
	background: #990000;
	text-decoration: underline;
}
