/*TOP HEADER*/
.top-header{
	background-color:#3e3e3e;
	height:38px;
	line-height: 38px;
	color: #bbb8a7;
	font-size: 12px;
}
.top-header .fa{
	color:#439ded;
	font-size: 14px;
	margin-right: 3px;
}
.top-header ul li:first-child{
	margin-right:15px;
	border-right:1px solid #757575;
	padding-right:15px;
}

/*HEADER*/
.header {
	z-index: 99;
	position: relative;
}
.header .navbar {
	margin: 0;
}

.header .navbar-header {
	margin: 17px 0 11px 0;
}
.header .navbar-header #logoTop{
	width:45%;
}


/*NAV*/
/* first level menu items */
.header .navbar-default {
	border: none;
	background: #ffffff;
    border-radius: 0;
}
@media (min-width: 992px) {
	.header .navbar-default .navbar-nav {
		margin-top: -10px;
	}
}

.header .navbar-default .navbar-nav > li{
	margin-right: 5px;
}
.header .navbar-default .navbar-nav > li > a {
	color: #353535;
	font-size: 15px;
	font-weight: 600;
	padding: 15px 30px 17px 20px;
	position: relative;
	z-index: 102;
	bottom: -2px;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
	letter-spacing: 1px;
}

@media (min-width: 992px) {	
	.header .navbar-collapse {
		padding: 25px 0 0;
	}
	.header .navbar {
		min-height: 40px !important;
	}
	.header .navbar-nav {
		top: 2px;
		position: relative;
	}
	.header .navbar-default .navbar-nav > li {
		margin-left: 1px;
	}
	.header .navbar-default .navbar-nav > li > a {
		background: none;
		color:#353535;
	}
	.header .navbar-nav > li.dropdown:hover > .dropdown-menu {
		display: block;
	}	
}

/* first level active menu items on hover/focus */
.header .navbar-default .navbar-nav > li:hover,
.header .navbar-default .navbar-nav > li:active{
	background:#fafafa;
}

.navbar-default .navbar-nav>.open>a, 
.navbar-default .navbar-nav>.open>a:focus, 
.navbar-default .navbar-nav>.open>a:hover{
	background:#fafafa;
}
.header .dropdown > a:after {
	position: absolute;
    top: 16px;
    right: 15px;
    content: "\f107";
	display: inline-block;
    font-family: FontAwesome;
}

@media (max-width: 991px) {
  	.header .dropdown-submenu > a:after {
      	content: " ";
  	}
}



/* second level menu */
.header .dropdown-menu {
	position: absolute;
	top: 51px;
	left:0;
	padding: 0;
	margin: 0;
	min-width: 160px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: solid 1px #f1f1f1;
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f1f1;
	z-index: 1000;
}


/* second level menu items */
.header .dropdown-menu > li > a {
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 400; 
	color: #666666;
	background-color: #fafafa;
	border-bottom: 1px solid #f1f1f1;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
	letter-spacing: 1px;
}

/* second level menu items on focus/hover and when opened */
.header .dropdown-menu > li > a:hover,
.header .dropdown-menu > li > a:focus,
.header .dropdown-menu > .active > a,
.header .dropdown-menu > .active > a:hover,
.header .dropdown-menu > .active > a:focus,
.header .dropdown-menu .menu > .active > a,
.header .dropdown-menu .menu > .active > a:hover,
.header .dropdown-menu .menu > .active > a:focus {
	background-color: #ffffff;
	color: #66aff1;
}


