@charset "utf-8";

.mainMenuNavBar {
	position: absolute1;
	float:left;  
	height:50px;  
	margin-top:75px; 
	margin-left: 100px;
	font-size:14px;
}
.mainMenuNav {	
	height: 30px;
	width:auto;
	line-height:30px;
	position: relative;
	list-style: none;
}

.menuItem {
	width:auto;
	float: left;	
}

.menuItem a {
	color:  green;
	text-decoration: none;
	font-weight: normal;
	font-size:16px;	 	
}

.menuItem a:hover {
	background-color: white;
	text-decoration: none; 
	font-weight: bold;
	color: #FF9900;
	/* fadeEffect01 is in lpace.css --> */
	-webkit-animation: fadeEffect 1s; 
	-moz-animation: fadeEffect 1s;
	-o-animation: fadeEffect 1s;
	animation: fadeEffect 1s;		 		
}

@keyframes fadeEffect {
  from {opacity: 0} 
  to {opacity: 1}
}
@-o-keyframes fadeEffect {
  from {opacity: 0} 
  to {opacity: 1}
}
@-moz-keyframes fadeEffect {
  from {opacity: 0} 
  to {opacity: 1}
}
@-webkit-keyframes fadeEffect {
  from {opacity: 0} 
  to {opacity: 1}
}

.dropMenu {
    display: none;
	font-weight: normal;
    position: absolute;
    background-color:white;
	box-shadow: 5px 5px 20px black ;
    z-index: 1; 
}

.dropMenuItem {
	list-style: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: grey;		
	min-width: 300px;	
}

.dropMenuItem a {
    float: none;
    color: green;
    padding: 5px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
	font-weight: normal; 
}

.dropMenuItem a:hover {

}

.dspl_dropMenu:hover .dropMenu {
	/* enables display of dropdown on menuItem hover */
    display: block;
}

.eventsSel:hover .dropMenu {
	/* enables display of dropdown on menuItem hover */
    display: block;
}

.aboutUsSel:hover .dropMenu {
	/* enables display of dropdown on menuItem hover */
    display: block;
}


@media only screen and (max-width: 767px)
#social {
display:none;
}


.fixed-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 50px;
  background-color: #00a087;
}
