/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px 0px;
	height:29px;
	width:945px;
	margin:0px 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background-image:url(images/layoutNew_10.jpg);
	background-repeat:repeat-x;
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
}

div#listmenu ul li
{
	padding-right:25px;
}

div#listmenu ul li.space{
	background-image:url(images/layoutNew_02.jpg);
	background-position:left;
	width:280px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
	padding-right:0px;
	margin-top:0px;
}


div#listmenu ul li.home{
	background-image:url(images/layoutNew_03.jpg);
	background-position:left;
	width:76px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(images/rolloverNew_03.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.about{
	background-image:url(images/layoutNew_05.jpg);
	background-position:left;
	width:86px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(images/rolloverNew_05.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.special{
	background-image:url(images/layoutNew_09.jpg);
	background-position:left;
	width:92px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.special:hover  {
	background-image:url(images/rolloverNew_09.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.ncs{
	background-image:url(images/layoutNew_07.jpg);
	background-position:left;
	width:188px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.ncs:hover  {
	background-image:url(images/rolloverNew_07.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(images/layoutNew_11.jpg);
	background-position:left;
	width:76px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/rolloverNew_11.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#ffffff;
	text-decoration:none;
	display:block;
	margin:0px;
	padding-left:6px;
	padding-bottom:6px;
	padding-right:6px;
	padding-top:3px;
	font-weight:normal;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#000055;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	z-index:99;
}


div#listmenu ul li ul.about{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:86px;
	margin-top:29px;
	padding:0px;
}

div#listmenu ul li ul.special{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:200px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.ncs{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:180px;
	margin-top:29px;
	padding:0px;
}


div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	border-top:0px;
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#a2a3a5;
}

div#listmenu ul li ul li:hover {
	background-color:#aecdec;
}

