/* HMENU CONFIGURATION */

/* HMENU HORIZONTAL ITEMS */
.menu a, .menu a:visited {color:#000000; background:#f1b512;background-image:url(../images/furniture/orange.gif);background-repeat; repeat-x;}	/* text and background colours for each horizontal item */ /* THIS WORKS */

/* HMENU HORIZONTAL LEVEL BORDERS */
.menu {border-right:1px solid #f1b512;}	/* border colour to right of last horizontal item - change only the colour */ /* THIS WORKS */
.menu a, .menu a:visited {
border:1px solid #f1b512;		/* border colour for rest of horizontal items - change only the colour */ /* THIS WORKS */
border-width:0px 0px 0px 1px;	/* do not touch this line */ /* THIS WORKS */
}

/* DROPDOWNS */
.menu ul ul a, .menu ul ul a:visited {color:#000000; background:#f7e32a;}	/* text and background colours for all dropdown levels */ /* THIS WORKS */
.menu ul ul {border-top:0px solid #f1b512;}	/* colour of top border of all dropdowns */ /* THIS WORKS */

/* DROPDOWN BORDERS */
.menu ul ul a, .menu ul ul a:visited {border:1px solid #f1b512; border-width: 0px;}	/* left-bottom-right border of each submenu item */ /* THIS WORKS */

/* CHANGE WIDTH OF A MAIN MENU ITEM */
/* submenu inherits width so change this too below */
.menu ul li.home {width:70px !important;}
.menu ul li.home a {width:70px !important;}

.menu ul li.flinks {width:168px !important;}
.menu ul li.flinks a {width:167px !important;}

/* CHANGE WIDTH OF A SUBMENU */
.menu ul ul.projects li {width:220px !important;}
.menu ul ul.projects a {width:208px !important;}

.menu ul li.links ul li {width:148px !important;}
.menu ul li.links ul a {width:147px !important;}

.menu ul li.flinks ul li {width:200px !important;}
.menu ul li.flinks ul a {width:199px !important;}

/* HOVER COLOURS FOR ALL BROWSERS */
.menu a:hover {color:#000000; background:#999fc2; background-image:url(../images/furniture/silver4.gif); background-repeat; repeat-x;}		/* top level hover for IE6 and below */
.menu :hover > a {color:#000000; background:#999fc2; background-image:url(../images/furniture/silver4.gif); background-repeat; repeat-x;}	/* top level hover for all other browsers */
.menu ul ul a:hover {color:#ffffff; background:#999fc2;}		/* hover for all other levels for IE6 and below */
.menu ul ul :hover > a {color:#ffffff; background:#999fc2;}		/* hover for all other levels for all other browsers */