/* Boxen rechts anfang */
.box_right{
	width: 100%;
}

.box_right .box_right_header{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 14px Helvetica;
	color: white;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	/*background-color: #F18E00;*/
	background-color:#000000;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 18px;
	
}

.box_right ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	padding: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
}

.box_right ul li{
	padding-bottom: 2px;
}

.box_right ul li a{
	color: #A70303; /*custom bullet list image*/
	display: block;
	padding-left: 10px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 100%;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
}

.box_right ul li a:visited{
	color: #A70303;
}

.box_right ul li a:hover{ /*hover state CSS*/
	color: #A70303;
	background-color: #F3F3F3;
}