/**
 * General Stylesheet definitions.
 * @author Matthias L. Jugel
 * @version $Id: general.css,v 1.1 2005/11/09 16:44:17 hww3 Exp $
 */

/* error messages and error positions should be marked red */
.error { color: #ff0000; font-weight: bold;	background-color: inherit;}
.error-position { background-color: #ffaaaa; color: inherit;}

/* inactive buttons are greyed out */
.inactive { color: #aaaaaa; background-color: inherit;}

/************************************************/
/* ANCHOR tag                                   */
a {
	color:#800000;
	background-color: inherit;
	text-decoration: none;
	font-weight: 400;
}
a:link {
  color:#800000;
  background-color: inherit;
}
a:visited {
  color:#800000;
  background-color: inherit;
}
a:hover {
  color: inherit;
  background-color: #ffd700;
}

/************************************************/
/* table tag                                    */
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: separate;
}

/************************************************/
/* input tag                                    */

input[type=submit] {
  color: inherit;
  background-color: #eeeeee;
	font-family: inherit;
}

input, select, textarea {
  line-height: inherit;
  /*vertical-align: middle; a bug in IE5.2-mac crashes with this*/
	border: 1px dashed #999999;
  font-size: inherit;
  font-family: courier, courier new, monospaced;
}

textarea {
  width: 100%;
  overflow: auto;
  wrap: virtual;
}





