#navigation
{
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	background: #1A2E49;
	text-align: right;
	text-transform: uppercase;
	z-index: 101;
}
#navigation ul
{
	float: right;
	text-align: right;
}
#navigation ul li
{
	float: left;
	list-style: none;
}
#navigation ul li a
{
	display: block;
	text-decoration: none;
	height: 40px;
	line-height: 40px;
	padding: 0px 7px;
	font-weight: bolder;
	font-size: 13px;
}
#navigation ul li a:hover
{
	display: block;
	text-decoration: none;
	height: 40px;
	line-height: 40px;
	padding: 0px 7px;
	background: #e5e8eb;
	color: #1d285c;
}
#navigation ul ul
{
	display: none;
}

#navigation ul li:hover ul
{
	position: absolute;
	display: block;			
	padding: 0px 7px;
	background: White;	
	z-index: 1;
	height: 125px; 
	width: 102px;
}

#navigation ul li:hover ul li a
{
	display: block;
	text-decoration: none;
	height: 20px;
	font-size: 10px;
	font-style: normal;	
	color: #1A2E49;
	text-transform: none;
}
#navigation ul li:hover ul li a:hover
{
	text-decoration: underline;
	background: none;
}
