.ac-container{
	margin-top: 10px;
	margin-bottom: 70px;
	padding: 0px 10px;
	text-align: left;
}
.ac-container>div{
	margin: 0px 0px 10px 0px;
	background-color: #fff;
    padding: 10px;
    border: 1px solid #efefef;
    border-radius: 15px;
}
.ac-container label{
	font-family: 'Proxima Nova Extrabold';
    font-size: 20px;
    padding: 0px 10px;
    padding-top: 8px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: block;
    min-height: 36px;
    cursor: pointer;
    font-weight: bold;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );
}
.ac-container label:hover{
	
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	padding: 5px 10px;
	font-family: 'Proxima Nova Extrabold';
}
.ac-container input + label:before{
	display: none;
	content: '';
	margin: -7px 0px 0px -44px;
	position: absolute;
	width: 36px;
	height: 36px;
	background: url(../images/acord_arrow_up.png) no-repeat;
}
.ac-container input:checked + label:before{
	display: none;
	background: url(../images/acord_arrow_down.png) no-repeat;	
}
.ac-container input{
	display: none;
}
.ac-container article{
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 1;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container article p{
	padding: 0px 10px;
	font-size: 18px;
}
.ac-container input:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}
.ac-container input:checked ~ article.ac-small{
	height: 80px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 150px;
}
.ac-container input:checked ~ article.ac-large{
	height: 200px;
}
@media (max-width: 991px) {
	.ac-container input:checked ~ article.ac-small, .ac-container input:checked ~ article.ac-medium, .ac-container input:checked ~ article.ac-large{
		height: auto;
	}
}