
#cssmenu2 {
	color: #C7C6C6;
	font-size: 26px;
	font-family: 'Quattrocento', serif;
 	background-color:#f1f1f3;
  	border-radius: 0 0 0 0;
	-moz-border-radius: 0 0 0 0;
	-webkit-border-radius: 0 0 0 0;
	border-bottom: 4px solid #C7C6C6;
	padding-left: 0px;
}
#cssmenu2 > ul {
	font-size:26px;
font-family: 'Quattrocento', serif;
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1;
  
}
/* The container */
#cssmenu2 > ul {
	font-size:26px;
font-family: 'Quattrocento', serif;
  display: block;
  position: relative;
  width: 100%;
  /* The list elements which contain the links */

}
#cssmenu > ul > li.active > a {
	font-size:26px;
font-family: 'Quattrocento', serif;
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  background: #606262;
  background: -moz-linear-gradient(top, #606262 0%, #606262 ef 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #606262), color-stop(100%, #606262 ef));
  background: -webkit-linear-gradient(top, #606262 0%, #606262 ef 100%);
  background: -o-linear-gradient(top, #606262 0%, #606262 ef 100%);
  background: -ms-linear-gradient(top, #606262 0%, #606262 ef 100%);
  background: linear-gradient(top, #606262 0%, #606262 ef 100%);
  padding-left:25px;
  padding-right:25px;
}
#cssmenu2 > ul li {
	font-size:26px;
font-family: 'Quattrocento', serif;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  
}
/* General link styling */
#cssmenu2 > ul li a {
  /* Layout */

  display: block;
  position: relative;
  margin: 0;
  border-bottom: 1px solid #C7C6C6;
  padding: 11px 20px;
  font-size:18px;
  font-family: 'Quattrocento', serif;
  color: #FFF;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: normal;
  /* Background & effects */
}
/* Rounded corners for the first link of the menu/submenus */
#cssmenu2 > ul li:first-child > a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top: 0;
}
/* Rounded corners for the last link of the menu/submenus */
#cssmenu2 > ul li:last-child > a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 0;
}
/* The hover state of the menu/submenu links */
#cssmenu2 > ul li > a:hover,
#cssmenu2 > ul li:hover > a {
	transition:all 1s;
  color: #000;
  
  
  border-color: #C7C6C6;
}
/* The arrow indicating a submenu */
#cssmenu2 > ul .has-sub > a::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 10px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #d8d8d8;
}
/* The same arrow, but with a darker color, to create the shadow effect */
#cssmenu2 > ul .has-sub > a::before {
  content: '';
  position: absolute;
  top: 17px;
  right: 10px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #000;
}
/* Changing the color of the arrow on hover */
#cssmenu2 > ul li > a:hover::after,
#cssmenu2 > ul li:hover > a::after {
  border-left: 4px solid #ffffff;
}
#cssmenu2 > ul li > a:hover::before,
#cssmenu2 > ul li:hover > a::before {
  border-left: 4px solid rgba(0, 0, 0, 0.3);
}
/* THE SUBMENUS */
#cssmenu2 > ul ul {
  position: absolute;
  left: 100%;
  top: -9999px;
  padding-left: 0px;
  opacity: 0;
  width: 140px;
  /* The fade effect, created using an opacity transition */

  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
/* Showing the submenu when the user is hovering the parent link */
#cssmenu2 > ul li:hover > ul {
  top: 0px;
  opacity: 1;
}

	