
/* ======================================================================
	Toggleable Definition lists
====================================================================== */

dl.gst-toggleable-scripted dt {
	/* Indicate that scripted terms are clickable */
	cursor: pointer;
}

dl.gst-toggleable-scripted dd {
	/* Hide definitions on toggleable DLs when scripts work */
	display: none;
}
dl.gst-toggleable-scripted dd.gst-toggleable-open {
	display: block;
}


/* ======================================================================
	Details
====================================================================== */

.gst-details > .gst-details-summary {
	display: none;
}

.gst-details.gst-details-closed > .gst-details-summary {
	cursor: pointer;
	display: block;
}

.gst-details.gst-details-closed > .gst-details-description {
	display: none;
}
