/* Toggle */
section.toggle {
	margin: 25px 0;
	position: relative;
}

section.toggle input[type=checkbox]:checked~label {
	background: #009FE3;
	border-color: #CCC;
}

section.toggle input[type=checkbox]:checked~label i.icon-minus {
	display: inline;
}

section.toggle input[type=checkbox]:checked~label i.icon-plus {
	display: none;
}

section.toggle input[type=checkbox]:checked~label::before {
	border: 6px solid transparent;
	border-top-color: inherit;
	margin-top: -3px;
	right: 10px;
}

section.toggle input[type=checkbox]:checked~p {
	display: block;
	font-size: 1em;
	overflow: visible;
	padding-left: 30px;
	text-overflow: clip;
	white-space: normal;
}

section.toggle.active p {
	display: block;
	font-size: 1em;
	overflow: visible;
	padding-left: 30px;
	text-overflow: clip;
	white-space: normal;
}

section.toggle input {
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 45px;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}

section.toggle label {
	-moz-border-radius: 8px;
	-moz-transition: all .15s ease-out;
	-o-transition: all .15s ease-out;
	-webkit-border-radius: 8px;
	-webkit-transition: all .15s ease-out;
	background: #009FE3;
	border: 1px solid #F4F4F4;
	border-left: 3px solid #CCC;
	border-radius: 8px;
	color: #CCC;
	display: block;
	font-size: 1.1em;
	min-height: 20px;
	padding: 12px 20px 12px 10px;
	position: relative;
	transition: all .15s ease-out;
}

section.toggle label::-moz-selection {
	background: none;
}

section.toggle label i.icon-minus {
	display: none;
}

section.toggle label i.icon-plus {
	display: inline;
}

section.toggle label::selection {
	background: none;
}

section.toggle label::before {
	border: 6px solid transparent;
	border-left-color: inherit;
	content: '';
	margin-top: -6px;
	position: absolute;
	right: 4px;
	top: 50%;
}

section.toggle label:hover {
	background: #f5f5f5;
}

section.toggle label + p {
	-moz-transition: all .15s ease-out;
	-o-transition: all .15s ease-out;
	-webkit-transition: all .15s ease-out;
	color: #999;
	display: block;
	overflow: hidden;
	padding-left: 30px;
	text-overflow: ellipsis;
	transition: all .15s ease-out;
	white-space: nowrap;
}

section.toggle label i {
	font-size: 0.7em;
	margin-right: 8px;
	position: relative;
	top: -1px;
}

section.toggle p {
	display: none;
}

