/*
 * Main Navigation Menu Styles
 */
#navHeader .navigation ul {
    margin: 0px;
	padding: 0px;
}
#navHeader .navigation li {
	width: auto;
	height: 55px;
	margin: 0px;
    padding: 0px;
    list-style: none;
    float: left;
}
#navHeader .navigation li a {
	width: auto;
	height: 55px;
	color: rgb(214,214,215);
	text-decoration: none;
	display: block;	
}
#navHeader .navigation li a:hover {
	color: rgb(247,147,30);
	text-decoration: none;
}
#navHeader .navigation li a span {
	display: none;
}
#navHeader .navigation ul li ul { /* Second level */
	width: 120px;
	position: relative;
    display: none;
    z-index: 100;
    background-color: rgb(251,251,251);
	opacity: 0.8;
	filter: alpha(opacity=80);
	padding: 5px;
}
#navHeader .navigation ul li ul li {
	height: 15px;
	float: none;
	margin: 0px 2px 5px 2px;
	clear: both;
}
#navHeader .navigation ul li ul li a {
	font: 14px Verdana, Arial, Helvetica, Sans-Serif;
	color: rgb(0,0,0);
    text-decoration: none;
	display: block;
}
#navHeader .navigation ul li ul li a:hover {
    color: rgb(247,147,30);
    text-decoration: underline;
}

#navHeader #m1 { /* Home */
	width: 46px;
	background: url('../img/b_home.gif') no-repeat right;
}
#navHeader #m2 { /* About */
	width: 83px;
	margin-left: 97px;
	background: url('../img/b_about.gif') no-repeat right;
}
#navHeader #m3 { /* Services */
	width: 74px;
	margin-left: 104px;
	background: url('../img/b_services.gif') no-repeat right;
}
#navHeader #m4 { /* Portfolio */
	width: 91px;
	margin-left: 88px;
	background: url('../img/b_portfolio.gif') no-repeat right;
}
#navHeader #m5 { /* Contact */
	width: 77px;
	margin-left: 100px;
	background: url('../img/b_contact.gif') no-repeat right;
}