﻿
/* Navigation */

/* Generic menu styling */

#header {
    height: 80px;
}


/*
#masthead ul {
	margin: 0;
	padding: 5px;
    padding-left: 0;
	overflow: hidden;
}

#masthead li {
    list-style: none;
	display: inline;
	margin: 0;
	padding: 8px;
    border: none;
    cursor: hand;
}

#masthead ul a {
    text-decoration:none;
    color: inherit;
}
*/

/* Specific menu styling */

/* Menu - Level 1 */ 

.menu {
    height: 30px;
    font-weight: 500;
    text-align: center;
}

.menu a {
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    cursor: pointer;
    display: block;
}

.menu ul {
	padding: 0;
    margin: 0;
	position: absolute;
	list-style-type: none;
    
}

.menu ul li {
	float: left;
	padding: 0;
	text-align: center;
    margin: 0;
}

#menu_level_1 {
    height: 40px;
    background: #00052c;
    color: #fff;
}

#menu_level_1 ul li {
    background: #00052c;
}

#menu_level_1 ul li.current {
    color: #a2c4df;
}

#menu_level_1 ul li:hover {
    color: #a2c4df ;
}

#menu_level_1 ul li a {
    height: 30px;
    padding-top: 10px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

#menu_level_1 ul li a:hover:after {
    height: 3px;
}

#menu_level_1 ul li a::after {
    background: #FAFAD2;
    bottom: 0;
    content: '';
    display: block;
    height: 0;
    left: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 100%;
}


/* Menu - Level 2 */ 

#menu_level_2 {
    background-color:#5e89be;
	border-color: #5e89be;
	color:#fff;
}

#menu_level_2 li {
    padding: 5px; 
}

#menu_level_2 li:hover {
    text-decoration: underline;
}

#menu_level_2 li.current 
{
    font-weight: bold;
    color: #031e6b;
}


/* Menu - Level 3 */ 

#menu_level_3 {
	color:#444;
    background: #eee;
    border-left: 1px solid #C7C8C8;
    border-right: 1px solid #C7C8C8;
}

#menu_level_3 li {
	color:#444;
    padding: 5px;
}

#menu_level_3 li:hover {
    text-decoration: underline;
}

#menu_level_3 li.current {
    font-weight: bold;
}


/* Menu - Level 4 */ 

#menu_level_4 {
	background-color:#fff;
}

#menu_level_4 li:hover {
	text-decoration: underline;
}

#menu_level_3 li.current {
    font-weight: bold;
}


/* Menu - Account Name */
#account_name 
{
	overflow: hidden;
    background-color: #A0A1A2;
    width: 100%;
}

#account_name h2 {
	color:#fff;
	font-size:16px;
	font-weight:normal;
	display:inline;
	padding: 5px;
    margin-bottom: 0;
    float: right;
}