body {
	background-color: #FFC0CB;
	background-image: url('../images/bg.png');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: repeat;
	background-size: cover;
	webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	font-family: arial;
	font-size: 120%;
	margin: 0px 0px 0px 0px;
	text-shadow: 1px 1px 1px #000;
}
header {
	top: 0;
	left: 0;
	position: fixed;
	height: 110px;
	width: 100%;
	z-index: 3;
}
article {
	color: #000;
	margin: 110px 0px 30px 0px;
	z-index: 1;
}
footer {
	background-color: #FFC0CB;
	background-image: url('../images/bg.png');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: repeat;
	background-size: cover;
	webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	bottom: 0;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 1;
}
footer a {
	color: #CCC;
	text-decoration: none;
	text-shadow: 1px 1px 1px #000;
}




label {
	display: block;
	padding: 8px 22px;
	margin: 0 0 1px 0;
	cursor: pointer;
	background: #6AAB95;
	border-radius: 3px;
	color: #FFF;
	transition: ease .5s;
	position: relative;
	width: 330px;
}
label:hover {
	background: #4E8774;
}

label::after {
	content: '+';
	font-size: 22px;
	font-weight: bold;
	position: absolute;
	left: 5px;
	top: 5px;
}

input:checked + label::after {
	content: '-';
	left: 5px;
	top: 5px;
}

input + label + div {
	display: none;
}

input:checked + label + div {
	display: block;
}

input {
	display: none;
}

div {
	background: #E2E5F6;
	padding: 0px 10px;
	border: 1px solid #A7A7A7;
	margin: 0 0 1px 0;
	border-radius: 3px;
	width: 350px;
}
