/*
***********************************************************************
*  Module: MapNav.css                        Date: 03/30/2011
*                                            Author: Jon Baker
*  Purpose:
*    Stylesheet for rendering the menu of available graphical maps
*    on the portal home page.
***********************************************************************
*/
/* menu anchor for positioning */
.maplink
{
	font-family:Arial,Verdana,Tahoma;
	font-weight: bold;
	font-size: 15px;
	color:black;
	text-decoration:underline;
	border:none;
	width:250px;
}
.maplink:hover
{
	color:white;		
}
/* Overall menu container */
ul.mapnav 
{
	list-style:none;
	margin:0;
	padding:0;
	width:250px;
	float: left;
}
/* Menu name (note that its id must be named "menu" */
ul.mapnav li#menu
{

	font-family:Arial,Verdana,Tahoma;
	font-weight: bold;
	font-size: 15px;
	color:black;
	width:250px;

	text-decoration:none;
	border:none;
}
/* Drop-down menu items */
ul.mapnav li
{
	list-style:none;
	border-left:1px solid #0066CC; /* blue */
	border-right:1px solid #0066CC;
	border-top:1px solid #0066CC;
	border-bottom:1px solid #0066CC;
	background-color: #ffcc00; /* gold */
	text-decoration:none;
	color: black; /* white */
}
/* Menu title when hovering */
ul.mapnav li:hover
{
	color: #FFFFFF; /* white */
	background-color: #0066CC ;
}
/* Dropdowns hidden when not hovering */
ul.mapnav li ul
{ 
	display:none;
	list-style:none;
	margin:0;padding:0;
}
/* Dropdowns displayed when hovering */
ul.mapnav li:hover > ul 
{
	display: block;
}
/* menu anchor links */
ul.mapnav a
{
	display: block;
	font-size: 12px;
	text-decoration:none;
	font-weight: normal;
	color:black;
}
ul.mapnav a:hover
{
	color: #FFFFFF; /* white */
}
