/* 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;
}

/* SUBMENUS (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 font: 11px arial;
 font-weight: normal;
 top: 25px;
 left: 0px;
 width: 180px;
}

/*
 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: #1f1f1f;/*#d60029*/
 color: #d60029;
 border: 0px solid #fff;
 margin-right: 0px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: 0px;
 padding: 4px 1px 4px 1px;
 border: 1px solid #ffffff;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* LINKS INSIDE THE TOP MENU (OFF STATE) */
.menulist a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #d60029;
 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: #009ddc;
 background-color: #1f1f1f;
}

/* LINKS INSIDE THE TOP MENU (LEAVE STATE?) */
.menulist  a.highlighted {
 color: #0000ff;
 background-color: #1f1f1f;
}


/****************TOP MENU IMAGES ROLLOVER CODE.**************/

.navigation {height: 25px; width: 950px; background: url(navigation.gif);  list-style: none;}

/* HOME */
.menulist a.home {
	width: 70px;
	height: 25px;
	background: url(navigation.gif);
	background-position: 0px 0px;
}
.menulist a.home:hover {
	background-position: 0px -25px;
}

/* ABOUT */
.menulist a.about {
	width: 67px;
	height: 25px;
	background: url(navigation.gif);
	background-position: -70px 0px;
}

.menulist a.about:hover {
	background-position: -70px -25px;
}

/* PRODUCTS */
.menulist a.products {
	width: 66px;
	height: 25px;
	background: url(navigation.gif);
	background-position: -137px 0px;
}

.menulist a.products:hover {
	background-position: -137px -25px;
}


/* CUSTOMER SERVICES 
.menulist a.services {
	width: 120px;
	height: 25px;
	background: url("navigation.gif");
	background-position: -203px 0px;
}

.menulist a.services:hover {
	background-position: -203px -25px;
}*/

/* TECHNICAL SUPPORT */
.menulist a.support {
	width: 115px;
	height: 25px;
	background: url(navigation.gif);
	background-position: -203px 0px;
}

.menulist a.support:hover {
	background-position: -203px -25px;
}

/* PRESS CENTRE */
.menulist a.press {
	width: 114px;
	height: 25px;
	background: url(navigation.gif);
	background-position: -320px 0px;
}

.menulist a.press:hover {
	background-position: -320px -25px;
}

/* CONTACT US */
.menulist a.contact {
	width: 75px;
	height: 25px;
	background: url(navigation.gif);
	background-position: -435px 0px;
}

.menulist a.contact:hover {
	background-position: -435px -25px;
}

/*END***************TOP MENU IMAGES ROLLOVER CODE.**************/



/* CLASS FOR NAVI SUB LINKS..*/

a:link.sublinks, a:visited.sublinks {color: #FFFFFF; font-size: 11px; font-weight: normal;text-decoration: none;}
a:active.sublinks, a:hover.sublinks {color: #EDEEEF; font-size: 11px;font-weight: bold;text-decoration: none;}
span {color:#ffffff; padding: 0px 0px 0px 5px; font-weight: bold;}

/* END CLASS FOR NAVI SUB LINKS..*/




/* BACKGROUND IMAGES FOR TOP LEVEL LINKS...*/
/*
    .menulist a#home {
      background-image: url(navi.gif);
    }
    .menulist a#home:hover, .menulist a.highlighted#top_bg, .menulist a:focus {
     background-image: url(home.gif);
    }
*/
/* END BACKGROUND IMAGES FOR TOP LEVEL LINKS...*/



/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */