.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
#menu {	
	height: 33px;  width:960px;
	background: #e21c2a;
	border-radius:5px 5px 0px 0px;
	float:left;
		
}
.f-nav{ z-index: 9999; position: fixed; top: 0; width:100%; background-color:#F6EEE3; } /* this make our menu float top */

 #menu ul {
 	text-align: center;
     margin: 0;
     padding: 0;
     margin: 10px 0;
	 position: relative;
}
#menu ul li {
      display: inline-block;
      list-style: none;
	  position: relative;
	  border-right:1px solid #fff;
}
.pipes {
	background-image: url(../images/pipe_bg.png);
	background-repeat: no-repeat;
	background-position: right;	
}
#menu ul li a {
	font-family: 'Roboto', sans-serif;
	font-size:12px;
	color: #fff;
	text-decoration: none;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 9px;
	padding-bottom: 9px;
}

#menu li:first-child a { border-left: none; }
#menu li:last-child a{ border-right: none; }

#menu li:hover > a { color: #BDD2E6;}
#menu li.current > a { color: #8fde62; background-image: url(../images/arrow_icon.png); background-repeat: no-repeat; background-position: center bottom;}

#menu  li ul {
    position: absolute;
    left: -999em;
    /*margin: 10px 0px 0px 0px;*/
    padding: 0; 
	z-index:100;
	float:none;
	 border-right:none;
}

#menu  li:hover ul 
{
    left: auto;
	float:none;
	border-right:none;	 
}
#menu  li li a {
    background-color:#E21C2A;
	float:none;
    color: #fff;
    display: block;		
	font: 12px 'Armata', sans-serif;
   	padding: 7px 13px;
    text-decoration: none;
	border-bottom: solid 1px #fff;
		
	text-align:left;
	border-radius: 0 0 5px 5px;
	width:137px;
	background-image: none;	
}
#menu li li a:hover {
    background: #9D080C;
    color: #fff; 
    padding: 7px 13px;
    text-decoration: none;
	border-radius: 0 0 5px 5px;
	border-right:none;
	background-image:none;
}
#menu li li.current > a { background-image:none;}