/* label.css
   Section header label: orange, uppercase, underlined. Originally lived
   in columns.css, but it's used well beyond the 3-column layout --
   e.g. the shows archive page (shows/index.html) uses it for its
   "All Show Accounts" / "Even Older Show Accounts" section headers,
   with no columns of its own. Pulled out into its own file so pages
   that just need the label don't have to import unrelated column-layout
   rules to get it.
*/

.page-column-label {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: darkorange;
	border-bottom: 2px solid darkorange;
	padding-bottom: 6px;
	margin: 0px 0px 14px 0px;
}
