.navbar {
overflow: hidden;
background-color: #333;
list-style: none;
background-color: #eee;
font-family: verdana;
/* font-size: 100%;
padding: 0 0 0 10px; */
font-size: 90%;
padding: 2px 0 2px 10px;
margin: 0 5px 0 5px;
border: 0 solid rgba(219, 223, 223, 0.51);
}

.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 0 16px 0 16px;
  text-decoration: none;
  /** setting below to modal-status-engine model z access**/
	position: relative;
	z-index: 2;
	/**modal-status-engine**/
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  /* font-size: 12pt; */ 
   font-size: inherit;
  border: none;
  outline: none;
  color: black;
  padding: 0 16px 0 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  /** setting below to modal-status-engine model z access**/
	position: relative;
	z-index: 5;
	/**modal-status-engine **/
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #36bcab;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
  
  /** below is additional for hover drop down border
	border: 5px solid rgba(219, 223, 223, 0.51); **/
	border: 1px solid #d9d8d8;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 0 0 0 20px; /** 12px 16px; **/
	text-decoration: none;
	display: block;
	text-align: left;
	/*  font-size: 9pt; */
	line-height: 30px;
	font-size: 8pt;
	font-weight: bold;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}








/*** for sub items start ***/
#nav {
list-style:none inside;
margin:0;
padding:inherit;
text-align:center;
}
#nav li {
display:block;
position:relative;
float:left;
background: 24af15; /* #24af15; menu background color */
}
#nav li a {
display:block;
padding:0 0 0 20px;
text-decoration:none;
width:200px; /* this is the width of the menu items */
line-height:30px; /* this is the hieght of the menu items */
color: black;/* #ffffff;  list item font color */
}
#nav li li a {font-size:80%;} /* smaller font size for sub menu items */
#nav li:hover {background:#eeee;} /* highlights current hovered list item and the parent list items when hovering over sub menues */
#nav ul {
position:absolute;
padding:0;
top:0;
left:220px;
display:none; /* hides sublists */
background: #f9f9f9;

/** below is additional for hover drop down border
border: 5px solid rgba(219, 223, 223, 0.51); **/
border: 1px solid #d9d8d8;
}
#nav li:hover ul ul {display:none;} /* hides sub-sublists */
#nav li:hover ul {display:block;} /* shows sublist on hover */
#nav li li:hover ul {
display:block; /* shows sub-sublist on hover */
margin-left:200px; /* this should be the same width as the parent list item */
margin-top:-35px; /* aligns top of sub menu with top of list item */ 
/*** for sub items End ***/
