/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 font: 11px arial;
 font-weight: normal;
 margin: 0;
 padding: 0;
 list-style: none;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 background: transparent;
 color: inherit;
 border: 0px solid #fff;
 margin-right: 0px;
}

/* LINKS INSIDE THE TOP MENU (OFF STATE) */
.menulist a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: inherit;
 text-decoration:  none;
}

/* LINKS INSIDE THE TOP MENU (OVER STATE) */
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: inherit;
 background-color: transparent;
}

/* LINKS INSIDE THE TOP MENU (LEAVE STATE?) */
.menulist  a.highlighted {
 color: inherit;
 background-color: transparent;
}

/* END HORIZONTAL FREESTYLE MENU LAYOUT */

/****************TOP MENU IMAGES ROLLOVER CODE.**************/

#navbar_bot {
	float:left;
	margin:0px;
	padding:0px;
	width: 980px; 
	height: 24px; 
	background-image:url(../images/navbar_bot.gif);
	list-style: none;
}

/*ABOUT US*/
.menulist a.about {
	width: 122px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: 0px 0px;
}
.menulist a.about:hover {
	background-position: 0px -24px;
}

/*SECTORS*/
.menulist a.sectors {
	width: 123px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -122px 0px;
}

.menulist a.sectors:hover {
	background-position: -122px -24px;
}

/*DOWNLOADS*/
.menulist a.downloads {
	width: 123px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -245px 0px;
}

.menulist a.downloads:hover {
	background-position: -245px -24px;
}

/*GLOSSARY*/
.menulist a.glossary {
	width: 122px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -368px 0px;
}

.menulist a.glossary:hover {
	background-position: -368px -24px;
}

/*CONTACT*/
.menulist a.contact {
	width: 123px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -490px 0px;
}

.menulist a.contact:hover {
	background-position: -490px -24px;
}

/*TERMS & CONDITIONS*/
.menulist a.terms {
	width: 122px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -613px 0px;
}

.menulist a.terms:hover {
	background-position: -613px -24px;
}

/*PRIVACY POLICY*/
.menulist a.privacy {
	width: 123px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -735px 0px;
}

.menulist a.privacy:hover {
	background-position: -735px -24px;
}

/*SITEMAP*/
.menulist a.sitemap {
	width: 122px;
	height: 24px;
	background: url("../images/navbar_bot.gif");
	background-position: -858px 0px;
}

.menulist a.sitemap:hover {
	background-position: -858px -24px;
}



/*END***************TOP MENU IMAGES ROLLOVER CODE.**************/