@charset "utf-8";
/* CSS Document */

.ac-container {
	width: auto;
	margin: 10px auto 30px auto;
}
.ac-container label {
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	padding: 10px;
	position: relative;
	z-index: 20;
	display: block;
	height: auto;
	cursor: pointer;
	color: darkblue;
	line-height: 20px;
	font-size: 16px;
	background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		1px 0px 0px 0px rgba(255,255,255,0.9) inset, 
		0px 2px 2px rgba(0,0,0,0.1);
}
.ac-container label:hover{
	background:#AAE3A3;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: #92D58A;
	color:darkblue;
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		0px 2px 2px rgba(0,0,0,0.1);
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url("../assets/images/arrow_down.png") no-repeat center center;	
}
.ac-container input:checked + label:hover:after{
	background-image: url("../assets/images/arrow_up.png");
}
.ac-container input{
	display: none;
}
.ac-container article{
	background: rgba(255, 255, 255, 0.5);
	margin-top: -1px;
	overflow: hidden;
	max-height: 0px;
	position: relative;
	z-index: 10;
	transition: 
		max-height 0.3s ease-in-out, 
		box-shadow 0.6s linear;
}
.ac-container input:checked ~ article{
	max-height: 10000px;
	overflow: scroll;
	transition: 
		max-height 0.6s ease-in-out, 
		box-shadow 0.1s linear;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container article p {
	color: darkblue;
	line-height: 20px;
	font-size: 15px;
	padding: 15px;
}
.ac-container form input {
    display:inline;
}














