/**
 * Author      : torius GmbH
 * Date        : 09.01.2008
 * Customer    : Satellite Office
 * Description : Navigation
 **/
 
#navigation ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float: left;
	background: transparent url(../images/navigation/navigation_shadow.jpg) repeat-x top left;
}

/* Hoehe der Navigationselemente */
#navigation ul,
#navigation ul li {
	height: 7em;
}

/* Breite der Navigationselemente */
#navigation ul li,
#navigation ul li a {
	width: 12em;
}	

/* Navigations-Listenelemente */
#navigation ul li {
	float: left;
	position: relative;	
	background: transparent url(../images/navigation/navigation_standard.jpg) no-repeat right bottom;
}
#navigation ul li:hover {
	background: transparent url(../images/navigation/navigation_hover.jpg) no-repeat right bottom;
}
#navigation ul li.active {
	background: transparent url(../images/navigation/navigation_active.jpg) no-repeat right bottom;
}
#navigation ul li.last {
	background: transparent url(../images/navigation/navigation_last_standard.jpg) no-repeat right bottom;
}
#navigation ul li.last:hover {
	background: transparent url(../images/navigation/navigation_last_hover.jpg) no-repeat right bottom;
}
#navigation ul li.lastactive {
	background: transparent url(../images/navigation/navigation_last_active.jpg) no-repeat right bottom;
}

/* Navigationslinks */
#navigation ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 1.3em;
	width: 9.2em;
	height: 5.4em;
	display: block;
	position: relative;
}
#navigation ul li a span {
	position: absolute;
	bottom:	0.8em;
	display: block;
	width: 9.2em;
	text-align: center;
	cursor: pointer;
}
#navigation ul li a.first span {
	left: 0.6em;
}

#navigation ul li.active a,
#navigation ul li.lastactive a {
	color: #ff9900;
}


