.ac-container{
	width: 100%;
	margin: 4% auto 5% auto;
	text-align: left;
}
.ac-container label
{
    border-left: 4px solid #696969;
    border-top: 1px dashed #696969;
    border-bottom: 1px dashed #696969;
    border-right: 1px dashed #696969;
	position: relative;
	z-index: 20;
	display: block;
	cursor: pointer;
	color: #000000;
	font-size: 22px;
    font-weight: 100;
	background: #ffffff;
}
.ac-container label:hover{
	
	transition:1s;
	-webkit-transition:1s;
	-moz-transition:1s;
	-o-transition:1s;
	-ms-transition:1s;
   border-left:  1px dashed #696969;
    border-right: 4px solid #696969;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: #e94e38;
	color: #fff;
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		0px 2px 2px rgba(0,0,0,0.1);
    border: 0;
    border-top: 3px solid #000000;
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 70px;
    line-height: 70px;
	right: 13px;
	background: transparent url(arrow_down.png) no-repeat center center;	
}
.ac-container input:checked + label:hover:after{
	background-image: url(arrow_up1.png);
}
.ac-container input{
	display: none;
}
.ac-container article{
	background: rgba(255, 255, 255, 0.5);
	margin-top: -1px;
    margin-bottom: 4px;
    border-radius: 10px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	-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{
	color: #000000;
	line-height: 23px;
	font-size: 14px;
}
.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;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container input:checked ~ article.ac-small{
    height: auto;
	padding: 20px;
}
.ac-container input:checked ~ article.ac-medium{
	min-height: 180px;
}
.ac-container input:checked ~ article.ac-large{
	min-height: 230px;
}