/* new menu
========================================================================== */
.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topmenu:after {
  content: "";
  display: table;
  clear: both;
}
.topmenu > li {
  float: left;
  position: relative;
  font-family: 'Open Sans', sans-serif;
	padding: 0 15px;
}
.topmenu > li > a {
    font-size: 16px;
    font-weight: 600;
    color: #202772;
    text-decoration: none;
    line-height: 100px;
	display: block;
	position: relative;
}
.topmenu > li > a:hover::before,
.topmenu > li:hover > a::before{
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 10px solid #fff;
	position: absolute;
	bottom: -1px;
	z-index: 10;
	left: 50%;
	margin-left: -4px;
	content: '';
}
.topmenu > li > a:hover::after,
.topmenu > li:hover > a::after{
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid #d8d9d9;
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 50%;
	margin-left: -5px;
    content: '';
}
.topmenu li a:hover,
.topmenu li:hover > a{ color: #5bbbea; }
.submenu-link {
	padding-right: 18px;
}
.submenu-link span:after {
    content: "\f107";
    font-family: "FontAwesome";
    color: inherit;
    margin-left: 10px;
    position: absolute;
    top: auto;
    bottom: auto;
    font-size: 11px;
}
.submenu {
    background: #fff;
	border: 1px solid #d8d9d9;
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 5;
    width: 220px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: .5s ease-in-out;
    list-style: none;
    padding: 0;
}
.submenu-switcher {
	width: 920px;
	left: -340px;
}
.submenu li > a {
  color: #202772;
  text-align: left;
  padding: 5px 15px;
  font-size: 16px;
	box-sizing: border-box;
	display: block;
	text-decoration: none;
}
.submenu li:last-child a { border-bottom: none; }
.topmenu > li:hover .submenu {
  opacity: 1;
  transform: scaleY(1);
}
.home-page .topmenu > li > a {
	color: #fff;
}
.home-page .tm-navbar.uk-active .topmenu > li > a {
	color: #202772;
}
.tm-navbar.uk-active .submenu {
    border-top: 0;
}
.tm-navbar.uk-active .topmenu > li > a:hover::after,
.tm-navbar.uk-active .topmenu > li:hover > a::after,
.topmenu > li > a:hover::before,
.topmenu > li:hover > a::before{
	bottom: -1px;
}


.switcher-menu-list li {
	font-size: 14px;
	line-height: 20px;
}
.top-menu-gray-content {
	background: #d8d9d9;
	padding: 10px 20px 15px;
	box-sizing: border-box;
	margin-top: 15px;
}
.tm-topmenu-btn a {
    width: 120px;
    padding: 8px 0;
    font-size: 13px;
}
.tab {
  float: left;
  background-color: #fff;
  width: 29%;
  height: 540px;
	border-right: 1px solid #d8d9d9;
}

/* Style the buttons that are used to open the tab content */
.tab .tablinks {
  display: block;
  background-color: inherit;
  color: black;
  padding: 12px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
	position: relative;
	box-sizing: border-box;
}

/* Change background color of buttons on hover */
.tab .tablinks:hover {
  background-color: inherit;
}
.tab .tablinks:hover::before,
.tab .tablinks.active::before{
	content: '';
	width: 3px;
	height: 100%;
	left: 0;
	top: 0;
	background: #202772;
	position: absolute;
}

/* Create an active/current "tab button" class */
.tab .tablinks.active {
  background-color: #d8d9d9;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 17px 0 20px;
  width: 70%;
  border-left: none;
  height: 540px;
  display: none;
	box-sizing: border-box;
}
@media (max-width: 1460px) {
	.submenu {
		right: 0;
		left: inherit;
	}
	.submenu-switcher {
		width: 920px;
		left: -340px;
	}
}