body {
	font: 13px Arial, Helvetica, sans-serif;
	color: #1e1e1e;
	margin: 0px;
}
#containerMenu {
	width: 100%;
	margin: 0px;
}
#accordion .item {
	width: 95%;
	height: 30px; /* height = total height of A child element */
	overflow: hidden;
	
	transition: height ease-in-out 500ms; /* css3 transition */
	-o-transition: height ease-in-out 500ms;
	-moz-transition: height ease-in-out 500ms;
	-webkit-transition: height ease-in-out 500ms;
	
	border: 1px solid #ccc;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	margin-bottom: 2px;
	background-color: white;
}
#accordion a {
	display: block;
	height: 20px;
	line-height: 22px;
	

	padding: 5px;
	color: #1e1e1e;
	text-decoration: none;
}
#accordion p {
	height: 150px;
	padding: 0px;
	background-color: white;
	margin:0px;



}
.titlelink {
	background-color: yellow;
	border-bottom:1px solid #ccc;
	font-weight:bold;

}