/* CSS Document */

/* set up the overall width of the menu div and the margins */
.menu2 {
	font-family: verdana, arial, sans-serif; 
	width:205px;
	background:none;
	margin:0 auto; 
	position:relative;
	z-index:1;
}

.menu2 ul {
	padding:0; margin:0; list-style-type: none; border:0;
}
.menu2 ul li {
	float:center;
	width:94px;
}

.menu2 ul li a, .menu2 ul li a:visited {
	display:block; 
	float:center;
	text-align:center; 
	text-decoration:none; 
	width:205px; 
	height:55px; 
	color:#fff;
	background:none; 
	line-height:17px; 
	font-size:11px;
}

/* make the dropdown ul invisible */
.menu2 ul li ul {
	display: none;	
}


/* make the sub menu ul visible and position it beneath the first list item */
.menu2 ul li:hover ul {
	text-align:center;
	display:block; 
	position:absolute; 
	top:25px; 
	left:210px;
}

/* make the sub menu ul li the full width with padding and border. */
.menu2 ul li:hover ul li {
	text-align:center;
	cursor:hand;
	width:203px;
	height:215px;
	border:3px solid #fff;
	background:#fff; 
	padding:none;
	cursor:default;
}

.menu2 ul li:hover ul li a:hover {
	background:#003366;
}
.menu2 p {
	float:center;
	color:#0033CC;
	padding:5px;
	width:190px;
}


