/*
--------------
general styles
--------------
*/


html,body {
	/*
	Es empfiehlt sich, margin (Rand) und padding (AuffÃ¼llung) 
	des Body-Elements auf 0 einzustellen, um unterschiedlichen 
	Browser-Standardeinstellungen Rechnung zu tragen. 
	*/
	margin: 0;
	padding: 0;
	border: 0;
}
	
	
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
   	background-color: #ACACAE;
	background-image: url(../../images/layout/background.jpg);
	background-repeat: repeat-x;
   	text-align: center; /* Hierdurch wird der Container in IE 5*-Browsern zentriert. Dem Text wird dann im #container-Selektor die Standardausrichtung left (links) zugewiesen. */
   	color: #666666;
}

.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	font-style: normal;
}

.table {
	background-color:#E8EDF1;
}

.change_date {
	font-size: 10px;
}

div.page {
   	width: 914px;
   	/* background-color: #FFF; */
   	margin: 0 auto; /* Durch automatische RÃ¤nder (in Verbindung mit einer Breite) wird die Seite zentriert. */
   	text-align: left; /* Hierdurch wird die Einstellung text-align: center im Body-Element Ã¼berschrieben. */
	position: relative;
}


a:link {
	color: #b70f1b; 
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}


a:visited {
	color: #b70f1b; 
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}


a:active {
	color: #b70f1b; 
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}


a:hover {
	color: #b70f1b; 
	text-decoration: underline; 
	font-weight: bold;
	cursor: pointer;
}


img {
	border: 0px;
}


table {
	border-spacing: 0;
	border-collapse: collapse;
	empty-cells: show
}


td {
	padding: 0;
	vertical-align: top;
	font-size: 12px;
}


table.layout {
	width: 914px;
	padding: 0;
}


/*
--------
Controls
--------
*/
input.button { 
	color: #000000; 
	font-style: normal; 
	font-weight: bold; 
	font-size: 12px; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF; 
	border: solid 2px #000000; 
	cursor: pointer;   
	height: 22px;
}

input.textfield { 
	color: #333333; 
	font-style: normal; 
	font-weight: normal; 
	font-size: 12px; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	border: solid 1px #000000; 
	height: 18px;
	width: 300px;
}

textarea { 
	color: #333333; 
	font-style: normal; 
	font-weight: normal; 
	font-size: 12px; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	border: solid 1px #000000; 
	height: 200px;
	width: 300px;
}

select.selectbox {
	color: #333333; 
	font-style: normal; 
	font-weight: normal; 
	font-size: 12px; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	border: solid 1px #000000; 
	height: 18px;
	width: 306px;
}
