/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 font: 11px Arial, Helvetica, sans-serif;
 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: 10px Arial, Helvetica, sans-serif;
 font-weight: normal;
 top: 30px;
 left: 0px;
 width: 150px;
}

/*
 All menu items (<li class="menulist">
 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: #FFFFFF;
 color: #1B3F97;
 border: 0px solid #C6C6C6;
 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: 5px 1px 5px 1px;
 border: 1px dashed #C6C6C6;
}
.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: #009ddc;
 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: #FFFFFF;
}

/* LINKS INSIDE THE TOP MENU (LEAVE STATE?) */
.menulist  a.highlighted {
 color: #0000ff;
 background-color: #FFFFFF;
}





/****************TOP MENU IMAGES ROLLOVER CODE.**************/

.navigation {height: 30px; width: 750px; background: url("navi.gif");}

/* HOME */
.menulist a.home {
	width: 67px;
	height: 30px;
	background: url("navi.gif");
	background-position: 0px 0px;
}
.menulist a.home:hover {
	background-position: 0px -30px;
}

/* ABOUT */
.menulist a.about {
	width: 80px;
	height: 30px;
	background: url("navi.gif");
	background-position: -67px 0px;
}

.menulist a.about:hover {
	background-position: -67px -30px;
}

/* PRODUCTS */
.menulist a.products {
	width: 147px;
	height: 30px;
	background: url("navi.gif");
	background-position: -147px 0px;
}

.menulist a.products:hover {
	background-position: -147px -30px;
}


/* SERVICES */
.menulist a.services {
	width: 132px;
	height: 30px;
	background: url("navi.gif");
	background-position: -294px 0px;
}

.menulist a.services:hover {
	background-position: -294px -30px;
}

/* SECTORS */
.menulist a.sectors {
	width: 71px;
	height: 30px;
	background: url("navi.gif");
	background-position: -426px 0px;
}

.menulist a.sectors:hover {
	background-position: -426px -30px;
}

/* NEWS */
.menulist a.news {
	width: 62px;
	height: 30px;
	background: url("navi.gif");
	background-position: -497px 0px;
}

.menulist a.news:hover {
	background-position: -497px -30px;
}

/* CASE STUDIES */
.menulist a.casestudies {
	width: 98px;
	height: 30px;
	background: url("navi.gif");
	background-position: -559px 0px;
}

.menulist a.casestudies:hover {
	background-position: -559px -30px;
}

/* CONTACT */
.menulist a.contact {
	width: 93px;
	height: 30px;
	background: url("navi.gif");
	background-position: -657px 0px;
}

.menulist a.contact:hover {
	background-position: -657px -30px;
}

/*END***************TOP MENU IMAGES ROLLOVER CODE.**************/



/* CLASS FOR NAVI SUB LINKS..*/

a:link.sublinks, a:visited.sublinks {color: #1B3F97; font-size: 10px; font-weight: normal;text-decoration: none; padding: 0px 0px 0px 5px;}
a:active.sublinks, a:hover.sublinks {color: #F7032B; font-size: 10px;font-weight: normal;text-decoration: underline;}
span {color:#ffffff; padding: 0px 0px 0px 5px;}

/* 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 */