
/* Set position:relative on the .content div, so that we can absolutely position
 * items within it.  Specifically, this allows us to easily position the link to the
 * index at the top-right of the page, withouth it being affected by notifications
 * that are sometimes displayed (e.g. 'data saved').
 */
	.content {
		position: relative;
	}

/* Hide the login status and login link for anonymous users, as they can't currently
 * log in or register.  We display the status and log out link for users who have
 * logged in, though (i.e. me!).
 */
	.loginstatus_anon {
		display: none;
	}

/* Style links to empty nodes so they appear as red-links, so it is clearer they
 * are currently empty.
 */
	a.EmptyNode {
		color: #CC6666;
	}

	a.EmptyNode:hover,
	a.EmptyNode:active,
	a.EmptyNode:focus {
		color: #F99F34;
	}