/* 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:1000px;
	margin:0px 0px;
	font-family:Arial, Helvetica, sans-serif;
}

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.home{
	background-image:url(images/nav_02.jpg);
	background-position:left;
	width:80px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(images/navRoll_02.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.company{
	background-image:url(images/nav_03.jpg);
	background-position:left;
	width:88px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.company:hover  {
	background-image:url(images/navRoll_03.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.material{
	background-image:url(images/nav_04.jpg);
	background-position:left;
	width:94px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.material:hover  {
	background-image:url(images/navRoll_04.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.market{
	background-image:url(images/nav_05.jpg);
	background-position:left;
	width:84px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.market:hover  {
	background-image:url(images/navRoll_05.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.process{
	background-image:url(images/nav_06.jpg);
	background-position:left;
	width:94px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.process:hover  {
	background-image:url(images/navRoll_06.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.faq{
	background-image:url(images/nav_07.jpg);
	background-position:left;
	width:63px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.faq:hover  {
	background-image:url(images/navRoll_07.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.story{
	background-image:url(images/nav_09.jpg);
	background-position:left;
	width:131px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.story:hover  {
	background-image:url(images/navRoll_09.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.news{
	background-image:url(images/nav_08.jpg);
	background-position:left;
	width:72px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.news:hover  {
	background-image:url(images/navRoll_08.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(images/nav_10.jpg);
	background-position:left;
	width:121px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/navRoll_10.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.right{
	background-image:url(images/nav_11.jpg);
	background-position:left;
	width:165px;
	height:29px;
	background-repeat:no-repeat;
	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:white;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	padding-left:16px;
	font-size:12px;
	font-weight:normal;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#3f3f3f;
}


div#listmenu ul li ul li a.dropDown2 {
	color:white;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	padding-left:16px;
	font-size:11px;
	font-weight:normal;
	border:none;
}
div#listmenu ul li ul li a.dropDown2:hover {
	color:#3f3f3f;
}

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.company{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:105px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.material{
	/*--- 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.market{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:145px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.process{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:185px;
	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:#3f3f3f;
	border-bottom:1px solid silver;
}


div#listmenu ul li ul li:hover {
	background-color:silver;
}
