#navMenu {
  margin: 0;
  width: auto;
}

#navMenu ul {
  margin: 0;
  padding: 0;
  line-height: 30px;
}

#navMenu li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  position: relative;
  background: #999;
}

#navMenu ul li a {
  text-align: center;
  height: 30px;
  width: 150px;
  display: block;
  color: #000;
  font-family: actor;
  text-decoration: none;
  color: #FFF;
  border: 1px solid #FFF;
  text-shadow: 1px 1px 1px #000;
  font-style: normal;
  font-weight: 400;
}

/*********************************************/
/* Hide menu and allow it to return */
/*********************************************/

#navMenu ul ul {
  position: absolute;
  top: 32px;
  left: 0;
  display: none; /* Keep hidden initially */
  opacity: 0; /* Make it fully transparent */
  visibility: hidden; /* Prevent interaction when hidden */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

#navMenu ul li:hover > ul {
  display: block; /* Ensure the dropdown is shown */
  opacity: 1; /* Make it fully opaque */
  visibility: visible; /* Make it interactable */
  z-index: 9999; /* Ensure it's on top */
}

/**********************************************/
/* Sets top-level hover color */
#navMenu li:hover {
  background: #09F;
}

/* Sets link items hover color and background */
#navMenu ul li:hover ul li a:hover {
  color: #000;
  background: #CCC;
}

/* Changes text color on hover for main menu hover */
#navMenu a:hover {
  color: #000;
}

/* Contains the Float */
.clearFloat {
  clear: both;
  margin: 0;
  padding: 0;
}

/* IE7 Display Fix */
#navMenu ul li {
  display: inline;
}

img:hover {
  cursor: grab;
}
