
@import "font-awesome.css";

/* 01 - General
----------------------------------------------------------------------*/
.orion-menu{
	width: 100%;
	padding: 0;
	margin:0;
	position: relative;
	float: left;
	background: ;
	list-style: none;
	z-index: 999;
	font-family: 'EncodeSansNarrow-300-Light', helvetica;

}
.orion-menu li {
	display: inline-block;
	font-size: 18px;
	margin: 0;
	padding: 0;
	float: left;
	line-height: 60px;
	position: relative;
}
.orion-menu li a {
	padding: 0px 12px 0px 12px;
	color: #333;
	text-decoration: none;
	display: inline-block;
	-o-transition: color .3s linear, background .3s linear;
	-webkit-transition: color .3s linear, background .3s linear;
	-moz-transition: color .3s linear, background .3s linear;
	transition: color .3s linear, background .3s linear;
}


.orion-menu li:hover > a{
	color: #fff;
	background-color:#005500;
}




.orion-menu li.active > a{
	background: ;
}


/* 02 - Drop down
----------------------------------------------------------------------*/
.orion-menu ul, 
.orion-menu ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;    
	display: none;
	text-align:left;
    position: absolute;
    z-index: 999;
	width:220px;
	background: #FFF;
}
.orion-menu ul{
    top: 60px;
    left: 0;
}


.orion-menu ul li ul{
    top: 0;
    left: 150px;
}
.orion-menu ul li{
	clear:both;
	width:100%;
	font-size:16px;
}
.orion-menu ul li a {
	width:100%;
	padding:0px 13px;
	line-height:40px;
	display:inline-block;
	float:left;
	clear:both;
	color:#333;
	box-sizing:border-box;
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
}
.orion-menu ul li:hover > a{
	background: #990000;
	color:#FFF;
	z-index: 999;
}

/* 03 - Drop down arrows
----------------------------------------------------------------------*/
.orion-menu .indicator{
	color: #ff0000;
	position: absolute;
	visibility: hidden;
	right: 8px;
	top: 0px;
	font-family: 'FontAwesome';
	font-size: 12px;
}
.orion-menu .indicator:before{
	content: "\f0d7";
}
.orion-menu ul li .indicator{
	right: 20px;
	top: 13px;
}
.orion-menu ul li .indicator:before{
	content: "\f0da";
}





/* 06 - Collapsible bar
----------------------------------------------------------------------*/
.orion-menu > li.showhide{
	display: none;
	width: 100%;
	height: 50px;
	cursor: pointer;
	background:#fff;
}
.orion-menu > li.showhide span.title{
	margin: -3px 0 0px 10px;
	float: left;
}
.orion-menu> li.showhide span.icon{
	margin: 17px 15px 7px 10px;
	float: right;
}
.orion-menu > li.showhide .icon em{
	margin-bottom: 3px;
	display: block;
	width: 20px;
	height: 2px;
	background: #000;
}

/* blue */
.blue ul li ul, .blue > li.showhide{ background: }
.blue li ul {
background:#FFF;
color:#000;
z-index: 999;
}

.blue {
	background-color:;
	z-index: 999;
}


/* 09 - Responsive behavior
----------------------------------------------------------------------*/
@media only screen and (max-width: 1210px) {
	
	.orion-menu{
		margin: 0;
		display: block;
		background:#ccc;
	}
	
	.orion-menu li{
		display: block;
		width: 100%;
	}
	
	.orion-menu > li > a{
		padding: 1px 70px 1px 40px;
		text-align: left;
		color:#000;
		border-top: solid 1px rgba(255, 255, 255, 0.05);
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box;
		background:#ccc;
	}
	
	.orion-menu a{
		width: 100%;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
	}
	
	.orion-menu ul, 
	.orion-menu ul li ul{
		width: 100%;
		left: 0;
		padding: 0 10px;
		position: static;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
	}
	
	.orion-menu .indicator{
		right: 40px;
		top: 8px;
	}
	
	.orion-menu ul li .indicator{
		display: block;
	}
	
	.orion-menu ul li .indicator:before{
		content: "\f0d7";
	}

	.orion-menu > li.showhide{
		display: block;
	}
}

