BODY, HTML  {
	cursor: default;
	margin: 0;
	padding: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

#task {
	position:relative;
	margin: 0 auto;
	width: 900px;
	height: auto;
	visibility: hidden;
	/*background-color: #ffff00*/
}
#title{
	font-family: Futura PT;
	font-weight: 500;
	display: inline;
	border-bottom: 2px solid #7B819B;
	font-size: 40px;
	color: #7B819B;
}
#content{
	font-family: Futura PT;
	font-weight: 300;
	font-size: 24px;
	color: #000000;
}
.menu{
	position:relative;
	display:flex;
	justify-content:space-between;
	width: 100%;
	box-sizing: border-box;

}
#bottom{
	bottom:0%;
}
.button{
	height:auto;
	width:auto;
	border-radius: 5px;
	
	font-family: Futura PT;
	font-weight: 500;
	font-size: 24px;
	color: #FFFFFF;
	margin: 0px 0px;
	cursor: pointer;
}
#green{
	background-color:#668B4A;
	padding: 10px 30px;
}
#next{
	height:31px;
	background: #C4C5C4 url("../images/arrow.svg") no-repeat;
	background-position: center;
	padding: 10px 45px;
}
#prev{
	height:31px;
	background: #C4C5C4 url("../images/arrow.svg") no-repeat;
	background-position: center;
	transform: rotate(180deg);
	padding: 10px 45px;
}
#close{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: url("../images/close.svg") no-repeat;
	cursor: pointer;
}