/* CSS Document */



body {
	background: #ffffff;
	font: normal 55% Tahoma, Verdana, Arial, Helvetica, sans-serif;
	padding: 7% 0;
}

#wrapper {
	margin: 0 auto;
	width: 900px;	
}

#container {
	
	margin: 0 auto;
}

.table1 {
	width: 300px;
	margin-bottom: 0px;
}

.table1 tr {
	width: 300px;
}

.table1 tr td {
	padding-top: 0px;
}

.table2 {
	width: 500px;
	margin-bottom: 0px;
}

.table2 .tr {
	valign: top;
}

.table2 .tr .td {
	valign: top;
}


.sapbiprocess {
	background: url(../img/sapbiprocess.jpg) no-repeat;
	height: 650px;
	wigth: 590px;
}

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	color: #000000;
	margin: 0;
	width: 20.4em;
	padding: 0;
	height: 15px;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 0px 0px 0px;
	margin: -10px 0 0 0px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 0px 0px 0px 0px;
	margin: 0px 0 0 0px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	
/*	border-bottom: 1px solid #ffffff;*/
	height: 20px;	
}

.menu ul {
	width: 20em;
	text-align: center;
}

.menu a {
	background: #333132;
	text-align: center;
	font: 10px bold 1px Tahoma;
	text-decoration: none;
	letter-spacing: 0.2px;
	color: #ffffff;
	padding: 0;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #cccccc;
	text-decoration: underline;
}

.menu li li {	/* create borders around each item */
/*	border: 1px solid #000000; */
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #ffffff;
	
}

/* - - - ADxMenu: IE6 BASIC styles [MANDATORY] - - - */

.menu, .menu ul {	/* float.clear */
	zoom: 1;
}

.menu li.adxmhover {
	z-index: 10000;
}

.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu .adxmhoverUL {	/* 1st-level submenu go below their parent item */
	top: 100%;
	left: 0;
}

.menu .adxmhoverUL .adxmhoverUL {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
	color: #ffffff;
}

.menu li li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menu li li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu a:hover, .menu .adxmhoverA {		/* li:hover>a selector */
	color: #ffffff;
}

.menu .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

h1,h2,h3 {
	color: #000000; 
}


h1 {
	font: normal 2.2em Tahoma;
}


h1 a {
	text-decoration: none;
}

h1 a:hover {
	text-decoration: none;
}


h2 {
	font: bold 1.2em Tahoma;
}


h3 {
	font: bold 1.2em Tahoma;
}

.hr1 {
	color: #000000;
	border-style: solid;
	width: 500px;
	height: 1px;

}

form {
	margin-bottom: 1.2em;
	font: 11px Tahoma;
}

input.submit {
	font: 11px Tahoma;
	word-spacing: 0.3em;
	background-color: #CCCCCC;
}

img {
	border: none;
}

label {
	display: block;
}

li {
	line-height: 1.5em;
}

p {
	font: 11px Tahoma;
	padding: 0px 0 0px; 
	word-spacing: 0.1em; 
	display: block;
}

.p1 {
	font: 9px Tahoma;
	padding: 0px 0 0px; 
	word-spacing: 0.1em; 
	display: block;
}

small,.small {
	font: normal 0.9em Tahoma;
}

ul {
	padding: 0 0em 0.2em;
}

.ul1 {
	font: 11px Tahoma;
}


/* main */
.main#two-columns {
	background: #ffffff url(../img/HP_Logo1.jpg) no-repeat;
	margin-top: 40px;
	align: center;
	border-top: 1px solid #333132;
	border-bottom: 1px solid #333132;
	border-right: 1px solid #333132;
	height: 285px;
}

.main#two-columns1 {
	background: #ffffff url(../img/ich_neu.jpg) no-repeat; 
	margin-top: 40px;
	align: center;
	border-top: 1px solid #333132;
	border-bottom: 1px solid #333132;
	border-right: 1px solid #333132;
	border-left: 1px solid #333132;
	height: 285px;
}

.main#two-columns2 {
	background: #ffffff url(../img/HP_Logo_Kontakt.jpg) no-repeat;
	margin-top: 40px;
	align: center;
	border-top: 1px solid #333132;
	border-bottom: 1px solid #333132;
	border-right: 1px solid #333132;
	height: 285px;
}

.main#two-columns3 {
	background: #ffffff url(../img/HP_Logo_Referenzen.jpg) no-repeat;
	margin-top: 40px;
	align: center;
	border-top: 1px solid #333132;
	border-bottom: 1px solid #333132;
	border-right: 1px solid #333132;
	height: 285px;
}

.main#one-colums {
	background: url(img/two-colums.gif) repeat-y;
}


/* bottom */
.bottom {
	background: #DCDAC9 url(img/bottom.gif) no-repeat left bottom;
	border-top: 1px solid #AA8;
	color: #444;
	padding: 14px 20px;
	margin: 50px 0 0 0;
}
	
.bottom .left,.bottom .right {
	width: 49%;
}

.clear,.clearer {
	clear: both;
}

.clearer {
	font-size: 0;
}

.col1 .left {
	width: 100%;
}

.col1 .content {
	padding: 0px 0px; 
	font: 11px Tahoma, Verdana, sans-serif;
}

.col2 .left {
	width: 40%; 
}

.col2 .left .content .scroll {
	height: 150px; 
	overflow: auto;
	scrollbar-base-color: #white;
	scrollbar-arrow-color: #999999;
	scrollbar-darkshadow-color: grey;
	scrollbar-face-color: white;
	scrollbar-highlight-color: none;
	scrollbar-shadow-color: none;
	scrollbar-track-color: white;
	scrollbar-3d-light-color: none;
}

.col2 .right .content .scroll {
	height: 200px; 
	overflow: auto;
	scrollbar-base-color: #white;
	scrollbar-arrow-color: #999999;
	scrollbar-darkshadow-color: grey;
	scrollbar-face-color: white;
	scrollbar-highlight-color: none;
	scrollbar-shadow-color: none;
	scrollbar-track-color: white;
	scrollbar-3d-light-color: none;
}
	

.col2 .right .content {
	background: ; 
	margin: 15px 0 0 0;
}

.br1 {
	background: #C2C7E6;
	text-align: center;
	font: 11px Tahoma;
	font-weight: bold;
}

.br2 {
	width: 252px;
	background: #C2C7E6;
	text-align: center;
	font: 11px Tahoma;
	font-weight: bold;
}

.col2 .right {
	width: 58%; 
}

.p2 {
	margin-top: 15px;
}

.p3 {
	width: 250px;
	border: 1px solid #C2C7E6;
}

.marquee {
	direction: up;
	height: 400px;
	scrollAmount: 1;
	scrollDelay: 2;
}

.li1 {
	margin: 0 0 0 20px;
	line-height: 12px;
}

.strong1 {
	color: blue;
}

.i1 {
	color: blue;
}

.content {
	color: #000000;
	font: 11px Tahoma; 
}

.content .a {
	font: 11px Tahoma;
}

.left {
	float: left;
}

.right {
	float: right; 
}

.right .content {
	padding: 0px 0px 0px;
}

/* footer */
.footer {
	/* background: #C2C7E6; */
	margin-top: 40px;
	font:10px Tahoma, Verdana, Arial, Helvetica, sans-serif;
	word-spacing: 0.1em;
	letter-spacing: 0.2px;
}
.footer .left {
	background: #333132;
	width: 62%;
	color: #ffffff;
	padding-left: 0px;
}

.footer .right {
	background: #333132;
	width: 38%;
	text-align: right;
	padding-right: 0px;
}
.footer a {
	color: #ffffff;
	letter-spacing: 0.2px;
}
.footer a:hover {
	color: #cccccc;
}
