/* 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;
	width:846px;
	height:30px;
	font-size:9px;
	background-image:url(images/navRepeater.jpg);
	background-repeat:repeat-y;
	background-color:white;
}

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-left:8px;
	padding-right:8px;
}

div#listmenu ul li.about{
	background-image:url(images/nav_10.jpg);
	background-position:left;
	width:132px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(images/navRoll_10.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.products{
	background-image:url(images/nav_12.jpg);
	background-position:left;
	width:94px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.products:hover  {
	background-image:url(images/navRoll_12.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.green{
	background-image:url(images/nav_14.jpg);
	background-position:left;
	width:131px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.green:hover  {
	background-image:url(images/navRoll_14.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.news{
	background-image:url(images/nav_16.jpg);
	background-position:left;
	width:54px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.news:hover  {
	background-image:url(images/navRoll_16.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.investor{
	background-image:url(images/nav_18.jpg);
	background-position:left;
	width:166px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.investor:hover  {
	background-image:url(images/navRoll_18.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.careers{
	background-image:url(images/nav_20.jpg);
	background-position:left;
	width:78px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.careers:hover  {
	background-image:url(images/navRoll_20.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.contact{
	background-image:url(images/nav_22.jpg);
	background-position:left;
	width:73px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/navRoll_22.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block;
	background-color:#cfdbec;
	border-right:1px solid #004478;
	border-left:1px solid #004478; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#004478;
	font-size:11px;
	text-decoration:none;
	display:block;
	margin:0px;
	padding-left:6px;
	padding-bottom:3px;
	padding-right:6px;
	padding-top:3px;
	font-weight:normal;
	border-bottom:1px solid #666666;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#ffffff;
}

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:140px;
	margin-top:30px;
	padding:0px;
}

div#listmenu ul li ul.products{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:200px;
	margin-top:30px;
	padding:0px;
}

div#listmenu ul li ul.news{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:160px;
	margin-top:30px;
	padding:0px;
}

div#listmenu ul li ul.investor{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:250px;
	margin-top:30px;
	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;
}

div#listmenu ul li ul li:hover {
	background-color:#004478;
}


