.ac-container{
	width: 100%;
	margin: 25px 0;
}
.ac-container label{
	padding: 15px;
	position: relative;
	z-index: 20;
	display: block;
	cursor: pointer;
	font-family: 'Rosarivo', serif;
	color:#00aeef;
	font-size:20px;
	line-height:26px;
}
.ac-container label:hover{
	color:#FFF;
	background: #00aeef;
}
.ac-container input:checked + label {
	color: #000;
	background-color:rgba(0,174,239,.75);
}
.ac-container input:checked + label:hover{
	color: #000;
	background-color:rgba(0,174,239,1);
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 20px;
	height: 100%;
	right: 20px;
	top: 0;
	background: url(../links/btn/plus.png) no-repeat center center #00aeef;
	background-size:15px;
	background-position:center right;
}
.ac-container input:checked + label:hover:after{
	background-image: url(../links/btn/minus.png);
}
.ac-container article{
	position: relative;
	z-index: 10;
	height: 0px;
	padding:0;
	background:#000;
	overflow: hidden;
	-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 input{
	display: none;
}
.ac-container input:checked ~ article{
	height: auto;
	padding:0 30px 30px;
	-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;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}




@media all and (max-width: 750px)
{
.ac-container label{
	font-size:15px;
	line-height:20px;
}

}