.accordionButton a{
	display:block;
	color:#999;
	text-decoration:none;
}
.accordionButton:hover a{
	text-decoration:none;
	color:#333;
}
.accordionButton {
	box-shadow:2px 2px 10px #CCC;
	background:#FFF;
	float:left;
	margin:0 0 10px 0;
	padding:10px;
	font-family:'Roboto';
	font-size:15px;
	color:#999;
	text-align:left;
	font-weight:normal;
	cursor:pointer;
	width:210px;
	-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;
	cursor:pointer;
	border-radius:5px;
	box-shadow:0px 0px 10px #e2e2e2 inset;
	-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;
	color:#06C;
}
	
.accordionContent ul{
	list-style:none;
	margin:0 0 0 0;
	padding:0 0 0 0;
	font-family:'Roboto';
}
.accordionContent {	
	width:230px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	}
.accordionContent-on {	
	width:210px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	}
.accordionContent ul li a {
	text-decoration:none;
	font-size:13px;
	display:block;
	background:#FFF;/*
	border-bottom:1px dashed #CCC;
	border-left:1px dashed #CCC;*/
	margin:1px 0 0px 10px;
	padding:5px 10px;
	color:#333;
}
.accordionContent ul li a:hover {
	color:#333;/*
	border-bottom:1px dashed #CCC;
	border-left:1px dashed #CCC;*/
}
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background:none;
	margin:0 0 10px 0;
	padding:10px;
	font-family:'Roboto';
	font-size:15px;
	color:#197AAD;
	text-align:left;
	font-weight:normal;
	cursor:pointer;
	box-shadow:0px 0px 10px #e2e2e2 inset;
}
.over {
	background: #CCCCCC;
	color:#333;
}