/* this style sheet is to be used in conjunction with
* align-right.css
*  it only contains the necessary adjustments
*/
#relationships li
	{
	text-align: left;	/* to align left change to text-align: left 
						*  but must also add margin-left to the spans (since otherwise they'd
						*  sit left upagainst the line)
						*  and also add a position left to the spans (to get them
						*  to cover the border-top of the li's)
						*/
	}

#relationships span
	{
	/* for left alignment */
	margin-left: 45px;
	left: 40px;
	}
