/**
 * Expendable sections
 * 
 * @since 2014.09.19
 */

#Body .section > .expandable {
	overflow: hidden;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: max-height 1s;
}

#Body .section > .expandable + .ExpandBtn {
	display: block;
	position: absolute;
	z-index: 3;
	bottom: -10px;
	left: 50%;
	margin-left: -53px;
	width: 106px;
	border-radius: 2px;
	background: #1f1f1f;
	color: #fff;
	line-height: 19px;
	font-family: 'Lora', serif;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}

#Body .section > .expandable + .ExpandBtn:after {
	display: block;
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 10px;
	border-radius: 0 0 10px 10px;
	background: #1f1f1f url('../img/expandable-arrow.png') no-repeat center 2px;
	content: '';
}

#Body .section > .expandable + .ExpandBtn.expanded:after {
	background-image: url('../img/expandable-arrow.min.png');
}
