#accordion-container {
	/*font-size: 13px;
	background: #ffffff;
	padding: 5px 10px 10px 10px;
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;*/
}

.accordion-header {
	background: transparent none repeat scroll 0 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    color: #999;
    cursor: pointer;
    font-size: 19px;
    margin:0;
    padding:20px 40px 20px 15px;
	
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background: url(../images/minus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.active-header:hover {
	background: url(../images/minus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.inactive-header {
	background: url(../images/plus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.inactive-header:hover {
	background: url(../images/plus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.accordion-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #ddd;
	border-top: 0;color:#999;font-size:19px;
	/*-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;*/
}
.accordion-content p{color:#999;}