#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  margin: 0;
  padding: 0;
  position: relative;
}
/*This is Menu Alignment*/
#cssmenu {
  height: 59px;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  background: #333;
  background: -moz-linear-gradient(top, #999 0%, #333 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999), color-stop(100%, #333));
 
  background: -o-linear-gradient(top, #999 0%, #333 100%);
  background: -ms-linear-gradient(top, #999 0%, #333 100%);
  background: linear-gradient(to bottom, #999 0%, #333 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#999', EndColorStr='#333', GradientType=0);
  width:100%;
 
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
/*This is Menu Background Setting & formatting*/
#cssmenu a {
  background: #333;
  background: -moz-linear-gradient(top, #999 0%, #333 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999), color-stop(100%, #333));
 
  background: -o-linear-gradient(top, #999 0%, #333 100%);
  background: -ms-linear-gradient(top, #999 0%, #333 100%);
  background: linear-gradient(to bottom, #999 0%, #333 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#999', EndColorStr='#333', GradientType=0);
  color: #fff;
  display: inline-block;
  font-family: sans-serif;
  font-size: 23px;
  line-height: 59px;
  padding: 0 25px;
  text-decoration: none;
  font: bold;
}
#cssmenu ul {
  list-style: none;
   width:100%;
}
#cssmenu > ul {
  float: left;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu > ul > li:hover:after {
  
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  margin-left: -10px;
}
#cssmenu > ul > li:first-child > a {
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
}
#cssmenu > ul > li:last-child > a {
  border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
}

/*This is the menu Background while mouse over*/
#cssmenu > ul > li:hover > a {
  background: #fff;
  background: -moz-linear-gradient(top, #999 0%, #232323 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, #232323));
  background: -webkit-linear-gradient(top, #232323 100%);
  background: -o-linear-gradient(top, #232323 100%);
  background: -ms-linear-gradient(top, #232323 100%);
  background: linear-gradient(to bottom, #232323 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#232323');
  box-shadow: inset 0 0 3px #232323;
  -moz-box-shadow: inset 0 0 3px #232323;
  -webkit-box-shadow: inset 0 0 3px #232323;
  color:#232323;
   font-weight:normal;
}
#cssmenu .has-sub {
  z-index: 1000;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}

/*This is dropdown background color & Alignment*/
#cssmenu .has-sub ul li a {
  background: #333;
  filter: none;
  font-size: 12px;
  display: block;
  line-height: 120%;
  padding: 10px;
  font-weight:normal;
  font-family: sans-serif;
}
 #cssmenu ul li.has-sub:hover > a {
     background:#232323;color:#fff;/*This is mouseover dropdown color*/
   font-weight:normal;
      } 

#cssmenu ul li.has-sub > a:hover {
    background:#232323; color:#fff;/*This is mouseover menu color*/
   font-weight:normal;
} 

 

#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}


