.menu {
	width:650px; 
	height:32px; 	
	font-size: 115%; 
	position:relative; 
	border-right:0px solid #000;  /* right side border of main menu container*/
	margin: 0 0 0 65px;
	float: left;
	}
	
* html .menu {
	margin: 0 0 0 55px;
	float: left;
	}
	

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;

	}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:106px; /*establishes width between cells on the top level*/
	padding: 0 0 0 0px;
	margin: 0 0 0 0px;
	position:relative;

	}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:.85em;
	text-decoration:none;
	color:#444; 
	width:85px;
	height:30px;
	border: 0px solid #000;
	border-width: 0px 0 0px 0px; /* border of the top level--leave the right border set to zero --JOHN*/
	background-color: transparent; /*background color of the top level*/
	padding-left:5px;
	line-height:29px;
	}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color: #fff;
	background: #608479;
	font-weight: normal;
	font-variant: small-caps;
}
	
.menu :hover > a, .menu ul ul :hover  a {
	color: #fff;
	background: #608479; /*background hover color of the top level*/
	}


/* style the first level background --ADDED BY JOHN */
.menu ul a.drop, .menu ul a.drop:visited {
	background: transparent url(../IMAGES/arrowDown.gif)  no-repeat;  /*the color --in this case clear, governs the static background of the drop UL*/
	background-position: 84% 50%
	}

/* style the first level hover --ADDED BY JOHN */

.menu ul a.drop:hover{
	background: #AFE7A0 url(../IMAGES/arrowDownHover.gif) no-repeat;
	background-position: 84% 50%;
	}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#fff;
	color:green;
	height:auto;
	text-align: left;
	line-height:1em;
	padding: 5px 0 5px 5px;
	width: 80px;  /*width of the second level drop down cell*/
	border-width: 0px 0px 0px 0px;
	}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #fff url(../IMAGES/orangeDot.gif)  no-repeat; /*color of the first level ul li drop background*/
	background-position: 90% 50%;
	width: 83px; /*width of the first level ul li drop background*/
	}

/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#fff url(../IMAGES/orangeDot.gif) no-repeat;
	background-position: 90% 50%;
	}
	
.menu ul ul :hover > a.drop {
	background:lightgreen url(../IMAGES/greenDot.gif) bottom right no-repeat;
	background-position: 90% 50%;
	}

/* style the second level ul background  --ADDED BY JOHN*/
.menu ul ul a, .menu ul ul a:visited {
	background: #fff; /*color of the second level ul li background*/
	width: 83px; /*width of the second level ul li background*/

	}
	
/* style the second level ul background on hover --ADDED BY JOHN*/
.menu ul ul li a:hover {
	background-color: pink;
	color: red;
	width: 83px;
	}
	

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: red; /*controls the background color of the third level flyout*/
	}
	


/* style the third level hover */
.menu ul ul ul a:hover {
	background:green;

	}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:auto;
	top:31px;
	left:0;
	width:88px;
	border: 1px solid #888;  /*second level ul border --JOHN*/
	margin: -2px 0 0 0;
	}


/* position the third level flyout menu */
.menu ul ul ul{
	left:88px;
	top: 1px; 
	width:88px;
	height: auto;
	z-index:-10;
	border: 10px solid green;
	}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-149px;
	}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
	
	}


/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
	}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
	}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
	visibility:visible;
	}