/* CSS Document */

/* ********************************************************************************************
 * Navigation Left
 ******************************************************************************************* */
	#contentLeft #navigation ul{
		list-style: none;
		text-align: left;
		padding: 0px;          /* Padding-Eigenschaft für Listenelement auf 0px setzen */
		margin: 0px;           /* Marging-Eigenschaft für Listenelement auf 0px setzen */
		margin-bottom: 22px;   /* Abstand am Ende der Auflistung */
	}
	
	#contentLeft #navigation li {
		background-color: #f5f5f5;
		margin-bottom: 4px;
		white-space:nowrap;
	}
	

	
	#contentLeft #navigation a {
		display:block;
		height:20px;
		line-height: 20px;
		color: #5a5a5a;
		font-size: 12px;
		font-weight: bold;
		vertical-align: bottom;
		text-decoration: none;
		background-color: #f5f5f5;
		border-left: 8px solid #d8d8d8;
		padding: 3px 2px 0px 5px;
		text-transform:uppercase;
	}
	
	#contentLeft #navigation a:hover {
		border-left: 8px solid #2e365b;
	}
	
	#contentLeft #navigation a:active {
		border-left: 8px solid #2e365b;
		color: #2e365b;
	}