.list-areas{
	cursor: hand; // Pro IE
	cursor: pointer; // Pro FF
}
section#areas h2{
	padding-bottom: 25px !important;
}
section#content{
	background: #333333;
}
section#content .titulo p{
	font-family: 'OldStandardRegular', serif;
	font-size: 18px;
}
section#content .divider{
	width: 200px;
	height: 3px;
	background: #444444;
	display: inline-block;
	margin: 30px 0;
}
section#content h2{
	font-size: 32px;
	cursor: pointer;
	cursor: hand;
}
section#content span{
	cursor: pointer;
	cursor: hand;
}
section#content{
	counter-reset: item;
}
section#content .list-areas{
	min-height: 200px;
	border-bottom: solid 1px #2A2A2A;
	padding: 30px 0;
	position: relative;
}
section#content .list-areas:last-child{
	border-bottom: 0;
}
section#content .texto{
	overflow: hidden;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
	position: relative;
	/*cursor: pointer;
	cursor: hand;*/
}
section#content .texto .gradient{
	position: absolute;
	bottom: 0;
	height: 100px;
	width: 100%;
	background: rgba(51,51,51,0);
background: -moz-linear-gradient(top, rgba(51,51,51,0) 0%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(51,51,51,0)), color-stop(36%, rgba(51,51,51,0.84)), color-stop(36%, rgba(51,51,51,0.84)), color-stop(36%, rgba(51,51,51,0.84)), color-stop(100%, rgba(51,51,51,1)));
background: -webkit-linear-gradient(top, rgba(51,51,51,0) 0%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,1) 100%);
background: -o-linear-gradient(top, rgba(51,51,51,0) 0%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,1) 100%);
background: -ms-linear-gradient(top, rgba(51,51,51,0) 0%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,1) 100%);
background: linear-gradient(to bottom, rgba(51,51,51,0) 0%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,0.84) 36%, rgba(51,51,51,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#333333', GradientType=0 );
}
section#content .numero{
	counter-increment: item;
	margin-top: 20px;
}
section#content .numero:before{
	content: counter(item, upper-roman);
	font-family: 'Old Standard TT', serif;
	font-size: 16px;
	color: #DDDDDD;
	position: relative;
	top: 10px;
}
section#content .numero span{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 46px;
	height: 46px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	border: solid 1px #515151; 
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
	    -ms-transition: all .5s ease-in-out;
	     -o-transition: all .5s ease-in-out;
	        transition: all .5s ease-in-out;
}
section#content .list-areas:hover .numero span{
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	     -o-transform: rotate(0deg);
	        transform: rotate(0deg);
}
section#content .list-areas .see-more{
	position: absolute;
	right: 0;
	height: 100%;
	/*cursor: pointer;*/
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
section#content .list-areas.ativo .see-more{
	-webkit-transform: translateY(30%) rotate(45deg);
	   -moz-transform: translateY(30%) rotate(45deg);
	    -ms-transform: translateY(30%) rotate(45deg);
	     -o-transform: translateY(30%) rotate(45deg);
	        transform: translateY(30%) rotate(45deg);
}
section#content .list-areas.ativo .texto .gradient{
	opacity: 0;
}
section#content .list-areas .expand{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 24px;
	background: #6B6B6B;
	width: 1px;
}
section#content .list-areas .expand:before{
	content: '';
	width: 24px;
	height: 1px;
	background: #6B6B6B;
	position: absolute;
	left: -11px;
	top: 12px;
}
@media only screen and (max-width: 64em){
	section#content .list-areas.ativo .texto{
		height: auto !important;
	}
	section#content .list-areas .see-more{
		bottom: 25px;
		height: 24px;
	}
	section#content .texto{
		margin: 50px 0;
	}
}