/* 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.**************/

#navigation {
	float:left;
	margin:0px;
	padding:0px;
	width: 643px; 
	height: 30px; 
	background-image:url(../images/navigation.gif);
	list-style: none;
}

/* HOME */
.menulist a.home {
	width: 83px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: 0px 0px;
}
.menulist a.home:hover {
	background-position: 0px -30px;
}

/* ABOUT */
.menulist a.about {
	width: 68px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -85px 0px;
}

.menulist a.about:hover {
	background-position: -85px -30px;
}

/* PRODUCTS AND SERVICES */
.menulist a.products {
	width: 68px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -153px 0px;
}

.menulist a.products:hover {
	background-position: -153px -30px;
}

/* SUPPORT */
.menulist a.support {
	width: 66px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -221px 0px;
}

.menulist a.support:hover {
	background-position: -221px -30px;
}


/* LITERATURE */
.menulist a.literature {
	width: 77px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -287px 0px;
}

.menulist a.literature:hover {
	background-position: -287px -30px;
}

/* CONSTRUCTOR GROUP */
.menulist a.group {
	width: 120px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -364px 0px;
}

.menulist a.group:hover {
	background-position: -364px -30px;
}

/* CONTACT */
.menulist a.contact {
	width: 75px;
	height: 30px;
	background: url("../images/navigation.gif");
	background-position: -488px 0px;
}

.menulist a.contact:hover {
	background-position: -488px -30px;
}

/*END***************TOP MENU IMAGES ROLLOVER CODE.**************/