﻿/* body layout */
body {
    margin: 0;
	padding: 0;
}

/* reset */
.flat-mega-menu ul,
.flat-mega-menu li,
.flat-mega-menu a,
.flat-mega-menu p,
.flat-mega-menu img,
.flat-mega-menu h2 {
	margin: 0;
	padding: 0;
	display: block;
	line-height: normal;
	text-decoration: none;
	list-style: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* menu container */
.flat-mega-menu {
	//margin: 0 auto;	/* margin for align container center */
	padding: 0;
	position: relative;
	z-index: 999;
	font-size: 15px;
	//max-width: 1280px; 	/* container max-width 1280px */
	font-family: "Lato",Helvetica,Arial,sans-serif;
	min-width: 180px;
	background-color: #ffcf03;
	//height: 60px;
	width:100%;
}

/* ul tag layout */
.flat-mega-menu > ul {
	//height: 60px;
	background-color: #ffcf03;
	display: table;
	margin: 0 auto;	
	//width: auto !important;
}

/* li tag layout */
.flat-mega-menu > ul > li {
	float: left;
	//min-height: 60px;
	//min-width: 10%;
	line-height: 60px;
	color: #FFFFFF;
	//border-left: 1px solid;
	//border-left-color: #ffcf03;
    background-repeat: no-repeat; /* NEW */
	background-position: center bottom; /* NEW */    
}

.flat-mega-menu > ul > li:hover {
	background-image: url('../images/lci-menu-bg.png');
	//background-repeat: no-repeat;
	//background-position: center bottom;
}
.hidetriangle {
	background-image: none !important;
}

/* a tag layout */
.flat-mega-menu > ul > li > a {
	line-height: 1em;
	color: #292929;
	text-align: center;
	width: 100%;
	padding-left: .75em;
	padding-right: .75em;
	font-size: 18px;
	border-right: 1px solid white;
	margin: 15px 0 15px;
	font-weight: 700;
	letter-spacing: 1px;
}
.flat-mega-menu > ul > li:last-child > a {
	border-right: none;
}


/* .title class layout */
.flat-mega-menu > ul > .title > a {
	text-transform: uppercase;
	font-size: 20px;
	line-height: 60px;
	padding-left: 20px;
	text-align: left;
	padding-right: 20px;
}

.flat-mega-menu > ul > .title {
	border-left: none;
	//min-width: 25%;
}

/* Added for focus underline on main yellow bar items */
.flat-mega-menu > ul > li > a:focus {
  text-decoration: underline
}

.flat-mega-menu .drop-down li > a:focus {
  text-decoration: underline
}

/* hover animation */
.flat-mega-menu > ul > li:hover > a {
	background: #ffcf03;
	color: #292929;
	text-decoration: underline;
	/* animation */
	transition: background 0.3s linear 0s, color 0.3s linear 0s;
	-moz-transition: background 0.3s linear 0s, color 0.3s linear 0s;
	-ms-transition: background 0.3s linear 0s, color 0.3s linear 0s;
	-o-transition: background 0.3s linear 0s, color 0.3s linear 0s;
	-webkit-transition: background 0.3s linear 0s, color 0.3s linear 0s;
}

.flat-mega-menu > ul > .title:hover > a {
	background: inherit;
	color: inherit !important;
}

/*------- Drop down layout start ------*/
.flat-mega-menu .drop-down {
	position: absolute;
	background: #005daa;
	z-index: 999;
	margin-left: 0px;
	width: 100%;
	float: left;
	width: 150px;
	//border: 1px solid rgba(0,0,0,0.10);
	border-top: none;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 3px solid;
	border-bottom-color: #ffcf03;
}

.flat-mega-menu .drop-down .drop-down {
	border-top: 1px solid rgba(0,0,0,0.10);
}

.flat-mega-menu .drop-down li {
	float: left;
	width: 100%;
	position: relative;
}

.flat-mega-menu .drop-down li a {
	color: #ffffff;
	font-size: 14px;
	text-align: left;
	padding: 5px 10px 5px 10px;
	background-color: none;
	border-left: none;
	/* animation */
	transition: color 0.2s linear 0s, padding-left 0.2s linear 0s;
	-moz-transition: color 0.2s linear 0s, padding-left 0.2s linear 0s;
	-ms-transition: color 0.2s linear 0s, padding-left 0.2s linear 0s;
	-o-transition: color 0.2s linear 0s, padding-left 0.2s linear 0s;
	-webkit-transition: color 0.2s linear 0s, padding-left 0.2s linear 0s;
}

/* drop down hover animation */
.flat-mega-menu .drop-down li:hover > a {
	color: #ffffff;
	text-decoration: underline;
	padding-left: 10px;
}

/* default hover animation to show drop down */
.flat-mega-menu > ul > li:hover .drop-down,
.flat-mega-menu > ul > li:active .drop-down {
	display: block;
}

.flat-mega-menu ul li .drop-down li:hover > .drop-down,
.flat-mega-menu ul li .drop-down li:active > .drop-down {
	display: block;
}

/* .hover-fade animation to show drop down */
.flat-mega-menu > ul > li .drop-down.hover-fade {
	display: none;
}

.flat-mega-menu > ul > li:hover > .drop-down.hover-fade,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-fade {
	display: block;
	/* keyframes animation */
	animation: hover-fade 0.3s linear 0s forwards;
	-moz-animation: hover-fade 0.3s linear 0s forwards;
	-ms-animation: hover-fade 0.3s linear 0s forwards;
	-o-animation: hover-fade 0.3s linear 0s forwards;
	-webkit-animation: hover-fade 0.3s linear 0s forwards;
}

@keyframes hover-fade {0% {opacity:0;}100% {opacity:1;}}
@-moz-keyframes hover-fade {0% {opacity:0;}100% {opacity:1;}}
@-ms-keyframes hover-fade {0% {opacity:0;}100% {opacity:1;}}
@-o-keyframes hover-fade {0% {opacity:0;}100% {opacity:1;}}
@-webkit-keyframes hover-fade {0% {opacity:0;}100% {opacity:1;}}

/* .hover-zoom animation to show drop down */
.flat-mega-menu > ul > li .drop-down.hover-zoom {
	display: none;
}

.flat-mega-menu > ul > li:hover > .drop-down.hover-zoom,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-zoom {
	display: block;
	/* keyframes animation */
	animation: hover-zoom 0.2s linear 0s forwards;
	-moz-animation: hover-zoom 0.2s linear 0s forwards;
	-ms-animation: hover-zoom 0.2s linear 0s forwards;
	-o-animation: hover-zoom 0.2s linear 0s forwards;
	-webkit-animation: hover-zoom 0.2s linear 0s forwards;
}

@keyframes hover-zoom {0% {opacity:0; transform: scale(0.8, 0.8);} 100% {opacity:1; transform:scale(1.0, 1.0);}}
@-moz-keyframes hover-zoom {0% {opacity:0; -moz-transform: scale(0.8, 0.8);} 100% {opacity:1; -moz-transform:scale(1.0, 1.0);}}
@-ms-keyframes hover-zoom {0% {opacity:0; -ms-transform: scale(0.8, 0.8);} 100% {opacity:1; -ms-transform:scale(1.0, 1.0);}}
@-o-keyframes hover-zoom {0% {opacity:0; -o-transform: scale(0.8, 0.8);} 100% {opacity:1; -o-transform:scale(1.0, 1.0);}}
@-webkit-keyframes hover-zoom {0% {opacity:0; -webkit-transform: scale(0.8, 0.8);} 100% {opacity:1; -webkit-transform:scale(1.0, 1.0);}}

/* .hover-expand animation to show drop down */
.flat-mega-menu > ul > li .drop-down.hover-expand {
	display: none;
}

.flat-mega-menu > ul > li:hover > .drop-down.hover-expand,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-expand {
	display: block;
	/* keyframes animation */
	animation: hover-expand 0.2s linear 0s forwards;
	-moz-animation: hover-expand 0.2s linear 0s forwards;
	-ms-animation: hover-expand 0.2s linear 0s forwards;
	-o-animation: hover-expand 0.2s linear 0s forwards;
	-webkit-animation: hover-expand 0.2s linear 0s forwards;
}

@keyframes hover-expand { 0% {opacity:0; transform: rotateY(90deg);} 100% {opacity:1; transform:rotateY(0deg);}}
@-moz-keyframes hover-expand { 0% {opacity:0; -moz-transform: rotateY(90deg);} 100% {opacity:1; -moz-transform:rotateY(0deg);}}
@-ms-keyframes hover-expand { 0% {opacity:0; -ms-transform: rotateY(90deg);} 100% {opacity:1; -ms-transform:rotateY(0deg);}}
@-o-keyframes hover-expand { 0% {opacity:0; -o-transform: rotateY(90deg);} 100% {opacity:1; -o-transform:rotateY(0deg);}}
@-webkit-keyframes hover-expand { 0% {opacity:0; -webkit-transform: rotateY(90deg);} 100% {opacity:1; -webkit-transform:rotateY(0deg);}}

/* fontAwesome icons layout */
.flat-mega-menu .drop-down li i {
	position: absolute;
	z-index: 999;
	top: 0;
	right: 20px;
	bottom: 0;
	height: 16px;
	margin: auto;
	color: #555658;
}

/* level 2 .drop-down layout */
.flat-mega-menu .drop-down .drop-down {
	left: 100%;
	top: -10px;
	width: 150px;
}

/*------- one column layout ----------*/
.flat-mega-menu .drop-down.one-column {
	width: 230px;
}

.flat-mega-menu .drop-down .drop-down.one-column {
	width: 200px;
}

/*-------- two column layout ---------*/
.flat-mega-menu .drop-down.two-column {
	width: 462px;
}

.flat-mega-menu .drop-down.two-column ul {
	float: left;
	width: 230px;
	margin: 0;
	padding: 0;
}

/*--------- .full-width with 4 columns layout -----------*/
.flat-mega-menu .drop-down.full-width {
	width: 100%;
	margin-left: 0;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.flat-mega-menu .drop-down.full-width ul {
	float: left;
	width: 25%; 
	cursor: default;
}

.flat-mega-menu .drop-down.full-width ul li { /* updated */
	margin: 0;
	padding: 10px 0;
	float: left;
	width: 100%;
}

.flat-mega-menu .drop-down.full-width ul li a { /* updated */
	margin: 0;
	border: none;
	padding: 0;
	float: left;
	margin-right: 10%;
	margin-left: 10%;
	transition: text-indent 0.2s linear 0s;
	-moz-transition: text-indent 0.2s linear 0s;
	-ms-transition: text-indent 0.2s linear 0s;
	-o-transition: text-indent 0.2s linear 0s;
	-webkit-transition: text-indent 0.2s linear 0s;
}

/* hover animation */
.flat-mega-menu .drop-down.full-width ul li:hover a,
.flat-mega-menu .drop-down ul li:hover a {
	//text-indent: 5px;
}

.flat-mega-menu .drop-down.full-width ul li p {
	margin: 0;
	padding: 10px 10px 10px 11%;
	float: left;
	width: 100%;
	clear: both;
	font-size: 14px;
	color: #949598;
}

/* hr tag layout */
.flat-mega-menu hr {
	margin: 0;
	padding: 0;
	display: block;
}

/* image layout */
.flat-mega-menu img {
	width: 100%;
	float: left;
	border-style: solid;
	border-width: 4px;
	border-color: rgb(255, 255, 255);
	background-color: rgb(235, 235, 235);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.078), inset 0px 0px 76px 0px rgba(0, 0, 0, 0.039);
}

/* image hover animation */
.flat-mega-menu img:hover {
	opacity: 0.8;
}

/* h2 layout */
.flat-mega-menu h2 {
	color: #535456;
	font-size: 1.1em;
	font-weight: normal;
	margin: 0;
	padding: 5px 5px 5px 10%;
	padding-top: 15px;
	padding-bottom: 10px;
}

/* mobile button hide in desktop mode */
.flat-mega-menu > label,
.flat-mega-menu > input {
	display: none;
}

/* media query */
@media screen and (max-width:1023px) {

/* li tag layout */
.flat-mega-menu > ul > li {
	width: 100%;
	border-left: none !important;
	border-right: none !important;
	border-bottom: 1px solid;
	border-bottom-color: #ffffff;
	background-color: #ffcf03;
}
.flat-mega-menu > ul > li:hover {
	background-image: none;
}

.flat-mega-menu > ul > li > a {
  border-right: none; 
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
}

.flat-mega-menu > ul > li:hover > a {
    color: #292929 !important;
}

/* .title class layout */
.flat-mega-menu > ul > .title a {
	text-align: center;
}

/* .full-width class layout */
.flat-mega-menu .drop-down.full-width {
	position: relative;
	left: 0px !important;
}

/* all drop-downs layout */
.flat-mega-menu .drop-down.one-column,
.flat-mega-menu .drop-down.two-column,
.flat-mega-menu .drop-down.full-width,
.flat-mega-menu .drop-down .drop-down {
	width: 100% !important;
	display: block !important;
	position: relative;
	left: 0px;
	transform: scale(1.0, 1.0), rotateY(90deg);
	-moz-transform: scale(1.0, 1.0), rotateY(90deg);
	-ms-transform: scale(1.0, 1.0), rotateY(90deg);
	-o-transform: scale(1.0, 1.0), rotateY(90deg);
	-webkit-transform: scale(1.0, 1.0), rotateY(90deg);
}

.flat-mega-menu .drop-down .drop-down {
	border: none;
	border-top: 1px solid #E8E8E8;
	border-bottom: 1px solid #E8E8E8;
	top: 0;
	padding: 0;
}

.flat-mega-menu .drop-down .drop-down.one-column {
	padding-left: 20px;
}

.flat-mega-menu > ul > li .drop-down.hover-expand,
.flat-mega-menu > ul > li .drop-down.hover-fade,
.flat-mega-menu > ul > li .drop-down.hover-zoom {
	display: none;
	border: none;
}

.flat-mega-menu > ul > li:hover > .drop-down.hover-expand,
.flat-mega-menu > ul > li:hover > .drop-down.hover-fade,
.flat-mega-menu > ul > li:hover > .drop-down.hover-zoom,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-expand,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-fade,
.flat-mega-menu > ul > li .drop-down li:hover > .drop-down.hover-zoom {
	display: block;
	/* keyframes animation */
	animation: hover-default 0.2s linear 0s forwards;
	-moz-animation: hover-default 0.2s linear 0s forwards;
	-ms-animation: hover-default 0.2s linear 0s forwards;
	-o-animation: hover-default 0.2s linear 0s forwards;
	-webkit-animation: hover-default 0.2s linear 0s forwards;
}

.flat-mega-menu > ul > li:hover > a {
	color: #FFFFFF;
	background: inherit;
}

.flat-mega-menu .drop-down.two-column ul,
.flat-mega-menu .drop-down.full-width ul {
	width: 50%;
}

.flat-mega-menu .drop-down.one-column a,
.flat-mega-menu .drop-down.two-column a {
	width: auto;
	float: left;
}

/* fontAwesome icons layout */
.flat-mega-menu .drop-down li .fa.fa-angle-right {
	position: relative;
	z-index: 9999;
	right: 0px;
	float: right;
	height: auto;
	color: #555658;
	padding: 0;
	margin: 0 17px 0 0;
	display: block;
	line-height: 38px;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}

/* mobile button layout */
.flat-mega-menu #mobile-button {
	position: absolute;
	display: none;
}

.flat-mega-menu > ul {
	height: 60px;
	overflow: hidden;
	width: 100%; //attempt
}

/* mobile button click to show drop down */
.flat-mega-menu #mobile-button:checked + ul {
	height: auto;
	overflow: visible;
}

/* label tag layout */
.flat-mega-menu > label {
	width: 60px;
	height: 60px;
	//background-color: rgba(0,0,0,0.10);
	display: block;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 60px;
	font-size: 2em;
	color: #FFFFFF;
	cursor: pointer;
}

.flat-mega-menu > label i{
	-ms-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	-webkit-user-select:none;	
}

.flat-mega-menu ul .title {
	padding-left: 60px;
}

/* collapse class layout */
.flat-mega-menu .collapse .drop-down.one-column,
.flat-mega-menu .collapse .drop-down.two-column,
.flat-mega-menu .collapse .drop-down.full-width,
.flat-mega-menu .collapse .drop-down .drop-down {
	width: 100% !important;
	display: none !important;
	position: relative;
	left: 0px;
	transform: scale(1.0, 1.0), rotateY(90deg);
	-moz-transform: scale(1.0, 1.0), rotateY(90deg);
	-ms-transform: scale(1.0, 1.0), rotateY(90deg);
	-o-transform: scale(1.0, 1.0), rotateY(90deg);
	-webkit-transform: scale(1.0, 1.0), rotateY(90deg);
}

.flat-mega-menu > .collapse > li:hover > .drop-down.hover-expand,
.flat-mega-menu > .collapse > li:hover > .drop-down.hover-fade,
.flat-mega-menu > .collapse > li:hover > .drop-down.hover-zoom,
.flat-mega-menu > .collapse > li .drop-down li:hover > .drop-down.hover-expand,
.flat-mega-menu > .collapse > li .drop-down li:hover > .drop-down.hover-fade,
.flat-mega-menu > .collapse > li .drop-down li:hover > .drop-down.hover-zoom {
	display: block !important;
	/* keyframes animation */
	animation: hover-fade 0.2s linear 0s forwards;
	-moz-animation: hover-fade 0.2s linear 0s forwards;
	-ms-animation: hover-fade 0.2s linear 0s forwards;
	-o-animation: hover-fade 0.2s linear 0s forwards;
	-webkit-animation: hover-fade 0.2s linear 0s forwards;
}

@keyframes hover-fade { 0% {opacity:0;} 100% {opacity:1}}
@-moz-keyframes hover-fade { 0% {opacity:0;} 100% {opacity:1}}
@-ms-keyframes hover-fade { 0% {opacity:0;} 100% {opacity:1}}
@-o-keyframes hover-fade { 0% {opacity:0;} 100% {opacity:1}}
@-webkit-keyframes hover-fade { 0% {opacity:0;} 100% {opacity:1}}

}

/* media query */
@media screen and (max-width:320px) {

  /* ul tag layout */
  .flat-mega-menu .drop-down.two-column ul,
  .flat-mega-menu .drop-down.full-width ul {
	width: 100%;
  }

  /* .title class layout */
  .flat-mega-menu ul .title {
	padding-left: 0px;
	text-indent: 60px;
  }

}

/* Color & spacing overrides for dropdown menu */

.flat-mega-menu .yellow a {
   color: #FFCF03 !important;
 }
 .flat-mega-menu .blue {
   color: #66fff2 !important;
   font-weight:bold;
   padding-left: 5px !important;
    
}

 .flat-mega-menu .yellow {
   padding: 10px 0 5px !important;
 }
.flat-mega-menu .white a {
   text-transform: none !important;
 }
 .flat-mega-menu .white {
   padding: 5px 0 !important;
 }
 
  /* Overrides for tab-over hidden jump to section links */
 
 a.hidden-link {
    display:inline-block;
    left:-999px;
    position:absolute;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
    z-index:-999;
    text-decoration: underline;
}

a.hidden-link:after {
    content: url('i/jump-arrow.png');
}
a.hidden-link:focus, a.hidden-link:active {
    color: #fff;
    background-color:#00529b;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    overflow:auto;
    margin: 0 20px;
    padding:5px;
    border:1px solid #ffcf03;
    border-top: none;
    text-align:center;
    font-size:.8em;
    z-index:1;
    -webkit-transition: top .1s ease-in, background .5s linear;
    transition: top .1s ease-in, background .5s linear;
    border-radius: 0px 0px 8px 8px;
    -moz-border-radius: 0px 0px 8px 8px;
    -webkit-border-radius: 0px 0px 8px 8px;
}
  
a.hidden-link:hover {
    text-decoration: underline;
}

/* Styles and overrides for Share section (addthis) */

.print-and-share .addthis a {display: inline-block; padding: 1px; margin-left: 5px;}
.print-and-share .addthis a span {border-radius: 3px;}
.print-and-share .addthis a::before {content: none;}
.atm-s a:focus, #at_hover.atm-s a:focus,
.atm-s a:active, #at_hover.atm-s a:active,
.atm-f a:focus, #at_hover.atm-f a:focus,
.atm-f a:active, #at_hover.atm-f a:active {outline: thin dotted #00529b !important;}
