/* define a fixed width for the entire menu */
.navigation {
  width: auto;
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
font-size: small;
}

.mainmenu a {
  display: block;
  background-color: transparent !important;
  text-decoration: none;
  padding: 10px;
  color: #000;
  border-top: 1px solid #E1E1E1;
  text-transform: uppercase;
}

.mainmenu li:last-child
{
 border-bottom: 1px solid #E1E1E1;
}

/* add hover behaviour */
.mainmenu a:hover {
    background-color: #DFEFEC !important;
}


/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

/*.mainmenu li:hover .submenu {
  display: block;
  max-height: 200px;
}*/

/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
  background-color: #e9e9e9 !important;
  text-transform: none;
padding-left: 50px !important;
}

/* hover behaviour for links inside .submenu */
.submenu a:hover {
  background-color: #e9e9e9 !important;
  color: #00A88E;
}

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
.submenu {

  overflow: hidden;
  max-height: 0px;
  -webkit-transition: all 0.5s ease-out;
}

.side-menu-icon
{
	color: #CACACA;
	float: right;
	padding-top: 5px;
	padding-right: 10px;
}


.expandIcon { cursor: pointer;  width: 0; height: 0; float: right; }
a.expandIcon:hover { background: none !important; }
[id^="expandMinusIcon_"] {  margin-right: -20px; }:w
