/* Allgemeine Styles fŸr den Rahmen der eingebetteten Vaadin-Applikation */
html,body {
	margin: 0px;
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

a:link {
	color: #7d7d7d;
	text-decoration: underline;
}

a:visited {
	color: #7d7d7d;
	text-decoration: underline;
}

a:hover {
	color: #7d7d7d;
	text-decoration: underline;
}

a:active {
	color: #7d7d7d;
	text-decoration: underline;
}

/* Scrollleiste vom BODY soll immer sichtbar sein,
   um z.b. beim Aufklappen des PrŸfberichts keine horizontale Verschiebung (Flackern)
   durch das Zentrieren des inhalts zu bekommen */
#scrollBody {
	padding-top: 0px;
	overflow-y: scroll;
}

/* EnhŠlt die komplette Applikation */
#container {
	width: 1200px;
	height: 890px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	background-color: #ffffff;
}

/* Darstellung der Fehlerseite */
#error_container {
	background-color: #ffffff;
	width:100%;
	min-height: 100%;
	position: relative;
	text-align: center;
	font-family: sans-serif;
	font-size:14px;
	line-height: 26px;
}

/* Darstellung des Hinweises für die Browser-Unterstützung */
#errorblock{
	width:600px;	
	text-align:left;
	padding:30px;
}

/* †berschrift bei Fehlerseiten */
.header_error{
	font-size: 18px;
	color: #F35033;
	font-weight: bold;
}

/* Hinweistext mit Tooltip */
.annotation{
	color: blue;
	font-weight: bold;	
}

/* Linkbereich, der aussieht wie ein Button (z.b. fŸr die Browser-Installation) */
.install_button{
	padding: 5px;
	background-color: #aaeeaa;
}

/* Bereich um das Logo herum */
#header {
	width: 1200px;
	height: 85px;
	border-bottom: black medium solid;
	background-image: url(/commonview/AS/images/header-grafik.png);
	background-repeat: no-repeat;
	background-position: center;
}
#a header {
	color: #7d7d7d;
	text-decoration: underline;
}

/* DIV um das Logo herum */
#logo {
	margin: 0 auto;
	width: 960px;
	height: 100%;
}

/* Image-Tag des Logos */
#logoImage {
	hspace: 10px;
	vspace: 10px"; 
	border: 0;
	align: right;
}

#impressum {
	width: 1100px;
	height: 700px;
	background-color: #ffffff;
	background-position: center;
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 45px;

}

.box-3 {
	width: 30%;
	height: auto;
	margin-left: 3%;
	float: left;
}

/* Applikationsbereich, die Platz fŸr einen FOOTER am unteren Rand lŠsst */
div#ui_old {
	width: 1000px;
	height: 750px;
	background-color: #ffffff;
	background-position: center;
	padding-top: 20px;
	padding-left: 100px;
	padding-right: 100px;
	padding-bottom: 5px;
}

div#ui {
	width: 1150px;
	height: 765px;
	background-color: #ffffff;
	background-position: center;
	padding-top: 20px;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 5px;
}

/* Fixierter FOOTER unten am Rand */
#footer {
	background-color: #ffffff;
	width: 1200px;
	height: 20px;
	text-align: center;
}

/* von Vaadin vorgegeben */
#__gwt_historyFrame {
	position: absolute;
	width: 0;
	height: 0;
	border: 0;
	overflow: hidden;
}


