/*
***********************************************************************
*  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 */
qrylink
{
	font-family:Arial,Verdana,Tahoma;
	font-weight: bold;
	font-size: 15px;
	color:dodgerblue;
	text-decoration:underline;
	border:none;
	width:250px;
}
qrylink:hover
{
	color:white;		
}
/* Overall menu container */
ul.qrynav 
{
	list-style:none;
	margin:0;
	padding:0;
	width:250px;
	float: left;
}
/* Menu name (note that its id must be named "menu" */
ul.qrynav 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.qrynav 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.qrynav li:hover
{
	color: #FFFFFF; /* white */
	background-color: #0066CC ;
}
/* Dropdowns hidden when not hovering */
ul.qrynav li ul
{ 
	display:none;
	list-style:none;
	margin:0;padding:0;
}
/* Dropdowns displayed when hovering */
ul.qrynav li:hover 
{
	display: block;
	visibility:visible;
}
ul.qrynav li:hover > ul 
{
	display: block;
	visibility:visible;
}
/* menu anchor links */
ul.qrynav a
{
	display: block;
	font-size: 12px;
	text-decoration:none;
	font-weight: normal;
	color:black;
}
ul.qrynav a:hover
{
	color: #FFFFFF; /* white */
}

/* Horizontally scrolling div tag */
div#horzscroll
{
	float:left;
	width:550px;
	height:170px;
	overflow-x:scroll;
	overflow-y:hidden;
	white-space:no-wrap;
}
/* img-text-anchor box */
.maplnk
{
	float:left;
	overflow:none;
	white-space:no-wrap;
	padding:0px;
	border-spacing:0;
	border: none;
}
/* IMG for scrolling anchor links */
.maplnk img
{
	border-style:none;
	width:201px;
	height:133px;
}

/* copied from style.css, newsbox */
.maplnk a
{
	FONT: 8pt Arial, Helvetica, sans-serif; 
	COLOR: blue;  
	TEXT-DECORATION: underline;
}
.maplnk a:hover
{
	COLOR: dodgerblue; 
	TEXT-DECORATION: underline;
}
.maplnk a:visited
{
	COLOR: blue;  
}

/* -- Hintbox CSS -- */

#hintbox
{
	position:absolute;
	top: 0;
	background-color: lightyellow;
	width: 150px; /*Default width of hint.*/ 
	padding: 3px;
	border:1px solid black;

	line-height:18px;
	z-index:100;
	border-right: 3px solid black;
	border-bottom: 3px solid black;
	visibility: hidden;

	font-family:Arial,Verdana,Tahoma;
	font-weight: normal;
	font-size: 11px;
}
#hintbox a
{
	font-family:Arial,Verdana,Tahoma;
	font-weight: normal;
	font-size: 11px;
}
/* Make anchor behavior look like menus */
div#hintbox a:link    {COLOR: #3D4B7B ;text-decoration:none;}
div#hintbox a:visited {COLOR: #3D4B7B ;text-decoration:none;}
div#hintbox a:hover   {COLOR: dodgerblue ;text-decoration:underline;}
div#hintbox a:active  {COLOR: #3D4B7B ;text-decoration:none;}

