/* # Logobar

-------------------------------------------------------------- */

.logo-bar {

	background-color: rgba(255, 255, 255, 1);

	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	padding: 0 15px;

	position: relative;

	z-index: 1000;

}

.navbar-header {

	position: relative;

	z-index: 10;

}

.logo {

	display: inline-block;

	float: left;

	margin-right: 50px;

	margin-top: 10px;

	margin-bottom: 10px;

}



/* # Navbar / Main menu

-------------------------------------------------------------- */

.main-nav:before,

.main-nav:after {

	content: '';

	display: table;

}

.main-nav:after {

	clear: both;

}

.main-nav {

	position: relative;

}

.main-nav .menu {

	margin: 0;

	padding: 0;

	list-style: none;

	float: left;

}

.main-nav .menu li {

	display: block;

	position: relative;

}

.main-nav > .menu > li {

	float: left;

}

.main-nav .menu li a {

	color: #424242;

	display: block;

	font-size: 16px;

	font-weight: 300;

	padding-left: 25px;

	padding-right: 25px;

	-webkit-transition: color 0.2s ease 0s, background-color 0.2s ease 0s;

	-moz-transition: color 0.2s ease 0s, background-color 0.2s ease 0s;

	-ms-transition: color 0.2s ease 0s, background-color 0.2s ease 0s;

	-o-transition: color 0.2s ease 0s, background-color 0.2s ease 0s;

	transition: color 0.2s ease 0s, background-color 0.2s ease 0s;

}

.main-nav > .menu > li > a {

	padding-top: 38px;

	padding-bottom: 38px;

}

.main-nav .menu li:hover > a {

	color:#009ff9;

}



/* ## DROPDOWN / SUBMENU */

.main-nav .menu ul {

	background-color: #ffffff;

	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	list-style: none;

	padding-left: 0;

	margin-bottom: 0;

	position: absolute;

	left: 100%;

	top: 0;

	width: 230px;

	opacity: 0;

	visibility: hidden;

	-webkit-transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s;

	-moz-transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s;

	-ms-transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s;

	-o-transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s;

	transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s;

}

.main-nav > .menu > li > ul {

	border-top: 3px solid #009ff9;

	left: 0;

	top: 100%;

}

.main-nav .menu li:hover > ul {

	opacity: 1;

	visibility: visible;

}

.main-nav .menu ul li + li {

	border-top: 1px solid rgba(0, 0, 0, 0.1);

}

.main-nav .menu ul li a {

	background-color: #ffffff;

	font-size: 14px;

	font-weight: 300;

	padding: 13px 20px;

	position: relative;

}

.navbar-toggle {

	background-color: rgba(0, 0, 0, 0);

	border: 1px solid #009ff9;

	margin: 0;

	padding: 7px 5px;

}

.navbar-toggle .icon-bar {

	background-color: #009ff9;

	height: 1px;

	width: 25px;

	margin: 0;

}

.navbar-collapse {

	border: none;

	padding: 0;

	-webkit-box-shadow: none;

	-moz-box-shadow: none;

	box-shadow: none;

}

.navbar-collapse {

	padding-left: 0;

	padding-right: 0;

}



/*User Area*/

.menu-right {

	list-style: none;

	float: right;

	padding: 28px 0;

	margin-bottom: 0;

}

.menu-right > li {

	float: right;

}

.menu-right > li + li {

	margin-right: 10px;

}

.upload-button {

	padding: 10px 20px;

	font-weight: 600;

}



/*User Controls*/

.user-controls {}

.user-button .btn {

	padding: 13px 10px;

	line-height: 1;

	position: relative;

}

.welcome-btn {

	position: relative;

	vertical-align: middle;

}

.welcome-btn .btn {

	background-color: #ffffff;

	border-color: #e9e9e9;

	color: #424242;

	padding: 5px 25px 5px 10px;

	text-align: left;

	line-height: 1;

	position: relative;

}

.welcome-btn .btn:after {

	content: '';

	height: 0;

	width: 0;

	border-left: 5px solid transparent;

	border-right: 5px solid transparent;

	border-top: 5px solid #424242;

	position: absolute;

	right: 10px;

	bottom: 10px;

}

.welcome-btn .user-img {

	width: 30px;

	height: 30px;

	float: left;

	margin-right: 10px;

}

.welcome-btn img {

	border-radius: 50%;

}

.welcome-btn p {

	margin-bottom: 0;

	font-size: 13px;

	margin-top: 2px;

	margin-left: 40px;

}

.welcome-btn span {

	font-size: 11px;

}

/* Welcome btn Dropdown */

.welcome-btn .dropdown-menu {

	border-top: 3px solid #009ff9;

	border-radius: 0;

	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	box-shadow: 0 2px 3px rgba(0,0,0,0.1);

	margin-top: 28px;

	width: 180px;

}

.welcome-btn .dropdown-menu li + li {

	border-top: 1px solid rgba(0,0,0,0.1);

}

.welcome-btn .dropdown-menu li a {

	background-color: #ffffff;

	color: #424242;

	font-size: 14px;

	font-weight: 300;

	padding: 12px 25px;

}

.welcome-btn .dropdown-menu li a:hover {

	color: #009ff9;

}

.welcome-btn .dropdown-menu li i {

	margin-right: 10px;

}



@media (max-width: 1199px) {

	.main-nav .menu li a {

		padding-left: 15px;

		padding-right: 15px;

	}

}



@media (max-width: 991px) {

	.navbar-header {

		float: none;

	}

	.navbar-toggle {

		display: block;

	}

	.container-fluid > .navbar-collapse,

	.container > .navbar-collapse {

		margin-left: -15px;

		margin-right: -15px;

	}

	.navbar-collapse.collapse {

		display: none !important;

	}

	.navbar-collapse.collapse.in {

		display: block !important;

		overflow-y: auto !important;

	}

	.logo-bar {

		padding: 0;

	}

	.logo-bar .logo {

		margin-top: 5px;

		margin-right: 0;

		margin-bottom: 0;

	}

	.logo-bar .navbar-header {

		padding: 25px 0;

		margin: 0;

	}

	.main-nav {

	}

	.main-nav > .menu {

		float: none;

		border-top: 3px solid #009ff9;

	}

	.main-nav > .menu > li {

		display: block;

		float: none;

	}

	.main-nav > .menu > li {

		border-top: 1px solid #f1f1f1;

	}

	.main-nav > .menu > li > a {

		background-color: #ffffff;

		font-size: 16px;

		padding-top: 13px;

		padding-bottom: 13px;

	}

	.main-nav > .menu > li > ul {

		border-top: 0;

	}

	 .main-nav .menu  ul {

		display: none;

		position: static;

		opacity: 1;

		visibility: visible;

		width: auto;

	}

	.main-nav .menu ul li {

		border-top: 1px solid rgba(0,0,0,0.1);

	}

	.main-nav .menu ul li a {

		padding-left: 30px

	}

	.main-nav .menu ul ul li a {

		padding-left: 40px;

	}

	.main-nav .menu ul ul ul li a {

		padding-left: 50px;

	}

	.main-nav .menu li.menu-item-has-children > a {

		position: relative;

		font-weight: 500;

	}

	.main-nav .menu-item-has-children > a:before {

		content: "";

		border-bottom: 2px solid #424242;

		border-right: 2px solid #424242;

		display: block;

		height: 8px;

		position: absolute;

		right: 20px;

		top: 50%;

		-webkit-transform: translateY(-50%) rotate(-45deg);

		-moz-transform: translateY(-50%) rotate(-45deg);

		-ms-transform: translateY(-50%) rotate(-45deg);

		-o-transform: translateY(-50%) rotate(-45deg);

		transform: translateY(-50%) rotate(-45deg);

		transition-duration: 0.2s;

		transition-property: transform;

		width: 8px;

	}

	.main-nav .menu-item-has-children > a.submenu-open:before {

		-webkit-transform: translateY(-50%) rotate(45deg);

		-moz-transform: translateY(-50%) rotate(45deg);

		-ms-transform: translateY(-50%) rotate(45deg);

		-o-transform: translateY(-50%) rotate(45deg);

		transform: translateY(-50%) rotate(45deg);

	}

	.main-nav .menu-item-has-children > a:hover:before,

	.main-nav .menu-item-has-children > a.submenu-open,

	.main-nav .menu-item-has-children > a.submenu-open:before {

		border-color: #009ff9;

		color: #009ff9;

	}



	/*User area*/

	.header-default .menu-right,

	.exc-header-center .menu-right {

		padding: 0;

		float: none;

	}

	.header-default .menu-right > li,

	.exc-header-center .menu-right > li {

		border-top: 1px solid rgba(0,0,0,0.1);

		float: left;

		padding: 15px;

		width: 50%;

	}

	.header-default .menu-right > li + li,

	.exc-header-center .menu-right > li + li {

		margin-right: 0;

		border-left: 1px solid rgba(0,0,0,0.1);

	}

	.header-default .welcome-btn .btn,

	.exc-header-center .welcome-btn .btn,

	.header-default .user-button .btn,

	.exc-header-center .user-button .btn,

	.upload-button {

		display: block;

		width: 100%;

	}

	.header-default .welcome-btn .dropdown-menu,

	.exc-header-center .welcome-btn .dropdown-menu {

		width: auto;

		position: static;

		float: none;

		border-top: 0;

		margin-top: 0;

	}

	.header-default .welcome-btn .btn:after

	.exc-header-center .welcome-btn .btn:after {

		bottom: 16px;

	}

	.moxie-shim {

		height: 100% !important;

		width: 100% !important;

	}

	.dropdown-backdrop {

    	position: static;

	}

}



/* ## header fixed Top

================================================*/

.header-fixed .logo-bar {

	background-color: rgba(255,255,255,0.96);

	position: fixed;

	top: 0;

	width: 100%;

}

.header-fixed .logo {}

.header-fixed .main-nav .menu > li > a  {}

.header-fixed .header-bottom {}

.header-fixed .login {}

@media (min-width: 768px) {

	.boxed-layout.header-fixed .logo-bar {

		width: 720px;

	}

}

@media (min-width: 992px) {

	.boxed-layout.header-fixed .logo-bar {

		width: 940px;

	}

}

@media (min-width: 1200px) {

	.boxed-layout.header-fixed .logo-bar {

		width: 1140px;

	}

}



/*============================================================*/

/*HEADER 2 CENTER LOGO*/

@media (min-width: 992px) {

	.exc-header-center .logo-bar {

		padding-left: 0;

		padding-right: 0;

	}

	.exc-header-center .logo-bar .container-fluid {

		padding-left: 0;

		padding-right: 0;

	}

	.exc-header-center .navbar-header{

		border-bottom: 1px solid #e9e9e9;

		float: none;

		text-align: center;

	}

	.exc-header-center .navbar-header .logo {

		margin: 0;

		padding-top: 36px;

		padding-bottom: 32px;

		float: none;

	}

	.exc-header-center .main-nav {

		padding-left: 30px;

		padding-right: 30px;

	}

	.exc-header-center .main-nav > .menu > li > a {

		padding-top: 22px;

		padding-bottom: 22px;

	}

	.exc-header-center .main-nav > .menu > li:first-child > a {

		padding-left: 0;

	}

	.exc-header-center .menu-right {

		padding: 12px;

	}

	.exc-header-center .welcome-btn .dropdown-menu {

		margin-top: 12px;

	}

}

/*============================================================*/



/*EXC HEADER 3*/

@media (min-width: 992px) {

	.exc-header-3 .logo-bar,

	.exc-header-3 .container-fluid {

		padding-left: 0;

		padding-right: 0;

	}

	.exc-header-3 .navbar-header {

		float: none;

		border-bottom: 1px solid #e9e9e9;

		padding-left: 30px;

		padding-right: 30px;

	}

	.exc-header-3 .navbar-header .logo {

		float: left;

	}

	.exc-header-3 .login {}

	.exc-header-3 .main-nav {

		padding-left: 30px;

		padding-right: 30px;

	}

	.exc-header-3 .main-nav > .menu > li > a {

		padding-top: 18px;

		padding-bottom: 18px;

	}

	.exc-header-3 .main-nav > .menu > li:first-child > a  {

		padding-left: 0;

	}

	.main-nav .exc-contact-info {

		float: right;

		margin-top: 17px;

		margin-bottom: 17px;

	}

}

@media (max-width: 991px) {

	.exc-header-3 .navbar-toggle {

		position: absolute;

		left: 0;

		top: 30px;

	}

	.exc-header-3 .menu-right {

		float: right;

		padding: 0;

	}

	.exc-header-3 .logo-bar .logo {

		margin-left: 50px;

	}

	.main-nav .exc-contact-info {

		display: none;

	}

}

@media (max-width: 600px) {

	.exc-header-3 .navbar-header {

		text-align: center;

	}

	.exc-header-3 .menu-right,

	.exc-header-3 .logo-bar .logo {

		float: none;

	}

	.exc-header-3 .menu-right {

		margin-top: 30px;

	}

}

.boxed-layout .logo {

	margin-right: 20px;

}

.boxed-layout .main-nav .menu li a {

	padding-left: 18px;

	padding-right: 18px;

}
.logo > img {
    height: 61px;
}
/*
     FILE ARCHIVED ON 13:18:20 Dec 06, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:04:47 Sep 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.484
  exclusion.robots: 0.059
  exclusion.robots.policy: 0.048
  esindex: 0.007
  cdx.remote: 13.96
  LoadShardBlock: 140.174 (3)
  PetaboxLoader3.datanode: 253.268 (5)
  PetaboxLoader3.resolve: 89.739 (2)
  load_resource: 240.358
  loaddict: 124.672
*/