@charset "utf-8";
/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
	behavior:url(csshover.htc);
}

div#listmenu /*--- Menu List Container ---*/
{
	float:right; /*--- Makes the div enclose the list ---*/
	height:16px;
	width:707px;
	margin:0px;
	padding:0px;

	
}

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;
	padding-top:0px;
	padding-bottom:0px;
	padding-left:1px;
	padding-right:1px;
	margin:0px;
}

div#listmenu ul li.company
{
	background-image:url(images/company-profile.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.company:hover  {
	background-image:url(images/company-profile-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}


div#listmenu ul li.application{
	background-image:url(images/applications.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.application:hover  {
	background-image:url(images/applications-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.materials{
	background-image:url(images/materials.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.materials:hover  {
	background-image:url(images/materials-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.process{
	background-image:url(images/processes.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.process:hover  {
	background-image:url(images/processes-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.systems{
	background-image:url(images/systems.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.systems:hover  {
	background-image:url(images/systems-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.articles{
	background-image:url(images/articles.gif);
	background-position:left;
	width:99px;
	height:16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.articles:hover  {
	background-image:url(images/articles-hover.gif);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.contact{
	background-image:url(images/contact-us.gif);
	background-position:left;
	width:99px;
	height16px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/contact-us-hover.gif);
	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:black;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	font-size:12px;
	font-weight:normal;
	font-family: "Arial", sans-serif;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

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 ---*/
	top:16px;
	padding:0px;
	border-left:1px solid #cbcbcb;
	border-right:1px solid #cbcbcb;
	border-bottom:1px solid #cbcbcb;
	background-color:#edeced;
	z-index:99;
}


div#listmenu ul li ul.processdd
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:110px;
	padding-left:3px;
	padding-top:2px;
	padding-bottom:2px;
	margin-top: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 ---*/
	padding:1px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#edeced;
/*	border-top:1px solid #cbcbcb;
*/}


div#listmenu ul li ul li:hover {
	background-color:#bbbbbb;
	
}
