/* -----------------------------------------------------------------------------
 Mega Menu
----------------------------------------------------------------------------- */
.megaMenu > ul {
	background: white;
	clear: both;
	display: block;
	line-height: 100%;
	list-style: none;
    margin: 0;
	min-height: 0;
	position: relative;
	padding: 0;
	width: 100%;
}
.megaMenu a {
	cursor: pointer;
}
.megaMenu li {
	list-style: none;
}
.megaMenu .item {
	border: 0;
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	z-index: 5;
}
.megaMenu .item > a {
	color: #004165;
	font-size: 1.3em;
	border-left: 1px solid #ced0d4;
	display: block;
	height: 45px;
	line-height: 45px;
	margin: 0;
	padding: 0 0.9em;
	position: relative;
	text-decoration: none;
}
.megaMenu .item:first-child > a {
	border-left: none;
}

/*
 Hover Effects
*/
.megaMenu .item:hover {
	white-space: normal;
	z-index: 10000;
}
.megaMenu .item:hover > a {
	color: #007dba;
	text-decoration: none;
}
.megaMenu .sub-menu {
	border: 1px solid #ced0d4;
	background: white;
	display: none;
	font-size: 0.9em;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 20px;
	position: absolute;
	top: 100%;
	width: 660px;
	z-index: 10;
}
.megaMenu .item.left .sub-menu {
	left: 0;
	right: auto;
}
.megaMenu .item.right .sub-menu {
	left: auto;
	right: 0;
}
.megaMenu .subItem {
	border-top: 1px solid #ced0d4;
	height: 75px;
	float: left;
	max-height: 75px;
	padding: 10px 5px 0;
	width: 200px;
}
.megaMenu .subItem.fullItem {
	border-top: 0;
	float: none;
	height: auto;
	max-height: none;
	padding: 0 9px;
	width: auto;
}
.megaMenu .subItem.fullItem a h3 {
	font-size: 1.5em;
	font-weight: normal;
}
.megaMenu .subItem a h3 {
	color: #004165;
	font-size: 1.24em;
	margin: 2px 0;
}
.megaMenu .subItem a p {
	color: #747678;
	font-size: 0.95em;
	margin: 7px 0;
}
.megaMenu .subItem a img {
	clear: both;
	float: left;
	margin: -5px 3px 100px 0;
}
.megaMenu .subItem a:hover h3 {
	color: #007DBA;
	text-decoration: underline;
}
.megaMenu .subItem a:hover p {
	text-decoration: none;
}

/* -----------------------------------------------------------------------------
 Tabs Menu
----------------------------------------------------------------------------- */
.tabsMenu,
.tabsMenu * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tabsMenu {
	margin-bottom: 20px;
}
.tabsMenu ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.tabsMenu li {
	list-style: none;
}
.tabsMenu a {
	cursor: pointer;
}
.tabsMenu .item {
	display: block;
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
}
.tabsMenu .item > .itemTag {
	background: #FFF;
	border: 1px solid #FFF;
	border-bottom: none;
	color: #999;
	display: block;
	font-size: 1.3em;
	height: 45px;
	line-height: 45px;
	margin: 0 0 -1px 0;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
}
.tabsMenu .item > .itemTag:hover {
	color: #888;
}
.tabsMenu .sub-menu {
	background: #FFF;
	border: 1px solid #DDD;
	display: none;
	font-size: 0.9em;
	left: 0;
	margin: 0;
	overflow: hidden;
	padding: 20px;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 10;
}
.tabsMenu .item.currentHover {
	white-space: normal;
	z-index: 10000;
}
.tabsMenu .item.currentHover > .itemTag {
	border-color: #DDD;
	color: #007dba;
	text-decoration: none;
	z-index: 15;
}
.tabsMenu .item.currentHover .sub-menu {
	display:block;
}
.tabsMenu .subItem {
	border-right: 1px solid #DDD;
	display: block;
	float: left;
	height: 75px;
	max-height: 75px;
	margin: 0 10px;
	padding: 10px 5px 0;
	width: 200px;
}
.tabsMenu .subItem.fullItem {
	border-bottom: 1px solid #DDD;
	border-top: 1px solid #DDD;
	border-right: none;
	float: none;
	height: auto;
	max-height: none;
	padding: 0;
	width: 100%;
}
.tabsMenu .subItem.fullItem a h3 {
	font-size: 1.5em;
	font-weight: normal;
}
.tabsMenu .sub-menu h3 {
	color: #004165;
	font-size: 1.24em;
	margin: 2px 0;
}
.tabsMenu .sub-menu p {
	color: #747678;
	font-size: 0.95em;
	margin: 7px 0;
}
.tabsMenu .sub-menu img {
	clear: both;
	float: left;
	margin: -5px 3px 100px 0;
}
.tabsMenu .sub-menu a:hover h3 {
	color: #007DBA;
	text-decoration: underline;
}
.tabsMenu .sub-menu a:hover p {
	text-decoration: none;
}