#MessageBox{
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #313131;
	top: 0;
	left: 0;
	opacity: .96;
	overflow: auto;
	display: none;
}


img#close{
	position: absolute;
	right: -14px;
	top: -14px;
	cursor: pointer;
}

div#popupContact{
	position: absolute;
	left: 50%;
	top: 20%;
	margin-left: -202px;
}

form{
	max-width: 300px;
	min-width: 250px;
	padding: 10px 50px;
	border: 3px solid grey;
	border-radius: 10px;
	background-color: #ffffff;
}

.MyPop h2{
	background-color: deepskyblue;
	padding: 25px 40px;
	margin: -10px -50px;
	border-radius: 10px 10px 0 0;
}

.MyPop input[type=text],
input[type=email]{
	width: 82%;
	padding: 10px;
	margin-top: 30px;
	border: 2px solid grey;
	padding-left: 40px;
}

#name{
	background-image: url(images/icon2.png);
	background-repeat: no-repeat;
	background-position: 5px 7px;
}

#email{
	background-image: url(images/icon5.png);
	background-repeat: no-repeat;
	background-position: 5px 7px;
}

.MyPop textarea{
	background-image: url(images/icon3.png);
	background-repeat: no-repeat;
	background-position: 5px 7px;
	width: 82%;
	height: 90px;
	padding: 10px;
	margin-top: 30px;
	resize: none;
	border: 2px solid grey;
	padding-left: 40px;
	margin-bottom: 30px;
}

#submit{
	text-decoration: none;
	width: 100%;
	display: block;
	text-align: center;
	background-color: deepskyblue;
	padding: 15px 0;
	font-size: 20px;
	cursor: pointer;
	border-radius: 5px;
}

#submit:hover{
	background-color: #66CC00;
}