.ac-container{
	width: 298px;
	margin:20px 1px 0 1px;
	text-align: left;
	float:left;
}
.ac-container label{
	height:34;
	padding:5px 0 0 10px;
	background-color:#7ec8e9;
	position: relative;
	z-index: 20;
	display: block;
	cursor: pointer;
	line-height: 33px;
	margin-bottom:3px;
}
.ac-container label:hover{
	background: #004576;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: #004576;
	color: #fff;
}
.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(../images/arrow_down.png) no-repeat center center;	
}
.ac-container input:checked + label:hover:after{
	background-image: url(../images/arrow_up.png);
}
.ac-container input{
	display: none;
}
.ac-container article{
	background: #fff;
	margin-top: -1px;
	overflow: scroll;
	height: 0px;
	position: relative;
	z-index: 10;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-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{
	font-size:12px;
	font-weight:500;
	text-align:justify;
	padding: 20px;
}
.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;
}

/* CALCULA LA ALTURA APROXIMADA NECESARIA PARA CONTENER TODO LA NOTICIA*/
.ac-container input:checked ~ article.ac-small{
	height: 240px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 540px;
}
.ac-container input:checked ~ article.ac-large{
	height: 800px;
}