/*	Foldable headings
	=================  */

.foldable-item:hover
{
	/* Indicate (via pointing finger) that clicking here does something */
	cursor: pointer;
}

.foldable-item:hover:after
{
	/* Indicate that that 'something' involves abbreviating this item */
	content: " [collapse]";
	
	/* Indicate *potential* status (you haven't clicked yet) */
	color: silver;
	
	background-color: inherit;  /* silence warning */
}

.folded:hover:after
{
	/* Indicate that that 'something' involves unabbreviating this item */
	content: " [uncollapse]";
	
	/* Indicate *potential* status (you haven't clicked yet) */
	color: silver;
	
	background-color: inherit;  /* silence warning */
}

.folded:after
{
	/* Indicate that this item has been abbreviated */
	content: " ...";
}

.folded-content
{
	/* Folded content is not rendered */
	display: none;
}

