@charset "utf-8";
/* CSS Document */

.readmore {
	background: #61d101;
	padding: 1rem 0 1rem 0;		
}

/* expande */
#expande {
	width: auto;	   
    height: 0;	
    overflow: hidden;
		
    transition: height 2s;
    -moz-transition: height 2s; /* Firefox 4 */
    -webkit-transition: height 2s; /* Safari and Chrome */
    -o-transition: height 2s; /* Opera */
}

a.showLink, a.hideLink {
	color: #FFF;
	font-family: "Montserrat SemiBold";
	font-size: 150%;
    text-decoration: none;
}

a.showLink:hover, a.hideLink:hover {
	color: #064e5a;
	height: auto;	
	text-decoration: none;	
	transition:  1s ease 0s;	
}