.content{
	width: 1000px;
}

.unit{
	width: 100%;
}

.toggle{
	width: 100%;
	cursor: pointer;
}

.dropdown-symbol{
	float: right;
	padding-right: 20px;
}


.dropdown{
	margin-bottom: 30px;
}

.hidden{
	display: none;
}

.expand{
	animation: animate-expand 0.5s;
}

.collapse{
	animation: animate-collapse 0.5s;
}


@keyframes animate-expand {
	from {
		height: 0px;
		transform: translate3d(0,-20px,0);
		opacity: 0;
	} to {
		height: intial;
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

@keyframes animate-collapse {
	from {
		height: initial;
		opacity: 1;
		transform: translate3d(0,0,0);
	} to {
		height: 0px;
		opacity: 0;
		transform: translate3d(0,-20px,0);
	}
}



.dropdown li{
	font-size: 11pt;
}

.dropdown p{
	font-size: 11pt;
}

