.ac-container{
    /*margin: 10px auto 30px auto;*/
    text-align: left;
}
.ac-container label{
    position: relative;
	padding-left: 20px;
	cursor: pointer;
}
.ac-container label:hover{
    background: #fff;
}

.ac-container input{
    display: none;
}
.ac-container section{
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    max-height: 0px;
    position: relative;
    z-index: 10;
    -webkit-transition: max-height 0s ease-in-out, box-shadow 0s linear;
    -moz-transition: max-height 0s ease-in-out, box-shadow 0s linear;
    -o-transition: max-height 0s ease-in-out, box-shadow 0s linear;
    -ms-transition: max-height 0s ease-in-out, box-shadow 0s linear;
    transition: max-height 0s ease-in-out 0s, box-shadow 0s linear 0s;
}
.ac-container section p{
   /*  font-style: italic; */
    color: #777;
    line-height: 23px;
    /* font-size: 14px; */
    padding-left: 20px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
.ac-container input:checked ~ section{
    -webkit-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
    -moz-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
    -o-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
    -ms-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
    transition: max-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 ~ section.ac-small{
	margin-bottom: 15px;
    margin-top: 10px;
    max-height: 1000px;
}

.ac-container label:before, 
.ac-container input:checked + label:before {
    background: transparent url("../images/arrow_up2.png") no-repeat scroll center center;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 16px;
}
.ac-container input:checked + label:before{
	background-image: url("../images/arrow_down2.png");
}