#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  margin: 0; /* da el posición de arriba del menú*/
  padding: 0; /* da el espacio en la posición del menú y los submenús hacia abajo*/
  position: relative;

}
#cssmenu {
   /*line-height: 1;
  border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 0px 0px 0 0;
  background: #008e09;
  background: -moz-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #008e09), color-stop(100%, #008e09));
  background: -webkit-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -o-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -ms-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: linear-gradient(to bottom, #008e09 0%, #008e09 100%);
  border-bottom: 2px solid #9ed22f; linea abajo del menú, se puede usar con otro color para que resalte*/
  width: auto;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
 /* background: #008e09;
  background: -moz-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #008e09), color-stop(100%, #008e09));
  background: -webkit-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -o-linear-gradient(top, #008e09 0%, #008e09 100%);
  background: -ms-linear-gradient(top, #v 0%, #008e09 100%);
  background: linear-gradient(to bottom, #008e09 0%, #008e09 100%);*/
  color: #ffffff;
  display: block;
  font-family: Arial, Verdana, sans-serif;
  padding: 10px 10px; /* Coloca el menu con un borde arriba y abajo*/
  text-decoration: none;
}
#cssmenu ul {
  list-style: none;
}
#cssmenu > ul > li {
  display: inline-block;
  float: left;
  margin: 0;
}
#cssmenu.align-center {
  text-align: center;
}
#cssmenu.align-center > ul > li {
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  color: #ffffff;
  font-size: 12px;
  /* width: 98px; Espacio entre cada opción del menú*/
  text-align: center; /* Coloca las opciones en el centro de cada espacio */
}
#cssmenu > ul > li:hover:after { /* Coloca la flecha en la opción seleccionada */
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #003366; /*82be00Coloca el color de la flecha*/
  margin-left: -8px;
}
#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.align-right > ul > li:first-child > a,
#cssmenu.align-center > ul > li:first-child > a {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
#cssmenu.align-right > 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;
}
#cssmenu > ul > li.active > a,F
#cssmenu > ul > li:hover > a {
  color: #fff;
  box-shadow: inset 0 0 3px #5f5f5f; /* Sombra de todo el submenú */
  -moz-box-shadow: inset 0 0 3px #5f5f5f;
  -webkit-box-shadow: inset 0 0 3px #5f5f5f;
  background: #5f5f5f;
  background: -moz-linear-gradient(top, #5f5f5f 0%, #5f5f5f 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5f5f5f), color-stop(100%, #5f5f5f));
  background: -webkit-linear-gradient(top, #5f5f5f 0%, #5f5f5f 100%);
  background: -o-linear-gradient(top, #5f5f5f 0%, #5f5f5f 100%);
  background: -ms-linear-gradient(top, #5f5f5f 0%, #5f5f5f 100%);
  background: linear-gradient(to bottom, #5f5f5f 0%, #5f5f5f 100%);
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  display: none;
  position: absolute;
  width: 230px; /* Tamaño del background del sub sub menú*/
  top: 100%;
  left: 0;
}
#cssmenu.align-right .has-sub ul {
  left: auto;
  right: 0;
}
#cssmenu .has-sub ul li {
  *margin-bottom: -1px;
}
#cssmenu .has-sub ul li a {
  background: #003466; /*82be00 color de fondo del submenú */
  border-bottom: 1px solid #ffffff; /* Línea solida que divide las subsecciones */
  font-size: 11px;
  filter: none;
  display: block;
  line-height: 120%;
  padding: 10px;
  color: #ffffff; /* color de la letra del submenú en rollover*/
}
#cssmenu .has-sub ul li:hover a {
  background: #d9d9d9; /* Background del roll over del sub menú */
}
#cssmenu ul ul li:hover > a {
  color: #424242; /* Color de letra del sub menú */
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
#cssmenu.align-right .has-sub .has-sub ul,
#cssmenu.align-right ul ul ul {
  left: auto;
  right: 100%;
}
#cssmenu .has-sub .has-sub ul li a { 
  background: #003366; /* 02add1Background de el sub sub menu*/
  border-bottom: 1px dotted #ffffff; /* Línea punteada que divide el sub sub menú */
  color: #fff; /* Color de lera del sub sub menú */
}
#cssmenu .has-sub .has-sub ul li a:hover { 
  background: #d9d9d9;/* Background del roll over del sub sub menú */
 color: #414141; /* Color de letra del roll over del sub sub menú */
}
#cssmenu ul ul li.last > a,
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul ul li.last > a,
#cssmenu ul ul ul li:last-child > a,
#cssmenu .has-sub ul li:last-child > a,
#cssmenu .has-sub ul li.last > a {
  border-bottom: 0;
}
