/* MAIN NAVIGATION STYLES */
.space{
	height:85px;
	background:#000000;
}
.jqueryslidemenu{
  width: 95%;
  padding: 0px 0px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight:600;
  text-transform:uppercase;
  z-index:101;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.jqueryslidemenu ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex: 1;
}
.jqueryslidemenu ul li{
	position: relative;
	float: left;
	display:inline;
	margin:0px 0px 0px 0px;
	z-index:12;
}
.jqueryslidemenu ul li.logo a {
	height:50px;
  padding: 16px 0;
}
.jqueryslidemenu ul li.logo a img{
	height:50px;
}
.jqueryslidemenu ul li a{
    color: #FFFFFF;
    font-size: 14px;
    padding: 26px 10px;
    text-decoration: none;
    display: block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.jqueryslidemenu ul li a:hover{
	color:#ffae00;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.jqueryslidemenu ul li:hover a{
	color:#ffae00;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.jqueryslidemenu ul li.active a{
	color:#ffae00;
}
.jqueryslidemenu ul li.active a:hover{
	color:#FFFFFF;
}
	
/* FIRST DROP-DOWN LAYER */
.jqueryslidemenu ul li ul{
	/* REMOVE STLYES FROM TOP LEVEL */
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	/* REMOVE STLYES FROM TOP LEVEL */
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	width:auto;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	list-style:none;
	border:1px solid #BEBEBE;
	border-top:none;
	width: 265px; /* WIDTH OF SUB MENU */
}
.jqueryslidemenu ul li ul li{
	/* REMOVE STLYES FROM TOP LEVEL */
	display: list-item;
	float: none;
	border:none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	/* REMOVE STLYES FROM TOP LEVEL */
	border-top:1px solid #BEBEBE;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	background: #F0F0F0;
	/* USE FOR GRADIENT */
	background: -moz-linear-gradient(top,  #f0f0f0 0%, #dcdcdc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#dcdcdc));
	background: -webkit-linear-gradient(top,  #f0f0f0 0%,#dcdcdc 100%);
	background: -o-linear-gradient(top,  #f0f0f0 0%,#dcdcdc 100%);
	background: -ms-linear-gradient(top,  #f0f0f0 0%,#dcdcdc 100%);
	background: linear-gradient(to bottom,  #f0f0f0 0%,#dcdcdc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dcdcdc',GradientType=0 );
	/* USE FOR GRADIENT */
}
.jqueryslidemenu ul li ul li a{
	color: #333333;
	line-height:20px;
	padding:15px 15px 15px 15px;
	margin:0px;
	background:none;
}
.jqueryslidemenu ul li:hover ul li a{
	color: #333333;
	line-height:20px;
	padding:15px 15px 15px 15px;
	margin:0px;
	background:none;
}
.jqueryslidemenu ul li ul li a:hover{
	color:#DF0000;
	text-decoration:none;
	background:#F6F6F6;
}
.jqueryslidemenu ul li.active ul li a:link, .jqueryslidemenu ul li.active ul li a:visited{
	color: #333333;
	background:none;
}
.jqueryslidemenu ul li.active ul li a:hover{
	color: #DF0000;
	background:#F6F6F6;
}

/* SUB DROP-DOWN LAYERS AFTER 1ST */
.jqueryslidemenu ul li ul li ul{
	top: 0;
	margin:-1px 0px 0px 2px;
}
.jqueryslidemenu ul li ul li ul li a{
	line-height:20px;
}

/* DOWN AND RIGHT ARROWS IN NAV (DEFAULT OFF) */
.downarrowclass{
	display:none; /* THIS HIDES THE ARROW */
	position: absolute;
	top: 8px;
	right: 7px;
}
.rightarrowclass{
	display:none; /* THIS HIDES THE ARROW */
	position: absolute;
	top: 9px;
	right: 5px;
}