/*The CSS to hide the sub menus.*/
li ul {
	display: none;
	}

ul li a {
  font: 300 15px/19px "Open Sans", Arial, sans-serif;
  display: block;
  color: #555;
  padding: 10px 10px;
  transition: all 0.3s;
  background-color: #fff;
  text-decoration: none;
}

ul li a:hover {
	background: #A7C752;
	text-decoration: none;
	}

/*Displays the dropdown menu on hover.*/
li:hover > ul {
  display: block;
  position: absolute;
}

/*Simple clearfix.*/
ul:before,
ul:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

ul:after {
	clear: both;
}


.main-navigation li ul li {
	border-top: 0; 
	}
	
.main-navigation{
	position: absolute;
	padding: 0em 0em;
	background: rgba(255, 255, 255, 0.95);
	text-align: left;
	min-width: 170px;
	right: 0;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}



	
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    display: block;
	right: 0;
	width: 100px;
	cursor: pointer;
	height: 100px;
	transition: all 0.3s;
	top:2em;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	right: 0;
	transition: all 0.3s;
	
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
	max-height: 1000px;
	overflow: visible;
	opacity: 1;
	z-index: 50;
    margin-top: -2.1em;
    right: 2.5em;
	transition: all 0.3s;
}




.menubtn{
    width: 7em;
}

.menufrm{
	top: 8em;
    background: #edededed;
    right: 2em;
    border: 1px solid #b9b9b9;
    width: 20em;
    position: absolute;
	height: fit-content;
	padding:0em !important;
}

.menuul{
	padding: 0em !important;
	margin:0em !important;
}

.menuli{
	padding: 0.5em 0em 0.5em 0.5em;
    list-style-type: none;
	cursor:pointer;
}

.menuli:hover{
	background:#89c541;
}

.menulinks{
    text-decoration: none;
    font-size: 1.3em;
}