.menu {
	margin: auto;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 24px;
	background-color: #0404B4;
	border: 1px solid white;
	height: 42px;
	color: #F5F788;
}
.menu div {
	padding: 5px 50px 5px 50px;
	float: left;
	border: 1px solid white;
	position: relative;
	height:30px;
}
.menu div:hover {
	background-color: #A2EB7B;
	color: blue;
}
.menu div ul {
	font-size: 20px;
	float: left;
	text-align: left;
	position: absolute;
	display: none;
	background-color:white;
	margin-top: 0px;
	left: -1px;
	top: 40px;
	z-index:1;
	list-style-type: none;
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu div:hover ul {
	display: block;
	background-color: #A2EB7B;
	-moz-box-shadow: -5px 5px 5px grey;
	-webkit-box-shadow: -5px 5px 5px grey;
	box-shadow: -5px 5px 5px grey;
}
.menu p {
	margin: 0;
	padding: 0;
}
.menu li {
	width: 260px;
	position: relative;
	top: 0px;
	left: 0px;
	list-style-type: none;
	padding: 10px;
	border: 1px solid indigo;
	border-top: 0px;
}
.menu li p {
	font-size: 18px;
	display: none;
	width: 300px;
	position: absolute;
	right: 280px;
	top: 0px;
	background-color: #F5F788;
	z-index: 2;
	color: purple;
	-moz-box-shadow: -5px 5px 5px grey;
	-webkit-box-shadow: -5px 5px 5px grey;
	box-shadow: -5px 5px 5px grey;
}
.menu li:hover p {
	display: inline-block;
}
.menu li:hover {
	background-color: #F5F788;
	color: purple;
}