#accordion {
	list-style: none;
	padding: 0 0 0 0;
	width: 270px;
}
#accordion li{
	display: block;
	background-color: rgba(255,153,39,0.91);
	font-weight: bold;
	margin: 1px;
	cursor: pointer;
	padding: 5 5 5 7px;
	list-style: circle;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#accordion ul {
	list-style: none;
	padding: 0 0 0 0;
	display: none;
}
#accordion ul li{
	font-weight: normal;
	cursor: auto;
	list-style: none;
	background-color: #fff;
	padding: 0 0 0 7px;
}
#accordion a {
	text-decoration: none;
	list-style: none;
}
#accordion a:hover {
	text-decoration: underline;
}

