<!-- 
/* This code is copyright © 2010-2012 Michael Cutter and may not be reused or distributed in any form without written permission.
   Contact mtc@mcutter.com 
   
*/

/* menu css */
 #menubar {float:left; height:23px;}
 #menu {
 	list-style:none;
    width: 432px;
    height: 23px;
    background: url('images/menubar.jpg') no-repeat;
    margin: 0 0; padding: 0 0;
    position: relative;
    z-index:5;
    }
  #menu li {
    margin: 0; padding: 0; list-style: none;
    position: absolute; top: 0;}
  #menu li, #menu a {
    height: 23px; display: block;}
  
  #mhome {left: 0; width: 76px;}
  #mproducts {left: 76px; width: 79px;}
  #mmsds {left: 155px; width: 65px;}
  #mtrade {left: 220px; width: 103px;}
  #mcontact {left:323px; width: 109px;}
  
  /* the rollover */
   #mhome a:hover {
    background: transparent url(images/menubar.jpg)
    0 -23px no-repeat;}
  #mproducts a:hover {
    background: transparent url(images/menubar.jpg)
    -76px -23px no-repeat;}
  #mmsds a:hover {
    background: transparent url(images/menubar.jpg)
    -155px -23px no-repeat;}
  #mtrade a:hover {
    background: transparent url(images/menubar.jpg)
    -220px -23px no-repeat;}
  #mcontact a:hover {
    background: transparent url(images/menubar.jpg)
    -323px -23px no-repeat;}


/* drop down menu */
#menu ul {
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	margin-top:-1px;
}

#menu ul li{
	float:left;
	margin-right:10px;
	padding-left:5px;
	position:relative;
	width:110px;
}
#menu ul li a{
	height:25px;
	display:block;
	padding:5px;
	padding-left:10px;
	color:#fff;
	background:#322b15;
	text-decoration:none;
	font-weight: normal!important;
	font-size:11px;
	font-family:'Avenir LT W01 85 Heavy';
}
#menu ul li a:hover{
	color:#00a147;
	background:#322b15;
	text-decoration:underline;

}
#menu ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#menu ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#menu li:hover ul{ /* Display the dropdown on hover */
	left:-7px; /* Bring back on-screen when needed */
}

#menu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#menu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	color:#00a147;
	background:#322b15;
}

-->