﻿/***************************************************************************************
/************************************* TreeNav ***********************************
/***************************************************************************************/
.NavStandard
{
	position: relative;
	left: 50px;	
	/*margin-left: 50px;*/
	padding:0px;
	width:950px;
	height:70px;
}
.NavStandard ul{
	margin: 0px auto;
	width:1000px;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.NavStandard ul li{
	float:left;
	background: none;
	width:80px;
	height:70px;
	text-align:center;
}

/*Top level menu link items style*/
.NavStandard ul li a{
	display: block;
	text-decoration: none;
	color:#000;
	width:80px;
	height:70px;
}

.NavStandard ul li.li1 a{height:70px;width:80px;background: #ffffff url(images/Nav_02.jpg) no-repeat top left;}
.NavStandard ul li.li2 a{height:70px;width:80px;background: #ffffff url(images/Nav_03.jpg) no-repeat top left;}	
.NavStandard ul li.li3 a{height:70px;width:80px;background: #ffffff url(images/Nav_04.jpg) no-repeat top left;}	
.NavStandard ul li.li4 a{height:70px;width:80px;background: #ffffff url(images/Nav_05.jpg) no-repeat top left;}
.NavStandard ul li.li5 a{height:70px;width:80px;background: #ffffff url(images/Nav_06.jpg) no-repeat top left;}		
.NavStandard ul li.li6 a{height:70px;width:80px;background: #ffffff url(images/Nav_07.jpg) no-repeat top left;}		
.NavStandard ul li.li7 a{height:70px;width:80px;background: #ffffff url(images/Nav_08.jpg) no-repeat top left;}	
.NavStandard ul li.li8 a{height:70px;width:80px;background: #ffffff url(images/Nav_09.jpg) no-repeat top left;}	

.NavStandard ul li a:hover{
    background-position : 0px -70px;
}
.NavStandard ul li a.selected{
    background-position : 0px -140px;
}

.NavStandard ul li a span{display:none;}

/*1st sub level menu*/
.NavStandard ul li ul{
	left: 0px;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	z-index:999;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.NavStandard ul li ul li{
	width: 100px; /*width of sub menu levels*/
	/*height:30px;*/
	display: list-item;
	float: none;
	z-index:999;
	background-color: #ccc;
}
.NavStandard ul li ul li a{color:#000000;}

/*All subsequent sub menu levels offset after 1st level sub menu */
.NavStandard ul li ul li ul{ 
	width: 100px; /*width of sub menu levels*/
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
	z-index:999;
}


/*Background image for top level menu list links */
.NavStandard .mainfoldericon{
	background: #F3F3F3 url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.NavStandard .subfoldericon{
	background: #F3F3F3 url(media/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .NavStandard ul li { float: left; height: 1%; }
* html .NavStandard ul li a { height: 1%; }
/* End */