ul.dropdown 
{
 font-weight: bold;
}
	ul.dropdown li 
	{
	 padding: 2px 10px 2px 10px;
	 color: Maroon; /* Color if item is not a link */
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover 
	{
	 color: Maroon; /* Hover Color if item is not a link */
	}

	ul.dropdown a:link    { color: Maroon; text-decoration: none; } /* Color if item is a link */
	ul.dropdown a:visited	{ color: Maroon; text-decoration: none; }
	ul.dropdown a:hover		{ color: Maroon; } /* Hover Color if item is a link */
	ul.dropdown a:active	{ color: inherit; }

	/* -- level mark -- */

	ul.dropdown ul 
	{
	 width: 150px;
	 margin-top: 0px;
	}

	ul.dropdown ul li 
	{
	 font-weight: normal;
	}

  /* This is where the background color is set */
  ul.dropdown 
  {
   width: 100%;
   background-color: Transparent; /* Background color of first menu level */
   /*background-image:url(../ButtonImages/menu_top_wborder.png);*/
   margin: 0px 0px 1px 0px;
  }

	ul.dropdown li 
	{
	 border: none;
	 background-image:url(../ButtonImages/menu_top.png);/* Background image for ITEMS on first level */
	 margin-left: 0px;
	 margin-right: 0px; /* spacing between items on first level */
   /*border-right-width:1px;    */ /* 1px white space between items */
   /*border-right-style:solid;  */
   /*border-right-color: White; */ 
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover 
	{
	 background-image:url(../ButtonImages/menu_top_inverted.png);
	}

	ul.dropdown ul 
	{
	 width: 972px;
	 margin-top: 0 0 0 0;
	 background-color: Transparent; /* Background color of second menu level */
	 background-image:url(../ButtonImages/menu_bottom.png);
	}

		ul.dropdown ul li 
		{
		 margin-left: 0px;
		 margin-right: 0px; /* spacing between items on second level */
		 background-image:url(../ButtonImages/menu_bottom.png);
		}

		ul.dropdown ul li.hover,
		ul.dropdown ul li:hover 
		{
		 margin: 0;
		 border: none;
		 background-image:url(../ButtonImages/menu_bottom_inverted.png);
		}
