#Navigation {
	width: 930px;
	margin: 0px;
	padding: 0px;
	height: 14px;
	font-size: 11px;
	letter-spacing: 0em;
	text-transform: uppercase;
	z-index: 300;
	color:#808080;
	margin-bottom: 30px;
}
/* hack to correct IE5.5 faulty box model */
* html #Navigation {
	width:930px; 
	w\idth:930px;
}
/* remove all the bullets, borders and padding from the default list styling */
#Navigation ul {
	float:left;
	margin: 0px;
	padding: 0px;
	margin-right: 0px;
	height: 15px;
	z-index: 305;
	position: relative;
}
#Navigation ul ul {
	text-align: left;
	background: #FFF;
	float:left;
	height:auto;
	z-index: 300;
	/* opacity:.90; filter: alpha(opacity=90); -moz-opacity:.90; */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#Navigation li {
	list-style: none; 
	margin: 0px; 
	display: block;
	padding: 0px;
	float: left;
	background: #FFF;
	line-height: 14px;
	border-left: 1px solid #808080;
	padding-left: 19px;
	margin-left: 20px;
	position: relative;
}
#Navigation li div.whitecover {
	display: none;
}
#Navigation li:hover div.whitecover,
#Navigation li a:hover div.whitecover {
	width:100%;
	position:absolute;
	left:0px;
	top: 14px;
	padding-right: 20px;
	height: 3px;
	background: #FFF;
	display: block;
	overflow: hidden;
	z-index: 310;
}
#Navigation li.first {
	padding-left: 0px;
	margin-left: 0px;
	border-left: none;
}
/* style the links for the top level */
#Navigation a, #Navigation a:visited {
	color: #808080;
	text-decoration: none;
	text-transform: uppercase;
	display: block;   
	padding: 0px;
	display:inline-block;
	text-align: left;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #Navigation a, * html #Navigation a:visited {
	text-decoration:none;
}
/* style the second level background */
#Navigation ul ul a.drop, #Navigation ul ul a.drop:visited {
	/* background: url(../images/nav-flyoutbgtop.gif) top right no-repeat; */
	text-decoration:none;
}
/* style the second level hover */
#Navigation ul ul a.drop:hover{
	/* background: url(../images/nav-flyoutbgv.gif) top right no-repeat; */
}
#Navigation ul ul :hover > a.drop {
	/* background: url(../images/nav-flyoutbgtop.gif) top right no-repeat; */
}
/* style the third level background */
#Navigation ul ul ul a, #Navigation ul ul ul a:visited {
	
}
/* style the third level hover */
#Navigation ul ul ul a:hover {
	color: #FFF; 
	background: #F37B78; 
	text-decoration:underline;
}


/* hide the sub levels and give them a positon absolute so that they take up no room // background:#dde0e0; */
#Navigation ul ul {
	/* display: none; */
	visibility: hidden;
	position:absolute;
	left: -1px;
	top: 14px;
	line-height: 1em;
	padding: 4px 15px 4px 15px;
	float:left;
	background: #FFF;
	border: 1px solid #808080;
	z-index: 300;
	width: 190px;	
}
/* another hack for IE5.5 */
* html #Navigation ul ul {
	top:14px;
	t\op:14px;
	background: #FFF;
}
/* position the third level flyout menu */
#Navigation ul ul ul{
	left:150px;
	top:-1px;
	width:150px;
	background: #FFF;
	padding: 0px;
	margin: 0px;
}

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

/* style the table so that it takes no ppart in the layout - required for IE to work */
#Navigation table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	z-index: 301;
}
#Navigation ul ul li.current a, #Navigation ul li.current a, #Navigation ul li.last a {
	color: #c03038;
}

#Navigation ul ul li {
	border: none;
	padding: 0px;
	margin: 0px;
	border-top: 1px solid #FFF;
	display:block;
	width: 100%;
}

/* style the second level links */
#Navigation ul ul a, #Navigation ul ul a:visited {
	color: #808080; 
	font-size: 100%;
	height: auto; 
	display: block;
	line-height: 1em; 
	padding: 5px;
	text-decoration:none; 
}
/* style the second level on links */
#Navigation ul ul a.on, #Navigation ul ul a.on:visited {
	font-weight:bold;
}
/* yet another hack for IE5.5 */
* html #Navigation ul ul a {
	text-decoration:none;
}

/* style the top level hover * html #Navigation ul ul a:visited */
#Navigation a:hover, #Navigation ul ul a:hover {
	color: #c03038;
	text-decoration:underline;
}
#Navigation :hover > a, #Navigation ul ul :hover > a {
	color:#c03038;
	text-decoration:none;
}
/* make the second level visible when hover on first level list OR link */
#Navigation ul li:hover ul,
#Navigation ul a:hover ul{
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
#Navigation ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#Navigation ul :hover ul :hover ul{
	visibility:visible;
}