/* common.css
 * 
 * Common CSS definitons for all sites at organisiertelinke.org
 */

/* overall font style */
body {
	font-family: "Helvetica", "Arial", sans-serif;
}

/* overall color style */
body {
	background-color: #ffffff;
	color: #000000;
}

/* overall link style */
a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* navigation link style */
div.nav a:link {
	text-decoration: none;
	color: #00f;
}

div.nav a:visited {
	text-decoration: none;
	color: #00f;
}

div.nav a:hover {
	text-decoration: underline;
}

/* no borders for images within an achor tag */
img {
	border: 0;
}

/* special definition for a hline made from a 1pixel bitmap */
img.hline {
	width: 100%;
	height: 1px;
	margin-top: 3mm;
	margin-bottom: 3mm;
}

/* table definitions */

td {
	padding-right: 3mm;
}

th {
	padding-right: 3mm;
	border-right: 1px black solid;
	border-bottom: 1px black solid;
}

th.editlabel {
	text-align: right;
	vertical-align: top;
}

th.newshead {
	text-align: left;
}

th.newsid {
	text-align: right;
}