/* User defined CSS file, named user.css, that is loaded and overrides template.css, 
   since the name is after template.css when sorted alphabetically. */

/* Links in bold */
a {
	font-weight: bold;
}

/* Margin after table, since next line is otherwise just below table, which looks odd */
table {
	margin-bottom: 10px;
}

/* Center random image, as alternative to left aligned */
div.random-image {
	text-align: center;
}

/* More space after elements in contact form, for better presentation */
dl.contact-address dd {
	margin-bottom: 1em;
}

/* EOF */
