

#menu{ /* nothing in here right now */
	
}

#menu .Item, #menu .ItemSelected
{ 
  /* CSS class for non-selected Menu Item */
	text-decoration : none;
	text-align: center;
	background-image: url(/crcweb/images/lev0_bg1.gif);
	border: 1px solid #336699;
	height: 24px;
	background-color: #2C5F93;

}

#menu .ItemHover
{ 
  /* CSS class for hovering and selected Menu Item
     ... which can be split up, of course! */
	text-align: center;
	text-decoration : none;
	padding-top: 1px;
	background-image: url(/crcweb/images/lev0_bg2.gif);
	background-color: #2C5F93;
	height: 22px;
	text-decoration: underline;
	border: 1px solid #336699;

}

#menu .DynamicItem, #menu .DynamicItemSelected
{ 
  /* CSS class for non-selected Menu Item */
	text-decoration : none;
	background-color: #5286BB;
	border: 1px solid #336699;
	padding: 0;
	width: 200px;

}

#menu .DynamicItemHover
{ 
  /* CSS class for hovering and selected Menu Item
     ... which can be split up, of course! */
	text-decoration : none;
	background-color: #1A4D81;
	background-image: url(/crcweb/images/lev1_arrow.gif);
	background-repeat: no-repeat;
	border: 1px solid #336699;
	padding: 0;
	width: 200px;

}

#menu .DynamicMenu
{ 
   z-index: 100;
}


/* CSS classes for standard Links, only valid inside the #menu DIV */
#menu a, #menu a:visited
{
  background: transparent ! important;
  display: block;
}

#menu a:hover, #menu a:active, #menu a:focus
{
  background: transparent ! important;
  display: block;
}


