#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 dashed #ddd;
    border-radius: 0;
    color: #439142;
    cursor: pointer;font-family: 'roboto_condensedregular';
    font-size:24px;
    margin:0;
    padding:25px 40px 25px 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(../img/close.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.active-header:hover {
	background: url(../img/close.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.inactive-header {
	background: url(../img/plus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.inactive-header:hover {
	background: url(../img/plus.png);
	background-repeat: no-repeat;
	background-position:calc(100% - 10px) 50%;
}

.accordion-content {
	display: none;
	padding: 20px;
	line-height:36px;letter-spacing:1px;
	border-top: 0;color:#333;font-size:18px;
	/*-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;*/
}
.accordion-content p{color:#333;}