div#test-accordion{
border: 1px solid #dedede;
background-color:#dedede;
border-radius:4px;
position: relative;
display:block;
margin-bottom:30px;
}

h2.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
background: linear-gradient(to bottom,#f3f3f3 0,#e7e7e7 100%);
	background-repeat:repeat-x;
	background-position:bottom;
	color:#777;   
    cursor: pointer;
	padding:14px 14px 11px 14px;
font:16px/16px 'Arial';
margin:0px;
border-top:1px solid #e7e7e7;
}

h2.accordion-toggle:first-child {border-top:none;}

h2.accordion-toggle:hover, h2.accordion-toggle-active{
	background-color:#7f8c8d;color:#1a1a1a;
}

h2.active:hover,h2.active {background: -moz-linear-gradient(top,#1ab0de,#2980b9);color:#fff;
background: -webkit-gradient(linear, center top, center bottom, from(#1ab0de), to(#2980b9));
background: -webkit-linear-gradient(#1ab0de, #2980b9);
background: -moz-linear-gradient(#1ab0de, #2980b9);
background: -o-linear-gradient(#1ab0de, #2980b9);
background: -ms-linear-gradient(#1ab0de, #2980b9);
background: linear-gradient(#1ab0de, #2980b9);
}


div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: #f2f6fa;
 color:#1a1a1a;
padding:5px 0px;
}