.menu {
	width:848px;
	font-size:1em;
	position:relative;
	text-align: left;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	font-weight:bold;
	padding:0;
	margin:0;
	list-style-type:none;
	}

.menu ul ul {
  font-weight:normal;
	width:115px;
	}

/* 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:100px;
	position:relative;
	}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#000000;
	width:100px;
	height:35px;
	border:0px;
	background:#BBBBBB;
	padding-left:10px;
	line-height:35px;
	text-align: left;
	}

/* style the top level hover */
.menu a:hover {
	color:#000000;
	background:#DDDDDD;
	font-weight: bold;
	}

.menu :hover > a  {
	color:#000000;
	background:#DDDDDD;
	font-weight: bold;
	}
	
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:100px;
	w\idth:100px;
	}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#DDDDDD url(images/drop.gif) bottom right no-repeat;
	border-bottom:1px solid #D7D7D7;
	}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#DDDDDD;
	color:#000;
	height:auto;
	line-height:2em;
	padding:5px 10px;
	width:130px;
	border-bottom:1px solid #D7D7D7;
	}

/* style the second level hover */
.menu ul ul a:hover, .menu ul ul :hover > a {
	color:#000000;
	background:#EEEEEE;
	}

.menu ul ul a.drop:hover {
	background:#EEEEEE url(images/drop.gif) bottom right no-repeat;
	}
.menu ul ul :hover > a.drop {
	background:#EEEEEE url(images/drop.gif) bottom right no-repeat;
	}

/* 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;
	}
	
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#EEEEEE;
	border-bottom:1px solid #D7D7D7;
	}

/* style the third level hover */
.menu ul ul ul a:hover {
	background:#FFFFFF;
	}

/* position the third level flyout menu */
.menu ul ul ul {
	left:150px;
	top:0;
	width:150px;
	}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-150px;
	}
	
/* 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;
	}

/* 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:0;
	top:35px;
	left:0;
	width:150px;
	}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:35px;
	t\op:35px;
	font-weight: normal;
	f\ont-weight: normal;
	}

* html .menu ul ul ul {
	top:0px;
	t\op:0px;
	font-weight: normal;
	f\ont-weight: normal;
	}
	
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* yet another hack for IE5.5 */
* html .menu ul ul a {
	width:150px;
	w\idth:130px;
	}
	
* html .menu ul ul a:hover {
	background:#BBBBBB;
	b\ackground:#BBBBBB;
	}
	
* html .menu ul ul ul a:hover {
	background:#FFFFFF;
	b\ackground:#FFFFFF;
	}
