
/* Top Menu Bar Container */
#menu {	  
		width: 800px;
		background: #ebebeb;
		float: left;
		}

/*Menu item */
#menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		width: 8em;       /*width of each cell*/
		float: left;
		font-size: 12pt;
		}
		
/* Menu Cell properties*/
#menu a, #menu h2 
		{
		font: bold 12px/16px Verdana, Arial, Helvetica, sans-serif;
		display: block;
		border-width: 1px;
		/*border-style: solid;
		border-color: #ccc #888 #555 #bbb;	top, right, bottom, left */ 
		margin: 0;
		padding: 1px 2px;
		}

/*Top Menu Item cells */
#menu h2 {
		color: #003399;		
		background: #ebebeb;
		/*text-transform: uppercase;*/
		}

/*Sub Menu Item cells */
#menu a {
		color: #003399;
		background: #efefef;
		text-decoration: none;
		}

/*Sub Menu Item hover */
#menu a:hover {
		color: #0033dd;
		background: #fff;
		}

#menu li {position: relative;}

#menu ul ul {
		position: absolute;
		z-index: 500;
		}

#menu ul ul ul {
		position: absolute;
		top: 0;
		left: 100%;
		}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
		{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
		{display: block;}



