.menu 
{ 
	width: 880px; 
	font-size: 15px; 
	font-family: Arial, Helvetica, sans-serif; 
	font-weight: bold; 
	position: relative; 
}

/* remove all the bullets, borders and padding from the default list styling */



.menu ul 
{
	text-align: left;	
	padding-left: 0px;
	padding-right: 0px;	
	padding-top: 0px;	
	padding-bottom: -1px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: -1px;		
	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 
{ 
	width: 176px; 
	position: relative; 
	float: left; 
}

/* style the links for the top level */
.menu a
{ 
	display: block; 
	font-size: 12px; 
	font-family: Arial, Helvetica, sans-serif; 
	text-decoration: none; 
	color: #dcdcdc;
	width: 176px; 
	height: 44px; 
	padding-left: 0px; 
	padding-right: 0px;

	padding: 0px;
	margin: 0px;
/*
	padding-bottom: -1px;
	margin-bottom: -1px;
*/
	line-height: 44px; 
}

.Item {
	padding-bottom: -1px;
	margin-bottom: -1px;	
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a
{
	width: 176px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{ 
	background: url('img-tmpl/navi-sub-off.jpg') no-repeat; 
}

/* style the second level hover */
.menu ul ul a.drop:hover
{ 
	background: url('img-tmpl/navi-sub-on.jpg') no-repeat; 
}

.menu ul ul :hover > a.drop 
{
	background: url('img-tmpl/navi-sub-on.jpg') no-repeat; 
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited 
{
	background: url('img-tmpl/navi-sub-off.jpg') no-repeat;
}

/* style the third level hover */
.menu ul ul ul a:hover 
{
	background: url('img-tmpl/navi-sub-on.jpg') no-repeat;
}

/* 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: 42px;
	left: 0; 
	width: 179px;
}

/* another hack for IE5.5 */
* html .menu ul ul 
{
	top: 44px;
	top: 44px;
}

/* position the third level flyout menu */
.menu ul ul ul
{
	color:#F00;
	left: 179px; 
	top: 0;
	width: 179px;
}


/* 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;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
	background: url('img-tmpl/navi-sub-off.jpg') no-repeat;
	color: #cccccc;
	line-height: 1em;
	height: auto;
	padding: 10px 12px; 
}

/* yet another hack for IE5.5 */
* html .menu ul ul a
{
	width: 179px;
	width: 179px;
}

/* style the top level hover */
.menu ul ul a:hover
{
	color: #fff;
	background: url('img-tmpl/navi-sub-on.jpg') no-repeat;	
}