.accordionButton a{
	display:block;
	color:#999;
	text-decoration:none;
}
.accordionButton:hover a{
	text-decoration:none;
	color:#333;
}
.accordionButton {
	float:left;
	background:#e2e2e2;
	margin:0 0 10px 0;
	padding:5px 10px;
	font-size:20px;
	color:#674287;
	text-align:left;
	font-weight:bold;
	cursor:pointer;
	width:667px;
	font-size:14px;
	border-radius:5px;
	-ms-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.accordionButton:hover {
	background:#FFF;
	box-shadow:2px 2px 10px #CCC;
	-ms-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
	
.accordionContent ul{
	list-style:none;
	margin:0 0 0 0;
	padding:0 0 0 0;
}
.accordionContent {
	padding:10px;
	width:667px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	}
.accordionContent ul li a {
	text-decoration:none;
	font-size:12px;
	display:block;
	background:#FFF;/*
	border-bottom:1px dashed #CCC;
	border-left:1px dashed #CCC;*/
	margin:1px 0 0px 10px;
	padding:5px 10px;
	border-radius:5px;
	color:#333;
}
.accordionContent ul li a:hover {
	display:block;
	background:#f0f0f0;
	margin:1px 0 0 10px;
	padding:5px 10px;
	color:#333;
	font-weight:bold;/*
	border-bottom:1px dashed #CCC;
	border-left:1px dashed #CCC;*/
}
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background:#FFF;
	margin:0 0 10px 0;
	padding:5px 10px;
	font-size:14px;
	color:#674287;
	text-align:left;
	font-weight:bold;
	cursor:pointer;
	border-radius:5px;
	box-shadow:2px 2px 10px #CCC;
}
.over {
	background: #CCCCCC;
	color:#333;
}