

/**************************/
/* right sidebar */
#right-sidebar			/* Fixed width, absolutely positioned. Note the z-index. */
{
	position:absolute;
	width: 100px; 		/* 1px less than the right margin of main content (1px is the width of the content;'s right border). */
	top: 200px;   		/* Equal to the heights of banner plus banner's border plus 15 (for extra space above the div). */
	right:50px;			/* Div sits right next to the right side. No extra space here. 
	border: 5px solid #6666FF;
	background: #FFF;*/
	padding: 0.5em;		/* Provides space between the border and the text in the div. */
	font-family: "Lucida Calligraphy", "Edwardian Script ITC", Georgia, "Times New Roman";
	font-size: 90%;
	 z-index:600; 		/*This z-index higher than the content's z-index so that the rigth sidebar always always sits above the content. */
	text-decoration: none;
}

.right-sidebar a	{
	font-family: "Lucida Calligraphy", Edwardian Script ITC, Georgia, Times New Roman;
}

#right-sidebar a:hover 	{
	font-family: "Arial", Helvetica, sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
}

