/*
Copyright 2022 apjsystems.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/* 
    Created on : 26 Jan, 2022, 1:19:14 PM
    Author     : apjsystems
*/

/*HTML CSS JSResult Skip Results Iframe
EDIT ON*/
nav {
    position: relative;
    margin: 0px;
    width: 100%;
    background:black ;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
  /* Sub Menu */
}
nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;

    text-decoration: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
nav ul li a:hover {
	background: #1d4f71;
	color: #fff;
        text-decoration: none;
}
nav ul li  .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;
}
nav ul ul {
	background: rgba(0, 0, 0, 0.2);
}
nav ul li ul li a {
	
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
nav ul li ul li a:hover {

	border-left: 4px solid #3498db;
}